名前空間
変種
操作

標準ライブラリヘッダー <semaphore> (C++20)

From cppreference.com
 
 
標準ライブラリヘッダー
 

このヘッダーはスレッドサポートライブラリの一部です。

クラス

非負のリソースカウントをモデル化するセマフォ
(クラステンプレート) [編集]
2つの状態しか持たないセマフォ
(typedef) [編集]

[編集] 概要

namespace std {
  template<ptrdiff_t LeastMaxValue = /* implementation-defined */>
    class counting_semaphore;
 
  using binary_semaphore = counting_semaphore<1>;
}

[編集] クラステンプレート std::counting_semaphore

namespace std {
  template<ptrdiff_t LeastMaxValue = /* implementation-defined */>
  class counting_semaphore {
  public:
    static constexpr ptrdiff_t max() noexcept;
 
    constexpr explicit counting_semaphore(ptrdiff_t desired);
    ~counting_semaphore();
 
    counting_semaphore(const counting_semaphore&) = delete;
    counting_semaphore& operator=(const counting_semaphore&) = delete;
 
    void release(ptrdiff_t update = 1);
    void acquire();
    bool try_acquire() noexcept;
    template<class Rep, class Period>
      bool try_acquire_for(const chrono::duration<Rep, Period>& rel_time);
    template<class Clock, class Duration>
      bool try_acquire_until(const chrono::time_point<Clock, Duration>& abs_time);
 
  private:
    ptrdiff_t counter;          // exposition only
  };
}
English 日本語 中文(简体) 中文(繁體)