Changeset 49960 in vbox for trunk/src/VBox/Main/src-server/linux
- Timestamp:
- Dec 17, 2013 5:24:57 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/linux/USBProxyServiceLinux.cpp
r47117 r49960 226 226 227 227 AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS); 228 LogFlowThisFunc(("aDevice=%s\n", aDevice-> getName().c_str()));228 LogFlowThisFunc(("aDevice=%s\n", aDevice->i_getName().c_str())); 229 229 230 230 /* 231 231 * Don't think we need to do anything when the device is held... fake it. 232 232 */ 233 Assert(aDevice-> getUnistate() == kHostUSBDeviceState_Capturing);233 Assert(aDevice->i_getUnistate() == kHostUSBDeviceState_Capturing); 234 234 devLock.release(); 235 235 interruptWait(); … … 245 245 246 246 AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS); 247 LogFlowThisFunc(("aDevice=%s\n", aDevice-> getName().c_str()));247 LogFlowThisFunc(("aDevice=%s\n", aDevice->i_getName().c_str())); 248 248 249 249 /* 250 250 * We're not really holding it atm., just fake it. 251 251 */ 252 Assert(aDevice-> getUnistate() == kHostUSBDeviceState_ReleasingToHost);252 Assert(aDevice->i_getUnistate() == kHostUSBDeviceState_ReleasingToHost); 253 253 devLock.release(); 254 254 interruptWait();
Note:
See TracChangeset
for help on using the changeset viewer.