遇到timer死锁系统

发布于 2022-09-30 11:52:02 字数 989 浏览 22 评论 0

  1. #include <linux/init.h>
  2. #include <linux/module.h>
  3. #include <linux/jiffies.h>
  4. #include <linux/timer.h>
  5. void timer_fun(unsigned long data)
  6. {
  7. }
  8. static int __init hello_init(void)
  9. {
  10.   struct timer_list timer;
  11.   init_timer(&timer);
  12.   timer.data=0;
  13.   timer.expires=jiffies+1*HZ;
  14.   timer.function=timer_fun;
  15.   add_timer(&timer);
  16.   printk("timer is running now !!\n");
  17.   return 0;
  18. }
  19. static void __exit hello_exit(void)
  20. {
  21. }
  22. module_init(hello_init);
  23. module_exit(hello_exit);
  24. MODULE_AUTHOR("crazycode");

复制代码我不知道上面的代码有什么问题,但是一加载系统就死锁了,各位帮忙看看,谢谢。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

往事随风而去 2022-10-07 11:52:02

确认是加载,而不是卸载的时候有问题?我印象中MODULE_INIT里面可以加TIMER的。可以看看LDD3, JIT.C 例子代码。

又怨 2022-10-07 11:52:02

回复 3# accessory

    加载的问题,可能timer是局部变量的问题吧

音盲 2022-10-07 11:52:02

在ioctl里面就没有问题了,估计是模块加载的时候不允许做些异步的事情,原理还有待高手指教

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文