Searched refs:seconds (Results 1 - 2 of 2) sorted by relevance

/kernel/time/
H A Ditimer.c242 * alarm_setitimer - set alarm in seconds
244 * @seconds: number of seconds until alarm
247 * Returns the remaining time in seconds of a pending timer or 0 when
250 * On 32 bit machines the seconds value is limited to (INT_MAX/2) to avoid
253 unsigned int alarm_setitimer(unsigned int seconds) argument
258 if (seconds > INT_MAX)
259 seconds = INT_MAX;
261 it_new.it_value.tv_sec = seconds;
H A Dtimer.c167 * up or down to (approximately) full seconds. This is useful for timers
169 * they fire approximately every X seconds.
171 * By rounding these timers to whole seconds, all such timers will fire
193 * up or down to (approximately) full seconds. This is useful for timers
195 * they fire approximately every X seconds.
197 * By rounding these timers to whole seconds, all such timers will fire
221 * up or down to (approximately) full seconds. This is useful for timers
223 * they fire approximately every X seconds.
225 * By rounding these timers to whole seconds, all such timers will fire
242 * up or down to (approximately) full seconds
[all...]

Completed in 13 milliseconds