Skip to content

Latest commit

 

History

History
85 lines (63 loc) · 1.72 KB

notify_all.md

File metadata and controls

85 lines (63 loc) · 1.72 KB

notify_all

  • atomic[meta header]
  • std[meta namespace]
  • atomic_ref[meta class]
  • function[meta id-type]
  • cpp20[meta cpp]
void notify_all() const noexcept;

概要

待機している全てのスレッドを起床させる。

この関数は、wait()関数によるブロッキング待機を解除する。

効果

起床待機している全てのアトミックオブジェクトの待機を解除する

戻り値

なし

例外

投げない

#include <iostream>
#include <atomic>
#include <thread>

int main()
{
  bool x = false;

  auto f = [&x] {
    std::atomic_ref r{x};
    while (true) {
      r.wait(false);
      if (r.load() == true) {
        break;
      }
    }
  };

  std::thread t1 {f};
  std::thread t2 {f};

  std::atomic_ref{x}.store(true);
  std::atomic_ref{x}.notify_all();

  t1.join();
  t2.join();
}
  • notify_all()[color ff0000]
  • load[link load.md]
  • store[link store.md]
  • wait[link wait.md]

出力

バージョン

言語

  • C++20

処理系

参照