Changeset 30754 in vbox for trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
- Timestamp:
- Jul 9, 2010 7:52:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
r30672 r30754 619 619 if (idNewSession != g_idSession) 620 620 { 621 bool fUnregister = false; 621 bool fUnregister = false; 622 622 623 623 VBoxServiceVerbose(3, "VBoxServicePageSharingWorker: VM was restored!!\n"); 624 /* The VM was restored, so reregister all modules the next time. */ 625 RTAvlPVDestroy(&g_pKnownModuleTree, VBoxServicePageSharingEmptyTreeCallback, &fUnregister); 624 /* The VM was restored, so reregister all modules the next time. */ 625 RTAvlPVDestroy(&g_pKnownModuleTree, VBoxServicePageSharingEmptyTreeCallback, &fUnregister); 626 626 g_pKnownModuleTree = NULL; 627 627 … … 677 677 for (;;) 678 678 { 679 VBoxServiceVerbose(3, "VBoxServicePageSharingWorkerProcess: enabled=%d\n", VbglR3PageSharingIsEnabled()); 680 681 if ( VbglR3PageSharingIsEnabled() 679 BOOL fEnabled = VbglR3PageSharingIsEnabled(); 680 VBoxServiceVerbose(3, "VBoxServicePageSharingWorkerProcess: Enabled = %s\n", fEnabled ? "Yes" : "No"); 681 682 if ( fEnabled 682 683 && hProcess == NIL_RTPROCESS) 683 684 { … … 720 721 } 721 722 722 if (hProcess )723 if (hProcess != NIL_RTPROCESS) 723 724 RTProcTerminate(hProcess); 724 725
Note:
See TracChangeset
for help on using the changeset viewer.