VirtualBox

Changeset 22916 in vbox


Ignore:
Timestamp:
Sep 10, 2009 1:45:12 PM (15 years ago)
Author:
vboxsync
Message:

fixed Win burns, spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/EventQueue.cpp

    r22911 r22916  
    187187    return VINF_SUCCESS;
    188188
    189   if (orc != kCFRunLoopRunTimedOut) 
     189  if (orc != kCFRunLoopRunTimedOut)
    190190  {
    191191      NS_WARNING("Unexpected status code from CFRunLoopRunInMode");
     
    210210            break;
    211211        rc = VINF_SUCCESS;
    212     }   
     212    }
    213213    return rc;
    214214}
     
    218218public:
    219219  HANDLE mh;
    220  
     220
    221221  MyThreadHandle()
    222222  {
    223     if (!DuplicateHandle(GetCurrentProcess(), 
    224                          GetCurrentThread(), 
     223    if (!DuplicateHandle(GetCurrentProcess(),
     224                         GetCurrentThread(),
    225225                         GetCurrentProcess(),
    226                          &mh, 
    227                          0 /*dwDesiredAccess*/, 
     226                         &mh,
     227                         0 /*dwDesiredAccess*/,
    228228                         FALSE /*bInheritHandle*/,
    229229                         DUPLICATE_SAME_ACCESS))
     
    243243  /** @todo: rethink interruption events, current NULL event approach is bad */
    244244  pQueue->ProcessPendingEvents();
    245   return VINF_SUCCESS; 
     245  return VINF_SUCCESS;
    246246}
    247247#endif
     
    254254      PRBool fHasEvents = PR_FALSE;
    255255      nsresult rc;
    256      
    257       rc = mEventQ->PendingEvents(&fHasEvents);     
     256
     257      rc = mEventQ->PendingEvents(&fHasEvents);
    258258      if (NS_FAILED (rc))
    259259          return VERR_INTERNAL_ERROR_3;
     
    284284#endif
    285285      }
    286      
     286
    287287      /* Bit tricky part - perform timed wait */
    288288#  ifdef RT_OS_DARWIN
     
    292292      fd_set fdsetR, fdsetE;
    293293      struct timeval tv;
    294      
     294
    295295      FD_ZERO(&fdsetR);
    296296      FD_SET(fd, &fdsetR);
    297      
     297
    298298      fdsetE = fdsetR;
    299299      tv.tv_sec = (PRInt64)cMsTimeout / 1000;
     
    307307      else if (aCode < 0)
    308308        rc = VERR_INTERNAL_ERROR_4;
    309      
    310 #  endif     
     309
     310#  endif
    311311    } while (0);
    312312
     
    314314#else /* Windows */
    315315    do {
    316         int aCode = processPendingEventsOnWindows();
     316        int aCode = processPendingEvents();
    317317        if (aCode != VERR_TIMEOUT || cMsTimeout == 0)
    318318        {
     
    320320            break;
    321321        }
    322        
     322
    323323        if (cMsTimeout == RT_INDEFINITE_WAIT)
    324324        {
    325325            Event* aEvent = NULL;
    326          
     326
    327327            BOOL fHasEvent = waitForEvent(&aEvent);
    328328            if (fHasEvent)
     
    336336        MyThreadHandle aHandle;
    337337
    338         DWORD aCode2 = MsgWaitForMultipleObjects(1, &aHandle.mh, 
    339                                                  TRUE /*fWaitAll*/, 
    340                                                  0 /*ms*/, 
     338        DWORD aCode2 = MsgWaitForMultipleObjects(1, &aHandle.mh,
     339                                                 TRUE /*fWaitAll*/,
     340                                                 0 /*ms*/,
    341341                                                 QS_ALLINPUT);
    342342        if (aCode2 == WAIT_TIMEOUT)
     
    485485}
    486486/* namespace com */
    487 
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette