From: niklas Date: Sun, 24 Mar 1996 17:28:35 +0000 (+0000) Subject: Actually make CLKF_BASEPRI do what it's supposed to do. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=42e281af70b63a54a3be114faf02e1f6595b333e;p=openbsd Actually make CLKF_BASEPRI do what it's supposed to do. --- diff --git a/sys/arch/amiga/include/cpu.h b/sys/arch/amiga/include/cpu.h index 763930dbf50..0edb8225682 100644 --- a/sys/arch/amiga/include/cpu.h +++ b/sys/arch/amiga/include/cpu.h @@ -68,8 +68,7 @@ struct clockframe { }; #define CLKF_USERMODE(framep) (((framep)->sr & PSL_S) == 0) -/*#define CLKF_BASEPRI(framep) (((framep)->sr & PSL_IPL) == 0)*/ -#define CLKF_BASEPRI(framep) (0) +#define CLKF_BASEPRI(framep) (((framep)->sr & PSL_IPL) == 0) #define CLKF_PC(framep) ((framep)->pc) #if 0 /* We would like to do it this way... */