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. */
23 /* This file uses _GL_INLINE_HEADER_BEGIN, _GL_INLINE. */
24 #if !_GL_CONFIG_H_INCLUDED
25 #error "Please include config.h first."
28 _GL_INLINE_HEADER_BEGIN
30 # define XTIME_INLINE _GL_INLINE
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
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. */
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. */
57 xtime_nonnegative_sec (xtime_t t
)
59 return t
/ XTIME_PRECISION
;
62 /* Return the number of seconds in T. */
66 return (t
+ (t
< 0)) / XTIME_PRECISION
- (t
< 0);
69 /* Return the number of nanoseconds in T, which must be nonnegative. */
71 xtime_nonnegative_nsec (xtime_t t
)
73 return t
% XTIME_PRECISION
;
76 /* Return the number of nanoseconds in T. */
78 xtime_nsec (xtime_t t
)
80 long int ns
= t
% XTIME_PRECISION
;
82 ns
+= XTIME_PRECISION
;