Changeset 91479 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Sep 29, 2021 11:43:57 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/memobj.h
r91478 r91479 451 451 * zero the entire object is mapped. The value must be 452 452 * page aligned. 453 * @param pszTag Allocation tag used for statistics and such. 453 454 */ 454 455 DECLHIDDEN(int) rtR0MemObjNativeMapKernel(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ pMemToMap, void *pvFixed, size_t uAlignment, 455 unsigned fProt, size_t offSub, size_t cbSub );456 unsigned fProt, size_t offSub, size_t cbSub, const char *pszTag); 456 457 457 458 /** … … 471 472 * zero the entire object is mapped. The value must be 472 473 * page aligned. 474 * @param pszTag Allocation tag used for statistics and such. 473 475 */ 474 476 DECLHIDDEN(int) rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, PRTR0MEMOBJINTERNAL pMemToMap, RTR3PTR R3PtrFixed, 475 size_t uAlignment, unsigned fProt, RTR0PROCESS R0Process, size_t offSub, size_t cbSub); 477 size_t uAlignment, unsigned fProt, RTR0PROCESS R0Process, size_t offSub, size_t cbSub, 478 const char *pszTag); 476 479 477 480 /**
Note:
See TracChangeset
for help on using the changeset viewer.