Home
last modified time | relevance | path

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

/freebsd-13.1/sys/kern/
H A Dkern_clock.c595 if ((p->p_flag & P_PROFIL) == 0) { in startprofclock()
596 p->p_flag |= P_PROFIL; in startprofclock()
612 if (p->p_flag & P_PROFIL) { in stopprofclock()
620 if ((p->p_flag & P_PROFIL) == 0) in stopprofclock()
622 p->p_flag &= ~P_PROFIL; in stopprofclock()
737 if (td->td_proc->p_flag & P_PROFIL) in profclock()
H A Dsubr_trap.c138 if (__predict_false(p->p_flag & P_PROFIL)) in userret()
249 if (td->td_pflags & TDP_OWEUPC && p->p_flag & P_PROFIL) { in ast()
H A Dsubr_prof.c501 if (!(p->p_flag & P_PROFIL)) { in addupc_task()
H A Dkern_fork.c499 if (p1->p_flag & P_PROFIL) in do_fork()
/freebsd-13.1/sys/sys/
H A Dproc.h761 #define P_PROFIL 0x00000020 /* Has started profiling. */ macro