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

  1.  
  2. -- This is a universal Ada function to get CPU time in seconds
  3. -- of type DURATION on non time_sharring systems where a
  4. -- tailored CPU_TIME_CLOCK is not reasonable
  5. -- Do not cross a midnight boundry
  6.  
  7. with CALENDAR ; use CALENDAR ;
  8.  
  9. function CPU_TIME_CLOCK return DURATION is
  10.  
  11.       NOW : TIME := CLOCK ;
  12. begin
  13.  
  14.   return SECONDS ( NOW ) ;
  15.  
  16. end CPU_TIME_CLOCK ;
  17.