Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

25 řádky
591 B

  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. // +build linux
  5. // +build arm64
  6. // +build !gccgo
  7. #include "textflag.h"
  8. // Just jump to package syscall's implementation for all these functions.
  9. // The runtime may know about them.
  10. TEXT ·Syscall(SB),NOSPLIT,$0-56
  11. B syscall·Syscall(SB)
  12. TEXT ·Syscall6(SB),NOSPLIT,$0-80
  13. B syscall·Syscall6(SB)
  14. TEXT ·RawSyscall(SB),NOSPLIT,$0-56
  15. B syscall·RawSyscall(SB)
  16. TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
  17. B syscall·RawSyscall6(SB)