Changeset 4220 in vbox for trunk/src/VBox
- Timestamp:
- Aug 19, 2007 12:04:30 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23714
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r4219 r4220 570 570 int rtR0MemObjNativeReserveKernel(PPRTR0MEMOBJINTERNAL ppMem, void *pvFixed, size_t cb, size_t uAlignment) 571 571 { 572 /* 573 * MmCreateSection(SEC_RESERVE) + MmMapViewInSystemSpace perhaps? 574 */ 572 575 return VERR_NOT_IMPLEMENTED; 573 576 } … … 576 579 int rtR0MemObjNativeReserveUser(PPRTR0MEMOBJINTERNAL ppMem, RTR3PTR R3PtrFixed, size_t cb, size_t uAlignment, RTR0PROCESS R0Process) 577 580 { 581 /* 582 * ZeCreateSection(SEC_RESERVE) + ZwMapViewOfSection perhaps? 583 */ 578 584 return VERR_NOT_IMPLEMENTED; 579 585 } 586 580 587 581 588 /**
Note:
See TracChangeset
for help on using the changeset viewer.