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.c477 if ((p->p_flag & (P_TRACED | P_PPWAIT | P_PPTRACE)) != 0) { in exit1()
479 p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE); in exit1()
H A Dsys_process.c1059 p->p_flag |= P_PPTRACE; in kern_ptrace()
H A Dkern_exec.c822 p->p_flag &= ~(P_PPWAIT | P_PPTRACE); in do_execve()
H A Dkern_sig.c3148 if ((p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED) { in sigprocess()
3331 if ((p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED && in issignal()
/freebsd/sys/sys/
H A Dproc.h843 #define P_PPTRACE 0x80000000 /* PT_TRACEME by vforked child. */ macro