diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-12-27 19:51:28 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-12-27 19:51:28 +0000 |
commit | 21a8a80dbd304e9f58f405ec6544f18d5dee4b72 (patch) | |
tree | e530c2073a074bbd8df49c90da1cdcf317a390c5 /sys/arch/amd64/include | |
parent | 483dea1f6457fcb58dbe62a48e1affc2b2c07e90 (diff) |
Eliminate x86_multicast_ipi() as unused and broken (doesn't handle #cpu>32).
The i386 version was removed some time ago, so kill its declaration too.
ok tedu@ kettenis@
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/intr.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/intr.h b/sys/arch/amd64/include/intr.h index 8fcb027363b..c820a2456e7 100644 --- a/sys/arch/amd64/include/intr.h +++ b/sys/arch/amd64/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.20 2010/12/21 14:56:23 claudio Exp $ */ +/* $OpenBSD: intr.h,v 1.21 2010/12/27 19:51:27 guenther Exp $ */ /* $NetBSD: intr.h,v 1.2 2003/05/04 22:01:56 fvdl Exp $ */ /*- @@ -210,7 +210,6 @@ void intr_printconfig(void); int x86_send_ipi(struct cpu_info *, int); int x86_fast_ipi(struct cpu_info *, int); void x86_broadcast_ipi(int); -void x86_multicast_ipi(int, int); void x86_ipi_handler(void); void x86_intlock(struct intrframe); void x86_intunlock(struct intrframe); |