Table of Contents

C++ Atomic operations library

https://en.cppreference.com/w/cpp/atomic

The atomic library provides components for fine-grained atomic operations allowing for lockless concurrent programming. Each atomic operation is indivisible with regards to any other atomic operation that involves the same object. Atomic objects are Threads_and_data_races | free of data races.

C Compatibility for atomic types

macro, nor any of the non-macro global namespace declarations are provided by any C++ standard library header other than

. }}

See also