| 34 | |
| 35 | bool ReportPthreadTimedError(const char* function_name, int error); |
| 36 | inline bool CheckPthreadTimedError(const char* function_name, int error) |
| 37 | { |
| 38 | if (error) |
| 39 | return ReportPthreadTimedError(function_name, error); |
| 40 | return true; |
| 41 | } |
| 42 | |
| 43 | bool ReportPthreadTryLockError(const char* function_name, int error); |
| 44 | inline bool CheckPthreadTryLockError(const char* function_name, int error) |
nothing calls this directly
no test coverage detected