Terrasync: don't busy wait when no requests are running.
This commit is contained in:
@@ -386,6 +386,11 @@ public:
|
||||
return this->queue.size();
|
||||
}
|
||||
|
||||
void waitOnNotEmpty() {
|
||||
SGGuard<SGMutex> g(mutex);
|
||||
while (this->queue.empty())
|
||||
not_empty.wait(mutex);
|
||||
}
|
||||
private:
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user