Changeset 90715 in vbox
- Timestamp:
- Aug 18, 2021 12:45:46 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/memobj.h
r85504 r90715 231 231 * @param fAccess The desired access, a combination of RTMEM_PROT_READ 232 232 * and RTMEM_PROT_WRITE. 233 * @param R0Process The process to lock pages in. NIL_R 0PROCESS is an233 * @param R0Process The process to lock pages in. NIL_RTR0PROCESS is an 234 234 * alias for the current one. 235 235 * … … 256 256 * @param fAccess The desired access, a combination of RTMEM_PROT_READ 257 257 * and RTMEM_PROT_WRITE. 258 * @param R0Process The process to lock pages in. NIL_R 0PROCESS is an258 * @param R0Process The process to lock pages in. NIL_RTR0PROCESS is an 259 259 * alias for the current one. 260 260 * @param pszTag Allocation tag used for statistics and such. … … 481 481 * @param uAlignment The alignment of the reserved memory. 482 482 * Supported values are 0 (alias for PAGE_SIZE), PAGE_SIZE, _2M and _4M. 483 * @param R0Process The process to reserve the memory in. NIL_R0PROCESS is an alias for the current one. 483 * @param R0Process The process to reserve the memory in. 484 * NIL_RTR0PROCESS is an alias for the current one. 484 485 */ 485 486 #define RTR0MemObjReserveUser(pMemObj, R3PtrFixed, cb, uAlignment, R0Process) \ … … 495 496 * @param uAlignment The alignment of the reserved memory. 496 497 * Supported values are 0 (alias for PAGE_SIZE), PAGE_SIZE, _2M and _4M. 497 * @param R0Process The process to reserve the memory in. NIL_R0PROCESS is an alias for the current one. 498 * @param R0Process The process to reserve the memory in. 499 * NIL_RTR0PROCESS is an alias for the current one. 498 500 * @param pszTag Allocation tag used for statistics and such. 499 501 */ … … 602 604 * Supported values are 0 (alias for PAGE_SIZE), PAGE_SIZE, _2M and _4M. 603 605 * @param fProt Combination of RTMEM_PROT_* flags (except RTMEM_PROT_NONE). 604 * @param R0Process The process to map the memory into. NIL_R0PROCESS is an alias for the current one. 606 * @param R0Process The process to map the memory into. NIL_RTR0PROCESS 607 * is an alias for the current one. 605 608 */ 606 609 #define RTR0MemObjMapUser(pMemObj, MemObjToMap, R3PtrFixed, uAlignment, fProt, R0Process) \ … … 618 621 * Supported values are 0 (alias for PAGE_SIZE), PAGE_SIZE, _2M and _4M. 619 622 * @param fProt Combination of RTMEM_PROT_* flags (except RTMEM_PROT_NONE). 620 * @param R0Process The process to map the memory into. NIL_R0PROCESS is an alias for the current one. 623 * @param R0Process The process to map the memory into. NIL_RTR0PROCESS 624 * is an alias for the current one. 621 625 * @param pszTag Allocation tag used for statistics and such. 622 626 */ … … 635 639 * Supported values are 0 (alias for PAGE_SIZE), PAGE_SIZE, _2M and _4M. 636 640 * @param fProt Combination of RTMEM_PROT_* flags (except RTMEM_PROT_NONE). 637 * @param R0Process The process to map the memory into. NIL_R0PROCESS is an alias for the current one. 641 * @param R0Process The process to map the memory into. NIL_RTR0PROCESS 642 * is an alias for the current one. 638 643 * @param offSub Where in the object to start mapping. If non-zero 639 644 * the value must be page aligned and cbSub must be … … 658 663 * Supported values are 0 (alias for PAGE_SIZE), PAGE_SIZE, _2M and _4M. 659 664 * @param fProt Combination of RTMEM_PROT_* flags (except RTMEM_PROT_NONE). 660 * @param R0Process The process to map the memory into. NIL_R0PROCESS is an alias for the current one. 665 * @param R0Process The process to map the memory into. NIL_RTR0PROCESS 666 * is an alias for the current one. 661 667 * @param offSub Where in the object to start mapping. If non-zero 662 668 * the value must be page aligned and cbSub must be
Note:
See TracChangeset
for help on using the changeset viewer.