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/hppa/include | |
parent | 84659e9a63be386af0d7e58612a02a4fe18e2b59 (diff) |
Add spllowersoftclock(), same as splsoftclock(). (art@ ok)
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/intr.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/sys/arch/hppa/include/intr.h b/sys/arch/hppa/include/intr.h index 78a0a4f6a9c..984ad0a5970 100644 --- a/sys/arch/hppa/include/intr.h +++ b/sys/arch/hppa/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.8 1999/08/14 03:36:11 mickey Exp $ */ +/* $OpenBSD: intr.h,v 1.9 2000/07/06 15:25:03 ho Exp $ */ /* * Copyright (c) 1990,1991,1992,1994 The University of Utah and @@ -73,17 +73,18 @@ _ctl_r; \ }) -#define spl0() __spllow(IPL_NONE) -#define splsoft() __spllow(IPL_CLOCK) -#define splsoftnet() splsoft() -#define splsoftclock() splsoft() -#define splbio() __spllow(IPL_BIO) -#define splnet() __spllow(IPL_NET) -#define spltty() __spllow(IPL_TTY) -#define splimp() __spllow(IPL_CLOCK) -#define splclock() __spllow(IPL_CLOCK) -#define splstatclock() __spllow(IPL_CLOCK) -#define splhigh() __splhigh(IPL_HIGH) +#define spl0() __spllow(IPL_NONE) +#define splsoft() __spllow(IPL_CLOCK) +#define splsoftnet() splsoft() +#define spllowersoftclock() splsoft() +#define splsoftclock() splsoft() +#define splbio() __spllow(IPL_BIO) +#define splnet() __spllow(IPL_NET) +#define spltty() __spllow(IPL_TTY) +#define splimp() __spllow(IPL_CLOCK) +#define splclock() __spllow(IPL_CLOCK) +#define splstatclock() __spllow(IPL_CLOCK) +#define splhigh() __splhigh(IPL_HIGH) /* software interrupt register */ extern u_int32_t sir; |