diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-05-17 19:38:53 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-05-17 19:38:53 +0000 |
commit | 23aa67d94df599971e63a34d1b596d5c2dcd7204 (patch) | |
tree | 27e040172442ddb70716a9160536fd2e77f23985 /sys/arch/hp300 | |
parent | e4cd83a56a360f734e9ba7092609e5b077e403e6 (diff) |
Add a dummy IPL_MPSAFE definition.
ok miod@, mikeb@
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/include/intr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hp300/include/intr.h b/sys/arch/hp300/include/intr.h index f605d2ff84b..2d5d61e0e7f 100644 --- a/sys/arch/hp300/include/intr.h +++ b/sys/arch/hp300/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.29 2011/12/21 22:39:11 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.30 2013/05/17 19:38:51 kettenis Exp $ */ /* $NetBSD: intr.h,v 1.2 1997/07/24 05:43:08 scottr Exp $ */ /*- @@ -69,6 +69,8 @@ struct isr { #define IPL_SCHED 7 #define IPL_HIGH 7 +#define IPL_MPSAFE 0 /* no "mpsafe" interrupts */ + /* * This array contains the appropriate PSL_S|PSL_IPL? values * to raise interrupt priority to the requested level. |