Changeset 109128 in vbox for trunk/src/VBox/Runtime/r0drv/darwin/memuserkernel-r0drv-darwin.cpp
- Timestamp:
- May 1, 2025 1:31:56 AM (11 days ago)
- svn:sync-xref-src-repo-rev:
- 168680
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/memuserkernel-r0drv-darwin.cpp
r106061 r109128 46 46 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 47 47 # include <iprt/asm-amd64-x86.h> 48 #else 49 # include <iprt/thread.h> 48 50 #endif 49 51 #include <iprt/errcore.h> … … 96 98 return (uintptr_t)pv >= UINT64_C(0xffff800000000000); 97 99 100 #elif defined(RT_ARCH_ARM64) 101 return (uintptr_t)pv >= UINT64_C(0xfff0000000000000); /** @todo get the actual size. this is the max. */ 102 98 103 #else 99 104 # error "PORTME"
Note:
See TracChangeset
for help on using the changeset viewer.