Home
last modified time | relevance | path

Searched refs:p_ptevents (Results 1 – 8 of 8) sorted by relevance

/f-stack/freebsd/kern/
H A Dsys_process.c601 p->p_ptevents = PTRACE_DEFAULT; in proc_set_traced()
876 p->p_ptevents |= PTRACE_FORK; in kern_ptrace()
886 p->p_ptevents |= PTRACE_LWP; in kern_ptrace()
888 p->p_ptevents &= ~PTRACE_LWP; in kern_ptrace()
897 p->p_ptevents); in kern_ptrace()
898 *(int *)addr = p->p_ptevents; in kern_ptrace()
914 p->p_ptevents = tmp; in kern_ptrace()
986 p->p_ptevents |= PTRACE_SCE; in kern_ptrace()
989 p->p_pid, p->p_ptevents, in kern_ptrace()
993 p->p_ptevents |= PTRACE_SCX; in kern_ptrace()
[all …]
H A Dsubr_syscall.c98 if (p->p_ptevents & PTRACE_SCE) in syscallenter()
266 (p->p_ptevents & PTRACE_SCX) != 0)) in syscallret()
H A Dkern_fork.c730 if ((p1->p_ptevents & PTRACE_FORK) != 0) { in do_fork()
739 if ((p1->p_ptevents & PTRACE_FORK) != 0) { in do_fork()
815 if (p->p_ptevents & PTRACE_VFORK) in fork_rfppwait()
1122 if ((p->p_ptevents & PTRACE_SCX) != 0 || in fork_return()
H A Dkern_thr.c261 if (p->p_ptevents & PTRACE_LWP) in thread_create()
360 if (p->p_ptevents & PTRACE_LWP) { in kern_thr_exit()
H A Dkern_exit.c349 p->p_ptevents = 0; in exit1()
527 q->p_ptevents = 0; in exit1()
H A Dkern_exec.c910 if (p->p_ptevents & PTRACE_EXEC) { in do_execve()
912 if (p->p_ptevents & PTRACE_EXEC) in do_execve()
H A Dkern_sig.c1349 if (error == 0 && (p->p_ptevents & PTRACE_SYSCALL) != 0) in kern_sigtimedwait()
1572 if ((p->p_ptevents & PTRACE_SYSCALL) != 0) in kern_sigsuspend()
2603 p->p_ptevents = 0; in ptracestop()
/f-stack/freebsd/sys/
H A Dproc.h655 u_int p_ptevents; /* (c + e) ptrace() event mask. */ member