Retire cpu_sched_exit(); it is not used any more.

This commit is contained in:
Thomas Moestl 2004-05-26 12:09:39 +00:00
parent 3e519a2cf4
commit 65e29c4822
10 changed files with 0 additions and 49 deletions

View File

@ -239,12 +239,6 @@ cpu_exit(struct thread *td)
alpha_fpstate_drop(td);
}
void
cpu_sched_exit(td)
register struct thread *td;
{
}
void
cpu_thread_exit(struct thread *td)
{

View File

@ -224,12 +224,6 @@ cpu_thread_swapout(struct thread *td)
{
}
void
cpu_sched_exit(td)
register struct thread *td;
{
}
void
cpu_thread_setup(struct thread *td)
{

View File

@ -340,9 +340,3 @@ void
cpu_exit(struct thread *td)
{
}
void
cpu_sched_exit(td)
register struct thread *td;
{
}

View File

@ -336,12 +336,6 @@ cpu_thread_swapout(struct thread *td)
{
}
void
cpu_sched_exit(td)
register struct thread *td;
{
}
void
cpu_thread_setup(struct thread *td)
{

View File

@ -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

View File

@ -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.

View File

@ -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)

View File

@ -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)

View File

@ -120,11 +120,6 @@ cpu_exit(struct thread *td)
}
}
void
cpu_sched_exit(struct thread *td)
{
}
void
cpu_thread_exit(struct thread *td)
{

View File

@ -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 *);