openat: don’t close (-1)
[gnulib.git] / lib / xtime.h
blob39cc5bee925d8e70bed62e7480f7b03eb33762a3
1 /* xtime -- extended-resolution integer timestamps
3 Copyright (C) 2005-2006, 2009-2024 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by Paul Eggert. */
20 #ifndef XTIME_H_
21 #define XTIME_H_ 1
23 /* This file uses _GL_INLINE_HEADER_BEGIN, _GL_INLINE. */
24 #if !_GL_CONFIG_H_INCLUDED
25 #error "Please include config.h first."
26 #endif
28 _GL_INLINE_HEADER_BEGIN
29 #ifndef XTIME_INLINE
30 # define XTIME_INLINE _GL_INLINE
31 #endif
33 /* xtime_t is a signed type used for timestamps. It is an integer
34 type that is a count of nanoseconds. */
35 typedef long long int xtime_t;
36 #define XTIME_PRECISION 1000000000
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
42 /* Return an extended time value that contains S seconds and NS
43 nanoseconds. S and NS should be nonnegative; otherwise, integer
44 overflow can occur even if the result is in range. */
45 XTIME_INLINE xtime_t
46 xtime_make (xtime_t s, long int ns)
48 return XTIME_PRECISION * s + ns;
51 /* The following functions split an extended time value:
52 T = XTIME_PRECISION * xtime_sec (T) + xtime_nsec (T)
53 with 0 <= xtime_nsec (T) < XTIME_PRECISION. */
55 /* Return the number of seconds in T, which must be nonnegative. */
56 XTIME_INLINE xtime_t
57 xtime_nonnegative_sec (xtime_t t)
59 return t / XTIME_PRECISION;
62 /* Return the number of seconds in T. */
63 XTIME_INLINE xtime_t
64 xtime_sec (xtime_t t)
66 return (t + (t < 0)) / XTIME_PRECISION - (t < 0);
69 /* Return the number of nanoseconds in T, which must be nonnegative. */
70 XTIME_INLINE long int
71 xtime_nonnegative_nsec (xtime_t t)
73 return t % XTIME_PRECISION;
76 /* Return the number of nanoseconds in T. */
77 XTIME_INLINE long int
78 xtime_nsec (xtime_t t)
80 long int ns = t % XTIME_PRECISION;
81 if (ns < 0)
82 ns += XTIME_PRECISION;
83 return ns;
86 #ifdef __cplusplus
88 #endif
90 _GL_INLINE_HEADER_END
92 #endif