diff options
Diffstat (limited to 'sys/arch/m88k/include/cpu.h')
-rw-r--r-- | sys/arch/m88k/include/cpu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/m88k/include/cpu.h b/sys/arch/m88k/include/cpu.h index 317cc61704f..ab3342c7734 100644 --- a/sys/arch/m88k/include/cpu.h +++ b/sys/arch/m88k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.22 2007/05/19 20:34:32 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.23 2007/10/10 15:53:52 art Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Copyright (c) 1992, 1993 @@ -58,6 +58,7 @@ #include <machine/pcb.h> #include <machine/psl.h> #include <machine/intr.h> +#include <sys/queue.h> #include <sys/sched.h> #if defined(MULTIPROCESSOR) @@ -165,6 +166,8 @@ void set_cpu_number(cpuid_t); #define cpu_exec(p) do { /* nothing */ } while (0) #define cpu_wait(p) do { /* nothing */ } while (0) +#define cpu_idle_cycle() do { /* nothing */ } while (0) + #if defined(MULTIPROCESSOR) #include <sys/lock.h> #include <sys/mplock.h> |