Changeset 91483 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Sep 30, 2021 12:19:19 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147167
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/memobj.h
r91482 r91483 306 306 * @param cb Number of bytes to allocate, page aligned. 307 307 * @param fExecutable Flag indicating whether it should be permitted to executed code in the memory object. 308 */ 309 DECLHIDDEN(int) rtR0MemObjNativeAllocPage(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable); 308 * @param pszTag Allocation tag used for statistics and such. 309 */ 310 DECLHIDDEN(int) rtR0MemObjNativeAllocPage(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable, const char *pszTag); 310 311 311 312 /** … … 332 333 * @param cb Number of bytes to allocate, page aligned. 333 334 * @param fExecutable Flag indicating whether it should be permitted to executed code in the memory object. 334 */ 335 DECLHIDDEN(int) rtR0MemObjNativeAllocLow(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable); 335 * @param pszTag Allocation tag used for statistics and such. 336 */ 337 DECLHIDDEN(int) rtR0MemObjNativeAllocLow(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable, const char *pszTag); 336 338 337 339 /** … … 344 346 * @param cb Number of bytes to allocate, page aligned. 345 347 * @param fExecutable Flag indicating whether it should be permitted to executed code in the memory object. 346 */ 347 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable); 348 * @param pszTag Allocation tag used for statistics and such. 349 */ 350 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable, const char *pszTag); 348 351 349 352 /**
Note:
See TracChangeset
for help on using the changeset viewer.