syscall_dragonfly_amd64.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // Copyright 2009 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 "unsafe"
  6. func Getpagesize() int { return 4096 }
  7. func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
  8. func NsecToTimespec(nsec int64) (ts Timespec) {
  9. ts.Sec = nsec / 1e9
  10. ts.Nsec = nsec % 1e9
  11. return
  12. }
  13. func TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(tv.Usec)*1e3 }
  14. func NsecToTimeval(nsec int64) (tv Timeval) {
  15. nsec += 999 // round up to microsecond
  16. tv.Usec = nsec % 1e9 / 1e3
  17. tv.Sec = int64(nsec / 1e9)
  18. return
  19. }
  20. func SetKevent(k *Kevent_t, fd, mode, flags int) {
  21. k.Ident = uint64(fd)
  22. k.Filter = int16(mode)
  23. k.Flags = uint16(flags)
  24. }
  25. func (iov *Iovec) SetLen(length int) {
  26. iov.Len = uint64(length)
  27. }
  28. func (msghdr *Msghdr) SetControllen(length int) {
  29. msghdr.Controllen = uint32(length)
  30. }
  31. func (cmsg *Cmsghdr) SetLen(length int) {
  32. cmsg.Len = uint32(length)
  33. }
  34. func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
  35. var writtenOut uint64 = 0
  36. _, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)
  37. written = int(writtenOut)
  38. if e1 != 0 {
  39. err = e1
  40. }
  41. return
  42. }
  43. func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno)