Changeset 75747 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 26, 2018 6:54:55 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126948
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HGCMThread.h
r75740 r75747 123 123 /** Initialize threads. 124 124 * 125 * @return VBox error code125 * @return VBox status code. 126 126 */ 127 127 int hgcmThreadInit(void); … … 141 141 * NULL if no stats. 142 142 * 143 * @return VBox error code143 * @return VBox status code. 144 144 */ 145 145 int hgcmThreadCreate(HGCMThread **ppThread, const char *pszThreadName, PFNHGCMTHREAD pfnThread, void *pvUser, … … 151 151 * consumed. 152 152 * 153 * @return VBox error code153 * @return VBox status code. 154 154 */ 155 155 int hgcmThreadWait(HGCMThread *pThread); … … 162 162 * @param pfnNewMessage New message allocation callback. 163 163 * 164 * @return VBox error code164 * @return VBox status code. 165 165 */ 166 166 int hgcmMsgAlloc(HGCMThread *pThread, HGCMMsgCore **ppHandle, uint32_t u32MsgId, PFNHGCMNEWMSGALLOC pfnNewMessage); … … 171 171 * @param pfnCallback Message completion callback. 172 172 * 173 * @return VBox error code173 * @return VBox status code. 174 174 * @retval VINF_HGCM_ASYNC_EXECUTE on success. 175 175 * … … 184 184 * @param pMsg The message. Reference will be consumed! 185 185 * 186 * @return VBox error code186 * @return VBox status code. 187 187 * 188 188 * @thread any … … 196 196 * @param ppMsg Where to store returned message pointer. 197 197 * 198 * @return VBox error code198 * @return VBox status code. 199 199 * 200 200 * @thread worker thread … … 206 206 * 207 207 * @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). 211 216 * 212 217 * @thread worker thread 213 218 */ 214 voidhgcmMsgComplete(HGCMMsgCore *pMsg, int32_t result);219 int hgcmMsgComplete(HGCMMsgCore *pMsg, int32_t result); 215 220 216 221
Note:
See TracChangeset
for help on using the changeset viewer.