Changeset 7620 in vbox for trunk/include/iprt/assert.h
- Timestamp:
- Mar 28, 2008 10:12:44 AM (17 years ago)
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.