1 /* 2 * This file is auto-generated. Modifications will be lost. 3 * 4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5 * for more information. 6 */ 7 #ifndef _UAPI_LINUX_TIME_TYPES_H 8 #define _UAPI_LINUX_TIME_TYPES_H 9 #include <linux/time.h> 10 #include <linux/types.h> 11 struct __kernel_timespec { 12 __kernel_time64_t tv_sec; 13 long long tv_nsec; 14 }; 15 struct __kernel_itimerspec { 16 struct __kernel_timespec it_interval; 17 struct __kernel_timespec it_value; 18 }; 19 struct __kernel_old_timespec { 20 __kernel_old_time_t tv_sec; 21 long tv_nsec; 22 }; 23 struct __kernel_sock_timeval { 24 __s64 tv_sec; 25 __s64 tv_usec; 26 }; 27 #endif 28