Changeset 80510 in vbox
- Timestamp:
- Aug 30, 2019 9:56:16 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r80489 r80510 14271 14271 14272 14272 /** @todo What if we are injecting an exception and not an interrupt? Is that 14273 * possible here? */14273 * possible here? For now we assert it is indeed only an interrupt. */ 14274 14274 if ( fIntrEnabled 14275 14275 && TRPMHasTrap(pVCpu) … … 14281 14281 RTGCPTR uCr2; 14282 14282 int rc2 = TRPMQueryTrapAll(pVCpu, &u8TrapNo, &enmType, &uErrCode, &uCr2, NULL /* pu8InstLen */); AssertRC(rc2); 14283 Assert(enmType == TRPM_HARDWARE_INT); 14283 14284 VBOXSTRICTRC rcStrict = IEMInjectTrap(pVCpu, u8TrapNo, enmType, (uint16_t)uErrCode, uCr2, 0 /* cbInstr */); 14284 14285 TRPMResetTrap(pVCpu);
Note:
See TracChangeset
for help on using the changeset viewer.