| 27 | } |
| 28 | |
| 29 | bool ReportPosixTimedError(const char* function_name) |
| 30 | { |
| 31 | int error = errno; |
| 32 | if (error == ETIMEDOUT) |
| 33 | return false; |
| 34 | ReportErrnoError(function_name, error); |
| 35 | return true; |
| 36 | } |
| 37 | |
| 38 | bool ReportPthreadTimedError(const char* function_name, int error) |
| 39 | { |
no test coverage detected