summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorOwain Ainsworth <oga@cvs.openbsd.org>2009-03-26 17:24:34 +0000
committerOwain Ainsworth <oga@cvs.openbsd.org>2009-03-26 17:24:34 +0000
commit647d591871a5b84dc0a5b16349722565a45f3c53 (patch)
treee8b665217ed33e4929355cfc8114dcf8d40ce4a5 /sys/arch/amd64
parent5c8ed6b1ba929d643628032d6d808b6c915a7833 (diff)
Remove cpu_wait(). It's original use was to be called from the reaper so
MD code would free resources that couldn't be freed until we were no longer running in that processor. However, it's is unused on all architectures since mikeb@'s tss changes on x86 earlier in the year. ok miod@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/vm_machdep.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/arch/amd64/amd64/vm_machdep.c b/sys/arch/amd64/amd64/vm_machdep.c
index 144ecf99541..e392eda2f58 100644
--- a/sys/arch/amd64/amd64/vm_machdep.c
+++ b/sys/arch/amd64/amd64/vm_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_machdep.c,v 1.15 2009/02/03 11:24:19 mikeb Exp $ */
+/* $OpenBSD: vm_machdep.c,v 1.16 2009/03/26 17:24:33 oga Exp $ */
/* $NetBSD: vm_machdep.c,v 1.1 2003/04/26 18:39:33 fvdl Exp $ */
/*-
@@ -165,16 +165,6 @@ cpu_exit(struct proc *p)
}
/*
- * cpu_wait is called from reaper() to let machine-dependent
- * code free machine-dependent resources that couldn't be freed
- * in cpu_exit().
- */
-void
-cpu_wait(struct proc *p)
-{
-}
-
-/*
* Dump the machine specific segment at the start of a core dump.
*/
struct md_core {