| 1370 | */ |
| 1371 | template <int N> |
| 1372 | inline void |
| 1373 | close_fd_array(pstreams::fd_type (&fds)[N]) |
| 1374 | { |
| 1375 | for (std::size_t i = 0; i < N; ++i) |
| 1376 | close_fd(fds[i]); |
| 1377 | } |
| 1378 | |
| 1379 | /** |
| 1380 | * Starts a new process by executing @a file with the arguments in |