blob: fc6ccfd810d9566d8b6aecca86a0e9d4eabb66a5 [file] [log] [blame]
Stephane Barbarie260a5632019-02-26 16:12:49 -05001// Copyright 2019 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
khenaidood948f772021-08-11 17:49:24 -04005//go:build arm64 && netbsd
Stephane Barbarie260a5632019-02-26 16:12:49 -05006// +build arm64,netbsd
7
8package unix
9
10func setTimespec(sec, nsec int64) Timespec {
11 return Timespec{Sec: sec, Nsec: nsec}
12}
13
14func setTimeval(sec, usec int64) Timeval {
15 return Timeval{Sec: sec, Usec: int32(usec)}
16}
17
18func SetKevent(k *Kevent_t, fd, mode, flags int) {
19 k.Ident = uint64(fd)
20 k.Filter = uint32(mode)
21 k.Flags = uint32(flags)
22}
23
24func (iov *Iovec) SetLen(length int) {
25 iov.Len = uint64(length)
26}
27
28func (msghdr *Msghdr) SetControllen(length int) {
29 msghdr.Controllen = uint32(length)
30}
31
Scott Baker8461e152019-10-01 14:44:30 -070032func (msghdr *Msghdr) SetIovlen(length int) {
33 msghdr.Iovlen = int32(length)
34}
35
Stephane Barbarie260a5632019-02-26 16:12:49 -050036func (cmsg *Cmsghdr) SetLen(length int) {
37 cmsg.Len = uint32(length)
38}