Changeset 37130 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- May 18, 2011 11:38:38 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71802
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/win/USBProxyDevice-win.cpp
r35346 r37130 653 653 else if ( rc == WAIT_FAILED 654 654 || (rc >= WAIT_ABANDONED_0 && rc < WAIT_ABANDONED_0 + cQueuedUrbs)) 655 AssertMsgFailed(("USB: WaitForMultipleObjects %d objects failed with rc=%d and last error %d\n", cQueuedUrbs, rc, GetLastError())); 655 { 656 /* do not use GetLastError() in AssertMsgFailed directly since the "real" err will be overwriten with the 657 * RTAssertMsg1Weak((const char *)0, __LINE__, __FILE__, __PRETTY_FUNCTION__); call encapsulated by AssertMsgFailed */ 658 DWORD winEr = GetLastError(); 659 AssertMsgFailed(("USB: WaitForMultipleObjects %d objects failed with rc=%d and last error %d\n", cQueuedUrbs, rc, winEr)); 660 } 656 661 657 662 return pUrb;
Note:
See TracChangeset
for help on using the changeset viewer.