mod_timer 详解
mod_timer | ||
---|---|---|
Prev | Delaying, scheduling, and timer routines | Next |
Name
mod_timer — modify a timer"s timeout
Synopsis
int fsfuncmod_timer ( |
struct timer_list * timer, |
unsigned long expires) ; |
Arguments
timer
-
the timer to be modified
expires
-
new timeout in jiffies
Description
mod_timer
is a more efficient way to update the expire field of an active timer (if the timer is inactive it will be activated)
mod_timer(timer, expires) is equivalent to:
del_timer(timer); timer->expires = expires; add_timer(timer);
Note that if there are multiple unserialized concurrent users of the same timer, then mod_timer
is the only safe way to modify the timeout, since add_timer
cannot modify an already running timer.
The function returns whether it has modified a pending timer or not. (ie. mod_timer
of an inactive timer returns 0, mod_timer
of an active timer returns 1.)
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。
- 上一篇: mod_timer 定时器
- 下一篇: linux内核定时器使用及原理