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