gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for fundef:FD_ZERO (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/sys/select.h - 3.5KB - 96 lines
70: #define FD_COPY(f, t)   bcopy(f, t, sizeof(*(f)))
71: #define FD_ZERO(p)      bzero(p, sizeof(*(p)))
72: #else
More results from select.h
bsd_source/t2ex/network/net/src_bsd/sys/fd_set.h - 4.1KB - 110 lines
75: #if __GNUC_PREREQ__(2, 95) && !defined(T2EX)
76: #define FD_ZERO(p)      (void)__builtin_memset((p), 0, sizeof(*(p)))
77: #else
More results from fd_set.h
bsd_source/t2ex/network/net/src_bsdlib/libc/isc/eventlib_p.h - 8.8KB - 287 lines
202: #undef  FD_ZERO 
203: #define FD_ZERO(maskp) 
204:   
t2ex_source/include/t2ex/sys/fd_set.h - 3.1KB - 86 lines
77: 
78: #define FD_ZERO(p)      do {                                         \
79:         fd_set *__fds = (p);                                           \