Home
last modified time | relevance | path

Searched refs:p_siglist (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/kern/
H A Dkern_kthread.c200 SIGADDSET(p->p_siglist, SIGSTOP); in kproc_suspend()
202 return msleep(&p->p_siglist, &p->p_mtx, PPAUSE | PDROP, "suspkp", timo); in kproc_suspend()
217 SIGDELSET(p->p_siglist, SIGSTOP); in kproc_resume()
219 wakeup(&p->p_siglist); in kproc_resume()
227 while (SIGISMEMBER(p->p_siglist, SIGSTOP)) { in kproc_suspend_check()
228 wakeup(&p->p_siglist); in kproc_suspend_check()
229 msleep(&p->p_siglist, &p->p_mtx, PPAUSE, "kpsusp", 0); in kproc_suspend_check()
H A Dsubr_trap.c318 !SIGISEMPTY(p->p_siglist)) { in ast()
H A Dkern_sig.c2696 if (SIGISEMPTY(p->p_siglist)) in reschedule_signals()
2698 SIGSETAND(block, p->p_siglist); in reschedule_signals()
H A Dkern_proc.c1151 kp->ki_siglist = p->p_siglist; in fill_kinfo_proc_only()
/f-stack/freebsd/sys/
H A Dsignalvar.h282 (!SIGISEMPTY((td)->td_proc->p_siglist) && \
283 !sigsetmasked(&(td)->td_proc->p_siglist, &(td)->td_sigmask)))
H A Dproc.h633 #define p_siglist p_sigqueue.sq_signals macro