vote up 1 vote down star

Is there a mechanism that I can use to tell if a pthread thread is currently running, or has exited? Is there a method for pthread_join() that is able to timeout after a specific period of time if the thread has not yet exited?

flag

56% accept rate

1 Answer

vote up 2 vote down

If you're only targeting linux, use http://www.kernel.org/doc/man-pages/online/pages/man3/pthread%5Ftryjoin%5Fnp.3.html

If you need something for any POSIX system, you can copy the "pthread_timedjoin" implementation in http://www.opengroup.org/onlinepubs/000095399/xrat/xsh%5Fchap02.html#tag%5F03%5F02%5F08%5F21 - which uses a condition variable to signal thread termination, and pthread_cond_timedwait for the timeout.

link|flag
Thanks, but it doesn't seem to be supported on my particular build. – Steven Behnke Sep 2 at 23:29

Your Answer

Get an OpenID
or

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