- Timestamp:
- Jun 12, 2013 9:05:32 AM (12 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk
r46147 r46506 52 52 endif 53 53 if1of ($(KBUILD_TARGET), win) 54 VBoxService_DEFS += VBOX _WITH_PAGE_SHARING54 VBoxService_DEFS += VBOXSERVICE_PAGE_SHARING 55 55 ifdef VBOX_WITH_MMR 56 56 VBoxService_DEFS += VBOX_WITH_MMR -
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r46326 r46506 131 131 { &g_VMStatistics, NIL_RTTHREAD, false, false, false, false, true }, 132 132 #endif 133 #if defined(VBOX _WITH_PAGE_SHARING) && defined(RT_OS_WINDOWS)133 #if defined(VBOXSERVICE_PAGE_SHARING) 134 134 { &g_PageSharing, NIL_RTTHREAD, false, false, false, false, true }, 135 135 #endif -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlProcess.cpp
r45697 r46506 1601 1601 * Prepare environment variables list. 1602 1602 */ 1603 char **papszEnv ;1603 char **papszEnv = NULL; 1604 1604 uint32_t uNumEnvVars = 0; /* Initialize in case of failing ... */ 1605 1605 if (RT_SUCCESS(rc)) … … 1640 1640 */ 1641 1641 RTENV hEnv; 1642 rc = RTEnvClone(&hEnv, RTENV_DEFAULT); 1642 if (RT_SUCCESS(rc)) 1643 rc = RTEnvClone(&hEnv, RTENV_DEFAULT); 1643 1644 if (RT_SUCCESS(rc)) 1644 1645 { -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r44863 r46506 164 164 extern VBOXSERVICE g_VMStatistics; 165 165 #endif 166 #ifdef VBOX _WITH_PAGE_SHARING166 #ifdef VBOXSERVICE_PAGE_SHARING 167 167 extern VBOXSERVICE g_PageSharing; 168 168 #endif … … 204 204 extern uint32_t VBoxServiceBalloonQueryPages(uint32_t cbPage); 205 205 #endif 206 #if defined(VBOX _WITH_PAGE_SHARING) && defined(RT_OS_WINDOWS)206 #if defined(VBOXSERVICE_PAGE_SHARING) 207 207 extern RTEXITCODE VBoxServicePageSharingInitFork(void); 208 208 #endif
Note:
See TracChangeset
for help on using the changeset viewer.