I have a problem understanding why shared_ptr is using atomic cpu instructions... I cant figure out the reasons because it is NOT thread safe. Can somebody please explain.
Any instance of shared_ptr
is multi-thread safe. The data it points to is not multi-thread safe. See this.
The atomic instructions, if properly applied (protection done in the same order by competing thread access) is one way to implement thread safety. Another way is by use of mutexes.
See a similar question for BOOST: Is boost shared_ptr xxx thread safe?