Changeset 100356 in vbox for trunk/src/VBox/Runtime/r0drv/netbsd
- Timestamp:
- Jul 4, 2023 6:41:38 AM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 158086
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/netbsd/memobj-r0drv-netbsd.c
r100355 r100356 288 288 289 289 290 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, RTHCPHYS PhysHighest, 291 bool fExecutable, const char *pszTag) 290 DECLHIDDEN(int) rtR0MemObjNativeAllocCont(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable, const char *pszTag) 292 291 { 293 292 PRTR0MEMOBJNETBSD pMemNetBSD = (PRTR0MEMOBJNETBSD)rtR0MemObjNew(sizeof(*pMemNetBSD), RTR0MEMOBJTYPE_CONT, NULL, cb, pszTag); 294 293 if (pMemNetBSD) 295 294 { 296 int rc = rtR0MemObjNetBSDAllocHelper(pMemNetBSD, cb, fExecutable, PhysHighest, true /*fContiguous*/);295 int rc = rtR0MemObjNetBSDAllocHelper(pMemNetBSD, cb, fExecutable, _4G - 1, true /*fContiguous*/); 297 296 if (RT_SUCCESS(rc)) 298 297 {
Note:
See TracChangeset
for help on using the changeset viewer.