summaryrefslogtreecommitdiff
path: root/sys/arch/m88k/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-10-12 20:53:23 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-10-12 20:53:23 +0000
commitda118f9f7685dc00a8337613f6e7e63cbbb57e0a (patch)
tree169690ccfeed5dcb22f26741e7afacf9ee261e0b /sys/arch/m88k/include
parent5321e2257abb1551c5d340c5b3195799ad90f133 (diff)
Define IPL_SCHED and spslsched(), matching the statclock level.
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r--sys/arch/m88k/include/intr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/include/intr.h b/sys/arch/m88k/include/intr.h
index 4c5895ef76e..783e2f7efb1 100644
--- a/sys/arch/m88k/include/intr.h
+++ b/sys/arch/m88k/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.4 2005/09/06 19:28:22 miod Exp $ */
+/* $OpenBSD: intr.h,v 1.5 2005/10/12 20:53:22 miod Exp $ */
/*
* Copyright (C) 2000 Steve Murphree, Jr.
* All rights reserved.
@@ -55,7 +55,6 @@ void splassert_check(int, const char *);
#endif /* _LOCORE */
-#define splnone spl0
#define splsoftclock() raiseipl(IPL_SOFTCLOCK)
#define splsoftnet() raiseipl(IPL_SOFTNET)
#define splbio() raiseipl(IPL_BIO)
@@ -63,6 +62,7 @@ void splassert_check(int, const char *);
#define spltty() raiseipl(IPL_TTY)
#define splclock() raiseipl(IPL_CLOCK)
#define splstatclock() raiseipl(IPL_STATCLOCK)
+#define splsched() raiseipl(IPL_SCHED)
#define splimp() raiseipl(IPL_IMP)
#define splvm() raiseipl(IPL_VM)
#define splhigh() setipl(IPL_HIGH)