Searched refs:igmp_mtx (Results 1 – 2 of 2) sorted by relevance
193 #define IGMP_LOCK_INIT() mtx_init(&igmp_mtx, "igmp_mtx", NULL, MTX_DEF)194 #define IGMP_LOCK_DESTROY() mtx_destroy(&igmp_mtx)195 #define IGMP_LOCK() mtx_lock(&igmp_mtx)196 #define IGMP_LOCK_ASSERT() mtx_assert(&igmp_mtx, MA_OWNED)197 #define IGMP_UNLOCK() mtx_unlock(&igmp_mtx)198 #define IGMP_UNLOCK_ASSERT() mtx_assert(&igmp_mtx, MA_NOTOWNED)
185 struct mtx igmp_mtx; variable