As I have been writing some multi-threaded code for fun, I came up with the following situation:

a thread claims a single resource unit from a memory pool, it processes it and sends a pointer to this data to another thread for further operation using a circular buffer (1R / 1W case).

The latter must inform the former thread whenever it is done with the data he received, so that the memory can be recycled.

I wonder whether it is better - performance-wise - to implement this "Freelist" as another circular buffer - holding the addresses of free resources - or choose the lock-free stack way (implementing DCAS on x86-64).

Generally speaking, what could be the pros and the cons of the two different approaches ?

link|improve this question

1  
'The latter must inform the former thread whenever it is done with the data he received, so that the memory can be recycled' - why? Why cannot the consumer thread recycle the instance/struct/whatever to the pool itself? Why should the producer thread have to do it? If there is more than one pool, (eg. if each producer has its own pool), you can pass the pool instance/func-pointer/whatever in the struct/instance/whatever, (honestly, this sort of stuff is much, much easier in an OO language, plus us developers then don't have to type long 'struct/instance/pointer' strings into comments). – Martin James Oct 26 '11 at 1:36
I am flexible on this: when I wrote the question, I had in mind a model where the two threads communicates forth and back using two circular buffers. Nothing prevents to switch to a model where they both operate on the memory pool. I am just interested on the pros and cons of the two approaches. – ziu Oct 26 '11 at 9:14
feedback

1 Answer

up vote 1 down vote accepted

Just in case, there is a difference between lock-free and wait-free. The former means there is no locking but the thread can still busy-spin not making any progress. The latter means that the thread always makes progress with no locking or busy-spinning.

With one reader and one writer lock-free and wait-free FIFO circular buffer is trivial to implement.

I hear that LIFO stack can also be made wait-free, but not so sure about FIFO list. And it sound like you need a queue here rather then a stack.

link|improve this answer
the order of data insertion is not really important, I picked the stack because it should be easier to manage. Still, I prefer to deal with circular buffers whenever it is possible but I'm collecting ideas. – ziu Oct 25 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.