Changeset 22710 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Sep 2, 2009 11:48:57 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51830
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r22709 r22710 1617 1617 bool pgmPoolIsDirtyPage(PVM pVM, RTGCPHYS GCPhys) 1618 1618 { 1619 PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool); 1619 1620 if (!pPool->cDirtyPages) 1620 1621 return false; … … 1622 1623 for (unsigned i = 0; i < RT_ELEMENTS(pPool->aIdxDirtyPages); i++) 1623 1624 { 1624 if (pPool->aIdxDirtyPages[i dxSlot] != NIL_PGMPOOL_IDX)1625 if (pPool->aIdxDirtyPages[i] != NIL_PGMPOOL_IDX) 1625 1626 { 1626 1627 PPGMPOOLPAGE pPage; 1627 unsigned idxPage = pPool->aIdxDirtyPages[i dxSlot];1628 unsigned idxPage = pPool->aIdxDirtyPages[i]; 1628 1629 AssertRelease(idxPage != NIL_PGMPOOL_IDX); 1629 1630
Note:
See TracChangeset
for help on using the changeset viewer.