Searched refs:mld_mtx (Results 1 – 2 of 2) sorted by relevance
148 #define MLD_LOCK_INIT() mtx_init(&mld_mtx, "mld_mtx", NULL, MTX_DEF)149 #define MLD_LOCK_DESTROY() mtx_destroy(&mld_mtx)150 #define MLD_LOCK() mtx_lock(&mld_mtx)151 #define MLD_LOCK_ASSERT() mtx_assert(&mld_mtx, MA_OWNED)152 #define MLD_UNLOCK() mtx_unlock(&mld_mtx)153 #define MLD_UNLOCK_ASSERT() mtx_assert(&mld_mtx, MA_NOTOWNED)
194 static struct mtx mld_mtx; variable