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/mac68k/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/mac68k/include')
| -rw-r--r-- | sys/arch/mac68k/include/intr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mac68k/include/intr.h b/sys/arch/mac68k/include/intr.h index 98038be911d..d88b7f81243 100644 --- a/sys/arch/mac68k/include/intr.h +++ b/sys/arch/mac68k/include/intr.h @@ -1,4 +1,4 @@ -/* $NetBSD: intr.h,v 1.18 2000/08/22 19:46:29 thorpej Exp $ */ +/* $NetBSD: intr.h,v 1.19 2001/01/14 02:00:40 thorpej Exp $ */ /* * Copyright (C) 1997 Scott Reynolds @@ -72,6 +72,7 @@ extern unsigned short mac68k_ipls[]; #define splbio() _splraise(mac68k_ipls[MAC68K_IPL_BIO]) #define splnet() _splraise(mac68k_ipls[MAC68K_IPL_NET]) #define splimp() _splraise(mac68k_ipls[MAC68K_IPL_IMP]) +#define splvm() _splraise(mac68k_ipls[MAC68K_IPL_IMP]) #define splaudio() _splraise(mac68k_ipls[MAC68K_IPL_AUDIO]) #define splclock() _splraise(mac68k_ipls[MAC68K_IPL_CLOCK]) #define splstatclock() _splraise(mac68k_ipls[MAC68K_IPL_STATCLOCK]) |
