我知道struct timer_list
我可以创建一个计时器
此结构中有一些文件,其中有一个名为data unsigned long data;
这个变量data
有什么意义?
如果有人可以解释如何在低级别处理所有这个结构timer_list
,那么这就是P
答案 0 :(得分:1)
data
作为参数传递给使用计时器注册的函数。以下行来自LDD3。关于LDD3第7章http://lwn.net/images/pdf/LDD3/ch07.pdf
The expires field represents the jiffies value when the timer is expected to run; at that time, the function function is called with data as an argument.