I have a thread A which allocates memory and assigns it to a shared pointer. Then this thread spawns 3 other threads X, Y and Z and passes a copy of the shared pointer to each. When X, Y and Z go out of scope, the memory is freed. But is there a possibility that 2 threads X, Y go out of scope at the exact same point in time and there is a race condition on reference count so instead of decrementing it by 2, it only gets decremented once. So, now the reference count newer drops to 0, so there is a memory leak. Note that, X, Y and Z are only reading the memory. Not writing or resetting the shared pointer. To cut a long story short, can there be a race condition on the reference count and can that lead to memory leaks?
-
Interesting that two people used the same documentation to reach opposing conclusions.Mark Ransom– Mark Ransom2010-04-21 22:53:23 +00:00Commented Apr 21, 2010 at 22:53
-
@Mark: I'd say the docs aren't entirely crystal-clear (not to say they're wrong, just that they're easily misinterpreted).Michael Burr– Michael Burr2010-04-21 23:11:35 +00:00Commented Apr 21, 2010 at 23:11
-
I don't understand why you have bounty your question. The answer is already there :)Vicente Botet Escriba– Vicente Botet Escriba2010-04-28 15:56:40 +00:00Commented Apr 28, 2010 at 15:56
-
Hoping for a more descriptive answer with a code snippet perhaps.. just a small incentive, its just 100 points..Nikhil– Nikhil2010-04-29 17:45:44 +00:00Commented Apr 29, 2010 at 17:45
5 Answers
boost::shared_ptr uses locks (or lock-free atomic access) to ensure that reference counts are updated atomically (even if this isn't clear from the docs page). You can configure away the use of the locks if you're writing single threaded code by defining the macro BOOST_SP_DISABLE_THREADS.
Note that the documentation examples in http://www.boost.org/doc/libs/1_42_0/libs/smart_ptr/shared_ptr.htm#ThreadSafety that discuss problems with multiple writes from different threads is discussing those threads acting on the same shared_ptr instances (the shared_ptr objects might be globals in the examples), not different shared_ptr copies that point to the same object, which is the usual use case for shared_ptr's. The example you give in the question (acting on copies that point to the shared object) is thread-safe.
3 Comments
shared_ptr, though. It's better to think in terms of locked exclusive access than "it crashed because it was at the wrong place at the wrong time." Whatever resources the destructors access should lock themselves.No, according to the documentation, these problems cannot occur:
Different
shared_ptrinstances can be "written to" (accessed using mutable operations such as operator= or reset) simultaneosly by multiple threads (even when these instances are copies, and share the same reference count underneath.)
3 Comments
shared_ptr variable living in the other thread, while this variable goes out of scope. This would be undefined (and it also would be undefined for other types of variables, not only shared_ptr's). If each thread gets its own copy of the shared_ptr variable, those variables can be used (and go out of scope) independently, even if they point to the same object (like in example 2 in the documentation).Several others have already provided links to the documentation explaining that this is safe.
For absolutely irrefutable proof, see how Boost Smartptr actually implements its own mutexes from scratch in boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp (or your platform's corresponding file).
Comments
The documentation says:
Different shared_ptr instances can be "written to" (accessed using mutable operations such as operator= or reset) simultaneosly by multiple threads (even when these instances are copies, and share the same reference count underneath.)
So if none of the threads accesses the pointer objects of the other threads, it should be fine. Please have a look at the examples in the documentation and see which one is relevant in your case.