/* * $Id$ */ #ifndef __POSIX_SYS_TIMES_h #define __POSIX_SYS_TIMES_h #ifdef __cplusplus extern "C" { #endif #include /* * 4.5.2 Get Process Times, P1003.1b-1993, p. 92 */ struct tms { clock_t tms_utime; /* User CPU time */ clock_t tms_stime; /* System CPU time */ clock_t tms_cutime; /* User CPU time of terminated child processes */ clock_t tms_cstime; /* System CPU time of terminated child processes */ }; #ifdef __cplusplus } #endif #endif /* end of include file */