About 20,300,000 results
Open links in new tab
  1. c++ - How to implement an atomic counter - Stack Overflow

    Sep 18, 2023 · Fortunately, the value initializing constructor of an integral atomic is constexpr, so the above leads to constant initialization. Otherwise you'd want to make it -say- a static …

  2. What does "atomic" mean in programming? - Stack Overflow

    In the Effective Java book, it states: The language specification guarantees that reading or writing a variable is atomic unless the variable is of type long or double [JLS, 17.4.7]. What do...

  3. c++ - What exactly is std::atomic? - Stack Overflow

    Aug 13, 2015 · Objects of atomic types are the only C++ objects that are free from data races; that is, if one thread writes to an atomic object while another thread reads from it, the behavior …

  4. Is there a difference between the _Atomic type qualifier and type ...

    Oct 20, 2014 · Why the standard make that difference? It seems as both designate, in the same way, an atomic type.

  5. What is the difference between std::shared_ptr and std::atomic<std ...

    The atomic "thing" in shared_ptr is not the shared pointer itself, but the control block it points to. meaning that as long as you don't mutate the shared_ptr across multiple threads, you are ok. …

  6. When do I really need to use atomic<bool> instead of bool?

    May 1, 2013 · You need atomic<bool> to avoid race-conditions. A race-condition occurs if two threads access the same memory location, and at least one of them is a write operation. If …

  7. What are atomic types in the C language? - Stack Overflow

    Dec 26, 2020 · I remember I came across certain types in the C language called atomic types, but we have never studied them. So, how do they differ from regular types like int,float,double,long …

  8. c++ - How to use std::atomic efficiently - Stack Overflow

    Jan 6, 2012 · std::atomic is new feature introduced by c++11 but I can't find much tutorial on how to use it correctly. So are the following practice common and efficient? One practice I used is …

  9. What are atomic operations for newbies? - Stack Overflow

    Sep 6, 2018 · Everything works. Note that "atomic" is contextual: in this case, the upsert operation only needs to be atomic with respect to operations on the answers table in the database; the …

  10. Which std::sync::atomic::Ordering to use? - Stack Overflow

    May 23, 2015 · Read-Modify-Write accesses, like atomic increment, or compare-and-swap, are done on x86 with lock ed instructions, which are already full memory barriers. If you care at all …