VirtualBox

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


Ignore:
Timestamp:
Nov 26, 2018 6:54:55 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126948
Message:

HGCM: Continue with getting VERR_CANCELLED to the service when the guest has cancelled (or canceled if you prefer) the command.

File:
1 edited

Legend:

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

    r75740 r75747  
    123123/** Initialize threads.
    124124 *
    125  * @return VBox error code
     125 * @return VBox status code.
    126126 */
    127127int hgcmThreadInit(void);
     
    141141 *                          NULL if no stats.
    142142 *
    143  * @return VBox error code
     143 * @return VBox status code.
    144144 */
    145145int hgcmThreadCreate(HGCMThread **ppThread, const char *pszThreadName, PFNHGCMTHREAD pfnThread, void *pvUser,
     
    151151 *                      consumed.
    152152 *
    153  * @return VBox error code
     153 * @return VBox status code.
    154154 */
    155155int hgcmThreadWait(HGCMThread *pThread);
     
    162162 * @param pfnNewMessage New message allocation callback.
    163163 *
    164  * @return VBox error code
     164 * @return VBox status code.
    165165 */
    166166int hgcmMsgAlloc(HGCMThread *pThread, HGCMMsgCore **ppHandle, uint32_t u32MsgId, PFNHGCMNEWMSGALLOC pfnNewMessage);
     
    171171 * @param pfnCallback   Message completion callback.
    172172 *
    173  * @return VBox error code
     173 * @return VBox status code.
    174174 * @retval VINF_HGCM_ASYNC_EXECUTE on success.
    175175 *
     
    184184 * @param pMsg          The message.  Reference will be consumed!
    185185 *
    186  * @return VBox error code
     186 * @return VBox status code.
    187187 *
    188188 * @thread any
     
    196196 * @param ppMsg         Where to store returned message pointer.
    197197 *
    198  * @return VBox error code
     198 * @return VBox status code.
    199199 *
    200200 * @thread worker thread
     
    206206 *
    207207 * @param pMsg          Processed message pointer.
    208  * @param result        Result code, VBox erro code.
    209  *
    210  * @return VBox error code
     208 * @param result        Result code, VBox status code.
     209 *
     210 * @return Restricted set of VBox status codes when guest call message:
     211 * @retval VINF_SUCCESS on success
     212 * @retval VERR_CANCELLED if the request was cancelled.
     213 * @retval VERR_ALREADY_RESET if the VM is resetting.
     214 * @retval VERR_NOT_AVAILABLE if HGCM has been disconnected from the VMMDev
     215 *         (shouldn't happen).
    211216 *
    212217 * @thread worker thread
    213218 */
    214 void hgcmMsgComplete(HGCMMsgCore *pMsg, int32_t result);
     219int hgcmMsgComplete(HGCMMsgCore *pMsg, int32_t result);
    215220
    216221
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