C++ Language/Std/Multithreading/AtomicValues
Appearance
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.