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 _LINUX_TIMES_H 8 #define _LINUX_TIMES_H 9 #include <linux/types.h> 10 struct tms { 11 __kernel_clock_t tms_utime; 12 __kernel_clock_t tms_stime; 13 __kernel_clock_t tms_cutime; 14 __kernel_clock_t tms_cstime; 15 }; 16 #endif 17