Home
last modified time | relevance | path

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

/external/chromium_org/third_party/usrsctp/usrsctplib/
Duser_inpcb.h245 struct mtx ipi_mtx; member
263 mtx_init(&(ipi)->ipi_mtx, (d), NULL, MTX_DEF | MTX_RECURSE)
264 #define INP_INFO_LOCK_DESTROY(ipi) mtx_destroy(&(ipi)->ipi_mtx)
265 #define INP_INFO_RLOCK(ipi) mtx_lock(&(ipi)->ipi_mtx)
266 #define INP_INFO_WLOCK(ipi) mtx_lock(&(ipi)->ipi_mtx)
267 #define INP_INFO_RUNLOCK(ipi) mtx_unlock(&(ipi)->ipi_mtx)
268 #define INP_INFO_WUNLOCK(ipi) mtx_unlock(&(ipi)->ipi_mtx)
269 #define INP_INFO_RLOCK_ASSERT(ipi) mtx_assert(&(ipi)->ipi_mtx, MA_OWNED)
270 #define INP_INFO_WLOCK_ASSERT(ipi) mtx_assert(&(ipi)->ipi_mtx, MA_OWNED)
271 #define INP_INFO_UNLOCK_ASSERT(ipi) mtx_assert(&(ipi)->ipi_mtx, MA_NOTOWNED)