Lock-free reference counting smart pointer
With GCC 4.4, I tested how atomic types and operations of c++0x work by implementing lock-free reference counting smart pointer.
TsPersistentSmartPointer.h
#ifndef PERSISTENT_SMART_POINTER
#define PERSISTENT_SMART_POINTER
#include <cstdato… more »