- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我仍然对原子读写变量感到困惑。提前向那些试图在之前的问题中提供帮助的人表示歉意。
有人告诉我today不需要任何Interlocked
读写 32 位时的函数调用 long
值(value),这让我震惊previous beliefs窗外。事实上,这支持了 MSDN说
Simple reads and writes to properly-aligned 32-bit variables are atomic operations. In other words, you will not end up with only one portion of the variable updated; all bits are updated in an atomic fashion
然后我查看了 atomic_long
在VS2017中是这样的;它的operator=
做_InterlockedExchange()
将当前值与新值进行比较。
这与 MSDN 不矛盾吗?如果读/写是原子的,为什么需要这个 Interlocked 函数?
在同一个 MSDN 页面上,我们还有
Simple reads and writes to properly aligned 64-bit variables are atomic on 64-bit Windows. Reads and writes to 64-bit values are not guaranteed to be atomic on 32-bit Windows. Reads and writes to variables of other sizes are not guaranteed to be atomic on any platform.
然后我进入 atomic_bool
的'operator=
;它执行 _InterlockedExchange8
调用哪个MSDN告诉我仅适用于 Windows 8 及更高版本。
这似乎支持了第二条 MSDN 引用。
如果我使用 VS 2005 并面向 Windows XP,我如何确保 bool 变量的原子读/写?我必须使用互斥锁或类似的东西吗?
如果读/写操作不是原子的,那么它很容易被破坏;这是正确的吗?
我已阅读this PAQ这说明原始类型不是原子的。这再次与我在问题中被告知的内容以及 MSDN 告诉我的内容相矛盾。谁是正确的?
最佳答案
好吧,您引用了文档的摘录,但没有引用其后面的句子:
However, access is not guaranteed to be synchronized. If two threads are reading and writing from the same variable, you cannot determine if one thread will perform its read operation before the other performs its write operation.
也就是说,虽然操作是原子的,即一个线程保证在另一个线程被允许读取它之前写入所有 4 个字节,但这并不意味着您将获得正确的值,并且顺序执行情况未知。
互锁函数确保操作以“事务”方式执行,即它将是原子的,并且所有线程/处理器将获取最后更新的值 - 否则这不能保证,因为缓存(每个CPU/核心可以在其本地缓存中维护一个副本)。互锁功能以及所有同步功能可确保缓存内容同步。
为了读取/更新任何共享数据,是的,您需要使用互斥锁。对于同一进程的线程,关键部分会更好,因为它的速度非常快(不可测量的时间跨度,使用它们来确保屏幕输出操作的原子性,所以我可以确认这一点)。
关于c - 联锁函数和原子性 : still confused,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50121673/
我是一名优秀的程序员,十分优秀!