C++ Language/Std/Multithreading/AtomicValues

If the only content of a critical section is the manipulation of one variable, then the easiest synchronization approach would be to use std::atomic<> and its associated arithmetic functions.

Additional information about atomic values

Category:Book:C++ Language#Std/Multithreading/AtomicValues%20
Category:Book:C++ Language