vote up 1 vote down star

I just found this:

http://www.emadar.com/fpc/lockfree.htm

at first glance it looks fine. Is anybody using it? Or maybe somebody already looked at it and found it unusable?

flag

20% accept rate
It looks OK to me. But be careful — it gives you no indication that you've exceeded the size of the queue if you add to many items. If the queue can hold 10 items and you add 11, the first item you read will be the last one you added, and it will also be the 11th one you read. – Rob Kennedy Jul 13 at 4:24

2 Answers

vote up 1 vote down

If it is ok, it is only ok for x86 and x86_64 processors, and most likely not for PowerPC (and maybe ARM), since there are no memory barrier instructions.

I've it in production for a simple case, and noticed no problems. I use the non-generic one in Delphi though.

link|flag
vote up 1 vote down

At a quick glance, it doesn't solve the ABA problem.

Similar implementation that solves the ABA problem can be found here.

link|flag
Perhaps it was implemented on LL/SC CPUs. – Blank Xavier Sep 9 at 13:25

Your Answer

Get an OpenID
or

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