Home
last modified time | relevance | path

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

/freebsd-head/sys/sys/
HDproc.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-head/sys/kern/
HDkern_mutex.c1250 mtx_init(&proc0.p_statmtx, "pstatl", NULL, MTX_SPIN); in mutex_init()
HDkern_proc.c275 mtx_init(&p->p_statmtx, "pstatl", NULL, MTX_SPIN | MTX_NEW); in proc_init()