| 844 | } |
| 845 | |
| 846 | Status ThreadPool::CreateThread() { |
| 847 | return kudu::Thread::Create("thread pool", strings::Substitute("$0 [worker]", name_), |
| 848 | [this]() { this->DispatchThread(); }, nullptr); |
| 849 | } |
| 850 | |
| 851 | void ThreadPool::CheckNotPoolThreadUnlocked() { |
| 852 | Thread* current = Thread::current_thread(); |
nothing calls this directly
no test coverage detected