Here is a simplified version of my problem.

There are N threads executing following 3 instructions in an infinite loop:

A -> B -> C -> A -> B -> C -> A -> B -> .......

I want that all threads execute instruction B concurrently i.e. execution of B by any thread should start only if all threads have reached B. So, if there is a thread that has executed B -> C -> A, it should wait here till other threads are also ready to execute B.

If possible, please let me know a portable solution that'll work on both windows & MAC.

link|improve this question
Only yesterday Bartosz Milewski posted his vidcast on C++11 Concurrency Series: 9. Condition Variables. I found it the most entertaining in the series (no need to view the others first, I think) – sehe Nov 14 '11 at 13:32
feedback

2 Answers

You should check out the Boost thread library, especially the section about condition variables.

link|improve this answer
7  
Although this sounds more like you want a barrier – Mike Seymour Nov 14 '11 at 13:18
@MikeSeymour: Why don't you add it as an answer? – jgauffin Nov 14 '11 at 13:22
Thanks Mike, yes it appears that barrier is what I need. Let me get into its details & get back in case I face issues. Thanks again! – arvin Nov 14 '11 at 13:22
feedback

An array of N-1 semaphores and a mutex? All threads acquire the mutex, inc a counter and, if less than N, release the mutex and wait on the semaphore array at [counter]. The Nth thread finds the counter to be N, signals all the semaphores, resets the counter to 0, executes 'B' releases the mutex and exits. The other threads, when released, also execute B but cannot loop around and get in again until the Nth thread has executed 'B' and released the mutex.

All multitasking OS have semaphores/mutex. You could usee an event, if available, instead of the semaphore.

link|improve this answer
1  
Actually, one semaphore signaled [n-1] times would be fine - no array necessary with a semaphore, unlike events. – Martin James Nov 14 '11 at 13:23
feedback

Your Answer

 
or
required, but never shown

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