package unix
Import Path
internal/syscall/unix (on go.dev)
Dependency Relation
imports 3 packages, and imported by 4 packages
Involved Source Files
at.go
at_fstatat.go
at_sysnum_linux.go
at_sysnum_newfstatat_linux.go
constants.go
copy_file_range_linux.go
eaccess_linux.go
fcntl_unix.go
getrandom.go
getrandom_linux.go
kernel_version_linux.go
net.go
nonblocking_unix.go
sysnum_linux_amd64.go
Package-Level Type Names (only one, which is 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
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)
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.
Currently only implemented for Linux.
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 (only one, which is unexported)
Package-Level Constants (total 15, in which 10 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.
const UTIME_OMIT = 1073741822
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |