Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dsubr_trap.c118 if ((p->p_flag & P_PPWAIT) == 0 && in userret()
296 if ((p->p_flag & P_PPWAIT) == 0 && in ast()
H A Dkern_fork.c592 p2->p_flag |= P_PPWAIT; in do_fork()
799 while (p2->p_flag & P_PPWAIT) { in fork_rfppwait()
H A Dkern_exec.c764 if (p->p_flag & P_PPWAIT) { in do_execve()
765 p->p_flag &= ~(P_PPWAIT | P_PPTRACE); in do_execve()
H A Dkern_exit.c452 p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE); in exit1()
H A Dsys_process.c804 if (p->p_flag & P_PPWAIT) in kern_ptrace()
H A Dkern_sig.c2389 if (p->p_flag & (P_PPWAIT|P_WEXIT)) in tdsendsignal()
2864 if ((p->p_flag & P_PPWAIT) != 0 || (td->td_flags & in issignal()
H A Dtty.c474 if ((p->p_flag & P_PPWAIT) != 0 || in tty_wait_background()
/f-stack/freebsd/ddb/
H A Ddb_ps.c224 if (p->p_flag & P_PPWAIT) in db_ps_proc()
/f-stack/freebsd/sys/
H A Dproc.h749 #define P_PPWAIT 0x00000010 /* Parent is waiting for child to macro