1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-02 09:25:48 +00:00
gitea/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s

30 lines
677 B
ArmAsm
Raw Normal View History

// Copyright 2009 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 gc
#include "textflag.h"
//
// System call support for AMD64, DragonFly
//
// Just jump to package syscall's implementation for all these functions.
// The runtime may know about them.
2018-10-26 23:18:40 +00:00
TEXT ·Syscall(SB),NOSPLIT,$0-56
JMP syscall·Syscall(SB)
2018-10-26 23:18:40 +00:00
TEXT ·Syscall6(SB),NOSPLIT,$0-80
JMP syscall·Syscall6(SB)
2018-10-26 23:18:40 +00:00
TEXT ·Syscall9(SB),NOSPLIT,$0-104
JMP syscall·Syscall9(SB)
2018-10-26 23:18:40 +00:00
TEXT ·RawSyscall(SB),NOSPLIT,$0-56
JMP syscall·RawSyscall(SB)
2018-10-26 23:18:40 +00:00
TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
JMP syscall·RawSyscall6(SB)