Changeset 18756 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Apr 6, 2009 1:53:45 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45732
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp
r18708 r18756 762 762 return; 763 763 764 /* We set this to NULL when the event thread exits. It really should 765 * have exited at this point, when we are about to unload the code from 766 * memory. */ 767 Assert(pCtx->widget == NULL); 764 768 RTSemEventDestroy(pCtx->waitForData); 765 769 } … … 823 827 * Shut down the shared clipboard X11 backend. 824 828 * @note X11 backend code 829 * @note Any requests from this object to get clipboard data from VBox 830 * *must* have completed or aborted before we are called, as 831 * otherwise the X11 event loop will still be waiting for the request 832 * to return and will not be able to terminate. 825 833 */ 826 834 int VBoxX11ClipboardStopX11(VBOXCLIPBOARDCONTEXTX11 *pCtx) … … 835 843 return VINF_SUCCESS; 836 844 845 /* This might mean that we are getting stopped twice. */ 846 AssertReturn(pCtx->widget != NULL, VERR_WRONG_ORDER); 837 847 pCtx->eOwner = NONE; 838 848 pCtx->X11TextFormat = INVALID; … … 840 850 LogRelFunc(("stopping the shared clipboard X11 backend\n")); 841 851 842 /* Set the termination flag . This has been observed to block if it was set843 * during a request for clipboard data coming from X11, so only we do it844 * after releasing any such requests. */852 /* Set the termination flag to tell the Xt event loop to exit. We 853 * reiterate that any outstanding requests from the X11 event loop to 854 * the VBox part *must* have returned before we do this. */ 845 855 XtAppSetExitFlag(pCtx->appContext); 846 856 /* Wake up the event loop */ … … 861 871 LogRelFunc(("rc=%Rrc\n", rc)); 862 872 XtCloseDisplay(XtDisplay(pCtx->widget)); 873 pCtx->widget = NULL; /* For sanity assertions. */ 863 874 LogFlowFunc(("returning %Rrc.\n", rc)); 864 875 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.