Module Name: src
Committed By: reinoud
Date: Thu Feb 2 11:13:41 UTC 2012
Modified Files:
src/sys/arch/usermode/include: intr.h
Log Message:
spl_intr() is not defined anymore so remove from the header file
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/usermode/include/intr.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/usermode/include/intr.h
diff -u src/sys/arch/usermode/include/intr.h:1.7 src/sys/arch/usermode/include/intr.h:1.8
--- src/sys/arch/usermode/include/intr.h:1.7 Sat Jan 21 22:09:57 2012
+++ src/sys/arch/usermode/include/intr.h Thu Feb 2 11:13:41 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.7 2012/01/21 22:09:57 reinoud Exp $ */
+/* $NetBSD: intr.h,v 1.8 2012/02/02 11:13:41 reinoud Exp $ */
/*-
* Copyright (c) 2007 Jared D. McNeill <[email protected]>
@@ -36,7 +36,6 @@
void splinit(void);
int splraise(int);
void spllower(int);
-void spl_intr(int x, void (*func)(void *), void *arg);
#define spl0() spllower(IPL_NONE)
#define splx(x) spllower(x)