Changeset 14824 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- Nov 30, 2008 7:52:59 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 40150
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r8245 r14824 746 746 747 747 748 int rtR0MemObjNativeMapKernel(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ pMemToMap, void *pvFixed, size_t uAlignment, unsigned fProt) 749 { 748 int rtR0MemObjNativeMapKernel(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ pMemToMap, void *pvFixed, size_t uAlignment, 749 unsigned fProt, size_t offSub, size_t cbSub) 750 { 751 AssertMsgReturn(!offSub && !cbSub, ("%#x %#x\n", offSub, cbSub), VERR_NOT_SUPPORTED); 750 752 return rtR0MemObjNtMap(ppMem, pMemToMap, pvFixed, uAlignment, fProt, NIL_RTR0PROCESS); 751 753 }
Note:
See TracChangeset
for help on using the changeset viewer.