diff options
Diffstat (limited to 'sys/i386/include/cpu.h')
-rw-r--r-- | sys/i386/include/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/i386/include/cpu.h b/sys/i386/include/cpu.h index 5bc9f5c..c2e08a0 100644 --- a/sys/i386/include/cpu.h +++ b/sys/i386/include/cpu.h @@ -43,6 +43,8 @@ #include <machine/frame.h> #include <machine/segments.h> +#ifdef _KERNEL + #define cpu_exec(p) /* nothing */ #define cpu_swapin(p) /* nothing */ #define cpu_getstack(td) ((td)->td_frame->tf_esp) @@ -53,7 +55,6 @@ ((ISPL((framep)->tf_cs) == SEL_UPL) || ((framep)->tf_eflags & PSL_VM)) #define TRAPF_PC(framep) ((framep)->tf_eip) -#ifdef _KERNEL extern char btext[]; extern char etext[]; |