Contains CPU time-accounting information.
#include <sys/times.h>
struct tms
{
clock_t tms_utime;
clock_t tms_stime;
clock_t tms_cutime;
clock_t tms_cstime;
};
Contains the CPU time charged for execution of user instructions in the calling process.
Contains the CPU time charged for execution by the system on behalf of the calling process. On NetWare, this is identical to tms_utime.
Not implemented.
Not implemented.
The tms structure is used by the times function.