Standard library header <latch> (C++20)
From cppreference.net
C++
Standard library headers
このヘッダは スレッドサポート ライブラリの一部です。
Classes |
|
|
(C++20)
|
単回使用スレッドバリア
(クラス) |
概要
namespace std { class latch; }
クラス std::latch
namespace std { class latch { public: static constexpr ptrdiff_t max() noexcept; constexpr explicit latch(ptrdiff_t expected); ~latch(); latch(const latch&) = delete; latch& operator=(const latch&) = delete; void count_down(ptrdiff_t update = 1); bool try_wait() const noexcept; void wait() const; void arrive_and_wait(ptrdiff_t update = 1); private: ptrdiff_t counter; // 説明専用 }; }