Changeset 25229 in vbox
- Timestamp:
- Dec 8, 2009 11:10:45 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55740
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPool.cpp
r23519 r25229 412 412 if (!s_fRegisteredCmds) 413 413 { 414 intrc = DBGCRegisterCommands(&g_aCmds[0], RT_ELEMENTS(g_aCmds));414 rc = DBGCRegisterCommands(&g_aCmds[0], RT_ELEMENTS(g_aCmds)); 415 415 if (RT_SUCCESS(rc)) 416 416 s_fRegisteredCmds = true; … … 748 748 pRam = pRam->CTX_SUFF(pNext)) 749 749 { 750 unsignediPage = pRam->cb >> PAGE_SHIFT;750 iPage = pRam->cb >> PAGE_SHIFT; 751 751 while (iPage-- > 0) 752 752 PGM_PAGE_SET_TRACKING(&pRam->aPages[iPage], 0); … … 776 776 /* Clear the PGM_SYNC_CLEAR_PGM_POOL flag on all VCPUs to prevent redundant flushes. */ 777 777 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++) 778 { 779 PVMCPU pVCpu = &pVM->aCpus[idCpu]; 780 pVCpu->pgm.s.fSyncFlags &= ~PGM_SYNC_CLEAR_PGM_POOL; 781 } 778 pVM->aCpus[idCpu].pgm.s.fSyncFlags &= ~PGM_SYNC_CLEAR_PGM_POOL; 782 779 783 780 pPool->cPresent = 0;
Note:
See TracChangeset
for help on using the changeset viewer.