- Timestamp:
- Jun 9, 2015 9:36:50 AM (9 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r55751 r56282 857 857 if ( argc == 2 858 858 && !RTStrICmp(argv[1], "pagefusion")) 859 return VBoxServicePageSharing InitFork();859 return VBoxServicePageSharingWorkerChild(); 860 860 #endif 861 861 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r55751 r56282 212 212 #endif 213 213 #if defined(VBOXSERVICE_PAGE_SHARING) 214 extern RTEXITCODE VBoxServicePageSharing InitFork(void);214 extern RTEXITCODE VBoxServicePageSharingWorkerChild(void); 215 215 #endif 216 216 extern int VBoxServiceVMInfoSignal(void); -
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
r51570 r56282 334 334 * 335 335 */ 336 void VBoxServicePageSharingInspectGuest()336 static void VBoxServicePageSharingInspectGuest(void) 337 337 { 338 338 HANDLE hSnapshot; … … 514 514 515 515 #elif TARGET_NT4 516 void VBoxServicePageSharingInspectGuest()516 static void VBoxServicePageSharingInspectGuest(void) 517 517 { 518 518 /* not implemented */ 519 519 } 520 520 #else 521 void VBoxServicePageSharingInspectGuest()522 { 523 /* @todo other platforms */521 static void VBoxServicePageSharingInspectGuest(void) 522 { 523 /** @todo other platforms */ 524 524 } 525 525 #endif … … 621 621 622 622 /** 623 * This gets control when VBoxService is launched with -pagefusionforkby623 * This gets control when VBoxService is launched with "pagefusion" by 624 624 * VBoxServicePageSharingWorkerProcess(). 625 625 * … … 629 629 * via RTProcTerminate(). 630 630 */ 631 RTEXITCODE VBoxServicePageSharing InitFork(void)631 RTEXITCODE VBoxServicePageSharingWorkerChild(void) 632 632 { 633 633 VBoxServiceVerbose(3, "VBoxServicePageSharingInitFork\n");
Note:
See TracChangeset
for help on using the changeset viewer.