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.

syscall_darwin_libSystem.go 1.3KB

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2018 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 darwin,go1.12
  5. package unix
  6. import "unsafe"
  7. // Implemented in the runtime package (runtime/sys_darwin.go)
  8. func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
  9. func syscall_syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
  10. func syscall_syscall6X(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
  11. func syscall_syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) // 32-bit only
  12. func syscall_rawSyscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
  13. func syscall_rawSyscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
  14. //go:linkname syscall_syscall syscall.syscall
  15. //go:linkname syscall_syscall6 syscall.syscall6
  16. //go:linkname syscall_syscall6X syscall.syscall6X
  17. //go:linkname syscall_syscall9 syscall.syscall9
  18. //go:linkname syscall_rawSyscall syscall.rawSyscall
  19. //go:linkname syscall_rawSyscall6 syscall.rawSyscall6
  20. // Find the entry point for f. See comments in runtime/proc.go for the
  21. // function of the same name.
  22. //go:nosplit
  23. func funcPC(f func()) uintptr {
  24. return **(**uintptr)(unsafe.Pointer(&f))
  25. }