Changeset 7620 in vbox for trunk/include
- Timestamp:
- Mar 28, 2008 10:12:44 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29121
- Location:
- trunk/include/iprt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/assert.h
r7170 r7620 1941 1941 #define AssertPtrNullBreakVoid(pv) AssertMsgBreakVoid(VALID_PTR(pv) || (pv) == NULL, ("%p\n", (pv))) 1942 1942 1943 /** @def AssertGCPhys32 1944 * Asserts that the high dword of a physical address is zero 1945 * 1946 * @param pv The pointer. 1947 */ 1948 #define AssertGCPhys32(pv) AssertMsg(VALID_PHYS32_PTR(pv), ("%p\n", (pv))) 1943 1949 1944 1950 __BEGIN_DECLS -
trunk/include/iprt/avl.h
r7089 r7620 220 220 /** Height of this tree: max(height(left), height(right)) + 1 */ 221 221 unsigned char uchHeight; 222 /** Padding */ 223 unsigned char Padding[7]; 222 224 } AVLOGCPHYSNODECORE, *PAVLOGCPHYSNODECORE; 223 225 … … 271 273 /** Height of this tree: max(height(left), height(right)) + 1 */ 272 274 unsigned char uchHeight; 275 /** Padding */ 276 unsigned char Padding[7]; 273 277 } AVLROGCPHYSNODECORE, *PAVLROGCPHYSNODECORE; 274 278 -
trunk/include/iprt/cdefs.h
r7200 r7620 1203 1203 1204 1204 1205 /** @def VALID_PHYS32_PTR 1206 * 32 bits physical address validation macro. 1207 * @param ptr 1208 */ 1209 #define VALID_PHYS32_PTR(ptr) ( (RTGCPHYS64)(ptr) < _4G ) 1210 1205 1211 /** @def N_ 1206 1212 * The \#define N_ is used mark a string for translation. This is usable in -
trunk/include/iprt/types.h
r7578 r7620 741 741 742 742 /** Guest Physical Memory Address.*/ 743 typedef uint 32_t RTGCPHYS;743 typedef uint64_t RTGCPHYS; 744 744 /** Pointer to Guest Physical Memory Address. */ 745 745 typedef RTGCPHYS *PRTGCPHYS; … … 752 752 * some contexts. 753 753 */ 754 #define NIL_RTGCPHYS ( (RTGCPHYS)~0U) /** @todo change this to (~(RTGCPHYS)0) or maybe NIL_RTGCPHYS32? */754 #define NIL_RTGCPHYS (~(RTGCPHYS)0U) 755 755 756 756
Note:
See TracChangeset
for help on using the changeset viewer.