Changeset 38411 in vbox
- Timestamp:
- Aug 11, 2011 9:40:35 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73448
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
r35036 r38411 5 5 6 6 /* 7 * Copyright (C) 2006-201 0Oracle Corporation7 * Copyright (C) 2006-2011 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 568 568 569 569 rc = VbglR3GetSessionId(&g_idSession); 570 AssertRCReturn(rc, rc); 570 if (RT_FAILURE(rc)) 571 { 572 if (rc == VERR_IO_GEN_FAILURE) 573 VBoxServiceVerbose(0, "PageSharing: Page sharing support is not available by the host\n"); 574 else 575 VBoxServiceError("VBoxServicePageSharingInit: Failed with rc=%Rrc\n", rc); 576 577 rc = VERR_SERVICE_DISABLED; 578 579 RTSemEventMultiDestroy(g_PageSharingEvent); 580 g_PageSharingEvent = NIL_RTSEMEVENTMULTI; 581 582 } 571 583 #endif 572 584 573 /* Never fail here. */ 574 return VINF_SUCCESS; 585 return rc; 575 586 } 576 587
Note:
See TracChangeset
for help on using the changeset viewer.