Are C++ Reads and Writes of an int Atomic?(C++ 对 int 的读写是原子的吗?)
问题描述
我有两个线程,一个更新一个 int,一个读取它.这是一个与读写顺序无关的统计值.
I have two threads, one updating an int and one reading it. This is a statistic value where the order of the reads and writes is irrelevant.
我的问题是,我是否需要同步访问这个多字节值?或者,换一种说法,可以部分写入完成并被中断,然后再进行读取.
My question is, do I need to synchronize access to this multi-byte value anyway? Or, put another way, can part of the write be complete and get interrupted, and then the read happen.
例如,考虑一个值 = 0x0000FFFF,它的增量值为 0x00010000.
For example, think of a value = 0x0000FFFF that gets incremented value of 0x00010000.
是否存在我应该担心的值看起来像 0x0001FFFF 的时间?当然,类型越大,发生这种情况的可能性就越大.
Is there a time where the value looks like 0x0001FFFF that I should be worried about? Certainly the larger the type, the more possible something like this to happen.
我一直同步这些类型的访问,但很好奇社区的想法.
I've always synchronized these types of accesses, but was curious what the community thinks.
推荐答案
起初可能会认为本机机器大小的读写是原子的,但有许多问题需要处理,包括处理器/内核之间的缓存一致性.在 Windows 上使用 Interlocked* 等原子操作,在 Linux 上使用等效操作.C++0x 将有一个原子"模板来将它们包装在一个漂亮的跨平台界面中.目前,如果您使用平台抽象层,它可能会提供这些功能.ACE 可以,请参阅类模板 ACE_Atomic_Op.
At first one might think that reads and writes of the native machine size are atomic but there are a number of issues to deal with including cache coherency between processors/cores. Use atomic operations like Interlocked* on Windows and the equivalent on Linux. C++0x will have an "atomic" template to wrap these in a nice and cross-platform interface. For now if you are using a platform abstraction layer it may provide these functions. ACE does, see the class template ACE_Atomic_Op.
这篇关于C++ 对 int 的读写是原子的吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 对 int 的读写是原子的吗?
基础教程推荐
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 这个宏可以转换成函数吗? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
