diff options
| author | thorpej <thorpej@NetBSD.org> | 2001-01-14 02:00:37 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2001-01-14 02:00:37 +0000 |
| commit | d85a75f583feeae50135600d5ea8553e1c1194ff (patch) | |
| tree | 9443935c617b064199c227eb475ac74fa48b23ea /sys/arch/atari/include | |
| parent | 9d68beeb8ed126018ad4cdc976f915f5d869234c (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/atari/include')
| -rw-r--r-- | sys/arch/atari/include/intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/atari/include/intr.h b/sys/arch/atari/include/intr.h index 429e419d804..2d697569380 100644 --- a/sys/arch/atari/include/intr.h +++ b/sys/arch/atari/include/intr.h @@ -1,4 +1,4 @@ -/* $NetBSD: intr.h,v 1.9 2000/08/22 19:46:28 thorpej Exp $ */ +/* $NetBSD: intr.h,v 1.10 2001/01/14 02:00:39 thorpej Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -66,12 +66,12 @@ #define splnet() _splraise(PSL_S|PSL_IPL3) #define spltty() _splraise(PSL_S|PSL_IPL4) #define splimp() _splraise(PSL_S|PSL_IPL4) +#define splvm() _splraise(PSL_S|PSL_IPL4) #define spllpt() spltty() #define splclock() splraise6() #define splstatclock() splraise6() -#define splvm() splraise6() #define splhigh() spl7() #define splsched() spl7() #define spllock() spl7() |
