Search code examples
Inconsistent MSDN documentation for InterlockedExchange() type functions/intrinsics?...

cvisual-c++x86intrinsicslock-free

Read More
How to populate container with boost::lockfree::queue entities...

c++boostlock-free

Read More
Golang lock-free array with swap...

golock-free

Read More
What does an opaque function call mean in compiler optimization?...

cmultithreadingconcurrencycompiler-constructionlock-free

Read More
Is multiple-producer, single-consumer possible in a lockfree setting?...

messagelock-free

Read More
Lock-free "decrement if not zero"...

c++thread-safetyatomiclock-free

Read More
Is std::vector thread-safe and concurrent by default? Why or why not?...

c++vectordata-structuresconcurrencylock-free

Read More
In MSVC, why do InterlockedOr and InterlockedAnd generate a loop instead of a simple locked instruct...

visual-c++lock-freedata-synchronizationinterlocked

Read More
invalid initialization of non-const reference of type ‘Node*&’ from an rvalue of type ‘std::atom...

c++11nonblockinglock-free

Read More
Memory reclamation with crossbeam::epoch...

rustlock-free

Read More
What is an example of obstruction-free algorithm that is not lock-free?...

multithreadingconcurrencylock-free

Read More
C++ Treiber Stack and atomic next pointers...

c++multithreadingalgorithmatomiclock-free

Read More
Dynamic Lock-free memory allocators...

c++clinuxalgorithmlock-free

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

c++multithreadingx86-64lock-freestdatomic

Read More
Is the following algorithm lock-free?...

parallel-processinglock-freelocks

Read More
When are lock free data structures less performant than mutual exclusion (mutexes)?...

multithreadingschedulingmutexatomiclock-free

Read More
Average latency of atomics cmpxchg instructions on Intel Cpus...

multithreadingx86atomiclock-free

Read More
lock-free synchronization, fences and memory order (store operation with acquire semantics)...

c++11atomiclock-freememory-fencesmemory-barriers

Read More
boost::lockfree::spsc_queue busy wait strategy. Is there a blocking pop?...

c++multithreadingboostboost-threadlock-free

Read More
Lock-free stack: visibility issue when checking hazard pointers during pop()?...

c++multithreadingc++11lock-freememory-barriers

Read More
Strange shared_ptr behaviour...

c++c++11shared-ptratomiclock-free

Read More
Lock-free and wait-free thread-safe lazy initialization...

javamultithreadinglazy-initializationlock-freewait-free

Read More
Atomic function without locks to change two independent memory locations...

c++atomiclock-freecompare-and-swap

Read More
If this is not a bug in boost::lockfree::detail::freelist, what am I missing here?...

c++multithreadingboostqueuelock-free

Read More
How many ABA tag bits are needed in lock-free data structures?...

multithreadinglock-freethread-synchronization

Read More
How to write a blockng waitUntil() method to a pool that uses std::atomics...

c++multithreadingc++11lock-free

Read More
Multithreaded Atomic Store/Load of multiple values in C++...

c++multithreadingc++11atomiclock-free

Read More
std::atomic for built-in types - non-lock-free vs. trivial destructor?...

c++multithreadingmutexatomiclock-free

Read More
Reordering of operations and lock-free data structures...

c++gccc++14compiler-optimizationlock-free

Read More
Does the following lock-free code exhibit a race-condition?...

multithreadinggolock-freecompare-and-swap

Read More
BackNext