Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dsctp_lock_bsd.h350 #define SCTP_TCB_LOCK_INIT(_tcb) do { \ argument
351 mtx_init(&(_tcb)->tcb_mtx, "sctp-tcb", "tcb", \
355 #define SCTP_TCB_LOCK_DESTROY(_tcb) do { \ argument
356 mtx_destroy(&(_tcb)->tcb_mtx); \
360 #define SCTP_TCB_LOCK(_tcb) do { \ argument
362 sctp_log_lock(_tcb->sctp_ep, _tcb, SCTP_LOG_LOCK_TCB); \
363 mtx_lock(&(_tcb)->tcb_mtx); \
366 #define SCTP_TCB_LOCK(_tcb) do { \ argument
367 mtx_lock(&(_tcb)->tcb_mtx); \
372 #define SCTP_TCB_TRYLOCK(_tcb) \ argument
[all …]