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/vax/include/param.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/vax/include/param.h')
-rw-r--r-- | sys/arch/vax/include/param.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index 725ad0229ce..950c970d4a8 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.18 2001/06/13 07:38:47 miod Exp $ */ +/* $OpenBSD: param.h,v 1.19 2001/06/24 17:05:39 miod Exp $ */ /* $NetBSD: param.h,v 1.39 1999/10/22 21:14:34 ragge Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -199,6 +199,7 @@ #define splnet() _splraise(0x15) /* IPL15 */ #define spltty() _splraise(0x15) /* IPL15 */ #define splimp() _splraise(0x17) /* IPL17 */ +#define splvm() _splraise(0x17) /* IPL17 */ #define splclock() _splraise(0x18) /* IPL18 */ #define splhigh() _splraise(0x1f) /* IPL1F */ #define splstatclock() splclock() |