Fix race condition for concurrent_checks

fixes #11932
This commit is contained in:
Gunnar Beutner 2016-08-29 14:12:29 +02:00 committed by Michael Friedrich
parent 51c89fbb5f
commit 8f7b819c9d
1 changed files with 4 additions and 0 deletions

View File

@ -194,6 +194,8 @@ void CheckerComponent::CheckThreadProc(void)
Log(LogDebug, "CheckerComponent")
<< "Executing check for '" << checkable->GetName() << "'";
Checkable::IncreasePendingChecks();
Utility::QueueAsyncCallback(boost::bind(&CheckerComponent::ExecuteCheckHelper, CheckerComponent::Ptr(this), checkable));
lock.lock();
@ -222,6 +224,8 @@ void CheckerComponent::ExecuteCheckHelper(const Checkable::Ptr& checkable)
Log(LogCritical, "checker", output);
}
Checkable::DecreasePendingChecks();
{
boost::mutex::scoped_lock lock(m_Mutex);