Changeset 53797 in vbox for trunk/include/VBox/vmm/pdmdev.h
- Timestamp:
- Jan 14, 2015 11:35:59 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r52670 r53797 3519 3519 3520 3520 /** 3521 * The the VM CPU ID of the current thread (restricted API). 3522 * 3523 * @returns The VMCPUID of the calling thread, NIL_CPUID if not EMT. 3524 * @param pDevIns The device instance. 3525 */ 3526 DECLR3CALLBACKMEMBER(VMCPUID, pfnGetCurrentCpuId,(PPDMDEVINS pDevIns)); 3527 3528 /** 3521 3529 * Registers the VMM device heap 3522 3530 * … … 3657 3665 3658 3666 /** Current PDMDEVHLPR3 version number. */ 3659 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE(0xffe7, 1 2, 1)3667 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE(0xffe7, 14, 1) 3660 3668 3661 3669 … … 3828 3836 */ 3829 3837 DECLRCCALLBACKMEMBER(PVMCPU, pfnGetVMCPU,(PPDMDEVINS pDevIns)); 3838 3839 /** 3840 * The the VM CPU ID of the current thread (restricted API). 3841 * 3842 * @returns The VMCPUID of the calling thread, NIL_CPUID if not EMT. 3843 * @param pDevIns The device instance. 3844 */ 3845 DECLRCCALLBACKMEMBER(VMCPUID, pfnGetCurrentCpuId,(PPDMDEVINS pDevIns)); 3830 3846 3831 3847 /** … … 3874 3890 3875 3891 /** Current PDMDEVHLP version number. */ 3876 #define PDM_DEVHLPRC_VERSION PDM_VERSION_MAKE(0xffe6, 3, 1)3892 #define PDM_DEVHLPRC_VERSION PDM_VERSION_MAKE(0xffe6, 4, 1) 3877 3893 3878 3894 … … 4053 4069 */ 4054 4070 DECLR0CALLBACKMEMBER(PVMCPU, pfnGetVMCPU,(PPDMDEVINS pDevIns)); 4071 4072 /** 4073 * The the VM CPU ID of the current thread (restricted API). 4074 * 4075 * @returns The VMCPUID of the calling thread, NIL_CPUID if not EMT. 4076 * @param pDevIns The device instance. 4077 */ 4078 DECLR0CALLBACKMEMBER(VMCPUID, pfnGetCurrentCpuId,(PPDMDEVINS pDevIns)); 4055 4079 4056 4080 /** … … 4099 4123 4100 4124 /** Current PDMDEVHLP version number. */ 4101 #define PDM_DEVHLPR0_VERSION PDM_VERSION_MAKE(0xffe5, 3, 1)4125 #define PDM_DEVHLPR0_VERSION PDM_VERSION_MAKE(0xffe5, 4, 1) 4102 4126 4103 4127 … … 5156 5180 5157 5181 /** 5182 * @copydoc PDMDEVHLPR3::pfnGetCurrentCpuId 5183 */ 5184 DECLINLINE(VMCPUID) PDMDevHlpGetCurrentCpuId(PPDMDEVINS pDevIns) 5185 { 5186 return pDevIns->CTX_SUFF(pHlp)->pfnGetCurrentCpuId(pDevIns); 5187 } 5188 5189 /** 5158 5190 * @copydoc PDMDEVHLPR3::pfnTMTimeVirtGet 5159 5191 */
Note:
See TracChangeset
for help on using the changeset viewer.