Home
last modified time | relevance | path

Searched refs:p_profmtx (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/sys/
H A Dproc.h682 struct mtx p_profmtx; /* Lock for the profiling */ member
797 #define PROC_PROFLOCK(p) mtx_lock_spin(&(p)->p_profmtx)
798 #define PROC_PROFUNLOCK(p) mtx_unlock_spin(&(p)->p_profmtx)
799 #define PROC_PROFLOCK_ASSERT(p, type) mtx_assert(&(p)->p_profmtx, (type))
/freebsd/sys/kern/
H A Dkern_mutex.c1254 mtx_init(&proc0.p_profmtx, "pprofl", NULL, MTX_SPIN); in mutex_init()
H A Dkern_proc.c275 mtx_init(&p->p_profmtx, "pprofl", NULL, MTX_SPIN | MTX_NEW); in proc_init()