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

Diff for /pegasus/src/Pegasus/Common/TraceFileHandlerPOSIX.cpp between version 1.12 and 1.13

version 1.12, 2008/09/02 17:33:37 version 1.13, 2008/09/18 08:01:37
Line 56 
Line 56 
 void TraceFileHandler::prepareFileHandle(void) void TraceFileHandler::prepareFileHandle(void)
 { {
     Sint32 retCode;     Sint32 retCode;
   
       if (_configHasChanged)
       {
           _reConfigure();
       }
   
     // Check if the file has been deleted, if so re-open the file and     // Check if the file has been deleted, if so re-open the file and
     // continue     // continue
     if (!System::exists(_fileName))     if (!System::exists(_fileName))
Line 216 
Line 222 
     Uint32 msgLen,     Uint32 msgLen,
     const char *fmt, va_list argList)     const char *fmt, va_list argList)
 { {
       if (_configHasChanged)
       {
           _reConfigure();
       }
   
     if (!_fileHandle)     if (!_fileHandle)
     {     {
         // The trace file is not open, which means an earlier fopen() was         // The trace file is not open, which means an earlier fopen() was
Line 238 
Line 249 
  
 void TraceFileHandler::handleMessage(const char *message, Uint32 msgLen) void TraceFileHandler::handleMessage(const char *message, Uint32 msgLen)
 { {
       if (_configHasChanged)
       {
           _reConfigure();
       }
   
     if (!_fileHandle)     if (!_fileHandle)
     {     {
         // The trace file is not open, which means an earlier fopen() was         // The trace file is not open, which means an earlier fopen() was


Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2