Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/netinet/
Dsctp_lock_bsd.h335 #define SCTP_TCB_SEND_LOCK_INIT(_tcb) do { \ argument
336 mtx_init(&(_tcb)->tcb_send_mtx, "sctp-send-tcb", "tcbs", \
340 #define SCTP_TCB_SEND_LOCK_DESTROY(_tcb) do { \ argument
341 mtx_destroy(&(_tcb)->tcb_send_mtx); \
344 #define SCTP_TCB_SEND_LOCK(_tcb) do { \ argument
345 mtx_lock(&(_tcb)->tcb_send_mtx); \
348 #define SCTP_TCB_SEND_UNLOCK(_tcb) do { \ argument
349 mtx_unlock(&(_tcb)->tcb_send_mtx); \
360 #define SCTP_TCB_LOCK_INIT(_tcb) do { \ argument
361 mtx_init(&(_tcb)->tcb_mtx, "sctp-tcb", "tcb", \
[all …]
/freebsd-12-stable/lib/libthr/arch/riscv/include/
Dpthread_md.h74 struct tcb *_tcb; in _tcb_get() local
76 __asm __volatile("addi %0, tp, %1" : "=r"(_tcb) : "I"(-TP_OFFSET)); in _tcb_get()
78 return (_tcb); in _tcb_get()