Having a boost::condition_variable which waits for a thread to complete:
boost::condition_variable mContd;
boost::shared_ptr<boost::thread> mThread;
Imagine, the Thread was started some time before, and now wait:
if(!mContd.timed_wait(tLock, boost::posix_time::seconds(1))) {
// cancel thread if deadline is reached
mThread.interrupt();
mThread.join();
std::cout
<< "Thread count = "
<< mThread.use_count() // still prints '1'
<< std::endl;
} else {
// continue
}
So, when is this count set to a zero? I assumed, after a join a thread is finished. But when it is?
