CONFIG_KERN_PREEMPTIVE -> CONFIG_KERN_PREEMPT
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 25 Aug 2008 19:14:03 +0000 (19:14 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 25 Aug 2008 19:14:03 +0000 (19:14 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1699 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/kern/proc_p.h

index 2c914d9e81698d2645507800c406a205407a412b..f31fc621ff8461416e725722bc531afa221a7f29 100644 (file)
@@ -47,7 +47,7 @@
 
 #include <struct/list.h>
 
-#if CONFIG_KERN_PREEMPTIVE
+#if CONFIG_KERN_PREEMPT
        #include <ucontext.h> // XXX
 #endif
 
@@ -75,7 +75,7 @@ typedef struct Process
        size_t       stack_size;  /**< Size of process stack */
 #endif
 
-#if CONFIG_KERN_PREEMPTIVE
+#if CONFIG_KERN_PREEMPT
        ucontext_t   context;
 #endif