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/zaurus/include | |
parent | e4cd83a56a360f734e9ba7092609e5b077e403e6 (diff) |
Add a dummy IPL_MPSAFE definition.
ok miod@, mikeb@
Diffstat (limited to 'sys/arch/zaurus/include')
-rw-r--r-- | sys/arch/zaurus/include/intr.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/zaurus/include/intr.h b/sys/arch/zaurus/include/intr.h index a2c69799f6d..e8045fa39c6 100644 --- a/sys/arch/zaurus/include/intr.h +++ b/sys/arch/zaurus/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.10 2011/03/23 16:54:37 pirofti Exp $ */ +/* $OpenBSD: intr.h,v 1.11 2013/05/17 19:38:52 kettenis Exp $ */ /* $NetBSD: intr.h,v 1.12 2003/06/16 20:00:59 thorpej Exp $ */ /* @@ -41,7 +41,6 @@ #ifdef _KERNEL - /* Interrupt priority "levels". */ #define IPL_NONE 0 /* nothing */ #define IPL_SOFT 1 /* generic software interrupts */ @@ -60,6 +59,9 @@ #define NIPL 13 +/* Interrupt priority "flags". */ +#define IPL_MPSAFE 0 /* no "mpsafe" interrupts */ + /* Interrupt sharing types. */ #define IST_NONE 0 /* none */ #define IST_PULSE 1 /* pulsed */ |