Home
last modified time | relevance | path

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

/freebsd-12.1/sys/kern/
H A Dkern_clock.c584 if ((p->p_flag & P_PROFIL) == 0) { in startprofclock()
585 p->p_flag |= P_PROFIL; in startprofclock()
601 if (p->p_flag & P_PROFIL) { in stopprofclock()
609 if ((p->p_flag & P_PROFIL) == 0) in stopprofclock()
611 p->p_flag &= ~P_PROFIL; in stopprofclock()
727 if (td->td_proc->p_flag & P_PROFIL) in profclock()
H A Dsubr_trap.c146 if (p->p_flag & P_PROFIL) in userret()
258 if (td->td_pflags & TDP_OWEUPC && p->p_flag & P_PROFIL) { in ast()
H A Dsubr_prof.c499 if (!(p->p_flag & P_PROFIL)) { in addupc_task()
H A Dkern_fork.c515 if (p1->p_flag & P_PROFIL) in do_fork()
/freebsd-12.1/sys/sys/
H A Dproc.h724 #define P_PROFIL 0x00020 /* Has started profiling. */ macro