Home
last modified time | relevance | path

Searched refs:P_NOCLDSTOP (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.41.6/bsd/sys/
H A Dproc.h170 #define P_NOCLDSTOP 0x00000008 /* No SIGCHLD when children stop */ macro
/xnu-12377.41.6/bsd/kern/
H A Dkern_sig.c504 if ((signum == SIGCHLD) && (p->p_flag & P_NOCLDSTOP)) { in sigaction()
677 OSBitOrAtomic(P_NOCLDSTOP, &p->p_flag); in setsigvec()
679 OSBitAndAtomic(~((uint32_t)P_NOCLDSTOP), &p->p_flag); in setsigvec()
2384 if ((pp != PROC_NULL) && ((pp->p_flag & P_NOCLDSTOP) == 0)) { in psignal_internal()
2863 if ((pp != PROC_NULL) && ((pp->p_flag & P_NOCLDSTOP) == 0)) { in issignal_locked()