Backout previous commit, the P_STOPPED_BOUNDARY flag was already

cleared at the begin of thread_single() when needed.
This commit is contained in:
David Xu 2004-11-05 22:31:20 +00:00
parent bd1d11f5dc
commit 64895117a0

View File

@ -880,7 +880,7 @@ thread_single(int mode)
* process.
*/
p->p_singlethread = NULL;
p->p_flag &= ~(P_STOPPED_SINGLE | P_SINGLE_EXIT | P_SINGLE_BOUNDARY);
p->p_flag &= ~(P_STOPPED_SINGLE | P_SINGLE_EXIT);
thread_unthread(td);
}
mtx_unlock_spin(&sched_lock);