Changeset 3030 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 4, 2007 2:15:52 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21783
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/USBProxyService.cpp
r3001 r3030 246 246 */ 247 247 if (updateDeviceState (DevPtr, pDevices)) 248 { 249 Log (("USBProxyService::processChanges: state change %p:{.idVendor=%#06x, .idProduct=%#06x, .pszProduct=\"%s\", .pszManufacturer=\"%s\"} state=%d%s\n", 250 (HostUSBDevice *)DevPtr, pDevices->idVendor, pDevices->idProduct, pDevices->pszProduct, pDevices->pszManufacturer, DevPtr->state(), DevPtr->isStatePending() ? " (pending async op)" : "")); 248 251 mHost->onUSBDeviceStateChanged (DevPtr); 252 } 249 253 It++; 250 254 PUSBDEVICE pFree = pDevices; … … 272 276 * checks happy */ 273 277 AutoLock newDevLock (NewObj); 274 278 275 279 mDevices.insert (It, NewObj); 276 280 mHost->onUSBDeviceAttached (NewObj); … … 293 297 * to the next device */ 294 298 It++; 299 Log (("USBProxyService::processChanges: detached but pending %d %p\n", 300 DevPtr->pendingState(), (HostUSBDevice *)DevPtr)); 295 301 } 296 302 } … … 314 320 { 315 321 ComObjPtr <HostUSBDevice> DevPtr = *It; 316 322 317 323 AutoLock devLock (DevPtr); 318 324
Note:
See TracChangeset
for help on using the changeset viewer.