Add missing lock in CScheduler::AreThreadsServicingQueue()

Not an actual bug as this is only used in asserts right now, but
nice to not have a missing lock.
This commit is contained in:
Matt Corallo 2017-07-23 14:51:22 -04:00
parent 0c173a15ca
commit a56f8b0be3
1 changed files with 1 additions and 0 deletions

View File

@ -141,6 +141,7 @@ size_t CScheduler::getQueueInfo(boost::chrono::system_clock::time_point &first,
}
bool CScheduler::AreThreadsServicingQueue() const {
boost::unique_lock<boost::mutex> lock(newTaskMutex);
return nThreadsServicingQueue;
}