Changeset 78120 in vbox for trunk/src/VBox/Runtime/r0drv/haiku
- 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/haiku/memobj-r0drv-haiku.c
r76553 r78120 478 478 479 479 int rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ pMemToMap, RTR3PTR R3PtrFixed, size_t uAlignment, 480 unsigned fProt, RTR0PROCESS R0Process )480 unsigned fProt, RTR0PROCESS R0Process, size_t offSub, size_t cbSub) 481 481 { 482 482 #if 0 … … 487 487 AssertMsgReturn(R3PtrFixed == (RTR3PTR)-1, ("%p\n", R3PtrFixed), VERR_NOT_SUPPORTED); 488 488 if (uAlignment > PAGE_SIZE) 489 return VERR_NOT_SUPPORTED; 489 return VERR_NOT_SUPPORTED; 490 AssertMsgReturn(!offSub && !cbSub, ("%#zx %#zx\n", offSub, cbSub), VERR_NOT_SUPPORTED); /** @todo implement sub maps */ 490 491 491 492 int rc;
Note:
See TracChangeset
for help on using the changeset viewer.