- Timestamp:
- Apr 14, 2007 3:20:19 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r1594 r2089 203 203 #define PGM_TYPE_PAE 4 204 204 #define PGM_TYPE_AMD64 5 205 /** @} */ 206 207 /** @name Defines used to check if the guest is using paging 208 * @{ */ 209 #define PGM_WITH_PAGING(a) (a == PGM_TYPE_32BIT || a == PGM_TYPE_PAE || a == PGM_TYPE_AMD64) 205 210 /** @} */ 206 211 … … 596 601 typedef enum PGMPOOLKIND 597 602 { 598 /** The ritual invalid 0 entry. */603 /** The virtual invalid 0 entry. */ 599 604 PGMPOOLKIND_INVALID = 0, 600 605 /** The entry is free (=unused). */ 601 606 PGMPOOLKIND_FREE, 602 607 608 /** Shw: 32-bit page table; Gst: no paging */ 609 PGMPOOLKIND_32BIT_PT_FOR_PHYS, 603 610 /** Shw: 32-bit page table; Gst: 32-bit page table. */ 604 611 PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT, 605 612 /** Shw: 32-bit page table; Gst: 4MB page. */ 606 613 PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB, 614 /** Shw: PAE page table; Gst: no paging */ 615 PGMPOOLKIND_PAE_PT_FOR_PHYS, 607 616 /** Shw: PAE page table; Gst: 32-bit page table. */ 608 617 PGMPOOLKIND_PAE_PT_FOR_32BIT_PT,
Note:
See TracChangeset
for help on using the changeset viewer.