Changeset 7606 in vbox for trunk/include
- Timestamp:
- Mar 27, 2008 8:02:20 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29106
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/param.h
r7598 r7606 84 84 * 85 85 * @returns Page aligned address (it's an uintptr_t). 86 * @param pv The address to align.86 * @param pv The virtual address to align. 87 87 * 88 88 * @remarks Physical addresses are always masked using X86_PTE_PAE_PG_MASK! … … 96 96 * 97 97 * @returns Page aligned address (it's an RTHCPHYS or RTGCPHYS). 98 * @param pv The address to align. 99 * 98 * @param Phys The physical address to align. 100 99 */ 101 #define PHYS_PAGE_ADDRESS( pv) (pv& X86_PTE_PAE_PG_MASK)100 #define PHYS_PAGE_ADDRESS(Phys) ((Phys) & X86_PTE_PAE_PG_MASK) 102 101 103 102 /**
Note:
See TracChangeset
for help on using the changeset viewer.