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/sun3/include | |
parent | 84659e9a63be386af0d7e58612a02a4fe18e2b59 (diff) |
Add spllowersoftclock(), same as splsoftclock(). (art@ ok)
Diffstat (limited to 'sys/arch/sun3/include')
-rw-r--r-- | sys/arch/sun3/include/param.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/sun3/include/param.h b/sys/arch/sun3/include/param.h index fb5876208b7..e549bf0be83 100644 --- a/sys/arch/sun3/include/param.h +++ b/sys/arch/sun3/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.19 2000/04/30 15:29:47 miod Exp $ */ +/* $OpenBSD: param.h,v 1.20 2000/07/06 15:25:04 ho Exp $ */ /* $NetBSD: param.h,v 1.34 1996/03/04 05:04:40 cgd Exp $ */ /* @@ -132,8 +132,9 @@ #define splx(x) _spl(x) /* IPL used by soft interrupts: netintr(), softclock() */ -#define splsoftclock() spl1() -#define splsoftnet() spl1() +#define spllowersoftclock() spl1() +#define splsoftclock() spl1() +#define splsoftnet() spl1() /* Highest block device (strategy) IPL. */ #define splbio() spl2() |