Linux启动后获得系统时间

时间:2013-07-18 15:46:16

标签: c linux time

我需要找到系统时间,因为我的c代码在linux机器上通电。 像'time()'和gettimeofday()这样的函数返回自纪元以来的时间,而不是自开机以来的时间。 如何在开机后找到时钟滴答的时间或次数?

提前致谢!

3 个答案:

答案 0 :(得分:8)

此信息通过/proc文件系统API提供。具体来说,/proc/uptime。在C中,只需将其作为普通文件打开并从中读取一个浮点数。这将是自开机以来的秒数。如果您读取另一个FP值,它将是系统在总空闲时间内花费的秒数。你只对第一个号码感兴趣。

示例:

float uptime;
FILE* proc_uptime_file = fopen("/proc/uptime", "r");
fscanf(proc_uptime_file, "%f", &uptime);

此值以秒为单位,浮点。

您可以将其转换回时钟标记:

uptime * sysconfig(_SC_CLK_TCK);

答案 1 :(得分:3)

请参阅:Wgat API do I call to get the System Time

请参阅

中的sysinfo()

SYS / sysinfo.h

struct sysinfo {
  long uptime;             /* Seconds since boot */
  unsigned long loads[3];  /* 1, 5, and 15 minute load averages */
  unsigned long totalram;  /* Total usable main memory size */
  unsigned long freeram;   /* Available memory size */
  unsigned long sharedram; /* Amount of shared memory */
  unsigned long bufferram; /* Memory used by buffers */
  unsigned long totalswap; /* Total swap space size */
  unsigned long freeswap;  /* swap space still available */
  unsigned short procs;    /* Number of current processes */
  unsigned long totalhigh; /* Total high memory size */
  unsigned long freehigh;  /* Available high memory size */
  unsigned int mem_unit;   /* Memory unit size in bytes */
  char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding for libc5 */
};

答案 2 :(得分:2)

如果您想了解C API,

此问题可能与What API do I call to get the system uptime?

重复

如果您想通过shell了解正常运行时间,请使用uptime命令。

$uptime