(t time.Time)
| 145 | func Socket(domain, typ, proto int) (fd int, err error) { return unix.Socket(domain, typ, proto) } |
| 146 | func Syscall(a, b, c, d uintptr) (uintptr, uintptr, Errno) { return unix.Syscall(a, b, c, d) } |
| 147 | func TimeToTimespec(t time.Time) (Timespec, error) { return unix.TimeToTimespec(t) } |
| 148 | func Uname(s *Utsname) error { return unix.Uname(s) } |
| 149 | func NsecToTimeval(nsec int64) Timeval { return unix.NsecToTimeval(nsec) } |
| 150 | func SetsockoptTimeval(fd, level, opt int, tv *Timeval) error { |
no outgoing calls
searching dependent graphs…