TimeVal Struct Seconds和Microseconds

时间:2012-12-01 17:22:47

标签: c

我怎么知道1970年1月1日00:00:00到现在使用timeval之间的秒和微秒?感谢。

struct timeval {
  long tv_sec; /*seconds since 1/1/1970*/
  long tv_usec; /*microseconds since tv_sec*/
};

1 个答案:

答案 0 :(得分:3)

你致电gettimeofday()

struct timeval tv;
gettimeofday(&tv, NULL);
tv.tv_sec  /* seconds */
tv.tv_usec /* microseconds */

但是gettimeofday()已过时,手册建议改为clock_gettime(2)

struct timespec tp;
clock_gettime(CLOCK_REALTIME, &tp);
tp.tv_sec  /* seconds */
tp.tv_usec /* nanoseconds divide by 1000 to get microseconds*/