Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Dproc.h681 struct mtx p_itimmtx; /* Lock for the virt/prof timers */ member
793 #define PROC_ITIMLOCK(p) mtx_lock_spin(&(p)->p_itimmtx)
794 #define PROC_ITIMUNLOCK(p) mtx_unlock_spin(&(p)->p_itimmtx)
795 #define PROC_ITIMLOCK_ASSERT(p, type) mtx_assert(&(p)->p_itimmtx, (type))
/freebsd/sys/kern/
H A Dkern_mutex.c1253 mtx_init(&proc0.p_itimmtx, "pitiml", NULL, MTX_SPIN); in mutex_init()
H A Dkern_proc.c274 mtx_init(&p->p_itimmtx, "pitiml", NULL, MTX_SPIN | MTX_NEW); in proc_init()