Home
last modified time | relevance | path

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

/netbsd-src/sys/kern/
H A Dkern_sig.c942 if ((p->p_sflag & PS_STOPPING) != 0) { in trapsignal()
1410 p->p_stat == SACTIVE && (p->p_sflag & PS_STOPPING) == 0 && in kpsignal2()
1441 if (p->p_stat == SACTIVE && (p->p_sflag & PS_STOPPING) == 0) { in kpsignal2()
1469 p->p_sflag &= ~PS_STOPPING; in kpsignal2()
1551 KASSERT((p->p_sflag & PS_STOPPING) != 0); in proc_stop_lwps()
1574 KASSERT((p->p_sflag & PS_STOPPING) != 0); in proc_stop_done()
1578 p->p_sflag &= ~PS_STOPPING; in proc_stop_done()
1659 if ((p->p_sflag & PS_STOPPING) != 0) { in eventswitch()
1741 if (p->p_stat == SACTIVE && (p->p_sflag & PS_STOPPING) == 0) { in sigswitch()
1751 if ((p->p_sflag & PS_STOPPING) != 0) { in sigswitch()
[all …]
H A Dkern_lwp.c560 p->p_sflag &= ~PS_STOPPING; in lwp_unstop()
1010 if (p->p_stat == SSTOP || (p->p_sflag & PS_STOPPING) != 0) { in lwp_start()
/netbsd-src/sys/sys/
H A Dproc.h400 #define PS_STOPPING 0x80000000 /* Transitioning SACTIVE -> SSTOP */ macro