Changeset 70693 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- Jan 22, 2018 9:02:01 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120429
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/VUSBDevice.cpp
r69500 r70693 309 309 if (pDev->pUsbIns->pReg->pfnUsbSetConfiguration) 310 310 { 311 RTCritSectEnter(&pDev->pHub->pRootHub->CritSectDevices); 311 312 int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbSetConfiguration, 5, 312 313 pDev->pUsbIns, pNewCfgDesc->Core.bConfigurationValue, … … 317 318 return false; 318 319 } 320 RTCritSectLeave(&pDev->pHub->pRootHub->CritSectDevices); 319 321 } 320 322 Log(("vusb: %p[%s]: SET_CONFIGURATION: Selected config %u\n", pDev, pDev->pUsbIns->pszName, iCfg)); … … 457 459 if (pDev->pUsbIns->pReg->pfnUsbSetInterface) 458 460 { 461 RTCritSectEnter(&pDev->pHub->pRootHub->CritSectDevices); 459 462 int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbSetInterface, 3, pDev->pUsbIns, iIf, iAlt); 460 463 if (RT_FAILURE(rc)) … … 463 466 return false; 464 467 } 468 RTCritSectLeave(&pDev->pHub->pRootHub->CritSectDevices); 465 469 } 466 470 … … 529 533 && pDev->pUsbIns->pReg->pfnUsbClearHaltedEndpoint) 530 534 { 535 RTCritSectEnter(&pDev->pHub->pRootHub->CritSectDevices); 531 536 int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbClearHaltedEndpoint, 532 537 2, pDev->pUsbIns, pSetup->wIndex); 538 RTCritSectLeave(&pDev->pHub->pRootHub->CritSectDevices); 533 539 return RT_SUCCESS(rc); 534 540 }
Note:
See TracChangeset
for help on using the changeset viewer.