| 1594 | ~ThreadWithParam() override { Join(); } |
| 1595 | |
| 1596 | void Join() { |
| 1597 | if (!finished_) { |
| 1598 | GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, nullptr)); |
| 1599 | finished_ = true; |
| 1600 | } |
| 1601 | } |
| 1602 | |
| 1603 | void Run() override { |
| 1604 | if (thread_can_start_ != nullptr) thread_can_start_->WaitForNotification(); |
nothing calls this directly
no outgoing calls
no test coverage detected