linux內(nèi)核使用timer_list 結(jié)構(gòu)體當(dāng)作定時(shí)器。#include "linux/timer.h"
#include "linux/module.h"
MODULE_LICENSE("GPL");
//不加這句話,雖然不影響功能,但“有時(shí)候”程序執(zhí)行時(shí)會(huì)打印錯(cuò)誤,類似 Disabling lock debugging
//due to kernel taint 之類的話
struct timer_list tm;
static int num;
static void func()
{
num++;
mod_timer(&tm,jiffies+1*HZ);
//timer一旦超時(shí),就會(huì)執(zhí)行fuc函數(shù),然后永遠(yuǎn)的休眠,
//所以如果沒有這mod_timer,hello world 只會(huì)執(zhí)行一次,也就是timer第一次超時(shí)時(shí)執(zhí)行的那次。
//mod_timer可以激活timer。如果你沒有add_timer(),激活也沒用
printk("hello,world n ,%d",num);
}
static int timer_init(void)
{
init_timer(&tm); //初始化定時(shí)器,必須在所有下面復(fù)制操作前進(jìn)行定時(shí)器初始化
tm.expires = jiffies +1*HZ; //超時(shí)1秒,執(zhí)行function
tm.function = func; //超時(shí)后執(zhí)行的函數(shù)
add_timer(&tm); //將定時(shí)器加入定時(shí)器等待隊(duì)列中
return 0;
}
static void timer_destory(void)
{
del_timer(&tm);
printk("remove timern");
}
評(píng)論