~pedronis/snappy-hub/assert-fetcher

« back to all changes in this revision

Viewing changes to vendor/golang.org/x/sys/unix/asm_linux_mipsx.s

  • Committer: Samuele Pedroni (Canonical Services Ltd.)
  • Date: 2017-02-10 19:13:46 UTC
  • Revision ID: samuele.pedroni@canonical.com-20170210191346-0vzytr5n503cce3q
initial commit aka 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2016 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 linux
 
6
// +build mips mipsle
 
7
// +build !gccgo
 
8
 
 
9
#include "textflag.h"
 
10
 
 
11
//
 
12
// System calls for mips, Linux
 
13
//
 
14
 
 
15
// Just jump to package syscall's implementation for all these functions.
 
16
// The runtime may know about them.
 
17
 
 
18
TEXT    ·Syscall(SB),NOSPLIT,$0-28
 
19
        JMP syscall·Syscall(SB)
 
20
 
 
21
TEXT    ·Syscall6(SB),NOSPLIT,$0-40
 
22
        JMP syscall·Syscall6(SB)
 
23
 
 
24
TEXT    ·Syscall9(SB),NOSPLIT,$0-52
 
25
        JMP syscall·Syscall9(SB)
 
26
 
 
27
TEXT    ·RawSyscall(SB),NOSPLIT,$0-28
 
28
        JMP syscall·RawSyscall(SB)
 
29
 
 
30
TEXT    ·RawSyscall6(SB),NOSPLIT,$0-40
 
31
        JMP syscall·RawSyscall6(SB)