X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=config_kern.h;h=31e010832862bd87921f940a9b3db8ca46ef41ba;hb=680ecaecd7ed77d044fbf333ce97e533b04bbfa3;hp=7247120f464923903746db4d1d7d709d4405d62b;hpb=b81657391042e045769c544cf749f2f382d6e9a5;p=bertos.git diff --git a/config_kern.h b/config_kern.h index 7247120f..31e01083 100755 --- a/config_kern.h +++ b/config_kern.h @@ -3,7 +3,7 @@ * * * \brief Kernel configuration parameters @@ -13,15 +13,30 @@ * \author Bernardo Innocenti */ -/* - * $Log$ - * Revision 1.1 2004/05/23 17:48:35 bernie - * Add top-level files. - * - */ +/*#* + *#* $Log$ + *#* Revision 1.5 2004/08/25 14:12:08 rasky + *#* Aggiornato il comment block dei log RCS + *#* + *#* Revision 1.4 2004/08/24 16:19:38 bernie + *#* Add missing header. + *#* + *#* Revision 1.3 2004/07/30 14:24:16 rasky + *#* Task switching con salvataggio perfetto stato di interrupt (SR) + *#* Kernel monitor per dump informazioni su stack dei processi + *#* + *#* Revision 1.2 2004/06/03 11:27:09 bernie + *#* Add dual-license information. + *#* + *#* Revision 1.1 2004/05/23 17:48:35 bernie + *#* Add top-level files. + *#* + *#*/ #ifndef CONFIG_KERN_H #define CONFIG_KERN_H +#include /* ARCH_EMUL */ + /*! * \name Modules activation * @@ -30,9 +45,10 @@ /* Module/option Active Dependencies */ #define CONFIG_KERN_SCHED (1) #define CONFIG_KERN_SIGNALS (1 && CONFIG_KERN_SCHED) -#define CONFIG_KERN_TIMER (1 && CONFIG_KERN_SIGNALS) +#define CONFIG_KERN_TIMER (1) #define CONFIG_KERN_HEAP (0) #define CONFIG_KERN_SEMAPHORES (0 && CONFIG_KERN_SIGNALS) +#define CONFIG_KERN_MONITOR (1 && CONFIG_KERN_SCHED) /*\}*/ /* EXPERIMENTAL */ @@ -49,9 +65,10 @@ #endif /* Memory fill codes to help debugging */ -#ifdef _DEBUG - #define CONFIG_KERN_STACKFILLCODE 0xE1 - #define CONFIG_KERN_MEMFILLCODE 0xDB +#if CONFIG_KERN_MONITOR + #define CONFIG_KERN_STACKFILLCODE 0xA5A5 + #define CONFIG_KERN_MEMFILLCODE 0xDBDB #endif + #endif /* CONFIG_KERN_H */