Changeset 47504 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Aug 1, 2013 9:37:39 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/VUSBUrb.cpp
r46806 r47504 1477 1477 pSetup->wLength = RT_LE2H_U16(pSetupIn->wLength); 1478 1478 1479 LogFlow(("vusbMsgSetup(%p,,%d): bmRequestType=%#04x bRequest=%#04x wValue=%#06x wIndex=%#06x wLength= %d\n",1479 LogFlow(("vusbMsgSetup(%p,,%d): bmRequestType=%#04x bRequest=%#04x wValue=%#06x wIndex=%#06x wLength=0x%.4x\n", 1480 1480 pPipe, cbBuf, pSetup->bmRequestType, pSetup->bRequest, pSetup->wValue, pSetup->wIndex, pSetup->wLength)); 1481 1481 return true; … … 1965 1965 */ 1966 1966 PVUSBURB pRipe; 1967 1967 1968 1968 /** 1969 * This is workaround for race(should be fixed) detach on one EMT thread and frame boundary timer on other 1969 * This is workaround for race(should be fixed) detach on one EMT thread and frame boundary timer on other 1970 1970 * and leaked URBs (shouldn't be affected by leaked URBs). 1971 1971 */ 1972 1972 Assert(pDev->pUsbIns); 1973 while ( pDev->pUsbIns 1973 while ( pDev->pUsbIns 1974 1974 && ((pRipe = pDev->pUsbIns->pReg->pfnUrbReap(pDev->pUsbIns, cMillies)) != NULL)) 1975 1975 {
Note:
See TracChangeset
for help on using the changeset viewer.