代码拉取完成,页面将自动刷新
#include "tthreadpool.h"
using namespace std;
namespace tlib
{
TThreadPool::TThreadPool() :
m_bRunning(false)
{
}
TThreadPool::~TThreadPool()
{
if (m_bRunning)
Stop();
}
void TThreadPool::runInThread()
{
while (m_bRunning)
{
TTask task = Take();
task();
}
}
void TThreadPool::Start(int numThreads)
{
m_bRunning = true;
for (int i = 0; i < numThreads; i++)
{
TThread* thread = new TThread;
thread->Run(bind(&TThreadPool::runInThread, this));
m_threads.push_back(thread);
}
}
void TThreadPool::Stop()
{
{
TAutoLock lock(&m_mutex);
m_bRunning = false;
m_bNotEmpty.NotifyAll();
}
for (vector<TThread*>::iterator it = m_threads.begin(); it != m_threads.end(); it++)
{
(*it)->Join();
}
}
void TThreadPool::Run(TTask tk)
{
TAutoLock lock(&m_mutex);
m_tasks.push_back(tk);
m_bNotEmpty.Notify();
}
TTask TThreadPool::Take()
{
TAutoLock lock(&m_mutex);
while (m_tasks.empty() && m_bRunning)
{
m_bNotEmpty.Wait(&m_mutex);
}
TTask task;
if (!m_tasks.empty())
{
task = m_tasks.front();
m_tasks.pop_front();
}
return task;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。