Reputation: 115
I'm looking for suggestions on possible IPC mechanisms that I can implement in my self-made OS for an AVR32 board.
My current choice is implementing the massage passing mechanism described in the books written by Tanenbaum.
Is this a good choice? Are there easier way to implement IPC?
Thanks
Upvotes: 3
Views: 1568
Reputation: 5065
Perhaps the ZeroMQ project can be an alternative for you?
Upvotes: 0
Reputation: 64066
My suggestion is to review the message passing primitives that QNX RTOS (www.qnx.com) supports before making any decisions. I spent several years programming a complex multi-process system in that environment, and it stands out as the best message-based O/S I have ever encountered.
Some specific points that spring to mind (it's been a while now):
Upvotes: 1