diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/include/intr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/include/intr.h b/sys/arch/i386/include/intr.h index 897b0e78401..9c8cadb7166 100644 --- a/sys/arch/i386/include/intr.h +++ b/sys/arch/i386/include/intr.h @@ -42,6 +42,10 @@ #define IPL_CLOCK 6 /* clock */ #define IPL_HIGH 7 /* everything */ +#ifndef _LOCORE +int imask[IPL_HIGH+1]; +#endif + /* Interrupt sharing types. */ #define IST_NONE 0 /* none */ #define IST_PULSE 1 /* pulsed */ @@ -60,7 +64,6 @@ #ifndef _LOCORE volatile int cpl, ipending, astpending; -int imask[7]; extern void Xspllower __P((void)); |