1// Copyright 2015 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// +build !gccgo
6// +build arm,darwin
7
8#include "textflag.h"
9
10//
11// System call support for ARM, Darwin
12//
13
14// Just jump to package syscall's implementation for all these functions.
15// The runtime may know about them.
16
17TEXT 路Syscall(SB),NOSPLIT,$0-28
18 B syscall路Syscall(SB)
19
20TEXT 路Syscall6(SB),NOSPLIT,$0-40
21 B syscall路Syscall6(SB)
22
23TEXT 路Syscall9(SB),NOSPLIT,$0-52
24 B syscall路Syscall9(SB)
25
26TEXT 路RawSyscall(SB),NOSPLIT,$0-28
27 B syscall路RawSyscall(SB)
28
29TEXT 路RawSyscall6(SB),NOSPLIT,$0-40
30 B syscall路RawSyscall6(SB)