Hi everybody,

has anyone any ideas to implement a mailbox in c++? I didn't find any classes....

I have an application that implements the consumer producer problem. I'm thinking to use lists for the shared buffer. The first element points to the second element and so on. When the consumer reads an element, deletes it and set the second element as the first element...

I would like to do it with a mailbox because it has all funcionalities I need...but I think that it is not possible...

Thank you