我需要能够从一些 C 代码中获取当前进程的CPU 时间。
在 Linux 上,我可以使用clock_gettime
withCLOCK_PROCESS_CPUTIME_ID
。在 BSD 上,我可以clock_gettime
使用CLOCK_VIRTUAL
. 在 Windows 上,GetProcessTimes。什么是 OS X 替代品?
我需要能够从一些 C 代码中获取当前进程的CPU 时间。
在 Linux 上,我可以使用clock_gettime
withCLOCK_PROCESS_CPUTIME_ID
。在 BSD 上,我可以clock_gettime
使用CLOCK_VIRTUAL
. 在 Windows 上,GetProcessTimes。什么是 OS X 替代品?