package unix

Import Path
	internal/syscall/unix (on 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 14, 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 getrandom system call.
func IsNonblock(fd int) (nonblocking bool, err error)
func Openat(dirfd int, path string, flags int, perm uint32) (int, error)
func RecvfromInet6(fd int, p []byte, flags int, from *syscall.SockaddrInet6) (n int, err error)
func RecvmsgInet4(fd int, p, oob []byte, flags int, from *syscall.SockaddrInet4) (n, oobn int, recvflags int, err error)
func RecvmsgInet6(fd int, p, oob []byte, flags int, from *syscall.SockaddrInet6) (n, oobn int, recvflags int, err error)
func SendmsgNInet4(fd int, p, oob []byte, to *syscall.SockaddrInet4, flags int) (n int, err error)
func SendmsgNInet6(fd int, p, oob []byte, to *syscall.SockaddrInet6, flags int) (n int, err error)
func SendtoInet4(fd int, p []byte, flags int, to *syscall.SockaddrInet4) (err error)
func SendtoInet6(fd int, p []byte, flags int, to *syscall.SockaddrInet6) (err 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)
GRND_NONBLOCK means return EAGAIN rather than blocking.
GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.