Does an optimistic lock-free FIFO queue implementation exist?

后端 未结 5 1028
轻奢々
轻奢々 2021-01-02 05:40

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

5条回答
  •  星月不相逢
    2021-01-02 06:36

    If you're looking for a good lock free queue implementation both Microsoft Visual Studio 2010 & Intel's Thread Building Blocks contain a good LF queue which is similar to the paper.

    Here's a link to the one in VC 2010

提交回复
热议问题