unix

package standard library
go1.15.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 12, 2020 License: BSD-3-Clause Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const AT_REMOVEDIR = 0x200
View Source
const AT_SYMLINK_NOFOLLOW = 0x100

Variables

View Source
var FcntlSyscall uintptr = syscall.SYS_FCNTL

FcntlSyscall is the number for the fcntl system call. This is usually SYS_FCNTL, but can be overridden to SYS_FCNTL64.

Functions

func CopyFileRange added in go1.15

func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)

func Fstatat added in go1.12

func Fstatat(dirfd int, path string, stat *syscall.Stat_t, flags int) error

func GetRandom

func GetRandom(p []byte, flags GetRandomFlag) (n int, err error)

GetRandom calls the Linux getrandom system call. See https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=c6e9d6f38894798696f23c8084ca7edbf16ee895

func IsNonblock added in go1.11

func IsNonblock(fd int) (nonblocking bool, err error)

func Openat added in go1.12

func Openat(dirfd int, path string, flags int, perm uint32) (int, error)

func Unlinkat added in go1.12

func Unlinkat(dirfd int, path string, flags int) error

Types

type GetRandomFlag

type GetRandomFlag uintptr

GetRandomFlag is a flag supported by the getrandom system call.

const (
	// GRND_NONBLOCK means return EAGAIN rather than blocking.
	GRND_NONBLOCK GetRandomFlag = 0x0001

	// GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.
	GRND_RANDOM GetRandomFlag = 0x0002
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL