diff options
Diffstat (limited to 'include/linux/time.h')
-rw-r--r-- | include/linux/time.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/time.h b/include/linux/time.h index 88d3b812841..65dd85b2105 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
@@ -102,6 +102,7 @@ extern int do_getitimer(int which, struct itimerval *value); | |||
102 | extern void getnstimeofday(struct timespec *tv); | 102 | extern void getnstimeofday(struct timespec *tv); |
103 | 103 | ||
104 | extern struct timespec timespec_trunc(struct timespec t, unsigned gran); | 104 | extern struct timespec timespec_trunc(struct timespec t, unsigned gran); |
105 | extern int timekeeping_is_continuous(void); | ||
105 | 106 | ||
106 | /** | 107 | /** |
107 | * timespec_to_ns - Convert timespec to nanoseconds | 108 | * timespec_to_ns - Convert timespec to nanoseconds |
@@ -144,6 +145,20 @@ extern struct timespec ns_to_timespec(const s64 nsec); | |||
144 | */ | 145 | */ |
145 | extern struct timeval ns_to_timeval(const s64 nsec); | 146 | extern struct timeval ns_to_timeval(const s64 nsec); |
146 | 147 | ||
148 | /** | ||
149 | * timespec_add_ns - Adds nanoseconds to a timespec | ||
150 | * @a: pointer to timespec to be incremented | ||
151 | * @ns: unsigned nanoseconds value to be added | ||
152 | */ | ||
153 | static inline void timespec_add_ns(struct timespec *a, u64 ns) | ||
154 | { | ||
155 | ns += a->tv_nsec; | ||
156 | while(unlikely(ns >= NSEC_PER_SEC)) { | ||
157 | ns -= NSEC_PER_SEC; | ||
158 | a->tv_sec++; | ||
159 | } | ||
160 | a->tv_nsec = ns; | ||
161 | } | ||
147 | #endif /* __KERNEL__ */ | 162 | #endif /* __KERNEL__ */ |
148 | 163 | ||
149 | #define NFDBITS __NFDBITS | 164 | #define NFDBITS __NFDBITS |