| 162 | // Stream should not be disabled or shared. |
| 163 | int to_child_stdin_fd() const { return CheckAndOffer(STDIN_FILENO); } |
| 164 | int from_child_stdout_fd() const { return CheckAndOffer(STDOUT_FILENO); } |
| 165 | int from_child_stderr_fd() const { return CheckAndOffer(STDERR_FILENO); } |
| 166 | |
| 167 | // Release control of the file descriptor for the child's stream, only if piped. |