diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2006-01-09 23:52:38 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:39 -0500 |
| commit | becf8b5d00f4b47e847f98322cdaf8cd16243861 (patch) | |
| tree | 152ba7583324c64d34ecc70d5401957ca7225761 /arch/um/kernel | |
| parent | 97735f25d2ba898ec5e13746451525580631c834 (diff) | |
[PATCH] hrtimer: convert posix timers completely
- convert posix-timers.c to use hrtimers
- remove the now obsolete abslist code
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/kernel')
| -rw-r--r-- | arch/um/kernel/time.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/um/kernel/time.c b/arch/um/kernel/time.c index 11f518a7e156..8fa2ae7f3026 100644 --- a/arch/um/kernel/time.c +++ b/arch/um/kernel/time.c | |||
| @@ -99,7 +99,8 @@ void uml_idle_timer(void) | |||
| 99 | set_interval(ITIMER_REAL); | 99 | set_interval(ITIMER_REAL); |
| 100 | } | 100 | } |
| 101 | 101 | ||
| 102 | extern int do_posix_clock_monotonic_gettime(struct timespec *tp); | 102 | extern void ktime_get_ts(struct timespec *ts); |
| 103 | #define do_posix_clock_monotonic_gettime(ts) ktime_get_ts(ts) | ||
| 103 | 104 | ||
| 104 | void time_init(void) | 105 | void time_init(void) |
| 105 | { | 106 | { |
| @@ -114,8 +115,8 @@ void time_init(void) | |||
| 114 | wall_to_monotonic.tv_nsec = -now.tv_nsec; | 115 | wall_to_monotonic.tv_nsec = -now.tv_nsec; |
| 115 | } | 116 | } |
| 116 | 117 | ||
| 117 | /* Declared in linux/time.h, which can't be included here */ | 118 | /* Defined in linux/ktimer.h, which can't be included here */ |
| 118 | extern void clock_was_set(void); | 119 | #define clock_was_set() do { } while (0) |
| 119 | 120 | ||
| 120 | void do_gettimeofday(struct timeval *tv) | 121 | void do_gettimeofday(struct timeval *tv) |
| 121 | { | 122 | { |
