gethrxtime: port to C++
[gnulib.git] / lib / xtime.h
1 /* xtime -- extended-resolution integer time stamps
2
3    Copyright (C) 2005-2006, 2009-2012 Free Software Foundation, Inc.
4
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.
9
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.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Paul Eggert.  */
19
20 #ifndef XTIME_H_
21 # define XTIME_H_ 1
22
23 /* xtime_t is a signed type used for time stamps.  It is an integer
24    type that is a count of nanoseconds -- except for obsolescent hosts
25    without sufficiently-wide integers, where it is a count of
26    seconds.  */
27 # if HAVE_LONG_LONG_INT
28 typedef long long int xtime_t;
29 #  define XTIME_PRECISION 1000000000
30 # else
31 #  include <limits.h>
32 typedef long int xtime_t;
33 #  if LONG_MAX >> 31 >> 31 == 0
34 #   define XTIME_PRECISION 1
35 #  else
36 #   define XTIME_PRECISION 1000000000
37 #  endif
38 # endif
39
40 #ifdef  __cplusplus
41 extern "C" {
42 #endif
43
44 /* Return an extended time value that contains S seconds and NS
45    nanoseconds, without any overflow checking.  */
46 static inline xtime_t
47 xtime_make (xtime_t s, long int ns)
48 {
49   if (XTIME_PRECISION == 1)
50     return s;
51   else
52     return XTIME_PRECISION * s + ns;
53 }
54
55 /* Return the number of seconds in T, which must be nonnegative.  */
56 static inline xtime_t
57 xtime_nonnegative_sec (xtime_t t)
58 {
59   return t / XTIME_PRECISION;
60 }
61
62 /* Return the number of seconds in T.  */
63 static inline xtime_t
64 xtime_sec (xtime_t t)
65 {
66   return (XTIME_PRECISION == 1
67           ? t
68           : t < 0
69           ? (t + XTIME_PRECISION - 1) / XTIME_PRECISION - 1
70           : xtime_nonnegative_sec (t));
71 }
72
73 /* Return the number of nanoseconds in T, which must be nonnegative.  */
74 static inline long int
75 xtime_nonnegative_nsec (xtime_t t)
76 {
77   return t % XTIME_PRECISION;
78 }
79
80 /* Return the number of nanoseconds in T.  */
81 static inline long int
82 xtime_nsec (xtime_t t)
83 {
84   long int ns = t % XTIME_PRECISION;
85   if (ns < 0)
86     ns += XTIME_PRECISION;
87   return ns;
88 }
89
90 #ifdef  __cplusplus
91 }
92 #endif
93
94 #endif