Changeset 7084 in vbox
- Timestamp:
- Feb 21, 2008 7:26:33 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28325
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r7072 r7084 466 466 uint32_t fInflate; /* true = inflate, false = defalte */ 467 467 /** Physical address (RTGCPHYS) of each page, variable size. */ 468 uint64_taPhysPage[1];468 RTGCPHYS aPhysPage[1]; 469 469 } VMMDevChangeMemBalloon; 470 470 -
trunk/include/iprt/types.h
r7067 r7084 741 741 742 742 /** Guest Physical Memory Address.*/ 743 typedef uint 64_t RTGCPHYS;743 typedef uint32_t RTGCPHYS; 744 744 /** Pointer to Guest Physical Memory Address. */ 745 745 typedef RTGCPHYS *PRTGCPHYS; -
trunk/src/VBox/VMM/PGMInternal.h
r7050 r7084 925 925 # if HC_ARCH_BITS == 32 && !defined(RT_OS_WINDOWS) 926 926 /** Padding to make aPage aligned on sizeof(PGMPAGE). */ 927 uint32_t u32Reserved[1];927 // uint32_t u32Reserved[1]; 928 928 # endif 929 929 #endif
Note:
See TracChangeset
for help on using the changeset viewer.