#ifndef _LINUX_TIMES_H #define _LINUX_TIMES_H struct tms { clock_t tms_utime; clock_t tms_stime; clock_t tms_cutime; clock_t tms_cstime; }; #if defined(CONFIG_LOG_SYSTEM_TIMES) struct real_tms { unsigned long long tms_utime; unsigned long long tms_stime; unsigned long long tms_cutime; unsigned long long tms_cstime; }; #endif /*--- #if defined(CONFIG_LOG_SYSTEM_TIMES) ---*/ #endif