home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / time14.zip / time-1.4 / rusage.h < prev    next >
C/C++ Source or Header  |  1992-05-07  |  349b  |  12 lines

  1. /* Process resource usage structure for non-BSD systems.  */
  2.  
  3. struct rusage
  4. {
  5.   struct timeval ru_utime;    /* User time used.  */
  6.   struct timeval ru_stime;    /* System time used.  */
  7.   int ru_maxrss, ru_ixrss, ru_idrss, ru_isrss,
  8.   ru_minflt, ru_majflt, ru_nswap, ru_inblock, 
  9.   ru_oublock, ru_msgsnd, ru_msgrcv, ru_nsignals,
  10.   ru_nvcsw, ru_nivcsw;
  11. };
  12.