Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Side by Side Diff: fusl/include/sys/time.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/include/sys/termios.h ('k') | fusl/include/sys/timeb.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef _SYS_TIME_H
2 #define _SYS_TIME_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 #include <features.h>
8
9 #include <sys/select.h>
10
11 int gettimeofday (struct timeval *__restrict, void *__restrict);
12
13 #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \
14 || defined(_BSD_SOURCE)
15
16 #define ITIMER_REAL 0
17 #define ITIMER_VIRTUAL 1
18 #define ITIMER_PROF 2
19
20 struct itimerval
21 {
22 struct timeval it_interval;
23 struct timeval it_value;
24 };
25
26 int getitimer (int, struct itimerval *);
27 int setitimer (int, const struct itimerval *__restrict, struct itimerval *__rest rict);
28 int utimes (const char *, const struct timeval [2]);
29
30 #endif
31
32 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
33 struct timezone {
34 int tz_minuteswest;
35 int tz_dsttime;
36 };
37 int futimes(int, const struct timeval [2]);
38 int futimesat(int, const char *, const struct timeval [2]);
39 int lutimes(const char *, const struct timeval [2]);
40 int settimeofday(const struct timeval *, const struct timezone *);
41 int adjtime (const struct timeval *, struct timeval *);
42 #define timerisset(t) ((t)->tv_sec || (t)->tv_usec)
43 #define timerclear(t) ((t)->tv_sec = (t)->tv_usec = 0)
44 #define timercmp(s,t,op) ((s)->tv_sec == (t)->tv_sec ? \
45 (s)->tv_usec op (t)->tv_usec : (s)->tv_sec op (t)->tv_sec)
46 #define timeradd(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec + (t)->tv_sec, \
47 ((a)->tv_usec = (s)->tv_usec + (t)->tv_usec) >= 1000000 && \
48 ((a)->tv_usec -= 1000000, (a)->tv_sec++) )
49 #define timersub(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec - (t)->tv_sec, \
50 ((a)->tv_usec = (s)->tv_usec - (t)->tv_usec) < 0 && \
51 ((a)->tv_usec += 1000000, (a)->tv_sec--) )
52 #endif
53
54 #if defined(_GNU_SOURCE)
55 #define TIMEVAL_TO_TIMESPEC(tv, ts) ( \
56 (ts)->tv_sec = (tv)->tv_sec, \
57 (ts)->tv_nsec = (tv)->tv_usec * 1000, \
58 (void)0 )
59 #define TIMESPEC_TO_TIMEVAL(tv, ts) ( \
60 (tv)->tv_sec = (ts)->tv_sec, \
61 (tv)->tv_usec = (ts)->tv_nsec / 1000, \
62 (void)0 )
63 #endif
64
65 #ifdef __cplusplus
66 }
67 #endif
68 #endif
OLDNEW
« no previous file with comments | « fusl/include/sys/termios.h ('k') | fusl/include/sys/timeb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698