summaryrefslogtreecommitdiff
path: root/sys/arch/m88k/include
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2008-10-10 08:36:29 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2008-10-10 08:36:29 +0000
commit5a7066c5f93924dd4c67b0d487c7af9755c7da6f (patch)
treeffdb6137097b02b96f5275ce9e8d8538144bb568 /sys/arch/m88k/include
parentf6566fc21328024e33b60c477810acc6cafa1237 (diff)
Add empty cpu_unidle() macros for architectures that currently don't do
anything special to prod a cpu to leave the idle loop in signotify. powerpc, i386, amd64 and sparc64 will follow soon so that everyone has the same interface to wake an idling cpu.
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r--sys/arch/m88k/include/cpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/m88k/include/cpu.h b/sys/arch/m88k/include/cpu.h
index ab69b03559c..c4b5d6fbc25 100644
--- a/sys/arch/m88k/include/cpu.h
+++ b/sys/arch/m88k/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.36 2008/10/10 08:05:45 art Exp $ */
+/* $OpenBSD: cpu.h,v 1.37 2008/10/10 08:36:28 art Exp $ */
/*
* Copyright (c) 1996 Nivas Madhur
* Copyright (c) 1992, 1993
@@ -137,6 +137,7 @@ extern struct cpu_info m88k_cpus[MAX_CPUS];
if (((ci) = &m88k_cpus[cii])->ci_flags & CIF_ALIVE)
#define CPU_INFO_UNIT(ci) ((ci)->ci_cpuid)
#define MAXCPUS MAX_CPUS
+#define cpu_unidle(ci)
#if defined(MULTIPROCESSOR)