| 216 | } |
| 217 | |
| 218 | void NPar::TLocalExecutor::TImpl::RunNewThread() { |
| 219 | ++ThreadCount; |
| 220 | TThread thr(HostWorkerThread, this); |
| 221 | thr.Start(); |
| 222 | thr.Detach(); |
| 223 | } |
| 224 | |
| 225 | void NPar::TLocalExecutor::TImpl::LaunchRange(TIntrusivePtr<TLocalRangeExecutor> execRange, |
| 226 | int queueSizeLimit, |
no test coverage detected