Changeset 78206 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Apr 18, 2019 2:40:06 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130133
- File:
-
- 1 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);
Note:
See TracChangeset
for help on using the changeset viewer.