Home
last modified time | relevance | path

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

/netbsd/src/sys/kern/
Dkern_fork.c424 p2->p_lflag = PL_PPWAIT; in fork1()
648 ISSET(p->p_lflag, PL_PPWAIT) ? PTRACE_VFORK : PTRACE_FORK); in child_return()
Dkern_sig.c929 !(p->p_pptr == p->p_opptr && ISSET(p->p_lflag, PL_PPWAIT)) && in trapsignal()
1872 if ((p->p_lflag & PL_PPWAIT) != 0) in issignal()
1880 if ((p->p_lflag & PL_PPWAIT) != 0) in issignal()
1939 !(ISSET(p->p_lflag, PL_PPWAIT) && in issignal()
1996 !(ISSET(p->p_lflag, PL_PPWAIT) && in issignal()
Dkern_exit.c363 if (p->p_lflag & PL_PPWAIT) { in exit1()
367 p->p_lflag &= ~PL_PPWAIT; in exit1()
Dkern_lwp.c1939 if (p->p_lflag & PL_PPWAIT) in lwp_ctl_alloc()
2070 if (p->p_lflag & PL_PPWAIT) { in lwp_ctl_free()
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()
Dtty_pty.c444 p->p_lflag & PL_PPWAIT) { in ptsread()
Dkern_exec.c1305 if ((p->p_lflag & PL_PPWAIT) != 0) { in execve_runproc()
1315 p->p_lflag &= ~PL_PPWAIT; in execve_runproc()
Dsys_ptrace_common.c392 if (ISSET(p->p_lflag, PL_PPWAIT) && p->p_pptr == t) in ptrace_allowed()
Dkern_proc.c2018 PL_PPWAIT, P_PPWAIT,
/netbsd/src/sys/sys/
Dproc.h433 #define PL_PPWAIT 0x00000002 /* Parent is waiting for child exec/exit */ macro