Home
last modified time | relevance | path

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

/dragonfly/sys/kern/
H A Dkern_sig.c376 SIGDELSET(p->p_sigcatch, sig); in kern_sigaction()
380 SIGDELSET(p->p_sigcatch, sig); in kern_sigaction()
382 SIGADDSET(p->p_sigcatch, sig); in kern_sigaction()
447 while (SIGNOTEMPTY(p->p_sigcatch)) { in execsigs()
448 sig = sig_ffs(&p->p_sigcatch); in execsigs()
449 SIGDELSET(p->p_sigcatch, sig); in execsigs()
959 if ((p->p_flags & P_TRACED) == 0 && SIGISMEMBER(p->p_sigcatch, sig) && in trapsignal()
976 SIGDELSET(p->p_sigcatch, sig); in trapsignal()
1206 if (SIGISMEMBER(p->p_sigcatch, sig)) in lwpsignal()
2311 SIGDELSET(p->p_sigcatch, sig); in postsig()
H A Dkern_kinfo.c139 kp->kp_sigcatch = p->p_sigcatch; /* p_sigacts-> */ in fill_kinfo_proc()
/dragonfly/sys/sys/
H A Dproc.h239 #define p_sigcatch p_sigacts->ps_sigcatch macro