I have two processes:

Producer
and
Consumer

they have a commonly mmaped shared region of memory

Memory

Now, Producer writes stuff to Memory. Consumer reads stuff from Memory.

I would prefer Consumer not to spin wait with Memory is empty.
I would prefer Producer not to spin wait when Memory is full.

How do I achieve this?

link|improve this question

79% accept rate
feedback

2 Answers

how about using mutexes? since a mutex will sleep until the resource is available, you won't experience the spin-wait problem.

link|improve this answer
feedback

This is reminiscent of the Dining Philosophers Problem. If your platform supports it, you could use condition variables shared across multiple processes. With such shared conditional variables your Producer could signal your Consumer to read Memory when data is available, and vice versa when Memory is empty. Remember to check for a spurious wakeup.

You'd need to check if MacOSX pthread implementation supports condition variables shared across processes. See my answer to your mutex related question to determine how. The answer applies for condition variables as well.

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.