From 4e6823805e561be0c107cb90c8076e3b96732b01 Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Sat, 19 Sep 1998 09:29:40 +0000 Subject: [PATCH] Add splsoftvm(). Submitted by: Andrew Gallatin --- sys/alpha/alpha/ipl_funcs.c | 3 ++- sys/alpha/include/ipl.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/alpha/alpha/ipl_funcs.c b/sys/alpha/alpha/ipl_funcs.c index 3e26527c528..251c4d28a94 100644 --- a/sys/alpha/alpha/ipl_funcs.c +++ b/sys/alpha/alpha/ipl_funcs.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ipl_funcs.c,v 1.5 1998/07/22 08:20:15 dfr Exp $ + * $Id: ipl_funcs.c,v 1.6 1998/09/16 08:21:12 dfr Exp $ */ #include @@ -160,6 +160,7 @@ int name(void) \ SPLDOWN(splsoftclock, SOFT) SPLDOWN(splsoftnet, SOFT) SPLDOWN(splsoftcam, SOFT) +SPLDOWN(splsoftvm, SOFT) SPLDOWN(splsoft, SOFT) #define SPLUP(name, pri) \ diff --git a/sys/alpha/include/ipl.h b/sys/alpha/include/ipl.h index 6e8d00af6a4..571a93fd16e 100644 --- a/sys/alpha/include/ipl.h +++ b/sys/alpha/include/ipl.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ipl.h,v 1.4 1998/07/22 08:28:24 dfr Exp $ + * $Id: ipl.h,v 1.5 1998/09/16 08:23:21 dfr Exp $ */ #ifndef _MACHINE_IPL_H_ @@ -43,6 +43,7 @@ extern int splsoft(void); extern int splsoftclock(void); extern int splsoftnet(void); extern int splsoftcam(void); +extern int splsoftvm(void); extern int splnet(void); extern int splbio(void); extern int splcam(void);