diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-06 23:33:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-06 23:33:30 +0000 |
commit | 99940d023b67cb6d7b308c9d677ee6c1f92c5ceb (patch) | |
tree | 053510c2be3b76f4f299ad7e5336589057d63ef8 | |
parent | 233cbca7c2032c288be405efcf12e700736fd3e0 (diff) |
splstatclock to splhigh; problem pointed out by gopal
-rw-r--r-- | sys/arch/i386/include/intr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/i386/include/intr.h b/sys/arch/i386/include/intr.h index e98d4d5082d..7c602bf9220 100644 --- a/sys/arch/i386/include/intr.h +++ b/sys/arch/i386/include/intr.h @@ -119,7 +119,7 @@ spllower(ncpl) #define spltty() splraise(imask[IPL_TTY]) #define splclock() splraise(imask[IPL_CLOCK]) #define splimp() splraise(imask[IPL_IMP]) -#define splstatclock() splclock() +#define splstatclock() splhigh() /* * Software interrupt masks |