From fdd3d32dfca01081b77939ea35338932df824d10 Mon Sep 17 00:00:00 2001 From: tholo Date: Sun, 20 Apr 1997 20:55:01 +0000 Subject: [PATCH] Allow kern_clock.c to see interrupt frames on i386 --- sys/arch/i386/include/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arch/i386/include/cpu.h b/sys/arch/i386/include/cpu.h index 184c772b601..02ab0b02ca9 100644 --- a/sys/arch/i386/include/cpu.h +++ b/sys/arch/i386/include/cpu.h @@ -67,7 +67,7 @@ #define CLKF_USERMODE(frame) USERMODE((frame)->if_cs, (frame)->if_eflags) #define CLKF_BASEPRI(frame) ((frame)->if_ppl == 0) #define CLKF_PC(frame) ((frame)->if_eip) -#define CLKF_INTR(frame) (0) /* XXX should have an interrupt stack */ +#define CLKF_INTR(frame) (IDXSEL((frame)->if_cs) == GICODE_SEL) /* * Preempt the current process if in interrupt from user mode, -- 2.20.1