Chinaunix首页 | 论坛 | 博客
  • 博客访问: 427880
  • 博文数量: 139
  • 博客积分: 106
  • 博客等级: 民兵
  • 技术积分: 613
  • 用 户 组: 普通用户
  • 注册时间: 2011-06-24 16:03
文章分类

全部博文(139)

文章存档

2016年(1)

2014年(16)

2013年(23)

2012年(98)

2011年(1)

分类:

2012-10-10 10:45:17

原文地址:Linux内置的3个定时器 作者:

Linux为每个任务安排了3个内部定时器:

ITIMER_REAL:实时定时器,不管进程在何种模式下运行(甚至在进程被挂起时),它总在计数。定时到达,向进程发送SIGALRM信号。

ITIMER_VIRTUAL:这个不是实时定时器,当进程在用户模式(即程序执行时)计算进程执行的时间。定时到达后向该进程发送SIGVTALRM信号。 

ITIMER_PROF:进程在用户模式(即程序执行时)和核心模式(即进程调度用时)均计数。定时到达产生SIGPROF信号。ITIMER_PROF记录的时间比ITIMER_VIRTUAL多了进程调度所花的时间。

定时器在初始化是,被赋予一个初始值,随时间递减,递减至0后发出信号,同时恢复初始值。在任务中,我们可以一种或者全部三种定时器,但同一时刻同一类型的定时器只能使用一个。

用到的函数有:

#include
int getitimer(int which, struct itimerval *value);
int setitimer(int which, struct itimerval*newvalue, struct itimerval* oldvalue);
strcut timeval
{
long tv_sec; /*秒*/
long tv_usec; /*微秒*/
};
struct itimerval
{
struct timeval it_interval; /*时间间隔*/
struct timeval it_value;   /*当前时间计数*/
};

it_interval用来指定每隔多长时间执行任务, it_value用来保存当前时间离执行任务还有多长时间。比如说, 你指定it_interval为2秒(微秒为0),开始的时候我们把it_value的时间也设定为2秒(微秒为0),当过了一秒, it_value就减少一个为1, 再过1秒,则it_value又减少1,变为0,这个时候发出信号(告诉用户时间到了,可以执行任务了),并且系统自动把it_value的时间重置为it_interval的值,即2秒,再重新计数。

为了帮助你理解这个问题,我们来看一个例子:

1 #include
2 #include
3 #include
4  
5 /*
6 *******************************************************************************************************
7 ** Function name: main()
8 ** Descriptions : Demo for timer.
9 ** Input        : NONE
10 ** Output       : NONE
11 ** Created by   : Chenxibing
12 ** Created Date : 2005-12-29
13 **-----------------------------------------------------------------------------------------------------
14 ** Modified by  :
15 ** Modified Date:
16 **-----------------------------------------------------------------------------------------------------
17 *******************************************************************************************************
18 */
19 int limit = 10;
20 /* signal process */
21 void timeout_info(int signo)
22 {
23    if(limit == 0)
24    {
25        printf("Sorry, time limit reached.\n");
26        return;
27    }
28    printf("only %d senconds left.\n", limit--);
29 }
30  
31 /* init sigaction */
32 void init_sigaction(void)
33 {
34    struct sigaction act;
35  
36    act.sa_handler = timeout_info;
37    act.sa_flags   = 0;
38    sigemptyset(&act.sa_mask);
39    sigaction(SIGPROF, &act, NULL);
40 }
41  
42 /* init */
43 void init_time(void)
44 {
45    struct itimerval val;
46  
47    val.it_value.tv_sec = 1;
48    val.it_value.tv_usec = 0;
49    val.it_interval = val.it_value;
50    setitimer(ITIMER_PROF, &val, NULL);
51 }
52  
53  
54 int main(void)
55 {
56    init_sigaction();
57    init_time();
58    printf("You have only 10 seconds for thinking.\n");
59  
60    while(1);
61   return 0;
62 }
63  
对于ITIMER_VIRTUAL和ITIMER_PROF的使用方法类似,当你在setitimer里面设置的定时器为ITIMER_VIRTUAL的时候,你把sigaction里面的SIGALRM改为SIGVTALARM, 同理,ITIMER_PROF对应SIGPROF。

不过,你可能会注意到,当你用ITIMER_VIRTUAL和ITIMER_PROF的时候,你拿一个秒表,你会发现程序输出字符串的时间间隔会不止2秒,甚至5-6秒才会输出一个,至于为什么,自己好好琢磨一下^_^
阅读(344) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~