Make sure the WQ status timer is stopped properly

refs #8550
This commit is contained in:
Gunnar Beutner 2015-03-01 22:25:14 +01:00
parent 663fe5a4bd
commit 2d65489f3a
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ Timer::Timer(void)
*/
Timer::~Timer(void)
{
Stop();
Stop(true);
}
/**

View File

@ -44,7 +44,7 @@ WorkQueue::WorkQueue(size_t maxItems, int threadCount)
WorkQueue::~WorkQueue(void)
{
m_StatusTimer->Stop();
m_StatusTimer->Stop(true);
Join(true);
}