7

我有两个进程 A 和 B。A 和 B 有时需要通信(双向)以传递信号、消息等。
我已经对 Linux 中可用的 IPC 进行了一些基础研究,如信号量、消息队列、dbus 等。
现在我在决定使用哪一个时感到困惑,谁能告诉我哪个 IPC 更适合我的应用程序?

提前致谢

已编辑:详细说明应用程序。(它是一个嵌入式应用程序)
进程 A 将监控温度、速度计算等。进程 B 将驱动电机、读取传感器值(数字)等。有时我需要向进程 B 发送信号,告知达到最高温度,所以停止驱动电机。有时需要将从进程 A 中的传感器读取的数据发送到进程 B。像这样,数字数据需要跨进程传递。我在 ARM 架构中这样做。

4

1 回答 1

16

IPC 技术的选择取决于您尝试实现的应用程序。以下是基于性能的良好比较:

IPC name      Latency     Throughput   Description
-----------------------------------------------------------------------------------------
Signal        Low          n/a         Can be used only for notification, traditionally-
                                       to push process to change its state

Socket        Moderate     Moderate    Only one mechanism which works for remote nodes,
                                       not very fast but universal

D-Bus         High         High        A high-level protocol that increases latency and
                                       reduces throughput compared to when using base
                                       sockets, gains in increased ease of use

Shared        n/a          High        Data saved in-between process runs(due to swapping
memory                                 access time) can have non-constant access latency

Mapped files  n/a          High        Data can be saved in-between device boots

Message      Low           Moderate    Data saved in-between process runs. The message
queue                                  size is limited but there is less overhead
                                       to handle messages

这是另一个很好的比较

比较 Unix/Linux IPC

于 2013-02-20T17:38:52.147 回答