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 2ac20b48b2f3..cf5cfdf8d613 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -93,6 +93,13 @@ struct hrtimer_base { | |||
93 | struct hrtimer *curr_timer; | 93 | struct hrtimer *curr_timer; |
94 | }; | 94 | }; |
95 | 95 | ||
96 | /* | ||
97 | * clock_was_set() is a NOP for non- high-resolution systems. The | ||
98 | * time-sorted order guarantees that a timer does not expire early and | ||
99 | * is expired in the next softirq when the clock was advanced. | ||
100 | */ | ||
101 | #define clock_was_set() do { } while (0) | ||
102 | |||
96 | /* Exported timer functions: */ | 103 | /* Exported timer functions: */ |
97 | 104 | ||
98 | /* Initialize timers: */ | 105 | /* Initialize timers: */ |