package unix
Import Path
internal/syscall/unix (on go.dev)
Dependency Relation
imports 4 packages, and imported by 5 packages
Involved Source Files
at.go
at_fstatat.go
at_sysnum_linux.go
at_sysnum_newfstatat_linux.go
constants.go
copy_file_range_unix.go
eaccess.go
faccessat_syscall.go
fcntl_unix.go
getrandom.go
getrandom_linux.go
kernel_version_linux.go
net.go
nofollow_posix.go
nonblocking_unix.go
pidfd_linux.go
siginfo_linux.go
siginfo_linux_other.go
syscall.go
sysnum_linux_amd64.go
tcsetpgrp_linux.go
waitid_linux.go
Package-Level Type Names (total 3, in which 2 are exported)
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
SiginfoChild is a struct filled in by Linux waitid syscall.
In C, siginfo_t contains a union with multiple members;
this struct corresponds to one used when Signo is SIGCHLD.
NOTE fields are exported to be used by TestSiginfoChildLayout.
Pid int32
siErrnoCode.Code int32
siErrnoCode.Errno int32
Signo int32
Status int32
Uid uint32
// Two int32 fields, swapped on MIPS.
WaitStatus converts SiginfoChild, as filled in by the waitid syscall,
to syscall.WaitStatus.
func Waitid(idType int, id int, info *SiginfoChild, options int, rusage *syscall.Rusage) error
Package-Level Functions (total 26, in which 24 are exported)
func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
GetRandom calls the getrandom system call.
func HasNonblockFlag(flag int) bool 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.
func RecvfromInet4(fd int, p []byte, flags int, from *syscall.SockaddrInet4) (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)
Package-Level Variables (total 3, none are exported)
Package-Level Constants (total 34, in which 13 are exported)
const AT_EACCESS = 512 const AT_REMOVEDIR = 512 const AT_SYMLINK_NOFOLLOW = 256
GRND_NONBLOCK means return EAGAIN rather than blocking.
GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.
NoFollowErrno is the error returned from open/openat called with
O_NOFOLLOW flag, when the trailing component (basename) of the path
is a symbolic link.
const UTIME_OMIT = 1073741822
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)