diff options
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r-- | include/linux/hrtimer.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index f79dcba4b2c1..3fed27c88c01 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -304,6 +304,13 @@ static inline int hrtimer_is_queued(struct hrtimer *timer) | |||
304 | extern unsigned long | 304 | extern unsigned long |
305 | hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval); | 305 | hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval); |
306 | 306 | ||
307 | /* Forward a hrtimer so it expires after the hrtimer's current now */ | ||
308 | static inline unsigned long hrtimer_forward_now(struct hrtimer *timer, | ||
309 | ktime_t interval) | ||
310 | { | ||
311 | return hrtimer_forward(timer, timer->base->get_time(), interval); | ||
312 | } | ||
313 | |||
307 | /* Precise sleep: */ | 314 | /* Precise sleep: */ |
308 | extern long hrtimer_nanosleep(struct timespec *rqtp, | 315 | extern long hrtimer_nanosleep(struct timespec *rqtp, |
309 | struct timespec *rmtp, | 316 | struct timespec *rmtp, |