Changeset 39920 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Jan 31, 2012 2:55:13 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75998
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/gmm.h
r39917 r39920 617 617 { 618 618 /** Region base address. */ 619 RTGCPTR64 GCRegionAddr;619 RTGCPTR64 GCRegionAddr; 620 620 /** Region size. */ 621 uint32_t cbRegion;621 uint32_t cbRegion; 622 622 /** Alignment. */ 623 uint32_t u32Alignment;624 /** Pointer to physical page idarray. */625 uint32_t *paHCPhysPageID;623 uint32_t u32Alignment; 624 /** Pointer to physical GMM page ID array. */ 625 uint32_t *paidPages; 626 626 } GMMSHAREDREGIONDESC; 627 627 /** Pointer to a GMMSHAREDREGIONDESC. */ … … 664 664 RTGCPHYS GCPhys; 665 665 /** GMM page id. (in/out) */ 666 uint32_t uHCPhysPageId;666 uint32_t idPage; 667 667 /** Align at 8 byte boundary. */ 668 668 uint32_t uAlignment; … … 671 671 typedef GMMSHAREDPAGEDESC *PGMMSHAREDPAGEDESC; 672 672 673 GMMR0DECL(int) GMMR0SharedModuleCheckPage(PGVM pGVM, PGMMSHAREDMODULE pModule, unsigned idxRegion, unsigned idxPage, PGMMSHAREDPAGEDESC pPageDesc); 673 GMMR0DECL(int) GMMR0SharedModuleCheckPage(PGVM pGVM, PGMMSHAREDMODULE pModule, unsigned idxRegion, unsigned idxPage, 674 PGMMSHAREDPAGEDESC pPageDesc); 674 675 675 676 /**
Note:
See TracChangeset
for help on using the changeset viewer.