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/mvme68k | |
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/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/include/intr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/include/intr.h b/sys/arch/mvme68k/include/intr.h index 64df806d666..744e0ef3c31 100644 --- a/sys/arch/mvme68k/include/intr.h +++ b/sys/arch/mvme68k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.2 2000/07/06 15:25:04 ho Exp $ */ +/* $OpenBSD: intr.h,v 1.3 2001/06/24 17:05:37 miod Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -69,6 +69,7 @@ u_long allocate_sir __P((void (*proc)(), void *arg)); #define splnet() spl3() #define splimp() spl3() #define spltty() spl3() +#define splvm() spl3() #define splclock() spl5() #define splstatclock() spl5() #define splhigh() spl7() |