HomeSort by: relevance | last modified time | path
    Searched defs:SBLOCKWAIT (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/dev/
kttcp.c 192 #define SBLOCKWAIT(f) (((f) & MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
227 if ((error = sblock(&so->so_snd, SBLOCKWAIT(flags))) != 0)
389 if ((error = sblock(&so->so_rcv, SBLOCKWAIT(flags))) != 0)
  /src/sys/kern/
uipc_socket.c 885 #define SBLOCKWAIT(f) (((f) & MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
944 if ((error = sblock(&so->so_snd, SBLOCKWAIT(flags))) != 0)
1218 if ((error = sblock(&so->so_rcv, SBLOCKWAIT(flags))) != 0) {
  /src/sys/netinet/
sctp_output.c 4119 #define SBLOCKWAIT(f) (((f)&MSG_DONTWAIT) ? M_NOWAIT : M_WAITOK)
4228 error = sblock(&so->so_snd, SBLOCKWAIT(flags));
9307 error = sblock(&so->so_snd, SBLOCKWAIT(flags));

Completed in 18 milliseconds