| 161 | } |
| 162 | |
| 163 | void Coprocess::close_stdin () |
| 164 | { |
| 165 | delete stdin_pipe_ostream; |
| 166 | stdin_pipe_ostream = nullptr; |
| 167 | if (stdin_pipe_writer) { |
| 168 | CloseHandle(stdin_pipe_writer); |
| 169 | stdin_pipe_writer = nullptr; |
| 170 | } |
| 171 | if (stdin_pipe_reader) { |
| 172 | CloseHandle(stdin_pipe_reader); |
| 173 | stdin_pipe_reader = nullptr; |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | std::istream* Coprocess::stdout_pipe () |
| 178 | { |
nothing calls this directly
no outgoing calls
no test coverage detected