Changeset 92527 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Nov 21, 2021 2:38:43 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r92162 r92527 2425 2425 2426 2426 /** Current PDMDEVHLPR3 version number. */ 2427 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE_PP(0xffe7, 6 2, 0)2427 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE_PP(0xffe7, 63, 0) 2428 2428 2429 2429 /** … … 4790 4790 4791 4791 /** 4792 * Gets the main execution engine for the VM. 4793 * 4794 * @returns VM_EXEC_ENGINE_XXX 4795 * @param pDevIns The device instance. 4796 */ 4797 DECLR3CALLBACKMEMBER(uint8_t, pfnGetMainExecutionEngine,(PPDMDEVINS pDevIns)); 4798 4799 /** 4792 4800 * Get the current virtual clock time in a VM. The clock frequency must be 4793 4801 * queried separately. … … 5280 5288 5281 5289 /** 5290 * Gets the main execution engine for the VM. 5291 * 5292 * @returns VM_EXEC_ENGINE_XXX 5293 * @param pDevIns The device instance. 5294 */ 5295 DECLRCCALLBACKMEMBER(uint8_t, pfnGetMainExecutionEngine,(PPDMDEVINS pDevIns)); 5296 5297 /** 5282 5298 * Get the current virtual clock time in a VM. The clock frequency must be 5283 5299 * queried separately. … … 5476 5492 5477 5493 /** Current PDMDEVHLP version number. */ 5478 #define PDM_DEVHLPRC_VERSION PDM_VERSION_MAKE(0xffe6, 1 8, 0)5494 #define PDM_DEVHLPRC_VERSION PDM_VERSION_MAKE(0xffe6, 19, 0) 5479 5495 5480 5496 … … 5688 5704 */ 5689 5705 DECLR0CALLBACKMEMBER(VMCPUID, pfnGetCurrentCpuId,(PPDMDEVINS pDevIns)); 5706 5707 /** 5708 * Gets the main execution engine for the VM. 5709 * 5710 * @returns VM_EXEC_ENGINE_XXX 5711 * @param pDevIns The device instance. 5712 */ 5713 DECLR0CALLBACKMEMBER(uint8_t, pfnGetMainExecutionEngine,(PPDMDEVINS pDevIns)); 5690 5714 5691 5715 /** @name Timer handle method wrappers … … 6037 6061 6038 6062 /** Current PDMDEVHLP version number. */ 6039 #define PDM_DEVHLPR0_VERSION PDM_VERSION_MAKE(0xffe5, 2 5, 0)6063 #define PDM_DEVHLPR0_VERSION PDM_VERSION_MAKE(0xffe5, 26, 0) 6040 6064 6041 6065 … … 9399 9423 9400 9424 #ifdef IN_RING3 9401 9402 9425 /** 9403 9426 * @copydoc PDMDEVHLPR3::pfnGetCpuId … … 9407 9430 pDevIns->pHlpR3->pfnGetCpuId(pDevIns, iLeaf, pEax, pEbx, pEcx, pEdx); 9408 9431 } 9432 #endif 9433 9434 /** 9435 * @copydoc PDMDEVHLPR3::pfnGetMainExecutionEngine 9436 */ 9437 DECLINLINE(uint8_t) PDMDevHlpGetMainExecutionEngine(PPDMDEVINS pDevIns) 9438 { 9439 return pDevIns->CTX_SUFF(pHlp)->pfnGetMainExecutionEngine(pDevIns); 9440 } 9441 9442 #ifdef IN_RING3 9409 9443 9410 9444 /**
Note:
See TracChangeset
for help on using the changeset viewer.