CONFIG_KERN_PREEMPTIVE -> CONFIG_KERN_PREEMPT
[bertos.git] / 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