Changeset 60068 in vbox for trunk/src/VBox/Main/src-server/linux
- Timestamp:
- Mar 16, 2016 7:43:56 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/linux/USBProxyBackendLinux.cpp
r60067 r60068 60 60 * Initialize data members. 61 61 */ 62 USBProxyBackendLinux::USBProxyBackendLinux(USBProxyService *aUsbProxyService , const com::Utf8Str &strId)63 : USBProxyBackend(aUsbProxyService , strId), mhFile(NIL_RTFILE), mhWakeupPipeR(NIL_RTPIPE),62 USBProxyBackendLinux::USBProxyBackendLinux(USBProxyService *aUsbProxyService) 63 : USBProxyBackend(aUsbProxyService), mhFile(NIL_RTFILE), mhWakeupPipeR(NIL_RTPIPE), 64 64 mhWakeupPipeW(NIL_RTPIPE), mUsingUsbfsDevices(true /* see init */), 65 65 mUdevPolls(0), mpWaiter(NULL) … … 73 73 * @returns VBox status code. 74 74 */ 75 int USBProxyBackendLinux::init(const com::Utf8Str &strAddress) 76 { 77 NOREF(strAddress); 78 75 int USBProxyBackendLinux::init(void) 76 { 79 77 const char *pcszDevicesRoot; 80 78 int rc = USBProxyLinuxChooseMethod(&mUsingUsbfsDevices, &pcszDevicesRoot);
Note:
See TracChangeset
for help on using the changeset viewer.