Changeset 5100 in vbox
- Timestamp:
- Sep 28, 2007 3:46:28 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24942
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r5040 r5100 1857 1857 * 1858 1858 * The size of this array is important, see pgmPhysEnsureHandyPage for details. 1859 * (The current size of 32 pages, means 128 KB of memory.) 1860 */ 1861 struct 1862 { 1863 /** The host physical address before pgmPhysAllocPage uses it, 1864 * and the guest physical address afterwards. 1865 * This is NIL_RTHCPHYS if the array entry isn't valid. 1866 * ASSUMES: sizeof(RTHCPHYS) >= sizeof(RTHCPHYS). */ 1867 RTHCPHYS HCPhysGCPhys; 1868 /** The Page ID. 1869 * This is NIL_GMM_PAGEID if the array entry isn't valid. */ 1870 uint32_t idPage; 1871 /** The Page ID of the shared page that pgmPageAllocPage replaced. 1872 * This is NIL_GMM_PAGEID if no shared page was replaced. */ 1873 uint32_t idSharedPage; 1874 } aHandyPages[32]; 1859 * (The current size of 32 pages, means 128 KB of handy memory.) 1860 */ 1861 GMMPAGEDESC aHandyPages[32]; 1875 1862 1876 1863 /** @name Release Statistics
Note:
See TracChangeset
for help on using the changeset viewer.