This is going to be used to implement clock_adjtime64 parser.
* kernel_timex.h (kernel_timex64_t): New type.
#ifndef STRACE_KERNEL_TIMEX_H
# define STRACE_KERNEL_TIMEX_H
+typedef struct {
+ unsigned int modes;
+ int pad0;
+ long long offset;
+ long long freq;
+ long long maxerror;
+ long long esterror;
+ int status;
+ int pad1;
+ long long constant;
+ long long precision;
+ long long tolerance;
+ struct {
+ long long tv_sec;
+ long long tv_usec;
+ } time;
+ long long tick;
+ long long ppsfreq;
+ long long jitter;
+ int shift;
+ int pad2;
+ long long stabil;
+ long long jitcnt;
+ long long calcnt;
+ long long errcnt;
+ long long stbcnt;
+ int tai;
+ int pad3[11];
+} kernel_timex64_t;
+
# if HAVE_ARCH_TIME32_SYSCALLS
typedef struct {