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.
 
 

66 lines
1.5 KiB

  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. //go:build amd64 && freebsd
  5. // +build amd64,freebsd
  6. package unix
  7. import (
  8. "syscall"
  9. "unsafe"
  10. )
  11. func setTimespec(sec, nsec int64) Timespec {
  12. return Timespec{Sec: sec, Nsec: nsec}
  13. }
  14. func setTimeval(sec, usec int64) Timeval {
  15. return Timeval{Sec: sec, Usec: usec}
  16. }
  17. func SetKevent(k *Kevent_t, fd, mode, flags int) {
  18. k.Ident = uint64(fd)
  19. k.Filter = int16(mode)
  20. k.Flags = uint16(flags)
  21. }
  22. func (iov *Iovec) SetLen(length int) {
  23. iov.Len = uint64(length)
  24. }
  25. func (msghdr *Msghdr) SetControllen(length int) {
  26. msghdr.Controllen = uint32(length)
  27. }
  28. func (msghdr *Msghdr) SetIovlen(length int) {
  29. msghdr.Iovlen = int32(length)
  30. }
  31. func (cmsg *Cmsghdr) SetLen(length int) {
  32. cmsg.Len = uint32(length)
  33. }
  34. func (d *PtraceIoDesc) SetLen(length int) {
  35. d.Len = uint64(length)
  36. }
  37. func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
  38. var writtenOut uint64 = 0
  39. _, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)
  40. written = int(writtenOut)
  41. if e1 != 0 {
  42. err = e1
  43. }
  44. return
  45. }
  46. func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
  47. func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
  48. return ptracePtr(PT_GETFSBASE, pid, unsafe.Pointer(fsbase), 0)
  49. }