tms X
1: /* 2: * Structure returned by times() 3: */ 4: struct tms { 5: time_t tms_utime; /* user time */ 6: time_t tms_stime; /* system time */ 7: time_t tms_cutime; /* user time, children */ 8: time_t tms_cstime; /* system time, children */ 9: };