aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go')
-rw-r--r--vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go81
1 files changed, 0 insertions, 81 deletions
diff --git a/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go b/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go
deleted file mode 100644
index 7adb98d..0000000
--- a/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go
+++ /dev/null
@@ -1,81 +0,0 @@
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
5// +build amd64,darwin
6
7package unix
8
9import (
10 "syscall"
11 "unsafe"
12)
13
14//sys Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
15
16func Getpagesize() int { return 4096 }
17
18func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
19
20func NsecToTimespec(nsec int64) (ts Timespec) {
21 ts.Sec = nsec / 1e9
22 ts.Nsec = nsec % 1e9
23 return
24}
25
26func TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(tv.Usec)*1e3 }
27
28func NsecToTimeval(nsec int64) (tv Timeval) {
29 nsec += 999 // round up to microsecond
30 tv.Usec = int32(nsec % 1e9 / 1e3)
31 tv.Sec = int64(nsec / 1e9)
32 return
33}
34
35//sysnb gettimeofday(tp *Timeval) (sec int64, usec int32, err error)
36func Gettimeofday(tv *Timeval) (err error) {
37 // The tv passed to gettimeofday must be non-nil
38 // but is otherwise unused. The answers come back
39 // in the two registers.
40 sec, usec, err := gettimeofday(tv)
41 tv.Sec = sec
42 tv.Usec = usec
43 return err
44}
45
46func SetKevent(k *Kevent_t, fd, mode, flags int) {
47 k.Ident = uint64(fd)
48 k.Filter = int16(mode)
49 k.Flags = uint16(flags)
50}
51
52func (iov *Iovec) SetLen(length int) {
53 iov.Len = uint64(length)
54}
55
56func (msghdr *Msghdr) SetControllen(length int) {
57 msghdr.Controllen = uint32(length)
58}
59
60func (cmsg *Cmsghdr) SetLen(length int) {
61 cmsg.Len = uint32(length)
62}
63
64func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
65 var length = uint64(count)
66
67 _, _, e1 := Syscall6(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(unsafe.Pointer(&length)), 0, 0)
68
69 written = int(length)
70
71 if e1 != 0 {
72 err = e1
73 }
74 return
75}
76
77func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
78
79// SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
80// of darwin/amd64 the syscall is called sysctl instead of __sysctl.
81const SYS___SYSCTL = SYS_SYSCTL