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

/freebsd-10.3-release/sys/sys/
H A Dsocketvar.h136 extern struct mtx accept_mtx;
137 #define ACCEPT_LOCK_ASSERT() mtx_assert(&accept_mtx, MA_OWNED)
138 #define ACCEPT_UNLOCK_ASSERT() mtx_assert(&accept_mtx, MA_NOTOWNED)
139 #define ACCEPT_LOCK() mtx_lock(&accept_mtx)
140 #define ACCEPT_UNLOCK() mtx_unlock(&accept_mtx)
/freebsd-10.3-release/sys/dev/iscsi/
H A Dicl_proxy.c250 error = msleep(&head->so_timeo, &accept_mtx, PSOCK | PCATCH,
/freebsd-10.3-release/sys/kern/
H A Duipc_socket.c224 * accept_mtx locks down per-socket fields relating to accept queues. See
227 struct mtx accept_mtx; variable in typeref:struct:mtx
228 MTX_SYSINIT(accept_mtx, &accept_mtx, "accept", MTX_DEF);
H A Duipc_syscalls.c456 error = msleep(&head->so_timeo, &accept_mtx, PSOCK | PCATCH,

Completed in 60 milliseconds