diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2000-07-06 15:25:05 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2000-07-06 15:25:05 +0000 |
commit | 9f7d0b7df9481c0acebc8cc0f27af6dd737c6243 (patch) | |
tree | 4b70373e3747048c7e62e323db95b786476e20e7 /sys/arch/mvme68k/include/intr.h | |
parent | 84659e9a63be386af0d7e58612a02a4fe18e2b59 (diff) |
Add spllowersoftclock(), same as splsoftclock(). (art@ ok)
Diffstat (limited to 'sys/arch/mvme68k/include/intr.h')
-rw-r--r-- | sys/arch/mvme68k/include/intr.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/sys/arch/mvme68k/include/intr.h b/sys/arch/mvme68k/include/intr.h index 2fc1cde265a..64df806d666 100644 --- a/sys/arch/mvme68k/include/intr.h +++ b/sys/arch/mvme68k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.1 2000/01/06 03:27:00 smurph Exp $ */ +/* $OpenBSD: intr.h,v 1.2 2000/07/06 15:25:04 ho Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -62,16 +62,17 @@ u_long allocate_sir __P((void (*proc)(), void *arg)); #define spl6() _spl(PSL_S|PSL_IPL6) #define spl7() _spl(PSL_S|PSL_IPL7) -#define splsoftclock() spl1() -#define splsoftnet() spl1() -#define splbio() spl2() -#define splnet() spl3() -#define splimp() spl3() -#define spltty() spl3() -#define splclock() spl5() -#define splstatclock() spl5() -#define splhigh() spl7() -#define splsched() spl7() +#define spllowersoftclock() spl1() +#define splsoftclock() spl1() +#define splsoftnet() spl1() +#define splbio() spl2() +#define splnet() spl3() +#define splimp() spl3() +#define spltty() spl3() +#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()) |