Query: mod_timer
OS: suse
Section: 9
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MOD_TIMER(9) Driver Basics MOD_TIMER(9)NAMEmod_timer - modify a timer's timeoutSYNOPSISint mod_timer(struct timer_list * timer, unsigned long expires);ARGUMENTStimer the timer to be modified expires new timeout in jiffiesDESCRIPTIONmod_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.)COPYRIGHTKernel Hackers Manual 2.6. July 2010 MOD_TIMER(9)
Related Man Pages |
---|
schedule_hrtimeout_range(9) - centos |
iv_timer_unregister(3) - debian |
struct_hrtimer(9) - suse |
timer_settime(3) - osf1 |
timer_delete(3rt) - sunos |
Similar Topics in the Unix Linux Community |
---|
How to restrict user to a specific directory in solaris 10 |
Change directory error |
Cut command on RHEL 6.8 compatibility issues |
Update kernel Linux without reboot?! |
Shopt -s histappend |