| 338 | } |
| 339 | |
| 340 | void cmUVReadOnlyProcess::UVPipeOutEnd(ssize_t error) |
| 341 | { |
| 342 | // Process pipe error |
| 343 | if ((error != 0) && !this->Result()->error()) { |
| 344 | this->Result()->ErrorMessage = cmStrCat( |
| 345 | "Reading from stdout pipe failed with libuv error code ", error); |
| 346 | } |
| 347 | // Try finish |
| 348 | this->UVTryFinish(); |
| 349 | } |
| 350 | |
| 351 | void cmUVReadOnlyProcess::UVPipeErrData(cmUVPipeBuffer::DataRange data) const |
| 352 | { |
no test coverage detected