Changeset 65088 in vbox for trunk/src/VBox/Main/src-server/os2
- Timestamp:
- Jan 3, 2017 8:52:49 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/os2/USBProxyBackendOs2.cpp
r62485 r65088 77 77 } 78 78 79 LogRel(("USBProxy ServiceOs2: failed to register change notification, rc=%d\n", rc));79 LogRel(("USBProxyBackendOs2: failed to register change notification, rc=%d\n", rc)); 80 80 } 81 81 else 82 LogRel(("USBProxy ServiceOs2: failed to load usbcalls\n"));82 LogRel(("USBProxyBackendOs2: failed to load usbcalls\n")); 83 83 84 84 DosFreeModule(mhmod); 85 85 } 86 86 else 87 LogRel(("USBProxy ServiceOs2: failed to load usbcalls, rc=%d\n", rc));87 LogRel(("USBProxyBackendOs2: failed to load usbcalls, rc=%d\n", rc)); 88 88 mhmod = NULLHANDLE; 89 89 } … … 99 99 * Stop all service threads and free the device chain. 100 100 */ 101 USBProxy ServiceOs2::~USBProxyServiceOs2()101 USBProxyBackendOs2::~USBProxyBackendOs2() 102 102 { 103 103 LogFlowThisFunc(("\n")); … … 128 128 129 129 130 int USBProxy ServiceOs2::captureDevice(HostUSBDevice *aDevice)130 int USBProxyBackendOs2::captureDevice(HostUSBDevice *aDevice) 131 131 { 132 132 AssertReturn(aDevice, VERR_GENERAL_FAILURE); … … 147 147 148 148 149 int USBProxy ServiceOs2::releaseDevice(HostUSBDevice *aDevice)149 int USBProxyBackendOs2::releaseDevice(HostUSBDevice *aDevice) 150 150 { 151 151 AssertReturn(aDevice, VERR_GENERAL_FAILURE); … … 166 166 167 167 168 bool USBProxy ServiceOs2::updateDeviceState(HostUSBDevice *aDevice, PUSBDEVICE aUSBDevice, bool *aRunFilters,168 bool USBProxyBackendOs2::updateDeviceState(HostUSBDevice *aDevice, PUSBDEVICE aUSBDevice, bool *aRunFilters, 169 169 SessionMachine **aIgnoreMachine) 170 170 { … … 176 176 177 177 178 int USBProxy ServiceOs2::wait(RTMSINTERVAL aMillies)178 int USBProxyBackendOs2::wait(RTMSINTERVAL aMillies) 179 179 { 180 180 int rc = DosWaitEventSem(mhev, aMillies); … … 183 183 184 184 185 int USBProxy ServiceOs2::interruptWait(void)185 int USBProxyBackendOs2::interruptWait(void) 186 186 { 187 187 int rc = DosPostEventSem(mhev); … … 193 193 #include <stdio.h> 194 194 195 PUSBDEVICE USBProxy ServiceOs2::getDevices(void)195 PUSBDEVICE USBProxyBackendOs2::getDevices(void) 196 196 { 197 197 /*
Note:
See TracChangeset
for help on using the changeset viewer.