2014-08-12 01:48:46 +04:00
|
|
|
// 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.
|
|
|
|
|
2015-05-08 00:17:12 +03:00
|
|
|
// +build !gccgo
|
|
|
|
|
2014-08-13 01:05:03 +04:00
|
|
|
#include "textflag.h"
|
2014-08-12 01:48:46 +04:00
|
|
|
|
|
|
|
//
|
|
|
|
// System call support for 386, FreeBSD
|
|
|
|
//
|
|
|
|
|
2014-08-14 23:30:17 +04:00
|
|
|
// Just jump to package syscall's implementation for all these functions.
|
|
|
|
// The runtime may know about them.
|
2014-08-12 01:48:46 +04:00
|
|
|
|
|
|
|
TEXT ·Syscall(SB),NOSPLIT,$0-28
|
2014-08-14 23:30:17 +04:00
|
|
|
JMP syscall·Syscall(SB)
|
2014-08-12 01:48:46 +04:00
|
|
|
|
|
|
|
TEXT ·Syscall6(SB),NOSPLIT,$0-40
|
2014-08-14 23:30:17 +04:00
|
|
|
JMP syscall·Syscall6(SB)
|
2014-08-12 01:48:46 +04:00
|
|
|
|
|
|
|
TEXT ·Syscall9(SB),NOSPLIT,$0-52
|
2014-08-14 23:30:17 +04:00
|
|
|
JMP syscall·Syscall9(SB)
|
2014-08-12 01:48:46 +04:00
|
|
|
|
|
|
|
TEXT ·RawSyscall(SB),NOSPLIT,$0-28
|
2014-08-14 23:30:17 +04:00
|
|
|
JMP syscall·RawSyscall(SB)
|
2014-08-12 01:48:46 +04:00
|
|
|
|
|
|
|
TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
|
2014-08-14 23:30:17 +04:00
|
|
|
JMP syscall·RawSyscall6(SB)
|