aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/runtime/arch_arm.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/arch_arm.go')
-rw-r--r--src/runtime/arch_arm.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/arch_arm.go b/src/runtime/arch_arm.go
index 33a7513b0..e28e85410 100644
--- a/src/runtime/arch_arm.go
+++ b/src/runtime/arch_arm.go
@@ -11,6 +11,8 @@ const deferExtraRegs = 0
const callInstSize = 4 // "bl someFunction" is 4 bytes
+const linux_MAP_ANONYMOUS = 0x20
+
// Align on the maximum alignment for this platform (double).
func align(ptr uintptr) uintptr {
return (ptr + 7) &^ 7