VirtualBox

Changeset 75740 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
Nov 26, 2018 3:59:11 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126941
Message:

HGCM,VMMDev: Made the HGCM command/message completion callback return a status code so VMMDev can indicate that a guest call was cancelled and the service could implement a way of dealing with that, rather than just dropping information. Ran into this with SIGCHLD delivery interrupting GUEST_MSG_WAIT and dropping crucial HOST_SESSION_CLOSE close messages, causing the host to wait until sometime timed out and probably left stuff/processes behind.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/HGCMThread.h

    r75541 r75740  
    4444 *                  or from HGCM.
    4545 * @param pMsgCore  Pointer to just processed message.
    46  */
    47 typedef DECLCALLBACK(void) HGCMMSGCALLBACK(int32_t result, HGCMMsgCore *pMsgCore);
     46 *
     47 * @return Restricted set of VBox status codes when guest call message:
     48 * @retval VINF_SUCCESS on success
     49 * @retval VERR_CANCELLED if the request was cancelled.
     50 * @retval VERR_ALREADY_RESET if the VM is resetting.
     51 * @retval VERR_NOT_AVAILABLE if HGCM has been disconnected from the VMMDev
     52 *         (shouldn't happen).
     53 */
     54typedef DECLCALLBACK(int) HGCMMSGCALLBACK(int32_t result, HGCMMsgCore *pMsgCore);
     55/** Pointer to a message completeion callback function. */
    4856typedef HGCMMSGCALLBACK *PHGCMMSGCALLBACK;
    4957
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