gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:__howmany from t2ex/bsd_source/t2ex/network/net/src_bsd/sys/fd_set.h (0.00 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/sys/fd_set.h - 4.1KB - 110 lines
65: typedef struct fd_set {
66:         __fd_mask      fds_bits[__howmany(FD_SETSIZE, __NFDBITS)];
67: } fd_set;
80: unsigned int __i; \ 81: for (__i = 0; __i < __howmany(FD_SETSIZE, __NFDBITS); __i++) \ 82: __fds->fds_bits[__i] = 0; \
93: #ifndef howmany 94: #define howmany(a, b) __howmany(a, b) 95: #endif
102: unsigned int __i; \ 103: for (__i = 0; __i < __howmany(FD_SETSIZE, __NFDBITS); __i++) \ 104: __t->fds_bits[__i] = __f->fds_bits[__i]; \