Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dsctp_lock_bsd.h119 #define SCTP_MCORE_QLOCK_INIT(cpstr) do { \ argument
120 mtx_init(&(cpstr)->que_mtx, "sctp-mcore_queue","queue_lock", \
124 #define SCTP_MCORE_QDESTROY(cpstr) do { \ argument
125 if (mtx_owned(&(cpstr)->core_mtx)) { \
126 mtx_unlock(&(cpstr)->que_mtx); \
128 mtx_destroy(&(cpstr)->que_mtx); \
131 #define SCTP_MCORE_QLOCK(cpstr) do { \ argument
132 mtx_lock(&(cpstr)->que_mtx); \
135 #define SCTP_MCORE_QUNLOCK(cpstr) do { \ argument
136 mtx_unlock(&(cpstr)->que_mtx); \
[all …]