Home
last modified time | relevance | path

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

/illumos-gate/usr/src/contrib/bhyve/amd64/machine/
H A Dpmap.h314 struct mtx pm_mtx; member
339 #define PMAP_LOCK(pmap) mtx_lock(&(pmap)->pm_mtx)
341 mtx_assert(&(pmap)->pm_mtx, (type))
342 #define PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
343 #define PMAP_LOCK_INIT(pmap) mtx_init(&(pmap)->pm_mtx, "pmap", \
345 #define PMAP_LOCKED(pmap) mtx_owned(&(pmap)->pm_mtx)
346 #define PMAP_MTX(pmap) (&(pmap)->pm_mtx)
347 #define PMAP_TRYLOCK(pmap) mtx_trylock(&(pmap)->pm_mtx)
348 #define PMAP_UNLOCK(pmap) mtx_unlock(&(pmap)->pm_mtx)