package unix

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

Dependency Relation
	imports 3 packages, and imported by 4 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 19, in which 18 are exported)
func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
func Fcntl(fd int, cmd int, arg int) (int, 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)
KernelVersion returns major and minor kernel version numbers, parsed from the syscall.Uname's Release field, or 0, 0 if the version can't be obtained or parsed. Currently only implemented for Linux.
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 (only one, which is unexported)
Package-Level Constants (total 15, in which 10 are exported)
const AT_FDCWD = -100
GRND_NONBLOCK means return EAGAIN rather than blocking.
GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.
const R_OK = 4
const UTIME_OMIT = 1073741822
const W_OK = 2
const X_OK = 1