1 /* 2 * This header was generated from the Linux kernel headers by update_headers.py, 3 * to provide necessary information from kernel to userspace, such as constants, 4 * structures, and macros, and thus, contains no copyrightable information. 5 */ 6 #ifndef _LINUX_TIMES_H 7 #define _LINUX_TIMES_H 8 #include <linux/types.h> 9 struct tms { 10 __kernel_clock_t tms_utime; 11 __kernel_clock_t tms_stime; 12 __kernel_clock_t tms_cutime; 13 __kernel_clock_t tms_cstime; 14 }; 15 #endif 16