blob: 0bd25ef81f202f2c2ee73ca98c5e0ddff06371a2 [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001// 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
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +00005//go:build amd64 && solaris
Don Newton98fd8812019-09-23 15:15:02 -04006// +build amd64,solaris
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: usec}
16}
17
18func (iov *Iovec) SetLen(length int) {
19 iov.Len = uint64(length)
20}
21
Don Newton7577f072020-01-06 12:41:11 -050022func (msghdr *Msghdr) SetIovlen(length int) {
23 msghdr.Iovlen = int32(length)
24}
25
Don Newton98fd8812019-09-23 15:15:02 -040026func (cmsg *Cmsghdr) SetLen(length int) {
27 cmsg.Len = uint32(length)
28}