Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dsubr_trap.c103 if ((p->p_flag & P_PPWAIT) == 0 && in userret()
H A Dkern_fork.c668 p2->p_flag |= P_PPWAIT; in do_fork()
875 while (p2->p_flag & P_PPWAIT) { in ast_vfork()
H A Dkern_exit.c478 if ((p->p_flag & (P_TRACED | P_PPWAIT | P_PPTRACE)) != 0) { in exit1()
480 p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE); in exit1()
H A Dkern_exec.c825 if (p->p_flag & P_PPWAIT) { in do_execve()
826 p->p_flag &= ~(P_PPWAIT | P_PPTRACE); in do_execve()
H A Dkern_sig.c284 if ((p->p_flag & P_PPWAIT) == 0 && in ast_sig()
2519 if (p->p_flag & (P_PPWAIT|P_WEXIT)) in tdsendsignal()
3346 if ((p->p_flag & P_PPWAIT) != 0 || (td->td_flags & in issignal()
H A Dsys_process.c1094 if (p->p_flag & P_PPWAIT) in kern_ptrace()
H A Dtty.c471 if ((p->p_flag & P_PPWAIT) != 0 || in tty_wait_background()
/freebsd/sys/ddb/
H A Ddb_ps.c222 if (p->p_flag & P_PPWAIT) in db_ps_proc()
/freebsd/bin/ps/
H A Dprint.c264 if (flag & P_PPWAIT) in state()
/freebsd/sys/sys/
H A Dproc.h811 #define P_PPWAIT 0x00000010 /* Parent is waiting for child to macro