Changeset 75498 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 16, 2018 12:03:41 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126655
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HGCMThread.h
r69500 r75498 129 129 * @param pfnThread The worker thread function. 130 130 * @param pvUser A pointer passed to worker thread. 131 * 132 * @return VBox error code 133 */ 134 int hgcmThreadCreate (HGCMTHREADHANDLE *pHandle, const char *pszThreadName, PFNHGCMTHREAD pfnThread, void *pvUser); 131 * @param pszStatSubDir The "sub-directory" under "/HGCM/" where thread 132 * statistics should be registered. The caller, 133 * HGCMService, will deregister them. NULL if no stats. 134 * @param pUVM The user mode VM handle to register statistics with. 135 * NULL if no stats. 136 * 137 * @return VBox error code 138 */ 139 int hgcmThreadCreate (HGCMTHREADHANDLE *pHandle, const char *pszThreadName, PFNHGCMTHREAD pfnThread, void *pvUser, 140 const char *pszStatsSubDir, PUVM pUVM); 135 141 136 142 /** Wait for termination of a HGCM worker thread.
Note:
See TracChangeset
for help on using the changeset viewer.