Chinaunix首页 | 论坛 | 博客
  • 博客访问: 502250
  • 博文数量: 76
  • 博客积分: 4010
  • 博客等级: 上校
  • 技术积分: 1534
  • 用 户 组: 普通用户
  • 注册时间: 2007-04-10 16:28
文章分类
文章存档

2010年(1)

2009年(3)

2008年(72)

我的朋友

分类: LINUX

2008-06-01 14:54:04

1、在内核中计时的头函数是#include
2、Hz符号指出每秒钟产生的时钟滴答数,也就是1秒钟产生的时间中断。
3、#include
   volatile unsigned long jiffies  用这个变量来度量时间的变化。
4、int time_after(unsigned long a, unsigned long b)
   int time_before(unsigned long a, unsigned long b)
   这些布尔表达式以安全的方式比较jiffies的数值,无需考虑计时器溢出的问题。
5、jiffies表示的时间和其他表示方法之间的数值转换:
   unsigned long timespec_to_jiffies(struct timespec *value);
   void jiffies_to_timespec(unsigned long jiffies, struct timespec *value);
   unsigned long timeval_to_jiffies(struct timeval *value);
   void jiffies_to_timeval(unsigned long jiffies, struct timeval *value);
   (每次总是记不住,这次写到blog上以备后患)其中timespec和timeval是linux系统中时钟时间的结构:
  struct timeval {
          time_t       tv_sec;     /* seconds */
          suseconds_t   tv_usec; /* microseconds */
    };
 
  struct timespec 
  { 
      long int tv_sec; 
      long int tv_nsec; 
  }; 
   使用这个结构的头文件在#include 中,一般常用到的函数是:
   int gettimeofday(struct timeval *tv, struct timezone *tz);
阅读(1266) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~