Commit c233d406 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix compile error on centos6. it does not like std::this_thread::sleep()

Simplify task_group destructor.
No tasks must be running or queued into task group is being destroyed.
parent 15c7f684
...@@ -19,6 +19,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/ ...@@ -19,6 +19,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/
#include <condition_variable> #include <condition_variable>
#include <tpool_structs.h> #include <tpool_structs.h>
#include <thread> #include <thread>
#include <assert.h>
namespace tpool namespace tpool
{ {
task_group::task_group(unsigned int max_concurrency) : task_group::task_group(unsigned int max_concurrency) :
...@@ -78,13 +79,6 @@ namespace tpool ...@@ -78,13 +79,6 @@ namespace tpool
task_group::~task_group() task_group::~task_group()
{ {
std::unique_lock<std::mutex> lk(m_mtx); assert(m_queue.empty() && !m_tasks_running);
m_queue.clear();
while (m_tasks_running)
{
lk.unlock();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
lk.lock();
}
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment