Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/kern/
HDsubr_trap.c117 if ((p->p_flag & P_PPWAIT) == 0 && in userret()
306 if ((p->p_flag & P_PPWAIT) == 0 && in ast()
HDkern_fork.c613 p2->p_flag |= P_PPWAIT; in do_fork()
820 while (p2->p_flag & P_PPWAIT) { in fork_rfppwait()
HDkern_exec.c832 if (p->p_flag & P_PPWAIT) { in do_execve()
833 p->p_flag &= ~(P_PPWAIT | P_PPTRACE); in do_execve()
HDkern_exit.c484 p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE); in exit1()
HDsys_process.c1044 if (p->p_flag & P_PPWAIT) in kern_ptrace()
HDkern_sig.c2422 if (p->p_flag & (P_PPWAIT|P_WEXIT)) in tdsendsignal()
3224 if ((p->p_flag & P_PPWAIT) != 0 || (td->td_flags & in issignal()
HDtty.c472 if ((p->p_flag & P_PPWAIT) != 0 || in tty_wait_background()
/freebsd-13-stable/sys/ddb/
HDdb_ps.c222 if (p->p_flag & P_PPWAIT) in db_ps_proc()
/freebsd-13-stable/bin/ps/
HDprint.c274 if (flag & P_PPWAIT) in state()
/freebsd-13-stable/sys/sys/
HDproc.h765 #define P_PPWAIT 0x00000010 /* Parent is waiting for child to macro