Revert "ThreadPool#Stop(): discard non-processed queue items"

This reverts commit 30e6d0f809.

refs #6815
This commit is contained in:
Michael Friedrich 2018-12-06 09:56:49 +01:00
parent b58ce84b0e
commit bf4ecbed69
1 changed files with 0 additions and 1 deletions

View File

@ -73,7 +73,6 @@ void ThreadPool::Stop()
for (auto& queue : m_Queues) {
boost::mutex::scoped_lock lock(queue.Mutex);
queue.Stopped = true;
queue.Items.clear();
queue.CV.notify_all();
}