diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-06-16 14:49:50 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-06-16 14:49:50 +0000 |
commit | 24b67a657169dbd205c0e6008ea1b2a1bd2d57c5 (patch) | |
tree | f0fdf6f89971127a919233be2e9d6701292e1de0 /sys/arch/mvme68k/include | |
parent | 9ec97c2123033cbabb5194aad5fa46422c704069 (diff) |
Add IPL_MPSAFE for some architectures that I missed in the first round.
pointed out by & ok miod@
Diffstat (limited to 'sys/arch/mvme68k/include')
-rw-r--r-- | sys/arch/mvme68k/include/intr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/include/intr.h b/sys/arch/mvme68k/include/intr.h index 309d87302ab..285811b556c 100644 --- a/sys/arch/mvme68k/include/intr.h +++ b/sys/arch/mvme68k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.21 2011/03/23 16:54:36 pirofti Exp $ */ +/* $OpenBSD: intr.h,v 1.22 2013/06/16 14:49:49 kettenis Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -52,6 +52,8 @@ #define IPL_SCHED 7 #define IPL_HIGH 7 +#define IPL_MPSAFE 0 /* no "mpsafe" interrupts */ + #define MD_IPLTOPSL(ipl) IPLTOPSL(ipl) #define splsoft() _splraise(PSL_S | PSL_IPL1) |