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 #define ITIMER_REAL 0 14 #define ITIMER_VIRTUAL 1 15 #define ITIMER_PROF 2 16 17 struct itimerval { 18 struct timeval it_interval; 19 struct timeval it_value; 20 }; 21 22 int getitimer (int, struct itimerval *); 23 int setitimer (int, const struct itimerval *__restrict, struct itimerval *__restrict); 24 int utimes (const char *, const struct timeval [2]); 25 26 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) 27 struct timezone { 28 int tz_minuteswest; 29 int tz_dsttime; 30 }; 31 int futimes(int, const struct timeval [2]); 32 int futimesat(int, const char *, const struct timeval [2]); 33 int lutimes(const char *, const struct timeval [2]); 34 int settimeofday(const struct timeval *, const struct timezone *); 35 #define timerisset(t) ((t)->tv_sec || (t)->tv_usec) 36 #define timerclear(t) ((t)->tv_sec = (t)->tv_usec = 0) 37 #define timercmp(s,t,op) ((s)->tv_sec == (t)->tv_sec ? \ 38 (s)->tv_usec op (t)->tv_usec : (s)->tv_sec op (t)->tv_sec) 39 #define timeradd(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec + (t)->tv_sec, \ 40 ((a)->tv_usec = (s)->tv_usec + (t)->tv_usec) >= 1000000 && \ 41 ((a)->tv_usec -= 1000000, (a)->tv_sec++) ) 42 #define timersub(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec - (t)->tv_sec, \ 43 ((a)->tv_usec = (s)->tv_usec - (t)->tv_usec) < 0 && \ 44 ((a)->tv_usec += 1000000, (a)->tv_sec--) ) 45 #endif 46 47 #if defined(_GNU_SOURCE) 48 #define TIMEVAL_TO_TIMESPEC(tv, ts) ( \ 49 (ts)->tv_sec = (tv)->tv_sec, \ 50 (ts)->tv_nsec = (tv)->tv_usec * 1000, \ 51 (void)0 ) 52 #define TIMESPEC_TO_TIMEVAL(tv, ts) ( \ 53 (tv)->tv_sec = (ts)->tv_sec, \ 54 (tv)->tv_usec = (ts)->tv_nsec / 1000, \ 55 (void)0 ) 56 #endif 57 58 #if _REDIR_TIME64 59 __REDIR(gettimeofday, __gettimeofday_time64); 60 __REDIR(getitimer, __getitimer_time64); 61 __REDIR(setitimer, __setitimer_time64); 62 __REDIR(utimes, __utimes_time64); 63 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) 64 __REDIR(futimes, __futimes_time64); 65 __REDIR(futimesat, __futimesat_time64); 66 __REDIR(lutimes, __lutimes_time64); 67 __REDIR(settimeofday, __settimeofday_time64); 68 #endif 69 #endif 70 71 #ifdef __cplusplus 72 } 73 #endif 74 #endif 75