Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/netinet/
Dsctp_lock_bsd.h111 #define SCTP_MCORE_QLOCK_INIT(cpstr) do { \ argument
112 mtx_init(&(cpstr)->que_mtx, "sctp-mcore_queue","queue_lock", \
116 #define SCTP_MCORE_QDESTROY(cpstr) do { \ argument
117 if (mtx_owned(&(cpstr)->core_mtx)) { \
118 mtx_unlock(&(cpstr)->que_mtx); \
120 mtx_destroy(&(cpstr)->que_mtx); \
123 #define SCTP_MCORE_QLOCK(cpstr) do { \ argument
124 mtx_lock(&(cpstr)->que_mtx); \
127 #define SCTP_MCORE_QUNLOCK(cpstr) do { \ argument
128 mtx_unlock(&(cpstr)->que_mtx); \
[all …]