std::condition_variable_any::notify_all
来自 cppreference.com
< cpp | thread | condition variable any
void notify_all() noexcept; |
(自 C++11 起) | |
解除当前正在等待 *this 的所有线程的阻塞。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 说明
notify_one()
/notify_all()
和 wait()
/wait_for()
/wait_until()
的三个原子部分(解锁+等待,唤醒和锁定)的效果在一个单独的总顺序中发生,可以被视为 修改顺序 的原子变量:顺序特定于此单个条件变量。这使得 notify_one()
无法延迟并解除在调用 notify_one()
后立即开始等待的线程的阻塞。
通知线程不需要持有与等待线程(s)持有的同一个互斥锁。这样做可能会造成性能损失,因为通知线程会立即再次阻塞,等待通知线程释放锁,尽管某些实现会识别这种模式,并且不会尝试唤醒在锁下被通知的线程。
[编辑] 示例
运行此代码
#include <chrono> #include <condition_variable> #include <iostream> #include <thread> std::condition_variable_any 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<std::mutex> lk(cv_m); std::cerr << "Waiting... \n"; cv.wait(lk, []{ return i == 1; }); std::cerr << "...finished waiting. i == 1\n"; } void signals() { std::this_thread::sleep_for(std::chrono::seconds(1)); { std::lock_guard<std::mutex> lk(cv_m); std::cerr << "Notifying...\n"; } cv.notify_all(); std::this_thread::sleep_for(std::chrono::seconds(1)); { std::lock_guard<std::mutex> lk(cv_m); i = 1; std::cerr << "Notifying again...\n"; } cv.notify_all(); } int main() { std::thread t1(waits), t2(waits), t3(waits), t4(signals); t1.join(); t2.join(); t3.join(); t4.join(); }
可能的输出
Waiting... Waiting... Waiting... Notifying... Notifying again... ...finished waiting. i == 1 ...finished waiting. i == 1 ...finished waiting. i == 1
[编辑] 另请参阅
通知一个等待线程 (公共成员函数) | |
C 文档 for cnd_broadcast
|