slight code cleanup

MFC after:	1 week
This commit is contained in:
Julian Elischer 2004-09-05 23:23:58 +00:00
parent b44e5103c6
commit 0fe38d47b7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=134832

View File

@ -746,8 +746,6 @@ sched_switch(struct thread *td, struct thread *newtd)
if ((p->p_flag & P_NOLOAD) == 0)
sched_tdcnt--;
if (newtd != NULL && (newtd->td_proc->p_flag & P_NOLOAD) == 0)
sched_tdcnt++;
/*
* The thread we are about to run needs to be counted as if it had been
* added to the run queue and selected.
@ -756,6 +754,8 @@ sched_switch(struct thread *td, struct thread *newtd)
newtd->td_ksegrp->kg_avail_opennings--;
newtd->td_kse->ke_flags |= KEF_DIDRUN;
TD_SET_RUNNING(newtd);
if ((newtd->td_proc->p_flag & P_NOLOAD) == 0)
sched_tdcnt++;
}
td->td_lastcpu = td->td_oncpu;
td->td_flags &= ~TDF_NEEDRESCHED;