Does an optimistic lock-free FIFO queue implementation exist?

uray picture uray · May 31, 2010 · Viewed 9.1k times · Source

Is there any C++ implementation (source codes) of "optmistic approach to lock-free FIFO queues" algorithm?

Answer

greyfade picture greyfade · May 31, 2010

Herb Sutter covered just such a queue as part of his Effective Concurency column in Dr. Dobbs Journal.

Writing Lock-Free Code: A Corrected Queue