1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 #ifndef _UAPI_LINUX_TIME_H 2 #ifndef _UAPI_LINUX_TIME_H 3 #define _UAPI_LINUX_TIME_H 3 #define _UAPI_LINUX_TIME_H 4 4 5 #include <linux/types.h> 5 #include <linux/types.h> 6 #include <linux/time_types.h> << 7 6 8 #ifndef __KERNEL__ !! 7 9 #ifndef _STRUCT_TIMESPEC 8 #ifndef _STRUCT_TIMESPEC 10 #define _STRUCT_TIMESPEC 9 #define _STRUCT_TIMESPEC 11 struct timespec { 10 struct timespec { 12 __kernel_old_time_t tv_sec; !! 11 __kernel_time_t tv_sec; /* seconds */ 13 long tv_nsec; !! 12 long tv_nsec; /* nanoseconds */ 14 }; 13 }; 15 #endif 14 #endif 16 15 17 struct timeval { 16 struct timeval { 18 __kernel_old_time_t tv_sec; !! 17 __kernel_time_t tv_sec; /* seconds */ 19 __kernel_suseconds_t tv_usec; 18 __kernel_suseconds_t tv_usec; /* microseconds */ 20 }; 19 }; 21 20 22 struct itimerspec { << 23 struct timespec it_interval;/* timer p << 24 struct timespec it_value; /* tim << 25 }; << 26 << 27 struct itimerval { << 28 struct timeval it_interval;/* timer in << 29 struct timeval it_value; /* cur << 30 }; << 31 #endif << 32 << 33 struct timezone { 21 struct timezone { 34 int tz_minuteswest; /* minutes wes 22 int tz_minuteswest; /* minutes west of Greenwich */ 35 int tz_dsttime; /* type of dst 23 int tz_dsttime; /* type of dst correction */ 36 }; 24 }; 37 25 >> 26 38 /* 27 /* 39 * Names of the interval timers, and structure 28 * Names of the interval timers, and structure 40 * defining a timer setting: 29 * defining a timer setting: 41 */ 30 */ 42 #define ITIMER_REAL 0 31 #define ITIMER_REAL 0 43 #define ITIMER_VIRTUAL 1 32 #define ITIMER_VIRTUAL 1 44 #define ITIMER_PROF 2 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 }; 45 44 46 /* 45 /* 47 * The IDs of the various system clocks (for P 46 * The IDs of the various system clocks (for POSIX.1b interval timers): 48 */ 47 */ 49 #define CLOCK_REALTIME 0 48 #define CLOCK_REALTIME 0 50 #define CLOCK_MONOTONIC 1 49 #define CLOCK_MONOTONIC 1 51 #define CLOCK_PROCESS_CPUTIME_ID 2 50 #define CLOCK_PROCESS_CPUTIME_ID 2 52 #define CLOCK_THREAD_CPUTIME_ID 3 51 #define CLOCK_THREAD_CPUTIME_ID 3 53 #define CLOCK_MONOTONIC_RAW 4 52 #define CLOCK_MONOTONIC_RAW 4 54 #define CLOCK_REALTIME_COARSE 5 53 #define CLOCK_REALTIME_COARSE 5 55 #define CLOCK_MONOTONIC_COARSE 6 54 #define CLOCK_MONOTONIC_COARSE 6 56 #define CLOCK_BOOTTIME 7 55 #define CLOCK_BOOTTIME 7 57 #define CLOCK_REALTIME_ALARM 8 56 #define CLOCK_REALTIME_ALARM 8 58 #define CLOCK_BOOTTIME_ALARM 9 57 #define CLOCK_BOOTTIME_ALARM 9 59 /* 58 /* 60 * The driver implementing this got removed. T 59 * The driver implementing this got removed. The clock ID is kept as a 61 * place holder. Do not reuse! 60 * place holder. Do not reuse! 62 */ 61 */ 63 #define CLOCK_SGI_CYCLE 10 62 #define CLOCK_SGI_CYCLE 10 64 #define CLOCK_TAI 11 63 #define CLOCK_TAI 11 65 64 66 #define MAX_CLOCKS 16 65 #define MAX_CLOCKS 16 67 #define CLOCKS_MASK (CLOCK 66 #define CLOCKS_MASK (CLOCK_REALTIME | CLOCK_MONOTONIC) 68 #define CLOCKS_MONO CLOCK_ 67 #define CLOCKS_MONO CLOCK_MONOTONIC 69 68 70 /* 69 /* 71 * The various flags for setting POSIX.1b inte 70 * The various flags for setting POSIX.1b interval timers: 72 */ 71 */ 73 #define TIMER_ABSTIME 0x01 72 #define TIMER_ABSTIME 0x01 74 73 75 #endif /* _UAPI_LINUX_TIME_H */ 74 #endif /* _UAPI_LINUX_TIME_H */ 76 75
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.