summaryrefslogtreecommitdiff
path: root/sys/arch/arc/include
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2001-01-14 02:00:37 +0000
committerthorpej <thorpej@NetBSD.org>2001-01-14 02:00:37 +0000
commitd85a75f583feeae50135600d5ea8553e1c1194ff (patch)
tree9443935c617b064199c227eb475ac74fa48b23ea /sys/arch/arc/include
parent9d68beeb8ed126018ad4cdc976f915f5d869234c (diff)
Make sure everybody has an splvm() and equate it with splimp() (splimp()
is the historical name for this interrupt level, and the historical name is going to go away in the near future).
Diffstat (limited to 'sys/arch/arc/include')
-rw-r--r--sys/arch/arc/include/intr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arc/include/intr.h b/sys/arch/arc/include/intr.h
index 2a240ef5595..76aab1ee1e8 100644
--- a/sys/arch/arc/include/intr.h
+++ b/sys/arch/arc/include/intr.h
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.6 2000/08/22 19:46:27 thorpej Exp $ */
+/* $NetBSD: intr.h,v 1.7 2001/01/14 02:00:38 thorpej Exp $ */
/*
* Copyright (c) 1998 Jonathan Stone. All rights reserved.
@@ -97,7 +97,7 @@ extern void _clrsoftintr __P((int));
#define splnet() (_splraise(splvec.splnet))
#define spltty() (_splraise(splvec.spltty))
#define splimp() (_splraise(splvec.splimp))
-#define splpmap() (_splraise(splvec.splimp))
+#define splvm() (_splraise(splvec.splimp))
#define splclock() (_splraise(splvec.splclock))
#define splstatclock() (_splraise(splvec.splstatclock))
#define splhigh() _splraise(MIPS_INT_MASK_SPLHIGH)