Home
last modified time | relevance | path

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

/freebsd-10-stable/sys/sys/
Dunpcb.h85 struct mtx unp_mtx; /* mutex */ member
/freebsd-10-stable/sys/kern/
Duipc_usrreq.c264 #define UNP_PCB_LOCK_INIT(unp) mtx_init(&(unp)->unp_mtx, \
267 #define UNP_PCB_LOCK_DESTROY(unp) mtx_destroy(&(unp)->unp_mtx)
268 #define UNP_PCB_LOCK(unp) mtx_lock(&(unp)->unp_mtx)
269 #define UNP_PCB_UNLOCK(unp) mtx_unlock(&(unp)->unp_mtx)
270 #define UNP_PCB_LOCK_ASSERT(unp) mtx_assert(&(unp)->unp_mtx, MA_OWNED)