Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dproc.h628 struct mtx p_statmtx; /* Lock for the stats */ member
731 #define PROC_STATLOCK(p) mtx_lock_spin(&(p)->p_statmtx)
732 #define PROC_STATUNLOCK(p) mtx_unlock_spin(&(p)->p_statmtx)
733 #define PROC_STATLOCK_ASSERT(p, type) mtx_assert(&(p)->p_statmtx, (type))
/f-stack/freebsd/kern/
H A Dkern_mutex.c1221 mtx_init(&proc0.p_statmtx, "pstatl", NULL, MTX_SPIN); in mutex_init()
H A Dkern_proc.c270 mtx_init(&p->p_statmtx, "pstatl", NULL, MTX_SPIN | MTX_NEW); in proc_init()