Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dkern_clock.c382 if ((td->td_proc->p_flag & P_PROFIL) == 0) in ast_oweupc()
643 if ((p->p_flag & P_PROFIL) == 0) { in startprofclock()
644 p->p_flag |= P_PROFIL; in startprofclock()
660 if (p->p_flag & P_PROFIL) { in stopprofclock()
668 if ((p->p_flag & P_PROFIL) == 0) in stopprofclock()
670 p->p_flag &= ~P_PROFIL; in stopprofclock()
781 if (td->td_proc->p_flag & P_PROFIL) in profclock()
H A Dsubr_prof.c149 if (!(p->p_flag & P_PROFIL)) { in addupc_task()
H A Dsubr_trap.c125 if (__predict_false(p->p_flag & P_PROFIL)) in userret()
H A Dkern_fork.c502 if (p1->p_flag & P_PROFIL) in do_fork()
/freebsd/sys/sys/
H A Dproc.h809 #define P_PROFIL 0x00000020 /* Has started profiling. */ macro