aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Moestl <tmm@FreeBSD.org>2004-05-26 12:09:39 +0000
committerThomas Moestl <tmm@FreeBSD.org>2004-05-26 12:09:39 +0000
commit65e29c4822130de70e0339f278a921526c45f786 (patch)
treeedf0c96c7fcbf23aa962e54e2618acb5602d63a0
parent3e519a2cf4443b68fcede90b36e794d6671ac02f (diff)
Notes
-rw-r--r--sys/alpha/alpha/vm_machdep.c6
-rw-r--r--sys/amd64/amd64/vm_machdep.c6
-rw-r--r--sys/arm/arm/vm_machdep.c6
-rw-r--r--sys/i386/i386/vm_machdep.c6
-rw-r--r--sys/ia64/ia64/vm_machdep.c6
-rw-r--r--sys/kern/kern_exit.c1
-rw-r--r--sys/powerpc/aim/vm_machdep.c6
-rw-r--r--sys/powerpc/powerpc/vm_machdep.c6
-rw-r--r--sys/sparc64/sparc64/vm_machdep.c5
-rw-r--r--sys/sys/proc.h1
10 files changed, 0 insertions, 49 deletions
diff --git a/sys/alpha/alpha/vm_machdep.c b/sys/alpha/alpha/vm_machdep.c
index 5fa5c7f05ea7e..e77e0fed633ea 100644
--- a/sys/alpha/alpha/vm_machdep.c
+++ b/sys/alpha/alpha/vm_machdep.c
@@ -240,12 +240,6 @@ cpu_exit(struct thread *td)
}
void
-cpu_sched_exit(td)
- register struct thread *td;
-{
-}
-
-void
cpu_thread_exit(struct thread *td)
{
}
diff --git a/sys/amd64/amd64/vm_machdep.c b/sys/amd64/amd64/vm_machdep.c
index 38b359614538e..ddfbaeb515fc1 100644
--- a/sys/amd64/amd64/vm_machdep.c
+++ b/sys/amd64/amd64/vm_machdep.c
@@ -225,12 +225,6 @@ cpu_thread_swapout(struct thread *td)
}
void
-cpu_sched_exit(td)
- register struct thread *td;
-{
-}
-
-void
cpu_thread_setup(struct thread *td)
{
diff --git a/sys/arm/arm/vm_machdep.c b/sys/arm/arm/vm_machdep.c
index ec5be4ea14487..7df7fcbca1306 100644
--- a/sys/arm/arm/vm_machdep.c
+++ b/sys/arm/arm/vm_machdep.c
@@ -340,9 +340,3 @@ void
cpu_exit(struct thread *td)
{
}
-
-void
-cpu_sched_exit(td)
- register struct thread *td;
-{
-}
diff --git a/sys/i386/i386/vm_machdep.c b/sys/i386/i386/vm_machdep.c
index 0f1fd68370c80..17bd892a58725 100644
--- a/sys/i386/i386/vm_machdep.c
+++ b/sys/i386/i386/vm_machdep.c
@@ -337,12 +337,6 @@ cpu_thread_swapout(struct thread *td)
}
void
-cpu_sched_exit(td)
- register struct thread *td;
-{
-}
-
-void
cpu_thread_setup(struct thread *td)
{
diff --git a/sys/ia64/ia64/vm_machdep.c b/sys/ia64/ia64/vm_machdep.c
index 202d40e7eb317..354dcf11182b0 100644
--- a/sys/ia64/ia64/vm_machdep.c
+++ b/sys/ia64/ia64/vm_machdep.c
@@ -302,12 +302,6 @@ cpu_exit(struct thread *td)
ia64_highfp_drop(td);
}
-void
-cpu_sched_exit(td)
- register struct thread *td;
-{
-}
-
/*
* Allocate an sf_buf for the given vm_page. On this machine, however, there
* is no sf_buf object. Instead, an opaque pointer to the given vm_page is
diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c
index c39ed6f622d14..4d10f842b9ffd 100644
--- a/sys/kern/kern_exit.c
+++ b/sys/kern/kern_exit.c
@@ -523,7 +523,6 @@ exit1(struct thread *td, int rv)
binuptime(PCPU_PTR(switchtime));
PCPU_SET(switchticks, ticks);
- cpu_sched_exit(td); /* XXXKSE check if this should be in thread_exit */
/*
* Allow the scheduler to adjust the priority of the
* parent when a kseg is exiting.
diff --git a/sys/powerpc/aim/vm_machdep.c b/sys/powerpc/aim/vm_machdep.c
index efad080a24a55..4e8c80354416f 100644
--- a/sys/powerpc/aim/vm_machdep.c
+++ b/sys/powerpc/aim/vm_machdep.c
@@ -195,12 +195,6 @@ cpu_exit(td)
{
}
-void
-cpu_sched_exit(td)
- register struct thread *td;
-{
-}
-
/* Temporary helper */
void
cpu_throw(struct thread *old, struct thread *new)
diff --git a/sys/powerpc/powerpc/vm_machdep.c b/sys/powerpc/powerpc/vm_machdep.c
index efad080a24a55..4e8c80354416f 100644
--- a/sys/powerpc/powerpc/vm_machdep.c
+++ b/sys/powerpc/powerpc/vm_machdep.c
@@ -195,12 +195,6 @@ cpu_exit(td)
{
}
-void
-cpu_sched_exit(td)
- register struct thread *td;
-{
-}
-
/* Temporary helper */
void
cpu_throw(struct thread *old, struct thread *new)
diff --git a/sys/sparc64/sparc64/vm_machdep.c b/sys/sparc64/sparc64/vm_machdep.c
index 0b55453f12d2e..fe263f167fe6b 100644
--- a/sys/sparc64/sparc64/vm_machdep.c
+++ b/sys/sparc64/sparc64/vm_machdep.c
@@ -121,11 +121,6 @@ cpu_exit(struct thread *td)
}
void
-cpu_sched_exit(struct thread *td)
-{
-}
-
-void
cpu_thread_exit(struct thread *td)
{
}
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 7e534b82230cd..143710689d292 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -873,7 +873,6 @@ void unsleep(struct thread *);
void userret(struct thread *, struct trapframe *, u_int);
void cpu_exit(struct thread *);
-void cpu_sched_exit(struct thread *);
void exit1(struct thread *, int) __dead2;
void cpu_fork(struct thread *, struct proc *, struct thread *, int);
void cpu_set_fork_handler(struct thread *, void (*)(void *), void *);