gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for fundef:FD_SET (0.03 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/sys/select.h - 3.5KB - 96 lines
62: 
63: #define FD_SET(n, p) \
64:         ((p)->fds_bits[(n) / __NFDBITS] |= (1 << ((n) % __NFDBITS)))
bsd_source/t2ex/network/net/src_bsd/sys/fd_set.h - 4.1KB - 110 lines
68: 
69: #define FD_SET(n, p)    \
70:     ((p)->fds_bits[(n)/__NFDBITS] |= (1 << ((n) % __NFDBITS)))
bsd_source/t2ex/network/net/src_bsdlib/libc/isc/eventlib_p.h - 8.8KB - 287 lines
205: #undef  FD_SET 
206: #define FD_SET(fd, maskp) \
207:         __fd_set(fd, maskp) 
t2ex_source/include/t2ex/sys/fd_set.h - 3.1KB - 86 lines
68: 
69: #define FD_SET(n, p)    \
70:         ((p)->fds_bits[(n)/__NFDBITS] |= (1 << ((n) % __NFDBITS)))