5

我有一个已经存在一段时间(10 年以上)的 C++ 代码库,它可以编译并运行良好,但我注意到当我在 OS/X 10.8.x(Mountain Lion)下编译它时,编译器会发出关于的弃用警告它调用的一些 Carbon 函数:

../system/SetupSystem.cpp:575:44: warning: 'UpTime' is deprecated: first
  deprecated in OS X 10.8 [-Wdeprecated-declarations]
../system/SetupSystem.cpp:575:22: warning: 'AbsoluteToNanoseconds' is
  deprecated: first deprecated in OS X 10.8 [-Wdeprecated-declarations]
../system/SystemInfo.cpp:249:25: warning: 'MPProcessors' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]

我想将此代码库升级为 Apple 批准的新做事方式(从而避免在 Apple 最终删除这些功能时出现警告和未来的痛苦),但我无法弄清楚新标准是什么。我查看了 developer.apple.com 上的 OS/X 文档,但要么是我缺乏搜索技能,要么是他们的文档,因为我几乎没有发现这些功能,也没有发现它们的替代品。

我的具体问题:

  1. 为什么不推荐使用这些功能?
  2. 我应该调用哪些函数?
  3. 是否有一些我不知道的秘密文档库可以为我回答这些问题?
4

1 回答 1

2

我找到了上面列出的功能的可用替代品:

  1. UpTime() 可以替换为对 mach_absolute_time() 的调用,详见此处
  2. AbsoluteToNanoseconds() 可以用一点数学来代替,如上面的链接所示。
  3. MPProcessors 可以通过调用 host_info() 来替换,如下所示:
#include <mach/mach_host.h>

mach_msg_type_number_t infoCount = HOST_BASIC_INFO_COUNT;
host_info(gHostPort, HOST_BASIC_INFO, (host_info_t)&hostInfo, &infoCount);
int numProcessors = hostInfo.avail_cpus;
于 2013-04-18T00:32:01.767 回答