Add include to fix warning for vsprintf()
[bertos.git] / config_kern.h
index 7247120f464923903746db4d1d7d709d4405d62b..2d99ef75dea90077325b185de4a5f9b6b69cd9b0 100755 (executable)
@@ -3,7 +3,7 @@
  * <!--
  * Copyright 2001,2004 Develer S.r.l. (http://www.develer.com/)
  * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
- * All Rights Reserved.
+ * This file is part of DevLib - See devlib/README for information.
  * -->
  *
  * \brief Kernel configuration parameters
 
 /*
  * $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 */
 #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 */