Sha256: 60e6ae8723891590f2d7488528e6b947f242761ac8bcad7c8426c01b1aadb141

Contents?: true

Size: 1.36 KB

Versions: 16

Compression:

Stored size: 1.36 KB

Contents

// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build aix && ppc
// +build aix,ppc

package unix

//sysnb	Getrlimit(resource int, rlim *Rlimit) (err error) = getrlimit64
//sysnb	Setrlimit(resource int, rlim *Rlimit) (err error) = setrlimit64
//sys	Seek(fd int, offset int64, whence int) (off int64, err error) = lseek64

//sys	mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error)

func setTimespec(sec, nsec int64) Timespec {
	return Timespec{Sec: int32(sec), Nsec: int32(nsec)}
}

func setTimeval(sec, usec int64) Timeval {
	return Timeval{Sec: int32(sec), Usec: int32(usec)}
}

func (iov *Iovec) SetLen(length int) {
	iov.Len = uint32(length)
}

func (msghdr *Msghdr) SetControllen(length int) {
	msghdr.Controllen = uint32(length)
}

func (msghdr *Msghdr) SetIovlen(length int) {
	msghdr.Iovlen = int32(length)
}

func (cmsg *Cmsghdr) SetLen(length int) {
	cmsg.Len = uint32(length)
}

func Fstat(fd int, stat *Stat_t) error {
	return fstat(fd, stat)
}

func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
	return fstatat(dirfd, path, stat, flags)
}

func Lstat(path string, stat *Stat_t) error {
	return lstat(path, stat)
}

func Stat(path string, statptr *Stat_t) error {
	return stat(path, statptr)
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ruby_snowflake_client-1.3.7 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.6 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.5 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.4 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.4.pre.debug ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.3.pre.debug ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.2 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.1 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.3.0 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.2.1 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.2.0 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.1.1 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.1.0 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.0.2 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.0.1 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go
ruby_snowflake_client-1.0.0 ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go