Home
last modified time | relevance | path

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

/f-stack/tools/compat/include/netinet/
H A Digmp_var.h200 #define IGMP_LOCK_INIT() mtx_init(&igmp_mtx, "igmp_mtx", NULL, MTX_DEF)
201 #define IGMP_LOCK_DESTROY() mtx_destroy(&igmp_mtx)
202 #define IGMP_LOCK() mtx_lock(&igmp_mtx)
203 #define IGMP_LOCK_ASSERT() mtx_assert(&igmp_mtx, MA_OWNED)
204 #define IGMP_UNLOCK() mtx_unlock(&igmp_mtx)
205 #define IGMP_UNLOCK_ASSERT() mtx_assert(&igmp_mtx, MA_NOTOWNED)
/f-stack/freebsd/netinet/
H A Digmp_var.h200 #define IGMP_LOCK_INIT() mtx_init(&igmp_mtx, "igmp_mtx", NULL, MTX_DEF)
201 #define IGMP_LOCK_DESTROY() mtx_destroy(&igmp_mtx)
202 #define IGMP_LOCK() mtx_lock(&igmp_mtx)
203 #define IGMP_LOCK_ASSERT() mtx_assert(&igmp_mtx, MA_OWNED)
204 #define IGMP_UNLOCK() mtx_unlock(&igmp_mtx)
205 #define IGMP_UNLOCK_ASSERT() mtx_assert(&igmp_mtx, MA_NOTOWNED)
H A Digmp.c197 struct mtx igmp_mtx; variable