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

Diff for /pegasus/src/Pegasus/Common/Socket.cpp between version 1.32 and 1.32.4.1

version 1.32, 2008/06/19 17:57:01 version 1.32.4.1, 2008/09/12 07:56:43
Line 73 
Line 73 
             { timeoutMilliseconds/1000, timeoutMilliseconds%1000*1000 };             { timeoutMilliseconds/1000, timeoutMilliseconds%1000*1000 };
         int selectResult = -1;         int selectResult = -1;
  
   #ifdef PEGASUS_OS_TYPE_WINDOWS
           PEGASUS_RETRY_SYSTEM_CALL(
               select(FD_SETSIZE, NULL, &fdwrite, &fdwrite, &timeoutValue),
               selectResult);
   #else
         PEGASUS_RETRY_SYSTEM_CALL(         PEGASUS_RETRY_SYSTEM_CALL(
             select(FD_SETSIZE, NULL, &fdwrite, NULL, &timeoutValue),             select(FD_SETSIZE, NULL, &fdwrite, NULL, &timeoutValue),
             selectResult);             selectResult);
   #endif
         if (selectResult == 0)         if (selectResult == 0)
         {         {
             PEG_TRACE_CSTRING(TRC_HTTP, Tracer::LEVEL1,             PEG_TRACE_CSTRING(TRC_HTTP, Tracer::LEVEL1,


Legend:
Removed from v.1.32  
changed lines
  Added in v.1.32.4.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2