URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [newlib/] [newlib/] [newlib/] [libc/] [sys/] [rtems/] [sys/] [times.h] - Rev 1765
Compare with Previous | Blame | View Log
/* * $Id: times.h,v 1.1.1.2 2000-08-30 19:04:16 joel Exp $ */ #ifndef __POSIX_SYS_TIMES_h #define __POSIX_SYS_TIMES_h #ifdef __cplusplus extern "C" { #endif #include <sys/types.h> /* * 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 */