You can derive from [enable_shared_from_this][1] and then you can use "shared_from_this()" instead of "this" to spawn a shared pointer to your own self object.

Example in the link:


    class Y: public enable_shared_from_this<Y>
    {
    public:
    
        shared_ptr<Y> f()
        {
            return shared_from_this();
        }
    }
    
    int main()
    {
        shared_ptr<Y> p(new Y);
        shared_ptr<Y> q = p->f();
        assert(p == q);
        assert(!(p < q || q < p)); // p and q must share ownership
    }


It's a good idea when spawning threads from a member function to boost::bind to a shared_from_this() instead of this().  It will ensure that the object is not released.

  [1]: http://www.boost.org/doc/libs/1_36_0/libs/smart_ptr/enable_shared_from_this.html