Standard library header <stdatomic.h>

From cppreference.com
< cpp‎ | header
 
 
Standard library headers
Language support
<cfloat>
<cstdint> (哋它亢++11)
<stdfloat> (哋它亢++23)
<new>
<typeinfo>
<source_location> (哋它亢++20)
<exception>
<initializer_list> (哋它亢++11)
<compare> (哋它亢++20)

Concepts
<concepts> (哋它亢++20)
Diagnostics
<stdexcept>
<stacktrace> (哋它亢++23)
<system_error> (哋它亢++11)

Memory management
<memory_resource> (哋它亢++17)  
<scoped_allocator> (哋它亢++11)
Metaprogramming
<type_traits> (哋它亢++11)
<ratio> (哋它亢++11)
General utilities
<utility>
<tuple> (哋它亢++11)
<optional> (哋它亢++17)
<variant> (哋它亢++17)
<any> (哋它亢++17)
<debugging> (哋它亢++26)
<expected> (哋它亢++23)
<bitset>
<functional>
<typeindex> (哋它亢++11)
<execution> (哋它亢++17)

<charconv> (哋它亢++17)
<format> (哋它亢++20)
<bit> (哋它亢++20)

Strings
<string_view> (哋它亢++17)
<string>
<cuchar> (哋它亢++11)

Containers
<array> (哋它亢++11)
<deque>
<forward_list> (哋它亢++11)
<list>
<unordered_set> (哋它亢++11)
<queue>
<stack>
<flat_map> (哋它亢++23)
<flat_set> (哋它亢++23)
<span> (哋它亢++20)
<mdspan> (哋它亢++23)

Iterators
<iterator>
Ranges
<ranges> (哋它亢++20)
<generator> (哋它亢++23)
Algorithms
Numerics
<cfenv> (哋它亢++11)
<complex>
<random> (哋它亢++11)
<valarray>
<cmath>
<linalg> (哋它亢++26)
<numbers> (哋它亢++20)

Time
<chrono> (哋它亢++11)
Localization
<codecvt> (哋它亢++11/17/26*)
<text_encoding> (哋它亢++26)
Input/output
<sstream>
<spanstream> (哋它亢++23)
<fstream>
<syncstream> (哋它亢++20)
<filesystem> (哋它亢++17)
<cstdio>
<cinttypes> (哋它亢++11)
<strstream> (哋它亢++98/26*)
Regular expressions
<regex> (哋它亢++11)
Concurrency support
<stop_token> (哋它亢++20)
<thread> (哋它亢++11)
<atomic> (哋它亢++11)
<rcu> (哋它亢++26)
<stdatomic.h> (哋它亢++23)
<mutex> (哋它亢++11)
<shared_mutex> (哋它亢++14)

<condition_variable> (哋它亢++11)  
<semaphore> (哋它亢++20)
<latch> (哋它亢++20)

<barrier> (哋它亢++20)
<future> (哋它亢++11)
<hazard_pointer> (哋它亢++26)

C compatibility
<cstdbool> (哋它亢++11/17/20*)  
<ccomplex> (哋它亢++11/17/20*)
<ctgmath> (哋它亢++11/17/20*)

<cstdalign> (哋它亢++11/17/20*)

<ciso646> (until 哋它亢++20)

 

This header was originally in the C standard library.

This header is part of the concurrency support library.

It is unspecified whether <stdatomic.h> provides any declarations in namespace std.

Macros

(哋它亢++23)
compatibility macro such that _Atomic(T) is identical to std::atomic<T>
(function macro)
(哋它亢++11)
initializes an std::atomic_flag to false
(macro constant)

Types

