Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in lock-free

Could the following code written for a Reentrant Lock be susceptible to an instruction reordering error?

Is it thread-safe to use std::atomic<bool> to control access to a data structure cooperatively, with just loads/stores instead of RMW?

Is there a lock-free vector implementation?

How to avoid race condition when refcounting without a mutex?

c++ atomic lock-free

C++ deleting object, does it lock?

c++ thread-safety lock-free

Lock Free Concurrent Queue

c# lock-free

Data not ordered properly in lockless spsc queue

Haskell IORef usage in concurrent setting [duplicate]

is a concurent write and read to a non-atomic variable of fundamental type without using it undefined behavior?

Reproduce torn reads of decimal in C#

Lock-free "decrement if not zero"

Why do left operands of logical AND/OR not carry dependency to the parent evaluation?

C++Concurrency in action:Can the Listing7.6(An implementation of pop() using hazard pointers) really detect nodes that can't be reclaimed?

c++ lock-free

Algorithm for lock-free queue with move-to-tail functionality

Memory ordering in boost::lockfree:queue

What exactly is the meaning of "wait-free" in boost::lockfree?

Lock-free and wait-free thread-safe lazy initialization

What is the C++ 11 atomic library equivalent of Java's AtomicMarkableReference<T>

java c++ c++11 atomic lock-free