| 44 | } |
| 45 | |
| 46 | bool ReportPthreadTryLockError(const char* function_name, int error) |
| 47 | { |
| 48 | if (error == EBUSY || error == EAGAIN) |
| 49 | return false; |
| 50 | ReportErrnoError(function_name, error); |
| 51 | return false; |
| 52 | } |
| 53 | |
| 54 | } // namespace toft |
no test coverage detected