Changeset 91446 in vbox for trunk/src/VBox/Runtime/r0drv/netbsd
- Timestamp:
- Sep 28, 2021 7:53:25 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147129
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/netbsd/memobj-r0drv-netbsd.c
r82968 r91446 230 230 } 231 231 232 232 233 DECLHIDDEN(int) rtR0MemObjNativeAllocPage(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, bool fExecutable) 233 234 { … … 252 253 *ppMem = &pMemNetBSD->Core; 253 254 return VINF_SUCCESS; 255 } 256 257 258 DECLHIDDEN(int) rtR0MemObjNativeAllocLarge(PPRTR0MEMOBJINTERNAL ppMem, size_t cb, size_t cbLargePage, uint32_t fFlags, 259 const char *pszTag) 260 { 261 return rtR0MemObjFallbackAllocLarge(ppMem, cb, cbLargePage, fFlags, pszTag); 254 262 } 255 263
Note:
See TracChangeset
for help on using the changeset viewer.