aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-10-25 00:47:47 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-10-25 00:47:47 +0200
commitc6cc0108ca7738023b45e0eeac0fa2390532dd93 (patch)
tree36890e6cd3091bbab8efbe686cc56f467f645bfd /vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
parent0130404a1dc663d4aa68d780c9bcb23a4243e68d (diff)
downloadjbmafp-c6cc0108ca7738023b45e0eeac0fa2390532dd93.tar.gz
Added vendor lock on depsHEADmaster
Diffstat (limited to 'vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s')
-rw-r--r--vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s b/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
new file mode 100644
index 0000000..5e7a116
--- /dev/null
+++ b/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s
@@ -0,0 +1,30 @@
1// Copyright 2019 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//go:build gc
6// +build gc
7
8#include "textflag.h"
9
10//
11// System call support for mips64, OpenBSD
12//
13
14// Just jump to package syscall's implementation for all these functions.
15// The runtime may know about them.
16
17TEXT ·Syscall(SB),NOSPLIT,$0-56
18 JMP syscall·Syscall(SB)
19
20TEXT ·Syscall6(SB),NOSPLIT,$0-80
21 JMP syscall·Syscall6(SB)
22
23TEXT ·Syscall9(SB),NOSPLIT,$0-104
24 JMP syscall·Syscall9(SB)
25
26TEXT ·RawSyscall(SB),NOSPLIT,$0-56
27 JMP syscall·RawSyscall(SB)
28
29TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
30 JMP syscall·RawSyscall6(SB)