summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-03-26 07:54:00 +0000
committerGitHub <noreply@github.com>2021-03-26 07:54:00 +0000
commitb7dda21e33f9bddda9b49adbd0f18d5205b249f4 (patch)
tree2648f9d9d821e32c900aede7f776390f75ff8db6 /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s
parent9e23e0b3e3b219cbdc42fac4f843d6d2ec97421b (diff)
downloadpodman-b7dda21e33f9bddda9b49adbd0f18d5205b249f4.tar.gz
podman-b7dda21e33f9bddda9b49adbd0f18d5205b249f4.tar.bz2
podman-b7dda21e33f9bddda9b49adbd0f18d5205b249f4.zip
Bump github.com/vbauerster/mpb/v6 from 6.0.2 to 6.0.3
Bumps [github.com/vbauerster/mpb/v6](https://github.com/vbauerster/mpb) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/vbauerster/mpb/releases) - [Commits](https://github.com/vbauerster/mpb/compare/v6.0.2...v6.0.3) Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/golang.org/x/sys/unix/asm_bsd_arm64.s')
-rw-r--r--vendor/golang.org/x/sys/unix/asm_bsd_arm64.s29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s b/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s
new file mode 100644
index 000000000..fe36a7391
--- /dev/null
+++ b/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s
@@ -0,0 +1,29 @@
+// Copyright 2021 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.
+
+//go:build (darwin || freebsd || netbsd || openbsd) && gc
+// +build darwin freebsd netbsd openbsd
+// +build gc
+
+#include "textflag.h"
+
+// System call support for ARM64 BSD
+
+// 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)