I'm looking for a good open source message bus that is suitable for embedded Linux devices (Linux and uClinux).
It needs to satisfy the following criteria:
The message bus would primarily be used by applications on our system in order to communicate configuration parameters etc so it doesn't need to satisfy realtime requirements.
There's D-Bus. It runs in userspace. It generally requires a daemon though (but maybe you could just have processes specifically connect to each other rather than going through the central daemon).
It all depends on your architecture. Are you intending to message across a backplane to other nodes in a cluster, or is this all within a single node, but in different address spaces?
If the latter, then like carson said: man mq_overview
.
If the former, then look first to your embedded linux vendor. Many vendors will provide some sort of distributed messaging library. Failing that, take a look at 0MQ or the MPICH2 MPI library.
Update: I should add, too, that much of my last year was spent writing just such an API for a distributed processing framework, and I can tell you that POSIX-compatibility is worth retaining. Use POSIX message queue if at all possible.
This sounds like a good use for SYSV or POSIX message queues. They can meet all the needs you have listed. POSIX are newer so they won't match the Kernel requirements but SYSV is in the older Kernels.
If you mean IPC, socket works fine for uclinux.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With