- Timestamp:
- Jan 29, 2007 3:02:53 PM (18 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r280 r412 247 247 BOOL finished; 248 248 249 RTSemEventMultiReset(mUpdateSem); 250 249 251 mFramebuffer->NotifyUpdate(x, y, w, h, &finished); 250 252 if (!finished) … … 252 254 // the Framebuffer needs more time to process 253 255 // the event so we have to halt the VM until it's done 254 RTSemEventMultiReset(mUpdateSem);255 256 mFramebuffer->Unlock(); 256 257 RTSemEventMultiWait(mUpdateSem, RT_INDEFINITE_WAIT); -
trunk/src/VBox/Main/DisplayImpl.cpp
r279 r412 390 390 BOOL finished = FALSE; 391 391 392 RTSemEventMultiReset(mUpdateSem); 393 392 394 mFramebuffer->NotifyUpdate(x, y, w, h, &finished); 393 395 … … 398 400 * the event so we have to halt the VM until it's done 399 401 */ 400 RTSemEventMultiReset(mUpdateSem);401 402 mFramebuffer->Unlock(); 402 403 RTSemEventMultiWait(mUpdateSem, RT_INDEFINITE_WAIT);
Note:
See TracChangeset
for help on using the changeset viewer.