diff options
Diffstat (limited to 'sys/arch/sparc/include/psl.h')
-rw-r--r-- | sys/arch/sparc/include/psl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/psl.h b/sys/arch/sparc/include/psl.h index 8454ad65e57..96418442bc9 100644 --- a/sys/arch/sparc/include/psl.h +++ b/sys/arch/sparc/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.21 2006/03/12 03:14:37 brad Exp $ */ +/* $OpenBSD: psl.h,v 1.22 2007/05/08 07:23:18 art Exp $ */ /* $NetBSD: psl.h,v 1.12 1997/03/10 21:49:11 pk Exp $ */ /* @@ -95,6 +95,7 @@ */ #define IPL_AUHARD 13 /* hard audio interrupts */ #define IPL_STATCLOCK 14 /* statclock() */ +#define IPL_SCHED IPL_STATCLOCK #define IPL_HIGH 15 /* splhigh() */ #if defined(_KERNEL) && !defined(_LOCORE) @@ -226,6 +227,7 @@ SPLHOLD(splclock, IPL_CLOCK) SPLHOLD(splfd, IPL_FD) SPLHOLD(splzs, IPL_ZS) SPLHOLD(splaudio, IPL_AUHARD) +SPLHOLD(splsched, IPL_SCHED) SPLHOLD(splstatclock, IPL_STATCLOCK) static __inline int splhigh() |