diff options
Diffstat (limited to 'include/uapi/linux/time.h')
| -rw-r--r-- | include/uapi/linux/time.h | 29 | 
1 files changed, 1 insertions, 28 deletions
diff --git a/include/uapi/linux/time.h b/include/uapi/linux/time.h index 6b56a2208be7..958932effc5e 100644 --- a/include/uapi/linux/time.h +++ b/include/uapi/linux/time.h @@ -3,7 +3,7 @@  #define _UAPI_LINUX_TIME_H  #include <linux/types.h> - +#include <linux/time_types.h>  #ifndef _STRUCT_TIMESPEC  #define _STRUCT_TIMESPEC @@ -23,7 +23,6 @@ struct timezone {  	int	tz_dsttime;	/* type of dst correction */  }; -  /*   * Names of the interval timers, and structure   * defining a timer setting: @@ -42,32 +41,6 @@ struct itimerval {  	struct timeval it_value;	/* current value */  }; -#ifndef __kernel_timespec -struct __kernel_timespec { -	__kernel_time64_t       tv_sec;                 /* seconds */ -	long long               tv_nsec;                /* nanoseconds */ -}; -#endif - -#ifndef __kernel_itimerspec -struct __kernel_itimerspec { -	struct __kernel_timespec it_interval;    /* timer period */ -	struct __kernel_timespec it_value;       /* timer expiration */ -}; -#endif - -/* - * legacy timeval structure, only embedded in structures that - * traditionally used 'timeval' to pass time intervals (not absolute - * times). Do not add new users. If user space fails to compile - * here, this is probably because it is not y2038 safe and needs to - * be changed to use another interface. - */ -struct __kernel_old_timeval { -	__kernel_long_t tv_sec; -	__kernel_long_t tv_usec; -}; -  /*   * The IDs of the various system clocks (for POSIX.1b interval timers):   */  |