What is the difference between message queues and a pipe in Linux?
|
|
|
They are very different things, really. The biggest practical difference is that a pipe doesn't have the notion of "messages", it's just a pipe to A message queue is used to transfer "messages", which have a type and size. So the receiving end can just wait for one "message" with a certain type, and you don't have to worry if this is complete or not. Several processes may send to and receive from the same queue. see |
|||
|
|
Off the top of my head and assuming you talk about posix message queues (not the SysV ones):
|
|||||||
|