blob: 0bd25ef81f202f2c2ee73ca98c5e0ddff06371a2 [file] [log] [blame]
khenaidooac637102019-01-14 15:44:34 -05001// 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
khenaidood948f772021-08-11 17:49:24 -04005//go:build amd64 && solaris
khenaidooac637102019-01-14 15:44:34 -05006// +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
Scott Baker8461e152019-10-01 14:44:30 -070022func (msghdr *Msghdr) SetIovlen(length int) {
23 msghdr.Iovlen = int32(length)
24}
25
khenaidooac637102019-01-14 15:44:34 -050026func (cmsg *Cmsghdr) SetLen(length int) {
27 cmsg.Len = uint32(length)
28}