syscall.go 760 B

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2016 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 solaris
  5. package lif
  6. import (
  7. "syscall"
  8. "unsafe"
  9. )
  10. //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
  11. //go:linkname procIoctl libc_ioctl
  12. var procIoctl uintptr
  13. func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (uintptr, uintptr, syscall.Errno)
  14. // TODO: replace with runtime.KeepAlive when available
  15. //go:noescape
  16. func keepAlive(p unsafe.Pointer)
  17. func ioctl(s, ioc uintptr, arg unsafe.Pointer) error {
  18. _, _, errno := sysvicall6(uintptr(unsafe.Pointer(&procIoctl)), 3, s, ioc, uintptr(arg), 0, 0, 0)
  19. keepAlive(arg)
  20. if errno != 0 {
  21. return error(errno)
  22. }
  23. return nil
  24. }