From 42e281af70b63a54a3be114faf02e1f6595b333e Mon Sep 17 00:00:00 2001 From: niklas Date: Sun, 24 Mar 1996 17:28:35 +0000 Subject: [PATCH] Actually make CLKF_BASEPRI do what it's supposed to do. --- sys/arch/amiga/include/cpu.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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... */ -- 2.20.1