| 1253 | } |
| 1254 | |
| 1255 | void close_parent_fds() |
| 1256 | { |
| 1257 | if (write_to_child_ != -1) subprocess_close(write_to_child_); |
| 1258 | if (read_from_child_ != -1) subprocess_close(read_from_child_); |
| 1259 | if (err_read_ != -1) subprocess_close(err_read_); |
| 1260 | } |
| 1261 | |
| 1262 | void close_child_fds() |
| 1263 | { |