Searched refs:accept_mtx (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/sys/sys/
H A Dsocketvar.h140 extern struct mtx accept_mtx;
141 #define ACCEPT_LOCK_ASSERT() mtx_assert(&accept_mtx, MA_OWNED)
142 #define ACCEPT_UNLOCK_ASSERT() mtx_assert(&accept_mtx, MA_NOTOWNED)
143 #define ACCEPT_LOCK() mtx_lock(&accept_mtx)
144 #define ACCEPT_UNLOCK() mtx_unlock(&accept_mtx)
/freebsd-11.0-release/sys/dev/iscsi/
H A Dicl_soft_proxy.c227 error = msleep(&head->so_timeo, &accept_mtx, PSOCK | PCATCH,
/freebsd-11.0-release/sys/kern/
H A Duipc_socket.c238 * accept_mtx locks down per-socket fields relating to accept queues. See
241 struct mtx accept_mtx; variable in typeref:struct:mtx
242 MTX_SYSINIT(accept_mtx, &accept_mtx, "accept", MTX_DEF);
H A Duipc_syscalls.c375 error = msleep(&head->so_timeo, &accept_mtx, PSOCK | PCATCH,

Completed in 179 milliseconds