Я немного запутался с примером std :: condental_variable .
У меня есть несколько потоков ожидания, и я хотел бы использовать notify_all () , чтобы разбудить все из них одновременно. class = "lang-cpp prettyprint-override">#include
#include
#include
#include
std::condition_variable cv;
std::mutex cv_m; // This mutex is used for three purposes:
// 1) to synchronize accesses to i
// 2) to synchronize accesses to std::cerr
// 3) for the condition variable cv
int i = 0;
void waits()
{
std::unique_lock lk(cv_m);
std::cerr
Подробнее здесь: https://stackoverflow.com/questions/795 ... l-variable