From: bernie Date: Mon, 25 Aug 2008 19:14:03 +0000 (+0000) Subject: CONFIG_KERN_PREEMPTIVE -> CONFIG_KERN_PREEMPT X-Git-Tag: 2.0.0~235 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=37b6a6530f8d53eda2825b7c34dc8e8895b9fa17;p=bertos.git CONFIG_KERN_PREEMPTIVE -> CONFIG_KERN_PREEMPT git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1699 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/kern/proc_p.h b/bertos/kern/proc_p.h index 2c914d9e..f31fc621 100644 --- a/bertos/kern/proc_p.h +++ b/bertos/kern/proc_p.h @@ -47,7 +47,7 @@ #include -#if CONFIG_KERN_PREEMPTIVE +#if CONFIG_KERN_PREEMPT #include // 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