Changeset 91481 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Sep 30, 2021 12:06:31 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/memobj.h
r91480 r91481 383 383 * @param uAlignment The alignment of the reserved memory. 384 384 * Supported values are PAGE_SIZE, _2M, _4M and _1G. 385 */ 386 DECLHIDDEN(int) rtR0MemObjNativeAllocPhys(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, RTHCPHYS PhysHighest, size_t uAlignment); 385 * @param pszTag Allocation tag used for statistics and such. 386 */ 387 DECLHIDDEN(int) rtR0MemObjNativeAllocPhys(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, RTHCPHYS PhysHighest, size_t uAlignment, 388 const char *pszTag); 387 389 388 390 /** … … 396 398 * @param PhysHighest The highest permitable address (inclusive). 397 399 * NIL_RTHCPHYS if any address is acceptable. 398 */ 399 DECLHIDDEN(int) rtR0MemObjNativeAllocPhysNC(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, RTHCPHYS PhysHighest); 400 * @param pszTag Allocation tag used for statistics and such. 401 */ 402 DECLHIDDEN(int) rtR0MemObjNativeAllocPhysNC(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, RTHCPHYS PhysHighest, const char *pszTag); 400 403 401 404 /**
Note:
See TracChangeset
for help on using the changeset viewer.