1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 #ifndef _UAPI_LINUX_TIME_H 3 #define _UAPI_LINUX_TIME_H 4 5 #include <linux/types.h> 6 7 8 #ifndef _STRUCT_TIMESPEC 9 #define _STRUCT_TIMESPEC 10 struct timespec { 11 __kernel_time_t tv_sec; /* seconds */ 12 long tv_nsec; /* nanoseconds */ 13 }; 14 #endif 15 16 struct timeval { 17 __kernel_time_t tv_sec; /* seconds */ 18 __kernel_suseconds_t tv_usec; /* microseconds */ 19 }; 20 21 struct timezone { 22 int tz_minuteswest; /* minutes west of Greenwich */ 23 int tz_dsttime; /* type of dst correction */ 24 }; 25 26 27 /* 28 * Names of the interval timers, and structure 29 * defining a timer setting: 30 */ 31 #define ITIMER_REAL 0 32 #define ITIMER_VIRTUAL 1 33 #define ITIMER_PROF 2 34 35 struct itimerspec { 36 struct timespec it_interval; /* timer period */ 37 struct timespec it_value; /* timer expiration */ 38 }; 39 40 struct itimerval { 41 struct timeval it_interval; /* timer interval */ 42 struct timeval it_value; /* current value */ 43 }; 44 45 struct __kernel_timespec { 46 __kernel_time64_t tv_sec; /* seconds */ 47 long long tv_nsec; /* nanoseconds */ 48 }; 49 50 struct __kernel_itimerspec { 51 struct __kernel_timespec it_interval; /* timer period */ 52 struct __kernel_timespec it_value; /* timer expiration */ 53 }; 54 55 /* 56 * legacy timeval structure, only embedded in structures that 57 * traditionally used 'timeval' to pass time intervals (not absolute 58 * times). Do not add new users. If user space fails to compile 59 * here, this is probably because it is not y2038 safe and needs to 60 * be changed to use another interface. 61 */ 62 struct __kernel_old_timeval { 63 __kernel_long_t tv_sec; 64 __kernel_long_t tv_usec; 65 }; 66 67 /* 68 * The IDs of the various system clocks (for POSIX.1b interval timers): 69 */ 70 #define CLOCK_REALTIME 0 71 #define CLOCK_MONOTONIC 1 72 #define CLOCK_PROCESS_CPUTIME_ID 2 73 #define CLOCK_THREAD_CPUTIME_ID 3 74 #define CLOCK_MONOTONIC_RAW 4 75 #define CLOCK_REALTIME_COARSE 5 76 #define CLOCK_MONOTONIC_COARSE 6 77 #define CLOCK_BOOTTIME 7 78 #define CLOCK_REALTIME_ALARM 8 79 #define CLOCK_BOOTTIME_ALARM 9 80 /* 81 * The driver implementing this got removed. The clock ID is kept as a 82 * place holder. Do not reuse! 83 */ 84 #define CLOCK_SGI_CYCLE 10 85 #define CLOCK_TAI 11 86 87 #define MAX_CLOCKS 16 88 #define CLOCKS_MASK (CLOCK_REALTIME | CLOCK_MONOTONIC) 89 #define CLOCKS_MONO CLOCK_MONOTONIC 90 91 /* 92 * The various flags for setting POSIX.1b interval timers: 93 */ 94 #define TIMER_ABSTIME 0x01 95 96 #endif /* _UAPI_LINUX_TIME_H */ 97