linux 内核 hrtimer,hrtimer在Linux内核中重复任务
我的目標是使用hrtimer結構在
linux內核中創建一個定期任務.我希望它每500毫秒重復一次.
但是,我對hrtimer在linux內核中的工作方式有點困惑(參見linux / hrtimer.h).我知道時間是指定的,回調應該返回HRTIMER_RESTART或HRTIMER_NORESTART.我在網上找到了一些資料,說明需要使用hrtimer_forward方法在回調中重置計時器.然而,我所看到的消息來源對于如何增加時間有點不清楚.這是我到目前為止的代碼:
static struct hrtimer timer;
static enum hrtimer_restart timer_callback(struct hrtimer *timer)
{
printk(KERN_ERR "Callback\n");
//I know something needs to go here to reset the timer
return HRTIMER_RESTART;
}
static int init_timer(void)
{
ktime_t ktime;
unsigned long delay_in_ms = 500L;
printk(KERN_ERR "Timer being set up\n");
ktime = ktime_set(0,delay_in_ms*1E6L);
hrtimer_init(&timer,CLOCK_MONOTONIC,HRTIMER_MODE_REL);
timer.function = &timer_callback;
printk(KERN_ERR "Timer starting to fire\n");
printk(KERN_ERR "in %ldms %ld\n",delay_in_ms,jiffies);
hrtimer_start(&timer,ktime,HRTIMER_MODE_REL);
return 0;
}
static void clean_load_balancing_timer(void)
{
int cancelled = hrtimer_cancel(&timer);
if (cancelled)
printk(KERN_ERR "Timer still running\n");
else
printk(KERN_ERR "Timer cancelled\n");
}
有人能解釋一下重置計時器在回調函數中的作用嗎?謝謝!
總結
以上是生活随笔為你收集整理的linux 内核 hrtimer,hrtimer在Linux内核中重复任务的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用arcpy遇到的那些坑(二)
- 下一篇: 第4章 Python 数字图像处理(DI