syscall_freebsd_386.go 1.5 KB

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