forked from organicmaps/organicmaps
memory leak fix
correct deletion ThreadPool::Impl after manual call stop
This commit is contained in:
parent
8e356b2e73
commit
bf5b9df290
2 changed files with 7 additions and 0 deletions
|
@ -89,6 +89,7 @@ namespace threads
|
|||
delete m_threads[i].first;
|
||||
}
|
||||
|
||||
m_threads.clear();
|
||||
m_tasks.ProcessList(bind(&ThreadPool::Impl::FinishTasksOnStop, this, _1));
|
||||
m_tasks.Clear();
|
||||
}
|
||||
|
@ -115,6 +116,11 @@ namespace threads
|
|||
ThreadPool::ThreadPool(size_t size, const finish_routine_fn & finishFn)
|
||||
: m_impl(new Impl(size, finishFn)) {}
|
||||
|
||||
ThreadPool::~ThreadPool()
|
||||
{
|
||||
delete m_impl;
|
||||
}
|
||||
|
||||
void ThreadPool::AddTask(threads::IRoutine * routine)
|
||||
{
|
||||
m_impl->PushBack(routine);
|
||||
|
|
|
@ -12,6 +12,7 @@ namespace threads
|
|||
{
|
||||
public:
|
||||
ThreadPool(size_t size, const finish_routine_fn & finishFn);
|
||||
~ThreadPool();
|
||||
|
||||
// ThreadPool will not delete routine. You can delete it in finish_routine_fn if need
|
||||
void AddTask(threads::IRoutine * routine);
|
||||
|
|
Loading…
Add table
Reference in a new issue