OSAtomicCompareAndSwapPtrBarrier 的适当转换

发布于 2024-10-30 01:14:54 字数 432 浏览 0 评论 0原文

在此程序中:

int x, y; 
int *old = &x;
int *new = &y;
int * volatile cur = &x;

OSAtomicCompareAndSwapPtrBarrier(old, new, &cur);

我收到此警告:

将“int *易失性*”传递给“void *易失性*”类型的参数时不兼容的指针

在 XCode 4.0.1 的默认编译器上, 。 (实际上是实时问题。)

现在,我知道通常我不能将 int** 转换为 void** 。但如果我不这样做,我就看不到任何方法可以在不收到上述警告的情况下比较和交换和 int* 。我应该忽略这个警告,假设它是指针大小不统一的时代的遗迹,还是我误解了什么?

In this program:

int x, y; 
int *old = &x;
int *new = &y;
int * volatile cur = &x;

OSAtomicCompareAndSwapPtrBarrier(old, new, &cur);

I get this warning:

Incompatible pointer passing 'int *volatile *' to parameter of type 'void *volatile *'

on XCode 4.0.1's default compiler. (Live Issues, actually.)

Now, I know that in general I can't cast int** to void** . But if I don't, I don't see any way to compare-and-swap and int* without getting the above warning. Should I just ignore the warning, assuming it's a relic from a time of non-uniform pointer sizes, or am I misunderstanding something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深陷 2024-11-06 01:14:54

我认为警告表明编译器认为从指针到指针到 int 到指针到指针到 void 的隐式转换是危险的。并不是说你不能进行这样的转换;而是说你不能进行这样的转换。该标准规定,只要满足类型对齐要求,指针就可以转换为指向不同类型的对象的指针。但有时,例如在使用严格别名的情况下,它可能会导致到问题。

我相信在你的情况下,警告可以被忽略,或者可以通过显式强制转换来消除:

bool result = OSAtomicCompareAndSwapPtrBarrier(old, new, &(void*)cur);

另外,请确保你不要忘记检查返回值;忽略原子比较和交换可能不成功(由于并发修改)的事实很少是安全的。

I think the warning says that the compiler considers implicit conversion from pointer-to-pointer-to-int to pointer-to-pointer-to-void as dangerous. It's not as if you could not do such a conversion; the standard says a pointer can be converted to a pointer to an object of different type, as long as type alignment requirements are satisfied. But sometimes, e.g. in case of strict aliasing being used, it can potentially lead to problems.

I believe in your case the warning can be ignored, or possibly eliminated with explicit casts:

bool result = OSAtomicCompareAndSwapPtrBarrier(old, new, &(void*)cur);

Also, make sure you do not forget to check the return value; ignoring the fact that atomic compare-and-swap may not succeed (due to concurrent modifications) is rarely safe.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文