| 130 | fds->fds_bits[fd / 8] &= ~(1 << (fd % 8)); |
| 131 | } |
| 132 | static inline int FD_ISSET(int fd, fd_set_t* fds) { |
| 133 | assert(fd < FD_SETSIZE); |
| 134 | return fds->fds_bits[fd / 8] & (1 << (fd % 8)); |
| 135 | } |
| 136 | static inline void FD_SET(int fd, fd_set_t* fds) { |
| 137 | assert(fd < FD_SETSIZE); |
| 138 | fds->fds_bits[fd / 8] |= 1 << (fd % 8); |
nothing calls this directly
no outgoing calls
no test coverage detected