Linux定时器的使用(2)
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 <stdio.h>
2 #include <signal.h>
3 #include <sys/time.h>
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);
相关新闻>>
- 发表评论
-
- 最新评论 更多>>