aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go')
-rw-r--r--vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go44
1 files changed, 0 insertions, 44 deletions
diff --git a/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go b/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go
deleted file mode 100644
index 1b6dcbe..0000000
--- a/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go
+++ /dev/null
@@ -1,44 +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,netbsd
6
7package unix
8
9func Getpagesize() int { return 4096 }
10
11func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
12
13func NsecToTimespec(nsec int64) (ts Timespec) {
14 ts.Sec = int64(nsec / 1e9)
15 ts.Nsec = int64(nsec % 1e9)
16 return
17}
18
19func TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(tv.Usec)*1e3 }
20
21func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Usec = int32(nsec % 1e9 / 1e3)
24 tv.Sec = int64(nsec / 1e9)
25 return
26}
27
28func SetKevent(k *Kevent_t, fd, mode, flags int) {
29 k.Ident = uint64(fd)
30 k.Filter = uint32(mode)
31 k.Flags = uint32(flags)
32}
33
34func (iov *Iovec) SetLen(length int) {
35 iov.Len = uint64(length)
36}
37
38func (msghdr *Msghdr) SetControllen(length int) {
39 msghdr.Controllen = uint32(length)
40}
41
42func (cmsg *Cmsghdr) SetLen(length int) {
43 cmsg.Len = uint32(length)
44}