So my question in C is: what is basically the differences (maybe pros and cons) of using a pthread barrier (init and wait..etc) compared to using the pthread Join in a loop.

So say I created 10 threads in a loop, and then later at the place of where I want a barrier, I put a loop to do Join for all the threads. Wouldn't that act as a Barrier too?

Please clarify. Thanks!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

pthread_join() blocks the calling thread until the joining thread exits. In contrast, a barrier allows the all threads to continue running.

link|improve this answer
Thanks a lot for the clarification! – johnshaddad Dec 6 '10 at 5:00
feedback

Your Answer

 
or
required, but never shown

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