Does anybody know of a fully thread-safe shared_ptr implementation? E.g. boost implementation of shared_ptr is thread-safe for the targets (refcounting
shared_ptr
You can use this implementation Atomic Reference Counting Pointers to at least implement the Reference Counting mechanism.