本站源代码
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

37 行
995B

  1. // Copyright 2019 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. // Minimal copy of x/sys/unix so the cpu package can make a
  5. // system call on AIX without depending on x/sys/unix.
  6. // (See golang.org/issue/32102)
  7. // +build aix,ppc64
  8. // +build !gccgo
  9. package cpu
  10. import (
  11. "syscall"
  12. "unsafe"
  13. )
  14. //go:cgo_import_dynamic libc_getsystemcfg getsystemcfg "libc.a/shr_64.o"
  15. //go:linkname libc_getsystemcfg libc_getsystemcfg
  16. type syscallFunc uintptr
  17. var libc_getsystemcfg syscallFunc
  18. type errno = syscall.Errno
  19. // Implemented in runtime/syscall_aix.go.
  20. func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno)
  21. func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno)
  22. func callgetsystemcfg(label int) (r1 uintptr, e1 errno) {
  23. r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getsystemcfg)), 1, uintptr(label), 0, 0, 0, 0, 0)
  24. return
  25. }
上海开阖软件有限公司 沪ICP备12045867号-1