thanks.
WRT to lock free algorithms, well, it means you can get around using a dummy
node and use user provided nodes directly. It also means that user provided
nodes are subjected to the memory management requirements of the lock-free
algorithm. It means using less memory and less cache misses. One more thing,
intrusive lock-free algorithms can be more complex than there non-intrusive
counterparts.
Ok thanks.