VirtualBox

Changeset 4155 in vbox for trunk/include/iprt/memobj.h


Ignore:
Timestamp:
Aug 15, 2007 7:41:26 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
23645
Message:

RTR0MemGetAddressR3 & RTR0MemObjLockUser. Linux memobj impl.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/memobj.h

    r4136 r4155  
    4848
    4949/**
     50 * Gets the ring-3 address of a ring-0 memory object.
     51 *
     52 * This only applies to ring-0 memory object with ring-3 mappings of some kind, i.e.
     53 * locked user memory, reserved user address space and user mappings. This API should
     54 * not be used on any other objects.
     55 *
     56 * @returns The address of the memory object.
     57 * @returns NIL_RTR3PTR if the handle is invalid or if it's not an object with a ring-3 mapping.
     58 *          Strict builds will assert in both cases.
     59 * @param   MemObj  The ring-0 memory object handle.
     60 */
     61RTR0DECL(RTR3PTR) RTR0MemObjAddressR3(RTR0MEMOBJ MemObj);
     62
     63/**
    5064 * Gets the size of a ring-0 memory object.
    5165 *
     
    119133 * @returns IPRT status code.
    120134 * @param   pMemObj         Where to store the ring-0 memory object handle.
    121  * @param   pv              User virtual address. This is rounded down to a page boundrary.
     135 * @param   R3Ptr           User virtual address. This is rounded down to a page boundrary.
    122136 * @param   cb              Number of bytes to lock. This is rounded up to nearest page boundrary.
    123137 * @param   R0Process       The process to lock pages in. NIL_R0PROCESS is an alias for the current one.
     
    125139 * @remark  RTR0MemGetAddressR3() and RTR0MemGetAddress() will return the rounded down address.
    126140 */
    127 RTR0DECL(int) RTR0MemObjLockUser(PRTR0MEMOBJ pMemObj, void *pv, size_t cb, RTR0PROCESS R0Process);
     141RTR0DECL(int) RTR0MemObjLockUser(PRTR0MEMOBJ pMemObj, RTR3PTR R3Ptr, size_t cb, RTR0PROCESS R0Process);
    128142
    129143/**
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette