在Linux系统上,可以使用clock_gettime函数获取系统的运行时间。clock_gettime函数返回的时间是从系统启动开始计算的纳秒数。要获取系统启动时间,可以使用以下步骤:
#include <time.h>
#include <stdint.h>
uint64_t getSystemUptime()
{
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
return ((uint64_t)ts.tv_sec * 1000000000 + ts.tv_nsec);
}
uint64_t uptime = getSystemUptime();
printf("System uptime: %lu nanoseconds\n", uptime);
这样就可以通过clock_gettime函数获取Linux系统的运行时间。