2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _SYS_TIME_H
|
|
|
|
#define _SYS_TIME_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-09-08 03:13:55 +00:00
|
|
|
#include <features.h>
|
2012-09-07 02:44:55 +00:00
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#include <sys/select.h>
|
|
|
|
|
2012-09-07 02:44:55 +00:00
|
|
|
int gettimeofday (struct timeval *__restrict, void *__restrict);
|
2011-02-12 05:22:29 +00:00
|
|
|
|
2012-05-23 01:52:08 +00:00
|
|
|
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \
|
|
|
|
|| defined(_BSD_SOURCE)
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
#define ITIMER_REAL 0
|
|
|
|
#define ITIMER_VIRTUAL 1
|
|
|
|
#define ITIMER_PROF 2
|
|
|
|
|
|
|
|
struct itimerval
|
|
|
|
{
|
|
|
|
struct timeval it_interval;
|
|
|
|
struct timeval it_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
int getitimer (int, struct itimerval *);
|
2012-09-07 02:44:55 +00:00
|
|
|
int setitimer (int, const struct itimerval *__restrict, struct itimerval *__restrict);
|
2011-02-12 05:22:29 +00:00
|
|
|
int utimes (const char *, const struct timeval [2]);
|
|
|
|
|
2011-02-27 08:48:19 +00:00
|
|
|
#endif
|
|
|
|
|
2012-05-23 01:52:08 +00:00
|
|
|
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
2011-02-12 05:22:29 +00:00
|
|
|
struct timezone {
|
|
|
|
int tz_minuteswest;
|
|
|
|
int tz_dsttime;
|
|
|
|
};
|
2013-05-26 16:01:38 +00:00
|
|
|
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 *);
|
2011-04-11 02:46:46 +00:00
|
|
|
#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)
|
2013-11-23 12:01:53 +00:00
|
|
|
#define timeradd(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec + (t)->tv_sec, \
|
2011-04-11 02:46:46 +00:00
|
|
|
((a)->tv_usec = (s)->tv_usec + (t)->tv_usec) >= 1000000 && \
|
|
|
|
((a)->tv_usec -= 1000000, (a)->tv_sec++) )
|
2013-11-23 12:01:53 +00:00
|
|
|
#define timersub(s,t,a) (void) ( (a)->tv_sec = (s)->tv_sec - (t)->tv_sec, \
|
2011-04-11 02:46:46 +00:00
|
|
|
((a)->tv_usec = (s)->tv_usec - (t)->tv_usec) < 0 && \
|
|
|
|
((a)->tv_usec += 1000000, (a)->tv_sec--) )
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|
|
|
|
|
2014-02-05 21:34:23 +00:00
|
|
|
#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 )
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|