Changeset 55095 in vbox for trunk/src/VBox/Main/src-server/freebsd
- Timestamp:
- Apr 2, 2015 4:52:46 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99390
- Location:
- trunk/src/VBox/Main/src-server/freebsd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/freebsd/HostHardwareFreeBSD.cpp
r51092 r55095 39 39 # include <sys/stat.h> 40 40 # include <unistd.h> 41 # include <stdio.h> 41 42 # include <sys/ioctl.h> 42 43 # include <fcntl.h> -
trunk/src/VBox/Main/src-server/freebsd/USBProxyServiceFreeBSD.cpp
r51092 r55095 115 115 116 116 AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS); 117 LogFlowThisFunc(("aDevice=%s\n", aDevice-> getName().c_str()));117 LogFlowThisFunc(("aDevice=%s\n", aDevice->i_getName().c_str())); 118 118 119 119 /* 120 120 * Don't think we need to do anything when the device is held... fake it. 121 121 */ 122 Assert(aDevice-> getUnistate() == kHostUSBDeviceState_Capturing);122 Assert(aDevice->i_getUnistate() == kHostUSBDeviceState_Capturing); 123 123 devLock.release(); 124 124 interruptWait(); … … 134 134 135 135 AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS); 136 LogFlowThisFunc(("aDevice=%s\n", aDevice-> getName().c_str()));136 LogFlowThisFunc(("aDevice=%s\n", aDevice->i_getName().c_str())); 137 137 138 138 /* 139 139 * We're not really holding it atm., just fake it. 140 140 */ 141 Assert(aDevice-> getUnistate() == kHostUSBDeviceState_ReleasingToHost);141 Assert(aDevice->i_getUnistate() == kHostUSBDeviceState_ReleasingToHost); 142 142 devLock.release(); 143 143 interruptWait();
Note:
See TracChangeset
for help on using the changeset viewer.