Tagged Questions
The lock-free tag has no wiki summary.
28
votes
10answers
8k views
Circular lock-free buffer
I'm in the process of designing a system which connects to one or more stream of data feeds and do some analysis on the data than trigger events based on the result. In a typical multi-threaded ...
23
votes
11answers
8k views
Is there a production ready lock-free queue or hash implementation in C++
I ve been googling quite a bit for a lock-free queue in C++. I found some code and some trials - but nothing that i was able to compile. A lock-free hash would also be welcome.
SUMMARY:
So far i have ...
20
votes
6answers
2k views
Lock-free multi-threading is for real threading experts
I was reading through an answer that Jon Skeet gave to a question and in it he mentioned this:
As far as I'm concerned, lock-free multi-threading is for real threading experts, of which I'm not ...
14
votes
4answers
507 views
How can I verify lock-free algorithms?
In theory, it should be possible to at least brute force a verification of a lock-free algorithm (there are only so many combinations of function calls intersecting). Are there any tools or formal ...
12
votes
8answers
744 views
Are lock-free algorithms really more performant than their lock-full counterparts?
Raymond Chen has been doing a huge series on lockfree algorithms. Beyond the simple cases of the InterlockedXxx functions, it seems like the prevailing pattern with all of these is that they implement ...
11
votes
9answers
11k views
Portable Compare And Swap (atomic operations) C/C++ library?
Is there any small library, that wrapps various processors' CAS-like operations into macros or functions, that are portable across multiple compilers?
PS. The atomic.hpp library is inside ...
11
votes
22answers
4k views
How can I write a lock free structure?
In my multithreaded application and I see heavy lock contention in it, preventing good scalability across multiple cores. I have decided to use lock free programming to solve this.
How can I write a ...
10
votes
3answers
210 views
What are the CPU-internal characteristics of CAS collision?
I'm trying to understand the low-level mechanics of CAS on x86/x64 and I'd really appreciate some help/insight.
The reason I've been thinking about this is that I'm trying to reason about exponential ...
10
votes
4answers
466 views
Lock free & Thread-Safe IList<T> for .NET
Is there a lock-free & thread-safe data structure that implements IList?
Naturally by lock-free I mean an implementation that makes no use of locking primitives in .NET but rather uses ...
10
votes
5answers
5k views
Lock free stack and queue in C#
Does anyone know if there are any lock-free container libraries available for .NET ?
Preferably something that is proven to work and faster than the Synchronized wrappers we have in .NET.
I have ...
9
votes
5answers
226 views
lock free containers and visibility
I've seen some lock free implementations of stack... My question is regarding the visibility, not atomicity. For example do elements(not pointers) of lock free stack must be at most 64bit? I think so, ...
9
votes
1answer
626 views
Understanding CLR 2.0 Memory Model
Joe Duffy, gives 6 rules that describe the CLR 2.0+ memory model (it's actual implementation, not any ECMA standard) I'm writing down my attempt at figuring this out, mostly as a way of rubber ...
9
votes
4answers
1k views
Do atomic operations become slower as more CPUs are added?
x86 and other architectures provide special atomic instructions (lock, cmpxchg, etc.) that allow you to write 'lock free' data structures. But as more and more cores are added, it seems as though the ...
9
votes
7answers
937 views
Is a lock required with a lazy initialization on a deeply immutable type?
If I have a deeply immutable type (all members are readonly and if they are reference type members, then they also refer to objects that are deeply immutable).
I would like to implement a lazy ...
8
votes
3answers
578 views
C: Lock-Free Memory Allocation Library
Anyone have any good experience with a lock-free memory allocator for C/c++?
I have looked into boost, and libcds, but I am unsure about which library to use.
Background, I have been researching a ...
8
votes
2answers
1k views
How to implement lock-free skip list
I need to implement a lock-free skip list. I tried to look for papers. Unfortunatly all I found was lock-free single linked lists (in many flavors). However how to implement lock-free skip list?
8
votes
1answer
2k views
Well tested C/C++ lock free queue? [closed]
Possible Duplicate:
Is there a production ready lock-free queue or hash implementation in C++
I am looking for a well-tested, publicly available C/C++ implementation of a lock free queue.
...
8
votes
3answers
298 views
How to do compare and increment atomically?
In my attempt to develope a thread-safe C++ weak pointer template class, I need to check a flag that indicating the object is still alive, if yes then increment the object's reference count and I need ...
8
votes
6answers
3k views
Memory barriers in userspace? (Linux, x86-64)
It is easy to set memory barriers on the kernel side: the macros mb, wmb, rmb, etc. are always in place thanks to the Linux kernel headers.
How to accomplish this on the user side?
8
votes
4answers
3k views
Does a lock-free queue “multiple producers-single consumer” exist for Delphi?
I've found several implementations for single producer-single consumer, but none for multiple producer-single consumer.
Does a lock-free queue for "multiple producers-single consumer" exist for ...
8
votes
8answers
2k views
Any single-consumer single-producer lock free queue implementation in C?
I'm writing a program with a consumer thread and a producer thread, now it seems queue synchronization is a big overhead in the program, and I looked for some lock free queue implementations, but only ...
7
votes
4answers
268 views
What is the reason why high level abstractions that use lock free programming deep down aren't popular?
From what I gathered on the lock free programming, it is incredibly hard to do right... and I agree.
Just thinking about some problems makes my head hurt. But what I wonder is, why isn't
there a ...
7
votes
6answers
301 views
How to achieve lock-free, but blocking behavior?
I'm implementing a lock-free single producer single consumer queue for an intensive network application. I have a bunch of worker threads receiving work in their own separate queues, which they then ...
7
votes
3answers
187 views
Are these lines in a lock-free queue not necessary?
Here is some code from a lock-free queue using compareAndSet (in Java):
public void enq(T value) {
Node newNode = new Node(value);
while(true) {
Node last = tail.get();
Node ...
7
votes
2answers
11k views
C++ atomic operations for lock-free structures
I'm implementing a lock-free mechanism using atomic (double) compare and swap instructions e.g. cmpxchg16b
I'm currently writing this in assembly and then linking it in. However, I wondered if there ...
6
votes
3answers
327 views
Multiprocessor programming: lock-free stacks
In preperation for my upcoming Concurrent Systems exam, I am trying to complete some questions from the text book "The Art of Multiprocessor Programming". One question is bugging me:
Exercise 129: ...
6
votes
3answers
742 views
Looking for a lock-free RT-safe single-reader single-writer structure
I'm looking for a lock-free design conforming to these requisites:
a single writer writes into a structure and a single reader reads from this structure (this structure exists already and is safe ...
6
votes
7answers
842 views
Why is lockless concurrency such a big deal (in Clojure)?
I'm told that Clojure has lockless concurrency and that this is Important.
I've used a number of languages but didn't realize they were performing locks behind the scenes.
Why is this an advantage ...
6
votes
4answers
368 views
Is there a way I can make two reads atomic?
I'm running into a situation where I need the atomic sum of two values in memory. The code I inherited goes like this:
int a = *MemoryLocationOne;
memory_fence();
int b = *MemoryLocationTwo;
return ...
5
votes
2answers
244 views
Do spin locks always require a memory barrier? Is spinning on a memory barrier expensive?
I wrote some lock-free code that works fine with local
reads, under most conditions.
Does local spinning on a memory read necessarily imply I
have to ALWAYS insert a memory barrier before the ...
5
votes
4answers
352 views
C code of lock-free queue
How could I implement this lock-free queue pseudocode in C?
ENQUEUE(x)
q ← new record
q^.value ← x
q^.next ← NULL
repeat
p ← tail
succ ← COMPARE&SWAP(p^.next, ...
5
votes
2answers
262 views
Can competing atomic operations starve one another?
Imagine a program with two threads. They are running the following code (CAS refers to Compare and Swap):
// Visible to both threads
static int test;
// Run by thread A
void foo()
{
// Check if ...
5
votes
5answers
742 views
When are lock free data structures less performant than mutual exclusion (mutexes)?
I read somewhere (can't find the page anymore) that lock free data structures are more efficient "for certain workloads" which seems to imply that sometimes they're actually slower or the gain from ...
5
votes
5answers
3k views
GCC Atomic Builtins instead of pthread?
I've found following article: Use GCC-provided atomic lock operations to replace pthread_mutex_lock functions
It refers to GCC Atomic Builtins.
What the article suggest, is to use GCC atomic ...
5
votes
7answers
5k views
How to guarantee 64-bit writes are atomic?
When can 64-bit writes be guaranteed to be atomic, when programming in C on an Intel x86-based platform (in particular, an Intel-based Mac running MacOSX 10.4 using the Intel compiler)? For example:
...
4
votes
1answer
101 views
std::atomic treat a pair of atomic int32 as one atomic int64?
I have a pair of unsigned int32
std::atomic<u32> _start;
std::atomic<u32> _end;
Sometimes I want to set start or end with compare exchange, so I don't want spurious failures that could ...
4
votes
4answers
639 views
Lock-free algorithm library
Is there a library that implements lock-free algorithms(queue, linked list and others) written in C (not in C++)? I've taken a look at some libraries like Intel's, but I would like to use generic ...
4
votes
4answers
276 views
Memory management in a lock free queue
We've been looking to use a lock-free queue in our code to reduce lock contention between a single producer and consumer in our current implementation. There are plenty of queue implementations out ...
4
votes
2answers
326 views
Looking for lock-free container
I'm looking for lock-free container(List/Queue/Stack...) which can been used with delphi 2007. Thanks!
4
votes
3answers
1k views
optimistic lock-free FIFO queues impl?
is there any C++ implementation (source codes) of "optmistic approach to lock-free FIFO queues" algorithm?
4
votes
3answers
308 views
Is this usage of test_and_set thread safe?
I've been thinking of how to implement a lock-free singly linked list. And to be honest, I don't see many bullet proof ways to do it. Even the more robust ways out there that use CAS end up having ...
4
votes
4answers
2k views
Lock Free Queue — Single Producer, Multiple Consumers
I am looking for a method to implement lock-free queue data structure that supports single producer, and multiple consumers. I have looked at the classic method by Maged Michael and Michael Scott ...
4
votes
4answers
406 views
Is multiple-producer, single-consumer possible in a lockfree setting?
I have a bunch of threads that are doing lots of communication with each other.
I would prefer this be lock free.
For each thread, I want to have a mailbox, where other threads can send it messages, ...
4
votes
4answers
301 views
When do writes/reads affect main memory?
When I write a value into a field, what guarantees do I get regarding when the new value will be saved in the main memory? For example, how do I know that the processor don't keep the new value in ...
4
votes
7answers
1k views
Is lock free multithreaded programming making anything easier?
I only read a little bit about this topic, but it seems that the only benefit is to get around contention problems but it will not have any important effect on the deadlock problem as the code which ...
4
votes
5answers
1k views
Lock free constructs in .net
I am new to .net and would like to know whether .net has the java equivalent of AtomicInteger, ConcurrentLinkedQueue, etc?
I did a bit of search and couldnt come up with anything.
The lock free ...
3
votes
2answers
171 views
lock freedom/atomic operations across 2 processes instead of threads
I am sharing some data across multiple processes by using shared memory; I use inter processes mutexes to achieve synchronization.
My question is the following: is it possible to use lock-free data ...
3
votes
1answer
97 views
boost lockfree use user define type
I tried to use the boost lockfree library. However, there is an error invalid application of ‘sizeof’ to incomplete type ‘boost::STATIC_ASSERTION_FAILURE<false>’ when I set the template ...
3
votes
5answers
107 views
How to create a Lockfree collection of collection
I need to create a collection of collections. The collection is called by multiple threads to add items and lookup items. Once added the items will not be removed. Currently, while adding elements I ...
3
votes
3answers
160 views
Is message passing via channels in go guaranteed to be non-blocking?
In order to assess whether go is a possible option for an audio/video application, I would like to know whether message passing in go satisfies any non-blocking progress guarantees (being ...