-----------------------------------------------------------------------------
| 193 | |
| 194 | //----------------------------------------------------------------------------- |
| 195 | void vtkThreadedCallbackQueue::Sync(int startId) |
| 196 | { |
| 197 | std::for_each(this->Threads.begin() + startId, this->Threads.end(), |
| 198 | [](std::thread& thread) { thread.join(); }); |
| 199 | } |
| 200 | |
| 201 | //----------------------------------------------------------------------------- |
| 202 | void vtkThreadedCallbackQueue::PopFrontNullptr() |
no test coverage detected