📜  #包括<sys time.h>int main() { timespec ts; clock_gettime(CLOCK_MONOTONIC, &amp;ts);在 FreeBSD 上工作 clock_gettime(CLOCK_REALTIME, &amp;ts);适用于 Linux } - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:34.659000             🧑  作者: Mango

代码示例1
#include 

int main()
{
   timespec ts;
   // clock_gettime(CLOCK_MONOTONIC, &ts); // Works on FreeBSD
   clock_gettime(CLOCK_REALTIME, &ts); // Works on Linux
}