Search code examples
Does std::mutex enforce cache coherence?...


c++cachingsynchronizationmutexatomic

Read More
How to set redis list values atomically?...


redisatomic

Read More
How do I initialize an array of std::atomics to zeros?...


c++arraysc++11atomicstdatomic

Read More
Which one performs better: load(memory_order_seq_cst) or atomic_fetch_add(0, memory_order_relaxed) o...


c++x86x86-64atomicstdatomic

Read More
READ_ONCE and WRITE_ONCE in Parallel programming...


cmultithreadinglinux-kernelatomicvolatile

Read More
atomic_load/atomic_store on std::shared_ptr in VC11 - why the global spinlock?...


c++visual-c++visual-studio-2012atomicshared-ptr

Read More
Why does std::atomic_compare_exchange update the expected value?...


c++multithreadingcpu-architectureatomiccompare-and-swap

Read More
Pass non-volatile variable's address to a volatile object pointer...


catomicvolatile

Read More
arm gcc: store-store ordering without volatile?...


gccarmatomicvolatilememory-barriers

Read More
What does __ATOMIC_RELAXED mean?...


cmultithreadinggccatomicbuilt-in

Read More
atomic_init is not thread safe in C, so why does it exist?...


catomic

Read More
AtomicBoolean vs Synchronized block, whats the difference...


javaconcurrencysynchronizationbooleanatomic

Read More
how to use atomic_store set shared_ptr to nullptr in multithread...


c++multithreadingatomicshared-ptr

Read More
What Rules does compiler have to follow when dealing with volatile memory locations?...


c++multithreadingatomicvolatilelock-free

Read More
Is struct assignment atomic in C/C++?...


c++cstructvariable-assignmentatomic

Read More
Mixing memory orders with/out conditionals...


c++multithreadingatomicmemory-barriersstdatomic

Read More
Atomicity through object segregation...


sqlsql-serverjpastored-proceduresatomic

Read More
SSE instructions: which CPUs can do atomic 16B memory operations?...


concurrencyx86thread-safetyatomicsse

Read More
Are _Atomic members of unions a good idea?...


cunionatomiccompare-and-swap

Read More
What is a atomic write unit for mordern SSDs?...


storageatomicdisksolid-state-drive

Read More
What does assignment mean to a C11 atomic?...


atomicc11

Read More
Is std::atomic technically required even if I'm already using std::mutex to guard access?...


c++multithreadingthread-safetyatomic

Read More
Memory order around atomic operations...


c++c++11concurrencyatomicmemory-barriers

Read More
Is it OK to cast an _Atomic Type * to void * and back?...


catomicvoid-pointers

Read More
What is the difference between std::shared_ptr and std::atomic<std::shared_ptr> aka. std::expe...


c++c++11concurrencyatomicsmart-pointers

Read More
How can I combine a comparison and an update in one atomic operation?...


linuxx86-64atomicc11

Read More
Atomic database write with async task enqueue...


asynchronousqueuemicroservicestaskatomic

Read More
How to use memory barriers (instead of fetch_add) to make addition atomic and thread safe...


c++cpu-architectureatomicmemory-barriersstdatomic

Read More
How does the memory controller guarantee memory ordering of atomics when propagating cachelines?...


c++cpu-architectureatomicstdatomicmemory-model

Read More
Atomic swap in C...


cmacosatomicc11

Read More
BackNext