Changeset 78120 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- Apr 12, 2019 1:20:50 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r76553 r78120 835 835 836 836 837 DECLHIDDEN(int) rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ pMemToMap, RTR3PTR R3PtrFixed, 838 size_t uAlignment, unsigned fProt, RTR0PROCESS R0Process)837 DECLHIDDEN(int) rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ pMemToMap, RTR3PTR R3PtrFixed, size_t uAlignment, 838 unsigned fProt, RTR0PROCESS R0Process, size_t offSub, size_t cbSub) 839 839 { 840 840 AssertReturn(R0Process == RTR0ProcHandleSelf(), VERR_NOT_SUPPORTED); 841 AssertMsgReturn(!offSub && !cbSub, ("%#zx %#zx\n", offSub, cbSub), VERR_NOT_SUPPORTED); /** @todo implement sub maps */ 841 842 return rtR0MemObjNtMap(ppMem, pMemToMap, (void *)R3PtrFixed, uAlignment, fProt, R0Process); 842 843 }
Note:
See TracChangeset
for help on using the changeset viewer.