std::atomic_flag_clear, std::atomic_flag_clear_explicit
Min standard notice:
Header: <atomic>
Atomically changes the state of the std::atomic_flag pointed to by obj to clear (false).
# Declarations
void atomic_flag_clear( volatile std::atomic_flag* obj ) noexcept;
(since C++11)
void atomic_flag_clear( std::atomic_flag* obj ) noexcept;
(since C++11)
void atomic_flag_clear_explicit( volatile std::atomic_flag* obj,
std::memory_order order ) noexcept;
(since C++11)
void atomic_flag_clear_explicit( std::atomic_flag* obj,
std::memory_order order ) noexcept;
(since C++11)
# Parameters
obj: pointer to std::atomic_flag to accessorder: the memory synchronization ordering
# Notes
std::atomic_flag_clear and std::atomic_flag_clear_explicit can be implemented as obj->clear() and obj->clear(order) respectively.
# Defect reports
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 2138 | C++11 | order could be std::memory_order_consume | the behavior is undefined in this case |