Changeset 32362 in vbox for trunk/src/VBox/VMM/PGMInternal.h
- Timestamp:
- Sep 9, 2010 3:55:20 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r32302 r32362 2173 2173 uint32_t cDirtyPages; 2174 2174 /* Array of current dirty pgm pool page indices. */ 2175 uint16_t aIdxDirtyPages[16]; 2176 uint64_t aDirtyPages[16][512]; 2175 struct 2176 { 2177 uint16_t uIdx; 2178 uint16_t Alignment[3]; 2179 uint64_t aPage[512]; 2180 } aDirtyPages[16]; 2177 2181 /** The number of pages currently in use. */ 2178 2182 uint16_t cUsedPages; … … 3828 3832 void pgmPoolAddDirtyPage(PVM pVM, PPGMPOOL pPool, PPGMPOOLPAGE pPage); 3829 3833 void pgmPoolResetDirtyPages(PVM pVM); 3834 void pgmPoolResetDirtyPage(PVM pVM, RTGCPTR GCPtrPage); 3830 3835 3831 3836 int pgmR3ExitShadowModeBeforePoolFlush(PVM pVM, PVMCPU pVCpu);
Note:
See TracChangeset
for help on using the changeset viewer.