X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=config_kern.h;h=2d99ef75dea90077325b185de4a5f9b6b69cd9b0;hb=cd3b99fd3642060e967f463d5ac0325eac042fe6;hp=7247120f464923903746db4d1d7d709d4405d62b;hpb=b81657391042e045769c544cf749f2f382d6e9a5;p=bertos.git diff --git a/config_kern.h b/config_kern.h index 7247120f..2d99ef75 100755 --- a/config_kern.h +++ b/config_kern.h @@ -3,7 +3,7 @@ * * * \brief Kernel configuration parameters @@ -15,6 +15,13 @@ /* * $Log$ + * 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. * @@ -33,6 +40,7 @@ #define CONFIG_KERN_TIMER (1 && CONFIG_KERN_SIGNALS) #define CONFIG_KERN_HEAP (0) #define CONFIG_KERN_SEMAPHORES (0 && CONFIG_KERN_SIGNALS) +#define CONFIG_KERN_MONITOR (1 && CONFIG_KERN_SCHED) /*\}*/ /* EXPERIMENTAL */ @@ -49,9 +57,11 @@ #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 */