Home
last modified time | relevance | path

Searched refs:P_PPTRACE (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/kern/
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 Dsys_process.c1095 p->p_flag |= P_PPTRACE; in kern_ptrace()
H A Dkern_sig.c3196 if ((p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED) { in sigprocess()
3380 (p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED && in issignal()
H A Dkern_exec.c827 p->p_flag &= ~(P_PPWAIT | P_PPTRACE); in do_execve()
/freebsd/sys/sys/
H A Dproc.h847 #define P_PPTRACE 0x80000000 /* PT_TRACEME by vforked child. */ macro