syscall_aix_ppc.go raw

   1  // Copyright 2018 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 aix && ppc
   6  
   7  package unix
   8  
   9  //sysnb	Getrlimit(resource int, rlim *Rlimit) (err error) = getrlimit64
  10  //sys	Seek(fd int, offset int64, whence int) (off int64, err error) = lseek64
  11  
  12  //sys	mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)
  13  
  14  func setTimespec(sec, nsec int64) Timespec {
  15  	return Timespec{Sec: int32(sec), Nsec: int32(nsec)}
  16  }
  17  
  18  func setTimeval(sec, usec int64) Timeval {
  19  	return Timeval{Sec: int32(sec), Usec: int32(usec)}
  20  }
  21  
  22  func (iov *Iovec) SetLen(length int) {
  23  	iov.Len = uint32(length)
  24  }
  25  
  26  func (msghdr *Msghdr) SetControllen(length int) {
  27  	msghdr.Controllen = uint32(length)
  28  }
  29  
  30  func (msghdr *Msghdr) SetIovlen(length int) {
  31  	msghdr.Iovlen = int32(length)
  32  }
  33  
  34  func (cmsg *Cmsghdr) SetLen(length int) {
  35  	cmsg.Len = uint32(length)
  36  }
  37  
  38  func Fstat(fd int, stat *Stat_t) error {
  39  	return fstat(fd, stat)
  40  }
  41  
  42  func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
  43  	return fstatat(dirfd, path, stat, flags)
  44  }
  45  
  46  func Lstat(path string, stat *Stat_t) error {
  47  	return lstat(path, stat)
  48  }
  49  
  50  func Stat(path string, statptr *Stat_t) error {
  51  	return stat(path, statptr)
  52  }
  53