diff options
author | 2003-10-15 17:43:48 +0000 | |
---|---|---|
committer | 2003-10-15 17:43:48 +0000 | |
commit | 2eb117168d5cefeec82ed1b88a60c5ad5ee64069 (patch) | |
tree | 0b90aec2b1e9793e1b6f4709fd8130a7c626dd84 | |
parent | avoid possible /0 when drawing the led load graph (diff) | |
download | wireguard-openbsd-2eb117168d5cefeec82ed1b88a60c5ad5ee64069.tar.xz wireguard-openbsd-2eb117168d5cefeec82ed1b88a60c5ad5ee64069.zip |
do not define IPL_IMP
-rw-r--r-- | sys/arch/hppa/include/intr.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/arch/hppa/include/intr.h b/sys/arch/hppa/include/intr.h index 7bae5207a8a..5a118dc6eac 100644 --- a/sys/arch/hppa/include/intr.h +++ b/sys/arch/hppa/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.14 2002/12/17 21:54:25 mickey Exp $ */ +/* $OpenBSD: intr.h,v 1.15 2003/10/15 17:43:48 mickey Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -48,7 +48,6 @@ #define IPL_SOFTTTY 5 #define IPL_TTY 6 #define IPL_VM 7 -#define IPL_IMP IPL_VM #define IPL_AUDIO 8 #define IPL_CLOCK 9 #define IPL_STATCLOCK 10 @@ -117,12 +116,12 @@ splx(int ncpl) #define splnet() splraise(IPL_NET) #define splsofttty() splraise(IPL_SOFTTTY) #define spltty() splraise(IPL_TTY) -#define splvm() splimp() -#define splimp() splraise(IPL_IMP) +#define splvm() splraise(IPL_VM) +#define splimp() splvm() #define splaudio() splraise(IPL_AUDIO) #define splclock() splraise(IPL_CLOCK) +#define splstatclock() splraise(IPL_STATCLOCK) #define splhigh() splraise(IPL_HIGH) -#define splstatclock() splhigh() #define spl0() spllower(IPL_NONE) static __inline void |