time.h revision 1.10 1 /* $NetBSD: time.h,v 1.10 2021/12/19 11:12:36 riastradh Exp $ */
2
3 /*-
4 * Copyright (c) 2013 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Taylor R. Campbell.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #ifndef _LINUX_TIME_H_
33 #define _LINUX_TIME_H_
34
35 #include <sys/time.h>
36
37 #include <linux/math64.h>
38 #include <linux/seqlock.h>
39
40 #define timespec64 timespec /* take that, 2038 */
41
42 #define NSEC_PER_MSEC 1000000L
43 #define NSEC_PER_SEC 1000000000L
44 #define USEC_PER_MSEC 1000L
45
46 /*
47 * XXX get_seconds as implemented by Linux is a Y2038 bug waiting to
48 * happen on 32-bit systems because it returns unsigned long. Some
49 * callers in Linux (implicitly) convert the result to time_t, though.
50 * We'll pretend get_seconds returns time_t and make sure all our
51 * callers treat it as if it did.
52 */
53
54 static inline time_t
55 get_seconds(void)
56 {
57 return time_second;
58 }
59
60 static inline void
61 getrawmonotonic(struct timespec *ts)
62 {
63 getnanouptime(ts);
64 }
65
66 static inline void
67 do_gettimeofday(struct timeval *tv)
68 {
69 microtime(tv);
70 }
71
72 static inline bool
73 timespec_valid(const struct timespec *ts)
74 {
75 if (ts->tv_sec < 0)
76 return false;
77 if (1000000000L <= ts->tv_nsec)
78 return false;
79 return true;
80 }
81
82 static inline struct timespec
83 ns_to_timespec(const int64_t nsec)
84 {
85 struct timespec ts;
86
87 ts.tv_sec = (nsec / 1000000000L);
88 ts.tv_nsec = (nsec % 1000000000L);
89 if (ts.tv_nsec < 0) {
90 ts.tv_sec -= 1;
91 ts.tv_nsec += 1000000000L;
92 }
93
94 return ts;
95 }
96
97 static inline int64_t
98 timespec_to_ns(const struct timespec *ts)
99 {
100 return (((int64_t)ts->tv_sec * 1000000000LL) + ts->tv_nsec);
101 }
102
103 static inline struct timeval
104 ns_to_timeval(int64_t nsec)
105 {
106 struct timespec ts;
107 struct timeval tv;
108
109 ts = ns_to_timespec(nsec);
110 TIMESPEC_TO_TIMEVAL(&tv, &ts);
111
112 return tv;
113 }
114
115 static inline int64_t
116 timeval_to_ns(const struct timeval *tv)
117 {
118 return (((int64_t)tv->tv_sec * 1000000000UL) + (tv->tv_usec * 1000ul));
119 }
120
121 static inline struct timespec
122 timespec_sub(struct timespec a, struct timespec b)
123 {
124 struct timespec d;
125
126 timespecsub(&a, &b, &d);
127
128 return d;
129 }
130
131 static inline void
132 set_normalized_timespec(struct timespec *ts, time_t sec, int64_t nsec)
133 {
134 while (nsec >= 1000000000L) {
135 nsec -= 1000000000L;
136 sec += 1;
137 }
138 while (nsec < 0) {
139 nsec += 1000000000L;
140 sec -= 1;
141 }
142 ts->tv_sec = sec;
143 ts->tv_nsec = nsec;
144 }
145
146 static inline bool
147 time_after32(uint32_t a, uint32_t b)
148 {
149 return (int32_t)(b - a) < 0;
150 }
151
152 #endif /* _LINUX_TIME_H_ */
153