SWIFT 3:原子比较交换强

Swift 3: atomic_compare_exchange_strong(SWIFT 3:原子比较交换强)
本文介绍了SWIFT 3:原子比较交换强的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Xcode 8/SWIFT 3中收到以下警告:

warning: 'OSAtomicCompareAndSwap32Barrier' was deprecated in OS X 10.12:
         Use atomic_compare_exchange_strong() from <stdatomic.h> instead

尝试在SWIFT代码中使用函数atomic_compare_exchange_strong会导致编译器错误:

error: use of unresolved identifier 'atomic_compare_exchange_strong'

导入DarwinCoreFoundation模块不能解决问题。

我应该导入什么模块才能获得atomic_compare_exchange_strong的符号?

谢谢!

推荐答案

我知道这是SWIFT 3的问题,但如果有人偶然发现这一点,现在有一个Swift Atomics package(introduced in Oct 2020)可以用于此功能。

这篇关于SWIFT 3:原子比较交换强的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
Dropbox Files.download does not start when number of files in folder is gt; 1000(当文件夹中的文件数为1000时,Dropbox Files.Download不会启动)
appearance().setBackgroundImage Not Working On Custom Class(外观().setBackoundImage在自定义类上不起作用)
Show/Hide barButtonItem(显示/隐藏barButtonItem)
java.lang.IllegalStateException: SimpleTypeImpl should not be created for error type(异常:不应为错误类型创建SimpleTypeImpl)