Home
last modified time | relevance | path

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

/netbsd/sys/kern/
H A Dsys_socket.c149 so->so_rcv.sb_flags |= SB_ASYNC; in soo_ioctl()
150 so->so_snd.sb_flags |= SB_ASYNC; in soo_ioctl()
152 so->so_rcv.sb_flags &= ~SB_ASYNC; in soo_ioctl()
153 so->so_snd.sb_flags &= ~SB_ASYNC; in soo_ioctl()
H A Duipc_socket2.c350 so->so_rcv.sb_flags |= head->so_rcv.sb_flags & (SB_AUTOSIZE | SB_ASYNC); in sonewconn()
351 so->so_snd.sb_flags |= head->so_snd.sb_flags & (SB_AUTOSIZE | SB_ASYNC); in sonewconn()
586 if (sb->sb_flags & SB_ASYNC) in sowakeup()
/netbsd/sys/sys/
H A Dsocketvar.h113 #define SB_ASYNC 0x10 /* ASYNC I/O, need signals */ macro
396 return sb->sb_flags & (SB_NOTIFY | SB_ASYNC | SB_UPCALL | SB_KNOTE); in sb_notify()