diff options
author | 2006-03-12 03:28:28 +0000 | |
---|---|---|
committer | 2006-03-12 03:28:28 +0000 | |
commit | 921bba1eeff1a15eebdbbd7658bdb48df6634413 (patch) | |
tree | a7c510a218c1eb8374bba4f9e7dadae07d12ab10 /sys | |
parent | IPL_IMP -> IPL_VM (diff) | |
download | wireguard-openbsd-921bba1eeff1a15eebdbbd7658bdb48df6634413.tar.xz wireguard-openbsd-921bba1eeff1a15eebdbbd7658bdb48df6634413.zip |
remove splimp().
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme68k/include/intr.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/include/intr.h b/sys/arch/mvme68k/include/intr.h index 83380d0f1b1..68324d79560 100644 --- a/sys/arch/mvme68k/include/intr.h +++ b/sys/arch/mvme68k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.12 2005/05/01 09:55:49 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.13 2006/03/12 03:28:28 brad Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -97,7 +97,6 @@ u_long allocate_sir(void (*proc)(void *), void *arg); #define splsoftnet() splsoft() #define splbio() _splraise(PSL_S | PSL_IPL2) #define splnet() _splraise(PSL_S | PSL_IPL3) -#define splimp() _splraise(PSL_S | PSL_IPL3) #define spltty() _splraise(PSL_S | PSL_IPL3) #define splvm() _splraise(PSL_S | PSL_IPL3) #define splclock() _splraise(PSL_S | PSL_IPL5) |