]> git.cworth.org Git - tar/blob - gnu/timespec.h
Imported Upstream version 1.24
[tar] / gnu / timespec.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* timespec -- System time interface
4
5    Copyright (C) 2000, 2002, 2004-2005, 2007, 2009-2010 Free Software
6    Foundation, Inc.
7
8    This program is free software: you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #if ! defined TIMESPEC_H
22 # define TIMESPEC_H
23
24 # include <time.h>
25
26 /* Return negative, zero, positive if A < B, A == B, A > B, respectively.
27
28    For each time stamp T, this code assumes that either:
29
30      * T.tv_nsec is in the range 0..999999999; or
31      * T.tv_sec corresponds to a valid leap second on a host that supports
32        leap seconds, and T.tv_nsec is in the range 1000000000..1999999999; or
33      * T.tv_sec is the minimum time_t value and T.tv_nsec is -1; or
34        T.tv_sec is the maximum time_t value and T.tv_nsec is 2000000000.
35        This allows for special struct timespec values that are less or
36        greater than all possible valid time stamps.
37
38    In all these cases, it is safe to subtract two tv_nsec values and
39    convert the result to integer without worrying about overflow on
40    any platform of interest to the GNU project, since all such
41    platforms have 32-bit int or wider.
42
43    Replacing "(int) (a.tv_nsec - b.tv_nsec)" with something like
44    "a.tv_nsec < b.tv_nsec ? -1 : a.tv_nsec > b.tv_nsec" would cause
45    this function to work in some cases where the above assumption is
46    violated, but not in all cases (e.g., a.tv_sec==1, a.tv_nsec==-2,
47    b.tv_sec==0, b.tv_nsec==999999999) and is arguably not worth the
48    extra instructions.  Using a subtraction has the advantage of
49    detecting some invalid cases on platforms that detect integer
50    overflow.
51
52    The (int) cast avoids a gcc -Wconversion warning.  */
53
54 static inline int
55 timespec_cmp (struct timespec a, struct timespec b)
56 {
57   return (a.tv_sec < b.tv_sec ? -1
58           : a.tv_sec > b.tv_sec ? 1
59           : (int) (a.tv_nsec - b.tv_nsec));
60 }
61
62 void gettime (struct timespec *);
63 int settime (struct timespec const *);
64
65 #endif