mirror of
https://github.com/golang/sys.git
synced 2026-02-08 19:56:04 +03:00
This incorporates generation script changes from http://golang.org/cl/7143. Files generated on Ubuntu Trusty. Change-Id: I28cfa0993573e1b280c549a67f453c0fb01dee2f Reviewed-on: https://go-review.googlesource.com/10038 Reviewed-by: Rob Pike <r@golang.org>
23 lines
559 B
ArmAsm
23 lines
559 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 !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)
|