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

Unified Diff: fusl/include/sys/time.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: fusl/include/sys/time.h
diff --git a/fusl/include/sys/time.h b/fusl/include/sys/time.h
index bfe1414e86fbc5b95f87680d022c6042cdd175c0..30c8a253008a9aeb1fb6ea8bf5e671d7c3977301 100644
--- a/fusl/include/sys/time.h
+++ b/fusl/include/sys/time.h
@@ -8,58 +8,57 @@ extern "C" {
#include <sys/select.h>
-int gettimeofday (struct timeval *__restrict, void *__restrict);
+int gettimeofday(struct timeval* __restrict, void* __restrict);
-#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \
- || defined(_BSD_SOURCE)
+#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define ITIMER_REAL 0
+#define ITIMER_REAL 0
#define ITIMER_VIRTUAL 1
-#define ITIMER_PROF 2
+#define ITIMER_PROF 2
-struct itimerval
-{
- struct timeval it_interval;
- struct timeval it_value;
+struct itimerval {
+ struct timeval it_interval;
+ struct timeval it_value;
};
-int getitimer (int, struct itimerval *);
-int setitimer (int, const struct itimerval *__restrict, struct itimerval *__restrict);
-int utimes (const char *, const struct timeval [2]);
+int getitimer(int, struct itimerval*);
+int setitimer(int,
+ const struct itimerval* __restrict,
+ struct itimerval* __restrict);
+int utimes(const char*, const struct timeval[2]);
#endif
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
struct timezone {
- int tz_minuteswest;
- int tz_dsttime;
+ int tz_minuteswest;
+ int tz_dsttime;
};
-int futimes(int, const struct timeval [2]);
-int futimesat(int, const char *, const struct timeval [2]);
-int lutimes(const char *, const struct timeval [2]);
-int settimeofday(const struct timeval *, const struct timezone *);
-int adjtime (const struct timeval *, struct timeval *);
+int futimes(int, const struct timeval[2]);
+int futimesat(int, const char*, const struct timeval[2]);
+int lutimes(const char*, const struct timeval[2]);
+int settimeofday(const struct timeval*, const struct timezone*);
+int adjtime(const struct timeval*, struct timeval*);
#define timerisset(t) ((t)->tv_sec || (t)->tv_usec)
#define timerclear(t) ((t)->tv_sec = (t)->tv_usec = 0)
-#define timercmp(s,t,op) ((s)->tv_sec == (t)->tv_sec ? \
- (s)->tv_usec op (t)->tv_usec : (s)->tv_sec op (t)->tv_sec)
-#define timeradd(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec + (t)->tv_sec, \
- ((a)->tv_usec = (s)->tv_usec + (t)->tv_usec) >= 1000000 && \
- ((a)->tv_usec -= 1000000, (a)->tv_sec++) )
-#define timersub(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec - (t)->tv_sec, \
- ((a)->tv_usec = (s)->tv_usec - (t)->tv_usec) < 0 && \
- ((a)->tv_usec += 1000000, (a)->tv_sec--) )
+#define timercmp(s, t, op) \
+ ((s)->tv_sec == (t)->tv_sec ? (s)->tv_usec op(t)->tv_usec \
+ : (s)->tv_sec op(t)->tv_sec)
+#define timeradd(s, t, a) \
+ (void)((a)->tv_sec = (s)->tv_sec + (t)->tv_sec, \
+ ((a)->tv_usec = (s)->tv_usec + (t)->tv_usec) >= 1000000 && \
+ ((a)->tv_usec -= 1000000, (a)->tv_sec++))
+#define timersub(s, t, a) \
+ (void)((a)->tv_sec = (s)->tv_sec - (t)->tv_sec, \
+ ((a)->tv_usec = (s)->tv_usec - (t)->tv_usec) < 0 && \
+ ((a)->tv_usec += 1000000, (a)->tv_sec--))
#endif
#if defined(_GNU_SOURCE)
-#define TIMEVAL_TO_TIMESPEC(tv, ts) ( \
- (ts)->tv_sec = (tv)->tv_sec, \
- (ts)->tv_nsec = (tv)->tv_usec * 1000, \
- (void)0 )
-#define TIMESPEC_TO_TIMEVAL(tv, ts) ( \
- (tv)->tv_sec = (ts)->tv_sec, \
- (tv)->tv_usec = (ts)->tv_nsec / 1000, \
- (void)0 )
+#define TIMEVAL_TO_TIMESPEC(tv, ts) \
+ ((ts)->tv_sec = (tv)->tv_sec, (ts)->tv_nsec = (tv)->tv_usec * 1000, (void)0)
+#define TIMESPEC_TO_TIMEVAL(tv, ts) \
+ ((tv)->tv_sec = (ts)->tv_sec, (tv)->tv_usec = (ts)->tv_nsec / 1000, (void)0)
#endif
#ifdef __cplusplus

Powered by Google App Engine
This is Rietveld 408576698