blob: f4ed3210d09cc0392752762bbd2b2b1bae87b92c [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Elliott Hughesa7a87dd2015-07-17 19:10:24 -070028
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029#ifndef _SYS_TIME_H_
30#define _SYS_TIME_H_
31
32#include <sys/cdefs.h>
33#include <sys/types.h>
34#include <linux/time.h>
35
Elliott Hughesa7a87dd2015-07-17 19:10:24 -070036/* POSIX says <sys/time.h> gets you most of <sys/select.h> and may get you all of it. */
37#include <sys/select.h>
38
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080039__BEGIN_DECLS
40
Elliott Hughes449eff02016-06-08 19:51:20 -070041int gettimeofday(struct timeval*, struct timezone*);
42int settimeofday(const struct timeval*, const struct timezone*);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080043
Elliott Hughes449eff02016-06-08 19:51:20 -070044int getitimer(int, struct itimerval*);
45int setitimer(int, const struct itimerval*, struct itimerval*);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080046
Elliott Hughes449eff02016-06-08 19:51:20 -070047int utimes(const char*, const struct timeval*);
48
49#if defined(__USE_BSD)
50int futimes(int, const struct timeval[2]);
51int lutimes(const char*, const struct timeval[2]);
52#endif
53
54#if defined(__USE_GNU)
55int futimesat(int, const char*, const struct timeval[2]);
56#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080057
58#define timerclear(a) \
59 ((a)->tv_sec = (a)->tv_usec = 0)
60
61#define timerisset(a) \
62 ((a)->tv_sec != 0 || (a)->tv_usec != 0)
63
64#define timercmp(a, b, op) \
65 ((a)->tv_sec == (b)->tv_sec \
66 ? (a)->tv_usec op (b)->tv_usec \
67 : (a)->tv_sec op (b)->tv_sec)
68
69#define timeradd(a, b, res) \
70 do { \
71 (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \
72 (res)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
73 if ((res)->tv_usec >= 1000000) { \
74 (res)->tv_usec -= 1000000; \
75 (res)->tv_sec += 1; \
76 } \
77 } while (0)
78
79#define timersub(a, b, res) \
80 do { \
81 (res)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
82 (res)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
83 if ((res)->tv_usec < 0) { \
84 (res)->tv_usec += 1000000; \
85 (res)->tv_sec -= 1; \
86 } \
87 } while (0)
88
Bertrand SIMONNET0875ba32015-07-16 11:50:39 -070089#define TIMEVAL_TO_TIMESPEC(tv, ts) { \
90 (ts)->tv_sec = (tv)->tv_sec; \
91 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
92}
93#define TIMESPEC_TO_TIMEVAL(tv, ts) { \
94 (tv)->tv_sec = (ts)->tv_sec; \
95 (tv)->tv_usec = (ts)->tv_nsec / 1000; \
96}
97
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080098__END_DECLS
99
100#endif /* _SYS_TIME_H_ */