Home
last modified time | relevance | path

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

/openbsd/sys/sys/
H A Dsocketvar.h307 #define SBL_WAIT 0x01 /* Wait if lock not immediately available. */ macro
/openbsd/sys/kern/
H A Duipc_socket.c550 #define SBLOCKWAIT(f) (((f) & MSG_DONTWAIT) ? 0 : SBL_WAIT)
1287 error = sblock(sb, SBL_WAIT | SBL_NOINTR); in sorflush()
1332 if ((error = sblock(&so->so_rcv, SBL_WAIT)) != 0) in sosplice()
1383 if ((error = sblock(&so->so_rcv, SBL_WAIT)) != 0) in sosplice()
1385 if ((error = sblock(&sosp->so_snd, SBL_WAIT)) != 0) { in sosplice()
H A Duipc_socket2.c545 if (!(flags & SBL_WAIT)) in sblock()