Changeset 38754 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Sep 14, 2011 5:36:15 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74028
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/EventQueue.cpp
r33720 r38754 30 30 #include <iprt/time.h> 31 31 #include <iprt/thread.h> 32 #include <iprt/log.h> 32 33 #ifdef USE_XPCOM_QUEUE 33 34 # include <errno.h> … … 341 342 else 342 343 { 344 static uint32_t s_ErrorCount = 0; 345 if (s_ErrorCount < 500) 346 { 347 LogRel(("waitForEventsOnXPCOM rc=%d errno=%d\n", rc, errno)); 348 ++s_ErrorCount; 349 } 350 343 351 AssertMsgFailed(("rc=%d errno=%d\n", rc, errno)); 344 352 rc = VERR_INTERNAL_ERROR_4; … … 511 519 512 520 if ( ( RT_SUCCESS(rc) 513 || rc == VERR_INTERRUPTED) 521 || rc == VERR_INTERRUPTED 522 || rc == VERR_TIMEOUT) 514 523 && mInterrupted) 515 524 {
Note:
See TracChangeset
for help on using the changeset viewer.