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.

syscall_darwin_386.go 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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,darwin
  5. package unix
  6. import (
  7. "syscall"
  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 Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
  40. // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
  41. // of darwin/386 the syscall is called sysctl instead of __sysctl.
  42. const SYS___SYSCTL = SYS_SYSCTL
  43. //sys Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
  44. //sys Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64
  45. //sys Fstatfs(fd int, stat *Statfs_t) (err error) = SYS_FSTATFS64
  46. //sys Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) = SYS_GETDIRENTRIES64
  47. //sys getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT64
  48. //sys Lstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64
  49. //sys Stat(path string, stat *Stat_t) (err error) = SYS_STAT64
  50. //sys Statfs(path string, stat *Statfs_t) (err error) = SYS_STATFS64