4

根据 C11 标准 (7.27.2.5),timespec_gettime.h. 我试过几个编译器,包括clang和几个版本的gcc,应该支持C11,但是这个功能总是缺失。宏TIME_UTC也不见了。

这是一个测试文件mytime.c

#include <time.h>
#include <stdio.h>
int main() {
  printf("C version: %ld\n", __STDC_VERSION__);
  fflush(stdout);
  struct timespec ts;
  timespec_get(&ts, TIME_UTC);
}

以及使用 Clang 的输出:

$ cc --version
Apple LLVM version 8.0.0 (clang-800.0.42.1)
Target: x86_64-apple-darwin15.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

$ cc -std=c11 mytime.c
mytime.c:9:3: warning: implicit declaration of function 'timespec_get' is invalid in C99
      [-Wimplicit-function-declaration]
  timespec_get(&ts, TIME_UTC);
  ^
mytime.c:9:21: error: use of undeclared identifier 'TIME_UTC'
  timespec_get(&ts, TIME_UTC);
                    ^
1 warning and 1 error generated.

我注释掉了这timespec_get条线,以确保我使用的是 C11,而且我是。

对于 gcc 版本 4.8、5 和 6,我得到基本相同的结果。

我使用的是 Mac,OS 10.11.6。

4

2 回答 2

8

Mac OS X 标准库不符合任何现代版本的 C 或 POSIX。它停留在 C99 和 POSIX 2001 上,甚至在这些方面也存在一致性问题。

于 2018-08-26T17:27:09.497 回答
0

Mac 10.15 支持timespec_get. 这取自/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/time.h

#if (__DARWIN_C_LEVEL >= __DARWIN_C_FULL) && \
        ((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || \
        (defined(__cplusplus) && __cplusplus >= 201703L))
/* ISO/IEC 9899:201x 7.27.2.5 The timespec_get function */
#define TIME_UTC        1       /* time elapsed since epoch */
__API_AVAILABLE(macosx(10.15), ios(13.0), tvos(13.0), watchos(6.0))
int timespec_get(struct timespec *ts, int base);
#endif

包含时,您需要使用 C11 或 C++17 进行构建time.h

我没有对 Mac 10.15 上是否gettimeofday或更好地用于此目的进行任何时间或其他调查,只有那个可用。timespec_gettimespec_get

于 2021-04-02T21:47:07.573 回答