Search code examples
Busy polling std::atomic - msvc optimizes loop away - why, and how to prevent?...

c++multithreadingvisual-c++atomicstdatomic

Read More
Custom type in std::atomic...

c++constructoratomiccopy-constructorstdatomic

Read More
reading volatile variable outside of scope of a mutex as opposed to std::atomic...

c++thread-safetyx86-64volatilestdatomic

Read More
Any disadvantages for std::atomic_flag not providing load or store operations? (Spin-lock example)...

c++c++11atomicstdatomic

Read More
Is atomic<T*> always lock free?...

c++c++11stdstdatomic

Read More
Does the MOV x86 instruction implement a C++11 memory_order_release atomic store?...

c++c++11x86memory-modelstdatomic

Read More
Can't compile libpd with emmake (Emscripten SDK)...

llvm-clangemscriptenwebassemblystdatomiclibpd

Read More
Will two relaxed writes to the same location in different threads always be seen in the same order b...

c++c++11concurrencymemory-modelstdatomic

Read More
is it ok to use std::atomic with a struct that is POD except that it has a construtor?...

c++structstdatomic

Read More
Can an atomic release be "overwritten"?...

c++atomicstdatomicmemory-barriers

Read More
Where is the lock for a std::atomic?...

c++c++11x86atomicstdatomic

Read More
Strict conversion of std::atomic_bool values...

c++11type-conversionstdatomic

Read More
Initialize atomic members in aggregate...

c++c++14language-lawyerstdatomicaggregate-initialization

Read More
Purpose of _Compiler_barrier() on 32bit read...

c++11visual-c++stdatomic

Read More
Can I safelly share a variable across threads in C++ using only std::atomic without std::mutex?...

c++multithreadingstdatomic

Read More
User defined atomic less than...

multithreadingopenmpstdatomic

Read More
How to use std::atomic<T>::is_always_lock_free for SFINAE?...

c++c++17stdatomic

Read More
Issue with std::atomic and custom structs...

c++structatomicstdatomic

Read More
Does std::atomic provide atomic behavior, regardless of ordering?...

c++concurrencymemory-modelstdatomic

Read More
Acquire/release semantics with non-temporal stores on x64...

c++multithreadingx86-64lock-freestdatomic

Read More
numeric_limits of atomic types...

c++11c++14atomicstdatomicnumeric-limits

Read More
Polling for a atomic variable (bool) in C++?...

c++multithreadingstdatomic

Read More
std::atomic bool or Normal global bool is good in single thread?...

c++multithreadingc++11stdatomic

Read More
Do I need std::atomic<bool> or is POD bool good enough?...

c++multithreadingc++11atomicstdatomic

Read More
Safe to use int in multithreaded single writer multi-reader code...

c++concurrencystdatomic

Read More
std::bind fails to compile with std::atomic_bool& on MSVC...

c++c++11stdbindstdatomic

Read More
Atomic objects of trivially copyable types in GCC...

c++c++11gccatomicstdatomic

Read More
Approach of using an std::atomic compared to std::condition_variable wrt pausing & resuming an s...

c++c++11stdthreadstdatomic

Read More
How can I properly increase C++11 std::atomic?...

c++multithreadingc++11atomicstdatomic

Read More
Usage of an atomic variable within threads...

c++multithreadingatomicstdatomic

Read More
BackNext