Changeset 70085 in vbox
- Timestamp:
- Dec 12, 2017 5:35:22 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119633
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-darwin.cpp
r70066 r70085 926 926 if (setupVmmDevInterrupts(pProvider)) 927 927 { 928 /* register the service. */ 928 /* 929 * Read host configuration. 930 */ 931 VGDrvCommonProcessOptionsFromHost(&g_DevExt); 932 933 /* 934 * Register the service. 935 */ 929 936 registerService(); 930 937 LogRel(("VBoxGuest: IOService started\n")); -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-freebsd.c
r70066 r70085 708 708 { 709 709 /* 710 * Read host configuration. 711 */ 712 VGDrvCommonProcessOptionsFromHost(&g_DevExt); 713 714 /* 710 715 * Configure device cloning. 711 716 */ -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r70066 r70085 645 645 #endif 646 646 /* 647 * Read host configuration. 648 */ 649 VGDrvCommonProcessOptionsFromHost(&g_DevExt); 650 651 /* 647 652 * Finally, create the device nodes. 648 653 */ -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-os2.cpp
r70066 r70085 188 188 { 189 189 /* 190 * Read host configuration. 191 */ 192 VGDrvCommonProcessOptionsFromHost(&g_DevExt); 193 194 /* 190 195 * Success 191 196 */ -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp
r70067 r70085 1276 1276 * Read configuration from the host. 1277 1277 */ 1278 LogRelFunc(("Calling VGDrvCommonProcessOptionsFromHost...\n"));1279 1278 VGDrvCommonProcessOptionsFromHost(&pDevExt->Core); 1280 LogRelFunc(("VGDrvCommonProcessOptionsFromHost returned\n"));1281 1279 } 1282 1280 -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r70067 r70085 55 55 #include <VBox/VMMDev.h> /* for VMMDEV_RAM_SIZE */ 56 56 #include <VBox/log.h> 57 #if !defined(RT_OS_LINUX) && !defined(RT_OS_FREEBSD) 58 # include <VBox/HostServices/GuestPropertySvc.h> 59 #endif 57 #include <VBox/HostServices/GuestPropertySvc.h> 60 58 #include <iprt/ctype.h> 61 59 #include <iprt/mem.h> … … 1202 1200 void VGDrvCommonProcessOptionsFromHost(PVBOXGUESTDEVEXT pDevExt) 1203 1201 { 1204 #if !defined(RT_OS_LINUX) && !defined(RT_OS_FREEBSD)1205 1202 /* 1206 1203 * Create a kernel session without our selves, then connect to the HGCM service. … … 1366 1363 else 1367 1364 LogRel(("VGDrvCommonReadConfigurationFromHost: failed to connect: %Rrc\n", rc)); 1368 1369 #else /* RT_OS_LINUX || RT_OS_FREEBSD */1370 RT_NOREF(pDevExt);1371 #endif1372 1365 } 1373 1366 -
trunk/src/VBox/Additions/common/VBoxGuest/freebsd/files_vboxguest
r69838 r70085 86 86 ${PATH_ROOT}/include/VBox/VBoxGuestMangling.h=>include/VBox/VBoxGuestMangling.h \ 87 87 ${PATH_ROOT}/include/VBox/version.h=>include/VBox/version.h \ 88 ${PATH_ROOT}/include/VBox/HostServices/GuestPropertySvc.h=>include/VBox/HostServices/GuestPropertySvc.h \ 88 89 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp=>VBoxGuest.c \ 89 90 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/VBoxGuest-freebsd.c=>VBoxGuest-freebsd.c \ -
trunk/src/VBox/Additions/common/VBoxGuest/linux/files_vboxguest
r69838 r70085 82 82 ${PATH_ROOT}/include/VBox/VBoxGuestMangling.h=>include/VBox/VBoxGuestMangling.h \ 83 83 ${PATH_ROOT}/include/VBox/version.h=>include/VBox/version.h \ 84 ${PATH_ROOT}/include/VBox/hgcmsvc.h=>include/VBox/hgcmsvc.h \ 85 ${PATH_ROOT}/include/VBox/HostServices/GuestPropertySvc.h=>include/VBox/HostServices/GuestPropertySvc.h \ 84 86 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp=>VBoxGuest.c \ 85 87 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c=>VBoxGuest-linux.c \
Note:
See TracChangeset
for help on using the changeset viewer.