Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dkern_clock.c598 if ((p->p_flag & P_PROFIL) == 0) { in startprofclock()
599 p->p_flag |= P_PROFIL; in startprofclock()
615 if (p->p_flag & P_PROFIL) { in stopprofclock()
623 if ((p->p_flag & P_PROFIL) == 0) in stopprofclock()
625 p->p_flag &= ~P_PROFIL; in stopprofclock()
740 if (td->td_proc->p_flag & P_PROFIL) in profclock()
H A Dsubr_trap.c137 if (__predict_false(p->p_flag & P_PROFIL)) in userret()
237 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.c492 if (p1->p_flag & P_PROFIL) in do_fork()
/f-stack/freebsd/sys/
H A Dproc.h751 #define P_PROFIL 0x00000020 /* Has started profiling. */ macro