Changeset 4155 in vbox for trunk/include/iprt/memobj.h
- Timestamp:
- Aug 15, 2007 7:41:26 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23645
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/memobj.h
r4136 r4155 48 48 49 49 /** 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 */ 61 RTR0DECL(RTR3PTR) RTR0MemObjAddressR3(RTR0MEMOBJ MemObj); 62 63 /** 50 64 * Gets the size of a ring-0 memory object. 51 65 * … … 119 133 * @returns IPRT status code. 120 134 * @param pMemObj Where to store the ring-0 memory object handle. 121 * @param pvUser virtual address. This is rounded down to a page boundrary.135 * @param R3Ptr User virtual address. This is rounded down to a page boundrary. 122 136 * @param cb Number of bytes to lock. This is rounded up to nearest page boundrary. 123 137 * @param R0Process The process to lock pages in. NIL_R0PROCESS is an alias for the current one. … … 125 139 * @remark RTR0MemGetAddressR3() and RTR0MemGetAddress() will return the rounded down address. 126 140 */ 127 RTR0DECL(int) RTR0MemObjLockUser(PRTR0MEMOBJ pMemObj, void *pv, size_t cb, RTR0PROCESS R0Process);141 RTR0DECL(int) RTR0MemObjLockUser(PRTR0MEMOBJ pMemObj, RTR3PTR R3Ptr, size_t cb, RTR0PROCESS R0Process); 128 142 129 143 /**
Note:
See TracChangeset
for help on using the changeset viewer.