Home
last modified time | relevance | path

Searched refs:PL_PPWAIT (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/sys/kern/
H A Dkern_fork.c424 p2->p_lflag = PL_PPWAIT; in fork1()
648 ISSET(p->p_lflag, PL_PPWAIT) ? PTRACE_VFORK : PTRACE_FORK); in child_return()
H A Dkern_sig.c955 !(p->p_pptr == p->p_opptr && ISSET(p->p_lflag, PL_PPWAIT)) && in trapsignal()
1898 if ((p->p_lflag & PL_PPWAIT) != 0) in issignal()
1906 if ((p->p_lflag & PL_PPWAIT) != 0) in issignal()
1965 !(ISSET(p->p_lflag, PL_PPWAIT) && in issignal()
2022 !(ISSET(p->p_lflag, PL_PPWAIT) && in issignal()
H A Dkern_exit.c361 if (p->p_lflag & PL_PPWAIT) { in exit1()
365 p->p_lflag &= ~PL_PPWAIT; in exit1()
H A Dkern_lwp.c1939 if (p->p_lflag & PL_PPWAIT) in lwp_ctl_alloc()
2070 if (p->p_lflag & PL_PPWAIT) { in lwp_ctl_free()
H A Dtty.c1070 p->p_pgrp->pg_jobc && (p->p_lflag & PL_PPWAIT) == 0 && in ttioctl()
1997 p->p_lflag & PL_PPWAIT || p->p_pgrp->pg_jobc == 0) { in ttread()
2260 ISSET(tp->t_lflag, TOSTOP) && (p->p_lflag & PL_PPWAIT) == 0 && in ttwrite()
H A Dtty_pty.c444 p->p_lflag & PL_PPWAIT) { in ptsread()
H A Dkern_exec.c1303 * It's OK to test PL_PPWAIT unlocked here, as other LWPs have in execve_runproc()
1310 if ((p->p_lflag & PL_PPWAIT) != 0) { in execve_runproc()
1320 p->p_lflag &= ~PL_PPWAIT; in execve_runproc()
H A Dsys_ptrace_common.c392 if (ISSET(p->p_lflag, PL_PPWAIT) && p->p_pptr == t) in ptrace_allowed()
H A Dkern_proc.c2012 PL_PPWAIT, P_PPWAIT,
/netbsd-src/sys/sys/
H A Dproc.h433 #define PL_PPWAIT 0x00000002 /* Parent is waiting for child exec/exit */ macro