| 547 | namespace { |
| 548 | |
| 549 | int isPthreadError(int rc, const char* function) |
| 550 | { |
| 551 | if (rc == 0) |
| 552 | return 0; |
| 553 | iscLogStatus("Pthread Error", |
| 554 | (Arg::Gds(isc_sys_request) << Arg::Str(function) << Arg::Unix(rc)).value()); |
| 555 | return rc; |
| 556 | } |
| 557 | |
| 558 | } |
| 559 |
nothing calls this directly
no test coverage detected