diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-10-15 17:43:49 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-10-15 17:43:49 +0000 |
commit | 96eadd94f4b3ed35ff64b4e0992bb41b72a4916b (patch) | |
tree | 1dc2bda94497729af1e4392841616a3c22a7aab9 /sys/arch/hppa | |
parent | 4118f0944cf6b9e0f8714361622404ffe4a6d9a2 (diff) |
do not define IPL_IMP
Diffstat (limited to 'sys/arch/hppa')
-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 |