Changeset 78208 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Apr 18, 2019 3:54:40 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r78206 r78208 2979 2979 static void apicSetInterruptFF(PVMCPU pVCpu, PDMAPICIRQ enmType) 2980 2980 { 2981 #ifdef IN_RING3 2982 /* IRQ state should be loaded as-is by "LoadExec". Changes can be made from LoadDone. */ 2983 Assert(pVCpu->pVMR3->enmVMState != VMSTATE_LOADING || PDMR3HasLoadedState(pVCpu->pVMR3)); 2984 #endif 2985 2981 2986 switch (enmType) 2982 2987 { … … 3035 3040 VMM_INT_DECL(void) apicClearInterruptFF(PVMCPU pVCpu, PDMAPICIRQ enmType) 3036 3041 { 3042 #ifdef IN_RING3 3043 /* IRQ state should be loaded as-is by "LoadExec". Changes can be made from LoadDone. */ 3044 Assert(pVCpu->pVMR3->enmVMState != VMSTATE_LOADING || PDMR3HasLoadedState(pVCpu->pVMR3)); 3045 #endif 3046 3037 3047 /* NMI/SMI can't be cleared. */ 3038 3048 switch (enmType)
Note:
See TracChangeset
for help on using the changeset viewer.