You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
706 B

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