C++ Language/Std/Multithreading/AtomicValues

From Wikibooks, open books for an open world
Jump to navigation Jump to search

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