#include <condition_variable>
|
| condition_variable (const condition_variable &)=delete |
|
native_handle_type | native_handle () |
|
void | notify_all () noexcept |
|
void | notify_one () noexcept |
|
condition_variable & | operator= (const condition_variable &)=delete |
|
void | wait (unique_lock< mutex > &__lock) |
|
template<typename _Predicate > |
void | wait (unique_lock< mutex > &__lock, _Predicate __p) |
|
template<typename _Rep , typename _Period > |
cv_status | wait_for (unique_lock< mutex > &__lock, const chrono::duration< _Rep, _Period > &__rtime) |
|
template<typename _Rep , typename _Period , typename _Predicate > |
bool | wait_for (unique_lock< mutex > &__lock, const chrono::duration< _Rep, _Period > &__rtime, _Predicate __p) |
|
template<typename _Clock , typename _Duration > |
cv_status | wait_until (unique_lock< mutex > &__lock, const chrono::time_point< _Clock, _Duration > &__atime) |
|
template<typename _Clock , typename _Duration , typename _Predicate > |
bool | wait_until (unique_lock< mutex > &__lock, const chrono::time_point< _Clock, _Duration > &__atime, _Predicate __p) |
|
template<typename _Duration > |
cv_status | wait_until (unique_lock< mutex > &__lock, const chrono::time_point< system_clock, _Duration > &__atime) |
|
condition_variable
Definition at line 70 of file condition_variable.
◆ native_handle_type
typedef __gthread_cond_t* std::condition_variable::native_handle_type |
◆ native_handle()
native_handle_type std::condition_variable::native_handle |
( |
| ) |
|
|
inline |
◆ wait()
template<typename _Predicate >
void std::condition_variable::wait |
( |
unique_lock< mutex > & |
__lock, |
|
|
_Predicate |
__p |
|
) |
| |
|
inline |
◆ wait_for() [1/2]
template<typename _Rep , typename _Period >
◆ wait_for() [2/2]
template<typename _Rep , typename _Period , typename _Predicate >
◆ wait_until() [1/3]
template<typename _Clock , typename _Duration >
◆ wait_until() [2/3]
template<typename _Clock , typename _Duration , typename _Predicate >
◆ wait_until() [3/3]
template<typename _Duration >
The documentation for this class was generated from the following file: