diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2005-05-31 09:31:17 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2005-05-31 09:31:17 +0000 |
commit | 76e09d4ba8a27be08dece281483a60059c9445c4 (patch) | |
tree | 36da7671feb266b898304bcd3e89bd451ea73d10 /sys/arch/i386/include/intrdefs.h | |
parent | aea3730f529cbde9c76bdb5b3cb1a8acde40f9fb (diff) |
IPL_SCHED should block statclock on architectures where the scheduler
is clocked by the statclock.
miod@ ok
Diffstat (limited to 'sys/arch/i386/include/intrdefs.h')
-rw-r--r-- | sys/arch/i386/include/intrdefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/intrdefs.h b/sys/arch/i386/include/intrdefs.h index 6b7b1762430..1786a32de6f 100644 --- a/sys/arch/i386/include/intrdefs.h +++ b/sys/arch/i386/include/intrdefs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intrdefs.h,v 1.4 2005/05/29 03:20:39 deraadt Exp $ */ +/* $OpenBSD: intrdefs.h,v 1.5 2005/05/31 09:31:15 art Exp $ */ /* $NetBSD: intrdefs.h,v 1.2 2003/05/04 22:01:56 fvdl Exp $ */ #ifndef _i386_INTRDEFS_H @@ -66,8 +66,8 @@ #define IPL_IMP IPL_VM /* XXX - should not be here. */ #define IPL_AUDIO MAKEIPL(7) /* audio */ #define IPL_CLOCK MAKEIPL(8) /* clock */ -#define IPL_SCHED IPL_CLOCK #define IPL_STATCLOCK MAKEIPL(9) /* statclock */ +#define IPL_SCHED IPL_STATCLOCK #define IPL_HIGH MAKEIPL(9) /* everything */ #define IPL_IPI MAKEIPL(10) /* interprocessor interrupt */ |