diff options
author | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-06-07 21:33:44 +0000 |
---|---|---|
committer | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-06-07 21:33:44 +0000 |
commit | a8a4729faded286eb50d21323bfcb165b3c5dc50 (patch) | |
tree | 59be2cb78a069cec7a96815a46afad8a55dbef92 /sys/arch/vax | |
parent | 87739f251b80651d7bf5e456e0dc04696a638f9b (diff) |
Remove obsolete CLKF_BASEPRI(). ok niklas@, miod@ and art@
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/include/psl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/vax/include/psl.h b/sys/arch/vax/include/psl.h index 958bf1c9e44..e9bb68bbb7a 100644 --- a/sys/arch/vax/include/psl.h +++ b/sys/arch/vax/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.5 2000/04/26 03:08:42 bjc Exp $ */ +/* $OpenBSD: psl.h,v 1.6 2002/06/07 21:33:43 nordin Exp $ */ /* $NetBSD: psl.h,v 1.6 1997/06/07 12:15:28 ragge Exp $ */ /* @@ -105,7 +105,6 @@ * Macros to decode processor status word. */ #define CLKF_USERMODE(framep) ((((framep)->ps) & (PSL_U)) == PSL_U) -#define CLKF_BASEPRI(framep) ((((framep)->ps) & (PSL_IPL1F)) == 0) #define CLKF_PC(framep) ((framep)->pc) #define CLKF_INTR(framep) ((((framep)->ps) & (PSL_IS)) == PSL_IS) #define PSL2IPL(ps) ((ps) >> 16) |