I am looking for an inter-processes barrier implementation. Processes are in shared memory (ie. on the same ndoe).

Processes are MPI ones. I do not want to use the MPI_Barrier function, because the general policy for all the MPI implementation is active waiting. I want my processes sleeping as long as they wait.

The restrictions:

  • should be in C, maybe in C++
  • no spinlock, so it could use semaphore
  • linux OS

I am confident it exists thousands of barrier implementation, but I do not find any?!

Thanks

link|improve this question

60% accept rate
feedback

2 Answers

up vote 3 down vote accepted

pthread_barrier is the POSIX API for barriers. They may live in process shared memory if you initialize them accordingly.

link|improve this answer
It sounds great! I give it a try. – Jérôme Dec 16 '10 at 15:24
feedback

You should check out Boost. I believe that it has an interprocess module that you can use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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