Whitespace fix.

This commit is contained in:
John Baldwin 2004-07-16 21:01:52 +00:00
parent 6dbc085016
commit d3373e371b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132265

View file

@ -1066,7 +1066,7 @@ thread_unsuspend(struct proc *p)
mtx_assert(&sched_lock, MA_OWNED);
PROC_LOCK_ASSERT(p, MA_OWNED);
if (!P_SHOULDSTOP(p)) {
while (( td = TAILQ_FIRST(&p->p_suspended))) {
while ((td = TAILQ_FIRST(&p->p_suspended))) {
thread_unsuspend_one(td);
}
} else if ((P_SHOULDSTOP(p) == P_STOPPED_SINGLE) &&