Changeset 31086 in vbox
- Timestamp:
- Jul 25, 2010 10:40:49 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64034
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r31082 r31086 74 74 75 75 /* enables the new code. */ 76 #define PGM_WITH_GST_WALK76 //#define PGM_WITH_GST_WALK 77 77 78 78 #ifndef IN_RING3 … … 245 245 # if PGM_SHW_TYPE == PGM_TYPE_PAE && PGM_GST_TYPE != PGM_TYPE_PAE 246 246 /* 247 * Hide the instruction fetch trap indicator for now.248 */ 249 /** @todo NXE will change this and we must fix NXE in the switcher too! */250 if ( uErr & X86_TRAP_PF_ID)247 * Hide the instruction fetch trap indicator if NX isn't active. 248 */ 249 /** @todo do this only when returning with a guest trap! */ 250 if ((uErr & X86_TRAP_PF_ID) && !pVCpu->pgm.s.fNoExecuteEnabled) 251 251 { 252 252 uErr &= ~X86_TRAP_PF_ID;
Note:
See TracChangeset
for help on using the changeset viewer.