Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

asm_plan9_arm.s 644B

12345678910111213141516171819202122232425
  1. // Copyright 2009 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. #include "textflag.h"
  5. // System call support for plan9 on arm
  6. // Just jump to package syscall's implementation for all these functions.
  7. // The runtime may know about them.
  8. TEXT ·Syscall(SB),NOSPLIT,$0-32
  9. JMP syscall·Syscall(SB)
  10. TEXT ·Syscall6(SB),NOSPLIT,$0-44
  11. JMP syscall·Syscall6(SB)
  12. TEXT ·RawSyscall(SB),NOSPLIT,$0-28
  13. JMP syscall·RawSyscall(SB)
  14. TEXT ·RawSyscall6(SB),NOSPLIT,$0-40
  15. JMP syscall·RawSyscall6(SB)
  16. TEXT ·seek(SB),NOSPLIT,$0-36
  17. JMP syscall·exit(SB)