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.
 
 
 

67 lines
1.7 KiB

  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. package unix
  5. import (
  6. "syscall"
  7. "unsafe"
  8. )
  9. func setTimespec(sec, nsec int64) Timespec {
  10. return Timespec{Sec: int32(sec), Nsec: int32(nsec)}
  11. }
  12. func setTimeval(sec, usec int64) Timeval {
  13. return Timeval{Sec: int32(sec), Usec: int32(usec)}
  14. }
  15. //sysnb gettimeofday(tp *Timeval) (sec int32, usec int32, err error)
  16. func Gettimeofday(tv *Timeval) (err error) {
  17. // The tv passed to gettimeofday must be non-nil
  18. // but is otherwise unused. The answers come back
  19. // in the two registers.
  20. sec, usec, err := gettimeofday(tv)
  21. tv.Sec = int32(sec)
  22. tv.Usec = int32(usec)
  23. return err
  24. }
  25. func SetKevent(k *Kevent_t, fd, mode, flags int) {
  26. k.Ident = uint32(fd)
  27. k.Filter = int16(mode)
  28. k.Flags = uint16(flags)
  29. }
  30. func (iov *Iovec) SetLen(length int) {
  31. iov.Len = uint32(length)
  32. }
  33. func (msghdr *Msghdr) SetControllen(length int) {
  34. msghdr.Controllen = uint32(length)
  35. }
  36. func (cmsg *Cmsghdr) SetLen(length int) {
  37. cmsg.Len = uint32(length)
  38. }
  39. func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
  40. var length = uint64(count)
  41. _, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(*offset>>32), uintptr(unsafe.Pointer(&length)), 0, 0, 0, 0)
  42. written = int(length)
  43. if e1 != 0 {
  44. err = e1
  45. }
  46. return
  47. }
  48. func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) // sic
  49. // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
  50. // of darwin/arm the syscall is called sysctl instead of __sysctl.
  51. const SYS___SYSCTL = SYS_SYSCTL