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

/xnu-2782.1.97/bsd/sys/
H A Dproc.h159 #define P_NOCLDSTOP 0x00000008 /* No SIGCHLD when children stop */ macro
/xnu-2782.1.97/bsd/kern/
H A Dkern_sig.c396 if ((signum == SIGCHLD) && (p->p_flag & P_NOCLDSTOP))
617 OSBitOrAtomic(P_NOCLDSTOP, &p->p_flag);
619 OSBitAndAtomic(~((uint32_t)P_NOCLDSTOP), &p->p_flag);
2020 if (( pp != PROC_NULL) && ((pp->p_flag & P_NOCLDSTOP) == 0)) {
2443 if ((pp != PROC_NULL) && ((pp->p_flag & P_NOCLDSTOP) == 0)) {

Completed in 68 milliseconds