Changeset 100357 in vbox for trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
- Timestamp:
- Jul 4, 2023 7:00:26 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r100356 r100357 565 565 * Fall back on contiguous memory... 566 566 */ 567 return rtR0MemObjNativeAllocCont(ppMem, cb, fExecutable, pszTag);567 return rtR0MemObjNativeAllocCont(ppMem, cb, _4G - 1, fExecutable, pszTag); 568 568 } 569 569 … … 636 636 637 637 638 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable, const char *pszTag) 639 { 640 return rtR0MemObjNativeAllocContEx(ppMem, cb, fExecutable, _4G-1, PAGE_SIZE /* alignment */, pszTag); 638 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, RTHCPHYS PhysHighest, 639 bool fExecutable, const char *pszTag) 640 { 641 return rtR0MemObjNativeAllocContEx(ppMem, cb, fExecutable, PhysHighest, PAGE_SIZE /* alignment */, pszTag); 641 642 } 642 643
Note:
See TracChangeset
for help on using the changeset viewer.