aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/hrtimer.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2007-02-16 04:27:49 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-02-16 11:13:58 -0500
commitc9cb2e3d7c9178ab75d0942f96abb3abe0369906 (patch)
tree2d4a5470ece5efe82463653678c491c2f249d560 /include/linux/hrtimer.h
parentfd064b9b7770d5c7705bf9542950c7bd81c30f98 (diff)
[PATCH] hrtimers: namespace and enum cleanup
- hrtimers did not use the hrtimer_restart enum and relied on the implict int representation. Fix the prototypes and the functions using the enums. - Use seperate name spaces for the enumerations - Convert hrtimer_restart macro to inline function - Add comments No functional changes. [akpm@osdl.org: fix input driver] Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Cc: john stultz <johnstul@us.ibm.com> Cc: Roman Zippel <zippel@linux-m68k.org> Cc: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r--include/linux/hrtimer.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h
index 660d91dea78c..44c7d280b1a5 100644
--- a/include/linux/hrtimer.h
+++ b/include/linux/hrtimer.h
@@ -25,17 +25,18 @@
25 * Mode arguments of xxx_hrtimer functions: 25 * Mode arguments of xxx_hrtimer functions:
26 */ 26 */
27enum hrtimer_mode { 27enum hrtimer_mode {
28 HRTIMER_ABS, /* Time value is absolute */ 28 HRTIMER_MODE_ABS, /* Time value is absolute */
29 HRTIMER_REL, /* Time value is relative to now */ 29 HRTIMER_MODE_REL, /* Time value is relative to now */
30}; 30};
31 31
32/*
33 * Return values for the callback function
34 */
32enum hrtimer_restart { 35enum hrtimer_restart {
33 HRTIMER_NORESTART, 36 HRTIMER_NORESTART, /* Timer is not restarted */
34 HRTIMER_RESTART, 37 HRTIMER_RESTART, /* Timer must be restarted */
35}; 38};
36 39
37#define HRTIMER_INACTIVE ((void *)1UL)
38
39struct hrtimer_base; 40struct hrtimer_base;
40 41
41/** 42/**
@@ -52,7 +53,7 @@ struct hrtimer_base;
52struct hrtimer { 53struct hrtimer {
53 struct rb_node node; 54 struct rb_node node;
54 ktime_t expires; 55 ktime_t expires;
55 int (*function)(struct hrtimer *); 56 enum hrtimer_restart (*function)(struct hrtimer *);
56 struct hrtimer_base *base; 57 struct hrtimer_base *base;
57}; 58};
58 59
@@ -114,7 +115,10 @@ extern int hrtimer_start(struct hrtimer *timer, ktime_t tim,
114extern int hrtimer_cancel(struct hrtimer *timer); 115extern int hrtimer_cancel(struct hrtimer *timer);
115extern int hrtimer_try_to_cancel(struct hrtimer *timer); 116extern int hrtimer_try_to_cancel(struct hrtimer *timer);
116 117
117#define hrtimer_restart(timer) hrtimer_start((timer), (timer)->expires, HRTIMER_ABS) 118static inline int hrtimer_restart(struct hrtimer *timer)
119{
120 return hrtimer_start(timer, timer->expires, HRTIMER_MODE_ABS);
121}
118 122
119/* Query timers: */ 123/* Query timers: */
120extern ktime_t hrtimer_get_remaining(const struct hrtimer *timer); 124extern ktime_t hrtimer_get_remaining(const struct hrtimer *timer);