Changeset 22545 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Aug 28, 2009 7:47:27 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r22544 r22545 1702 1702 { 1703 1703 # ifdef PGMPOOL_WITH_OPTIMIZED_DIRTY_PT 1704 pgmLock(pVM); 1705 pgmPoolResetDirtyPages(pVM); 1706 pgmUnlock(pVM); 1704 PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool); 1705 if (pPool->cDirtyPages) 1706 { 1707 pgmLock(pVM); 1708 pgmPoolResetDirtyPages(pVM); 1709 pgmUnlock(pVM); 1710 } 1707 1711 # endif 1708 1712 /*
Note:
See TracChangeset
for help on using the changeset viewer.