Searched refs:P_TRACED (Results 1 – 14 of 14) sorted by relevance
73 traced = (p->p_flag & P_TRACED) != 0; in syscallenter()249 if (__predict_false(p->p_flag & P_TRACED)) { in syscallret()
452 p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE); in exit1()475 if ((q->p_flag & P_TRACED) == 0) { in exit1()525 q->p_flag &= ~(P_TRACED | P_STOPPED_TRACE); in exit1()998 (p->p_flag & P_TRACED) != 0)) { in proc_to_reap()1269 (p->p_flag & P_TRACED) != 0) { in kern_wait6()1361 KASSERT((child->p_flag & P_TRACED) != 0, in proc_add_orphan()1394 if ((child->p_flag & P_TRACED) != 0) { in proc_reparent()
598 p->p_flag |= P_TRACED; in proc_set_traced()717 if ((p->p_flag & P_TRACED) != 0) { in kern_ptrace()735 if (p->p_flag & P_TRACED) { in kern_ptrace()741 if (curp->p_flag & P_TRACED) { in kern_ptrace()761 if ((p->p_flag & P_TRACED) == 0) { in kern_ptrace()1022 p->p_flag &= ~(P_TRACED | P_WAITED); in kern_ptrace()
2282 if (p->p_flag & P_TRACED) in tdsendsignal()2298 if (p->p_flag & P_TRACED) in tdsendsignal()2348 if (p->p_flag & P_TRACED) in tdsendsignal()2651 if (!(p->p_flag & P_TRACED)) in ptracestop()2715 if (p->p_flag & P_TRACED || in reschedule_signals()2887 if ((p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED && in issignal()2907 (p->p_flag & P_TRACED) == 0) { in issignal()2912 if ((p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED) { in issignal()2955 if ((p->p_flag & P_TRACED) == 0) { in issignal()2994 if ((p->p_flag & (P_TRACED | P_WEXIT | in issignal()[all …]
349 if ((p->p_flag & P_TRACED) != 0 || p->p_traceflag != 0) in trace_ctl()383 KASSERT((p->p_flag & P_TRACED) == 0, in trace_status()386 } else if ((p->p_flag & P_TRACED) != 0) { in trace_status()
402 if ((p->p_flag & P_TRACED) == 0) { in procdesc_close()
1101 if ((p->p_flag & P_TRACED) != 0) { in fork_return()1115 } else if (p->p_flag & P_TRACED || td->td_dbgflags & TDB_BORN) { in fork_return()
1283 return (P_SHOULDSTOP(p) || ((p->p_flag & P_TRACED) != 0 && in thread_suspend_check_needed()1449 ((p->p_flag & P_TRACED) && (td->td_dbgflags & TDB_SUSPEND))) in thread_check_susp()
529 (p->p_flag & P_TRACED) == 0) { in do_execve()
1157 if (p->p_flag & P_TRACED) in fill_kinfo_proc_only()
220 if (p->p_flag & P_TRACED) in db_ps_proc()
366 if ((p->p_flag & P_TRACED) == 0) { in linux_ptrace()
802 P_TRACED | P_SWAPPINGOUT | P_SWAPPINGIN | P_INMEM)) != in swapout_procs()
762 #define P_TRACED 0x00000800 /* Debugged process being traced. */ macro