Tagged Questions

Lockless operations guarantee simultaneous access to data structures without the usage of conventional locks which are generally slow operations like critical sections, mutexes etc. Lockless operations can be achieved with atomic operations for example.

learn more… | top users | synonyms

6
votes
5answers
5k views

How do I build a lockless queue?

I've spent today looking into lockless queues. I have a multiple producer, multiple consumer situation. I implemented, for testing, a system using the Interlocked SList thing under Win32 and it ...
5
votes
4answers
183 views

Is there an atomic |= operation?

Is there such a thing as an atomic |= or and atomic or? If no what is the recommended technique for setting a bit in an variable that needs to be threadsafe? (I am avoiding locks)
5
votes
1answer
274 views

What is the fastest race free method for polling a lockless queue?

Say we have a single-producer-thread single-consumer-thread lockless queue, and that the producer may go long periods without producing any data. It would be beneficial to let the consumer thread ...
5
votes
1answer
624 views

Lockless queue implementation ends up having a loop under stress

I have lockless queues written in C in form of a linked list that contains requests from several threads posted to and handled in a single thread. After a few hours of stress I end up having the last ...
4
votes
3answers
63 views

How should I register an update in a callback from another thread without using locks?

This is one of those questions that seems to fall into the "naively obvious but probably wrong" category. Certainly, I'm struggling to find a solution that works in all corner cases. It seems like ...
3
votes
2answers
71 views

How can I evaluate performances of a lockless queue?

I have implemented a lockless queue using the hazard pointer methodology explained in http://www.research.ibm.com/people/m/michael/ieeetpds-2004.pdf using GCC CAS instructions for the implementation ...
2
votes
3answers
107 views

Implementing a lock-free queue (for a Logger component)

I am designing a new improved Logger component (.NET 3.5, C#). I would like to use a lock-free implementation. Logging events will be sent from (potentially) multiple threads, although only a single ...
2
votes
2answers
426 views

Lockless reader/writer

I have some data that is both read and updated by multiple threads. Both reads and writes must be atomic. I was thinking of doing it like this: // Values must be read and updated atomically struct ...
2
votes
5answers
741 views

Is there such a thing as a lockless queue for multiple read or write threads?

I was thinking, is it possible to have a lockless queue when more then one thread is reading or writing? I seen an implementation with a lockless queue that worked with one read and one write thread ...
1
vote
2answers
37 views

Almost lockless producer consumer

I have producer consumer problem to solve with slight modification - there are many parallel producers but only one consumer in one parallel thread. When producer has no place in buffer then it simply ...
1
vote
1answer
200 views

Lockless circular queue with pthreads. Anything to watch out for?

I'd like to implement a lockless single-producer, single-consumer circular queue between two pthreads; in C, on ARM Linux. The queue will hold bytes, the producer will memcpy() things in, and the ...
0
votes
3answers
87 views

Casting a pointer to a volatile void** in C++

I have fairly decent C++ skills, but this one cast has been giving me issues. I have a function that takes in the following parameters: (volatile void **, void * , void*). I have 3 int* variables and ...
0
votes
2answers
173 views

Access violation with lockless queue in multithreaded app

I wrote a simple lockless queue based off of the principles outlined in the msdn article below, and from the DXUT lock free pipe code also below: ...
0
votes
4answers
548 views

Lockless Deque in Win32 C++

I'm pretty new to lockless data structures, so for an exercise I wrote (What I hope functions as) a bounded lockless deque (No resizing yet, just want to get the base cases working). I'd just like to ...