github.com/mfpierre/corectl@v0.5.6/Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_mips64x.s (about)

     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 linux
     6  // +build mips64 mips64le
     7  // +build !gccgo
     8  
     9  #include "textflag.h"
    10  
    11  //
    12  // System calls for mips64, 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-56
    19  	JMP	syscall·Syscall(SB)
    20  
    21  TEXT	·Syscall6(SB),NOSPLIT,$0-80
    22  	JMP	syscall·Syscall6(SB)
    23  
    24  TEXT	·RawSyscall(SB),NOSPLIT,$0-56
    25  	JMP	syscall·RawSyscall(SB)
    26  
    27  TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
    28  	JMP	syscall·RawSyscall6(SB)