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/hppa/include/intr.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/hppa/include/intr.h')
-rw-r--r-- | sys/arch/hppa/include/intr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/intr.h b/sys/arch/hppa/include/intr.h index 95f7552a0f8..50d90d5cffc 100644 --- a/sys/arch/hppa/include/intr.h +++ b/sys/arch/hppa/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.10 2001/01/29 00:01:58 mickey Exp $ */ +/* $OpenBSD: intr.h,v 1.11 2001/06/24 17:05:36 miod Exp $ */ /* * Copyright (c) 1990,1991,1992,1994 The University of Utah and @@ -84,6 +84,7 @@ #define splimp() __spllow(IPL_CLOCK) #define splclock() __spllow(IPL_CLOCK) #define splstatclock() __spllow(IPL_CLOCK) +#define splvm() __spllow(IPL_CLOCK) #define splhigh() __splhigh(IPL_HIGH) /* software interrupt register */ |