home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / forum7.lzh / RICO / MAN / man.times < prev    next >
Text File  |  1988-09-26  |  607b  |  41 lines

  1.  
  2.  
  3. TIMES()           os9-68000 Programmers Manual            TIMES()
  4.  
  5.  
  6.  
  7. NAME       
  8.  
  9.      times - get user and system cpu times 
  10.  
  11. SYNOPSIS       
  12.  
  13.      #include <time.h> 
  14.  
  15.      times(buffer) 
  16.  
  17.      struct tms *buffer; 
  18.  
  19. DESCRIPTION       
  20.  
  21.      Returns  time-accounting information for the current process
  22.      in buffer.  This is the structure returned by times: 
  23.  
  24.      struct tms { long tmsutime; long tmsstime; }; 
  25.  
  26.      /* System and user time in milliseconds */ 
  27.  
  28. LIBRARY       
  29.  
  30.      use clock.l 
  31.  
  32. SEE ALSO      
  33.  
  34.      clock(1),usertime(1),systemtime(1),cputime(1) 
  35.  
  36. AUTHOR       
  37.  
  38.      Rico Cozzio 
  39.  
  40.  
  41.