thread/*Cond: rename methods to match std::condition_variable
This commit is contained in:
@@ -120,7 +120,7 @@ HttpdOutput::OnDeferredBroadcast() noexcept
|
||||
|
||||
/* wake up the client that may be waiting for the queue to be
|
||||
flushed */
|
||||
cond.broadcast();
|
||||
cond.notify_all();
|
||||
}
|
||||
|
||||
void
|
||||
@@ -398,7 +398,7 @@ HttpdOutput::CancelAllClients() noexcept
|
||||
for (auto &client : clients)
|
||||
client.CancelQueue();
|
||||
|
||||
cond.broadcast();
|
||||
cond.notify_all();
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user