mirror of
https://github.com/golang/sys.git
synced 2026-02-08 11:46:04 +03:00
Fixes golang/go#17252. Change-Id: I244c14d531542ea154f82e402059f4bc999241e2 Reviewed-on: https://go-review.googlesource.com/43211 Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
18 lines
426 B
ArmAsm
18 lines
426 B
ArmAsm
// Copyright 2014 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 calls for amd64, Solaris are implemented in runtime/syscall_solaris.go
|
|
//
|
|
|
|
TEXT ·sysvicall6(SB),NOSPLIT,$0-88
|
|
JMP syscall·sysvicall6(SB)
|
|
|
|
TEXT ·rawSysvicall6(SB),NOSPLIT,$0-88
|
|
JMP syscall·rawSysvicall6(SB)
|