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

Diff for /pegasus/src/Pegasus/Common/ThreadPool.cpp between version 1.19 and 1.20

version 1.19, 2008/09/02 14:11:21 version 1.20, 2008/10/30 17:25:59
Line 392 
Line 392 
             break;             break;
         }         }
  
         struct timeval *lastActivityTime;          void* tsd = 0;
         if (!thread->try_reference_tsd(          if (!thread->try_reference_tsd("last activity time", &tsd))
                 "last activity time", (void**)&lastActivityTime))  
         {         {
             PEGASUS_ASSERT(false);             PEGASUS_ASSERT(false);
             _idleThreads.insert_back(thread);             _idleThreads.insert_back(thread);
             break;             break;
         }         }
           struct timeval *lastActivityTime =
               reinterpret_cast<struct timeval*>(tsd);
         PEGASUS_ASSERT(lastActivityTime != 0);         PEGASUS_ASSERT(lastActivityTime != 0);
  
         Boolean cleanupThisThread =         Boolean cleanupThisThread =


Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2