Linux/gcc 中 InterlockedIncrement 的等效项
这将是一个非常简单的问题(可以重复),但我无法找到它。
Win32 API 提供了一组非常方便的原子操作(作为内在函数),例如发出 lock add
x86 代码的 InterlockedIncrement 。此外,InterlockedCompareExchange
映射到lock cmpxchg
。
但是,我想在 Linux 中使用 gcc 来做到这一点。由于我使用的是 64 位,因此不可能使用内联汇编。 gcc 有内在函数吗?
It would be a very simple question (could be duplicated), but I was unable to find it.
Win32 API provides a very handy set of atomic operations (as intrinsics) such as InterlockedIncrement
which emits lock add
x86 code. Also, InterlockedCompareExchange
is mapped to lock cmpxchg
.
But, I want to do that in Linux with gcc. Since I'm working 64-bit, it's impossible to use inline assembly. Are there intrinsics for gcc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GCC 原子内置
GCC Atomic Built-ins