mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 02:25:40 +01:00
Exit early for an empty vChecks in CCheckQueue::Add
This commit is contained in:
parent
c43aa62343
commit
459e208276
@ -167,6 +167,10 @@ public:
|
||||
//! Add a batch of checks to the queue
|
||||
void Add(std::vector<T>& vChecks)
|
||||
{
|
||||
if (vChecks.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
{
|
||||
LOCK(m_mutex);
|
||||
for (T& check : vChecks) {
|
||||
@ -176,10 +180,11 @@ public:
|
||||
nTodo += vChecks.size();
|
||||
}
|
||||
|
||||
if (vChecks.size() == 1)
|
||||
if (vChecks.size() == 1) {
|
||||
m_worker_cv.notify_one();
|
||||
else if (vChecks.size() > 1)
|
||||
} else {
|
||||
m_worker_cv.notify_all();
|
||||
}
|
||||
}
|
||||
|
||||
//! Stop all of the worker threads.
|
||||
|
Loading…
Reference in New Issue
Block a user