Changeset 107117 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Nov 22, 2024 11:17:47 AM (3 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r107113 r107117 417 417 418 418 /** 419 * @interface_method_impl{PDMAPICBACKEND,pfn isEnabled}419 * @interface_method_impl{PDMAPICBACKEND,pfnIsEnabled} 420 420 */ 421 421 static DECLCALLBACK(bool) apicIsEnabled(PCVMCPUCC pVCpu) … … 457 457 * 458 458 * @returns The value at the specified offset. 459 * @param p XApicPage The xAPIC page.459 * @param pVCpu The cross context virtual CPU structure. 460 460 * @param offReg The offset of the register being read. 461 461 */ … … 3337 3337 #ifdef IN_RING0 3338 3338 /** 3339 * @interface_method_impl{PDMAPICBACKEND ,pfnGetApicPageForCpu}3339 * @interface_method_impl{PDMAPICBACKENDR0,pfnGetApicPageForCpu} 3340 3340 */ 3341 3341 static DECLCALLBACK(int) apicR0VBoxGetApicPageForCpu(PCVMCPUCC pVCpu, PRTHCPHYS pHCPhys, PRTR0PTR pR0Ptr, PRTR3PTR pR3Ptr) -
trunk/src/VBox/VMM/VMMAll/PDMAllApic.cpp
r107113 r107117 98 98 * @retval VERR_INVALID_POINTER 99 99 * 100 * @param pVCpu The cross context virtual CPU structure. 101 * @param u8Tpr The TPR value to set. 102 * @param fForceX2ApicBehaviour Pretend the APIC is in x2APIC mode during 103 * this write. 100 * @param pVCpu The cross context virtual CPU structure. 101 * @param u8Tpr The TPR value to set. 104 102 */ 105 103 VMM_INT_DECL(int) PDMApicSetTpr(PVMCPUCC pVCpu, uint8_t u8Tpr) … … 242 240 * @param puSrcTag Where to store the interrupt source tag (debugging). 243 241 */ 244 VMM_INT_DECL(int) PDMApicGetInterrupt(PVMCPUCC pVCpu, uint8_t *pu8Vector, uint32_t *pu 32TagSrc)242 VMM_INT_DECL(int) PDMApicGetInterrupt(PVMCPUCC pVCpu, uint8_t *pu8Vector, uint32_t *puSrcTag) 245 243 { 246 244 AssertReturn(PDMCPU_TO_APICBACKEND(pVCpu)->pfnGetInterrupt, VERR_INVALID_POINTER); 247 return PDMCPU_TO_APICBACKEND(pVCpu)->pfnGetInterrupt(pVCpu, pu8Vector, pu 32TagSrc);245 return PDMCPU_TO_APICBACKEND(pVCpu)->pfnGetInterrupt(pVCpu, pu8Vector, puSrcTag); 248 246 } 249 247
Note:
See TracChangeset
for help on using the changeset viewer.