tms

Contains CPU time-accounting information.

Service:BSD

Syntax

  #include <sys/times.h>
  
  struct tms 
  {
     clock_t    tms_utime;
     clock_t    tms_stime;
     clock_t    tms_cutime; 
     clock_t    tms_cstime;
  };
  

Fields

tms_utime

Contains the CPU time charged for execution of user instructions in the calling process.

tms_stime

Contains the CPU time charged for execution by the system on behalf of the calling process. On NetWare, this is identical to tms_utime.

tms_cutime

Not implemented.

tms_cstime

Not implemented.

Remarks

The tms structure is used by the times function.