mirror of
https://github.com/rwinkhart/sys.git
synced 2026-08-28 04:46:44 -04:00
This isn't a real generation, it's mostly a copy of the amd64 files, due to difficulties in generation. There should be little to no differences between netbsd 64bit archs. Change-Id: I1c7b25cfef87220c827018e73695e5ca08987156 GitHub-Last-Rev: 043207b2c25fbfe959e66bddc238d5b2f053a04f GitHub-Pull-Request: golang/sys#27 Reviewed-on: https://go-review.googlesource.com/c/155738 Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
30 lines
668 B
ArmAsm
30 lines
668 B
ArmAsm
// 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, NetBSD
|
|
//
|
|
|
|
// Just jump to package syscall's implementation for all these functions.
|
|
// The runtime may know about them.
|
|
|
|
TEXT ·Syscall(SB),NOSPLIT,$0-56
|
|
B syscall·Syscall(SB)
|
|
|
|
TEXT ·Syscall6(SB),NOSPLIT,$0-80
|
|
B syscall·Syscall6(SB)
|
|
|
|
TEXT ·Syscall9(SB),NOSPLIT,$0-104
|
|
B syscall·Syscall9(SB)
|
|
|
|
TEXT ·RawSyscall(SB),NOSPLIT,$0-56
|
|
B syscall·RawSyscall(SB)
|
|
|
|
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
|
|
B syscall·RawSyscall6(SB)
|