Standard library header <stdatomic.h> (C11)
From cppreference.com
This header provides atomic operations, in particular, it's a part of the concurrency support library.
Contents |
[edit] Atomic operations
Operations on atomic types | |
| indicates that the given atomic type is lock-free (macro constant) | |
| (C11) |
indicates whether the atomic object is lock-free (function) |
| stores a value in an atomic object (function) | |
| reads a value from an atomic object (function) | |
| swaps a value with the value of an atomic object (function) | |