fix and cleanup suseconds_t/timeval stuff (broken on 64-bit)
[musl] / include / sys / time.h
1 #ifndef _SYS_TIME_H
2 #define _SYS_TIME_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 #include <sys/select.h>
8
9 int gettimeofday (struct timeval *, void *);
10
11 #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
12
13 #define ITIMER_REAL    0
14 #define ITIMER_VIRTUAL 1
15 #define ITIMER_PROF    2
16
17 struct itimerval
18 {
19         struct timeval it_interval;
20         struct timeval it_value;
21 };
22
23 int getitimer (int, struct itimerval *);
24 int setitimer (int, const struct itimerval *, struct itimerval *);
25 int utimes (const char *, const struct timeval [2]);
26
27 #endif
28
29 #ifdef _GNU_SOURCE
30 int settimeofday (const struct timeval *, void *);
31 int adjtime (const struct timeval *, struct timeval *);
32 struct timezone {
33         int tz_minuteswest;
34         int tz_dsttime;
35 };
36 #define timerisset(t) ((t)->tv_sec || (t)->tv_usec)
37 #define timerclear(t) ((t)->tv_sec = (t)->tv_usec = 0)
38 #define timercmp(s,t,op) ((s)->tv_sec == (t)->tv_sec ? \
39         (s)->tv_usec op (t)->tv_usec : (s)->tv_sec op (t)->tv_sec)
40 #define timeradd(s,t,a) ( (a)->tv_sec = (s)->tv_sec + (t)->tv_sec, \
41         ((a)->tv_usec = (s)->tv_usec + (t)->tv_usec) >= 1000000 && \
42         ((a)->tv_usec -= 1000000, (a)->tv_sec++) )
43 #define timersub(s,t,a) ( (a)->tv_sec = (s)->tv_sec - (t)->tv_sec, \
44         ((a)->tv_usec = (s)->tv_usec - (t)->tv_usec) < 0 && \
45         ((a)->tv_usec += 1000000, (a)->tv_sec--) )
46 #endif
47
48 #ifdef __cplusplus
49 }
50 #endif
51 #endif