1 #ifndef __sys_times_h__
2 #define __sys_times_h__
7 clock_t tms_utime
; /**< User mode CPU time. */
8 clock_t tms_stime
; /**< Kernel mode CPU time. */
9 clock_t tms_cutime
; /**< User mode CPU time for waited for children. */
10 clock_t tms_cstime
; /**< Kernel mode CPU time for waited for children. */
13 clock_t times(struct tms
*);