mirror of
https://github.com/golang/sys.git
synced 2026-02-08 03:36:03 +03:00
Change-Id: I62774b8ee0c1a7cc1a3b7009ca860e3fd64a6564 Signed-off-by: Shenghou Ma <minux@golang.org> Reviewed-on: https://go-review.googlesource.com/10182 Reviewed-by: Rob Pike <r@golang.org>
25 lines
591 B
ArmAsm
25 lines
591 B
ArmAsm
// Copyright 2015 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 linux
|
|
// +build arm64
|
|
// +build !gccgo
|
|
|
|
#include "textflag.h"
|
|
|
|
// 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 ·RawSyscall(SB),NOSPLIT,$0-56
|
|
B syscall·RawSyscall(SB)
|
|
|
|
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
|
|
B syscall·RawSyscall6(SB)
|