- Timestamp:
- Nov 8, 2012 12:31:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/dev/VBoxUsbDev.h
r36998 r43839 192 192 static DECLHIDDEN(VOID) vboxUsbDdiStateWaitOtherCompleted(PVBOXUSBDEV_EXT pDevExt) 193 193 { 194 VBoxDrvToolRefWaitEqual(&pDevExt->DdiState.Ref, 2); 194 /* Earlier we assumed that 1 request will be pending while we service 195 Device Power IRP which was leading to host hang when USB is connected 196 to VM. 197 With debugging found that at the point when host goes to sleep 198 state and USB is connected to VM, two Power IRP requests are pending : 199 One for SYSTEM and other for DEVICE. 200 */ 201 VBoxDrvToolRefWaitEqual(&pDevExt->DdiState.Ref, 3); 195 202 } 196 203
Note:
See TracChangeset
for help on using the changeset viewer.