xref: /freebsd/share/man/man3/timeradd.3 (revision 7fdf597e96a02165cfe22ff357b857d5fa15ed8a)
1.\" Copyright (c) 1999 Kelly Yancey <kbyanc@posi.net>
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. Neither the name of the author nor the names of any co-contributors
13.\"    may be used to endorse or promote products derived from this software
14.\"    without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.Dd July 30, 2018
29.Dt TIMERADD 3
30.Os
31.Sh NAME
32.Nm timeradd ,
33.Nm timersub ,
34.Nm timerclear ,
35.Nm timerisset ,
36.Nm timercmp ,
37.Nm timespecadd ,
38.Nm timespecsub ,
39.Nm timespecclear ,
40.Nm timespecisset ,
41.Nm timespeccmp
42.Nd operations on timevals and timespecs
43.Sh SYNOPSIS
44.In sys/time.h
45.Ft void
46.Fn timeradd "struct timeval *a" "struct timeval *b" "struct timeval *res"
47.Ft void
48.Fn timersub "struct timeval *a" "struct timeval *b" "struct timeval *res"
49.Ft void
50.Fn timerclear "struct timeval *tvp"
51.Ft int
52.Fn timerisset "struct timeval *tvp"
53.Ft int
54.Fn timercmp "struct timeval *a" "struct timeval *b" CMP
55.Ft void
56.Fn timespecadd "struct timespec *a" "struct timespec *b" "struct timespec *res"
57.Ft void
58.Fn timespecsub "struct timespec *a" "struct timespec *b" "struct timespec *res"
59.Ft void
60.Fn timespecclear "struct timespec *ts"
61.Ft int
62.Fn timespecisset "struct timespec *ts"
63.Ft int
64.Fn timespeccmp "struct timespec *a" "struct timespec *b" CMP
65.Sh DESCRIPTION
66These macros are provided for manipulating
67.Fa timeval
68and
69.Fa timespec
70structures for use with the
71.Xr clock_gettime 2 ,
72.Xr clock_settime 2 ,
73.Xr gettimeofday 2
74and
75.Xr settimeofday 2
76calls.
77The
78.Fa timeval
79structure is defined in
80.In sys/time.h
81as:
82.Bd -literal
83struct timeval {
84	long	tv_sec;		/* seconds since Jan. 1, 1970 */
85	long	tv_usec;	/* and microseconds */
86};
87.Ed
88.Pp
89And the
90.Fa timespec
91structure is defined in
92.In time.h
93as:
94.Bd -literal
95struct timespec {
96	time_t tv_sec;		/* seconds */
97	long   tv_nsec;		/* and nanoseconds */
98};
99.Ed
100.Pp
101.Fn timeradd
102and
103.Fn timespecadd
104add the time information stored in
105.Fa a
106to
107.Fa b
108and store the result in
109.Fa res .
110The results are simplified such that the value of
111.Fa res->tv_usec
112or
113.Fa res->tv_nsec
114is always less than 1 second.
115.Pp
116.Fn timersub
117and
118.Fn timespecsub
119subtract the time information stored in
120.Fa b
121from
122.Fa a
123and store the result
124in
125.Fa res .
126.Pp
127.Fn timerclear
128and
129.Fn timespecclear
130initialize their argument to midnight (0 hour) January 1st, 1970 (the Epoch).
131.Pp
132.Fn timerisset
133and
134.Fn timespecisset
135return true if their argument is set to any time value other than the Epoch.
136.Pp
137.Fn timercmp
138and
139.Fn timespeccmp
140compare
141.Fa a
142to
143.Fa b
144using the comparison operator given in
145.Fa CMP ,
146and return the result of that comparison.
147.Sh SEE ALSO
148.Xr clock_gettime 2 ,
149.Xr gettimeofday 2
150.Sh HISTORY
151The
152.Fn timeradd
153family of macros were imported from
154.Nx 1.1 ,
155and appeared in
156.Fx 2.2.6 .
157The
158.Fn timespecadd
159family of macros were imported from
160.Nx 1.3
161into
162.Fx 3.0 ,
163though they were not exposed to userland until
164.Fx 12.0 .
165