- Timestamp:
- Oct 29, 2021 5:27:53 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmusb.h
r91898 r92155 435 435 436 436 /** Current USBREG version number. */ 437 #define PDM_USBREG_VERSION PDM_VERSION_MAKE(0xeeff, 1, 0)437 #define PDM_USBREG_VERSION PDM_VERSION_MAKE(0xeeff, 2, 0) 438 438 439 439 /** PDM USB Device Flags. … … 864 864 PFNPDMTHREADWAKEUPUSB pfnWakeup, size_t cbStack, RTTHREADTYPE enmType, const char *pszName)); 865 865 866 /** @name Exported PDM Thread Functions 867 * @{ */ 868 DECLR3CALLBACKMEMBER(int, pfnThreadDestroy,(PPDMTHREAD pThread, int *pRcThread)); 869 DECLR3CALLBACKMEMBER(int, pfnThreadIAmSuspending,(PPDMTHREAD pThread)); 870 DECLR3CALLBACKMEMBER(int, pfnThreadIAmRunning,(PPDMTHREAD pThread)); 871 DECLR3CALLBACKMEMBER(int, pfnThreadSleep,(PPDMTHREAD pThread, RTMSINTERVAL cMillies)); 872 DECLR3CALLBACKMEMBER(int, pfnThreadSuspend,(PPDMTHREAD pThread)); 873 DECLR3CALLBACKMEMBER(int, pfnThreadResume,(PPDMTHREAD pThread)); 874 /** @} */ 875 866 876 /** 867 877 * Set up asynchronous handling of a suspend, reset or power off notification. -
trunk/src/VBox/VMM/VMMR3/PDMUsb.cpp
r91900 r92155 2366 2366 pdmR3UsbHlp_VMState, 2367 2367 pdmR3UsbHlp_ThreadCreate, 2368 PDMR3ThreadDestroy, 2369 PDMR3ThreadIAmSuspending, 2370 PDMR3ThreadIAmRunning, 2371 PDMR3ThreadSleep, 2372 PDMR3ThreadSuspend, 2373 PDMR3ThreadResume, 2368 2374 pdmR3UsbHlp_SetAsyncNotification, 2369 2375 pdmR3UsbHlp_AsyncNotificationCompleted,
Note:
See TracChangeset
for help on using the changeset viewer.