Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Dproc.h680 struct mtx p_statmtx; /* Lock for the stats */ member
789 #define PROC_STATLOCK(p) mtx_lock_spin(&(p)->p_statmtx)
790 #define PROC_STATUNLOCK(p) mtx_unlock_spin(&(p)->p_statmtx)
791 #define PROC_STATLOCK_ASSERT(p, type) mtx_assert(&(p)->p_statmtx, (type))
/freebsd/sys/kern/
H A Dkern_mutex.c1252 mtx_init(&proc0.p_statmtx, "pstatl", NULL, MTX_SPIN); in mutex_init()
H A Dkern_proc.c273 mtx_init(&p->p_statmtx, "pstatl", NULL, MTX_SPIN | MTX_NEW); in proc_init()