aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/time.h
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2011-02-14 18:43:08 -0800
committerJohn Stultz <john.stultz@linaro.org>2011-02-21 12:53:07 -0800
commit314ac37150011ebb398f522db528d2dbcc611189 (patch)
tree0731fced7713d3889bd783577673068a6bc93796 /include/linux/time.h
parenttime: Introduce get_monotonic_boottime and ktime_get_boottime (diff)
downloadlinux-dev-314ac37150011ebb398f522db528d2dbcc611189.tar.xz
linux-dev-314ac37150011ebb398f522db528d2dbcc611189.zip
time: Extend get_xtime_and_monotonic_offset() to also return sleep
Extend get_xtime_and_monotonic_offset to get_xtime_and_monotonic_and_sleep_offset(). CC: Jamie Lokier <jamie@shareable.org> CC: Thomas Gleixner <tglx@linutronix.de> CC: Alexander Shishkin <virtuoso@slind.org> CC: Arve Hjønnevåg <arve@android.com> Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux/time.h')
-rw-r--r--include/linux/time.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/time.h b/include/linux/time.h
index fa39150cb816..02d48fb30b41 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -124,7 +124,8 @@ unsigned long get_seconds(void);
struct timespec current_kernel_time(void);
struct timespec __current_kernel_time(void); /* does not take xtime_lock */
struct timespec get_monotonic_coarse(void);
-void get_xtime_and_monotonic_offset(struct timespec *xtim, struct timespec *wtom);
+void get_xtime_and_monotonic_and_sleep_offset(struct timespec *xtim,
+ struct timespec *wtom, struct timespec *sleep);
#define CURRENT_TIME (current_kernel_time())
#define CURRENT_TIME_SEC ((struct timespec) { get_seconds(), 0 })