std::atomic_flag_clear, std::atomic_flag_clear_explicit
From cppreference.com
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Concurrency support library
Cooperative cancellation
Mutual exclusion
Generic lock management
Condition variables
Semaphores
Latches and Barriers
Futures
Safe reclamation
Hazard pointers
(C++11)
(C++20)
(C++11)
(C++11)
(C++20)
(C++26)
(C++26)
(C++20)
(C++26)
(C++20)
(C++26)
(C++26)
(C++26)
(C++26)
(C++26)
(C++26)
(C++11)
(C++11)
(C++17)
(C++11)
(C++14)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++20)(C++20)
(C++20)
(C++20)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++26)
(C++26)
(C++26)
(C++11)
(C++20)
(C++11)
(C++11)(deprecated in C++20)
(C++11)(deprecated in C++20)
(C++11)
(C++11)
(C++11)(deprecated in C++26)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)
(C++26)(C++26)
(C++26)(C++26)
(C++11)
(C++20)(C++20)
(C++20)
(C++20)
(C++11)(C++11)
atomic_flag_clearatomic_flag_clear_explicit
(C++11)(C++11)
(C++20)(C++20)
(C++20)(C++20)
(C++20)
(C++20)
Defined in header
<atomic>
void atomic_flag_clear( volatile std::atomic_flag * obj ) noexcept;
(1)
(since C++11)
void atomic_flag_clear( std::atomic_flag * obj ) noexcept;
(2)
(since C++11)
void atomic_flag_clear_explicit( volatile std::atomic_flag * obj,
std::memory_order order ) noexcept;
(3)
(since C++11)
std::memory_order order ) noexcept;
void atomic_flag_clear_explicit( std::atomic_flag * obj,
std::memory_order order ) noexcept;
(4)
(since C++11)
std::memory_order order ) noexcept;
Atomically changes the state of the std::atomic_flag pointed to by obj to clear (false).
1,2) The memory synchronization ordering is std::memory_order_seq_cst .
3,4) The memory synchronization ordering is order.
If order is one of std::memory_order_consume , std::memory_order_acquire and std::memory_order_acq_rel , the behavior is undefined.
Contents
[edit] Parameters
obj
-
pointer to std::atomic_flag to access
order
-
the memory synchronization ordering
[edit] Notes
std::atomic_flag_clear
and std::atomic_flag_clear_explicit
can be implemented as obj->clear() and obj->clear(order) respectively.
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
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 |
[edit] See also
C documentation for atomic_flag_clear, atomic_flag_clear_explicit