home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / piwg / a000015.ada < prev    next >
Encoding:
Text File  |  1988-05-03  |  208 b   |  9 lines

  1.  
  2. -- This is a R1000 function to get CPU time in seconds of type DURATION
  3.  
  4. with SYSTEM_UTILITIES ;
  5. function CPU_TIME_CLOCK return DURATION is
  6. begin
  7.   return SYSTEM_UTILITIES.CPU ;
  8. end CPU_TIME_CLOCK ;
  9.