package unix

Import Path
	internal/syscall/unix (on golang.org and go.dev)

Dependency Relation
	imports 3 packages, and imported by 3 packages


Package-Level Type Names (only one, which is exported)
/* sort exporteds by: | */
GetRandomFlag is a flag supported by the getrandom system call. func GetRandom(p []byte, flags GetRandomFlag) (n int, err error) const GRND_NONBLOCK const GRND_RANDOM
Package-Level Functions (total 6, all are exported)
func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
func Fstatat(dirfd int, path string, stat *syscall.Stat_t, flags int) 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(fd int) (nonblocking bool, err error)
func Openat(dirfd int, path string, flags int, perm uint32) (int, error)
func Unlinkat(dirfd int, path string, flags int) error
Package-Level Variables (total 2, in which 1 are exported)
FcntlSyscall is the number for the fcntl system call. This is usually SYS_FCNTL, but can be overridden to SYS_FCNTL64.
Package-Level Constants (total 9, in which 4 are exported)
const AT_REMOVEDIR = 512
GRND_NONBLOCK means return EAGAIN rather than blocking.
GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.