From 83a14d70fb15fdf5747f7011dd914701ebe51b06 Mon Sep 17 00:00:00 2001 From: batt Date: Wed, 27 Aug 2008 14:27:58 +0000 Subject: [PATCH] Set a more conservative default. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1731 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/cfg/cfg_kern.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bertos/cfg/cfg_kern.h b/bertos/cfg/cfg_kern.h index e828bce7..630d2ec8 100644 --- a/bertos/cfg/cfg_kern.h +++ b/bertos/cfg/cfg_kern.h @@ -51,10 +51,10 @@ #define CONFIG_KERN_SCHED 1 ///< Process schedling #define CONFIG_KERN_SIGNALS 1 ///< Inter-process signals #define CONFIG_KERN_IRQ 1 ///< Interrupt supervisor -#define CONFIG_KERN_HEAP 0 ///< Dynamic memory allocation -#define CONFIG_KERN_SEMAPHORES 0 ///< Re-entrant mutual exclusion primitives +#define CONFIG_KERN_HEAP 1 ///< Dynamic memory allocation +#define CONFIG_KERN_SEMAPHORES 1 ///< Re-entrant mutual exclusion primitives #define CONFIG_KERN_MONITOR 1 ///< Process monitor -#define CONFIG_KERN_PREEMPT 1 ///< Preemptive process scheduling +#define CONFIG_KERN_PREEMPT 0 ///< Preemptive process scheduling #define CONFIG_KERN_PRI 1 ///< Priority-based scheduling policy /*\}*/ -- 2.25.1