| 36 | } |
| 37 | |
| 38 | bool ReportPthreadTimedError(const char* function_name, int error) |
| 39 | { |
| 40 | if (error == ETIMEDOUT) |
| 41 | return false; |
| 42 | ReportErrnoError(function_name, error); |
| 43 | return false; |
| 44 | } |
| 45 | |
| 46 | bool ReportPthreadTryLockError(const char* function_name, int error) |
| 47 | { |
no test coverage detected