gpt4 book ai didi

c++11 进程间原子和互斥锁

转载 作者:IT老高 更新时间:2023-10-28 22:03:27 35 4
gpt4 key购买 nike

我有一个 Linux 程序,它产生多个进程(fork)并通过 POSIX 共享内存进行通信。我想让每个进程分配一个 id (0-255)。我的意图是在共享内存区域(初始化为零)中放置一个位 vector ,然后原子地比较和交换位以分配一个 id。

有没有对 c++11 友好的方法来做到这一点?我可以创建一个原子位集吗?我可以跨进程使用互斥锁吗?如何确保构造函数在所有进程中被调用一次且仅调用一次?

最佳答案

C++11 线程原语(互斥体、原子等)是线程原语。 C++ 标准不引用进程,并且这些工具中的大多数不跨进程互操作。

标准中唯一提到的过程是在一个非规范的符号中表示 lock-free atomics are intended to be OK for IPC :

Operations that are lock-free should also be address-free. That is, atomic operations on the same memory location via two different addresses will communicate atomically. The implementation should not depend on any per-process state. This restriction enables communication by memory that is mapped into a process more than once and by memory that is shared between two processes.

在这种非规范性表示法之外,线程原语并非旨在成为实现进程间通信的一种手段。当这些对象放置在共享内存中时(除了上面提到的无锁原子),这些对象的行为是未定义的。

关于c++11 进程间原子和互斥锁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13161153/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com