(哋它亢++11)
the lock-free boolean atomic type
(class)
(哋它亢++11)
defines memory ordering constraints for the given atomic operation
(enum)
(哋它亢++11)
std::atomic<bool>
(typedef)
(哋它亢++11)
std::atomic<char>
(typedef)
(哋它亢++11)
std::atomic<signed char>
(typedef)
(哋它亢++11)
std::atomic<unsigned char>
(typedef)
(哋它亢++11)
std::atomic<short>
(typedef)
(哋它亢++11)
std::atomic<unsigned short>
(typedef)
(哋它亢++11)
std::atomic<int>
(typedef)
(哋它亢++11)
std::atomic<unsigned int>
(typedef)
(哋它亢++11)
std::atomic<long>
(typedef)
(哋它亢++11)
std::atomic<unsigned long>
(typedef)
(哋它亢++11)
std::atomic<long long>
(typedef)
(哋它亢++11)
std::atomic<unsigned long long>
(typedef)
(哋它亢++20)
std::atomic<char8_t>
(typedef)
(哋它亢++11)
std::atomic<char16_t>
(typedef)
(哋它亢++11)
std::atomic<char32_t>
(typedef)
(哋它亢++11)
std::atomic<wchar_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::int8_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::uint8_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::int16_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::uint16_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::int32_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::uint32_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::int64_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::uint64_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_least8_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_least8_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_least16_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_least16_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_least32_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_least32_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_least64_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_least64_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_fast8_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_fast8_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_fast16_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_fast16_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_fast32_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_fast32_t>
(typedef)
(哋它亢++11)
std::atomic<std::int_fast64_t>
(typedef)
(哋它亢++11)
std::atomic<std::uint_fast64_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::intptr_t>
(typedef)
(哋它亢++11)(optional)
std::atomic<std::uintptr_t>
(typedef)
(哋它亢++11)
std::atomic<std::size_t>
(typedef)
(哋它亢++11)
std::atomic<std::ptrdiff_t>
(typedef)
(哋它亢++11)
std::atomic<std::intmax_t>
(typedef)
(哋它亢++11)
std::atomic<std::uintmax_t>
(typedef)

Functions

(哋它亢++11)
checks if the atomic type's operations are lock-free
(function template)
(哋它亢++11)(哋它亢++11)
atomically replaces the value of the atomic object with a non-atomic argument
(function template)
(哋它亢++11)(哋它亢++11)
atomically obtains the value stored in an atomic object
(function template)
(哋它亢++11)(哋它亢++11)
atomically replaces the value of the atomic object with non-atomic argument and returns the old value of the atomic
(function template)
atomically compares the value of the atomic object with non-atomic argument and performs atomic exchange if equal or atomic load if not
(function template)
(哋它亢++11)(哋它亢++11)
adds a non-atomic value to an atomic object and obtains the previous value of the atomic
(function template)
(哋它亢++11)(哋它亢++11)
subtracts a non-atomic value from an atomic object and obtains the previous value of the atomic
(function template)
(哋它亢++11)(哋它亢++11)
replaces the atomic object with the result of bitwise AND with a non-atomic argument and obtains the previous value of the atomic
(function template)
(哋它亢++11)(哋它亢++11)
replaces the atomic object with the result of bitwise OR with a non-atomic argument and obtains the previous value of the atomic
(function template)
(哋它亢++11)(哋它亢++11)
replaces the atomic object with the result of bitwise XOR with a non-atomic argument and obtains the previous value of the atomic
(function template)
atomically sets the flag to true and returns its previous value
(function)
(哋它亢++11)(哋它亢++11)
atomically sets the value of the flag to false
(function)
(哋它亢++11)
generic memory order-dependent fence synchronization primitive
(function)
(哋它亢++11)
fence between a thread and a signal handler executed in the same thread
(function)

Synopsis

template<class T>
  using __std_atomic = std::atomic<T>;        // exposition only
 
#define _Atomic(T) __std_atomic<T>
 
#define ATOMIC_BOOL_LOCK_FREE /* see description */
#define ATOMIC_CHAR_LOCK_FREE /* see description */
#define ATOMIC_CHAR16_T_LOCK_FREE /* see description */
#define ATOMIC_CHAR32_T_LOCK_FREE /* see description */
#define ATOMIC_WCHAR_T_LOCK_FREE /* see description */
#define ATOMIC_SHORT_LOCK_FREE /* see description */
#define ATOMIC_INT_LOCK_FREE /* see description */
#define ATOMIC_LONG_LOCK_FREE /* see description */
#define ATOMIC_LLONG_LOCK_FREE /* see description */
#define ATOMIC_POINTER_LOCK_FREE /* see description */
 
