- Timestamp:
- Apr 18, 2019 2:40:06 PM (6 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r76553 r78206 28 28 #include <VBox/vmm/vmm.h> 29 29 #include <VBox/vmm/vmcpuset.h> 30 31 32 /********************************************************************************************************************************* 33 * Internal Functions * 34 *********************************************************************************************************************************/ 35 static void apicSetInterruptFF(PVMCPU pVCpu, PDMAPICIRQ enmType); 36 static void apicStopTimer(PVMCPU pVCpu); 30 37 31 38 … … 2970 2977 * @param enmType The IRQ type. 2971 2978 */ 2972 VMM_INT_DECL(void)apicSetInterruptFF(PVMCPU pVCpu, PDMAPICIRQ enmType)2979 static void apicSetInterruptFF(PVMCPU pVCpu, PDMAPICIRQ enmType) 2973 2980 { 2974 2981 switch (enmType) … … 3180 3187 * @thread Any. 3181 3188 */ 3182 VMM_INT_DECL(void)apicStopTimer(PVMCPU pVCpu)3189 static void apicStopTimer(PVMCPU pVCpu) 3183 3190 { 3184 3191 Assert(pVCpu); -
trunk/src/VBox/VMM/include/APICInternal.h
r76585 r78206 1458 1458 VMM_INT_DECL(bool) apicPostInterrupt(PVMCPU pVCpu, uint8_t uVector, XAPICTRIGGERMODE enmTriggerMode, uint32_t uSrcTag); 1459 1459 VMM_INT_DECL(void) apicStartTimer(PVMCPU pVCpu, uint32_t uInitialCount); 1460 VMM_INT_DECL(void) apicStopTimer(PVMCPU pVCpu);1461 VMM_INT_DECL(void) apicSetInterruptFF(PVMCPU pVCpu, PDMAPICIRQ enmType);1462 1460 VMM_INT_DECL(void) apicClearInterruptFF(PVMCPU pVCpu, PDMAPICIRQ enmType); 1463 1461 void apicInitIpi(PVMCPU pVCpu);
Note:
See TracChangeset
for help on using the changeset viewer.