aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/plan9/asm_plan9_arm.s
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/golang.org/x/sys/plan9/asm_plan9_arm.s')
-rw-r--r--vendor/golang.org/x/sys/plan9/asm_plan9_arm.s25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/golang.org/x/sys/plan9/asm_plan9_arm.s b/vendor/golang.org/x/sys/plan9/asm_plan9_arm.s
new file mode 100644
index 0000000..afb7c0a
--- /dev/null
+++ b/vendor/golang.org/x/sys/plan9/asm_plan9_arm.s
@@ -0,0 +1,25 @@
1// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5#include "textflag.h"
6
7// System call support for plan9 on arm
8
9// Just jump to package syscall's implementation for all these functions.
10// The runtime may know about them.
11
12TEXT ·Syscall(SB),NOSPLIT,$0-32
13 JMP syscall·Syscall(SB)
14
15TEXT ·Syscall6(SB),NOSPLIT,$0-44
16 JMP syscall·Syscall6(SB)
17
18TEXT ·RawSyscall(SB),NOSPLIT,$0-28
19 JMP syscall·RawSyscall(SB)
20
21TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
22 JMP syscall·RawSyscall6(SB)
23
24TEXT ·seek(SB),NOSPLIT,$0-36
25 JMP syscall·exit(SB)