| 273 | |
| 274 | |
| 275 | static void close(std::initializer_list<int_fd> fds) |
| 276 | { |
| 277 | foreach (int_fd fd, fds) { |
| 278 | if (fd >= 0) { |
| 279 | os::close(fd); |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | |
| 285 | // This function will invoke `os::close` on all specified file |
no outgoing calls