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ů.
 
 
 

29 řádky
643 B

  1. // Copyright 2014 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 ppc64 ppc64le
  6. // +build !gccgo
  7. #include "textflag.h"
  8. //
  9. // System calls for ppc64, 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-56
  14. BR syscall·Syscall(SB)
  15. TEXT ·Syscall6(SB),NOSPLIT,$0-80
  16. BR syscall·Syscall6(SB)
  17. TEXT ·RawSyscall(SB),NOSPLIT,$0-56
  18. BR syscall·RawSyscall(SB)
  19. TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
  20. BR syscall·RawSyscall6(SB)