Changeset 1866 in vbox for trunk/src/VBox
- Timestamp:
- Apr 2, 2007 4:08:13 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20092
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r1865 r1866 563 563 if ( pvFault == (RTGCPTR)pRegFrame->eip 564 564 || (RTGCUINTPTR)pvFault - pRegFrame->eip < 8 /* instruction crossing a page boundary */ 565 #if 0 /* Note: enable if ever required in the future; it's a bit aggressive */565 #ifdef CSAM_DETECT_NEW_CODE_PAGES 566 566 || ( !PATMIsPatchGCAddr(pVM, (RTGCPTR)pRegFrame->eip) 567 567 && CSAMDoesPageNeedScanning(pVM, (RTGCPTR)pRegFrame->eip)) /* any new code we encounter here */ 568 #endif 568 #endif /* CSAM_DETECT_NEW_CODE_PAGES */ 569 569 ) 570 570 { … … 588 588 } 589 589 } 590 #ifdef CSAM_DETECT_NEW_CODE_PAGES 590 591 else 591 592 if ( uErr == X86_TRAP_PF_RW … … 618 619 } 619 620 } 621 #endif /* CSAM_DETECT_NEW_CODE_PAGES */ 620 622 621 623 /*
Note:
See TracChangeset
for help on using the changeset viewer.