Changeset 78120 in vbox for trunk/src/VBox/Runtime/r0drv/solaris
- Timestamp:
- Apr 12, 2019 1:20:50 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130012
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/memobj-r0drv-solaris.c
r76553 r78120 1012 1012 1013 1013 DECLHIDDEN(int) rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, PRTR0MEMOBJINTERNAL pMemToMap, RTR3PTR R3PtrFixed, 1014 size_t uAlignment, unsigned fProt, RTR0PROCESS R0Process )1014 size_t uAlignment, unsigned fProt, RTR0PROCESS R0Process, size_t offSub, size_t cbSub) 1015 1015 { 1016 1016 /* … … 1021 1021 if (uAlignment != PAGE_SIZE) 1022 1022 return VERR_NOT_SUPPORTED; 1023 AssertMsgReturn(!offSub && !cbSub, ("%#zx %#zx\n", offSub, cbSub), VERR_NOT_SUPPORTED); /** @todo implement sub maps */ 1023 1024 1024 1025 /*
Note:
See TracChangeset
for help on using the changeset viewer.