(file) Return to SystemUnix.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/SystemUnix.cpp between version 1.111 and 1.112

version 1.111, 2005/10/14 18:22:30 version 1.112, 2005/11/02 22:03:17
Line 125 
Line 125 
     milliseconds = Uint32(tv.tv_usec) / 1000;     milliseconds = Uint32(tv.tv_usec) / 1000;
 } }
  
   void System::getCurrentTimeUsec(Uint32& seconds, Uint32& microseconds)
   {
       timeval tv;
       gettimeofday(&tv, 0);
       seconds = Uint32(tv.tv_sec);
       microseconds = Uint32(tv.tv_usec);
   }
   
 String System::getCurrentASCIITime() String System::getCurrentASCIITime()
 { {
     char    str[50];     char    str[50];


Legend:
Removed from v.1.111  
changed lines
  Added in v.1.112

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2