Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dproc.h630 struct mtx p_profmtx; /* Lock for the profiling */ member
739 #define PROC_PROFLOCK(p) mtx_lock_spin(&(p)->p_profmtx)
740 #define PROC_PROFUNLOCK(p) mtx_unlock_spin(&(p)->p_profmtx)
741 #define PROC_PROFLOCK_ASSERT(p, type) mtx_assert(&(p)->p_profmtx, (type))
/f-stack/freebsd/kern/
H A Dkern_mutex.c1223 mtx_init(&proc0.p_profmtx, "pprofl", NULL, MTX_SPIN); in mutex_init()
H A Dkern_proc.c272 mtx_init(&p->p_profmtx, "pprofl", NULL, MTX_SPIN | MTX_NEW); in proc_init()