Home
last modified time | relevance | path

Searched refs:p_singlethread (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/kern/
H A Dkern_thread.c980 thread_lock(p->p_singlethread); in thread_exit()
981 thread_unsuspend_one(p->p_singlethread, in thread_exit()
1250 if (p->p_singlethread != NULL && p->p_singlethread != td) in thread_single()
1267 p->p_singlethread = td; in thread_single()
1310 p->p_singlethread = NULL; in thread_single()
1409 KASSERT(p->p_singlethread != NULL, in thread_suspend_check()
1417 if (p->p_singlethread == td) in thread_suspend_check()
1445 if ((p->p_flag & P_SINGLE_EXIT) && (p->p_singlethread != td)) { in thread_suspend_check()
1463 thread_lock(p->p_singlethread); in thread_suspend_check()
1464 thread_unsuspend_one(p->p_singlethread, p, in thread_suspend_check()
[all …]
H A Dkern_sig.c4097 MPASS((p->p_flag & P_HADTHREADS) == 0 || p->p_singlethread == td); in coredump()
/freebsd/sys/sys/
H A Dproc.h710 struct thread *p_singlethread;/* (c + j) If single threading this is it */ member