usb-ks

USB Killswitch
git clone git://git.laack.co/usb-ks.git
Log | Files | Refs | README | LICENSE

syscall_solaris_amd64.go (617B)


      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 
      8 package unix
      9 
     10 func setTimespec(sec, nsec int64) Timespec {
     11 	return Timespec{Sec: sec, Nsec: nsec}
     12 }
     13 
     14 func setTimeval(sec, usec int64) Timeval {
     15 	return Timeval{Sec: sec, Usec: usec}
     16 }
     17 
     18 func (iov *Iovec) SetLen(length int) {
     19 	iov.Len = uint64(length)
     20 }
     21 
     22 func (msghdr *Msghdr) SetIovlen(length int) {
     23 	msghdr.Iovlen = int32(length)
     24 }
     25 
     26 func (cmsg *Cmsghdr) SetLen(length int) {
     27 	cmsg.Len = uint32(length)
     28 }