Actually make CLKF_BASEPRI do what it's supposed to do.
authorniklas <niklas@openbsd.org>
Sun, 24 Mar 1996 17:28:35 +0000 (17:28 +0000)
committerniklas <niklas@openbsd.org>
Sun, 24 Mar 1996 17:28:35 +0000 (17:28 +0000)
sys/arch/amiga/include/cpu.h

index 763930d..0edb822 100644 (file)
@@ -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... */