Home
last modified time | relevance | path

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

/netbsd/sys/netinet/
H A Dsctp_pcb.h337 struct mtx inp_create_mtx; member
341 kmutex_t inp_create_mtx; member
451 mtx_init(&(_inp)->inp_create_mtx, "sctp", "inp_create", \
455 #define SCTP_ASOC_CREATE_LOCK_DESTROY(_inp) mtx_destroy(&(_inp)->inp_create_mtx)
497 if (mtx_owned(&(_inp)->inp_create_mtx)) \
499 mtx_lock(&(_inp)->inp_create_mtx); \
504 #define SCTP_ASOC_CREATE_UNLOCK(_inp) mtx_unlock(&(_inp)->inp_create_mtx)
560 mutex_init(&(_inp)->inp_create_mtx, MUTEX_DEFAULT, IPL_NET)
563 #define SCTP_ASOC_CREATE_LOCK_DESTROY(_inp) mutex_destroy(&(_inp)->inp_create_mtx)
579 mutex_enter(&(_inp)->inp_create_mtx); \
[all …]