Changeset 79844 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 17, 2019 5:56:00 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/TRPM.cpp
r77092 r79844 1499 1499 VMMR3DECL(int) TRPMR3InjectEvent(PVM pVM, PVMCPU pVCpu, TRPMEVENT enmEvent, bool *pfInjected) 1500 1500 { 1501 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu); 1501 1502 #ifdef VBOX_WITH_RAW_MODE 1502 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu);1503 1503 Assert(!PATMIsPatchGCAddr(pVM, pCtx->eip)); 1504 1504 #endif … … 1517 1517 # endif 1518 1518 1519 Assert(!CPUMIsGuestInNestedHwvirtMode(pCtx)); 1519 Assert( !CPUMIsGuestInNestedHwvirtMode(pCtx) 1520 || CPUMIsGuestVmxExitCtlsSet(pVCpu, pCtx, VMX_EXIT_CTLS_ACK_EXT_INT)); 1520 1521 uint8_t u8Interrupt = 0; 1521 1522 int rc = PDMGetInterrupt(pVCpu, &u8Interrupt); … … 1586 1587 1587 1588 #else /* !TRPM_FORWARD_TRAPS_IN_GC */ 1588 RT_NOREF (pVM, enmEvent);1589 RT_NOREF3(pVM, enmEvent, pCtx); 1589 1590 uint8_t u8Interrupt = 0; 1590 1591 int rc = PDMGetInterrupt(pVCpu, &u8Interrupt);
Note:
See TracChangeset
for help on using the changeset viewer.