- Timestamp:
- Sep 17, 2008 8:06:35 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM/PATM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/PATM.cpp
r11929 r12524 4963 4963 { 4964 4964 TRPMR3SetGuestTrapHandler(pVM, iGate, TRPM_INVALID_HANDLER); 4965 LogRel(("PATM: Disabling IDT %x patch handler %VRv\n", iGate, pInstrGC)); 4965 if (++pVM->patm.s.cGateDisabled < 256) 4966 LogRel(("PATM: Disabling IDT %x patch handler %VRv\n", iGate, pInstrGC)); 4966 4967 } 4967 4968 } -
trunk/src/VBox/VMM/PATM/PATMInternal.h
r11967 r12524 434 434 // GC address of fault in monitored page (set by PATMGCMonitorPage, used by PATMR3HandleMonitoredPage) 435 435 RTRCPTR pvFaultMonitor; 436 437 /* Counter for disabled IDT gates (in order not to overflow the release log).*/ 438 uint32_t cGateDisabled; 436 439 437 440 /* Temporary information for pending MMIO patch. Set in GC or R0 context. */
Note:
See TracChangeset
for help on using the changeset viewer.