| 42 | |
| 43 | bool ReportPthreadTryLockError(const char* function_name, int error); |
| 44 | inline bool CheckPthreadTryLockError(const char* function_name, int error) |
| 45 | { |
| 46 | if (error) |
| 47 | return ReportPthreadTryLockError(function_name, error); |
| 48 | return true; |
| 49 | } |
| 50 | |
| 51 | } // namespace toft |
| 52 |
nothing calls this directly
no test coverage detected