Home
last modified time | relevance | path

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

/netbsd/src/sys/kern/
Dsys_socket.c151 so->so_rcv.sb_flags |= SB_ASYNC; in soo_ioctl()
152 so->so_snd.sb_flags |= SB_ASYNC; in soo_ioctl()
154 so->so_rcv.sb_flags &= ~SB_ASYNC; in soo_ioctl()
155 so->so_snd.sb_flags &= ~SB_ASYNC; in soo_ioctl()
Duipc_socket2.c353 so->so_rcv.sb_flags |= head->so_rcv.sb_flags & (SB_AUTOSIZE | SB_ASYNC); in sonewconn()
354 so->so_snd.sb_flags |= head->so_snd.sb_flags & (SB_AUTOSIZE | SB_ASYNC); in sonewconn()
589 if (sb->sb_flags & SB_ASYNC) in sowakeup()
/netbsd/src/sys/sys/
Dsocketvar.h113 #define SB_ASYNC 0x10 /* ASYNC I/O, need signals */ macro
397 return sb->sb_flags & (SB_NOTIFY | SB_ASYNC | SB_UPCALL | SB_KNOTE); in sb_notify()