void notify_all() volatile noexcept; // (1) C++20
void notify_all() noexcept; // (2) C++20
概要
待機している全てのスレッドを起床させる。
この関数は、wait()
関数によるブロッキング待機を解除する。
テンプレートパラメータ制約
- (1) :
- C++20 :
atomic<T>::is_always_lock_free
がtrue
であること
- C++20 :
効果
起床待機している全てのアトミックオブジェクトの待機を解除する
戻り値
なし
例外
投げない
例
#include <iostream>
#include <atomic>
#include <thread>
int main()
{
std::atomic<bool> x {false};
auto f = [&x] {
while (true) {
x.wait(false);
if (x.load() == true) {
break;
}
}
};
std::thread t1 {f};
std::thread t2 {f};
x.store(true);
x.notify_all();
t1.join();
t2.join();
}
出力
バージョン
言語
- C++20
処理系
- Clang: 9.0 ❌
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