vote up 1 vote down star

I assumed joinable would indicate this, however, it does not seem to be the case.

In a worker class, I was trying to indicate that it was still processing through a predicate:

bool isRunning(){return thread_->joinable();}

Wouldn't a thread that has exited not be joinable? What am I missing... what is the meaning of boost thread::joinable?

flag

58% accept rate

3 Answers

vote up 3 vote down check

Since you can join a thread even after it has terminated, joinable() will still return true until you call join() or detach(). If you want to know if a thread is still running, you should be able to call timed_join with a wait time of 0. Note that this can result in a race condition since the thread may terminate right after the call.

link|flag
1  
It's a bit misleading to say that it can result in a race condition. timed_join alone can't do that. if you make any incorrect assumptions based on the result of the call, you can end up with a race condition, of course, but that's less to do with timed_join than with you assuming that the result of that call is still valid. Anyway, +1 – jalf Nov 3 at 14:05
vote up 2 vote down

You fundamentally can't do this. The reason is that the two possible answers are "Yes" and "Not when I last looked but perhaps now". There is no reliable way to determine that a thread is still inside its run method, even if there was a reliable way to determine the opposite.

link|flag
vote up 1 vote down

Use thread::timed_join() with a minimal timeout. It will return false if the thread is still running.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.