home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / include / sys / times.h < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  226 b   |  10 lines

  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. };
  10.