blob: 0bd25ef81f202f2c2ee73ca98c5e0ddff06371a2 [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001// 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. Bainbridgebd6b2882021-08-26 13:31:02 +00005//go:build amd64 && solaris
Zack Williamse940c7a2019-08-21 14:25:39 -07006// +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
divyadesai19009132020-03-04 12:58:08 +000022func (msghdr *Msghdr) SetIovlen(length int) {
23 msghdr.Iovlen = int32(length)
24}
25
Zack Williamse940c7a2019-08-21 14:25:39 -070026func (cmsg *Cmsghdr) SetLen(length int) {
27 cmsg.Len = uint32(length)
28}