Changeset 100356 in vbox for trunk/src/VBox/Runtime/r0drv/solaris
- Timestamp:
- Jul 4, 2023 6:41:38 AM (20 months ago)
- svn:sync-xref-src-repo-rev:
- 158086
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/memobj-r0drv-solaris.c
r100355 r100356 727 727 728 728 729 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, RTHCPHYS PhysHighest, 730 bool fExecutable, const char *pszTag) 729 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable, const char *pszTag) 731 730 { 732 731 AssertReturn(!fExecutable, VERR_NOT_SUPPORTED); 733 return rtR0MemObjNativeAllocPhys(ppMem, cb, PhysHigest, PAGE_SIZE /* alignment */, pszTag);732 return rtR0MemObjNativeAllocPhys(ppMem, cb, _4G - 1, PAGE_SIZE /* alignment */, pszTag); 734 733 } 735 734
Note:
See TracChangeset
for help on using the changeset viewer.