Changeset 37599 in vbox
- Timestamp:
- Jun 22, 2011 9:06:38 PM (13 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 6 edited
-
USBProxyService.cpp (modified) (1 diff)
-
darwin/USBProxyServiceDarwin.cpp (modified) (1 diff)
-
freebsd/USBProxyServiceFreeBSD.cpp (modified) (1 diff)
-
linux/USBProxyServiceLinux.cpp (modified) (1 diff)
-
solaris/USBProxyServiceSolaris.cpp (modified) (1 diff)
-
win/USBProxyServiceWindows.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/USBProxyService.cpp
r36993 r37599 45 45 46 46 /** 47 * Initialize the object. 48 * 49 * Child classes should override and call this method 50 * 51 * @returns S_OK on success, or COM error status on fatal error. 47 * Stub needed as long as the class isn't virtual 52 48 */ 53 49 HRESULT USBProxyService::init(void) -
trunk/src/VBox/Main/src-server/darwin/USBProxyServiceDarwin.cpp
r31892 r37599 53 53 HRESULT USBProxyServiceDarwin::init(void) 54 54 { 55 /*56 * Call the superclass method first.57 */58 HRESULT hrc = USBProxyService::init();59 AssertComRCReturn(hrc, hrc);60 61 55 #ifdef VBOX_WITH_NEW_USB_CODE_ON_DARWIN 62 56 /* -
trunk/src/VBox/Main/src-server/freebsd/USBProxyServiceFreeBSD.cpp
r34014 r37599 73 73 HRESULT USBProxyServiceFreeBSD::init(void) 74 74 { 75 /*76 * Call the superclass method first.77 */78 HRESULT hrc = USBProxyService::init();79 AssertComRCReturn(hrc, hrc);80 81 75 /* 82 76 * Create semaphore. -
trunk/src/VBox/Main/src-server/linux/USBProxyServiceLinux.cpp
r37596 r37599 105 105 { 106 106 /* 107 * Call the superclass method first.108 */109 HRESULT hrc = USBProxyService::init();110 AssertComRCReturn(hrc, hrc);111 112 /*113 107 * We have two methods available for getting host USB device data - using 114 108 * USBFS and using sysfs. The default choice is sysfs; if that is not -
trunk/src/VBox/Main/src-server/solaris/USBProxyServiceSolaris.cpp
r33540 r37599 68 68 HRESULT USBProxyServiceSolaris::init(void) 69 69 { 70 /*71 * Call the superclass method first.72 */73 HRESULT hrc = USBProxyService::init();74 AssertComRCReturn(hrc, hrc);75 76 70 /* 77 71 * Create semaphore. -
trunk/src/VBox/Main/src-server/win/USBProxyServiceWindows.cpp
r36941 r37599 53 53 { 54 54 /* 55 * Call the superclass method first.56 */57 HRESULT hrc = USBProxyService::init();58 AssertComRCReturn(hrc, hrc);59 60 /*61 55 * Create the semaphore (considered fatal). 62 56 */
Note:
See TracChangeset
for help on using the changeset viewer.

