diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-06-24 17:05:44 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-06-24 17:05:44 +0000 |
commit | 3b7b43961a353a75efdf8bd63add6dcc54689025 (patch) | |
tree | 23ca4cefe59e79212d39ba057adb587f92edea57 /sys/arch/amiga/include/psl.h | |
parent | 4c832e32c4828dd3d4f5d00cf248f10b78100512 (diff) |
Define splvm() for arches who don't already provide it, with the same
definition as splimp().
art@ ok
Diffstat (limited to 'sys/arch/amiga/include/psl.h')
-rw-r--r-- | sys/arch/amiga/include/psl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/amiga/include/psl.h b/sys/arch/amiga/include/psl.h index 63c4bcf27d9..3e32805eea7 100644 --- a/sys/arch/amiga/include/psl.h +++ b/sys/arch/amiga/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.11 2000/07/06 15:29:52 ho Exp $ */ +/* $OpenBSD: psl.h,v 1.12 2001/06/24 17:05:34 miod Exp $ */ /* $NetBSD: psl.h,v 1.11 1996/11/30 00:33:49 is Exp $ */ #ifndef _MACHINE_PSL_H_ @@ -121,6 +121,7 @@ spllower(npsl) extern u_int16_t amiga_ttyspl; #define spltty() splexact(amiga_ttyspl) #define splimp() spltty() /* XXX for the full story, see i386 */ +#define splvm() spltty() /* XXX for the full story, see i386 */ #if defined(LEV6_DEFER) || defined(IPL_REMAP_1) || defined(IPL_REMAP_2) #define splclock() spl4() |