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//go:build amd64 && solaris
6// +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
22func (msghdr *Msghdr) SetIovlen(length int) {
23	msghdr.Iovlen = int32(length)
24}
25
26func (cmsg *Cmsghdr) SetLen(length int) {
27	cmsg.Len = uint32(length)
28}
29