X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=config_kern.h;h=31e010832862bd87921f940a9b3db8ca46ef41ba;hb=5b25ae54d86d894e5d01adeef10938df1bb10e16;hp=b7ee0327aa1225e467204b41e0cf6b1a4693c29f;hpb=96f0ef786b54356c56cc3d4e4f0838df2505cfcc;p=bertos.git diff --git a/config_kern.h b/config_kern.h index b7ee0327..31e01083 100755 --- a/config_kern.h +++ b/config_kern.h @@ -13,18 +13,30 @@ * \author Bernardo Innocenti */ -/* - * $Log$ - * 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. - * - */ +/*#* + *#* $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 * @@ -33,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 */ @@ -52,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 */