我是靠谱客的博主 标致未来,最近开发中收集的这篇文章主要介绍史上最简单的Linux 内核Timer使用入门,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1 使用流程:

初始化,设置到期时间,设置到期时执行的函数,然后加入到系统的队列中。

	static struct timer_list my_timer;
	init_timer(&my_timer);
	my_timer.expires= jiffies + 2 * HZ;
	my_timer.function = my_timer_func;
	my_timer.data=0;
	add_timer(&my_timer);

在到期函数中,继续修改到期时间就可以循环执行了

static void my_timer_func(unsigned long unused) {
pr_info(“timer expires , now do sthn”);
if (!timer_pending(&my_timer)) {
mod_timer(&my_timer, jiffies + 2 * HZ);
}
}

2 全部代码

#include <linux/init.h> /* Needed for the macros */
#include <linux/kernel.h> /* Needed for pr_info() */
#include <linux/module.h> /* Needed by all modules */
#include <linux/timer.h>

static struct timer_list my_timer;

static void my_timer_func(unsigned long unused) {
	pr_info("timer expires , now  do sthn");
	if (!timer_pending(&my_timer)) {
		mod_timer(&my_timer, jiffies + 2 * HZ);
	}
}

static __init int my_init(void) {
		init_timer(&my_timer);
		my_timer.function = my_timer_func;
		my_timer.expires= jiffies + 2 * HZ;
		my_timer.data=0;
		add_timer(&my_timer);
return 0;
}

static void __exit my_exit(void) {
		pr_info("a3 cleanup_modulen");
		del_timer(&my_timer);
}

module_init(my_init);
module_exit(my_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Andy");
MODULE_DESCRIPTION("andy one-key driver");
MODULE_ALIAS("one-key");

timer_pending((&my_timer) 用来判断my_timer是否已经加入内核的等待队列正在等待调度.

最后

以上就是标致未来为你收集整理的史上最简单的Linux 内核Timer使用入门的全部内容,希望文章能够帮你解决史上最简单的Linux 内核Timer使用入门所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(82)

评论列表共有 0 条评论

立即
投稿
返回
顶部