先定义:
struct timer_list example_timer;
初始化timer:
执行函数:example_timer.function=(void *)example_function;
函数参数:example_timer.data=arg;
init_timer(&example_timer);
执行时间间隔:(HZ为1秒)example_timer.expires=jiffies+10*HZ;
添加timer到init子函数:add_timer(&example_timer);
执行函数体:
void example_function(unsigned long arg)
{
......
......
}
阅读(1525) | 评论(0) | 转发(0) |