Subj : Re: membar's for double-linked list /w lock-free reads... To : comp.programming.threads From : Chris Thomasson Date : Wed May 04 2005 03:57 pm >I have implemented some basic list operations that can be used with >lock-free reads, but I am not "totally" sure which membars are required. I >believe all that I need is a store barrier and classic release semantics. >Something like this: Seems as though I got it right. You just need release semantics before you make the new node visible to readers. Simple! :) .