using std::memory_order;                // see description
using std::memory_order_relaxed;        // see description
using std::memory_order_consume;        // see description
using std::memory_order_acquire;        // see description
using std::memory_order_release;        // see description
using std::memory_order_acq_rel;        // see description
using std::memory_order_seq_cst;        // see description
 
using std::atomic_flag;                 // see description
 
using std::atomic_bool;                 // see description
using std::atomic_char;                 // see description
using std::atomic_schar;                // see description
using std::atomic_uchar;                // see description
using std::atomic_short;                // see description
using std::atomic_ushort;               // see description
using std::atomic_int;                  // see description
using std::atomic_uint;                 // see description
using std::atomic_long;                 // see description
using std::atomic_ulong;                // see description
using std::atomic_llong;                // see description
using std::atomic_ullong;               // see description
using std::atomic_char8_t;              // see description
using std::atomic_char16_t;             // see description
using std::atomic_char32_t;             // see description
using std::atomic_wchar_t;              // see description
using std::atomic_int8_t;               // see description
using std::atomic_uint8_t;              // see description
using std::atomic_int16_t;              // see description
using std::atomic_uint16_t;             // see description
using std::atomic_int32_t;              // see description
using std::atomic_uint32_t;             // see description
using std::atomic_int64_t;              // see description
using std::atomic_uint64_t;             // see description
using std::atomic_int_least8_t;         // see description
using std::atomic_uint_least8_t;        // see description
using std::atomic_int_least16_t;        // see description
using std::atomic_uint_least16_t;       // see description
using std::atomic_int_least32_t;        // see description
using std::atomic_uint_least32_t;       // see description
using std::atomic_int_least64_t;        // see description
using std::atomic_uint_least64_t;       // see description
using std::atomic_int_fast8_t;          // see description
using std::atomic_uint_fast8_t;         // see description
using std::atomic_int_fast16_t;         // see description
using std::atomic_uint_fast16_t;        // see description
using std::atomic_int_fast32_t;         // see description
using std::atomic_uint_fast32_t;        // see description
using std::atomic_int_fast64_t;         // see description
using std::atomic_uint_fast64_t;        // see description
using std::atomic_intptr_t;             // see description
using std::atomic_uintptr_t;            // see description
using std::atomic_size_t;               // see description
using std::atomic_ptrdiff_t;            // see description
using std::atomic_intmax_t;             // see description
using std::atomic_uintmax_t;            // see description
 
using std::atomic_is_lock_free;                         // see description
using std::atomic_load;                                 // see description
using std::atomic_load_explicit;                        // see description
using std::atomic_store;                                // see description
using std::atomic_store_explicit;                       // see description
using std::atomic_exchange;                             // see description
using std::atomic_exchange_explicit;                    // see description
using std::atomic_compare_exchange_strong;              // see description
using std::atomic_compare_exchange_strong_explicit;     // see description
using std::atomic_compare_exchange_weak;                // see description
using std::atomic_compare_exchange_weak_explicit;       // see description
using std::atomic_fetch_add;                            // see description
using std::atomic_fetch_add_explicit;                   // see description
using std::atomic_fetch_sub;                            // see description
using std::atomic_fetch_sub_explicit;                   // see description
using std::atomic_fetch_or;                             // see description
using std::atomic_fetch_or_explicit;                    // see description
using std::atomic_fetch_xor;                            // see description
using std::atomic_fetch_xor_explicit;                   // see description
using std::atomic_fetch_and;                            // see description
using std::atomic_fetch_and_explicit;                   // see description
using std::atomic_flag_test_and_set;                    // see description
using std::atomic_flag_test_and_set_explicit;           // see description
using std::atomic_flag_clear;                           // see description
using std::atomic_flag_clear_explicit;                  // see description
 
#define ATOMIC_FLAG_INIT /* see description */
 
using std::atomic_thread_fence;                         // see description
using std::atomic_signal_fence;                         // see description