diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-16 05:10:15 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-07-16 05:10:15 +0000 |
commit | 6c55f05c348ad63d4f9cf6541b718b1802b42b4a (patch) | |
tree | 913e26036cbda3b9f1b7f5995bde34f5bfc44f7c /sys/arch/i386/include/intr.h | |
parent | 1f2303bb4ce44154fd7b3a05289808aea46b037b (diff) |
Move grab/release of the kernel_lock for softintrs from the ASM stubs to
softintr_dispatch(). Delete traces of long superseded stats code.
ok beck@ mpi@ uebayasi@
Diffstat (limited to 'sys/arch/i386/include/intr.h')
-rw-r--r-- | sys/arch/i386/include/intr.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/i386/include/intr.h b/sys/arch/i386/include/intr.h index 8716a2c3c68..491312da63a 100644 --- a/sys/arch/i386/include/intr.h +++ b/sys/arch/i386/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.44 2014/03/29 18:09:29 guenther Exp $ */ +/* $OpenBSD: intr.h,v 1.45 2015/07/16 05:10:14 guenther Exp $ */ /* $NetBSD: intr.h,v 1.5 1996/05/13 06:11:28 mycroft Exp $ */ /* @@ -135,10 +135,6 @@ int i386_send_ipi(struct cpu_info *, int); int i386_fast_ipi(struct cpu_info *, int); void i386_broadcast_ipi(int); void i386_ipi_handler(void); -void i386_intlock(int); -void i386_intunlock(int); -void i386_softintlock(void); -void i386_softintunlock(void); void i386_setperf_ipi(struct cpu_info *); extern void (*ipifunc[I386_NIPI])(struct cpu_info *); |