summaryrefslogtreecommitdiffstats
path: root/vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s
diff options
context:
space:
mode:
authorDawid Dziurla <dawidd0811@gmail.com>2019-08-26 16:53:38 +0200
committerJesse Duffield <jessedduffield@gmail.com>2019-09-01 21:24:03 +1000
commite0dd1cb29d6d70829622ca0125028e98fa440f4a (patch)
treef6d792b579614df3dfbcfa661945e1bfd48f11fc /vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s
parent827837b0b940d9367cefd03eb0e779711f9489da (diff)
switch to Go modules
Diffstat (limited to 'vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s')
-rw-r--r--vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s b/vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s
new file mode 100644
index 000000000..0cedea3d3
--- /dev/null
+++ b/vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s
@@ -0,0 +1,29 @@
+// Copyright 2019 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build !gccgo
+
+#include "textflag.h"
+
+//
+// System call support for arm64, OpenBSD
+//
+
+// Just jump to package syscall's implementation for all these functions.
+// The runtime may know about them.
+
+TEXT ·Syscall(SB),NOSPLIT,$0-56
+ JMP syscall·Syscall(SB)
+
+TEXT ·Syscall6(SB),NOSPLIT,$0-80
+ JMP syscall·Syscall6(SB)
+
+TEXT ·Syscall9(SB),NOSPLIT,$0-104
+ JMP syscall·Syscall9(SB)
+
+TEXT ·RawSyscall(SB),NOSPLIT,$0-56
+ JMP syscall·RawSyscall(SB)
+
+TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
+ JMP syscall·RawSyscall6(SB)