Changeset 71720 in vbox for trunk/src/VBox/VMM/VMMRC
- Timestamp:
- Apr 6, 2018 6:51:44 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121819
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRC/PATMRC.cpp
r69111 r71720 47 47 * PATM all access handler callback.} 48 48 * 49 * @remarks The @a pvUser argument is the base address of the page being 50 * monitored. 49 * @remarks pvUser is NULL. 51 50 */ 52 51 DECLEXPORT(VBOXSTRICTRC) patmRCVirtPagePfHandler(PVM pVM, PVMCPU pVCpu, RTGCUINT uErrorCode, PCPUMCTXCORE pCtxCore, … … 54 53 { 55 54 NOREF(pVCpu); NOREF(uErrorCode); NOREF(pCtxCore); NOREF(pvFault); NOREF(pvRange); NOREF(offRange); RT_NOREF_PV(pvUser); 56 57 Assert(pvUser);58 Assert(!((uintptr_t)pvUser & PAGE_OFFSET_MASK));59 Assert(((uintptr_t)pvUser + (pvFault & PAGE_OFFSET_MASK)) == pvRange + offRange);60 55 61 56 pVM->patm.s.pvFaultMonitor = (RTRCPTR)(pvRange + offRange);
Note:
See TracChangeset
for help on using the changeset viewer.