};
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
#include <bits/types/struct_rusage.h>
/* Priority limits. */
--- /dev/null
+#include <time/bits/types/struct_timeval64.h>
/* Get definition of timer specification structures. */
#include <bits/types/time_t.h>
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
#ifdef __USE_XOPEN2K
# include <bits/types/struct_timespec.h>
#endif
#include <bits/types.h>
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
/* Structure which says how much of each resource has been used. If
the system does not keep track of a particular value, the struct
};
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
#include <bits/types/struct_rusage.h>
/* Priority limits. */
};
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
#include <bits/types/struct_rusage.h>
/* Priority limits. */
#include <bits/types.h>
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
/* These definitions from linux/timex.h as of 3.18. */
};
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
#include <bits/types/struct_rusage.h>
/* Priority limits. */
};
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
#include <bits/types/struct_rusage.h>
/* Priority limits. */
bits/types/struct_itimerspec.h \
bits/types/struct_timespec.h bits/types/struct_timeval.h \
bits/types/struct_tm.h bits/types/timer_t.h \
- bits/types/time_t.h
+ bits/types/time_t.h \
routines := offtime asctime clock ctime ctime_r difftime \
gmtime localtime mktime time \
--- /dev/null
+#ifndef __timeval64_defined
+#define __timeval64_defined 1
+
+#include <bits/types.h>
+
+/* A time value that is accurate to the nearest
+ microsecond but also has a range of years. */
+struct __timeval64
+{
+ __time64_t tv_sec; /* Seconds */
+ __int64_t tv_usec; /* Microseconds */
+};
+#endif
#include <bits/types.h>
#include <bits/types/time_t.h>
#include <bits/types/struct_timeval.h>
+#include <bits/types/struct_timeval64.h>
#ifndef __suseconds_t_defined
typedef __suseconds_t suseconds_t;