summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/hp300/include/intr.h3
-rw-r--r--sys/arch/mac68k/include/intr.h4
-rw-r--r--sys/arch/mac68k/mac68k/machdep.c3
-rw-r--r--sys/arch/mvme68k/include/intr.h3
-rw-r--r--sys/arch/sun3/include/psl.h3
5 files changed, 5 insertions, 11 deletions
diff --git a/sys/arch/hp300/include/intr.h b/sys/arch/hp300/include/intr.h
index 81cb2913207..a5a86ea7bb7 100644
--- a/sys/arch/hp300/include/intr.h
+++ b/sys/arch/hp300/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.4 2000/07/06 15:25:03 ho Exp $ */
+/* $OpenBSD: intr.h,v 1.5 2001/11/23 00:47:39 miod Exp $ */
/* $NetBSD: intr.h,v 1.2 1997/07/24 05:43:08 scottr Exp $ */
/*-
@@ -153,7 +153,6 @@ extern unsigned short hp300_impipl;
#define splstatclock() spl6()
#define splvm() spl6()
#define splhigh() spl7()
-#define splsched() spl7()
/* watch out for side effects */
#define splx(s) ((s) & PSL_IPL ? _spl((s)) : spl0())
diff --git a/sys/arch/mac68k/include/intr.h b/sys/arch/mac68k/include/intr.h
index b485b7e5854..66289f234c0 100644
--- a/sys/arch/mac68k/include/intr.h
+++ b/sys/arch/mac68k/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.4 2001/06/24 17:05:37 miod Exp $ */
+/* $OpenBSD: intr.h,v 1.5 2001/11/23 00:47:43 miod Exp $ */
/* $NetBSD: intr.h,v 1.8 1997/11/07 07:33:18 scottr Exp $ */
/*
@@ -90,7 +90,6 @@ extern unsigned short mac68k_netipl;
extern unsigned short mac68k_impipl;
extern unsigned short mac68k_clockipl;
extern unsigned short mac68k_statclockipl;
-extern unsigned short mac68k_schedipl;
/*
* These should be used for:
@@ -111,7 +110,6 @@ extern unsigned short mac68k_schedipl;
#define splvm() _splraise(mac68k_impipl)
#define splclock() _splraise(mac68k_clockipl)
#define splstatclock() _splraise(mac68k_statclockipl)
-#define splsched() _splsched(mac68k_schedipl)
#define splserial() spl4()
#define splhigh() spl7()
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c
index 14934eabbe8..f652386bd36 100644
--- a/sys/arch/mac68k/mac68k/machdep.c
+++ b/sys/arch/mac68k/mac68k/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.86 2001/11/09 15:25:55 art Exp $ */
+/* $OpenBSD: machdep.c,v 1.87 2001/11/23 00:47:45 miod Exp $ */
/* $NetBSD: machdep.c,v 1.207 1998/07/08 04:39:34 thorpej Exp $ */
/*
@@ -218,7 +218,6 @@ unsigned short mac68k_netipl = PSL_S | PSL_IPL2;
unsigned short mac68k_impipl = PSL_S | PSL_IPL2;
unsigned short mac68k_clockipl = PSL_S | PSL_IPL2;
unsigned short mac68k_statclockipl = PSL_S | PSL_IPL2;
-unsigned short mac68k_schedipl = PSL_S | PSL_IPL3;
/*
diff --git a/sys/arch/mvme68k/include/intr.h b/sys/arch/mvme68k/include/intr.h
index 744e0ef3c31..2045e781344 100644
--- a/sys/arch/mvme68k/include/intr.h
+++ b/sys/arch/mvme68k/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.3 2001/06/24 17:05:37 miod Exp $ */
+/* $OpenBSD: intr.h,v 1.4 2001/11/23 00:47:46 miod Exp $ */
/*
* Copyright (C) 2000 Steve Murphree, Jr.
* All rights reserved.
@@ -73,7 +73,6 @@ u_long allocate_sir __P((void (*proc)(), void *arg));
#define splclock() spl5()
#define splstatclock() spl5()
#define splhigh() spl7()
-#define splsched() spl7()
/* watch out for side effects */
#define splx(s) (s & PSL_IPL ? _spl(s) : spl0())
diff --git a/sys/arch/sun3/include/psl.h b/sys/arch/sun3/include/psl.h
index 66d6390219a..605c941115c 100644
--- a/sys/arch/sun3/include/psl.h
+++ b/sys/arch/sun3/include/psl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: psl.h,v 1.10 2001/06/24 17:05:43 miod Exp $ */
+/* $OpenBSD: psl.h,v 1.11 2001/11/23 00:47:47 miod Exp $ */
/* $NetBSD: psl.h,v 1.14 1998/11/24 17:07:54 kleink Exp $ */
/*-
@@ -157,7 +157,6 @@ _splraise(int new)
/* Block out all interrupts (except NMI of course). */
#define splhigh() spl7()
-#define splsched() spl7()
#endif /* KERNEL && !_LOCORE */
#endif /* _SUN3_PSL_H_ */