I\'ve written a container for a very simple piece of data that needs to be synchronized across threads. I want the top performance. I don\'t want to use locks.<
push
is broken, since you do not update node->_next
after a compareAndSwap
failure. It's possible that the node you originally stored with node->setNext
has been popped from the top of stack by another thread when the next compareAndSwap
attempt succeeds. As a result, some thread thinks it has popped a node from the stack but this thread has put it back in the stack. It should be:
void push(Node* node) noexcept
{
Node* n = _head.next();
do {
node->setNext(n);
} while (!_head.compareAndSwap(n, node));
}
Also, since next
and setNext
use memory_order_relaxed
, there's no guarantee that _head_.next()
here is returning the node most recently pushed. It's possible to leak nodes from the top of the stack. The same problem obviously exists in pop
as well: _head.next()
may return a node that was previously but is no longer at the top of the stack. If the returned value is nullptr
, you may fail to pop when the stack is not actually empty.
pop
can also have undefined behavior if two threads try to pop the last node from the stack at the same time. They both see the same value for _head.next()
, one thread successfully completes pop. The other thread enters the while loop - since the observed node pointer is not nullptr
- but the compareAndSwap
loop soon updates it to nullptr
since the stack is now empty. On the next iteration of the loop, that nullptr is dererenced to get its _next
pointer and much hilarity ensues.
pop
is also clearly suffering from ABA. Two threads can see the same node at the top of the stack. Say one thread gets to the point of evaluating the _next
pointer and then blocks. The other thread successfully pops the node, pushes 5 new nodes, and then pushes that original node again all before the other thread wakes. That other thread's compareAndSwap
will succeed - the top-of-stack node is the same - but store the old _next
value into _head
instead of the new one. The five nodes pushed by the other thread are all leaked. This would be the case with memory_order_seq_cst
as well.