std::condition_variable_any::notify_all (3) Linux Manual Page
std::condition_variable_any::notify_all – std::condition_variable_any::notify_all Synopsis void notify_all() noexcept; (since C++ 11) Unblocks all threads currently waiting for *this. Parameters (none) Return value (none) Notes The effects of notify_one()/notify_all() and each of the three atomic parts of wait()/wait_for()/wait_until() (unlock+wait, wakeup, and lock) take place in a single total order that can be viewed as modification_order of an…
