VirtualBox

Changeset 18756 in vbox for trunk/src/VBox/GuestHost


Ignore:
Timestamp:
Apr 6, 2009 1:53:45 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
45732
Message:

HostServices/SharedClipboard: a couple of fixes and some assertions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp

    r18708 r18756  
    762762        return;
    763763
     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);
    764768    RTSemEventDestroy(pCtx->waitForData);
    765769}
     
    823827 * Shut down the shared clipboard X11 backend.
    824828 * @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.
    825833 */
    826834int VBoxX11ClipboardStopX11(VBOXCLIPBOARDCONTEXTX11 *pCtx)
     
    835843        return VINF_SUCCESS;
    836844
     845    /* This might mean that we are getting stopped twice. */
     846    AssertReturn(pCtx->widget != NULL, VERR_WRONG_ORDER);
    837847    pCtx->eOwner = NONE;
    838848    pCtx->X11TextFormat = INVALID;
     
    840850    LogRelFunc(("stopping the shared clipboard X11 backend\n"));
    841851
    842     /* Set the termination flag.  This has been observed to block if it was set
    843      * during a request for clipboard data coming from X11, so only we do it
    844      * 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. */
    845855    XtAppSetExitFlag(pCtx->appContext);
    846856    /* Wake up the event loop */
     
    861871        LogRelFunc(("rc=%Rrc\n", rc));
    862872    XtCloseDisplay(XtDisplay(pCtx->widget));
     873    pCtx->widget = NULL;  /* For sanity assertions. */
    863874    LogFlowFunc(("returning %Rrc.\n", rc));
    864875    return rc;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette