| 27 | } |
| 28 | |
| 29 | static void |
| 30 | fdset_move(struct fdset *pfdset, int dst, int src) |
| 31 | { |
| 32 | pfdset->fd[dst] = pfdset->fd[src]; |
| 33 | pfdset->rwfds[dst] = pfdset->rwfds[src]; |
| 34 | } |
| 35 | |
| 36 | static void |
| 37 | fdset_shrink_nolock(struct fdset *pfdset) |
no outgoing calls
no test coverage detected