Chinaunix首页 | 论坛 | 博客

分类: C/C++

2014-03-05 10:05:18

一、struct timeval结构体
struct timeval结构体在time.h中的定义为:
  1. struct timeval
  2. {
  3. __time_t tv_sec;        /* Seconds. */
  4. __suseconds_t tv_usec;  /* Microseconds. */
  5. };
其中,tv_sec为Epoch到创建struct timeval时的秒数,tv_usec为微秒数,即秒后面的零头。比如当前我写博文时的tv_sec为1244770435,tv_usec为442388,即当前时间距Epoch时间1244770435秒,442388微秒。需要注意的是,因为循环过程,新建结构体变量等过程需消耗部分时间,我们作下面的运算时会得到如下结果:
  1. #include <sys/time.h>
  2. #include <stdio.h>
  3.   
  4. int
  5. main(void)
  6. {
  7.         int i;
  8.         struct timeval tv;

  9.         for(i = 0; i < 4; i++){
  10.                 gettimeofday(&tv, NULL);
  11.                 printf("%d\t%d\n", tv.tv_usec, tv.tv_sec);
  12.                 sleep(1);
  13.         }

  14.         return 0;
  15. }
  1. 329612 1314851429
  2. 329782 1314851430
  3. 329911 1314851431
  4. 330036 1314851432
前面为微秒数,后面为秒数,可以看出,在这个简单运算中,只能精确到小数点后面一到两位,或者可以看出,每进行一次循环,均需花费0.005秒的时间,用这个程序来作计时器显然是不行的,除非精确计算产生的代码消耗时间。

二、gettimeofday()函数
原型:
  1. /* Get the current time of day and timezone information,
  2.    putting it into *TV and *TZ. If TZ is NULL, *TZ is not filled.
  3.    Returns 0 on success, -1 on errors.
  4.    NOTE: This form of timezone information is obsolete.
  5.    Use the functions and variables declared in <time.h> instead. */
  6. extern int gettimeofday (struct timeval *__restrict __tv,
  7.                          __timezone_ptr_t __tz) __THROW __nonnull ((1));
gettimeofday()功能是得到当前时间和时区,分别写到tv和tz中,如果tz为NULL则不向tz写入。
阅读(1293) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

yandongxiao2014-03-06 19:15:17

内核态下,获取当前时间的方法:
struct rtc_time result;
struct timeval time;
do_gettimeofday(&time)
skb->tstamp = timeval_to_ktime(time)

rtc_time_to_tm(time.tv_sec, &result);
printk("%d-%d-%d %d:%d:%d\n", result.tm_year+1900, result.tm_mon+1, result.tm_day, result.tm_hour, result.tm_min, result.tm_sec  )