| 1601 | } |
| 1602 | |
| 1603 | void Run() override { |
| 1604 | if (thread_can_start_ != nullptr) thread_can_start_->WaitForNotification(); |
| 1605 | func_(param_); |
| 1606 | } |
| 1607 | |
| 1608 | private: |
| 1609 | UserThreadFunc* const func_; // User-supplied thread function. |
no test coverage detected