ARM:从 int 写入/读取是原子的吗?
在ARM架构上,不幸的是我不知道它到底是什么芯片,是32位int读/写原子吗?
对于基本类型的读/写是否有任何保证?
On ARM architecture, unfortunately I don't know exactly what chip it is, is a 32 bit int read/write atomic?
Is there any sort of guarantees about reads/writes to basic types?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该是原子的,除非该 int 存储在非对齐地址上。
It should be atomic, EXCEPT if that int is stored on a non-aligned address.