Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Suppose i create a thread that ,in some point, calls a function foo(). If i call pthread_exit() from within foo, will that have as a result termination of the thread that called foo?

thanks, Nikos

share|improve this question

4 Answers

up vote 1 down vote accepted

Of course. Otherwise what's the point of pthread_exit in the first place. http://www.kernel.org/doc/man-pages/online/pages/man3/pthread_exit.3.html "The pthread_exit() function shall terminate the calling thread"

share|improve this answer
what was the problem with the die.net link? :) – George Kastrinis May 21 '11 at 15:01
There have been complaints that the die.net man pages are out of date. On a question like this it is probably irrelevant but a more authoritative source doesn't hurt. – Duck May 21 '11 at 15:39
Oh thx. I didn't know that. – George Kastrinis May 21 '11 at 15:41
Yes, some of us (yours truly) are on a crusade to fix the die.net links that keep it at the top of SEO despite being full of outdated information. – R.. May 21 '11 at 16:04

From the documentation:

The pthread_exit() function terminates the calling thread

share|improve this answer

Yes, of course. It will also result in calling cleanup code, if any. Beware that it won't automatically clean application resources like mutexes etc. See pthread_exit() documentation for more information.

share|improve this answer
Except for robust mutexes - but using them for threads rather than processes would be rather wasteful. – R.. May 21 '11 at 16:06

Sure - thread context is unaffected by call/return. The thread IS calling pthread_exit(), no matter how long the call stack is. If 20 threads call foo then all 20 threads will exit.

Rgds, Martin

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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