[base] Minor fixes and improvements of thread utils.

This commit is contained in:
Maksim Andrianov 2019-08-06 19:29:22 +03:00 committed by cc-engineering
parent 60322166a5
commit 8a348e1143
3 changed files with 19 additions and 4 deletions

View file

@ -76,7 +76,7 @@ public:
if (m_done)
return {};
m_queue.emplace(std::move(task));
m_queue.emplace(std::move(task));
}
m_condition.notify_one();
return result;
@ -115,6 +115,16 @@ public:
m_condition.notify_all();
}
void WaitAndStop()
{
{
std::unique_lock<std::mutex> lock(m_mutex);
m_done = true;
}
m_condition.notify_all();
m_joiner.TryJoin();
}
private:
void Worker()
{

View file

@ -64,7 +64,7 @@ public:
{
std::unique_lock<std::mutex> lk(m_mutex);
m_cond.wait(lk, [this]{ return !m_queue.empty(); });
value = m_queue.front();
value = std::move(m_queue.front());
m_queue.pop();
}
@ -74,7 +74,7 @@ public:
if (m_queue.empty())
return false;
value = m_queue.front();
value = std::move(m_queue.front());
m_queue.pop();
return true;

View file

@ -15,7 +15,7 @@ class ThreadsJoiner
public:
explicit ThreadsJoiner(ThreadContainer & threads) : m_threads(threads) {}
~ThreadsJoiner()
void TryJoin()
{
for (auto & thread : m_threads)
{
@ -24,6 +24,11 @@ public:
}
}
~ThreadsJoiner()
{
TryJoin();
}
private:
ThreadContainer & m_threads;
};