You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

7304 lines
302 KiB

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#375EAB">
<title>syscall - The Go Programming Language</title>
<link type="text/css" rel="stylesheet" href="../../lib/godoc/style.css">
<link rel="stylesheet" href="../../lib/godoc/jquery.treeview.css">
<script type="text/javascript">window.initFuncs = [];</script>
</head>
<body>
<div id='lowframe' style="position: fixed; bottom: 0; left: 0; height: 0; width: 100%; border-top: thin solid grey; background-color: white; overflow: auto;">
...
</div><!-- #lowframe -->
<div id="topbar" class="wide"><div class="container">
<div class="top-heading" id="heading-wide"><a href="http://localhost:6060/">The Go Programming Language</a></div>
<div class="top-heading" id="heading-narrow"><a href="http://localhost:6060/">Go</a></div>
<a href="index.html#" id="menu-button"><span id="menu-button-arrow">&#9661;</span></a>
<form method="GET" action="http://localhost:6060/search">
<div id="menu">
<a href="http://localhost:6060/doc/">Documents</a>
<a href="http://localhost:6060/pkg/">Packages</a>
<a href="http://localhost:6060/project/">The Project</a>
<a href="http://localhost:6060/help/">Help</a>
<a href="http://localhost:6060/blog/">Blog</a>
<input type="text" id="search" name="q" class="inactive" value="Search" placeholder="Search">
</div>
</form>
</div></div>
<div id="page" class="wide">
<div class="container">
<h1>Package syscall</h1>
<div id="nav"></div>
<!--
Copyright 2009 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<!--
Note: Static (i.e., not template-generated) href and id
attributes start with "pkg-" to make it impossible for
them to conflict with generated attributes (some of which
correspond to Go identifiers).
-->
<script type='text/javascript'>
document.ANALYSIS_DATA = null;
document.CALLGRAPH = null;
</script>
<div id="short-nav">
<dl>
<dd><code>import "syscall"</code></dd>
</dl>
<dl>
<dd><a href="index.html#pkg-overview" class="overviewLink">Overview</a></dd>
<dd><a href="index.html#pkg-index" class="indexLink">Index</a></dd>
</dl>
</div>
<!-- The package's Name is printed as title by the top-level template -->
<div id="pkg-overview" class="toggleVisible">
<div class="collapsed">
<h2 class="toggleButton" title="Click to show Overview section">Overview ▹</h2>
</div>
<div class="expanded">
<h2 class="toggleButton" title="Click to hide Overview section">Overview ▾</h2>
<p>
Package syscall contains an interface to the low-level operating system
primitives. The details vary depending on the underlying system, and
by default, godoc will display the syscall documentation for the current
system. If you want godoc to display syscall documentation for another
system, set $GOOS and $GOARCH to the desired system. For example, if
you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
to freebsd and $GOARCH to arm.
The primary use of syscall is inside other packages that provide a more
portable interface to the system, such as &#34;os&#34;, &#34;time&#34; and &#34;net&#34;. Use
those packages rather than this one if you can.
For details of the functions and data types in this package consult
the manuals for the appropriate operating system.
These calls return err == nil to indicate success; otherwise
err is an operating system error describing the failure.
On most systems, that error has type syscall.Errno.
</p>
<p>
NOTE: This package is locked down. Code outside the standard
Go repository should be migrated to use the corresponding
package in the golang.org/x/sys repository. That is also where updates
required by new systems or versions should be applied.
See <a href="https://golang.org/s/go1.4-syscall">https://golang.org/s/go1.4-syscall</a> for more information.
</p>
</div>
</div>
<div id="pkg-index" class="toggleVisible">
<div class="collapsed">
<h2 class="toggleButton" title="Click to show Index section">Index ▹</h2>
</div>
<div class="expanded">
<h2 class="toggleButton" title="Click to hide Index section">Index ▾</h2>
<!-- Table of contents for API; must be named manual-nav to turn off auto nav. -->
<div id="manual-nav">
<dl>
<dd><a href="index.html#pkg-constants">Constants</a></dd>
<dd><a href="index.html#pkg-variables">Variables</a></dd>
<dd><a href="index.html#Accept">func Accept(fd int) (nfd int, sa Sockaddr, err error)</a></dd>
<dd><a href="index.html#Accept4">func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error)</a></dd>
<dd><a href="index.html#Access">func Access(path string, mode uint32) (err error)</a></dd>
<dd><a href="index.html#Acct">func Acct(path string) (err error)</a></dd>
<dd><a href="index.html#Adjtimex">func Adjtimex(buf *Timex) (state int, err error)</a></dd>
<dd><a href="index.html#AttachLsf">func AttachLsf(fd int, i []SockFilter) error</a></dd>
<dd><a href="index.html#Bind">func Bind(fd int, sa Sockaddr) (err error)</a></dd>
<dd><a href="index.html#BindToDevice">func BindToDevice(fd int, device string) (err error)</a></dd>
<dd><a href="index.html#BytePtrFromString">func BytePtrFromString(s string) (*byte, error)</a></dd>
<dd><a href="index.html#ByteSliceFromString">func ByteSliceFromString(s string) ([]byte, error)</a></dd>
<dd><a href="index.html#Chdir">func Chdir(path string) (err error)</a></dd>
<dd><a href="index.html#Chmod">func Chmod(path string, mode uint32) (err error)</a></dd>
<dd><a href="index.html#Chown">func Chown(path string, uid int, gid int) (err error)</a></dd>
<dd><a href="index.html#Chroot">func Chroot(path string) (err error)</a></dd>
<dd><a href="index.html#Clearenv">func Clearenv()</a></dd>
<dd><a href="index.html#Close">func Close(fd int) (err error)</a></dd>
<dd><a href="index.html#CloseOnExec">func CloseOnExec(fd int)</a></dd>
<dd><a href="index.html#CmsgLen">func CmsgLen(datalen int) int</a></dd>
<dd><a href="index.html#CmsgSpace">func CmsgSpace(datalen int) int</a></dd>
<dd><a href="index.html#Connect">func Connect(fd int, sa Sockaddr) (err error)</a></dd>
<dd><a href="index.html#Creat">func Creat(path string, mode uint32) (fd int, err error)</a></dd>
<dd><a href="index.html#DetachLsf">func DetachLsf(fd int) error</a></dd>
<dd><a href="index.html#Dup">func Dup(oldfd int) (fd int, err error)</a></dd>
<dd><a href="index.html#Dup2">func Dup2(oldfd int, newfd int) (err error)</a></dd>
<dd><a href="index.html#Dup3">func Dup3(oldfd int, newfd int, flags int) (err error)</a></dd>
<dd><a href="index.html#Environ">func Environ() []string</a></dd>
<dd><a href="index.html#EpollCreate">func EpollCreate(size int) (fd int, err error)</a></dd>
<dd><a href="index.html#EpollCreate1">func EpollCreate1(flag int) (fd int, err error)</a></dd>
<dd><a href="index.html#EpollCtl">func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error)</a></dd>
<dd><a href="index.html#EpollWait">func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)</a></dd>
<dd><a href="index.html#Exec">func Exec(argv0 string, argv []string, envv []string) (err error)</a></dd>
<dd><a href="index.html#Exit">func Exit(code int)</a></dd>
<dd><a href="index.html#Faccessat">func Faccessat(dirfd int, path string, mode uint32, flags int) (err error)</a></dd>
<dd><a href="index.html#Fallocate">func Fallocate(fd int, mode uint32, off int64, len int64) (err error)</a></dd>
<dd><a href="index.html#Fchdir">func Fchdir(fd int) (err error)</a></dd>
<dd><a href="index.html#Fchmod">func Fchmod(fd int, mode uint32) (err error)</a></dd>
<dd><a href="index.html#Fchmodat">func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)</a></dd>
<dd><a href="index.html#Fchown">func Fchown(fd int, uid int, gid int) (err error)</a></dd>
<dd><a href="index.html#Fchownat">func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)</a></dd>
<dd><a href="index.html#FcntlFlock">func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error</a></dd>
<dd><a href="index.html#Fdatasync">func Fdatasync(fd int) (err error)</a></dd>
<dd><a href="index.html#Flock">func Flock(fd int, how int) (err error)</a></dd>
<dd><a href="index.html#ForkExec">func ForkExec(argv0 string, argv []string, attr *ProcAttr) (pid int, err error)</a></dd>
<dd><a href="index.html#Fstat">func Fstat(fd int, stat *Stat_t) (err error)</a></dd>
<dd><a href="index.html#Fstatfs">func Fstatfs(fd int, buf *Statfs_t) (err error)</a></dd>
<dd><a href="index.html#Fsync">func Fsync(fd int) (err error)</a></dd>
<dd><a href="index.html#Ftruncate">func Ftruncate(fd int, length int64) (err error)</a></dd>
<dd><a href="index.html#Futimes">func Futimes(fd int, tv []Timeval) (err error)</a></dd>
<dd><a href="index.html#Futimesat">func Futimesat(dirfd int, path string, tv []Timeval) (err error)</a></dd>
<dd><a href="index.html#Getcwd">func Getcwd(buf []byte) (n int, err error)</a></dd>
<dd><a href="index.html#Getdents">func Getdents(fd int, buf []byte) (n int, err error)</a></dd>
<dd><a href="index.html#Getegid">func Getegid() (egid int)</a></dd>
<dd><a href="index.html#Getenv">func Getenv(key string) (value string, found bool)</a></dd>
<dd><a href="index.html#Geteuid">func Geteuid() (euid int)</a></dd>
<dd><a href="index.html#Getgid">func Getgid() (gid int)</a></dd>
<dd><a href="index.html#Getgroups">func Getgroups() (gids []int, err error)</a></dd>
<dd><a href="index.html#Getpagesize">func Getpagesize() int</a></dd>
<dd><a href="index.html#Getpgid">func Getpgid(pid int) (pgid int, err error)</a></dd>
<dd><a href="index.html#Getpgrp">func Getpgrp() (pid int)</a></dd>
<dd><a href="index.html#Getpid">func Getpid() (pid int)</a></dd>
<dd><a href="index.html#Getppid">func Getppid() (ppid int)</a></dd>
<dd><a href="index.html#Getpriority">func Getpriority(which int, who int) (prio int, err error)</a></dd>
<dd><a href="index.html#Getrlimit">func Getrlimit(resource int, rlim *Rlimit) (err error)</a></dd>
<dd><a href="index.html#Getrusage">func Getrusage(who int, rusage *Rusage) (err error)</a></dd>
<dd><a href="index.html#GetsockoptInet4Addr">func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error)</a></dd>
<dd><a href="index.html#GetsockoptInt">func GetsockoptInt(fd, level, opt int) (value int, err error)</a></dd>
<dd><a href="index.html#Gettid">func Gettid() (tid int)</a></dd>
<dd><a href="index.html#Gettimeofday">func Gettimeofday(tv *Timeval) (err error)</a></dd>
<dd><a href="index.html#Getuid">func Getuid() (uid int)</a></dd>
<dd><a href="index.html#Getwd">func Getwd() (wd string, err error)</a></dd>
<dd><a href="index.html#Getxattr">func Getxattr(path string, attr string, dest []byte) (sz int, err error)</a></dd>
<dd><a href="index.html#InotifyAddWatch">func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error)</a></dd>
<dd><a href="index.html#InotifyInit">func InotifyInit() (fd int, err error)</a></dd>
<dd><a href="index.html#InotifyInit1">func InotifyInit1(flags int) (fd int, err error)</a></dd>
<dd><a href="index.html#InotifyRmWatch">func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error)</a></dd>
<dd><a href="index.html#Ioperm">func Ioperm(from int, num int, on int) (err error)</a></dd>
<dd><a href="index.html#Iopl">func Iopl(level int) (err error)</a></dd>
<dd><a href="index.html#Kill">func Kill(pid int, sig Signal) (err error)</a></dd>
<dd><a href="index.html#Klogctl">func Klogctl(typ int, buf []byte) (n int, err error)</a></dd>
<dd><a href="index.html#Lchown">func Lchown(path string, uid int, gid int) (err error)</a></dd>
<dd><a href="index.html#Link">func Link(oldpath string, newpath string) (err error)</a></dd>
<dd><a href="index.html#Listen">func Listen(s int, n int) (err error)</a></dd>
<dd><a href="index.html#Listxattr">func Listxattr(path string, dest []byte) (sz int, err error)</a></dd>
<dd><a href="index.html#LsfSocket">func LsfSocket(ifindex, proto int) (int, error)</a></dd>
<dd><a href="index.html#Lstat">func Lstat(path string, stat *Stat_t) (err error)</a></dd>
<dd><a href="index.html#Madvise">func Madvise(b []byte, advice int) (err error)</a></dd>
<dd><a href="index.html#Mkdir">func Mkdir(path string, mode uint32) (err error)</a></dd>
<dd><a href="index.html#Mkdirat">func Mkdirat(dirfd int, path string, mode uint32) (err error)</a></dd>
<dd><a href="index.html#Mkfifo">func Mkfifo(path string, mode uint32) (err error)</a></dd>
<dd><a href="index.html#Mknod">func Mknod(path string, mode uint32, dev int) (err error)</a></dd>
<dd><a href="index.html#Mknodat">func Mknodat(dirfd int, path string, mode uint32, dev int) (err error)</a></dd>
<dd><a href="index.html#Mlock">func Mlock(b []byte) (err error)</a></dd>
<dd><a href="index.html#Mlockall">func Mlockall(flags int) (err error)</a></dd>
<dd><a href="index.html#Mmap">func Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error)</a></dd>
<dd><a href="index.html#Mount">func Mount(source string, target string, fstype string, flags uintptr, data string) (err error)</a></dd>
<dd><a href="index.html#Mprotect">func Mprotect(b []byte, prot int) (err error)</a></dd>
<dd><a href="index.html#Munlock">func Munlock(b []byte) (err error)</a></dd>
<dd><a href="index.html#Munlockall">func Munlockall() (err error)</a></dd>
<dd><a href="index.html#Munmap">func Munmap(b []byte) (err error)</a></dd>
<dd><a href="index.html#Nanosleep">func Nanosleep(time *Timespec, leftover *Timespec) (err error)</a></dd>
<dd><a href="index.html#NetlinkRIB">func NetlinkRIB(proto, family int) ([]byte, error)</a></dd>
<dd><a href="index.html#Open">func Open(path string, mode int, perm uint32) (fd int, err error)</a></dd>
<dd><a href="index.html#Openat">func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error)</a></dd>
<dd><a href="index.html#ParseDirent">func ParseDirent(buf []byte, max int, names []string) (consumed int, count int, newnames []string)</a></dd>
<dd><a href="index.html#ParseNetlinkMessage">func ParseNetlinkMessage(b []byte) ([]NetlinkMessage, error)</a></dd>
<dd><a href="index.html#ParseNetlinkRouteAttr">func ParseNetlinkRouteAttr(m *NetlinkMessage) ([]NetlinkRouteAttr, error)</a></dd>
<dd><a href="index.html#ParseSocketControlMessage">func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error)</a></dd>
<dd><a href="index.html#ParseUnixRights">func ParseUnixRights(m *SocketControlMessage) ([]int, error)</a></dd>
<dd><a href="index.html#Pause">func Pause() (err error)</a></dd>
<dd><a href="index.html#Pipe">func Pipe(p []int) (err error)</a></dd>
<dd><a href="index.html#Pipe2">func Pipe2(p []int, flags int) (err error)</a></dd>
<dd><a href="index.html#PivotRoot">func PivotRoot(newroot string, putold string) (err error)</a></dd>
<dd><a href="index.html#Pread">func Pread(fd int, p []byte, offset int64) (n int, err error)</a></dd>
<dd><a href="index.html#PtraceAttach">func PtraceAttach(pid int) (err error)</a></dd>
<dd><a href="index.html#PtraceCont">func PtraceCont(pid int, signal int) (err error)</a></dd>
<dd><a href="index.html#PtraceDetach">func PtraceDetach(pid int) (err error)</a></dd>
<dd><a href="index.html#PtraceGetEventMsg">func PtraceGetEventMsg(pid int) (msg uint, err error)</a></dd>
<dd><a href="index.html#PtraceGetRegs">func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error)</a></dd>
<dd><a href="index.html#PtracePeekData">func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err error)</a></dd>
<dd><a href="index.html#PtracePeekText">func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error)</a></dd>
<dd><a href="index.html#PtracePokeData">func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err error)</a></dd>
<dd><a href="index.html#PtracePokeText">func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err error)</a></dd>
<dd><a href="index.html#PtraceSetOptions">func PtraceSetOptions(pid int, options int) (err error)</a></dd>
<dd><a href="index.html#PtraceSetRegs">func PtraceSetRegs(pid int, regs *PtraceRegs) (err error)</a></dd>
<dd><a href="index.html#PtraceSingleStep">func PtraceSingleStep(pid int) (err error)</a></dd>
<dd><a href="index.html#PtraceSyscall">func PtraceSyscall(pid int, signal int) (err error)</a></dd>
<dd><a href="index.html#Pwrite">func Pwrite(fd int, p []byte, offset int64) (n int, err error)</a></dd>
<dd><a href="index.html#RawSyscall">func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
<dd><a href="index.html#RawSyscall6">func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
<dd><a href="index.html#Read">func Read(fd int, p []byte) (n int, err error)</a></dd>
<dd><a href="index.html#ReadDirent">func ReadDirent(fd int, buf []byte) (n int, err error)</a></dd>
<dd><a href="index.html#Readlink">func Readlink(path string, buf []byte) (n int, err error)</a></dd>
<dd><a href="index.html#Reboot">func Reboot(cmd int) (err error)</a></dd>
<dd><a href="index.html#Recvfrom">func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err error)</a></dd>
<dd><a href="index.html#Recvmsg">func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error)</a></dd>
<dd><a href="index.html#Removexattr">func Removexattr(path string, attr string) (err error)</a></dd>
<dd><a href="index.html#Rename">func Rename(oldpath string, newpath string) (err error)</a></dd>
<dd><a href="index.html#Renameat">func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)</a></dd>
<dd><a href="index.html#Rmdir">func Rmdir(path string) error</a></dd>
<dd><a href="index.html#Seek">func Seek(fd int, offset int64, whence int) (off int64, err error)</a></dd>
<dd><a href="index.html#Select">func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)</a></dd>
<dd><a href="index.html#Sendfile">func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)</a></dd>
<dd><a href="index.html#Sendmsg">func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error)</a></dd>
<dd><a href="index.html#SendmsgN">func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error)</a></dd>
<dd><a href="index.html#Sendto">func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error)</a></dd>
<dd><a href="index.html#SetLsfPromisc">func SetLsfPromisc(name string, m bool) error</a></dd>
<dd><a href="index.html#SetNonblock">func SetNonblock(fd int, nonblocking bool) (err error)</a></dd>
<dd><a href="index.html#Setdomainname">func Setdomainname(p []byte) (err error)</a></dd>
<dd><a href="index.html#Setenv">func Setenv(key, value string) error</a></dd>
<dd><a href="index.html#Setfsgid">func Setfsgid(gid int) (err error)</a></dd>
<dd><a href="index.html#Setfsuid">func Setfsuid(uid int) (err error)</a></dd>
<dd><a href="index.html#Setgid">func Setgid(gid int) (err error)</a></dd>
<dd><a href="index.html#Setgroups">func Setgroups(gids []int) (err error)</a></dd>
<dd><a href="index.html#Sethostname">func Sethostname(p []byte) (err error)</a></dd>
<dd><a href="index.html#Setpgid">func Setpgid(pid int, pgid int) (err error)</a></dd>
<dd><a href="index.html#Setpriority">func Setpriority(which int, who int, prio int) (err error)</a></dd>
<dd><a href="index.html#Setregid">func Setregid(rgid int, egid int) (err error)</a></dd>
<dd><a href="index.html#Setresgid">func Setresgid(rgid int, egid int, sgid int) (err error)</a></dd>
<dd><a href="index.html#Setresuid">func Setresuid(ruid int, euid int, suid int) (err error)</a></dd>
<dd><a href="index.html#Setreuid">func Setreuid(ruid int, euid int) (err error)</a></dd>
<dd><a href="index.html#Setrlimit">func Setrlimit(resource int, rlim *Rlimit) (err error)</a></dd>
<dd><a href="index.html#Setsid">func Setsid() (pid int, err error)</a></dd>
<dd><a href="index.html#SetsockoptByte">func SetsockoptByte(fd, level, opt int, value byte) (err error)</a></dd>
<dd><a href="index.html#SetsockoptICMPv6Filter">func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) error</a></dd>
<dd><a href="index.html#SetsockoptIPMreq">func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error)</a></dd>
<dd><a href="index.html#SetsockoptIPMreqn">func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error)</a></dd>
<dd><a href="index.html#SetsockoptIPv6Mreq">func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error)</a></dd>
<dd><a href="index.html#SetsockoptInet4Addr">func SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error)</a></dd>
<dd><a href="index.html#SetsockoptInt">func SetsockoptInt(fd, level, opt int, value int) (err error)</a></dd>
<dd><a href="index.html#SetsockoptLinger">func SetsockoptLinger(fd, level, opt int, l *Linger) (err error)</a></dd>
<dd><a href="index.html#SetsockoptString">func SetsockoptString(fd, level, opt int, s string) (err error)</a></dd>
<dd><a href="index.html#SetsockoptTimeval">func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error)</a></dd>
<dd><a href="index.html#Settimeofday">func Settimeofday(tv *Timeval) (err error)</a></dd>
<dd><a href="index.html#Setuid">func Setuid(uid int) (err error)</a></dd>
<dd><a href="index.html#Setxattr">func Setxattr(path string, attr string, data []byte, flags int) (err error)</a></dd>
<dd><a href="index.html#Shutdown">func Shutdown(fd int, how int) (err error)</a></dd>
<dd><a href="index.html#SlicePtrFromStrings">func SlicePtrFromStrings(ss []string) ([]*byte, error)</a></dd>
<dd><a href="index.html#Socket">func Socket(domain, typ, proto int) (fd int, err error)</a></dd>
<dd><a href="index.html#Socketpair">func Socketpair(domain, typ, proto int) (fd [2]int, err error)</a></dd>
<dd><a href="index.html#Splice">func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)</a></dd>
<dd><a href="index.html#StartProcess">func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle uintptr, err error)</a></dd>
<dd><a href="index.html#Stat">func Stat(path string, stat *Stat_t) (err error)</a></dd>
<dd><a href="index.html#Statfs">func Statfs(path string, buf *Statfs_t) (err error)</a></dd>
<dd><a href="index.html#StringBytePtr">func StringBytePtr(s string) *byte</a></dd>
<dd><a href="index.html#StringByteSlice">func StringByteSlice(s string) []byte</a></dd>
<dd><a href="index.html#StringSlicePtr">func StringSlicePtr(ss []string) []*byte</a></dd>
<dd><a href="index.html#Symlink">func Symlink(oldpath string, newpath string) (err error)</a></dd>
<dd><a href="index.html#Sync">func Sync()</a></dd>
<dd><a href="index.html#SyncFileRange">func SyncFileRange(fd int, off int64, n int64, flags int) (err error)</a></dd>
<dd><a href="index.html#Syscall">func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
<dd><a href="index.html#Syscall6">func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
<dd><a href="index.html#Sysinfo">func Sysinfo(info *Sysinfo_t) (err error)</a></dd>
<dd><a href="index.html#Tee">func Tee(rfd int, wfd int, len int, flags int) (n int64, err error)</a></dd>
<dd><a href="index.html#Tgkill">func Tgkill(tgid int, tid int, sig Signal) (err error)</a></dd>
<dd><a href="index.html#Times">func Times(tms *Tms) (ticks uintptr, err error)</a></dd>
<dd><a href="index.html#TimespecToNsec">func TimespecToNsec(ts Timespec) int64</a></dd>
<dd><a href="index.html#TimevalToNsec">func TimevalToNsec(tv Timeval) int64</a></dd>
<dd><a href="index.html#Truncate">func Truncate(path string, length int64) (err error)</a></dd>
<dd><a href="index.html#Umask">func Umask(mask int) (oldmask int)</a></dd>
<dd><a href="index.html#Uname">func Uname(buf *Utsname) (err error)</a></dd>
<dd><a href="index.html#UnixCredentials">func UnixCredentials(ucred *Ucred) []byte</a></dd>
<dd><a href="index.html#UnixRights">func UnixRights(fds ...int) []byte</a></dd>
<dd><a href="index.html#Unlink">func Unlink(path string) error</a></dd>
<dd><a href="index.html#Unlinkat">func Unlinkat(dirfd int, path string) error</a></dd>
<dd><a href="index.html#Unmount">func Unmount(target string, flags int) (err error)</a></dd>
<dd><a href="index.html#Unsetenv">func Unsetenv(key string) error</a></dd>
<dd><a href="index.html#Unshare">func Unshare(flags int) (err error)</a></dd>
<dd><a href="index.html#Ustat">func Ustat(dev int, ubuf *Ustat_t) (err error)</a></dd>
<dd><a href="index.html#Utime">func Utime(path string, buf *Utimbuf) (err error)</a></dd>
<dd><a href="index.html#Utimes">func Utimes(path string, tv []Timeval) (err error)</a></dd>
<dd><a href="index.html#UtimesNano">func UtimesNano(path string, ts []Timespec) (err error)</a></dd>
<dd><a href="index.html#Wait4">func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error)</a></dd>
<dd><a href="index.html#Write">func Write(fd int, p []byte) (n int, err error)</a></dd>
<dd><a href="index.html#Cmsghdr">type Cmsghdr</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Cmsghdr.SetLen">func (cmsg *Cmsghdr) SetLen(length int)</a></dd>
<dd><a href="index.html#Credential">type Credential</a></dd>
<dd><a href="index.html#Dirent">type Dirent</a></dd>
<dd><a href="index.html#EpollEvent">type EpollEvent</a></dd>
<dd><a href="index.html#Errno">type Errno</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Errno.Error">func (e Errno) Error() string</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Errno.Temporary">func (e Errno) Temporary() bool</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Errno.Timeout">func (e Errno) Timeout() bool</a></dd>
<dd><a href="index.html#FdSet">type FdSet</a></dd>
<dd><a href="index.html#Flock_t">type Flock_t</a></dd>
<dd><a href="index.html#Fsid">type Fsid</a></dd>
<dd><a href="index.html#ICMPv6Filter">type ICMPv6Filter</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#GetsockoptICMPv6Filter">func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error)</a></dd>
<dd><a href="index.html#IPMreq">type IPMreq</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPMreq">func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error)</a></dd>
<dd><a href="index.html#IPMreqn">type IPMreqn</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPMreqn">func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error)</a></dd>
<dd><a href="index.html#IPv6MTUInfo">type IPv6MTUInfo</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPv6MTUInfo">func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error)</a></dd>
<dd><a href="index.html#IPv6Mreq">type IPv6Mreq</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPv6Mreq">func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error)</a></dd>
<dd><a href="index.html#IfAddrmsg">type IfAddrmsg</a></dd>
<dd><a href="index.html#IfInfomsg">type IfInfomsg</a></dd>
<dd><a href="index.html#Inet4Pktinfo">type Inet4Pktinfo</a></dd>
<dd><a href="index.html#Inet6Pktinfo">type Inet6Pktinfo</a></dd>
<dd><a href="index.html#InotifyEvent">type InotifyEvent</a></dd>
<dd><a href="index.html#Iovec">type Iovec</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Iovec.SetLen">func (iov *Iovec) SetLen(length int)</a></dd>
<dd><a href="index.html#Linger">type Linger</a></dd>
<dd><a href="index.html#Msghdr">type Msghdr</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Msghdr.SetControllen">func (msghdr *Msghdr) SetControllen(length int)</a></dd>
<dd><a href="index.html#NetlinkMessage">type NetlinkMessage</a></dd>
<dd><a href="index.html#NetlinkRouteAttr">type NetlinkRouteAttr</a></dd>
<dd><a href="index.html#NetlinkRouteRequest">type NetlinkRouteRequest</a></dd>
<dd><a href="index.html#NlAttr">type NlAttr</a></dd>
<dd><a href="index.html#NlMsgerr">type NlMsgerr</a></dd>
<dd><a href="index.html#NlMsghdr">type NlMsghdr</a></dd>
<dd><a href="index.html#ProcAttr">type ProcAttr</a></dd>
<dd><a href="index.html#PtraceRegs">type PtraceRegs</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#PtraceRegs.PC">func (r *PtraceRegs) PC() uint64</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#PtraceRegs.SetPC">func (r *PtraceRegs) SetPC(pc uint64)</a></dd>
<dd><a href="index.html#RawSockaddr">type RawSockaddr</a></dd>
<dd><a href="index.html#RawSockaddrAny">type RawSockaddrAny</a></dd>
<dd><a href="index.html#RawSockaddrInet4">type RawSockaddrInet4</a></dd>
<dd><a href="index.html#RawSockaddrInet6">type RawSockaddrInet6</a></dd>
<dd><a href="index.html#RawSockaddrLinklayer">type RawSockaddrLinklayer</a></dd>
<dd><a href="index.html#RawSockaddrNetlink">type RawSockaddrNetlink</a></dd>
<dd><a href="index.html#RawSockaddrUnix">type RawSockaddrUnix</a></dd>
<dd><a href="index.html#Rlimit">type Rlimit</a></dd>
<dd><a href="index.html#RtAttr">type RtAttr</a></dd>
<dd><a href="index.html#RtGenmsg">type RtGenmsg</a></dd>
<dd><a href="index.html#RtMsg">type RtMsg</a></dd>
<dd><a href="index.html#RtNexthop">type RtNexthop</a></dd>
<dd><a href="index.html#Rusage">type Rusage</a></dd>
<dd><a href="index.html#Signal">type Signal</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Signal.Signal">func (s Signal) Signal()</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Signal.String">func (s Signal) String() string</a></dd>
<dd><a href="index.html#SockFilter">type SockFilter</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#LsfJump">func LsfJump(code, k, jt, jf int) *SockFilter</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#LsfStmt">func LsfStmt(code, k int) *SockFilter</a></dd>
<dd><a href="index.html#SockFprog">type SockFprog</a></dd>
<dd><a href="index.html#Sockaddr">type Sockaddr</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Getpeername">func Getpeername(fd int) (sa Sockaddr, err error)</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Getsockname">func Getsockname(fd int) (sa Sockaddr, err error)</a></dd>
<dd><a href="index.html#SockaddrInet4">type SockaddrInet4</a></dd>
<dd><a href="index.html#SockaddrInet6">type SockaddrInet6</a></dd>
<dd><a href="index.html#SockaddrLinklayer">type SockaddrLinklayer</a></dd>
<dd><a href="index.html#SockaddrNetlink">type SockaddrNetlink</a></dd>
<dd><a href="index.html#SockaddrUnix">type SockaddrUnix</a></dd>
<dd><a href="index.html#SocketControlMessage">type SocketControlMessage</a></dd>
<dd><a href="index.html#Stat_t">type Stat_t</a></dd>
<dd><a href="index.html#Statfs_t">type Statfs_t</a></dd>
<dd><a href="index.html#SysProcAttr">type SysProcAttr</a></dd>
<dd><a href="index.html#SysProcIDMap">type SysProcIDMap</a></dd>
<dd><a href="index.html#Sysinfo_t">type Sysinfo_t</a></dd>
<dd><a href="index.html#TCPInfo">type TCPInfo</a></dd>
<dd><a href="index.html#Termios">type Termios</a></dd>
<dd><a href="index.html#Time_t">type Time_t</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Time">func Time(t *Time_t) (tt Time_t, err error)</a></dd>
<dd><a href="index.html#Timespec">type Timespec</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#NsecToTimespec">func NsecToTimespec(nsec int64) (ts Timespec)</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Timespec.Nano">func (ts *Timespec) Nano() int64</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Timespec.Unix">func (ts *Timespec) Unix() (sec int64, nsec int64)</a></dd>
<dd><a href="index.html#Timeval">type Timeval</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#NsecToTimeval">func NsecToTimeval(nsec int64) (tv Timeval)</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Timeval.Nano">func (tv *Timeval) Nano() int64</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#Timeval.Unix">func (tv *Timeval) Unix() (sec int64, nsec int64)</a></dd>
<dd><a href="index.html#Timex">type Timex</a></dd>
<dd><a href="index.html#Tms">type Tms</a></dd>
<dd><a href="index.html#Ucred">type Ucred</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#GetsockoptUcred">func GetsockoptUcred(fd, level, opt int) (*Ucred, error)</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#ParseUnixCredentials">func ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error)</a></dd>
<dd><a href="index.html#Ustat_t">type Ustat_t</a></dd>
<dd><a href="index.html#Utimbuf">type Utimbuf</a></dd>
<dd><a href="index.html#Utsname">type Utsname</a></dd>
<dd><a href="index.html#WaitStatus">type WaitStatus</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Continued">func (w WaitStatus) Continued() bool</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.CoreDump">func (w WaitStatus) CoreDump() bool</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.ExitStatus">func (w WaitStatus) ExitStatus() int</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Exited">func (w WaitStatus) Exited() bool</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Signal">func (w WaitStatus) Signal() Signal</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Signaled">func (w WaitStatus) Signaled() bool</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.StopSignal">func (w WaitStatus) StopSignal() Signal</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Stopped">func (w WaitStatus) Stopped() bool</a></dd>
<dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.TrapCause">func (w WaitStatus) TrapCause() int</a></dd>
</dl>
</div><!-- #manual-nav -->
<h4>Package files</h4>
<p>
<span style="font-size:90%">
<a href="http://localhost:6060/src/syscall/env_unix.go">env_unix.go</a>
<a href="http://localhost:6060/src/syscall/exec_linux.go">exec_linux.go</a>
<a href="http://localhost:6060/src/syscall/exec_unix.go">exec_unix.go</a>
<a href="http://localhost:6060/src/syscall/flock.go">flock.go</a>
<a href="http://localhost:6060/src/syscall/lsf_linux.go">lsf_linux.go</a>
<a href="http://localhost:6060/src/syscall/msan0.go">msan0.go</a>
<a href="http://localhost:6060/src/syscall/netlink_linux.go">netlink_linux.go</a>
<a href="http://localhost:6060/src/syscall/sockcmsg_linux.go">sockcmsg_linux.go</a>
<a href="http://localhost:6060/src/syscall/sockcmsg_unix.go">sockcmsg_unix.go</a>
<a href="http://localhost:6060/src/syscall/str.go">str.go</a>
<a href="http://localhost:6060/src/syscall/syscall.go">syscall.go</a>
<a href="http://localhost:6060/src/syscall/syscall_linux.go">syscall_linux.go</a>
<a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go">syscall_linux_amd64.go</a>
<a href="http://localhost:6060/src/syscall/syscall_unix.go">syscall_unix.go</a>
<a href="http://localhost:6060/src/syscall/zerrors_linux_amd64.go">zerrors_linux_amd64.go</a>
<a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go">zsyscall_linux_amd64.go</a>
<a href="http://localhost:6060/src/syscall/zsysnum_linux_amd64.go">zsysnum_linux_amd64.go</a>
<a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go">ztypes_linux_amd64.go</a>
</span>
</p>
</div><!-- .expanded -->
</div><!-- #pkg-index -->
<div id="pkg-callgraph" class="toggle" style="display: none">
<div class="collapsed">
<h2 class="toggleButton" title="Click to show Internal Call Graph section">Internal call graph ▹</h2>
</div> <!-- .expanded -->
<div class="expanded">
<h2 class="toggleButton" title="Click to hide Internal Call Graph section">Internal call graph ▾</h2>
<p>
In the call graph viewer below, each node
is a function belonging to this package
and its children are the functions it
calls&mdash;perhaps dynamically.
</p>
<p>
The root nodes are the entry points of the
package: functions that may be called from
outside the package.
There may be non-exported or anonymous
functions among them if they are called
dynamically from another package.
</p>
<p>
Click a node to visit that function's source code.
From there you can visit its callers by
clicking its declaring <code>func</code>
token.
</p>
<p>
Functions may be omitted if they were
determined to be unreachable in the
particular programs or tests that were
analyzed.
</p>
<!-- Zero means show all package entry points. -->
<ul style="margin-left: 0.5in" id="callgraph-0" class="treeview"></ul>
</div>
</div> <!-- #pkg-callgraph -->
<h2 id="pkg-constants">Constants</h2>
<pre>const (
<span id="AF_ALG">AF_ALG</span> = 0x26
<span id="AF_APPLETALK">AF_APPLETALK</span> = 0x5
<span id="AF_ASH">AF_ASH</span> = 0x12
<span id="AF_ATMPVC">AF_ATMPVC</span> = 0x8
<span id="AF_ATMSVC">AF_ATMSVC</span> = 0x14
<span id="AF_AX25">AF_AX25</span> = 0x3
<span id="AF_BLUETOOTH">AF_BLUETOOTH</span> = 0x1f
<span id="AF_BRIDGE">AF_BRIDGE</span> = 0x7
<span id="AF_CAIF">AF_CAIF</span> = 0x25
<span id="AF_CAN">AF_CAN</span> = 0x1d
<span id="AF_DECnet">AF_DECnet</span> = 0xc
<span id="AF_ECONET">AF_ECONET</span> = 0x13
<span id="AF_FILE">AF_FILE</span> = 0x1
<span id="AF_IEEE802154">AF_IEEE802154</span> = 0x24
<span id="AF_INET">AF_INET</span> = 0x2
<span id="AF_INET6">AF_INET6</span> = 0xa
<span id="AF_IPX">AF_IPX</span> = 0x4
<span id="AF_IRDA">AF_IRDA</span> = 0x17
<span id="AF_ISDN">AF_ISDN</span> = 0x22
<span id="AF_IUCV">AF_IUCV</span> = 0x20
<span id="AF_KEY">AF_KEY</span> = 0xf
<span id="AF_LLC">AF_LLC</span> = 0x1a
<span id="AF_LOCAL">AF_LOCAL</span> = 0x1
<span id="AF_MAX">AF_MAX</span> = 0x27
<span id="AF_NETBEUI">AF_NETBEUI</span> = 0xd
<span id="AF_NETLINK">AF_NETLINK</span> = 0x10
<span id="AF_NETROM">AF_NETROM</span> = 0x6
<span id="AF_PACKET">AF_PACKET</span> = 0x11
<span id="AF_PHONET">AF_PHONET</span> = 0x23
<span id="AF_PPPOX">AF_PPPOX</span> = 0x18
<span id="AF_RDS">AF_RDS</span> = 0x15
<span id="AF_ROSE">AF_ROSE</span> = 0xb
<span id="AF_ROUTE">AF_ROUTE</span> = 0x10
<span id="AF_RXRPC">AF_RXRPC</span> = 0x21
<span id="AF_SECURITY">AF_SECURITY</span> = 0xe
<span id="AF_SNA">AF_SNA</span> = 0x16
<span id="AF_TIPC">AF_TIPC</span> = 0x1e
<span id="AF_UNIX">AF_UNIX</span> = 0x1
<span id="AF_UNSPEC">AF_UNSPEC</span> = 0x0
<span id="AF_WANPIPE">AF_WANPIPE</span> = 0x19
<span id="AF_X25">AF_X25</span> = 0x9
<span id="ARPHRD_ADAPT">ARPHRD_ADAPT</span> = 0x108
<span id="ARPHRD_APPLETLK">ARPHRD_APPLETLK</span> = 0x8
<span id="ARPHRD_ARCNET">ARPHRD_ARCNET</span> = 0x7
<span id="ARPHRD_ASH">ARPHRD_ASH</span> = 0x30d
<span id="ARPHRD_ATM">ARPHRD_ATM</span> = 0x13
<span id="ARPHRD_AX25">ARPHRD_AX25</span> = 0x3
<span id="ARPHRD_BIF">ARPHRD_BIF</span> = 0x307
<span id="ARPHRD_CHAOS">ARPHRD_CHAOS</span> = 0x5
<span id="ARPHRD_CISCO">ARPHRD_CISCO</span> = 0x201
<span id="ARPHRD_CSLIP">ARPHRD_CSLIP</span> = 0x101
<span id="ARPHRD_CSLIP6">ARPHRD_CSLIP6</span> = 0x103
<span id="ARPHRD_DDCMP">ARPHRD_DDCMP</span> = 0x205
<span id="ARPHRD_DLCI">ARPHRD_DLCI</span> = 0xf
<span id="ARPHRD_ECONET">ARPHRD_ECONET</span> = 0x30e
<span id="ARPHRD_EETHER">ARPHRD_EETHER</span> = 0x2
<span id="ARPHRD_ETHER">ARPHRD_ETHER</span> = 0x1
<span id="ARPHRD_EUI64">ARPHRD_EUI64</span> = 0x1b
<span id="ARPHRD_FCAL">ARPHRD_FCAL</span> = 0x311
<span id="ARPHRD_FCFABRIC">ARPHRD_FCFABRIC</span> = 0x313
<span id="ARPHRD_FCPL">ARPHRD_FCPL</span> = 0x312
<span id="ARPHRD_FCPP">ARPHRD_FCPP</span> = 0x310
<span id="ARPHRD_FDDI">ARPHRD_FDDI</span> = 0x306
<span id="ARPHRD_FRAD">ARPHRD_FRAD</span> = 0x302
<span id="ARPHRD_HDLC">ARPHRD_HDLC</span> = 0x201
<span id="ARPHRD_HIPPI">ARPHRD_HIPPI</span> = 0x30c
<span id="ARPHRD_HWX25">ARPHRD_HWX25</span> = 0x110
<span id="ARPHRD_IEEE1394">ARPHRD_IEEE1394</span> = 0x18
<span id="ARPHRD_IEEE802">ARPHRD_IEEE802</span> = 0x6
<span id="ARPHRD_IEEE80211">ARPHRD_IEEE80211</span> = 0x321
<span id="ARPHRD_IEEE80211_PRISM">ARPHRD_IEEE80211_PRISM</span> = 0x322
<span id="ARPHRD_IEEE80211_RADIOTAP">ARPHRD_IEEE80211_RADIOTAP</span> = 0x323
<span id="ARPHRD_IEEE802154">ARPHRD_IEEE802154</span> = 0x324
<span id="ARPHRD_IEEE802154_PHY">ARPHRD_IEEE802154_PHY</span> = 0x325
<span id="ARPHRD_IEEE802_TR">ARPHRD_IEEE802_TR</span> = 0x320
<span id="ARPHRD_INFINIBAND">ARPHRD_INFINIBAND</span> = 0x20
<span id="ARPHRD_IPDDP">ARPHRD_IPDDP</span> = 0x309
<span id="ARPHRD_IPGRE">ARPHRD_IPGRE</span> = 0x30a
<span id="ARPHRD_IRDA">ARPHRD_IRDA</span> = 0x30f
<span id="ARPHRD_LAPB">ARPHRD_LAPB</span> = 0x204
<span id="ARPHRD_LOCALTLK">ARPHRD_LOCALTLK</span> = 0x305
<span id="ARPHRD_LOOPBACK">ARPHRD_LOOPBACK</span> = 0x304
<span id="ARPHRD_METRICOM">ARPHRD_METRICOM</span> = 0x17
<span id="ARPHRD_NETROM">ARPHRD_NETROM</span> = 0x0
<span id="ARPHRD_NONE">ARPHRD_NONE</span> = 0xfffe
<span id="ARPHRD_PIMREG">ARPHRD_PIMREG</span> = 0x30b
<span id="ARPHRD_PPP">ARPHRD_PPP</span> = 0x200
<span id="ARPHRD_PRONET">ARPHRD_PRONET</span> = 0x4
<span id="ARPHRD_RAWHDLC">ARPHRD_RAWHDLC</span> = 0x206
<span id="ARPHRD_ROSE">ARPHRD_ROSE</span> = 0x10e
<span id="ARPHRD_RSRVD">ARPHRD_RSRVD</span> = 0x104
<span id="ARPHRD_SIT">ARPHRD_SIT</span> = 0x308
<span id="ARPHRD_SKIP">ARPHRD_SKIP</span> = 0x303
<span id="ARPHRD_SLIP">ARPHRD_SLIP</span> = 0x100
<span id="ARPHRD_SLIP6">ARPHRD_SLIP6</span> = 0x102
<span id="ARPHRD_TUNNEL">ARPHRD_TUNNEL</span> = 0x300
<span id="ARPHRD_TUNNEL6">ARPHRD_TUNNEL6</span> = 0x301
<span id="ARPHRD_VOID">ARPHRD_VOID</span> = 0xffff
<span id="ARPHRD_X25">ARPHRD_X25</span> = 0x10f
<span id="BPF_A">BPF_A</span> = 0x10
<span id="BPF_ABS">BPF_ABS</span> = 0x20
<span id="BPF_ADD">BPF_ADD</span> = 0x0
<span id="BPF_ALU">BPF_ALU</span> = 0x4
<span id="BPF_AND">BPF_AND</span> = 0x50
<span id="BPF_B">BPF_B</span> = 0x10
<span id="BPF_DIV">BPF_DIV</span> = 0x30
<span id="BPF_H">BPF_H</span> = 0x8
<span id="BPF_IMM">BPF_IMM</span> = 0x0
<span id="BPF_IND">BPF_IND</span> = 0x40
<span id="BPF_JA">BPF_JA</span> = 0x0
<span id="BPF_JEQ">BPF_JEQ</span> = 0x10
<span id="BPF_JGE">BPF_JGE</span> = 0x30
<span id="BPF_JGT">BPF_JGT</span> = 0x20
<span id="BPF_JMP">BPF_JMP</span> = 0x5
<span id="BPF_JSET">BPF_JSET</span> = 0x40
<span id="BPF_K">BPF_K</span> = 0x0
<span id="BPF_LD">BPF_LD</span> = 0x0
<span id="BPF_LDX">BPF_LDX</span> = 0x1
<span id="BPF_LEN">BPF_LEN</span> = 0x80
<span id="BPF_LSH">BPF_LSH</span> = 0x60
<span id="BPF_MAJOR_VERSION">BPF_MAJOR_VERSION</span> = 0x1
<span id="BPF_MAXINSNS">BPF_MAXINSNS</span> = 0x1000
<span id="BPF_MEM">BPF_MEM</span> = 0x60
<span id="BPF_MEMWORDS">BPF_MEMWORDS</span> = 0x10
<span id="BPF_MINOR_VERSION">BPF_MINOR_VERSION</span> = 0x1
<span id="BPF_MISC">BPF_MISC</span> = 0x7
<span id="BPF_MSH">BPF_MSH</span> = 0xa0
<span id="BPF_MUL">BPF_MUL</span> = 0x20
<span id="BPF_NEG">BPF_NEG</span> = 0x80
<span id="BPF_OR">BPF_OR</span> = 0x40
<span id="BPF_RET">BPF_RET</span> = 0x6
<span id="BPF_RSH">BPF_RSH</span> = 0x70
<span id="BPF_ST">BPF_ST</span> = 0x2
<span id="BPF_STX">BPF_STX</span> = 0x3
<span id="BPF_SUB">BPF_SUB</span> = 0x10
<span id="BPF_TAX">BPF_TAX</span> = 0x0
<span id="BPF_TXA">BPF_TXA</span> = 0x80
<span id="BPF_W">BPF_W</span> = 0x0
<span id="BPF_X">BPF_X</span> = 0x8
<span id="CLONE_CHILD_CLEARTID">CLONE_CHILD_CLEARTID</span> = 0x200000
<span id="CLONE_CHILD_SETTID">CLONE_CHILD_SETTID</span> = 0x1000000
<span id="CLONE_DETACHED">CLONE_DETACHED</span> = 0x400000
<span id="CLONE_FILES">CLONE_FILES</span> = 0x400
<span id="CLONE_FS">CLONE_FS</span> = 0x200
<span id="CLONE_IO">CLONE_IO</span> = 0x80000000
<span id="CLONE_NEWIPC">CLONE_NEWIPC</span> = 0x8000000
<span id="CLONE_NEWNET">CLONE_NEWNET</span> = 0x40000000
<span id="CLONE_NEWNS">CLONE_NEWNS</span> = 0x20000
<span id="CLONE_NEWPID">CLONE_NEWPID</span> = 0x20000000
<span id="CLONE_NEWUSER">CLONE_NEWUSER</span> = 0x10000000
<span id="CLONE_NEWUTS">CLONE_NEWUTS</span> = 0x4000000
<span id="CLONE_PARENT">CLONE_PARENT</span> = 0x8000
<span id="CLONE_PARENT_SETTID">CLONE_PARENT_SETTID</span> = 0x100000
<span id="CLONE_PTRACE">CLONE_PTRACE</span> = 0x2000
<span id="CLONE_SETTLS">CLONE_SETTLS</span> = 0x80000
<span id="CLONE_SIGHAND">CLONE_SIGHAND</span> = 0x800
<span id="CLONE_SYSVSEM">CLONE_SYSVSEM</span> = 0x40000
<span id="CLONE_THREAD">CLONE_THREAD</span> = 0x10000
<span id="CLONE_UNTRACED">CLONE_UNTRACED</span> = 0x800000
<span id="CLONE_VFORK">CLONE_VFORK</span> = 0x4000
<span id="CLONE_VM">CLONE_VM</span> = 0x100
<span id="DT_BLK">DT_BLK</span> = 0x6
<span id="DT_CHR">DT_CHR</span> = 0x2
<span id="DT_DIR">DT_DIR</span> = 0x4
<span id="DT_FIFO">DT_FIFO</span> = 0x1
<span id="DT_LNK">DT_LNK</span> = 0xa
<span id="DT_REG">DT_REG</span> = 0x8
<span id="DT_SOCK">DT_SOCK</span> = 0xc
<span id="DT_UNKNOWN">DT_UNKNOWN</span> = 0x0
<span id="DT_WHT">DT_WHT</span> = 0xe
<span id="EPOLLERR">EPOLLERR</span> = 0x8
<span id="EPOLLET">EPOLLET</span> = -0x80000000
<span id="EPOLLHUP">EPOLLHUP</span> = 0x10
<span id="EPOLLIN">EPOLLIN</span> = 0x1
<span id="EPOLLMSG">EPOLLMSG</span> = 0x400
<span id="EPOLLONESHOT">EPOLLONESHOT</span> = 0x40000000
<span id="EPOLLOUT">EPOLLOUT</span> = 0x4
<span id="EPOLLPRI">EPOLLPRI</span> = 0x2
<span id="EPOLLRDBAND">EPOLLRDBAND</span> = 0x80
<span id="EPOLLRDHUP">EPOLLRDHUP</span> = 0x2000
<span id="EPOLLRDNORM">EPOLLRDNORM</span> = 0x40
<span id="EPOLLWRBAND">EPOLLWRBAND</span> = 0x200
<span id="EPOLLWRNORM">EPOLLWRNORM</span> = 0x100
<span id="EPOLL_CLOEXEC">EPOLL_CLOEXEC</span> = 0x80000
<span id="EPOLL_CTL_ADD">EPOLL_CTL_ADD</span> = 0x1
<span id="EPOLL_CTL_DEL">EPOLL_CTL_DEL</span> = 0x2
<span id="EPOLL_CTL_MOD">EPOLL_CTL_MOD</span> = 0x3
<span id="EPOLL_NONBLOCK">EPOLL_NONBLOCK</span> = 0x800
<span id="ETH_P_1588">ETH_P_1588</span> = 0x88f7
<span id="ETH_P_8021Q">ETH_P_8021Q</span> = 0x8100
<span id="ETH_P_802_2">ETH_P_802_2</span> = 0x4
<span id="ETH_P_802_3">ETH_P_802_3</span> = 0x1
<span id="ETH_P_AARP">ETH_P_AARP</span> = 0x80f3
<span id="ETH_P_ALL">ETH_P_ALL</span> = 0x3
<span id="ETH_P_AOE">ETH_P_AOE</span> = 0x88a2
<span id="ETH_P_ARCNET">ETH_P_ARCNET</span> = 0x1a
<span id="ETH_P_ARP">ETH_P_ARP</span> = 0x806
<span id="ETH_P_ATALK">ETH_P_ATALK</span> = 0x809b
<span id="ETH_P_ATMFATE">ETH_P_ATMFATE</span> = 0x8884
<span id="ETH_P_ATMMPOA">ETH_P_ATMMPOA</span> = 0x884c
<span id="ETH_P_AX25">ETH_P_AX25</span> = 0x2
<span id="ETH_P_BPQ">ETH_P_BPQ</span> = 0x8ff
<span id="ETH_P_CAIF">ETH_P_CAIF</span> = 0xf7
<span id="ETH_P_CAN">ETH_P_CAN</span> = 0xc
<span id="ETH_P_CONTROL">ETH_P_CONTROL</span> = 0x16
<span id="ETH_P_CUST">ETH_P_CUST</span> = 0x6006
<span id="ETH_P_DDCMP">ETH_P_DDCMP</span> = 0x6
<span id="ETH_P_DEC">ETH_P_DEC</span> = 0x6000
<span id="ETH_P_DIAG">ETH_P_DIAG</span> = 0x6005
<span id="ETH_P_DNA_DL">ETH_P_DNA_DL</span> = 0x6001
<span id="ETH_P_DNA_RC">ETH_P_DNA_RC</span> = 0x6002
<span id="ETH_P_DNA_RT">ETH_P_DNA_RT</span> = 0x6003
<span id="ETH_P_DSA">ETH_P_DSA</span> = 0x1b
<span id="ETH_P_ECONET">ETH_P_ECONET</span> = 0x18
<span id="ETH_P_EDSA">ETH_P_EDSA</span> = 0xdada
<span id="ETH_P_FCOE">ETH_P_FCOE</span> = 0x8906
<span id="ETH_P_FIP">ETH_P_FIP</span> = 0x8914
<span id="ETH_P_HDLC">ETH_P_HDLC</span> = 0x19
<span id="ETH_P_IEEE802154">ETH_P_IEEE802154</span> = 0xf6
<span id="ETH_P_IEEEPUP">ETH_P_IEEEPUP</span> = 0xa00
<span id="ETH_P_IEEEPUPAT">ETH_P_IEEEPUPAT</span> = 0xa01
<span id="ETH_P_IP">ETH_P_IP</span> = 0x800
<span id="ETH_P_IPV6">ETH_P_IPV6</span> = 0x86dd
<span id="ETH_P_IPX">ETH_P_IPX</span> = 0x8137
<span id="ETH_P_IRDA">ETH_P_IRDA</span> = 0x17
<span id="ETH_P_LAT">ETH_P_LAT</span> = 0x6004
<span id="ETH_P_LINK_CTL">ETH_P_LINK_CTL</span> = 0x886c
<span id="ETH_P_LOCALTALK">ETH_P_LOCALTALK</span> = 0x9
<span id="ETH_P_LOOP">ETH_P_LOOP</span> = 0x60
<span id="ETH_P_MOBITEX">ETH_P_MOBITEX</span> = 0x15
<span id="ETH_P_MPLS_MC">ETH_P_MPLS_MC</span> = 0x8848
<span id="ETH_P_MPLS_UC">ETH_P_MPLS_UC</span> = 0x8847
<span id="ETH_P_PAE">ETH_P_PAE</span> = 0x888e
<span id="ETH_P_PAUSE">ETH_P_PAUSE</span> = 0x8808
<span id="ETH_P_PHONET">ETH_P_PHONET</span> = 0xf5
<span id="ETH_P_PPPTALK">ETH_P_PPPTALK</span> = 0x10
<span id="ETH_P_PPP_DISC">ETH_P_PPP_DISC</span> = 0x8863
<span id="ETH_P_PPP_MP">ETH_P_PPP_MP</span> = 0x8
<span id="ETH_P_PPP_SES">ETH_P_PPP_SES</span> = 0x8864
<span id="ETH_P_PUP">ETH_P_PUP</span> = 0x200
<span id="ETH_P_PUPAT">ETH_P_PUPAT</span> = 0x201
<span id="ETH_P_RARP">ETH_P_RARP</span> = 0x8035
<span id="ETH_P_SCA">ETH_P_SCA</span> = 0x6007
<span id="ETH_P_SLOW">ETH_P_SLOW</span> = 0x8809
<span id="ETH_P_SNAP">ETH_P_SNAP</span> = 0x5
<span id="ETH_P_TEB">ETH_P_TEB</span> = 0x6558
<span id="ETH_P_TIPC">ETH_P_TIPC</span> = 0x88ca
<span id="ETH_P_TRAILER">ETH_P_TRAILER</span> = 0x1c
<span id="ETH_P_TR_802_2">ETH_P_TR_802_2</span> = 0x11
<span id="ETH_P_WAN_PPP">ETH_P_WAN_PPP</span> = 0x7
<span id="ETH_P_WCCP">ETH_P_WCCP</span> = 0x883e
<span id="ETH_P_X25">ETH_P_X25</span> = 0x805
<span id="FD_CLOEXEC">FD_CLOEXEC</span> = 0x1
<span id="FD_SETSIZE">FD_SETSIZE</span> = 0x400
<span id="F_DUPFD">F_DUPFD</span> = 0x0
<span id="F_DUPFD_CLOEXEC">F_DUPFD_CLOEXEC</span> = 0x406
<span id="F_EXLCK">F_EXLCK</span> = 0x4
<span id="F_GETFD">F_GETFD</span> = 0x1
<span id="F_GETFL">F_GETFL</span> = 0x3
<span id="F_GETLEASE">F_GETLEASE</span> = 0x401
<span id="F_GETLK">F_GETLK</span> = 0x5
<span id="F_GETLK64">F_GETLK64</span> = 0x5
<span id="F_GETOWN">F_GETOWN</span> = 0x9
<span id="F_GETOWN_EX">F_GETOWN_EX</span> = 0x10
<span id="F_GETPIPE_SZ">F_GETPIPE_SZ</span> = 0x408
<span id="F_GETSIG">F_GETSIG</span> = 0xb
<span id="F_LOCK">F_LOCK</span> = 0x1
<span id="F_NOTIFY">F_NOTIFY</span> = 0x402
<span id="F_OK">F_OK</span> = 0x0
<span id="F_RDLCK">F_RDLCK</span> = 0x0
<span id="F_SETFD">F_SETFD</span> = 0x2
<span id="F_SETFL">F_SETFL</span> = 0x4
<span id="F_SETLEASE">F_SETLEASE</span> = 0x400
<span id="F_SETLK">F_SETLK</span> = 0x6
<span id="F_SETLK64">F_SETLK64</span> = 0x6
<span id="F_SETLKW">F_SETLKW</span> = 0x7
<span id="F_SETLKW64">F_SETLKW64</span> = 0x7
<span id="F_SETOWN">F_SETOWN</span> = 0x8
<span id="F_SETOWN_EX">F_SETOWN_EX</span> = 0xf
<span id="F_SETPIPE_SZ">F_SETPIPE_SZ</span> = 0x407
<span id="F_SETSIG">F_SETSIG</span> = 0xa
<span id="F_SHLCK">F_SHLCK</span> = 0x8
<span id="F_TEST">F_TEST</span> = 0x3
<span id="F_TLOCK">F_TLOCK</span> = 0x2
<span id="F_ULOCK">F_ULOCK</span> = 0x0
<span id="F_UNLCK">F_UNLCK</span> = 0x2
<span id="F_WRLCK">F_WRLCK</span> = 0x1
<span id="ICMPV6_FILTER">ICMPV6_FILTER</span> = 0x1
<span id="IFA_F_DADFAILED">IFA_F_DADFAILED</span> = 0x8
<span id="IFA_F_DEPRECATED">IFA_F_DEPRECATED</span> = 0x20
<span id="IFA_F_HOMEADDRESS">IFA_F_HOMEADDRESS</span> = 0x10
<span id="IFA_F_NODAD">IFA_F_NODAD</span> = 0x2
<span id="IFA_F_OPTIMISTIC">IFA_F_OPTIMISTIC</span> = 0x4
<span id="IFA_F_PERMANENT">IFA_F_PERMANENT</span> = 0x80
<span id="IFA_F_SECONDARY">IFA_F_SECONDARY</span> = 0x1
<span id="IFA_F_TEMPORARY">IFA_F_TEMPORARY</span> = 0x1
<span id="IFA_F_TENTATIVE">IFA_F_TENTATIVE</span> = 0x40
<span id="IFA_MAX">IFA_MAX</span> = 0x7
<span id="IFF_ALLMULTI">IFF_ALLMULTI</span> = 0x200
<span id="IFF_AUTOMEDIA">IFF_AUTOMEDIA</span> = 0x4000
<span id="IFF_BROADCAST">IFF_BROADCAST</span> = 0x2
<span id="IFF_DEBUG">IFF_DEBUG</span> = 0x4
<span id="IFF_DYNAMIC">IFF_DYNAMIC</span> = 0x8000
<span id="IFF_LOOPBACK">IFF_LOOPBACK</span> = 0x8
<span id="IFF_MASTER">IFF_MASTER</span> = 0x400
<span id="IFF_MULTICAST">IFF_MULTICAST</span> = 0x1000
<span id="IFF_NOARP">IFF_NOARP</span> = 0x80
<span id="IFF_NOTRAILERS">IFF_NOTRAILERS</span> = 0x20
<span id="IFF_NO_PI">IFF_NO_PI</span> = 0x1000
<span id="IFF_ONE_QUEUE">IFF_ONE_QUEUE</span> = 0x2000
<span id="IFF_POINTOPOINT">IFF_POINTOPOINT</span> = 0x10
<span id="IFF_PORTSEL">IFF_PORTSEL</span> = 0x2000
<span id="IFF_PROMISC">IFF_PROMISC</span> = 0x100
<span id="IFF_RUNNING">IFF_RUNNING</span> = 0x40
<span id="IFF_SLAVE">IFF_SLAVE</span> = 0x800
<span id="IFF_TAP">IFF_TAP</span> = 0x2
<span id="IFF_TUN">IFF_TUN</span> = 0x1
<span id="IFF_TUN_EXCL">IFF_TUN_EXCL</span> = 0x8000
<span id="IFF_UP">IFF_UP</span> = 0x1
<span id="IFF_VNET_HDR">IFF_VNET_HDR</span> = 0x4000
<span id="IFNAMSIZ">IFNAMSIZ</span> = 0x10
<span id="IN_ACCESS">IN_ACCESS</span> = 0x1
<span id="IN_ALL_EVENTS">IN_ALL_EVENTS</span> = 0xfff
<span id="IN_ATTRIB">IN_ATTRIB</span> = 0x4
<span id="IN_CLASSA_HOST">IN_CLASSA_HOST</span> = 0xffffff
<span id="IN_CLASSA_MAX">IN_CLASSA_MAX</span> = 0x80
<span id="IN_CLASSA_NET">IN_CLASSA_NET</span> = 0xff000000
<span id="IN_CLASSA_NSHIFT">IN_CLASSA_NSHIFT</span> = 0x18
<span id="IN_CLASSB_HOST">IN_CLASSB_HOST</span> = 0xffff
<span id="IN_CLASSB_MAX">IN_CLASSB_MAX</span> = 0x10000
<span id="IN_CLASSB_NET">IN_CLASSB_NET</span> = 0xffff0000
<span id="IN_CLASSB_NSHIFT">IN_CLASSB_NSHIFT</span> = 0x10
<span id="IN_CLASSC_HOST">IN_CLASSC_HOST</span> = 0xff
<span id="IN_CLASSC_NET">IN_CLASSC_NET</span> = 0xffffff00
<span id="IN_CLASSC_NSHIFT">IN_CLASSC_NSHIFT</span> = 0x8
<span id="IN_CLOEXEC">IN_CLOEXEC</span> = 0x80000
<span id="IN_CLOSE">IN_CLOSE</span> = 0x18
<span id="IN_CLOSE_NOWRITE">IN_CLOSE_NOWRITE</span> = 0x10
<span id="IN_CLOSE_WRITE">IN_CLOSE_WRITE</span> = 0x8
<span id="IN_CREATE">IN_CREATE</span> = 0x100
<span id="IN_DELETE">IN_DELETE</span> = 0x200
<span id="IN_DELETE_SELF">IN_DELETE_SELF</span> = 0x400
<span id="IN_DONT_FOLLOW">IN_DONT_FOLLOW</span> = 0x2000000
<span id="IN_EXCL_UNLINK">IN_EXCL_UNLINK</span> = 0x4000000
<span id="IN_IGNORED">IN_IGNORED</span> = 0x8000
<span id="IN_ISDIR">IN_ISDIR</span> = 0x40000000
<span id="IN_LOOPBACKNET">IN_LOOPBACKNET</span> = 0x7f
<span id="IN_MASK_ADD">IN_MASK_ADD</span> = 0x20000000
<span id="IN_MODIFY">IN_MODIFY</span> = 0x2
<span id="IN_MOVE">IN_MOVE</span> = 0xc0
<span id="IN_MOVED_FROM">IN_MOVED_FROM</span> = 0x40
<span id="IN_MOVED_TO">IN_MOVED_TO</span> = 0x80
<span id="IN_MOVE_SELF">IN_MOVE_SELF</span> = 0x800
<span id="IN_NONBLOCK">IN_NONBLOCK</span> = 0x800
<span id="IN_ONESHOT">IN_ONESHOT</span> = 0x80000000
<span id="IN_ONLYDIR">IN_ONLYDIR</span> = 0x1000000
<span id="IN_OPEN">IN_OPEN</span> = 0x20
<span id="IN_Q_OVERFLOW">IN_Q_OVERFLOW</span> = 0x4000
<span id="IN_UNMOUNT">IN_UNMOUNT</span> = 0x2000
<span id="IPPROTO_AH">IPPROTO_AH</span> = 0x33
<span id="IPPROTO_COMP">IPPROTO_COMP</span> = 0x6c
<span id="IPPROTO_DCCP">IPPROTO_DCCP</span> = 0x21
<span id="IPPROTO_DSTOPTS">IPPROTO_DSTOPTS</span> = 0x3c
<span id="IPPROTO_EGP">IPPROTO_EGP</span> = 0x8
<span id="IPPROTO_ENCAP">IPPROTO_ENCAP</span> = 0x62
<span id="IPPROTO_ESP">IPPROTO_ESP</span> = 0x32
<span id="IPPROTO_FRAGMENT">IPPROTO_FRAGMENT</span> = 0x2c
<span id="IPPROTO_GRE">IPPROTO_GRE</span> = 0x2f
<span id="IPPROTO_HOPOPTS">IPPROTO_HOPOPTS</span> = 0x0
<span id="IPPROTO_ICMP">IPPROTO_ICMP</span> = 0x1
<span id="IPPROTO_ICMPV6">IPPROTO_ICMPV6</span> = 0x3a
<span id="IPPROTO_IDP">IPPROTO_IDP</span> = 0x16
<span id="IPPROTO_IGMP">IPPROTO_IGMP</span> = 0x2
<span id="IPPROTO_IP">IPPROTO_IP</span> = 0x0
<span id="IPPROTO_IPIP">IPPROTO_IPIP</span> = 0x4
<span id="IPPROTO_IPV6">IPPROTO_IPV6</span> = 0x29
<span id="IPPROTO_MTP">IPPROTO_MTP</span> = 0x5c
<span id="IPPROTO_NONE">IPPROTO_NONE</span> = 0x3b
<span id="IPPROTO_PIM">IPPROTO_PIM</span> = 0x67
<span id="IPPROTO_PUP">IPPROTO_PUP</span> = 0xc
<span id="IPPROTO_RAW">IPPROTO_RAW</span> = 0xff
<span id="IPPROTO_ROUTING">IPPROTO_ROUTING</span> = 0x2b
<span id="IPPROTO_RSVP">IPPROTO_RSVP</span> = 0x2e
<span id="IPPROTO_SCTP">IPPROTO_SCTP</span> = 0x84
<span id="IPPROTO_TCP">IPPROTO_TCP</span> = 0x6
<span id="IPPROTO_TP">IPPROTO_TP</span> = 0x1d
<span id="IPPROTO_UDP">IPPROTO_UDP</span> = 0x11
<span id="IPPROTO_UDPLITE">IPPROTO_UDPLITE</span> = 0x88
<span id="IPV6_2292DSTOPTS">IPV6_2292DSTOPTS</span> = 0x4
<span id="IPV6_2292HOPLIMIT">IPV6_2292HOPLIMIT</span> = 0x8
<span id="IPV6_2292HOPOPTS">IPV6_2292HOPOPTS</span> = 0x3
<span id="IPV6_2292PKTINFO">IPV6_2292PKTINFO</span> = 0x2
<span id="IPV6_2292PKTOPTIONS">IPV6_2292PKTOPTIONS</span> = 0x6
<span id="IPV6_2292RTHDR">IPV6_2292RTHDR</span> = 0x5
<span id="IPV6_ADDRFORM">IPV6_ADDRFORM</span> = 0x1
<span id="IPV6_ADD_MEMBERSHIP">IPV6_ADD_MEMBERSHIP</span> = 0x14
<span id="IPV6_AUTHHDR">IPV6_AUTHHDR</span> = 0xa
<span id="IPV6_CHECKSUM">IPV6_CHECKSUM</span> = 0x7
<span id="IPV6_DROP_MEMBERSHIP">IPV6_DROP_MEMBERSHIP</span> = 0x15
<span id="IPV6_DSTOPTS">IPV6_DSTOPTS</span> = 0x3b
<span id="IPV6_HOPLIMIT">IPV6_HOPLIMIT</span> = 0x34
<span id="IPV6_HOPOPTS">IPV6_HOPOPTS</span> = 0x36
<span id="IPV6_IPSEC_POLICY">IPV6_IPSEC_POLICY</span> = 0x22
<span id="IPV6_JOIN_ANYCAST">IPV6_JOIN_ANYCAST</span> = 0x1b
<span id="IPV6_JOIN_GROUP">IPV6_JOIN_GROUP</span> = 0x14
<span id="IPV6_LEAVE_ANYCAST">IPV6_LEAVE_ANYCAST</span> = 0x1c
<span id="IPV6_LEAVE_GROUP">IPV6_LEAVE_GROUP</span> = 0x15
<span id="IPV6_MTU">IPV6_MTU</span> = 0x18
<span id="IPV6_MTU_DISCOVER">IPV6_MTU_DISCOVER</span> = 0x17
<span id="IPV6_MULTICAST_HOPS">IPV6_MULTICAST_HOPS</span> = 0x12
<span id="IPV6_MULTICAST_IF">IPV6_MULTICAST_IF</span> = 0x11
<span id="IPV6_MULTICAST_LOOP">IPV6_MULTICAST_LOOP</span> = 0x13
<span id="IPV6_NEXTHOP">IPV6_NEXTHOP</span> = 0x9
<span id="IPV6_PKTINFO">IPV6_PKTINFO</span> = 0x32
<span id="IPV6_PMTUDISC_DO">IPV6_PMTUDISC_DO</span> = 0x2
<span id="IPV6_PMTUDISC_DONT">IPV6_PMTUDISC_DONT</span> = 0x0
<span id="IPV6_PMTUDISC_PROBE">IPV6_PMTUDISC_PROBE</span> = 0x3
<span id="IPV6_PMTUDISC_WANT">IPV6_PMTUDISC_WANT</span> = 0x1
<span id="IPV6_RECVDSTOPTS">IPV6_RECVDSTOPTS</span> = 0x3a
<span id="IPV6_RECVERR">IPV6_RECVERR</span> = 0x19
<span id="IPV6_RECVHOPLIMIT">IPV6_RECVHOPLIMIT</span> = 0x33
<span id="IPV6_RECVHOPOPTS">IPV6_RECVHOPOPTS</span> = 0x35
<span id="IPV6_RECVPKTINFO">IPV6_RECVPKTINFO</span> = 0x31
<span id="IPV6_RECVRTHDR">IPV6_RECVRTHDR</span> = 0x38
<span id="IPV6_RECVTCLASS">IPV6_RECVTCLASS</span> = 0x42
<span id="IPV6_ROUTER_ALERT">IPV6_ROUTER_ALERT</span> = 0x16
<span id="IPV6_RTHDR">IPV6_RTHDR</span> = 0x39
<span id="IPV6_RTHDRDSTOPTS">IPV6_RTHDRDSTOPTS</span> = 0x37
<span id="IPV6_RTHDR_LOOSE">IPV6_RTHDR_LOOSE</span> = 0x0
<span id="IPV6_RTHDR_STRICT">IPV6_RTHDR_STRICT</span> = 0x1
<span id="IPV6_RTHDR_TYPE_0">IPV6_RTHDR_TYPE_0</span> = 0x0
<span id="IPV6_RXDSTOPTS">IPV6_RXDSTOPTS</span> = 0x3b
<span id="IPV6_RXHOPOPTS">IPV6_RXHOPOPTS</span> = 0x36
<span id="IPV6_TCLASS">IPV6_TCLASS</span> = 0x43
<span id="IPV6_UNICAST_HOPS">IPV6_UNICAST_HOPS</span> = 0x10
<span id="IPV6_V6ONLY">IPV6_V6ONLY</span> = 0x1a
<span id="IPV6_XFRM_POLICY">IPV6_XFRM_POLICY</span> = 0x23
<span id="IP_ADD_MEMBERSHIP">IP_ADD_MEMBERSHIP</span> = 0x23
<span id="IP_ADD_SOURCE_MEMBERSHIP">IP_ADD_SOURCE_MEMBERSHIP</span> = 0x27
<span id="IP_BLOCK_SOURCE">IP_BLOCK_SOURCE</span> = 0x26
<span id="IP_DEFAULT_MULTICAST_LOOP">IP_DEFAULT_MULTICAST_LOOP</span> = 0x1
<span id="IP_DEFAULT_MULTICAST_TTL">IP_DEFAULT_MULTICAST_TTL</span> = 0x1
<span id="IP_DF">IP_DF</span> = 0x4000
<span id="IP_DROP_MEMBERSHIP">IP_DROP_MEMBERSHIP</span> = 0x24
<span id="IP_DROP_SOURCE_MEMBERSHIP">IP_DROP_SOURCE_MEMBERSHIP</span> = 0x28
<span id="IP_FREEBIND">IP_FREEBIND</span> = 0xf
<span id="IP_HDRINCL">IP_HDRINCL</span> = 0x3
<span id="IP_IPSEC_POLICY">IP_IPSEC_POLICY</span> = 0x10
<span id="IP_MAXPACKET">IP_MAXPACKET</span> = 0xffff
<span id="IP_MAX_MEMBERSHIPS">IP_MAX_MEMBERSHIPS</span> = 0x14
<span id="IP_MF">IP_MF</span> = 0x2000
<span id="IP_MINTTL">IP_MINTTL</span> = 0x15
<span id="IP_MSFILTER">IP_MSFILTER</span> = 0x29
<span id="IP_MSS">IP_MSS</span> = 0x240
<span id="IP_MTU">IP_MTU</span> = 0xe
<span id="IP_MTU_DISCOVER">IP_MTU_DISCOVER</span> = 0xa
<span id="IP_MULTICAST_IF">IP_MULTICAST_IF</span> = 0x20
<span id="IP_MULTICAST_LOOP">IP_MULTICAST_LOOP</span> = 0x22
<span id="IP_MULTICAST_TTL">IP_MULTICAST_TTL</span> = 0x21
<span id="IP_OFFMASK">IP_OFFMASK</span> = 0x1fff
<span id="IP_OPTIONS">IP_OPTIONS</span> = 0x4
<span id="IP_ORIGDSTADDR">IP_ORIGDSTADDR</span> = 0x14
<span id="IP_PASSSEC">IP_PASSSEC</span> = 0x12
<span id="IP_PKTINFO">IP_PKTINFO</span> = 0x8
<span id="IP_PKTOPTIONS">IP_PKTOPTIONS</span> = 0x9
<span id="IP_PMTUDISC">IP_PMTUDISC</span> = 0xa
<span id="IP_PMTUDISC_DO">IP_PMTUDISC_DO</span> = 0x2
<span id="IP_PMTUDISC_DONT">IP_PMTUDISC_DONT</span> = 0x0
<span id="IP_PMTUDISC_PROBE">IP_PMTUDISC_PROBE</span> = 0x3
<span id="IP_PMTUDISC_WANT">IP_PMTUDISC_WANT</span> = 0x1
<span id="IP_RECVERR">IP_RECVERR</span> = 0xb
<span id="IP_RECVOPTS">IP_RECVOPTS</span> = 0x6
<span id="IP_RECVORIGDSTADDR">IP_RECVORIGDSTADDR</span> = 0x14
<span id="IP_RECVRETOPTS">IP_RECVRETOPTS</span> = 0x7
<span id="IP_RECVTOS">IP_RECVTOS</span> = 0xd
<span id="IP_RECVTTL">IP_RECVTTL</span> = 0xc
<span id="IP_RETOPTS">IP_RETOPTS</span> = 0x7
<span id="IP_RF">IP_RF</span> = 0x8000
<span id="IP_ROUTER_ALERT">IP_ROUTER_ALERT</span> = 0x5
<span id="IP_TOS">IP_TOS</span> = 0x1
<span id="IP_TRANSPARENT">IP_TRANSPARENT</span> = 0x13
<span id="IP_TTL">IP_TTL</span> = 0x2
<span id="IP_UNBLOCK_SOURCE">IP_UNBLOCK_SOURCE</span> = 0x25
<span id="IP_XFRM_POLICY">IP_XFRM_POLICY</span> = 0x11
<span id="LINUX_REBOOT_CMD_CAD_OFF">LINUX_REBOOT_CMD_CAD_OFF</span> = 0x0
<span id="LINUX_REBOOT_CMD_CAD_ON">LINUX_REBOOT_CMD_CAD_ON</span> = 0x89abcdef
<span id="LINUX_REBOOT_CMD_HALT">LINUX_REBOOT_CMD_HALT</span> = 0xcdef0123
<span id="LINUX_REBOOT_CMD_KEXEC">LINUX_REBOOT_CMD_KEXEC</span> = 0x45584543
<span id="LINUX_REBOOT_CMD_POWER_OFF">LINUX_REBOOT_CMD_POWER_OFF</span> = 0x4321fedc
<span id="LINUX_REBOOT_CMD_RESTART">LINUX_REBOOT_CMD_RESTART</span> = 0x1234567
<span id="LINUX_REBOOT_CMD_RESTART2">LINUX_REBOOT_CMD_RESTART2</span> = 0xa1b2c3d4
<span id="LINUX_REBOOT_CMD_SW_SUSPEND">LINUX_REBOOT_CMD_SW_SUSPEND</span> = 0xd000fce2
<span id="LINUX_REBOOT_MAGIC1">LINUX_REBOOT_MAGIC1</span> = 0xfee1dead
<span id="LINUX_REBOOT_MAGIC2">LINUX_REBOOT_MAGIC2</span> = 0x28121969
<span id="LOCK_EX">LOCK_EX</span> = 0x2
<span id="LOCK_NB">LOCK_NB</span> = 0x4
<span id="LOCK_SH">LOCK_SH</span> = 0x1
<span id="LOCK_UN">LOCK_UN</span> = 0x8
<span id="MADV_DOFORK">MADV_DOFORK</span> = 0xb
<span id="MADV_DONTFORK">MADV_DONTFORK</span> = 0xa
<span id="MADV_DONTNEED">MADV_DONTNEED</span> = 0x4
<span id="MADV_HUGEPAGE">MADV_HUGEPAGE</span> = 0xe
<span id="MADV_HWPOISON">MADV_HWPOISON</span> = 0x64
<span id="MADV_MERGEABLE">MADV_MERGEABLE</span> = 0xc
<span id="MADV_NOHUGEPAGE">MADV_NOHUGEPAGE</span> = 0xf
<span id="MADV_NORMAL">MADV_NORMAL</span> = 0x0
<span id="MADV_RANDOM">MADV_RANDOM</span> = 0x1
<span id="MADV_REMOVE">MADV_REMOVE</span> = 0x9
<span id="MADV_SEQUENTIAL">MADV_SEQUENTIAL</span> = 0x2
<span id="MADV_UNMERGEABLE">MADV_UNMERGEABLE</span> = 0xd
<span id="MADV_WILLNEED">MADV_WILLNEED</span> = 0x3
<span id="MAP_32BIT">MAP_32BIT</span> = 0x40
<span id="MAP_ANON">MAP_ANON</span> = 0x20
<span id="MAP_ANONYMOUS">MAP_ANONYMOUS</span> = 0x20
<span id="MAP_DENYWRITE">MAP_DENYWRITE</span> = 0x800
<span id="MAP_EXECUTABLE">MAP_EXECUTABLE</span> = 0x1000
<span id="MAP_FILE">MAP_FILE</span> = 0x0
<span id="MAP_FIXED">MAP_FIXED</span> = 0x10
<span id="MAP_GROWSDOWN">MAP_GROWSDOWN</span> = 0x100
<span id="MAP_HUGETLB">MAP_HUGETLB</span> = 0x40000
<span id="MAP_LOCKED">MAP_LOCKED</span> = 0x2000
<span id="MAP_NONBLOCK">MAP_NONBLOCK</span> = 0x10000
<span id="MAP_NORESERVE">MAP_NORESERVE</span> = 0x4000
<span id="MAP_POPULATE">MAP_POPULATE</span> = 0x8000
<span id="MAP_PRIVATE">MAP_PRIVATE</span> = 0x2
<span id="MAP_SHARED">MAP_SHARED</span> = 0x1
<span id="MAP_STACK">MAP_STACK</span> = 0x20000
<span id="MAP_TYPE">MAP_TYPE</span> = 0xf
<span id="MCL_CURRENT">MCL_CURRENT</span> = 0x1
<span id="MCL_FUTURE">MCL_FUTURE</span> = 0x2
<span id="MNT_DETACH">MNT_DETACH</span> = 0x2
<span id="MNT_EXPIRE">MNT_EXPIRE</span> = 0x4
<span id="MNT_FORCE">MNT_FORCE</span> = 0x1
<span id="MSG_CMSG_CLOEXEC">MSG_CMSG_CLOEXEC</span> = 0x40000000
<span id="MSG_CONFIRM">MSG_CONFIRM</span> = 0x800
<span id="MSG_CTRUNC">MSG_CTRUNC</span> = 0x8
<span id="MSG_DONTROUTE">MSG_DONTROUTE</span> = 0x4
<span id="MSG_DONTWAIT">MSG_DONTWAIT</span> = 0x40
<span id="MSG_EOR">MSG_EOR</span> = 0x80
<span id="MSG_ERRQUEUE">MSG_ERRQUEUE</span> = 0x2000
<span id="MSG_FASTOPEN">MSG_FASTOPEN</span> = 0x20000000
<span id="MSG_FIN">MSG_FIN</span> = 0x200
<span id="MSG_MORE">MSG_MORE</span> = 0x8000
<span id="MSG_NOSIGNAL">MSG_NOSIGNAL</span> = 0x4000
<span id="MSG_OOB">MSG_OOB</span> = 0x1
<span id="MSG_PEEK">MSG_PEEK</span> = 0x2
<span id="MSG_PROXY">MSG_PROXY</span> = 0x10
<span id="MSG_RST">MSG_RST</span> = 0x1000
<span id="MSG_SYN">MSG_SYN</span> = 0x400
<span id="MSG_TRUNC">MSG_TRUNC</span> = 0x20
<span id="MSG_TRYHARD">MSG_TRYHARD</span> = 0x4
<span id="MSG_WAITALL">MSG_WAITALL</span> = 0x100
<span id="MSG_WAITFORONE">MSG_WAITFORONE</span> = 0x10000
<span id="MS_ACTIVE">MS_ACTIVE</span> = 0x40000000
<span id="MS_ASYNC">MS_ASYNC</span> = 0x1
<span id="MS_BIND">MS_BIND</span> = 0x1000
<span id="MS_DIRSYNC">MS_DIRSYNC</span> = 0x80
<span id="MS_INVALIDATE">MS_INVALIDATE</span> = 0x2
<span id="MS_I_VERSION">MS_I_VERSION</span> = 0x800000
<span id="MS_KERNMOUNT">MS_KERNMOUNT</span> = 0x400000
<span id="MS_MANDLOCK">MS_MANDLOCK</span> = 0x40
<span id="MS_MGC_MSK">MS_MGC_MSK</span> = 0xffff0000
<span id="MS_MGC_VAL">MS_MGC_VAL</span> = 0xc0ed0000
<span id="MS_MOVE">MS_MOVE</span> = 0x2000
<span id="MS_NOATIME">MS_NOATIME</span> = 0x400
<span id="MS_NODEV">MS_NODEV</span> = 0x4
<span id="MS_NODIRATIME">MS_NODIRATIME</span> = 0x800
<span id="MS_NOEXEC">MS_NOEXEC</span> = 0x8
<span id="MS_NOSUID">MS_NOSUID</span> = 0x2
<span id="MS_NOUSER">MS_NOUSER</span> = -0x80000000
<span id="MS_POSIXACL">MS_POSIXACL</span> = 0x10000
<span id="MS_PRIVATE">MS_PRIVATE</span> = 0x40000
<span id="MS_RDONLY">MS_RDONLY</span> = 0x1
<span id="MS_REC">MS_REC</span> = 0x4000
<span id="MS_RELATIME">MS_RELATIME</span> = 0x200000
<span id="MS_REMOUNT">MS_REMOUNT</span> = 0x20
<span id="MS_RMT_MASK">MS_RMT_MASK</span> = 0x800051
<span id="MS_SHARED">MS_SHARED</span> = 0x100000
<span id="MS_SILENT">MS_SILENT</span> = 0x8000
<span id="MS_SLAVE">MS_SLAVE</span> = 0x80000
<span id="MS_STRICTATIME">MS_STRICTATIME</span> = 0x1000000
<span id="MS_SYNC">MS_SYNC</span> = 0x4
<span id="MS_SYNCHRONOUS">MS_SYNCHRONOUS</span> = 0x10
<span id="MS_UNBINDABLE">MS_UNBINDABLE</span> = 0x20000
<span id="NAME_MAX">NAME_MAX</span> = 0xff
<span id="NETLINK_ADD_MEMBERSHIP">NETLINK_ADD_MEMBERSHIP</span> = 0x1
<span id="NETLINK_AUDIT">NETLINK_AUDIT</span> = 0x9
<span id="NETLINK_BROADCAST_ERROR">NETLINK_BROADCAST_ERROR</span> = 0x4
<span id="NETLINK_CONNECTOR">NETLINK_CONNECTOR</span> = 0xb
<span id="NETLINK_DNRTMSG">NETLINK_DNRTMSG</span> = 0xe
<span id="NETLINK_DROP_MEMBERSHIP">NETLINK_DROP_MEMBERSHIP</span> = 0x2
<span id="NETLINK_ECRYPTFS">NETLINK_ECRYPTFS</span> = 0x13
<span id="NETLINK_FIB_LOOKUP">NETLINK_FIB_LOOKUP</span> = 0xa
<span id="NETLINK_FIREWALL">NETLINK_FIREWALL</span> = 0x3
<span id="NETLINK_GENERIC">NETLINK_GENERIC</span> = 0x10
<span id="NETLINK_INET_DIAG">NETLINK_INET_DIAG</span> = 0x4
<span id="NETLINK_IP6_FW">NETLINK_IP6_FW</span> = 0xd
<span id="NETLINK_ISCSI">NETLINK_ISCSI</span> = 0x8
<span id="NETLINK_KOBJECT_UEVENT">NETLINK_KOBJECT_UEVENT</span> = 0xf
<span id="NETLINK_NETFILTER">NETLINK_NETFILTER</span> = 0xc
<span id="NETLINK_NFLOG">NETLINK_NFLOG</span> = 0x5
<span id="NETLINK_NO_ENOBUFS">NETLINK_NO_ENOBUFS</span> = 0x5
<span id="NETLINK_PKTINFO">NETLINK_PKTINFO</span> = 0x3
<span id="NETLINK_ROUTE">NETLINK_ROUTE</span> = 0x0
<span id="NETLINK_SCSITRANSPORT">NETLINK_SCSITRANSPORT</span> = 0x12
<span id="NETLINK_SELINUX">NETLINK_SELINUX</span> = 0x7
<span id="NETLINK_UNUSED">NETLINK_UNUSED</span> = 0x1
<span id="NETLINK_USERSOCK">NETLINK_USERSOCK</span> = 0x2
<span id="NETLINK_XFRM">NETLINK_XFRM</span> = 0x6
<span id="NLA_ALIGNTO">NLA_ALIGNTO</span> = 0x4
<span id="NLA_F_NESTED">NLA_F_NESTED</span> = 0x8000
<span id="NLA_F_NET_BYTEORDER">NLA_F_NET_BYTEORDER</span> = 0x4000
<span id="NLA_HDRLEN">NLA_HDRLEN</span> = 0x4
<span id="NLMSG_ALIGNTO">NLMSG_ALIGNTO</span> = 0x4
<span id="NLMSG_DONE">NLMSG_DONE</span> = 0x3
<span id="NLMSG_ERROR">NLMSG_ERROR</span> = 0x2
<span id="NLMSG_HDRLEN">NLMSG_HDRLEN</span> = 0x10
<span id="NLMSG_MIN_TYPE">NLMSG_MIN_TYPE</span> = 0x10
<span id="NLMSG_NOOP">NLMSG_NOOP</span> = 0x1
<span id="NLMSG_OVERRUN">NLMSG_OVERRUN</span> = 0x4
<span id="NLM_F_ACK">NLM_F_ACK</span> = 0x4
<span id="NLM_F_APPEND">NLM_F_APPEND</span> = 0x800
<span id="NLM_F_ATOMIC">NLM_F_ATOMIC</span> = 0x400
<span id="NLM_F_CREATE">NLM_F_CREATE</span> = 0x400
<span id="NLM_F_DUMP">NLM_F_DUMP</span> = 0x300
<span id="NLM_F_ECHO">NLM_F_ECHO</span> = 0x8
<span id="NLM_F_EXCL">NLM_F_EXCL</span> = 0x200
<span id="NLM_F_MATCH">NLM_F_MATCH</span> = 0x200
<span id="NLM_F_MULTI">NLM_F_MULTI</span> = 0x2
<span id="NLM_F_REPLACE">NLM_F_REPLACE</span> = 0x100
<span id="NLM_F_REQUEST">NLM_F_REQUEST</span> = 0x1
<span id="NLM_F_ROOT">NLM_F_ROOT</span> = 0x100
<span id="O_ACCMODE">O_ACCMODE</span> = 0x3
<span id="O_APPEND">O_APPEND</span> = 0x400
<span id="O_ASYNC">O_ASYNC</span> = 0x2000
<span id="O_CLOEXEC">O_CLOEXEC</span> = 0x80000
<span id="O_CREAT">O_CREAT</span> = 0x40
<span id="O_DIRECT">O_DIRECT</span> = 0x4000
<span id="O_DIRECTORY">O_DIRECTORY</span> = 0x10000
<span id="O_DSYNC">O_DSYNC</span> = 0x1000
<span id="O_EXCL">O_EXCL</span> = 0x80
<span id="O_FSYNC">O_FSYNC</span> = 0x101000
<span id="O_LARGEFILE">O_LARGEFILE</span> = 0x0
<span id="O_NDELAY">O_NDELAY</span> = 0x800
<span id="O_NOATIME">O_NOATIME</span> = 0x40000
<span id="O_NOCTTY">O_NOCTTY</span> = 0x100
<span id="O_NOFOLLOW">O_NOFOLLOW</span> = 0x20000
<span id="O_NONBLOCK">O_NONBLOCK</span> = 0x800
<span id="O_RDONLY">O_RDONLY</span> = 0x0
<span id="O_RDWR">O_RDWR</span> = 0x2
<span id="O_RSYNC">O_RSYNC</span> = 0x101000
<span id="O_SYNC">O_SYNC</span> = 0x101000
<span id="O_TRUNC">O_TRUNC</span> = 0x200
<span id="O_WRONLY">O_WRONLY</span> = 0x1
<span id="PACKET_ADD_MEMBERSHIP">PACKET_ADD_MEMBERSHIP</span> = 0x1
<span id="PACKET_BROADCAST">PACKET_BROADCAST</span> = 0x1
<span id="PACKET_DROP_MEMBERSHIP">PACKET_DROP_MEMBERSHIP</span> = 0x2
<span id="PACKET_FASTROUTE">PACKET_FASTROUTE</span> = 0x6
<span id="PACKET_HOST">PACKET_HOST</span> = 0x0
<span id="PACKET_LOOPBACK">PACKET_LOOPBACK</span> = 0x5
<span id="PACKET_MR_ALLMULTI">PACKET_MR_ALLMULTI</span> = 0x2
<span id="PACKET_MR_MULTICAST">PACKET_MR_MULTICAST</span> = 0x0
<span id="PACKET_MR_PROMISC">PACKET_MR_PROMISC</span> = 0x1
<span id="PACKET_MULTICAST">PACKET_MULTICAST</span> = 0x2
<span id="PACKET_OTHERHOST">PACKET_OTHERHOST</span> = 0x3
<span id="PACKET_OUTGOING">PACKET_OUTGOING</span> = 0x4
<span id="PACKET_RECV_OUTPUT">PACKET_RECV_OUTPUT</span> = 0x3
<span id="PACKET_RX_RING">PACKET_RX_RING</span> = 0x5
<span id="PACKET_STATISTICS">PACKET_STATISTICS</span> = 0x6
<span id="PRIO_PGRP">PRIO_PGRP</span> = 0x1
<span id="PRIO_PROCESS">PRIO_PROCESS</span> = 0x0
<span id="PRIO_USER">PRIO_USER</span> = 0x2
<span id="PROT_EXEC">PROT_EXEC</span> = 0x4
<span id="PROT_GROWSDOWN">PROT_GROWSDOWN</span> = 0x1000000
<span id="PROT_GROWSUP">PROT_GROWSUP</span> = 0x2000000
<span id="PROT_NONE">PROT_NONE</span> = 0x0
<span id="PROT_READ">PROT_READ</span> = 0x1
<span id="PROT_WRITE">PROT_WRITE</span> = 0x2
<span id="PR_CAPBSET_DROP">PR_CAPBSET_DROP</span> = 0x18
<span id="PR_CAPBSET_READ">PR_CAPBSET_READ</span> = 0x17
<span id="PR_ENDIAN_BIG">PR_ENDIAN_BIG</span> = 0x0
<span id="PR_ENDIAN_LITTLE">PR_ENDIAN_LITTLE</span> = 0x1
<span id="PR_ENDIAN_PPC_LITTLE">PR_ENDIAN_PPC_LITTLE</span> = 0x2
<span id="PR_FPEMU_NOPRINT">PR_FPEMU_NOPRINT</span> = 0x1
<span id="PR_FPEMU_SIGFPE">PR_FPEMU_SIGFPE</span> = 0x2
<span id="PR_FP_EXC_ASYNC">PR_FP_EXC_ASYNC</span> = 0x2
<span id="PR_FP_EXC_DISABLED">PR_FP_EXC_DISABLED</span> = 0x0
<span id="PR_FP_EXC_DIV">PR_FP_EXC_DIV</span> = 0x10000
<span id="PR_FP_EXC_INV">PR_FP_EXC_INV</span> = 0x100000
<span id="PR_FP_EXC_NONRECOV">PR_FP_EXC_NONRECOV</span> = 0x1
<span id="PR_FP_EXC_OVF">PR_FP_EXC_OVF</span> = 0x20000
<span id="PR_FP_EXC_PRECISE">PR_FP_EXC_PRECISE</span> = 0x3
<span id="PR_FP_EXC_RES">PR_FP_EXC_RES</span> = 0x80000
<span id="PR_FP_EXC_SW_ENABLE">PR_FP_EXC_SW_ENABLE</span> = 0x80
<span id="PR_FP_EXC_UND">PR_FP_EXC_UND</span> = 0x40000
<span id="PR_GET_DUMPABLE">PR_GET_DUMPABLE</span> = 0x3
<span id="PR_GET_ENDIAN">PR_GET_ENDIAN</span> = 0x13
<span id="PR_GET_FPEMU">PR_GET_FPEMU</span> = 0x9
<span id="PR_GET_FPEXC">PR_GET_FPEXC</span> = 0xb
<span id="PR_GET_KEEPCAPS">PR_GET_KEEPCAPS</span> = 0x7
<span id="PR_GET_NAME">PR_GET_NAME</span> = 0x10
<span id="PR_GET_PDEATHSIG">PR_GET_PDEATHSIG</span> = 0x2
<span id="PR_GET_SECCOMP">PR_GET_SECCOMP</span> = 0x15
<span id="PR_GET_SECUREBITS">PR_GET_SECUREBITS</span> = 0x1b
<span id="PR_GET_TIMERSLACK">PR_GET_TIMERSLACK</span> = 0x1e
<span id="PR_GET_TIMING">PR_GET_TIMING</span> = 0xd
<span id="PR_GET_TSC">PR_GET_TSC</span> = 0x19
<span id="PR_GET_UNALIGN">PR_GET_UNALIGN</span> = 0x5
<span id="PR_MCE_KILL">PR_MCE_KILL</span> = 0x21
<span id="PR_MCE_KILL_CLEAR">PR_MCE_KILL_CLEAR</span> = 0x0
<span id="PR_MCE_KILL_DEFAULT">PR_MCE_KILL_DEFAULT</span> = 0x2
<span id="PR_MCE_KILL_EARLY">PR_MCE_KILL_EARLY</span> = 0x1
<span id="PR_MCE_KILL_GET">PR_MCE_KILL_GET</span> = 0x22
<span id="PR_MCE_KILL_LATE">PR_MCE_KILL_LATE</span> = 0x0
<span id="PR_MCE_KILL_SET">PR_MCE_KILL_SET</span> = 0x1
<span id="PR_SET_DUMPABLE">PR_SET_DUMPABLE</span> = 0x4
<span id="PR_SET_ENDIAN">PR_SET_ENDIAN</span> = 0x14
<span id="PR_SET_FPEMU">PR_SET_FPEMU</span> = 0xa
<span id="PR_SET_FPEXC">PR_SET_FPEXC</span> = 0xc
<span id="PR_SET_KEEPCAPS">PR_SET_KEEPCAPS</span> = 0x8
<span id="PR_SET_NAME">PR_SET_NAME</span> = 0xf
<span id="PR_SET_PDEATHSIG">PR_SET_PDEATHSIG</span> = 0x1
<span id="PR_SET_PTRACER">PR_SET_PTRACER</span> = 0x59616d61
<span id="PR_SET_SECCOMP">PR_SET_SECCOMP</span> = 0x16
<span id="PR_SET_SECUREBITS">PR_SET_SECUREBITS</span> = 0x1c
<span id="PR_SET_TIMERSLACK">PR_SET_TIMERSLACK</span> = 0x1d
<span id="PR_SET_TIMING">PR_SET_TIMING</span> = 0xe
<span id="PR_SET_TSC">PR_SET_TSC</span> = 0x1a
<span id="PR_SET_UNALIGN">PR_SET_UNALIGN</span> = 0x6
<span id="PR_TASK_PERF_EVENTS_DISABLE">PR_TASK_PERF_EVENTS_DISABLE</span> = 0x1f
<span id="PR_TASK_PERF_EVENTS_ENABLE">PR_TASK_PERF_EVENTS_ENABLE</span> = 0x20
<span id="PR_TIMING_STATISTICAL">PR_TIMING_STATISTICAL</span> = 0x0
<span id="PR_TIMING_TIMESTAMP">PR_TIMING_TIMESTAMP</span> = 0x1
<span id="PR_TSC_ENABLE">PR_TSC_ENABLE</span> = 0x1
<span id="PR_TSC_SIGSEGV">PR_TSC_SIGSEGV</span> = 0x2
<span id="PR_UNALIGN_NOPRINT">PR_UNALIGN_NOPRINT</span> = 0x1
<span id="PR_UNALIGN_SIGBUS">PR_UNALIGN_SIGBUS</span> = 0x2
<span id="PTRACE_ARCH_PRCTL">PTRACE_ARCH_PRCTL</span> = 0x1e
<span id="PTRACE_ATTACH">PTRACE_ATTACH</span> = 0x10
<span id="PTRACE_CONT">PTRACE_CONT</span> = 0x7
<span id="PTRACE_DETACH">PTRACE_DETACH</span> = 0x11
<span id="PTRACE_EVENT_CLONE">PTRACE_EVENT_CLONE</span> = 0x3
<span id="PTRACE_EVENT_EXEC">PTRACE_EVENT_EXEC</span> = 0x4
<span id="PTRACE_EVENT_EXIT">PTRACE_EVENT_EXIT</span> = 0x6
<span id="PTRACE_EVENT_FORK">PTRACE_EVENT_FORK</span> = 0x1
<span id="PTRACE_EVENT_VFORK">PTRACE_EVENT_VFORK</span> = 0x2
<span id="PTRACE_EVENT_VFORK_DONE">PTRACE_EVENT_VFORK_DONE</span> = 0x5
<span id="PTRACE_GETEVENTMSG">PTRACE_GETEVENTMSG</span> = 0x4201
<span id="PTRACE_GETFPREGS">PTRACE_GETFPREGS</span> = 0xe
<span id="PTRACE_GETFPXREGS">PTRACE_GETFPXREGS</span> = 0x12
<span id="PTRACE_GETREGS">PTRACE_GETREGS</span> = 0xc
<span id="PTRACE_GETREGSET">PTRACE_GETREGSET</span> = 0x4204
<span id="PTRACE_GETSIGINFO">PTRACE_GETSIGINFO</span> = 0x4202
<span id="PTRACE_GET_THREAD_AREA">PTRACE_GET_THREAD_AREA</span> = 0x19
<span id="PTRACE_KILL">PTRACE_KILL</span> = 0x8
<span id="PTRACE_OLDSETOPTIONS">PTRACE_OLDSETOPTIONS</span> = 0x15
<span id="PTRACE_O_MASK">PTRACE_O_MASK</span> = 0x7f
<span id="PTRACE_O_TRACECLONE">PTRACE_O_TRACECLONE</span> = 0x8
<span id="PTRACE_O_TRACEEXEC">PTRACE_O_TRACEEXEC</span> = 0x10
<span id="PTRACE_O_TRACEEXIT">PTRACE_O_TRACEEXIT</span> = 0x40
<span id="PTRACE_O_TRACEFORK">PTRACE_O_TRACEFORK</span> = 0x2
<span id="PTRACE_O_TRACESYSGOOD">PTRACE_O_TRACESYSGOOD</span> = 0x1
<span id="PTRACE_O_TRACEVFORK">PTRACE_O_TRACEVFORK</span> = 0x4
<span id="PTRACE_O_TRACEVFORKDONE">PTRACE_O_TRACEVFORKDONE</span> = 0x20
<span id="PTRACE_PEEKDATA">PTRACE_PEEKDATA</span> = 0x2
<span id="PTRACE_PEEKTEXT">PTRACE_PEEKTEXT</span> = 0x1
<span id="PTRACE_PEEKUSR">PTRACE_PEEKUSR</span> = 0x3
<span id="PTRACE_POKEDATA">PTRACE_POKEDATA</span> = 0x5
<span id="PTRACE_POKETEXT">PTRACE_POKETEXT</span> = 0x4
<span id="PTRACE_POKEUSR">PTRACE_POKEUSR</span> = 0x6
<span id="PTRACE_SETFPREGS">PTRACE_SETFPREGS</span> = 0xf
<span id="PTRACE_SETFPXREGS">PTRACE_SETFPXREGS</span> = 0x13
<span id="PTRACE_SETOPTIONS">PTRACE_SETOPTIONS</span> = 0x4200
<span id="PTRACE_SETREGS">PTRACE_SETREGS</span> = 0xd
<span id="PTRACE_SETREGSET">PTRACE_SETREGSET</span> = 0x4205
<span id="PTRACE_SETSIGINFO">PTRACE_SETSIGINFO</span> = 0x4203
<span id="PTRACE_SET_THREAD_AREA">PTRACE_SET_THREAD_AREA</span> = 0x1a
<span id="PTRACE_SINGLEBLOCK">PTRACE_SINGLEBLOCK</span> = 0x21
<span id="PTRACE_SINGLESTEP">PTRACE_SINGLESTEP</span> = 0x9
<span id="PTRACE_SYSCALL">PTRACE_SYSCALL</span> = 0x18
<span id="PTRACE_SYSEMU">PTRACE_SYSEMU</span> = 0x1f
<span id="PTRACE_SYSEMU_SINGLESTEP">PTRACE_SYSEMU_SINGLESTEP</span> = 0x20
<span id="PTRACE_TRACEME">PTRACE_TRACEME</span> = 0x0
<span id="RLIMIT_AS">RLIMIT_AS</span> = 0x9
<span id="RLIMIT_CORE">RLIMIT_CORE</span> = 0x4
<span id="RLIMIT_CPU">RLIMIT_CPU</span> = 0x0
<span id="RLIMIT_DATA">RLIMIT_DATA</span> = 0x2
<span id="RLIMIT_FSIZE">RLIMIT_FSIZE</span> = 0x1
<span id="RLIMIT_NOFILE">RLIMIT_NOFILE</span> = 0x7
<span id="RLIMIT_STACK">RLIMIT_STACK</span> = 0x3
<span id="RLIM_INFINITY">RLIM_INFINITY</span> = -0x1
<span id="RTAX_ADVMSS">RTAX_ADVMSS</span> = 0x8
<span id="RTAX_CWND">RTAX_CWND</span> = 0x7
<span id="RTAX_FEATURES">RTAX_FEATURES</span> = 0xc
<span id="RTAX_FEATURE_ALLFRAG">RTAX_FEATURE_ALLFRAG</span> = 0x8
<span id="RTAX_FEATURE_ECN">RTAX_FEATURE_ECN</span> = 0x1
<span id="RTAX_FEATURE_SACK">RTAX_FEATURE_SACK</span> = 0x2
<span id="RTAX_FEATURE_TIMESTAMP">RTAX_FEATURE_TIMESTAMP</span> = 0x4
<span id="RTAX_HOPLIMIT">RTAX_HOPLIMIT</span> = 0xa
<span id="RTAX_INITCWND">RTAX_INITCWND</span> = 0xb
<span id="RTAX_INITRWND">RTAX_INITRWND</span> = 0xe
<span id="RTAX_LOCK">RTAX_LOCK</span> = 0x1
<span id="RTAX_MAX">RTAX_MAX</span> = 0xe
<span id="RTAX_MTU">RTAX_MTU</span> = 0x2
<span id="RTAX_REORDERING">RTAX_REORDERING</span> = 0x9
<span id="RTAX_RTO_MIN">RTAX_RTO_MIN</span> = 0xd
<span id="RTAX_RTT">RTAX_RTT</span> = 0x4
<span id="RTAX_RTTVAR">RTAX_RTTVAR</span> = 0x5
<span id="RTAX_SSTHRESH">RTAX_SSTHRESH</span> = 0x6
<span id="RTAX_UNSPEC">RTAX_UNSPEC</span> = 0x0
<span id="RTAX_WINDOW">RTAX_WINDOW</span> = 0x3
<span id="RTA_ALIGNTO">RTA_ALIGNTO</span> = 0x4
<span id="RTA_MAX">RTA_MAX</span> = 0x10
<span id="RTCF_DIRECTSRC">RTCF_DIRECTSRC</span> = 0x4000000
<span id="RTCF_DOREDIRECT">RTCF_DOREDIRECT</span> = 0x1000000
<span id="RTCF_LOG">RTCF_LOG</span> = 0x2000000
<span id="RTCF_MASQ">RTCF_MASQ</span> = 0x400000
<span id="RTCF_NAT">RTCF_NAT</span> = 0x800000
<span id="RTCF_VALVE">RTCF_VALVE</span> = 0x200000
<span id="RTF_ADDRCLASSMASK">RTF_ADDRCLASSMASK</span> = 0xf8000000
<span id="RTF_ADDRCONF">RTF_ADDRCONF</span> = 0x40000
<span id="RTF_ALLONLINK">RTF_ALLONLINK</span> = 0x20000
<span id="RTF_BROADCAST">RTF_BROADCAST</span> = 0x10000000
<span id="RTF_CACHE">RTF_CACHE</span> = 0x1000000
<span id="RTF_DEFAULT">RTF_DEFAULT</span> = 0x10000
<span id="RTF_DYNAMIC">RTF_DYNAMIC</span> = 0x10
<span id="RTF_FLOW">RTF_FLOW</span> = 0x2000000
<span id="RTF_GATEWAY">RTF_GATEWAY</span> = 0x2
<span id="RTF_HOST">RTF_HOST</span> = 0x4
<span id="RTF_INTERFACE">RTF_INTERFACE</span> = 0x40000000
<span id="RTF_IRTT">RTF_IRTT</span> = 0x100
<span id="RTF_LINKRT">RTF_LINKRT</span> = 0x100000
<span id="RTF_LOCAL">RTF_LOCAL</span> = 0x80000000
<span id="RTF_MODIFIED">RTF_MODIFIED</span> = 0x20
<span id="RTF_MSS">RTF_MSS</span> = 0x40
<span id="RTF_MTU">RTF_MTU</span> = 0x40
<span id="RTF_MULTICAST">RTF_MULTICAST</span> = 0x20000000
<span id="RTF_NAT">RTF_NAT</span> = 0x8000000
<span id="RTF_NOFORWARD">RTF_NOFORWARD</span> = 0x1000
<span id="RTF_NONEXTHOP">RTF_NONEXTHOP</span> = 0x200000
<span id="RTF_NOPMTUDISC">RTF_NOPMTUDISC</span> = 0x4000
<span id="RTF_POLICY">RTF_POLICY</span> = 0x4000000
<span id="RTF_REINSTATE">RTF_REINSTATE</span> = 0x8
<span id="RTF_REJECT">RTF_REJECT</span> = 0x200
<span id="RTF_STATIC">RTF_STATIC</span> = 0x400
<span id="RTF_THROW">RTF_THROW</span> = 0x2000
<span id="RTF_UP">RTF_UP</span> = 0x1
<span id="RTF_WINDOW">RTF_WINDOW</span> = 0x80
<span id="RTF_XRESOLVE">RTF_XRESOLVE</span> = 0x800
<span id="RTM_BASE">RTM_BASE</span> = 0x10
<span id="RTM_DELACTION">RTM_DELACTION</span> = 0x31
<span id="RTM_DELADDR">RTM_DELADDR</span> = 0x15
<span id="RTM_DELADDRLABEL">RTM_DELADDRLABEL</span> = 0x49
<span id="RTM_DELLINK">RTM_DELLINK</span> = 0x11
<span id="RTM_DELNEIGH">RTM_DELNEIGH</span> = 0x1d
<span id="RTM_DELQDISC">RTM_DELQDISC</span> = 0x25
<span id="RTM_DELROUTE">RTM_DELROUTE</span> = 0x19
<span id="RTM_DELRULE">RTM_DELRULE</span> = 0x21
<span id="RTM_DELTCLASS">RTM_DELTCLASS</span> = 0x29
<span id="RTM_DELTFILTER">RTM_DELTFILTER</span> = 0x2d
<span id="RTM_F_CLONED">RTM_F_CLONED</span> = 0x200
<span id="RTM_F_EQUALIZE">RTM_F_EQUALIZE</span> = 0x400
<span id="RTM_F_NOTIFY">RTM_F_NOTIFY</span> = 0x100
<span id="RTM_F_PREFIX">RTM_F_PREFIX</span> = 0x800
<span id="RTM_GETACTION">RTM_GETACTION</span> = 0x32
<span id="RTM_GETADDR">RTM_GETADDR</span> = 0x16
<span id="RTM_GETADDRLABEL">RTM_GETADDRLABEL</span> = 0x4a
<span id="RTM_GETANYCAST">RTM_GETANYCAST</span> = 0x3e
<span id="RTM_GETDCB">RTM_GETDCB</span> = 0x4e
<span id="RTM_GETLINK">RTM_GETLINK</span> = 0x12
<span id="RTM_GETMULTICAST">RTM_GETMULTICAST</span> = 0x3a
<span id="RTM_GETNEIGH">RTM_GETNEIGH</span> = 0x1e
<span id="RTM_GETNEIGHTBL">RTM_GETNEIGHTBL</span> = 0x42
<span id="RTM_GETQDISC">RTM_GETQDISC</span> = 0x26
<span id="RTM_GETROUTE">RTM_GETROUTE</span> = 0x1a
<span id="RTM_GETRULE">RTM_GETRULE</span> = 0x22
<span id="RTM_GETTCLASS">RTM_GETTCLASS</span> = 0x2a
<span id="RTM_GETTFILTER">RTM_GETTFILTER</span> = 0x2e
<span id="RTM_MAX">RTM_MAX</span> = 0x4f
<span id="RTM_NEWACTION">RTM_NEWACTION</span> = 0x30
<span id="RTM_NEWADDR">RTM_NEWADDR</span> = 0x14
<span id="RTM_NEWADDRLABEL">RTM_NEWADDRLABEL</span> = 0x48
<span id="RTM_NEWLINK">RTM_NEWLINK</span> = 0x10
<span id="RTM_NEWNDUSEROPT">RTM_NEWNDUSEROPT</span> = 0x44
<span id="RTM_NEWNEIGH">RTM_NEWNEIGH</span> = 0x1c
<span id="RTM_NEWNEIGHTBL">RTM_NEWNEIGHTBL</span> = 0x40
<span id="RTM_NEWPREFIX">RTM_NEWPREFIX</span> = 0x34
<span id="RTM_NEWQDISC">RTM_NEWQDISC</span> = 0x24
<span id="RTM_NEWROUTE">RTM_NEWROUTE</span> = 0x18
<span id="RTM_NEWRULE">RTM_NEWRULE</span> = 0x20
<span id="RTM_NEWTCLASS">RTM_NEWTCLASS</span> = 0x28
<span id="RTM_NEWTFILTER">RTM_NEWTFILTER</span> = 0x2c
<span id="RTM_NR_FAMILIES">RTM_NR_FAMILIES</span> = 0x10
<span id="RTM_NR_MSGTYPES">RTM_NR_MSGTYPES</span> = 0x40
<span id="RTM_SETDCB">RTM_SETDCB</span> = 0x4f
<span id="RTM_SETLINK">RTM_SETLINK</span> = 0x13
<span id="RTM_SETNEIGHTBL">RTM_SETNEIGHTBL</span> = 0x43
<span id="RTNH_ALIGNTO">RTNH_ALIGNTO</span> = 0x4
<span id="RTNH_F_DEAD">RTNH_F_DEAD</span> = 0x1
<span id="RTNH_F_ONLINK">RTNH_F_ONLINK</span> = 0x4
<span id="RTNH_F_PERVASIVE">RTNH_F_PERVASIVE</span> = 0x2
<span id="RTN_MAX">RTN_MAX</span> = 0xb
<span id="RTPROT_BIRD">RTPROT_BIRD</span> = 0xc
<span id="RTPROT_BOOT">RTPROT_BOOT</span> = 0x3
<span id="RTPROT_DHCP">RTPROT_DHCP</span> = 0x10
<span id="RTPROT_DNROUTED">RTPROT_DNROUTED</span> = 0xd
<span id="RTPROT_GATED">RTPROT_GATED</span> = 0x8
<span id="RTPROT_KERNEL">RTPROT_KERNEL</span> = 0x2
<span id="RTPROT_MRT">RTPROT_MRT</span> = 0xa
<span id="RTPROT_NTK">RTPROT_NTK</span> = 0xf
<span id="RTPROT_RA">RTPROT_RA</span> = 0x9
<span id="RTPROT_REDIRECT">RTPROT_REDIRECT</span> = 0x1
<span id="RTPROT_STATIC">RTPROT_STATIC</span> = 0x4
<span id="RTPROT_UNSPEC">RTPROT_UNSPEC</span> = 0x0
<span id="RTPROT_XORP">RTPROT_XORP</span> = 0xe
<span id="RTPROT_ZEBRA">RTPROT_ZEBRA</span> = 0xb
<span id="RT_CLASS_DEFAULT">RT_CLASS_DEFAULT</span> = 0xfd
<span id="RT_CLASS_LOCAL">RT_CLASS_LOCAL</span> = 0xff
<span id="RT_CLASS_MAIN">RT_CLASS_MAIN</span> = 0xfe
<span id="RT_CLASS_MAX">RT_CLASS_MAX</span> = 0xff
<span id="RT_CLASS_UNSPEC">RT_CLASS_UNSPEC</span> = 0x0
<span id="RUSAGE_CHILDREN">RUSAGE_CHILDREN</span> = -0x1
<span id="RUSAGE_SELF">RUSAGE_SELF</span> = 0x0
<span id="RUSAGE_THREAD">RUSAGE_THREAD</span> = 0x1
<span id="SCM_CREDENTIALS">SCM_CREDENTIALS</span> = 0x2
<span id="SCM_RIGHTS">SCM_RIGHTS</span> = 0x1
<span id="SCM_TIMESTAMP">SCM_TIMESTAMP</span> = 0x1d
<span id="SCM_TIMESTAMPING">SCM_TIMESTAMPING</span> = 0x25
<span id="SCM_TIMESTAMPNS">SCM_TIMESTAMPNS</span> = 0x23
<span id="SHUT_RD">SHUT_RD</span> = 0x0
<span id="SHUT_RDWR">SHUT_RDWR</span> = 0x2
<span id="SHUT_WR">SHUT_WR</span> = 0x1
<span id="SIOCADDDLCI">SIOCADDDLCI</span> = 0x8980
<span id="SIOCADDMULTI">SIOCADDMULTI</span> = 0x8931
<span id="SIOCADDRT">SIOCADDRT</span> = 0x890b
<span id="SIOCATMARK">SIOCATMARK</span> = 0x8905
<span id="SIOCDARP">SIOCDARP</span> = 0x8953
<span id="SIOCDELDLCI">SIOCDELDLCI</span> = 0x8981
<span id="SIOCDELMULTI">SIOCDELMULTI</span> = 0x8932
<span id="SIOCDELRT">SIOCDELRT</span> = 0x890c
<span id="SIOCDEVPRIVATE">SIOCDEVPRIVATE</span> = 0x89f0
<span id="SIOCDIFADDR">SIOCDIFADDR</span> = 0x8936
<span id="SIOCDRARP">SIOCDRARP</span> = 0x8960
<span id="SIOCGARP">SIOCGARP</span> = 0x8954
<span id="SIOCGIFADDR">SIOCGIFADDR</span> = 0x8915
<span id="SIOCGIFBR">SIOCGIFBR</span> = 0x8940
<span id="SIOCGIFBRDADDR">SIOCGIFBRDADDR</span> = 0x8919
<span id="SIOCGIFCONF">SIOCGIFCONF</span> = 0x8912
<span id="SIOCGIFCOUNT">SIOCGIFCOUNT</span> = 0x8938
<span id="SIOCGIFDSTADDR">SIOCGIFDSTADDR</span> = 0x8917
<span id="SIOCGIFENCAP">SIOCGIFENCAP</span> = 0x8925
<span id="SIOCGIFFLAGS">SIOCGIFFLAGS</span> = 0x8913
<span id="SIOCGIFHWADDR">SIOCGIFHWADDR</span> = 0x8927
<span id="SIOCGIFINDEX">SIOCGIFINDEX</span> = 0x8933
<span id="SIOCGIFMAP">SIOCGIFMAP</span> = 0x8970
<span id="SIOCGIFMEM">SIOCGIFMEM</span> = 0x891f
<span id="SIOCGIFMETRIC">SIOCGIFMETRIC</span> = 0x891d
<span id="SIOCGIFMTU">SIOCGIFMTU</span> = 0x8921
<span id="SIOCGIFNAME">SIOCGIFNAME</span> = 0x8910
<span id="SIOCGIFNETMASK">SIOCGIFNETMASK</span> = 0x891b
<span id="SIOCGIFPFLAGS">SIOCGIFPFLAGS</span> = 0x8935
<span id="SIOCGIFSLAVE">SIOCGIFSLAVE</span> = 0x8929
<span id="SIOCGIFTXQLEN">SIOCGIFTXQLEN</span> = 0x8942
<span id="SIOCGPGRP">SIOCGPGRP</span> = 0x8904
<span id="SIOCGRARP">SIOCGRARP</span> = 0x8961
<span id="SIOCGSTAMP">SIOCGSTAMP</span> = 0x8906
<span id="SIOCGSTAMPNS">SIOCGSTAMPNS</span> = 0x8907
<span id="SIOCPROTOPRIVATE">SIOCPROTOPRIVATE</span> = 0x89e0
<span id="SIOCRTMSG">SIOCRTMSG</span> = 0x890d
<span id="SIOCSARP">SIOCSARP</span> = 0x8955
<span id="SIOCSIFADDR">SIOCSIFADDR</span> = 0x8916
<span id="SIOCSIFBR">SIOCSIFBR</span> = 0x8941
<span id="SIOCSIFBRDADDR">SIOCSIFBRDADDR</span> = 0x891a
<span id="SIOCSIFDSTADDR">SIOCSIFDSTADDR</span> = 0x8918
<span id="SIOCSIFENCAP">SIOCSIFENCAP</span> = 0x8926
<span id="SIOCSIFFLAGS">SIOCSIFFLAGS</span> = 0x8914
<span id="SIOCSIFHWADDR">SIOCSIFHWADDR</span> = 0x8924
<span id="SIOCSIFHWBROADCAST">SIOCSIFHWBROADCAST</span> = 0x8937
<span id="SIOCSIFLINK">SIOCSIFLINK</span> = 0x8911
<span id="SIOCSIFMAP">SIOCSIFMAP</span> = 0x8971
<span id="SIOCSIFMEM">SIOCSIFMEM</span> = 0x8920
<span id="SIOCSIFMETRIC">SIOCSIFMETRIC</span> = 0x891e
<span id="SIOCSIFMTU">SIOCSIFMTU</span> = 0x8922
<span id="SIOCSIFNAME">SIOCSIFNAME</span> = 0x8923
<span id="SIOCSIFNETMASK">SIOCSIFNETMASK</span> = 0x891c
<span id="SIOCSIFPFLAGS">SIOCSIFPFLAGS</span> = 0x8934
<span id="SIOCSIFSLAVE">SIOCSIFSLAVE</span> = 0x8930
<span id="SIOCSIFTXQLEN">SIOCSIFTXQLEN</span> = 0x8943
<span id="SIOCSPGRP">SIOCSPGRP</span> = 0x8902
<span id="SIOCSRARP">SIOCSRARP</span> = 0x8962
<span id="SOCK_CLOEXEC">SOCK_CLOEXEC</span> = 0x80000
<span id="SOCK_DCCP">SOCK_DCCP</span> = 0x6
<span id="SOCK_DGRAM">SOCK_DGRAM</span> = 0x2
<span id="SOCK_NONBLOCK">SOCK_NONBLOCK</span> = 0x800
<span id="SOCK_PACKET">SOCK_PACKET</span> = 0xa
<span id="SOCK_RAW">SOCK_RAW</span> = 0x3
<span id="SOCK_RDM">SOCK_RDM</span> = 0x4
<span id="SOCK_SEQPACKET">SOCK_SEQPACKET</span> = 0x5
<span id="SOCK_STREAM">SOCK_STREAM</span> = 0x1
<span id="SOL_AAL">SOL_AAL</span> = 0x109
<span id="SOL_ATM">SOL_ATM</span> = 0x108
<span id="SOL_DECNET">SOL_DECNET</span> = 0x105
<span id="SOL_ICMPV6">SOL_ICMPV6</span> = 0x3a
<span id="SOL_IP">SOL_IP</span> = 0x0
<span id="SOL_IPV6">SOL_IPV6</span> = 0x29
<span id="SOL_IRDA">SOL_IRDA</span> = 0x10a
<span id="SOL_PACKET">SOL_PACKET</span> = 0x107
<span id="SOL_RAW">SOL_RAW</span> = 0xff
<span id="SOL_SOCKET">SOL_SOCKET</span> = 0x1
<span id="SOL_TCP">SOL_TCP</span> = 0x6
<span id="SOL_X25">SOL_X25</span> = 0x106
<span id="SOMAXCONN">SOMAXCONN</span> = 0x80
<span id="SO_ACCEPTCONN">SO_ACCEPTCONN</span> = 0x1e
<span id="SO_ATTACH_FILTER">SO_ATTACH_FILTER</span> = 0x1a
<span id="SO_BINDTODEVICE">SO_BINDTODEVICE</span> = 0x19
<span id="SO_BROADCAST">SO_BROADCAST</span> = 0x6
<span id="SO_BSDCOMPAT">SO_BSDCOMPAT</span> = 0xe
<span id="SO_DEBUG">SO_DEBUG</span> = 0x1
<span id="SO_DETACH_FILTER">SO_DETACH_FILTER</span> = 0x1b
<span id="SO_DOMAIN">SO_DOMAIN</span> = 0x27
<span id="SO_DONTROUTE">SO_DONTROUTE</span> = 0x5
<span id="SO_ERROR">SO_ERROR</span> = 0x4
<span id="SO_KEEPALIVE">SO_KEEPALIVE</span> = 0x9
<span id="SO_LINGER">SO_LINGER</span> = 0xd
<span id="SO_MARK">SO_MARK</span> = 0x24
<span id="SO_NO_CHECK">SO_NO_CHECK</span> = 0xb
<span id="SO_OOBINLINE">SO_OOBINLINE</span> = 0xa
<span id="SO_PASSCRED">SO_PASSCRED</span> = 0x10
<span id="SO_PASSSEC">SO_PASSSEC</span> = 0x22
<span id="SO_PEERCRED">SO_PEERCRED</span> = 0x11
<span id="SO_PEERNAME">SO_PEERNAME</span> = 0x1c
<span id="SO_PEERSEC">SO_PEERSEC</span> = 0x1f
<span id="SO_PRIORITY">SO_PRIORITY</span> = 0xc
<span id="SO_PROTOCOL">SO_PROTOCOL</span> = 0x26
<span id="SO_RCVBUF">SO_RCVBUF</span> = 0x8
<span id="SO_RCVBUFFORCE">SO_RCVBUFFORCE</span> = 0x21
<span id="SO_RCVLOWAT">SO_RCVLOWAT</span> = 0x12
<span id="SO_RCVTIMEO">SO_RCVTIMEO</span> = 0x14
<span id="SO_REUSEADDR">SO_REUSEADDR</span> = 0x2
<span id="SO_RXQ_OVFL">SO_RXQ_OVFL</span> = 0x28
<span id="SO_SECURITY_AUTHENTICATION">SO_SECURITY_AUTHENTICATION</span> = 0x16
<span id="SO_SECURITY_ENCRYPTION_NETWORK">SO_SECURITY_ENCRYPTION_NETWORK</span> = 0x18
<span id="SO_SECURITY_ENCRYPTION_TRANSPORT">SO_SECURITY_ENCRYPTION_TRANSPORT</span> = 0x17
<span id="SO_SNDBUF">SO_SNDBUF</span> = 0x7
<span id="SO_SNDBUFFORCE">SO_SNDBUFFORCE</span> = 0x20
<span id="SO_SNDLOWAT">SO_SNDLOWAT</span> = 0x13
<span id="SO_SNDTIMEO">SO_SNDTIMEO</span> = 0x15
<span id="SO_TIMESTAMP">SO_TIMESTAMP</span> = 0x1d
<span id="SO_TIMESTAMPING">SO_TIMESTAMPING</span> = 0x25
<span id="SO_TIMESTAMPNS">SO_TIMESTAMPNS</span> = 0x23
<span id="SO_TYPE">SO_TYPE</span> = 0x3
<span id="S_BLKSIZE">S_BLKSIZE</span> = 0x200
<span id="S_IEXEC">S_IEXEC</span> = 0x40
<span id="S_IFBLK">S_IFBLK</span> = 0x6000
<span id="S_IFCHR">S_IFCHR</span> = 0x2000
<span id="S_IFDIR">S_IFDIR</span> = 0x4000
<span id="S_IFIFO">S_IFIFO</span> = 0x1000
<span id="S_IFLNK">S_IFLNK</span> = 0xa000
<span id="S_IFMT">S_IFMT</span> = 0xf000
<span id="S_IFREG">S_IFREG</span> = 0x8000
<span id="S_IFSOCK">S_IFSOCK</span> = 0xc000
<span id="S_IREAD">S_IREAD</span> = 0x100
<span id="S_IRGRP">S_IRGRP</span> = 0x20
<span id="S_IROTH">S_IROTH</span> = 0x4
<span id="S_IRUSR">S_IRUSR</span> = 0x100
<span id="S_IRWXG">S_IRWXG</span> = 0x38
<span id="S_IRWXO">S_IRWXO</span> = 0x7
<span id="S_IRWXU">S_IRWXU</span> = 0x1c0
<span id="S_ISGID">S_ISGID</span> = 0x400
<span id="S_ISUID">S_ISUID</span> = 0x800
<span id="S_ISVTX">S_ISVTX</span> = 0x200
<span id="S_IWGRP">S_IWGRP</span> = 0x10
<span id="S_IWOTH">S_IWOTH</span> = 0x2
<span id="S_IWRITE">S_IWRITE</span> = 0x80
<span id="S_IWUSR">S_IWUSR</span> = 0x80
<span id="S_IXGRP">S_IXGRP</span> = 0x8
<span id="S_IXOTH">S_IXOTH</span> = 0x1
<span id="S_IXUSR">S_IXUSR</span> = 0x40
<span id="TCIFLUSH">TCIFLUSH</span> = 0x0
<span id="TCIOFLUSH">TCIOFLUSH</span> = 0x2
<span id="TCOFLUSH">TCOFLUSH</span> = 0x1
<span id="TCP_CONGESTION">TCP_CONGESTION</span> = 0xd
<span id="TCP_CORK">TCP_CORK</span> = 0x3
<span id="TCP_DEFER_ACCEPT">TCP_DEFER_ACCEPT</span> = 0x9
<span id="TCP_INFO">TCP_INFO</span> = 0xb
<span id="TCP_KEEPCNT">TCP_KEEPCNT</span> = 0x6
<span id="TCP_KEEPIDLE">TCP_KEEPIDLE</span> = 0x4
<span id="TCP_KEEPINTVL">TCP_KEEPINTVL</span> = 0x5
<span id="TCP_LINGER2">TCP_LINGER2</span> = 0x8
<span id="TCP_MAXSEG">TCP_MAXSEG</span> = 0x2
<span id="TCP_MAXWIN">TCP_MAXWIN</span> = 0xffff
<span id="TCP_MAX_WINSHIFT">TCP_MAX_WINSHIFT</span> = 0xe
<span id="TCP_MD5SIG">TCP_MD5SIG</span> = 0xe
<span id="TCP_MD5SIG_MAXKEYLEN">TCP_MD5SIG_MAXKEYLEN</span> = 0x50
<span id="TCP_MSS">TCP_MSS</span> = 0x200
<span id="TCP_NODELAY">TCP_NODELAY</span> = 0x1
<span id="TCP_QUICKACK">TCP_QUICKACK</span> = 0xc
<span id="TCP_SYNCNT">TCP_SYNCNT</span> = 0x7
<span id="TCP_WINDOW_CLAMP">TCP_WINDOW_CLAMP</span> = 0xa
<span id="TIOCCBRK">TIOCCBRK</span> = 0x5428
<span id="TIOCCONS">TIOCCONS</span> = 0x541d
<span id="TIOCEXCL">TIOCEXCL</span> = 0x540c
<span id="TIOCGDEV">TIOCGDEV</span> = 0x80045432
<span id="TIOCGETD">TIOCGETD</span> = 0x5424
<span id="TIOCGICOUNT">TIOCGICOUNT</span> = 0x545d
<span id="TIOCGLCKTRMIOS">TIOCGLCKTRMIOS</span> = 0x5456
<span id="TIOCGPGRP">TIOCGPGRP</span> = 0x540f
<span id="TIOCGPTN">TIOCGPTN</span> = 0x80045430
<span id="TIOCGRS485">TIOCGRS485</span> = 0x542e
<span id="TIOCGSERIAL">TIOCGSERIAL</span> = 0x541e
<span id="TIOCGSID">TIOCGSID</span> = 0x5429
<span id="TIOCGSOFTCAR">TIOCGSOFTCAR</span> = 0x5419
<span id="TIOCGWINSZ">TIOCGWINSZ</span> = 0x5413
<span id="TIOCINQ">TIOCINQ</span> = 0x541b
<span id="TIOCLINUX">TIOCLINUX</span> = 0x541c
<span id="TIOCMBIC">TIOCMBIC</span> = 0x5417
<span id="TIOCMBIS">TIOCMBIS</span> = 0x5416
<span id="TIOCMGET">TIOCMGET</span> = 0x5415
<span id="TIOCMIWAIT">TIOCMIWAIT</span> = 0x545c
<span id="TIOCMSET">TIOCMSET</span> = 0x5418
<span id="TIOCM_CAR">TIOCM_CAR</span> = 0x40
<span id="TIOCM_CD">TIOCM_CD</span> = 0x40
<span id="TIOCM_CTS">TIOCM_CTS</span> = 0x20
<span id="TIOCM_DSR">TIOCM_DSR</span> = 0x100
<span id="TIOCM_DTR">TIOCM_DTR</span> = 0x2
<span id="TIOCM_LE">TIOCM_LE</span> = 0x1
<span id="TIOCM_RI">TIOCM_RI</span> = 0x80
<span id="TIOCM_RNG">TIOCM_RNG</span> = 0x80
<span id="TIOCM_RTS">TIOCM_RTS</span> = 0x4
<span id="TIOCM_SR">TIOCM_SR</span> = 0x10
<span id="TIOCM_ST">TIOCM_ST</span> = 0x8
<span id="TIOCNOTTY">TIOCNOTTY</span> = 0x5422
<span id="TIOCNXCL">TIOCNXCL</span> = 0x540d
<span id="TIOCOUTQ">TIOCOUTQ</span> = 0x5411
<span id="TIOCPKT">TIOCPKT</span> = 0x5420
<span id="TIOCPKT_DATA">TIOCPKT_DATA</span> = 0x0
<span id="TIOCPKT_DOSTOP">TIOCPKT_DOSTOP</span> = 0x20
<span id="TIOCPKT_FLUSHREAD">TIOCPKT_FLUSHREAD</span> = 0x1
<span id="TIOCPKT_FLUSHWRITE">TIOCPKT_FLUSHWRITE</span> = 0x2
<span id="TIOCPKT_IOCTL">TIOCPKT_IOCTL</span> = 0x40
<span id="TIOCPKT_NOSTOP">TIOCPKT_NOSTOP</span> = 0x10
<span id="TIOCPKT_START">TIOCPKT_START</span> = 0x8
<span id="TIOCPKT_STOP">TIOCPKT_STOP</span> = 0x4
<span id="TIOCSBRK">TIOCSBRK</span> = 0x5427
<span id="TIOCSCTTY">TIOCSCTTY</span> = 0x540e
<span id="TIOCSERCONFIG">TIOCSERCONFIG</span> = 0x5453
<span id="TIOCSERGETLSR">TIOCSERGETLSR</span> = 0x5459
<span id="TIOCSERGETMULTI">TIOCSERGETMULTI</span> = 0x545a
<span id="TIOCSERGSTRUCT">TIOCSERGSTRUCT</span> = 0x5458
<span id="TIOCSERGWILD">TIOCSERGWILD</span> = 0x5454
<span id="TIOCSERSETMULTI">TIOCSERSETMULTI</span> = 0x545b
<span id="TIOCSERSWILD">TIOCSERSWILD</span> = 0x5455
<span id="TIOCSER_TEMT">TIOCSER_TEMT</span> = 0x1
<span id="TIOCSETD">TIOCSETD</span> = 0x5423
<span id="TIOCSIG">TIOCSIG</span> = 0x40045436
<span id="TIOCSLCKTRMIOS">TIOCSLCKTRMIOS</span> = 0x5457
<span id="TIOCSPGRP">TIOCSPGRP</span> = 0x5410
<span id="TIOCSPTLCK">TIOCSPTLCK</span> = 0x40045431
<span id="TIOCSRS485">TIOCSRS485</span> = 0x542f
<span id="TIOCSSERIAL">TIOCSSERIAL</span> = 0x541f
<span id="TIOCSSOFTCAR">TIOCSSOFTCAR</span> = 0x541a
<span id="TIOCSTI">TIOCSTI</span> = 0x5412
<span id="TIOCSWINSZ">TIOCSWINSZ</span> = 0x5414
<span id="TUNATTACHFILTER">TUNATTACHFILTER</span> = 0x401054d5
<span id="TUNDETACHFILTER">TUNDETACHFILTER</span> = 0x401054d6
<span id="TUNGETFEATURES">TUNGETFEATURES</span> = 0x800454cf
<span id="TUNGETIFF">TUNGETIFF</span> = 0x800454d2
<span id="TUNGETSNDBUF">TUNGETSNDBUF</span> = 0x800454d3
<span id="TUNGETVNETHDRSZ">TUNGETVNETHDRSZ</span> = 0x800454d7
<span id="TUNSETDEBUG">TUNSETDEBUG</span> = 0x400454c9
<span id="TUNSETGROUP">TUNSETGROUP</span> = 0x400454ce
<span id="TUNSETIFF">TUNSETIFF</span> = 0x400454ca
<span id="TUNSETLINK">TUNSETLINK</span> = 0x400454cd
<span id="TUNSETNOCSUM">TUNSETNOCSUM</span> = 0x400454c8
<span id="TUNSETOFFLOAD">TUNSETOFFLOAD</span> = 0x400454d0
<span id="TUNSETOWNER">TUNSETOWNER</span> = 0x400454cc
<span id="TUNSETPERSIST">TUNSETPERSIST</span> = 0x400454cb
<span id="TUNSETSNDBUF">TUNSETSNDBUF</span> = 0x400454d4
<span id="TUNSETTXFILTER">TUNSETTXFILTER</span> = 0x400454d1
<span id="TUNSETVNETHDRSZ">TUNSETVNETHDRSZ</span> = 0x400454d8
<span id="WALL">WALL</span> = 0x40000000
<span id="WCLONE">WCLONE</span> = 0x80000000
<span id="WCONTINUED">WCONTINUED</span> = 0x8
<span id="WEXITED">WEXITED</span> = 0x4
<span id="WNOHANG">WNOHANG</span> = 0x1
<span id="WNOTHREAD">WNOTHREAD</span> = 0x20000000
<span id="WNOWAIT">WNOWAIT</span> = 0x1000000
<span id="WORDSIZE">WORDSIZE</span> = 0x40
<span id="WSTOPPED">WSTOPPED</span> = 0x2
<span id="WUNTRACED">WUNTRACED</span> = 0x2
)</pre>
<pre>const (
<span id="E2BIG">E2BIG</span> = <a href="index.html#Errno">Errno</a>(0x7)
<span id="EACCES">EACCES</span> = <a href="index.html#Errno">Errno</a>(0xd)
<span id="EADDRINUSE">EADDRINUSE</span> = <a href="index.html#Errno">Errno</a>(0x62)
<span id="EADDRNOTAVAIL">EADDRNOTAVAIL</span> = <a href="index.html#Errno">Errno</a>(0x63)
<span id="EADV">EADV</span> = <a href="index.html#Errno">Errno</a>(0x44)
<span id="EAFNOSUPPORT">EAFNOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x61)
<span id="EAGAIN">EAGAIN</span> = <a href="index.html#Errno">Errno</a>(0xb)
<span id="EALREADY">EALREADY</span> = <a href="index.html#Errno">Errno</a>(0x72)
<span id="EBADE">EBADE</span> = <a href="index.html#Errno">Errno</a>(0x34)
<span id="EBADF">EBADF</span> = <a href="index.html#Errno">Errno</a>(0x9)
<span id="EBADFD">EBADFD</span> = <a href="index.html#Errno">Errno</a>(0x4d)
<span id="EBADMSG">EBADMSG</span> = <a href="index.html#Errno">Errno</a>(0x4a)
<span id="EBADR">EBADR</span> = <a href="index.html#Errno">Errno</a>(0x35)
<span id="EBADRQC">EBADRQC</span> = <a href="index.html#Errno">Errno</a>(0x38)
<span id="EBADSLT">EBADSLT</span> = <a href="index.html#Errno">Errno</a>(0x39)
<span id="EBFONT">EBFONT</span> = <a href="index.html#Errno">Errno</a>(0x3b)
<span id="EBUSY">EBUSY</span> = <a href="index.html#Errno">Errno</a>(0x10)
<span id="ECANCELED">ECANCELED</span> = <a href="index.html#Errno">Errno</a>(0x7d)
<span id="ECHILD">ECHILD</span> = <a href="index.html#Errno">Errno</a>(0xa)
<span id="ECHRNG">ECHRNG</span> = <a href="index.html#Errno">Errno</a>(0x2c)
<span id="ECOMM">ECOMM</span> = <a href="index.html#Errno">Errno</a>(0x46)
<span id="ECONNABORTED">ECONNABORTED</span> = <a href="index.html#Errno">Errno</a>(0x67)
<span id="ECONNREFUSED">ECONNREFUSED</span> = <a href="index.html#Errno">Errno</a>(0x6f)
<span id="ECONNRESET">ECONNRESET</span> = <a href="index.html#Errno">Errno</a>(0x68)
<span id="EDEADLK">EDEADLK</span> = <a href="index.html#Errno">Errno</a>(0x23)
<span id="EDEADLOCK">EDEADLOCK</span> = <a href="index.html#Errno">Errno</a>(0x23)
<span id="EDESTADDRREQ">EDESTADDRREQ</span> = <a href="index.html#Errno">Errno</a>(0x59)
<span id="EDOM">EDOM</span> = <a href="index.html#Errno">Errno</a>(0x21)
<span id="EDOTDOT">EDOTDOT</span> = <a href="index.html#Errno">Errno</a>(0x49)
<span id="EDQUOT">EDQUOT</span> = <a href="index.html#Errno">Errno</a>(0x7a)
<span id="EEXIST">EEXIST</span> = <a href="index.html#Errno">Errno</a>(0x11)
<span id="EFAULT">EFAULT</span> = <a href="index.html#Errno">Errno</a>(0xe)
<span id="EFBIG">EFBIG</span> = <a href="index.html#Errno">Errno</a>(0x1b)
<span id="EHOSTDOWN">EHOSTDOWN</span> = <a href="index.html#Errno">Errno</a>(0x70)
<span id="EHOSTUNREACH">EHOSTUNREACH</span> = <a href="index.html#Errno">Errno</a>(0x71)
<span id="EIDRM">EIDRM</span> = <a href="index.html#Errno">Errno</a>(0x2b)
<span id="EILSEQ">EILSEQ</span> = <a href="index.html#Errno">Errno</a>(0x54)
<span id="EINPROGRESS">EINPROGRESS</span> = <a href="index.html#Errno">Errno</a>(0x73)
<span id="EINTR">EINTR</span> = <a href="index.html#Errno">Errno</a>(0x4)
<span id="EINVAL">EINVAL</span> = <a href="index.html#Errno">Errno</a>(0x16)
<span id="EIO">EIO</span> = <a href="index.html#Errno">Errno</a>(0x5)
<span id="EISCONN">EISCONN</span> = <a href="index.html#Errno">Errno</a>(0x6a)
<span id="EISDIR">EISDIR</span> = <a href="index.html#Errno">Errno</a>(0x15)
<span id="EISNAM">EISNAM</span> = <a href="index.html#Errno">Errno</a>(0x78)
<span id="EKEYEXPIRED">EKEYEXPIRED</span> = <a href="index.html#Errno">Errno</a>(0x7f)
<span id="EKEYREJECTED">EKEYREJECTED</span> = <a href="index.html#Errno">Errno</a>(0x81)
<span id="EKEYREVOKED">EKEYREVOKED</span> = <a href="index.html#Errno">Errno</a>(0x80)
<span id="EL2HLT">EL2HLT</span> = <a href="index.html#Errno">Errno</a>(0x33)
<span id="EL2NSYNC">EL2NSYNC</span> = <a href="index.html#Errno">Errno</a>(0x2d)
<span id="EL3HLT">EL3HLT</span> = <a href="index.html#Errno">Errno</a>(0x2e)
<span id="EL3RST">EL3RST</span> = <a href="index.html#Errno">Errno</a>(0x2f)
<span id="ELIBACC">ELIBACC</span> = <a href="index.html#Errno">Errno</a>(0x4f)
<span id="ELIBBAD">ELIBBAD</span> = <a href="index.html#Errno">Errno</a>(0x50)
<span id="ELIBEXEC">ELIBEXEC</span> = <a href="index.html#Errno">Errno</a>(0x53)
<span id="ELIBMAX">ELIBMAX</span> = <a href="index.html#Errno">Errno</a>(0x52)
<span id="ELIBSCN">ELIBSCN</span> = <a href="index.html#Errno">Errno</a>(0x51)
<span id="ELNRNG">ELNRNG</span> = <a href="index.html#Errno">Errno</a>(0x30)
<span id="ELOOP">ELOOP</span> = <a href="index.html#Errno">Errno</a>(0x28)
<span id="EMEDIUMTYPE">EMEDIUMTYPE</span> = <a href="index.html#Errno">Errno</a>(0x7c)
<span id="EMFILE">EMFILE</span> = <a href="index.html#Errno">Errno</a>(0x18)
<span id="EMLINK">EMLINK</span> = <a href="index.html#Errno">Errno</a>(0x1f)
<span id="EMSGSIZE">EMSGSIZE</span> = <a href="index.html#Errno">Errno</a>(0x5a)
<span id="EMULTIHOP">EMULTIHOP</span> = <a href="index.html#Errno">Errno</a>(0x48)
<span id="ENAMETOOLONG">ENAMETOOLONG</span> = <a href="index.html#Errno">Errno</a>(0x24)
<span id="ENAVAIL">ENAVAIL</span> = <a href="index.html#Errno">Errno</a>(0x77)
<span id="ENETDOWN">ENETDOWN</span> = <a href="index.html#Errno">Errno</a>(0x64)
<span id="ENETRESET">ENETRESET</span> = <a href="index.html#Errno">Errno</a>(0x66)
<span id="ENETUNREACH">ENETUNREACH</span> = <a href="index.html#Errno">Errno</a>(0x65)
<span id="ENFILE">ENFILE</span> = <a href="index.html#Errno">Errno</a>(0x17)
<span id="ENOANO">ENOANO</span> = <a href="index.html#Errno">Errno</a>(0x37)
<span id="ENOBUFS">ENOBUFS</span> = <a href="index.html#Errno">Errno</a>(0x69)
<span id="ENOCSI">ENOCSI</span> = <a href="index.html#Errno">Errno</a>(0x32)
<span id="ENODATA">ENODATA</span> = <a href="index.html#Errno">Errno</a>(0x3d)
<span id="ENODEV">ENODEV</span> = <a href="index.html#Errno">Errno</a>(0x13)
<span id="ENOENT">ENOENT</span> = <a href="index.html#Errno">Errno</a>(0x2)
<span id="ENOEXEC">ENOEXEC</span> = <a href="index.html#Errno">Errno</a>(0x8)
<span id="ENOKEY">ENOKEY</span> = <a href="index.html#Errno">Errno</a>(0x7e)
<span id="ENOLCK">ENOLCK</span> = <a href="index.html#Errno">Errno</a>(0x25)
<span id="ENOLINK">ENOLINK</span> = <a href="index.html#Errno">Errno</a>(0x43)
<span id="ENOMEDIUM">ENOMEDIUM</span> = <a href="index.html#Errno">Errno</a>(0x7b)
<span id="ENOMEM">ENOMEM</span> = <a href="index.html#Errno">Errno</a>(0xc)
<span id="ENOMSG">ENOMSG</span> = <a href="index.html#Errno">Errno</a>(0x2a)
<span id="ENONET">ENONET</span> = <a href="index.html#Errno">Errno</a>(0x40)
<span id="ENOPKG">ENOPKG</span> = <a href="index.html#Errno">Errno</a>(0x41)
<span id="ENOPROTOOPT">ENOPROTOOPT</span> = <a href="index.html#Errno">Errno</a>(0x5c)
<span id="ENOSPC">ENOSPC</span> = <a href="index.html#Errno">Errno</a>(0x1c)
<span id="ENOSR">ENOSR</span> = <a href="index.html#Errno">Errno</a>(0x3f)
<span id="ENOSTR">ENOSTR</span> = <a href="index.html#Errno">Errno</a>(0x3c)
<span id="ENOSYS">ENOSYS</span> = <a href="index.html#Errno">Errno</a>(0x26)
<span id="ENOTBLK">ENOTBLK</span> = <a href="index.html#Errno">Errno</a>(0xf)
<span id="ENOTCONN">ENOTCONN</span> = <a href="index.html#Errno">Errno</a>(0x6b)
<span id="ENOTDIR">ENOTDIR</span> = <a href="index.html#Errno">Errno</a>(0x14)
<span id="ENOTEMPTY">ENOTEMPTY</span> = <a href="index.html#Errno">Errno</a>(0x27)
<span id="ENOTNAM">ENOTNAM</span> = <a href="index.html#Errno">Errno</a>(0x76)
<span id="ENOTRECOVERABLE">ENOTRECOVERABLE</span> = <a href="index.html#Errno">Errno</a>(0x83)
<span id="ENOTSOCK">ENOTSOCK</span> = <a href="index.html#Errno">Errno</a>(0x58)
<span id="ENOTSUP">ENOTSUP</span> = <a href="index.html#Errno">Errno</a>(0x5f)
<span id="ENOTTY">ENOTTY</span> = <a href="index.html#Errno">Errno</a>(0x19)
<span id="ENOTUNIQ">ENOTUNIQ</span> = <a href="index.html#Errno">Errno</a>(0x4c)
<span id="ENXIO">ENXIO</span> = <a href="index.html#Errno">Errno</a>(0x6)
<span id="EOPNOTSUPP">EOPNOTSUPP</span> = <a href="index.html#Errno">Errno</a>(0x5f)
<span id="EOVERFLOW">EOVERFLOW</span> = <a href="index.html#Errno">Errno</a>(0x4b)
<span id="EOWNERDEAD">EOWNERDEAD</span> = <a href="index.html#Errno">Errno</a>(0x82)
<span id="EPERM">EPERM</span> = <a href="index.html#Errno">Errno</a>(0x1)
<span id="EPFNOSUPPORT">EPFNOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x60)
<span id="EPIPE">EPIPE</span> = <a href="index.html#Errno">Errno</a>(0x20)
<span id="EPROTO">EPROTO</span> = <a href="index.html#Errno">Errno</a>(0x47)
<span id="EPROTONOSUPPORT">EPROTONOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x5d)
<span id="EPROTOTYPE">EPROTOTYPE</span> = <a href="index.html#Errno">Errno</a>(0x5b)
<span id="ERANGE">ERANGE</span> = <a href="index.html#Errno">Errno</a>(0x22)
<span id="EREMCHG">EREMCHG</span> = <a href="index.html#Errno">Errno</a>(0x4e)
<span id="EREMOTE">EREMOTE</span> = <a href="index.html#Errno">Errno</a>(0x42)
<span id="EREMOTEIO">EREMOTEIO</span> = <a href="index.html#Errno">Errno</a>(0x79)
<span id="ERESTART">ERESTART</span> = <a href="index.html#Errno">Errno</a>(0x55)
<span id="ERFKILL">ERFKILL</span> = <a href="index.html#Errno">Errno</a>(0x84)
<span id="EROFS">EROFS</span> = <a href="index.html#Errno">Errno</a>(0x1e)
<span id="ESHUTDOWN">ESHUTDOWN</span> = <a href="index.html#Errno">Errno</a>(0x6c)
<span id="ESOCKTNOSUPPORT">ESOCKTNOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x5e)
<span id="ESPIPE">ESPIPE</span> = <a href="index.html#Errno">Errno</a>(0x1d)
<span id="ESRCH">ESRCH</span> = <a href="index.html#Errno">Errno</a>(0x3)
<span id="ESRMNT">ESRMNT</span> = <a href="index.html#Errno">Errno</a>(0x45)
<span id="ESTALE">ESTALE</span> = <a href="index.html#Errno">Errno</a>(0x74)
<span id="ESTRPIPE">ESTRPIPE</span> = <a href="index.html#Errno">Errno</a>(0x56)
<span id="ETIME">ETIME</span> = <a href="index.html#Errno">Errno</a>(0x3e)
<span id="ETIMEDOUT">ETIMEDOUT</span> = <a href="index.html#Errno">Errno</a>(0x6e)
<span id="ETOOMANYREFS">ETOOMANYREFS</span> = <a href="index.html#Errno">Errno</a>(0x6d)
<span id="ETXTBSY">ETXTBSY</span> = <a href="index.html#Errno">Errno</a>(0x1a)
<span id="EUCLEAN">EUCLEAN</span> = <a href="index.html#Errno">Errno</a>(0x75)
<span id="EUNATCH">EUNATCH</span> = <a href="index.html#Errno">Errno</a>(0x31)
<span id="EUSERS">EUSERS</span> = <a href="index.html#Errno">Errno</a>(0x57)
<span id="EWOULDBLOCK">EWOULDBLOCK</span> = <a href="index.html#Errno">Errno</a>(0xb)
<span id="EXDEV">EXDEV</span> = <a href="index.html#Errno">Errno</a>(0x12)
<span id="EXFULL">EXFULL</span> = <a href="index.html#Errno">Errno</a>(0x36)
)</pre>
<p>
Errors
</p>
<pre>const (
<span id="SIGABRT">SIGABRT</span> = <a href="index.html#Signal">Signal</a>(0x6)
<span id="SIGALRM">SIGALRM</span> = <a href="index.html#Signal">Signal</a>(0xe)
<span id="SIGBUS">SIGBUS</span> = <a href="index.html#Signal">Signal</a>(0x7)
<span id="SIGCHLD">SIGCHLD</span> = <a href="index.html#Signal">Signal</a>(0x11)
<span id="SIGCLD">SIGCLD</span> = <a href="index.html#Signal">Signal</a>(0x11)
<span id="SIGCONT">SIGCONT</span> = <a href="index.html#Signal">Signal</a>(0x12)
<span id="SIGFPE">SIGFPE</span> = <a href="index.html#Signal">Signal</a>(0x8)
<span id="SIGHUP">SIGHUP</span> = <a href="index.html#Signal">Signal</a>(0x1)
<span id="SIGILL">SIGILL</span> = <a href="index.html#Signal">Signal</a>(0x4)
<span id="SIGINT">SIGINT</span> = <a href="index.html#Signal">Signal</a>(0x2)
<span id="SIGIO">SIGIO</span> = <a href="index.html#Signal">Signal</a>(0x1d)
<span id="SIGIOT">SIGIOT</span> = <a href="index.html#Signal">Signal</a>(0x6)
<span id="SIGKILL">SIGKILL</span> = <a href="index.html#Signal">Signal</a>(0x9)
<span id="SIGPIPE">SIGPIPE</span> = <a href="index.html#Signal">Signal</a>(0xd)
<span id="SIGPOLL">SIGPOLL</span> = <a href="index.html#Signal">Signal</a>(0x1d)
<span id="SIGPROF">SIGPROF</span> = <a href="index.html#Signal">Signal</a>(0x1b)
<span id="SIGPWR">SIGPWR</span> = <a href="index.html#Signal">Signal</a>(0x1e)
<span id="SIGQUIT">SIGQUIT</span> = <a href="index.html#Signal">Signal</a>(0x3)
<span id="SIGSEGV">SIGSEGV</span> = <a href="index.html#Signal">Signal</a>(0xb)
<span id="SIGSTKFLT">SIGSTKFLT</span> = <a href="index.html#Signal">Signal</a>(0x10)
<span id="SIGSTOP">SIGSTOP</span> = <a href="index.html#Signal">Signal</a>(0x13)
<span id="SIGSYS">SIGSYS</span> = <a href="index.html#Signal">Signal</a>(0x1f)
<span id="SIGTERM">SIGTERM</span> = <a href="index.html#Signal">Signal</a>(0xf)
<span id="SIGTRAP">SIGTRAP</span> = <a href="index.html#Signal">Signal</a>(0x5)
<span id="SIGTSTP">SIGTSTP</span> = <a href="index.html#Signal">Signal</a>(0x14)
<span id="SIGTTIN">SIGTTIN</span> = <a href="index.html#Signal">Signal</a>(0x15)
<span id="SIGTTOU">SIGTTOU</span> = <a href="index.html#Signal">Signal</a>(0x16)
<span id="SIGUNUSED">SIGUNUSED</span> = <a href="index.html#Signal">Signal</a>(0x1f)
<span id="SIGURG">SIGURG</span> = <a href="index.html#Signal">Signal</a>(0x17)
<span id="SIGUSR1">SIGUSR1</span> = <a href="index.html#Signal">Signal</a>(0xa)
<span id="SIGUSR2">SIGUSR2</span> = <a href="index.html#Signal">Signal</a>(0xc)
<span id="SIGVTALRM">SIGVTALRM</span> = <a href="index.html#Signal">Signal</a>(0x1a)
<span id="SIGWINCH">SIGWINCH</span> = <a href="index.html#Signal">Signal</a>(0x1c)
<span id="SIGXCPU">SIGXCPU</span> = <a href="index.html#Signal">Signal</a>(0x18)
<span id="SIGXFSZ">SIGXFSZ</span> = <a href="index.html#Signal">Signal</a>(0x19)
)</pre>
<p>
Signals
</p>
<pre>const (
<span id="SYS_READ">SYS_READ</span> = 0
<span id="SYS_WRITE">SYS_WRITE</span> = 1
<span id="SYS_OPEN">SYS_OPEN</span> = 2
<span id="SYS_CLOSE">SYS_CLOSE</span> = 3
<span id="SYS_STAT">SYS_STAT</span> = 4
<span id="SYS_FSTAT">SYS_FSTAT</span> = 5
<span id="SYS_LSTAT">SYS_LSTAT</span> = 6
<span id="SYS_POLL">SYS_POLL</span> = 7
<span id="SYS_LSEEK">SYS_LSEEK</span> = 8
<span id="SYS_MMAP">SYS_MMAP</span> = 9
<span id="SYS_MPROTECT">SYS_MPROTECT</span> = 10
<span id="SYS_MUNMAP">SYS_MUNMAP</span> = 11
<span id="SYS_BRK">SYS_BRK</span> = 12
<span id="SYS_RT_SIGACTION">SYS_RT_SIGACTION</span> = 13
<span id="SYS_RT_SIGPROCMASK">SYS_RT_SIGPROCMASK</span> = 14
<span id="SYS_RT_SIGRETURN">SYS_RT_SIGRETURN</span> = 15
<span id="SYS_IOCTL">SYS_IOCTL</span> = 16
<span id="SYS_PREAD64">SYS_PREAD64</span> = 17
<span id="SYS_PWRITE64">SYS_PWRITE64</span> = 18
<span id="SYS_READV">SYS_READV</span> = 19
<span id="SYS_WRITEV">SYS_WRITEV</span> = 20
<span id="SYS_ACCESS">SYS_ACCESS</span> = 21
<span id="SYS_PIPE">SYS_PIPE</span> = 22
<span id="SYS_SELECT">SYS_SELECT</span> = 23
<span id="SYS_SCHED_YIELD">SYS_SCHED_YIELD</span> = 24
<span id="SYS_MREMAP">SYS_MREMAP</span> = 25
<span id="SYS_MSYNC">SYS_MSYNC</span> = 26
<span id="SYS_MINCORE">SYS_MINCORE</span> = 27
<span id="SYS_MADVISE">SYS_MADVISE</span> = 28
<span id="SYS_SHMGET">SYS_SHMGET</span> = 29
<span id="SYS_SHMAT">SYS_SHMAT</span> = 30
<span id="SYS_SHMCTL">SYS_SHMCTL</span> = 31
<span id="SYS_DUP">SYS_DUP</span> = 32
<span id="SYS_DUP2">SYS_DUP2</span> = 33
<span id="SYS_PAUSE">SYS_PAUSE</span> = 34
<span id="SYS_NANOSLEEP">SYS_NANOSLEEP</span> = 35
<span id="SYS_GETITIMER">SYS_GETITIMER</span> = 36
<span id="SYS_ALARM">SYS_ALARM</span> = 37
<span id="SYS_SETITIMER">SYS_SETITIMER</span> = 38
<span id="SYS_GETPID">SYS_GETPID</span> = 39
<span id="SYS_SENDFILE">SYS_SENDFILE</span> = 40
<span id="SYS_SOCKET">SYS_SOCKET</span> = 41
<span id="SYS_CONNECT">SYS_CONNECT</span> = 42
<span id="SYS_ACCEPT">SYS_ACCEPT</span> = 43
<span id="SYS_SENDTO">SYS_SENDTO</span> = 44
<span id="SYS_RECVFROM">SYS_RECVFROM</span> = 45
<span id="SYS_SENDMSG">SYS_SENDMSG</span> = 46
<span id="SYS_RECVMSG">SYS_RECVMSG</span> = 47
<span id="SYS_SHUTDOWN">SYS_SHUTDOWN</span> = 48
<span id="SYS_BIND">SYS_BIND</span> = 49
<span id="SYS_LISTEN">SYS_LISTEN</span> = 50
<span id="SYS_GETSOCKNAME">SYS_GETSOCKNAME</span> = 51
<span id="SYS_GETPEERNAME">SYS_GETPEERNAME</span> = 52
<span id="SYS_SOCKETPAIR">SYS_SOCKETPAIR</span> = 53
<span id="SYS_SETSOCKOPT">SYS_SETSOCKOPT</span> = 54
<span id="SYS_GETSOCKOPT">SYS_GETSOCKOPT</span> = 55
<span id="SYS_CLONE">SYS_CLONE</span> = 56
<span id="SYS_FORK">SYS_FORK</span> = 57
<span id="SYS_VFORK">SYS_VFORK</span> = 58
<span id="SYS_EXECVE">SYS_EXECVE</span> = 59
<span id="SYS_EXIT">SYS_EXIT</span> = 60
<span id="SYS_WAIT4">SYS_WAIT4</span> = 61
<span id="SYS_KILL">SYS_KILL</span> = 62
<span id="SYS_UNAME">SYS_UNAME</span> = 63
<span id="SYS_SEMGET">SYS_SEMGET</span> = 64
<span id="SYS_SEMOP">SYS_SEMOP</span> = 65
<span id="SYS_SEMCTL">SYS_SEMCTL</span> = 66
<span id="SYS_SHMDT">SYS_SHMDT</span> = 67
<span id="SYS_MSGGET">SYS_MSGGET</span> = 68
<span id="SYS_MSGSND">SYS_MSGSND</span> = 69
<span id="SYS_MSGRCV">SYS_MSGRCV</span> = 70
<span id="SYS_MSGCTL">SYS_MSGCTL</span> = 71
<span id="SYS_FCNTL">SYS_FCNTL</span> = 72
<span id="SYS_FLOCK">SYS_FLOCK</span> = 73
<span id="SYS_FSYNC">SYS_FSYNC</span> = 74
<span id="SYS_FDATASYNC">SYS_FDATASYNC</span> = 75
<span id="SYS_TRUNCATE">SYS_TRUNCATE</span> = 76
<span id="SYS_FTRUNCATE">SYS_FTRUNCATE</span> = 77
<span id="SYS_GETDENTS">SYS_GETDENTS</span> = 78
<span id="SYS_GETCWD">SYS_GETCWD</span> = 79
<span id="SYS_CHDIR">SYS_CHDIR</span> = 80
<span id="SYS_FCHDIR">SYS_FCHDIR</span> = 81
<span id="SYS_RENAME">SYS_RENAME</span> = 82
<span id="SYS_MKDIR">SYS_MKDIR</span> = 83
<span id="SYS_RMDIR">SYS_RMDIR</span> = 84
<span id="SYS_CREAT">SYS_CREAT</span> = 85
<span id="SYS_LINK">SYS_LINK</span> = 86
<span id="SYS_UNLINK">SYS_UNLINK</span> = 87
<span id="SYS_SYMLINK">SYS_SYMLINK</span> = 88
<span id="SYS_READLINK">SYS_READLINK</span> = 89
<span id="SYS_CHMOD">SYS_CHMOD</span> = 90
<span id="SYS_FCHMOD">SYS_FCHMOD</span> = 91
<span id="SYS_CHOWN">SYS_CHOWN</span> = 92
<span id="SYS_FCHOWN">SYS_FCHOWN</span> = 93
<span id="SYS_LCHOWN">SYS_LCHOWN</span> = 94
<span id="SYS_UMASK">SYS_UMASK</span> = 95
<span id="SYS_GETTIMEOFDAY">SYS_GETTIMEOFDAY</span> = 96
<span id="SYS_GETRLIMIT">SYS_GETRLIMIT</span> = 97
<span id="SYS_GETRUSAGE">SYS_GETRUSAGE</span> = 98
<span id="SYS_SYSINFO">SYS_SYSINFO</span> = 99
<span id="SYS_TIMES">SYS_TIMES</span> = 100
<span id="SYS_PTRACE">SYS_PTRACE</span> = 101
<span id="SYS_GETUID">SYS_GETUID</span> = 102
<span id="SYS_SYSLOG">SYS_SYSLOG</span> = 103
<span id="SYS_GETGID">SYS_GETGID</span> = 104
<span id="SYS_SETUID">SYS_SETUID</span> = 105
<span id="SYS_SETGID">SYS_SETGID</span> = 106
<span id="SYS_GETEUID">SYS_GETEUID</span> = 107
<span id="SYS_GETEGID">SYS_GETEGID</span> = 108
<span id="SYS_SETPGID">SYS_SETPGID</span> = 109
<span id="SYS_GETPPID">SYS_GETPPID</span> = 110
<span id="SYS_GETPGRP">SYS_GETPGRP</span> = 111
<span id="SYS_SETSID">SYS_SETSID</span> = 112
<span id="SYS_SETREUID">SYS_SETREUID</span> = 113
<span id="SYS_SETREGID">SYS_SETREGID</span> = 114
<span id="SYS_GETGROUPS">SYS_GETGROUPS</span> = 115
<span id="SYS_SETGROUPS">SYS_SETGROUPS</span> = 116
<span id="SYS_SETRESUID">SYS_SETRESUID</span> = 117
<span id="SYS_GETRESUID">SYS_GETRESUID</span> = 118
<span id="SYS_SETRESGID">SYS_SETRESGID</span> = 119
<span id="SYS_GETRESGID">SYS_GETRESGID</span> = 120
<span id="SYS_GETPGID">SYS_GETPGID</span> = 121
<span id="SYS_SETFSUID">SYS_SETFSUID</span> = 122
<span id="SYS_SETFSGID">SYS_SETFSGID</span> = 123
<span id="SYS_GETSID">SYS_GETSID</span> = 124
<span id="SYS_CAPGET">SYS_CAPGET</span> = 125
<span id="SYS_CAPSET">SYS_CAPSET</span> = 126
<span id="SYS_RT_SIGPENDING">SYS_RT_SIGPENDING</span> = 127
<span id="SYS_RT_SIGTIMEDWAIT">SYS_RT_SIGTIMEDWAIT</span> = 128
<span id="SYS_RT_SIGQUEUEINFO">SYS_RT_SIGQUEUEINFO</span> = 129
<span id="SYS_RT_SIGSUSPEND">SYS_RT_SIGSUSPEND</span> = 130
<span id="SYS_SIGALTSTACK">SYS_SIGALTSTACK</span> = 131
<span id="SYS_UTIME">SYS_UTIME</span> = 132
<span id="SYS_MKNOD">SYS_MKNOD</span> = 133
<span id="SYS_USELIB">SYS_USELIB</span> = 134
<span id="SYS_PERSONALITY">SYS_PERSONALITY</span> = 135
<span id="SYS_USTAT">SYS_USTAT</span> = 136
<span id="SYS_STATFS">SYS_STATFS</span> = 137
<span id="SYS_FSTATFS">SYS_FSTATFS</span> = 138
<span id="SYS_SYSFS">SYS_SYSFS</span> = 139
<span id="SYS_GETPRIORITY">SYS_GETPRIORITY</span> = 140
<span id="SYS_SETPRIORITY">SYS_SETPRIORITY</span> = 141
<span id="SYS_SCHED_SETPARAM">SYS_SCHED_SETPARAM</span> = 142
<span id="SYS_SCHED_GETPARAM">SYS_SCHED_GETPARAM</span> = 143
<span id="SYS_SCHED_SETSCHEDULER">SYS_SCHED_SETSCHEDULER</span> = 144
<span id="SYS_SCHED_GETSCHEDULER">SYS_SCHED_GETSCHEDULER</span> = 145
<span id="SYS_SCHED_GET_PRIORITY_MAX">SYS_SCHED_GET_PRIORITY_MAX</span> = 146
<span id="SYS_SCHED_GET_PRIORITY_MIN">SYS_SCHED_GET_PRIORITY_MIN</span> = 147
<span id="SYS_SCHED_RR_GET_INTERVAL">SYS_SCHED_RR_GET_INTERVAL</span> = 148
<span id="SYS_MLOCK">SYS_MLOCK</span> = 149
<span id="SYS_MUNLOCK">SYS_MUNLOCK</span> = 150
<span id="SYS_MLOCKALL">SYS_MLOCKALL</span> = 151
<span id="SYS_MUNLOCKALL">SYS_MUNLOCKALL</span> = 152
<span id="SYS_VHANGUP">SYS_VHANGUP</span> = 153
<span id="SYS_MODIFY_LDT">SYS_MODIFY_LDT</span> = 154
<span id="SYS_PIVOT_ROOT">SYS_PIVOT_ROOT</span> = 155
<span id="SYS__SYSCTL">SYS__SYSCTL</span> = 156
<span id="SYS_PRCTL">SYS_PRCTL</span> = 157
<span id="SYS_ARCH_PRCTL">SYS_ARCH_PRCTL</span> = 158
<span id="SYS_ADJTIMEX">SYS_ADJTIMEX</span> = 159
<span id="SYS_SETRLIMIT">SYS_SETRLIMIT</span> = 160
<span id="SYS_CHROOT">SYS_CHROOT</span> = 161
<span id="SYS_SYNC">SYS_SYNC</span> = 162
<span id="SYS_ACCT">SYS_ACCT</span> = 163
<span id="SYS_SETTIMEOFDAY">SYS_SETTIMEOFDAY</span> = 164
<span id="SYS_MOUNT">SYS_MOUNT</span> = 165
<span id="SYS_UMOUNT2">SYS_UMOUNT2</span> = 166
<span id="SYS_SWAPON">SYS_SWAPON</span> = 167
<span id="SYS_SWAPOFF">SYS_SWAPOFF</span> = 168
<span id="SYS_REBOOT">SYS_REBOOT</span> = 169
<span id="SYS_SETHOSTNAME">SYS_SETHOSTNAME</span> = 170
<span id="SYS_SETDOMAINNAME">SYS_SETDOMAINNAME</span> = 171
<span id="SYS_IOPL">SYS_IOPL</span> = 172
<span id="SYS_IOPERM">SYS_IOPERM</span> = 173
<span id="SYS_CREATE_MODULE">SYS_CREATE_MODULE</span> = 174
<span id="SYS_INIT_MODULE">SYS_INIT_MODULE</span> = 175
<span id="SYS_DELETE_MODULE">SYS_DELETE_MODULE</span> = 176
<span id="SYS_GET_KERNEL_SYMS">SYS_GET_KERNEL_SYMS</span> = 177
<span id="SYS_QUERY_MODULE">SYS_QUERY_MODULE</span> = 178
<span id="SYS_QUOTACTL">SYS_QUOTACTL</span> = 179
<span id="SYS_NFSSERVCTL">SYS_NFSSERVCTL</span> = 180
<span id="SYS_GETPMSG">SYS_GETPMSG</span> = 181
<span id="SYS_PUTPMSG">SYS_PUTPMSG</span> = 182
<span id="SYS_AFS_SYSCALL">SYS_AFS_SYSCALL</span> = 183
<span id="SYS_TUXCALL">SYS_TUXCALL</span> = 184
<span id="SYS_SECURITY">SYS_SECURITY</span> = 185
<span id="SYS_GETTID">SYS_GETTID</span> = 186
<span id="SYS_READAHEAD">SYS_READAHEAD</span> = 187
<span id="SYS_SETXATTR">SYS_SETXATTR</span> = 188
<span id="SYS_LSETXATTR">SYS_LSETXATTR</span> = 189
<span id="SYS_FSETXATTR">SYS_FSETXATTR</span> = 190
<span id="SYS_GETXATTR">SYS_GETXATTR</span> = 191
<span id="SYS_LGETXATTR">SYS_LGETXATTR</span> = 192
<span id="SYS_FGETXATTR">SYS_FGETXATTR</span> = 193
<span id="SYS_LISTXATTR">SYS_LISTXATTR</span> = 194
<span id="SYS_LLISTXATTR">SYS_LLISTXATTR</span> = 195
<span id="SYS_FLISTXATTR">SYS_FLISTXATTR</span> = 196
<span id="SYS_REMOVEXATTR">SYS_REMOVEXATTR</span> = 197
<span id="SYS_LREMOVEXATTR">SYS_LREMOVEXATTR</span> = 198
<span id="SYS_FREMOVEXATTR">SYS_FREMOVEXATTR</span> = 199
<span id="SYS_TKILL">SYS_TKILL</span> = 200
<span id="SYS_TIME">SYS_TIME</span> = 201
<span id="SYS_FUTEX">SYS_FUTEX</span> = 202
<span id="SYS_SCHED_SETAFFINITY">SYS_SCHED_SETAFFINITY</span> = 203
<span id="SYS_SCHED_GETAFFINITY">SYS_SCHED_GETAFFINITY</span> = 204
<span id="SYS_SET_THREAD_AREA">SYS_SET_THREAD_AREA</span> = 205
<span id="SYS_IO_SETUP">SYS_IO_SETUP</span> = 206
<span id="SYS_IO_DESTROY">SYS_IO_DESTROY</span> = 207
<span id="SYS_IO_GETEVENTS">SYS_IO_GETEVENTS</span> = 208
<span id="SYS_IO_SUBMIT">SYS_IO_SUBMIT</span> = 209
<span id="SYS_IO_CANCEL">SYS_IO_CANCEL</span> = 210
<span id="SYS_GET_THREAD_AREA">SYS_GET_THREAD_AREA</span> = 211
<span id="SYS_LOOKUP_DCOOKIE">SYS_LOOKUP_DCOOKIE</span> = 212
<span id="SYS_EPOLL_CREATE">SYS_EPOLL_CREATE</span> = 213
<span id="SYS_EPOLL_CTL_OLD">SYS_EPOLL_CTL_OLD</span> = 214
<span id="SYS_EPOLL_WAIT_OLD">SYS_EPOLL_WAIT_OLD</span> = 215
<span id="SYS_REMAP_FILE_PAGES">SYS_REMAP_FILE_PAGES</span> = 216
<span id="SYS_GETDENTS64">SYS_GETDENTS64</span> = 217
<span id="SYS_SET_TID_ADDRESS">SYS_SET_TID_ADDRESS</span> = 218
<span id="SYS_RESTART_SYSCALL">SYS_RESTART_SYSCALL</span> = 219
<span id="SYS_SEMTIMEDOP">SYS_SEMTIMEDOP</span> = 220
<span id="SYS_FADVISE64">SYS_FADVISE64</span> = 221
<span id="SYS_TIMER_CREATE">SYS_TIMER_CREATE</span> = 222
<span id="SYS_TIMER_SETTIME">SYS_TIMER_SETTIME</span> = 223
<span id="SYS_TIMER_GETTIME">SYS_TIMER_GETTIME</span> = 224
<span id="SYS_TIMER_GETOVERRUN">SYS_TIMER_GETOVERRUN</span> = 225
<span id="SYS_TIMER_DELETE">SYS_TIMER_DELETE</span> = 226
<span id="SYS_CLOCK_SETTIME">SYS_CLOCK_SETTIME</span> = 227
<span id="SYS_CLOCK_GETTIME">SYS_CLOCK_GETTIME</span> = 228
<span id="SYS_CLOCK_GETRES">SYS_CLOCK_GETRES</span> = 229
<span id="SYS_CLOCK_NANOSLEEP">SYS_CLOCK_NANOSLEEP</span> = 230
<span id="SYS_EXIT_GROUP">SYS_EXIT_GROUP</span> = 231
<span id="SYS_EPOLL_WAIT">SYS_EPOLL_WAIT</span> = 232
<span id="SYS_EPOLL_CTL">SYS_EPOLL_CTL</span> = 233
<span id="SYS_TGKILL">SYS_TGKILL</span> = 234
<span id="SYS_UTIMES">SYS_UTIMES</span> = 235
<span id="SYS_VSERVER">SYS_VSERVER</span> = 236
<span id="SYS_MBIND">SYS_MBIND</span> = 237
<span id="SYS_SET_MEMPOLICY">SYS_SET_MEMPOLICY</span> = 238
<span id="SYS_GET_MEMPOLICY">SYS_GET_MEMPOLICY</span> = 239
<span id="SYS_MQ_OPEN">SYS_MQ_OPEN</span> = 240
<span id="SYS_MQ_UNLINK">SYS_MQ_UNLINK</span> = 241
<span id="SYS_MQ_TIMEDSEND">SYS_MQ_TIMEDSEND</span> = 242
<span id="SYS_MQ_TIMEDRECEIVE">SYS_MQ_TIMEDRECEIVE</span> = 243
<span id="SYS_MQ_NOTIFY">SYS_MQ_NOTIFY</span> = 244
<span id="SYS_MQ_GETSETATTR">SYS_MQ_GETSETATTR</span> = 245
<span id="SYS_KEXEC_LOAD">SYS_KEXEC_LOAD</span> = 246
<span id="SYS_WAITID">SYS_WAITID</span> = 247
<span id="SYS_ADD_KEY">SYS_ADD_KEY</span> = 248
<span id="SYS_REQUEST_KEY">SYS_REQUEST_KEY</span> = 249
<span id="SYS_KEYCTL">SYS_KEYCTL</span> = 250
<span id="SYS_IOPRIO_SET">SYS_IOPRIO_SET</span> = 251
<span id="SYS_IOPRIO_GET">SYS_IOPRIO_GET</span> = 252
<span id="SYS_INOTIFY_INIT">SYS_INOTIFY_INIT</span> = 253
<span id="SYS_INOTIFY_ADD_WATCH">SYS_INOTIFY_ADD_WATCH</span> = 254
<span id="SYS_INOTIFY_RM_WATCH">SYS_INOTIFY_RM_WATCH</span> = 255
<span id="SYS_MIGRATE_PAGES">SYS_MIGRATE_PAGES</span> = 256
<span id="SYS_OPENAT">SYS_OPENAT</span> = 257
<span id="SYS_MKDIRAT">SYS_MKDIRAT</span> = 258
<span id="SYS_MKNODAT">SYS_MKNODAT</span> = 259
<span id="SYS_FCHOWNAT">SYS_FCHOWNAT</span> = 260
<span id="SYS_FUTIMESAT">SYS_FUTIMESAT</span> = 261
<span id="SYS_NEWFSTATAT">SYS_NEWFSTATAT</span> = 262
<span id="SYS_UNLINKAT">SYS_UNLINKAT</span> = 263
<span id="SYS_RENAMEAT">SYS_RENAMEAT</span> = 264
<span id="SYS_LINKAT">SYS_LINKAT</span> = 265
<span id="SYS_SYMLINKAT">SYS_SYMLINKAT</span> = 266
<span id="SYS_READLINKAT">SYS_READLINKAT</span> = 267
<span id="SYS_FCHMODAT">SYS_FCHMODAT</span> = 268
<span id="SYS_FACCESSAT">SYS_FACCESSAT</span> = 269
<span id="SYS_PSELECT6">SYS_PSELECT6</span> = 270
<span id="SYS_PPOLL">SYS_PPOLL</span> = 271
<span id="SYS_UNSHARE">SYS_UNSHARE</span> = 272
<span id="SYS_SET_ROBUST_LIST">SYS_SET_ROBUST_LIST</span> = 273
<span id="SYS_GET_ROBUST_LIST">SYS_GET_ROBUST_LIST</span> = 274
<span id="SYS_SPLICE">SYS_SPLICE</span> = 275
<span id="SYS_TEE">SYS_TEE</span> = 276
<span id="SYS_SYNC_FILE_RANGE">SYS_SYNC_FILE_RANGE</span> = 277
<span id="SYS_VMSPLICE">SYS_VMSPLICE</span> = 278
<span id="SYS_MOVE_PAGES">SYS_MOVE_PAGES</span> = 279
<span id="SYS_UTIMENSAT">SYS_UTIMENSAT</span> = 280
<span id="SYS_EPOLL_PWAIT">SYS_EPOLL_PWAIT</span> = 281
<span id="SYS_SIGNALFD">SYS_SIGNALFD</span> = 282
<span id="SYS_TIMERFD_CREATE">SYS_TIMERFD_CREATE</span> = 283
<span id="SYS_EVENTFD">SYS_EVENTFD</span> = 284
<span id="SYS_FALLOCATE">SYS_FALLOCATE</span> = 285
<span id="SYS_TIMERFD_SETTIME">SYS_TIMERFD_SETTIME</span> = 286
<span id="SYS_TIMERFD_GETTIME">SYS_TIMERFD_GETTIME</span> = 287
<span id="SYS_ACCEPT4">SYS_ACCEPT4</span> = 288
<span id="SYS_SIGNALFD4">SYS_SIGNALFD4</span> = 289
<span id="SYS_EVENTFD2">SYS_EVENTFD2</span> = 290
<span id="SYS_EPOLL_CREATE1">SYS_EPOLL_CREATE1</span> = 291
<span id="SYS_DUP3">SYS_DUP3</span> = 292
<span id="SYS_PIPE2">SYS_PIPE2</span> = 293
<span id="SYS_INOTIFY_INIT1">SYS_INOTIFY_INIT1</span> = 294
<span id="SYS_PREADV">SYS_PREADV</span> = 295
<span id="SYS_PWRITEV">SYS_PWRITEV</span> = 296
<span id="SYS_RT_TGSIGQUEUEINFO">SYS_RT_TGSIGQUEUEINFO</span> = 297
<span id="SYS_PERF_EVENT_OPEN">SYS_PERF_EVENT_OPEN</span> = 298
<span id="SYS_RECVMMSG">SYS_RECVMMSG</span> = 299
<span id="SYS_FANOTIFY_INIT">SYS_FANOTIFY_INIT</span> = 300
<span id="SYS_FANOTIFY_MARK">SYS_FANOTIFY_MARK</span> = 301
<span id="SYS_PRLIMIT64">SYS_PRLIMIT64</span> = 302
)</pre>
<pre>const (
<span id="SizeofSockaddrInet4">SizeofSockaddrInet4</span> = 0x10
<span id="SizeofSockaddrInet6">SizeofSockaddrInet6</span> = 0x1c
<span id="SizeofSockaddrAny">SizeofSockaddrAny</span> = 0x70
<span id="SizeofSockaddrUnix">SizeofSockaddrUnix</span> = 0x6e
<span id="SizeofSockaddrLinklayer">SizeofSockaddrLinklayer</span> = 0x14
<span id="SizeofSockaddrNetlink">SizeofSockaddrNetlink</span> = 0xc
<span id="SizeofLinger">SizeofLinger</span> = 0x8
<span id="SizeofIPMreq">SizeofIPMreq</span> = 0x8
<span id="SizeofIPMreqn">SizeofIPMreqn</span> = 0xc
<span id="SizeofIPv6Mreq">SizeofIPv6Mreq</span> = 0x14
<span id="SizeofMsghdr">SizeofMsghdr</span> = 0x38
<span id="SizeofCmsghdr">SizeofCmsghdr</span> = 0x10
<span id="SizeofInet4Pktinfo">SizeofInet4Pktinfo</span> = 0xc
<span id="SizeofInet6Pktinfo">SizeofInet6Pktinfo</span> = 0x14
<span id="SizeofIPv6MTUInfo">SizeofIPv6MTUInfo</span> = 0x20
<span id="SizeofICMPv6Filter">SizeofICMPv6Filter</span> = 0x20
<span id="SizeofUcred">SizeofUcred</span> = 0xc
<span id="SizeofTCPInfo">SizeofTCPInfo</span> = 0x68
)</pre>
<pre>const (
<span id="IFA_UNSPEC">IFA_UNSPEC</span> = 0x0
<span id="IFA_ADDRESS">IFA_ADDRESS</span> = 0x1
<span id="IFA_LOCAL">IFA_LOCAL</span> = 0x2
<span id="IFA_LABEL">IFA_LABEL</span> = 0x3
<span id="IFA_BROADCAST">IFA_BROADCAST</span> = 0x4
<span id="IFA_ANYCAST">IFA_ANYCAST</span> = 0x5
<span id="IFA_CACHEINFO">IFA_CACHEINFO</span> = 0x6
<span id="IFA_MULTICAST">IFA_MULTICAST</span> = 0x7
<span id="IFLA_UNSPEC">IFLA_UNSPEC</span> = 0x0
<span id="IFLA_ADDRESS">IFLA_ADDRESS</span> = 0x1
<span id="IFLA_BROADCAST">IFLA_BROADCAST</span> = 0x2
<span id="IFLA_IFNAME">IFLA_IFNAME</span> = 0x3
<span id="IFLA_MTU">IFLA_MTU</span> = 0x4
<span id="IFLA_LINK">IFLA_LINK</span> = 0x5
<span id="IFLA_QDISC">IFLA_QDISC</span> = 0x6
<span id="IFLA_STATS">IFLA_STATS</span> = 0x7
<span id="IFLA_COST">IFLA_COST</span> = 0x8
<span id="IFLA_PRIORITY">IFLA_PRIORITY</span> = 0x9
<span id="IFLA_MASTER">IFLA_MASTER</span> = 0xa
<span id="IFLA_WIRELESS">IFLA_WIRELESS</span> = 0xb
<span id="IFLA_PROTINFO">IFLA_PROTINFO</span> = 0xc
<span id="IFLA_TXQLEN">IFLA_TXQLEN</span> = 0xd
<span id="IFLA_MAP">IFLA_MAP</span> = 0xe
<span id="IFLA_WEIGHT">IFLA_WEIGHT</span> = 0xf
<span id="IFLA_OPERSTATE">IFLA_OPERSTATE</span> = 0x10
<span id="IFLA_LINKMODE">IFLA_LINKMODE</span> = 0x11
<span id="IFLA_LINKINFO">IFLA_LINKINFO</span> = 0x12
<span id="IFLA_NET_NS_PID">IFLA_NET_NS_PID</span> = 0x13
<span id="IFLA_IFALIAS">IFLA_IFALIAS</span> = 0x14
<span id="IFLA_MAX">IFLA_MAX</span> = 0x1d
<span id="RT_SCOPE_UNIVERSE">RT_SCOPE_UNIVERSE</span> = 0x0
<span id="RT_SCOPE_SITE">RT_SCOPE_SITE</span> = 0xc8
<span id="RT_SCOPE_LINK">RT_SCOPE_LINK</span> = 0xfd
<span id="RT_SCOPE_HOST">RT_SCOPE_HOST</span> = 0xfe
<span id="RT_SCOPE_NOWHERE">RT_SCOPE_NOWHERE</span> = 0xff
<span id="RT_TABLE_UNSPEC">RT_TABLE_UNSPEC</span> = 0x0
<span id="RT_TABLE_COMPAT">RT_TABLE_COMPAT</span> = 0xfc
<span id="RT_TABLE_DEFAULT">RT_TABLE_DEFAULT</span> = 0xfd
<span id="RT_TABLE_MAIN">RT_TABLE_MAIN</span> = 0xfe
<span id="RT_TABLE_LOCAL">RT_TABLE_LOCAL</span> = 0xff
<span id="RT_TABLE_MAX">RT_TABLE_MAX</span> = 0xffffffff
<span id="RTA_UNSPEC">RTA_UNSPEC</span> = 0x0
<span id="RTA_DST">RTA_DST</span> = 0x1
<span id="RTA_SRC">RTA_SRC</span> = 0x2
<span id="RTA_IIF">RTA_IIF</span> = 0x3
<span id="RTA_OIF">RTA_OIF</span> = 0x4
<span id="RTA_GATEWAY">RTA_GATEWAY</span> = 0x5
<span id="RTA_PRIORITY">RTA_PRIORITY</span> = 0x6
<span id="RTA_PREFSRC">RTA_PREFSRC</span> = 0x7
<span id="RTA_METRICS">RTA_METRICS</span> = 0x8
<span id="RTA_MULTIPATH">RTA_MULTIPATH</span> = 0x9
<span id="RTA_FLOW">RTA_FLOW</span> = 0xb
<span id="RTA_CACHEINFO">RTA_CACHEINFO</span> = 0xc
<span id="RTA_TABLE">RTA_TABLE</span> = 0xf
<span id="RTN_UNSPEC">RTN_UNSPEC</span> = 0x0
<span id="RTN_UNICAST">RTN_UNICAST</span> = 0x1
<span id="RTN_LOCAL">RTN_LOCAL</span> = 0x2
<span id="RTN_BROADCAST">RTN_BROADCAST</span> = 0x3
<span id="RTN_ANYCAST">RTN_ANYCAST</span> = 0x4
<span id="RTN_MULTICAST">RTN_MULTICAST</span> = 0x5
<span id="RTN_BLACKHOLE">RTN_BLACKHOLE</span> = 0x6
<span id="RTN_UNREACHABLE">RTN_UNREACHABLE</span> = 0x7
<span id="RTN_PROHIBIT">RTN_PROHIBIT</span> = 0x8
<span id="RTN_THROW">RTN_THROW</span> = 0x9
<span id="RTN_NAT">RTN_NAT</span> = 0xa
<span id="RTN_XRESOLVE">RTN_XRESOLVE</span> = 0xb
<span id="RTNLGRP_NONE">RTNLGRP_NONE</span> = 0x0
<span id="RTNLGRP_LINK">RTNLGRP_LINK</span> = 0x1
<span id="RTNLGRP_NOTIFY">RTNLGRP_NOTIFY</span> = 0x2
<span id="RTNLGRP_NEIGH">RTNLGRP_NEIGH</span> = 0x3
<span id="RTNLGRP_TC">RTNLGRP_TC</span> = 0x4
<span id="RTNLGRP_IPV4_IFADDR">RTNLGRP_IPV4_IFADDR</span> = 0x5
<span id="RTNLGRP_IPV4_MROUTE">RTNLGRP_IPV4_MROUTE</span> = 0x6
<span id="RTNLGRP_IPV4_ROUTE">RTNLGRP_IPV4_ROUTE</span> = 0x7
<span id="RTNLGRP_IPV4_RULE">RTNLGRP_IPV4_RULE</span> = 0x8
<span id="RTNLGRP_IPV6_IFADDR">RTNLGRP_IPV6_IFADDR</span> = 0x9
<span id="RTNLGRP_IPV6_MROUTE">RTNLGRP_IPV6_MROUTE</span> = 0xa
<span id="RTNLGRP_IPV6_ROUTE">RTNLGRP_IPV6_ROUTE</span> = 0xb
<span id="RTNLGRP_IPV6_IFINFO">RTNLGRP_IPV6_IFINFO</span> = 0xc
<span id="RTNLGRP_IPV6_PREFIX">RTNLGRP_IPV6_PREFIX</span> = 0x12
<span id="RTNLGRP_IPV6_RULE">RTNLGRP_IPV6_RULE</span> = 0x13
<span id="RTNLGRP_ND_USEROPT">RTNLGRP_ND_USEROPT</span> = 0x14
<span id="SizeofNlMsghdr">SizeofNlMsghdr</span> = 0x10
<span id="SizeofNlMsgerr">SizeofNlMsgerr</span> = 0x14
<span id="SizeofRtGenmsg">SizeofRtGenmsg</span> = 0x1
<span id="SizeofNlAttr">SizeofNlAttr</span> = 0x4
<span id="SizeofRtAttr">SizeofRtAttr</span> = 0x4
<span id="SizeofIfInfomsg">SizeofIfInfomsg</span> = 0x10
<span id="SizeofIfAddrmsg">SizeofIfAddrmsg</span> = 0x8
<span id="SizeofRtMsg">SizeofRtMsg</span> = 0xc
<span id="SizeofRtNexthop">SizeofRtNexthop</span> = 0x8
)</pre>
<pre>const (
<span id="SizeofSockFilter">SizeofSockFilter</span> = 0x8
<span id="SizeofSockFprog">SizeofSockFprog</span> = 0x10
)</pre>
<pre>const (
<span id="VINTR">VINTR</span> = 0x0
<span id="VQUIT">VQUIT</span> = 0x1
<span id="VERASE">VERASE</span> = 0x2
<span id="VKILL">VKILL</span> = 0x3
<span id="VEOF">VEOF</span> = 0x4
<span id="VTIME">VTIME</span> = 0x5
<span id="VMIN">VMIN</span> = 0x6
<span id="VSWTC">VSWTC</span> = 0x7
<span id="VSTART">VSTART</span> = 0x8
<span id="VSTOP">VSTOP</span> = 0x9
<span id="VSUSP">VSUSP</span> = 0xa
<span id="VEOL">VEOL</span> = 0xb
<span id="VREPRINT">VREPRINT</span> = 0xc
<span id="VDISCARD">VDISCARD</span> = 0xd
<span id="VWERASE">VWERASE</span> = 0xe
<span id="VLNEXT">VLNEXT</span> = 0xf
<span id="VEOL2">VEOL2</span> = 0x10
<span id="IGNBRK">IGNBRK</span> = 0x1
<span id="BRKINT">BRKINT</span> = 0x2
<span id="IGNPAR">IGNPAR</span> = 0x4
<span id="PARMRK">PARMRK</span> = 0x8
<span id="INPCK">INPCK</span> = 0x10
<span id="ISTRIP">ISTRIP</span> = 0x20
<span id="INLCR">INLCR</span> = 0x40
<span id="IGNCR">IGNCR</span> = 0x80
<span id="ICRNL">ICRNL</span> = 0x100
<span id="IUCLC">IUCLC</span> = 0x200
<span id="IXON">IXON</span> = 0x400
<span id="IXANY">IXANY</span> = 0x800
<span id="IXOFF">IXOFF</span> = 0x1000
<span id="IMAXBEL">IMAXBEL</span> = 0x2000
<span id="IUTF8">IUTF8</span> = 0x4000
<span id="OPOST">OPOST</span> = 0x1
<span id="OLCUC">OLCUC</span> = 0x2
<span id="ONLCR">ONLCR</span> = 0x4
<span id="OCRNL">OCRNL</span> = 0x8
<span id="ONOCR">ONOCR</span> = 0x10
<span id="ONLRET">ONLRET</span> = 0x20
<span id="OFILL">OFILL</span> = 0x40
<span id="OFDEL">OFDEL</span> = 0x80
<span id="B0">B0</span> = 0x0
<span id="B50">B50</span> = 0x1
<span id="B75">B75</span> = 0x2
<span id="B110">B110</span> = 0x3
<span id="B134">B134</span> = 0x4
<span id="B150">B150</span> = 0x5
<span id="B200">B200</span> = 0x6
<span id="B300">B300</span> = 0x7
<span id="B600">B600</span> = 0x8
<span id="B1200">B1200</span> = 0x9
<span id="B1800">B1800</span> = 0xa
<span id="B2400">B2400</span> = 0xb
<span id="B4800">B4800</span> = 0xc
<span id="B9600">B9600</span> = 0xd
<span id="B19200">B19200</span> = 0xe
<span id="B38400">B38400</span> = 0xf
<span id="CSIZE">CSIZE</span> = 0x30
<span id="CS5">CS5</span> = 0x0
<span id="CS6">CS6</span> = 0x10
<span id="CS7">CS7</span> = 0x20
<span id="CS8">CS8</span> = 0x30
<span id="CSTOPB">CSTOPB</span> = 0x40
<span id="CREAD">CREAD</span> = 0x80
<span id="PARENB">PARENB</span> = 0x100
<span id="PARODD">PARODD</span> = 0x200
<span id="HUPCL">HUPCL</span> = 0x400
<span id="CLOCAL">CLOCAL</span> = 0x800
<span id="B57600">B57600</span> = 0x1001
<span id="B115200">B115200</span> = 0x1002
<span id="B230400">B230400</span> = 0x1003
<span id="B460800">B460800</span> = 0x1004
<span id="B500000">B500000</span> = 0x1005
<span id="B576000">B576000</span> = 0x1006
<span id="B921600">B921600</span> = 0x1007
<span id="B1000000">B1000000</span> = 0x1008
<span id="B1152000">B1152000</span> = 0x1009
<span id="B1500000">B1500000</span> = 0x100a
<span id="B2000000">B2000000</span> = 0x100b
<span id="B2500000">B2500000</span> = 0x100c
<span id="B3000000">B3000000</span> = 0x100d
<span id="B3500000">B3500000</span> = 0x100e
<span id="B4000000">B4000000</span> = 0x100f
<span id="ISIG">ISIG</span> = 0x1
<span id="ICANON">ICANON</span> = 0x2
<span id="XCASE">XCASE</span> = 0x4
<span id="ECHO">ECHO</span> = 0x8
<span id="ECHOE">ECHOE</span> = 0x10
<span id="ECHOK">ECHOK</span> = 0x20
<span id="ECHONL">ECHONL</span> = 0x40
<span id="NOFLSH">NOFLSH</span> = 0x80
<span id="TOSTOP">TOSTOP</span> = 0x100
<span id="ECHOCTL">ECHOCTL</span> = 0x200
<span id="ECHOPRT">ECHOPRT</span> = 0x400
<span id="ECHOKE">ECHOKE</span> = 0x800
<span id="FLUSHO">FLUSHO</span> = 0x1000
<span id="PENDIN">PENDIN</span> = 0x4000
<span id="IEXTEN">IEXTEN</span> = 0x8000
<span id="TCGETS">TCGETS</span> = 0x5401
<span id="TCSETS">TCSETS</span> = 0x5402
)</pre>
<pre>const <span id="ImplementsGetwd">ImplementsGetwd</span> = <a href="../builtin/index.html#true">true</a></pre>
<pre>const (
<span id="PathMax">PathMax</span> = 0x1000
)</pre>
<pre>const <span id="SizeofInotifyEvent">SizeofInotifyEvent</span> = 0x10</pre>
<h2 id="pkg-variables">Variables</h2>
<pre>var (
<span id="Stdin">Stdin</span> = 0
<span id="Stdout">Stdout</span> = 1
<span id="Stderr">Stderr</span> = 2
)</pre>
<pre>var <span id="ForkLock">ForkLock</span> <a href="../sync/index.html">sync</a>.<a href="../sync/index.html#RWMutex">RWMutex</a></pre>
<pre>var <span id="SocketDisableIPv6">SocketDisableIPv6</span> <a href="../builtin/index.html#bool">bool</a></pre>
<p>
For testing: clients can set this flag to force
creation of IPv6 sockets to return EAFNOSUPPORT.
</p>
<h2 id="Accept">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=10740:10793#L425">Accept</a></h2>
<pre>func Accept(fd <a href="../builtin/index.html#int">int</a>) (nfd <a href="../builtin/index.html#int">int</a>, sa <a href="index.html#Sockaddr">Sockaddr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Accept4">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11007:11072#L440">Accept4</a></h2>
<pre>func Accept4(fd <a href="../builtin/index.html#int">int</a>, flags <a href="../builtin/index.html#int">int</a>) (nfd <a href="../builtin/index.html#int">int</a>, sa <a href="index.html#Sockaddr">Sockaddr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Access">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=487:536#L10">Access</a></h2>
<pre>func Access(path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Acct">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=5926:5960#L226">Acct</a></h2>
<pre>func Acct(path <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Adjtimex">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=6251:6299#L242">Adjtimex</a></h2>
<pre>func Adjtimex(buf *<a href="index.html#Timex">Timex</a>) (state <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="AttachLsf">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=1411:1455#L58">AttachLsf</a></h2>
<pre>func AttachLsf(fd <a href="../builtin/index.html#int">int</a>, i []<a href="index.html#SockFilter">SockFilter</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="Bind">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4692:4734#L206">Bind</a></h2>
<pre>func Bind(fd <a href="../builtin/index.html#int">int</a>, sa <a href="index.html#Sockaddr">Sockaddr</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="BindToDevice">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=15024:15076#L598">BindToDevice</a></h2>
<pre>func BindToDevice(fd <a href="../builtin/index.html#int">int</a>, device <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<p>
BindToDevice binds the socket associated with fd to device.
</p>
<h2 id="BytePtrFromString">func <a href="http://localhost:6060/src/syscall/syscall.go?s=2673:2720#L58">BytePtrFromString</a></h2>
<pre>func BytePtrFromString(s <a href="../builtin/index.html#string">string</a>) (*<a href="../builtin/index.html#byte">byte</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
BytePtrFromString returns a pointer to a NUL-terminated array of
bytes containing the text of s. If s contains a NUL byte at any
location, it returns (nil, EINVAL).
</p>
<h2 id="ByteSliceFromString">func <a href="http://localhost:6060/src/syscall/syscall.go?s=2037:2087#L37">ByteSliceFromString</a></h2>
<pre>func ByteSliceFromString(s <a href="../builtin/index.html#string">string</a>) ([]<a href="../builtin/index.html#byte">byte</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
ByteSliceFromString returns a NUL-terminated slice of bytes
containing the text of s. If s contains a NUL byte at any
location, it returns (nil, EINVAL).
</p>
<h2 id="Chdir">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=6506:6541#L253">Chdir</a></h2>
<pre>func Chdir(path <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Chmod">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=586:634#L14">Chmod</a></h2>
<pre>func Chmod(path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Chown">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=683:736#L18">Chown</a></h2>
<pre>func Chown(path <a href="../builtin/index.html#string">string</a>, uid <a href="../builtin/index.html#int">int</a>, gid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Chroot">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=6833:6869#L269">Chroot</a></h2>
<pre>func Chroot(path <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Clearenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=2416:2431#L115">Clearenv</a></h2>
<pre>func Clearenv()</pre>
<h2 id="Close">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7162:7192#L285">Close</a></h2>
<pre>func Close(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="CloseOnExec">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3566:3590#L86">CloseOnExec</a></h2>
<pre>func CloseOnExec(fd <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="CmsgLen">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=761:790#L16">CmsgLen</a></h2>
<pre>func CmsgLen(datalen <a href="../builtin/index.html#int">int</a>) <a href="../builtin/index.html#int">int</a></pre>
<p>
CmsgLen returns the value to store in the Len field of the Cmsghdr
structure, taking into account any necessary alignment.
</p>
<h2 id="CmsgSpace">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=955:986#L22">CmsgSpace</a></h2>
<pre>func CmsgSpace(datalen <a href="../builtin/index.html#int">int</a>) <a href="../builtin/index.html#int">int</a></pre>
<p>
CmsgSpace returns the number of bytes an ancillary element with
payload of the passed data length occupies.
</p>
<h2 id="Connect">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4828:4873#L214">Connect</a></h2>
<pre>func Connect(fd <a href="../builtin/index.html#int">int</a>, sa <a href="index.html#Sockaddr">Sockaddr</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Creat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=789:845#L22">Creat</a></h2>
<pre>func Creat(path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="DetachLsf">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=1642:1670#L65">DetachLsf</a></h2>
<pre>func DetachLsf(fd <a href="../builtin/index.html#int">int</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="Dup">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7361:7400#L295">Dup</a></h2>
<pre>func Dup(oldfd <a href="../builtin/index.html#int">int</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Dup2">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28205:28248#L1190">Dup2</a></h2>
<pre>func Dup2(oldfd <a href="../builtin/index.html#int">int</a>, newfd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Dup3">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7585:7639#L306">Dup3</a></h2>
<pre>func Dup3(oldfd <a href="../builtin/index.html#int">int</a>, newfd <a href="../builtin/index.html#int">int</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Environ">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=2624:2647#L128">Environ</a></h2>
<pre>func Environ() []<a href="../builtin/index.html#string">string</a></pre>
<h2 id="EpollCreate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7836:7882#L316">EpollCreate</a></h2>
<pre>func EpollCreate(size <a href="../builtin/index.html#int">int</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="EpollCreate1">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=8078:8125#L327">EpollCreate1</a></h2>
<pre>func EpollCreate1(flag <a href="../builtin/index.html#int">int</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="EpollCtl">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=8322:8392#L338">EpollCtl</a></h2>
<pre>func EpollCtl(epfd <a href="../builtin/index.html#int">int</a>, op <a href="../builtin/index.html#int">int</a>, fd <a href="../builtin/index.html#int">int</a>, event *<a href="index.html#EpollEvent">EpollEvent</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="EpollWait">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=8629:8703#L348">EpollWait</a></h2>
<pre>func EpollWait(epfd <a href="../builtin/index.html#int">int</a>, events []<a href="index.html#EpollEvent">EpollEvent</a>, msec <a href="../builtin/index.html#int">int</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Exec">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=6837:6902#L235">Exec</a></h2>
<pre>func Exec(argv0 <a href="../builtin/index.html#string">string</a>, argv []<a href="../builtin/index.html#string">string</a>, envv []<a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<p>
Ordinary exec.
</p>
<h2 id="Exit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9070:9089#L365">Exit</a></h2>
<pre>func Exit(code <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Faccessat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9215:9289#L372">Faccessat</a></h2>
<pre>func Faccessat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fallocate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9633:9702#L388">Fallocate</a></h2>
<pre>func Fallocate(fd <a href="../builtin/index.html#int">int</a>, mode <a href="../builtin/index.html#uint32">uint32</a>, off <a href="../builtin/index.html#int64">int64</a>, len <a href="../builtin/index.html#int64">int64</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fchdir">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9919:9950#L398">Fchdir</a></h2>
<pre>func Fchdir(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fchmod">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=10120:10164#L408">Fchmod</a></h2>
<pre>func Fchmod(fd <a href="../builtin/index.html#int">int</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fchmodat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=10346:10419#L418">Fchmodat</a></h2>
<pre>func Fchmodat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fchown">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28432:28481#L1200">Fchown</a></h2>
<pre>func Fchown(fd <a href="../builtin/index.html#int">int</a>, uid <a href="../builtin/index.html#int">int</a>, gid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fchownat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=10762:10840#L434">Fchownat</a></h2>
<pre>func Fchownat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>, uid <a href="../builtin/index.html#int">int</a>, gid <a href="../builtin/index.html#int">int</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="FcntlFlock">func <a href="http://localhost:6060/src/syscall/flock.go?s=504:559#L6">FcntlFlock</a></h2>
<pre>func FcntlFlock(fd <a href="../builtin/index.html#uintptr">uintptr</a>, cmd <a href="../builtin/index.html#int">int</a>, lk *<a href="index.html#Flock_t">Flock_t</a>) <a href="../builtin/index.html#error">error</a></pre>
<p>
FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
</p>
<h2 id="Fdatasync">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=11457:11491#L461">Fdatasync</a></h2>
<pre>func Fdatasync(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Flock">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=11664:11703#L471">Flock</a></h2>
<pre>func Flock(fd <a href="../builtin/index.html#int">int</a>, how <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="ForkExec">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=6486:6565#L224">ForkExec</a></h2>
<pre>func ForkExec(argv0 <a href="../builtin/index.html#string">string</a>, argv []<a href="../builtin/index.html#string">string</a>, attr *<a href="index.html#ProcAttr">ProcAttr</a>) (pid <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<p>
Combination of fork and exec, careful to be thread safe.
</p>
<h2 id="Fstat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28673:28717#L1210">Fstat</a></h2>
<pre>func Fstat(fd <a href="../builtin/index.html#int">int</a>, stat *<a href="index.html#Stat_t">Stat_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fstatfs">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28914:28961#L1220">Fstatfs</a></h2>
<pre>func Fstatfs(fd <a href="../builtin/index.html#int">int</a>, buf *<a href="index.html#Statfs_t">Statfs_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Fsync">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=11883:11913#L481">Fsync</a></h2>
<pre>func Fsync(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Ftruncate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29159:29207#L1230">Ftruncate</a></h2>
<pre>func Ftruncate(fd <a href="../builtin/index.html#int">int</a>, length <a href="../builtin/index.html#int64">int64</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Futimes">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=3602:3648#L124">Futimes</a></h2>
<pre>func Futimes(fd <a href="../builtin/index.html#int">int</a>, tv []<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Futimesat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=3312:3376#L111">Futimesat</a></h2>
<pre>func Futimesat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>, tv []<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getcwd">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=3791:3833#L144">Getcwd</a></h2>
<pre>func Getcwd(buf []<a href="../builtin/index.html#byte">byte</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getdents">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12082:12134#L491">Getdents</a></h2>
<pre>func Getdents(fd <a href="../builtin/index.html#int">int</a>, buf []<a href="../builtin/index.html#byte">byte</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getegid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29394:29419#L1240">Getegid</a></h2>
<pre>func Getegid() (egid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Getenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=1601:1651#L61">Getenv</a></h2>
<pre>func Getenv(key <a href="../builtin/index.html#string">string</a>) (value <a href="../builtin/index.html#string">string</a>, found <a href="../builtin/index.html#bool">bool</a>)</pre>
<h2 id="Geteuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29561:29586#L1248">Geteuid</a></h2>
<pre>func Geteuid() (euid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Getgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29728:29751#L1256">Getgid</a></h2>
<pre>func Getgid() (gid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Getgroups">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=4168:4208#L147">Getgroups</a></h2>
<pre>func Getgroups() (gids []<a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getpagesize">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3592:3614#L65">Getpagesize</a></h2>
<pre>func Getpagesize() <a href="../builtin/index.html#int">int</a></pre>
<h2 id="Getpgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12467:12510#L508">Getpgid</a></h2>
<pre>func Getpgid(pid <a href="../builtin/index.html#int">int</a>) (pgid <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getpgrp">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=22048:22072#L833">Getpgrp</a></h2>
<pre>func Getpgrp() (pid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Getpid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12702:12725#L519">Getpid</a></h2>
<pre>func Getpid() (pid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Getppid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12865:12890#L527">Getppid</a></h2>
<pre>func Getppid() (ppid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Getpriority">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13032:13090#L535">Getpriority</a></h2>
<pre>func Getpriority(which <a href="../builtin/index.html#int">int</a>, who <a href="../builtin/index.html#int">int</a>) (prio <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getrlimit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29891:29945#L1264">Getrlimit</a></h2>
<pre>func Getrlimit(resource <a href="../builtin/index.html#int">int</a>, rlim *<a href="index.html#Rlimit">Rlimit</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getrusage">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13296:13347#L546">Getrusage</a></h2>
<pre>func Getrusage(who <a href="../builtin/index.html#int">int</a>, rusage *<a href="index.html#Rusage">Rusage</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="GetsockoptInet4Addr">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11572:11643#L467">GetsockoptInet4Addr</a></h2>
<pre>func GetsockoptInet4Addr(fd, level, opt <a href="../builtin/index.html#int">int</a>) (value [4]<a href="../builtin/index.html#byte">byte</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="GetsockoptInt">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5179:5240#L231">GetsockoptInt</a></h2>
<pre>func GetsockoptInt(fd, level, opt <a href="../builtin/index.html#int">int</a>) (value <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Gettid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13554:13577#L556">Gettid</a></h2>
<pre>func Gettid() (tid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Gettimeofday">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3470:3512#L57">Gettimeofday</a></h2>
<pre>func Gettimeofday(tv *<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30155:30178#L1274">Getuid</a></h2>
<pre>func Getuid() (uid <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Getwd">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=3864:3899#L134">Getwd</a></h2>
<pre>func Getwd() (wd <a href="../builtin/index.html#string">string</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Getxattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13717:13789#L564">Getxattr</a></h2>
<pre>func Getxattr(path <a href="../builtin/index.html#string">string</a>, attr <a href="../builtin/index.html#string">string</a>, dest []<a href="../builtin/index.html#byte">byte</a>) (sz <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="InotifyAddWatch">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=14391:14476#L593">InotifyAddWatch</a></h2>
<pre>func InotifyAddWatch(fd <a href="../builtin/index.html#int">int</a>, pathname <a href="../builtin/index.html#string">string</a>, mask <a href="../builtin/index.html#uint32">uint32</a>) (watchdesc <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="InotifyInit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30318:30356#L1282">InotifyInit</a></h2>
<pre>func InotifyInit() (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="InotifyInit1">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=14828:14876#L610">InotifyInit1</a></h2>
<pre>func InotifyInit1(flags <a href="../builtin/index.html#int">int</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="InotifyRmWatch">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15074:15144#L621">InotifyRmWatch</a></h2>
<pre>func InotifyRmWatch(fd <a href="../builtin/index.html#int">int</a>, watchdesc <a href="../builtin/index.html#uint32">uint32</a>) (success <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Ioperm">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30540:30590#L1293">Ioperm</a></h2>
<pre>func Ioperm(from <a href="../builtin/index.html#int">int</a>, num <a href="../builtin/index.html#int">int</a>, on <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Iopl">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30783:30815#L1303">Iopl</a></h2>
<pre>func Iopl(level <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Kill">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15364:15406#L632">Kill</a></h2>
<pre>func Kill(pid <a href="../builtin/index.html#int">int</a>, sig <a href="index.html#Signal">Signal</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Klogctl">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15589:15641#L642">Klogctl</a></h2>
<pre>func Klogctl(typ <a href="../builtin/index.html#int">int</a>, buf []<a href="../builtin/index.html#byte">byte</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Lchown">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30986:31040#L1313">Lchown</a></h2>
<pre>func Lchown(path <a href="../builtin/index.html#string">string</a>, uid <a href="../builtin/index.html#int">int</a>, gid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Link">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=999:1052#L28">Link</a></h2>
<pre>func Link(oldpath <a href="../builtin/index.html#string">string</a>, newpath <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Listen">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=31355:31392#L1329">Listen</a></h2>
<pre>func Listen(s <a href="../builtin/index.html#int">int</a>, n <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Listxattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15972:16032#L659">Listxattr</a></h2>
<pre>func Listxattr(path <a href="../builtin/index.html#string">string</a>, dest []<a href="../builtin/index.html#byte">byte</a>) (sz <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="LsfSocket">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=456:503#L11">LsfSocket</a></h2>
<pre>func LsfSocket(ifindex, proto <a href="../builtin/index.html#int">int</a>) (<a href="../builtin/index.html#int">int</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Lstat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=31570:31619#L1339">Lstat</a></h2>
<pre>func Lstat(path <a href="../builtin/index.html#string">string</a>, stat *<a href="index.html#Stat_t">Stat_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Madvise">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=26415:26461#L1106">Madvise</a></h2>
<pre>func Madvise(b []<a href="../builtin/index.html#byte">byte</a>, advice <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mkdir">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1116:1164#L32">Mkdir</a></h2>
<pre>func Mkdir(path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mkdirat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=16492:16553#L682">Mkdirat</a></h2>
<pre>func Mkdirat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mkfifo">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=6435:6484#L253">Mkfifo</a></h2>
<pre>func Mkfifo(path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mknod">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1209:1266#L36">Mknod</a></h2>
<pre>func Mknod(path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>, dev <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mknodat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=16872:16942#L698">Mknodat</a></h2>
<pre>func Mknodat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#uint32">uint32</a>, dev <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mlock">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=27135:27167#L1138">Mlock</a></h2>
<pre>func Mlock(b []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mlockall">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=27801:27837#L1170">Mlockall</a></h2>
<pre>func Mlockall(flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mmap">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=25022:25111#L905">Mmap</a></h2>
<pre>func Mmap(fd <a href="../builtin/index.html#int">int</a>, offset <a href="../builtin/index.html#int64">int64</a>, length <a href="../builtin/index.html#int">int</a>, prot <a href="../builtin/index.html#int">int</a>, flags <a href="../builtin/index.html#int">int</a>) (data []<a href="../builtin/index.html#byte">byte</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mount">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=20289:20384#L786">Mount</a></h2>
<pre>func Mount(source <a href="../builtin/index.html#string">string</a>, target <a href="../builtin/index.html#string">string</a>, fstype <a href="../builtin/index.html#string">string</a>, flags <a href="../builtin/index.html#uintptr">uintptr</a>, data <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Mprotect">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=26776:26821#L1122">Mprotect</a></h2>
<pre>func Mprotect(b []<a href="../builtin/index.html#byte">byte</a>, prot <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Munlock">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=27466:27500#L1154">Munlock</a></h2>
<pre>func Munlock(b []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Munlockall">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28012:28041#L1180">Munlockall</a></h2>
<pre>func Munlockall() (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Munmap">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=25170:25203#L909">Munmap</a></h2>
<pre>func Munmap(b []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Nanosleep">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=17282:17344#L714">Nanosleep</a></h2>
<pre>func Nanosleep(time *<a href="index.html#Timespec">Timespec</a>, leftover *<a href="index.html#Timespec">Timespec</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="NetlinkRIB">func <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=1612:1662#L42">NetlinkRIB</a></h2>
<pre>func NetlinkRIB(proto, family <a href="../builtin/index.html#int">int</a>) ([]<a href="../builtin/index.html#byte">byte</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
NetlinkRIB returns routing information base, as known as RIB, which
consists of network facility information, states and parameters.
</p>
<h2 id="Open">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1316:1381#L40">Open</a></h2>
<pre>func Open(path <a href="../builtin/index.html#string">string</a>, mode <a href="../builtin/index.html#int">int</a>, perm <a href="../builtin/index.html#uint32">uint32</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Openat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1525:1604#L46">Openat</a></h2>
<pre>func Openat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>, flags <a href="../builtin/index.html#int">int</a>, mode <a href="../builtin/index.html#uint32">uint32</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="ParseDirent">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19617:19715#L763">ParseDirent</a></h2>
<pre>func ParseDirent(buf []<a href="../builtin/index.html#byte">byte</a>, max <a href="../builtin/index.html#int">int</a>, names []<a href="../builtin/index.html#string">string</a>) (consumed <a href="../builtin/index.html#int">int</a>, count <a href="../builtin/index.html#int">int</a>, newnames []<a href="../builtin/index.html#string">string</a>)</pre>
<h2 id="ParseNetlinkMessage">func <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=2992:3052#L106">ParseNetlinkMessage</a></h2>
<pre>func ParseNetlinkMessage(b []<a href="../builtin/index.html#byte">byte</a>) ([]<a href="index.html#NetlinkMessage">NetlinkMessage</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
ParseNetlinkMessage parses b as an array of netlink messages and
returns the slice containing the NetlinkMessage structures.
</p>
<h2 id="ParseNetlinkRouteAttr">func <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=3885:3958#L137">ParseNetlinkRouteAttr</a></h2>
<pre>func ParseNetlinkRouteAttr(m *<a href="index.html#NetlinkMessage">NetlinkMessage</a>) ([]<a href="index.html#NetlinkRouteAttr">NetlinkRouteAttr</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
ParseNetlinkRouteAttr parses m&#39;s payload as an array of netlink
route attributes and returns the slice containing the
NetlinkRouteAttr structures.
</p>
<h2 id="ParseSocketControlMessage">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=1396:1468#L38">ParseSocketControlMessage</a></h2>
<pre>func ParseSocketControlMessage(b []<a href="../builtin/index.html#byte">byte</a>) ([]<a href="index.html#SocketControlMessage">SocketControlMessage</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
ParseSocketControlMessage parses b as an array of socket control
messages.
</p>
<h2 id="ParseUnixRights">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=2625:2685#L80">ParseUnixRights</a></h2>
<pre>func ParseUnixRights(m *<a href="index.html#SocketControlMessage">SocketControlMessage</a>) ([]<a href="../builtin/index.html#int">int</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
ParseUnixRights decodes a socket control message that contains an
integer array of open file descriptors from another process.
</p>
<h2 id="Pause">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=17567:17591#L724">Pause</a></h2>
<pre>func Pause() (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Pipe">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4293:4323#L98">Pipe</a></h2>
<pre>func Pipe(p []<a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Pipe2">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4499:4541#L111">Pipe2</a></h2>
<pre>func Pipe2(p []<a href="../builtin/index.html#int">int</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PivotRoot">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=17750:17807#L734">PivotRoot</a></h2>
<pre>func PivotRoot(newroot <a href="../builtin/index.html#string">string</a>, putold <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Pread">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=31939:32000#L1355">Pread</a></h2>
<pre>func Pread(fd <a href="../builtin/index.html#int">int</a>, p []<a href="../builtin/index.html#byte">byte</a>, offset <a href="../builtin/index.html#int64">int64</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceAttach">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19075:19113#L740">PtraceAttach</a></h2>
<pre>func PtraceAttach(pid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceCont">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18763:18811#L730">PtraceCont</a></h2>
<pre>func PtraceCont(pid <a href="../builtin/index.html#int">int</a>, signal <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceDetach">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19159:19197#L742">PtraceDetach</a></h2>
<pre>func PtraceDetach(pid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceGetEventMsg">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18586:18639#L723">PtraceGetEventMsg</a></h2>
<pre>func PtraceGetEventMsg(pid <a href="../builtin/index.html#int">int</a>) (msg <a href="../builtin/index.html#uint">uint</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceGetRegs">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18193:18253#L711">PtraceGetRegs</a></h2>
<pre>func PtraceGetRegs(pid <a href="../builtin/index.html#int">int</a>, regsout *<a href="index.html#PtraceRegs">PtraceRegs</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtracePeekData">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=16506:16583#L648">PtracePeekData</a></h2>
<pre>func PtracePeekData(pid <a href="../builtin/index.html#int">int</a>, addr <a href="../builtin/index.html#uintptr">uintptr</a>, out []<a href="../builtin/index.html#byte">byte</a>) (count <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtracePeekText">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=16371:16448#L644">PtracePeekText</a></h2>
<pre>func PtracePeekText(pid <a href="../builtin/index.html#int">int</a>, addr <a href="../builtin/index.html#uintptr">uintptr</a>, out []<a href="../builtin/index.html#byte">byte</a>) (count <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtracePokeData">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18039:18117#L707">PtracePokeData</a></h2>
<pre>func PtracePokeData(pid <a href="../builtin/index.html#int">int</a>, addr <a href="../builtin/index.html#uintptr">uintptr</a>, data []<a href="../builtin/index.html#byte">byte</a>) (count <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtracePokeText">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=17885:17963#L703">PtracePokeText</a></h2>
<pre>func PtracePokeText(pid <a href="../builtin/index.html#int">int</a>, addr <a href="../builtin/index.html#uintptr">uintptr</a>, data []<a href="../builtin/index.html#byte">byte</a>) (count <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceSetOptions">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18465:18520#L719">PtraceSetOptions</a></h2>
<pre>func PtraceSetOptions(pid <a href="../builtin/index.html#int">int</a>, options <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceSetRegs">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18332:18389#L715">PtraceSetRegs</a></h2>
<pre>func PtraceSetRegs(pid <a href="../builtin/index.html#int">int</a>, regs *<a href="index.html#PtraceRegs">PtraceRegs</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceSingleStep">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18983:19025#L738">PtraceSingleStep</a></h2>
<pre>func PtraceSingleStep(pid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="PtraceSyscall">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18870:18921#L734">PtraceSyscall</a></h2>
<pre>func PtraceSyscall(pid <a href="../builtin/index.html#int">int</a>, signal <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Pwrite">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=32349:32411#L1372">Pwrite</a></h2>
<pre>func Pwrite(fd <a href="../builtin/index.html#int">int</a>, p []<a href="../builtin/index.html#byte">byte</a>, offset <a href="../builtin/index.html#int64">int64</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="RawSyscall">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=689:758#L20">RawSyscall</a></h2>
<pre>func RawSyscall(trap, a1, a2, a3 <a href="../builtin/index.html#uintptr">uintptr</a>) (r1, r2 <a href="../builtin/index.html#uintptr">uintptr</a>, err <a href="index.html#Errno">Errno</a>)</pre>
<h2 id="RawSyscall6">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=759:841#L21">RawSyscall6</a></h2>
<pre>func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 <a href="../builtin/index.html#uintptr">uintptr</a>) (r1, r2 <a href="../builtin/index.html#uintptr">uintptr</a>, err <a href="index.html#Errno">Errno</a>)</pre>
<h2 id="Read">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3599:3645#L150">Read</a></h2>
<pre>func Read(fd <a href="../builtin/index.html#int">int</a>, p []<a href="../builtin/index.html#byte">byte</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="ReadDirent">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19531:19585#L759">ReadDirent</a></h2>
<pre>func ReadDirent(fd <a href="../builtin/index.html#int">int</a>, buf []<a href="../builtin/index.html#byte">byte</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Readlink">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1736:1793#L52">Readlink</a></h2>
<pre>func Readlink(path <a href="../builtin/index.html#string">string</a>, buf []<a href="../builtin/index.html#byte">byte</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Reboot">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19316:19348#L746">Reboot</a></h2>
<pre>func Reboot(cmd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Recvfrom">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5365:5441#L238">Recvfrom</a></h2>
<pre>func Recvfrom(fd <a href="../builtin/index.html#int">int</a>, p []<a href="../builtin/index.html#byte">byte</a>, flags <a href="../builtin/index.html#int">int</a>) (n <a href="../builtin/index.html#int">int</a>, from <a href="index.html#Sockaddr">Sockaddr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Recvmsg">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=13191:13292#L519">Recvmsg</a></h2>
<pre>func Recvmsg(fd <a href="../builtin/index.html#int">int</a>, p, oob []<a href="../builtin/index.html#byte">byte</a>, flags <a href="../builtin/index.html#int">int</a>) (n, oobn <a href="../builtin/index.html#int">int</a>, recvflags <a href="../builtin/index.html#int">int</a>, from <a href="index.html#Sockaddr">Sockaddr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Removexattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=18950:19004#L783">Removexattr</a></h2>
<pre>func Removexattr(path <a href="../builtin/index.html#string">string</a>, attr <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Rename">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1840:1895#L56">Rename</a></h2>
<pre>func Rename(oldpath <a href="../builtin/index.html#string">string</a>, newpath <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Renameat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=19435:19520#L805">Renameat</a></h2>
<pre>func Renameat(olddirfd <a href="../builtin/index.html#int">int</a>, oldpath <a href="../builtin/index.html#string">string</a>, newdirfd <a href="../builtin/index.html#int">int</a>, newpath <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Rmdir">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1958:1987#L60">Rmdir</a></h2>
<pre>func Rmdir(path <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="Seek">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=32761:32827#L1389">Seek</a></h2>
<pre>func Seek(fd <a href="../builtin/index.html#int">int</a>, offset <a href="../builtin/index.html#int64">int64</a>, whence <a href="../builtin/index.html#int">int</a>) (off <a href="../builtin/index.html#int64">int64</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Select">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=33042:33129#L1400">Select</a></h2>
<pre>func Select(nfd <a href="../builtin/index.html#int">int</a>, r *<a href="index.html#FdSet">FdSet</a>, w *<a href="index.html#FdSet">FdSet</a>, e *<a href="index.html#FdSet">FdSet</a>, timeout *<a href="index.html#Timeval">Timeval</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Sendfile">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=7530:7615#L313">Sendfile</a></h2>
<pre>func Sendfile(outfd <a href="../builtin/index.html#int">int</a>, infd <a href="../builtin/index.html#int">int</a>, offset *<a href="../builtin/index.html#int64">int64</a>, count <a href="../builtin/index.html#int">int</a>) (written <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Sendmsg">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=14035:14106#L553">Sendmsg</a></h2>
<pre>func Sendmsg(fd <a href="../builtin/index.html#int">int</a>, p, oob []<a href="../builtin/index.html#byte">byte</a>, to <a href="index.html#Sockaddr">Sockaddr</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SendmsgN">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=14162:14241#L558">SendmsgN</a></h2>
<pre>func SendmsgN(fd <a href="../builtin/index.html#int">int</a>, p, oob []<a href="../builtin/index.html#byte">byte</a>, to <a href="index.html#Sockaddr">Sockaddr</a>, flags <a href="../builtin/index.html#int">int</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Sendto">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5663:5728#L250">Sendto</a></h2>
<pre>func Sendto(fd <a href="../builtin/index.html#int">int</a>, p []<a href="../builtin/index.html#byte">byte</a>, flags <a href="../builtin/index.html#int">int</a>, to <a href="index.html#Sockaddr">Sockaddr</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetLsfPromisc">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=873:918#L34">SetLsfPromisc</a></h2>
<pre>func SetLsfPromisc(name <a href="../builtin/index.html#string">string</a>, m <a href="../builtin/index.html#bool">bool</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="SetNonblock">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3627:3681#L88">SetNonblock</a></h2>
<pre>func SetNonblock(fd <a href="../builtin/index.html#int">int</a>, nonblocking <a href="../builtin/index.html#bool">bool</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setdomainname">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=19996:20036#L827">Setdomainname</a></h2>
<pre>func Setdomainname(p []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=1928:1964#L83">Setenv</a></h2>
<pre>func Setenv(key, value <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="Setfsgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=33775:33809#L1422">Setfsgid</a></h2>
<pre>func Setfsgid(gid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setfsuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=33982:34016#L1432">Setfsuid</a></h2>
<pre>func Setfsuid(uid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setgid">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=23869:23901#L874">Setgid</a></h2>
<pre>func Setgid(gid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setgroups">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=4593:4631#L173">Setgroups</a></h2>
<pre>func Setgroups(gids []<a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Sethostname">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=20343:20381#L843">Sethostname</a></h2>
<pre>func Sethostname(p []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setpgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=20686:20729#L859">Setpgid</a></h2>
<pre>func Setpgid(pid <a href="../builtin/index.html#int">int</a>, pgid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setpriority">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=21366:21424#L890">Setpriority</a></h2>
<pre>func Setpriority(which <a href="../builtin/index.html#int">int</a>, who <a href="../builtin/index.html#int">int</a>, prio <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setregid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34189:34234#L1442">Setregid</a></h2>
<pre>func Setregid(rgid <a href="../builtin/index.html#int">int</a>, egid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setresgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34423:34479#L1452">Setresgid</a></h2>
<pre>func Setresgid(rgid <a href="../builtin/index.html#int">int</a>, egid <a href="../builtin/index.html#int">int</a>, sgid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setresuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34681:34737#L1462">Setresuid</a></h2>
<pre>func Setresuid(ruid <a href="../builtin/index.html#int">int</a>, euid <a href="../builtin/index.html#int">int</a>, suid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setreuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=35203:35248#L1482">Setreuid</a></h2>
<pre>func Setreuid(ruid <a href="../builtin/index.html#int">int</a>, euid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setrlimit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34939:34993#L1472">Setrlimit</a></h2>
<pre>func Setrlimit(resource <a href="../builtin/index.html#int">int</a>, rlim *<a href="index.html#Rlimit">Rlimit</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setsid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=20916:20950#L869">Setsid</a></h2>
<pre>func Setsid() (pid <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptByte">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5834:5897#L258">SetsockoptByte</a></h2>
<pre>func SetsockoptByte(fd, level, opt <a href="../builtin/index.html#int">int</a>, value <a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptICMPv6Filter">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6548:6623#L279">SetsockoptICMPv6Filter</a></h2>
<pre>func SetsockoptICMPv6Filter(fd, level, opt <a href="../builtin/index.html#int">int</a>, filter *<a href="index.html#ICMPv6Filter">ICMPv6Filter</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="SetsockoptIPMreq">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6254:6321#L271">SetsockoptIPMreq</a></h2>
<pre>func SetsockoptIPMreq(fd, level, opt <a href="../builtin/index.html#int">int</a>, mreq *<a href="index.html#IPMreq">IPMreq</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptIPMreqn">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=13037:13106#L515">SetsockoptIPMreqn</a></h2>
<pre>func SetsockoptIPMreqn(fd, level, opt <a href="../builtin/index.html#int">int</a>, mreq *<a href="index.html#IPMreqn">IPMreqn</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptIPv6Mreq">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6398:6469#L275">SetsockoptIPv6Mreq</a></h2>
<pre>func SetsockoptIPv6Mreq(fd, level, opt <a href="../builtin/index.html#int">int</a>, mreq *<a href="index.html#IPv6Mreq">IPv6Mreq</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptInet4Addr">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6112:6183#L267">SetsockoptInet4Addr</a></h2>
<pre>func SetsockoptInet4Addr(fd, level, opt <a href="../builtin/index.html#int">int</a>, value [4]<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptInt">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5965:6026#L262">SetsockoptInt</a></h2>
<pre>func SetsockoptInt(fd, level, opt <a href="../builtin/index.html#int">int</a>, value <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptLinger">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6708:6772#L283">SetsockoptLinger</a></h2>
<pre>func SetsockoptLinger(fd, level, opt <a href="../builtin/index.html#int">int</a>, l *<a href="index.html#Linger">Linger</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptString">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6846:6909#L287">SetsockoptString</a></h2>
<pre>func SetsockoptString(fd, level, opt <a href="../builtin/index.html#int">int</a>, s <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SetsockoptTimeval">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6998:7065#L291">SetsockoptTimeval</a></h2>
<pre>func SetsockoptTimeval(fd, level, opt <a href="../builtin/index.html#int">int</a>, tv *<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Settimeofday">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=21129:21171#L880">Settimeofday</a></h2>
<pre>func Settimeofday(tv *<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setuid">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=23812:23844#L870">Setuid</a></h2>
<pre>func Setuid(uid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Setxattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=21625:21700#L900">Setxattr</a></h2>
<pre>func Setxattr(path <a href="../builtin/index.html#string">string</a>, attr <a href="../builtin/index.html#string">string</a>, data []<a href="../builtin/index.html#byte">byte</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Shutdown">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=35437:35479#L1492">Shutdown</a></h2>
<pre>func Shutdown(fd <a href="../builtin/index.html#int">int</a>, how <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SlicePtrFromStrings">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3308:3362#L73">SlicePtrFromStrings</a></h2>
<pre>func SlicePtrFromStrings(ss []<a href="../builtin/index.html#string">string</a>) ([]*<a href="../builtin/index.html#byte">byte</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
SlicePtrFromStrings converts a slice of strings to a slice of
pointers to NUL-terminated byte arrays. If any string contains
a NUL byte, it returns (nil, EINVAL).
</p>
<h2 id="Socket">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=7146:7201#L295">Socket</a></h2>
<pre>func Socket(domain, typ, proto <a href="../builtin/index.html#int">int</a>) (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Socketpair">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=7328:7390#L303">Socketpair</a></h2>
<pre>func Socketpair(domain, typ, proto <a href="../builtin/index.html#int">int</a>) (fd [2]<a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Splice">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=35662:35758#L1502">Splice</a></h2>
<pre>func Splice(rfd <a href="../builtin/index.html#int">int</a>, roff *<a href="../builtin/index.html#int64">int64</a>, wfd <a href="../builtin/index.html#int">int</a>, woff *<a href="../builtin/index.html#int64">int64</a>, len <a href="../builtin/index.html#int">int</a>, flags <a href="../builtin/index.html#int">int</a>) (n <a href="../builtin/index.html#int64">int64</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="StartProcess">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=6654:6753#L229">StartProcess</a></h2>
<pre>func StartProcess(argv0 <a href="../builtin/index.html#string">string</a>, argv []<a href="../builtin/index.html#string">string</a>, attr *<a href="index.html#ProcAttr">ProcAttr</a>) (pid <a href="../builtin/index.html#int">int</a>, handle <a href="../builtin/index.html#uintptr">uintptr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<p>
StartProcess wraps ForkExec for package os.
</p>
<h2 id="Stat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=36046:36094#L1513">Stat</a></h2>
<pre>func Stat(path <a href="../builtin/index.html#string">string</a>, stat *<a href="index.html#Stat_t">Stat_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Statfs">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=36413:36464#L1529">Statfs</a></h2>
<pre>func Statfs(path <a href="../builtin/index.html#string">string</a>, buf *<a href="index.html#Statfs_t">Statfs_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="StringBytePtr">func <a href="http://localhost:6060/src/syscall/syscall.go?s=2429:2463#L53">StringBytePtr</a></h2>
<pre>func StringBytePtr(s <a href="../builtin/index.html#string">string</a>) *<a href="../builtin/index.html#byte">byte</a></pre>
<p>
StringBytePtr returns a pointer to a NUL-terminated array of bytes.
If s contains a NUL byte this function panics instead of returning
an error.
</p>
<p>
Deprecated: Use BytePtrFromString instead.
</p>
<h2 id="StringByteSlice">func <a href="http://localhost:6060/src/syscall/syscall.go?s=1705:1742#L26">StringByteSlice</a></h2>
<pre>func StringByteSlice(s <a href="../builtin/index.html#string">string</a>) []<a href="../builtin/index.html#byte">byte</a></pre>
<p>
StringByteSlice converts a string to a NUL-terminated []byte,
If s contains a NUL byte this function panics instead of
returning an error.
</p>
<p>
Deprecated: Use ByteSliceFromString instead.
</p>
<h2 id="StringSlicePtr">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=2962:3002#L61">StringSlicePtr</a></h2>
<pre>func StringSlicePtr(ss []<a href="../builtin/index.html#string">string</a>) []*<a href="../builtin/index.html#byte">byte</a></pre>
<p>
StringSlicePtr converts a slice of strings to a slice of pointers
to NUL-terminated byte arrays. If any string contains a NUL byte
this function panics instead of returning an error.
</p>
<p>
Deprecated: Use SlicePtrFromStrings instead.
</p>
<h2 id="Symlink">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2117:2173#L66">Symlink</a></h2>
<pre>func Symlink(oldpath <a href="../builtin/index.html#string">string</a>, newpath <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Sync">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22300:22311#L928">Sync</a></h2>
<pre>func Sync()</pre>
<h2 id="SyncFileRange">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=36784:36853#L1545">SyncFileRange</a></h2>
<pre>func SyncFileRange(fd <a href="../builtin/index.html#int">int</a>, off <a href="../builtin/index.html#int64">int64</a>, n <a href="../builtin/index.html#int64">int64</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Syscall">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=542:608#L18">Syscall</a></h2>
<pre>func Syscall(trap, a1, a2, a3 <a href="../builtin/index.html#uintptr">uintptr</a>) (r1, r2 <a href="../builtin/index.html#uintptr">uintptr</a>, err <a href="index.html#Errno">Errno</a>)</pre>
<h2 id="Syscall6">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=609:688#L19">Syscall6</a></h2>
<pre>func Syscall6(trap, a1, a2, a3, a4, a5, a6 <a href="../builtin/index.html#uintptr">uintptr</a>) (r1, r2 <a href="../builtin/index.html#uintptr">uintptr</a>, err <a href="index.html#Errno">Errno</a>)</pre>
<h2 id="Sysinfo">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22419:22460#L935">Sysinfo</a></h2>
<pre>func Sysinfo(info *<a href="index.html#Sysinfo_t">Sysinfo_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Tee">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22652:22719#L945">Tee</a></h2>
<pre>func Tee(rfd <a href="../builtin/index.html#int">int</a>, wfd <a href="../builtin/index.html#int">int</a>, len <a href="../builtin/index.html#int">int</a>, flags <a href="../builtin/index.html#int">int</a>) (n <a href="../builtin/index.html#int64">int64</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Tgkill">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22948:23002#L956">Tgkill</a></h2>
<pre>func Tgkill(tgid <a href="../builtin/index.html#int">int</a>, tid <a href="../builtin/index.html#int">int</a>, sig <a href="index.html#Signal">Signal</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Times">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23199:23246#L966">Times</a></h2>
<pre>func Times(tms *<a href="index.html#Tms">Tms</a>) (ticks <a href="../builtin/index.html#uintptr">uintptr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="TimespecToNsec">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3831:3869#L79">TimespecToNsec</a></h2>
<pre>func TimespecToNsec(ts <a href="index.html#Timespec">Timespec</a>) <a href="../builtin/index.html#int64">int64</a></pre>
<h2 id="TimevalToNsec">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4019:4055#L87">TimevalToNsec</a></h2>
<pre>func TimevalToNsec(tv <a href="index.html#Timeval">Timeval</a>) <a href="../builtin/index.html#int64">int64</a></pre>
<h2 id="Truncate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=37075:37127#L1555">Truncate</a></h2>
<pre>func Truncate(path <a href="../builtin/index.html#string">string</a>, length <a href="../builtin/index.html#int64">int64</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Umask">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23457:23491#L977">Umask</a></h2>
<pre>func Umask(mask <a href="../builtin/index.html#int">int</a>) (oldmask <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Uname">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23646:23682#L985">Uname</a></h2>
<pre>func Uname(buf *<a href="index.html#Utsname">Utsname</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="UnixCredentials">func <a href="http://localhost:6060/src/syscall/sockcmsg_linux.go?s=367:408#L4">UnixCredentials</a></h2>
<pre>func UnixCredentials(ucred *<a href="index.html#Ucred">Ucred</a>) []<a href="../builtin/index.html#byte">byte</a></pre>
<p>
UnixCredentials encodes credentials into a socket control message
for sending to another process. This can be used for
authentication.
</p>
<h2 id="UnixRights">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=2144:2178#L63">UnixRights</a></h2>
<pre>func UnixRights(fds ...<a href="../builtin/index.html#int">int</a>) []<a href="../builtin/index.html#byte">byte</a></pre>
<p>
UnixRights encodes a set of open file descriptors into a socket
control message for sending to another process.
</p>
<h2 id="Unlink">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2226:2256#L70">Unlink</a></h2>
<pre>func Unlink(path <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="Unlinkat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2362:2405#L76">Unlinkat</a></h2>
<pre>func Unlinkat(dirfd <a href="../builtin/index.html#int">int</a>, path <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="Unmount">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23871:23921#L995">Unmount</a></h2>
<pre>func Unmount(target <a href="../builtin/index.html#string">string</a>, flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Unsetenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=1407:1438#L47">Unsetenv</a></h2>
<pre>func Unsetenv(key <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
<h2 id="Unshare">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=24230:24265#L1011">Unshare</a></h2>
<pre>func Unshare(flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Ustat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=24439:24485#L1021">Ustat</a></h2>
<pre>func Ustat(dev <a href="../builtin/index.html#int">int</a>, ubuf *<a href="index.html#Ustat_t">Ustat_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Utime">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=24683:24732#L1031">Utime</a></h2>
<pre>func Utime(path <a href="../builtin/index.html#string">string</a>, buf *<a href="index.html#Utimbuf">Utimbuf</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Utimes">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2502:2552#L82">Utimes</a></h2>
<pre>func Utimes(path <a href="../builtin/index.html#string">string</a>, tv []<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="UtimesNano">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2729:2784#L91">UtimesNano</a></h2>
<pre>func UtimesNano(path <a href="../builtin/index.html#string">string</a>, ts []<a href="index.html#Timespec">Timespec</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Wait4">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=6205:6296#L244">Wait4</a></h2>
<pre>func Wait4(pid <a href="../builtin/index.html#int">int</a>, wstatus *<a href="index.html#WaitStatus">WaitStatus</a>, options <a href="../builtin/index.html#int">int</a>, rusage *<a href="index.html#Rusage">Rusage</a>) (wpid <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Write">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3896:3943#L166">Write</a></h2>
<pre>func Write(fd <a href="../builtin/index.html#int">int</a>, p []<a href="../builtin/index.html#byte">byte</a>) (n <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Cmsghdr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3508:3615#L234">Cmsghdr</a></h2>
<pre>type Cmsghdr struct {
Len <a href="../builtin/index.html#uint64">uint64</a>
Level <a href="../builtin/index.html#int32">int32</a>
Type <a href="../builtin/index.html#int32">int32</a>
X__cmsg_data [0]<a href="../builtin/index.html#uint8">uint8</a>
}</pre>
<h3 id="Cmsghdr.SetLen">func (*Cmsghdr) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4935:4974#L134">SetLen</a></h3>
<pre>func (cmsg *<a href="index.html#Cmsghdr">Cmsghdr</a>) SetLen(length <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Credential">type <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3984:4114#L104">Credential</a></h2>
<pre>type Credential struct {
Uid <a href="../builtin/index.html#uint32">uint32</a> <span class="comment">// User ID.</span>
Gid <a href="../builtin/index.html#uint32">uint32</a> <span class="comment">// Group ID.</span>
Groups []<a href="../builtin/index.html#uint32">uint32</a> <span class="comment">// Supplementary group IDs.</span>
}</pre>
<p>
Credential holds user and group identities to be assumed
by a child process started by StartProcess.
</p>
<h2 id="Dirent">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1903:2035#L124">Dirent</a></h2>
<pre>type Dirent struct {
Ino <a href="../builtin/index.html#uint64">uint64</a>
Off <a href="../builtin/index.html#int64">int64</a>
Reclen <a href="../builtin/index.html#uint16">uint16</a>
Type <a href="../builtin/index.html#uint8">uint8</a>
Name [256]<a href="../builtin/index.html#int8">int8</a>
Pad_cgo_0 [5]<a href="../builtin/index.html#byte">byte</a>
}</pre>
<h2 id="EpollEvent">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=10079:10148#L578">EpollEvent</a></h2>
<pre>type EpollEvent struct {
Events <a href="../builtin/index.html#uint32">uint32</a>
Fd <a href="../builtin/index.html#int32">int32</a>
Pad <a href="../builtin/index.html#int32">int32</a>
}</pre>
<h2 id="Errno">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2471:2489#L90">Errno</a></h2>
<pre>type Errno <a href="../builtin/index.html#uintptr">uintptr</a></pre>
<p>
An Errno is an unsigned number describing an error condition.
It implements the error interface. The zero Errno is by convention
a non-error, so code to convert from Errno to error should use:
</p>
<pre>err = nil
if errno != 0 {
err = errno
}
</pre>
<h3 id="Errno.Error">func (Errno) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2491:2520#L92">Error</a></h3>
<pre>func (e <a href="index.html#Errno">Errno</a>) Error() <a href="../builtin/index.html#string">string</a></pre>
<h3 id="Errno.Temporary">func (Errno) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2651:2682#L102">Temporary</a></h3>
<pre>func (e <a href="index.html#Errno">Errno</a>) Temporary() <a href="../builtin/index.html#bool">bool</a></pre>
<h3 id="Errno.Timeout">func (Errno) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2777:2806#L106">Timeout</a></h3>
<pre>func (e <a href="index.html#Errno">Errno</a>) Timeout() <a href="../builtin/index.html#bool">bool</a></pre>
<h2 id="FdSet">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9433:9470#L537">FdSet</a></h2>
<pre>type FdSet struct {
Bits [16]<a href="../builtin/index.html#int64">int64</a>
}</pre>
<h2 id="Flock_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2076:2222#L137">Flock_t</a></h2>
<pre>type Flock_t struct {
Type <a href="../builtin/index.html#int16">int16</a>
Whence <a href="../builtin/index.html#int16">int16</a>
Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
Start <a href="../builtin/index.html#int64">int64</a>
Len <a href="../builtin/index.html#int64">int64</a>
Pid <a href="../builtin/index.html#int32">int32</a>
Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
}</pre>
<h2 id="Fsid">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2037:2074#L133">Fsid</a></h2>
<pre>type Fsid struct {
X__val [2]<a href="../builtin/index.html#int32">int32</a>
}</pre>
<h2 id="ICMPv6Filter">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3871:3915#L257">ICMPv6Filter</a></h2>
<pre>type ICMPv6Filter struct {
Data [8]<a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h3 id="GetsockoptICMPv6Filter">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12609:12679#L501">GetsockoptICMPv6Filter</a></h3>
<pre>func GetsockoptICMPv6Filter(fd, level, opt <a href="../builtin/index.html#int">int</a>) (*<a href="index.html#ICMPv6Filter">ICMPv6Filter</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="IPMreq">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3037:3125#L206">IPMreq</a></h2>
<pre>type IPMreq struct {
Multiaddr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
Interface [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
}</pre>
<h3 id="GetsockoptIPMreq">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11761:11819#L473">GetsockoptIPMreq</a></h3>
<pre>func GetsockoptIPMreq(fd, level, opt <a href="../builtin/index.html#int">int</a>) (*<a href="index.html#IPMreq">IPMreq</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="IPMreqn">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3127:3233#L211">IPMreqn</a></h2>
<pre>type IPMreqn struct {
Multiaddr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
Address [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
Ifindex <a href="../builtin/index.html#int32">int32</a>
}</pre>
<h3 id="GetsockoptIPMreqn">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11965:12025#L480">GetsockoptIPMreqn</a></h3>
<pre>func GetsockoptIPMreqn(fd, level, opt <a href="../builtin/index.html#int">int</a>) (*<a href="index.html#IPMreqn">IPMreqn</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="IPv6MTUInfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3806:3869#L252">IPv6MTUInfo</a></h2>
<pre>type IPv6MTUInfo struct {
Addr <a href="index.html#RawSockaddrInet6">RawSockaddrInet6</a>
Mtu <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h3 id="GetsockoptIPv6MTUInfo">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12385:12453#L494">GetsockoptIPv6MTUInfo</a></h3>
<pre>func GetsockoptIPv6MTUInfo(fd, level, opt <a href="../builtin/index.html#int">int</a>) (*<a href="index.html#IPv6MTUInfo">IPv6MTUInfo</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="IPv6Mreq">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3235:3312#L217">IPv6Mreq</a></h2>
<pre>type IPv6Mreq struct {
Multiaddr [16]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in6_addr */</span>
Interface <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h3 id="GetsockoptIPv6Mreq">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12173:12235#L487">GetsockoptIPv6Mreq</a></h3>
<pre>func GetsockoptIPv6Mreq(fd, level, opt <a href="../builtin/index.html#int">int</a>) (*<a href="index.html#IPv6Mreq">IPv6Mreq</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="IfAddrmsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8213:8324#L452">IfAddrmsg</a></h2>
<pre>type IfAddrmsg struct {
Family <a href="../builtin/index.html#uint8">uint8</a>
Prefixlen <a href="../builtin/index.html#uint8">uint8</a>
Flags <a href="../builtin/index.html#uint8">uint8</a>
Scope <a href="../builtin/index.html#uint8">uint8</a>
Index <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="IfInfomsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8075:8211#L443">IfInfomsg</a></h2>
<pre>type IfInfomsg struct {
Family <a href="../builtin/index.html#uint8">uint8</a>
X__ifi_pad <a href="../builtin/index.html#uint8">uint8</a>
Type <a href="../builtin/index.html#uint16">uint16</a>
Index <a href="../builtin/index.html#int32">int32</a>
Flags <a href="../builtin/index.html#uint32">uint32</a>
Change <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="Inet4Pktinfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3617:3725#L241">Inet4Pktinfo</a></h2>
<pre>type Inet4Pktinfo struct {
Ifindex <a href="../builtin/index.html#int32">int32</a>
Spec_dst [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
Addr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
}</pre>
<h2 id="Inet6Pktinfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3727:3804#L247">Inet6Pktinfo</a></h2>
<pre>type Inet6Pktinfo struct {
Addr [16]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in6_addr */</span>
Ifindex <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="InotifyEvent">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8807:8911#L497">InotifyEvent</a></h2>
<pre>type InotifyEvent struct {
Wd <a href="../builtin/index.html#int32">int32</a>
Mask <a href="../builtin/index.html#uint32">uint32</a>
Cookie <a href="../builtin/index.html#uint32">uint32</a>
Len <a href="../builtin/index.html#uint32">uint32</a>
Name [0]<a href="../builtin/index.html#uint8">uint8</a>
}</pre>
<h2 id="Iovec">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2989:3035#L201">Iovec</a></h2>
<pre>type Iovec struct {
Base *<a href="../builtin/index.html#byte">byte</a>
Len <a href="../builtin/index.html#uint64">uint64</a>
}</pre>
<h3 id="Iovec.SetLen">func (*Iovec) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4778:4814#L126">SetLen</a></h3>
<pre>func (iov *<a href="index.html#Iovec">Iovec</a>) SetLen(length <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="Linger">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2937:2987#L196">Linger</a></h2>
<pre>type Linger struct {
Onoff <a href="../builtin/index.html#int32">int32</a>
Linger <a href="../builtin/index.html#int32">int32</a>
}</pre>
<h2 id="Msghdr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3314:3506#L222">Msghdr</a></h2>
<pre>type Msghdr struct {
Name *<a href="../builtin/index.html#byte">byte</a>
Namelen <a href="../builtin/index.html#uint32">uint32</a>
Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
Iov *<a href="index.html#Iovec">Iovec</a>
Iovlen <a href="../builtin/index.html#uint64">uint64</a>
Control *<a href="../builtin/index.html#byte">byte</a>
Controllen <a href="../builtin/index.html#uint64">uint64</a>
Flags <a href="../builtin/index.html#int32">int32</a>
Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
}</pre>
<h3 id="Msghdr.SetControllen">func (*Msghdr) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4846:4893#L130">SetControllen</a></h3>
<pre>func (msghdr *<a href="index.html#Msghdr">Msghdr</a>) SetControllen(length <a href="../builtin/index.html#int">int</a>)</pre>
<h2 id="NetlinkMessage">type <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=2797:2859#L99">NetlinkMessage</a></h2>
<pre>type NetlinkMessage struct {
Header <a href="index.html#NlMsghdr">NlMsghdr</a>
Data []<a href="../builtin/index.html#byte">byte</a>
}</pre>
<p>
NetlinkMessage represents a netlink message.
</p>
<h2 id="NetlinkRouteAttr">type <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=3667:3727#L129">NetlinkRouteAttr</a></h2>
<pre>type NetlinkRouteAttr struct {
Attr <a href="index.html#RtAttr">RtAttr</a>
Value []<a href="../builtin/index.html#byte">byte</a>
}</pre>
<p>
NetlinkRouteAttr represents a netlink route attribute.
</p>
<h2 id="NetlinkRouteRequest">type <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=670:739#L14">NetlinkRouteRequest</a></h2>
<pre>type NetlinkRouteRequest struct {
Header <a href="index.html#NlMsghdr">NlMsghdr</a>
Data <a href="index.html#RtGenmsg">RtGenmsg</a>
}</pre>
<p>
NetlinkRouteRequest represents a request message to receive routing
and link states from the kernel.
</p>
<h2 id="NlAttr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7975:8023#L433">NlAttr</a></h2>
<pre>type NlAttr struct {
Len <a href="../builtin/index.html#uint16">uint16</a>
Type <a href="../builtin/index.html#uint16">uint16</a>
}</pre>
<h2 id="NlMsgerr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7880:7933#L424">NlMsgerr</a></h2>
<pre>type NlMsgerr struct {
Error <a href="../builtin/index.html#int32">int32</a>
Msg <a href="index.html#NlMsghdr">NlMsghdr</a>
}</pre>
<h2 id="NlMsghdr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7784:7878#L416">NlMsghdr</a></h2>
<pre>type NlMsghdr struct {
Len <a href="../builtin/index.html#uint32">uint32</a>
Type <a href="../builtin/index.html#uint16">uint16</a>
Flags <a href="../builtin/index.html#uint16">uint16</a>
Seq <a href="../builtin/index.html#uint32">uint32</a>
Pid <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="ProcAttr">type <a href="http://localhost:6060/src/syscall/exec_unix.go?s=4211:4373#L112">ProcAttr</a></h2>
<pre>type ProcAttr struct {
Dir <a href="../builtin/index.html#string">string</a> <span class="comment">// Current working directory.</span>
Env []<a href="../builtin/index.html#string">string</a> <span class="comment">// Environment.</span>
Files []<a href="../builtin/index.html#uintptr">uintptr</a> <span class="comment">// File descriptors.</span>
Sys *<a href="index.html#SysProcAttr">SysProcAttr</a>
}</pre>
<p>
ProcAttr holds attributes that will be applied to a new process started
by StartProcess.
</p>
<h2 id="PtraceRegs">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8946:9431#L507">PtraceRegs</a></h2>
<pre>type PtraceRegs struct {
R15 <a href="../builtin/index.html#uint64">uint64</a>
R14 <a href="../builtin/index.html#uint64">uint64</a>
R13 <a href="../builtin/index.html#uint64">uint64</a>
R12 <a href="../builtin/index.html#uint64">uint64</a>
Rbp <a href="../builtin/index.html#uint64">uint64</a>
Rbx <a href="../builtin/index.html#uint64">uint64</a>
R11 <a href="../builtin/index.html#uint64">uint64</a>
R10 <a href="../builtin/index.html#uint64">uint64</a>
R9 <a href="../builtin/index.html#uint64">uint64</a>
R8 <a href="../builtin/index.html#uint64">uint64</a>
Rax <a href="../builtin/index.html#uint64">uint64</a>
Rcx <a href="../builtin/index.html#uint64">uint64</a>
Rdx <a href="../builtin/index.html#uint64">uint64</a>
Rsi <a href="../builtin/index.html#uint64">uint64</a>
Rdi <a href="../builtin/index.html#uint64">uint64</a>
Orig_rax <a href="../builtin/index.html#uint64">uint64</a>
Rip <a href="../builtin/index.html#uint64">uint64</a>
Cs <a href="../builtin/index.html#uint64">uint64</a>
Eflags <a href="../builtin/index.html#uint64">uint64</a>
Rsp <a href="../builtin/index.html#uint64">uint64</a>
Ss <a href="../builtin/index.html#uint64">uint64</a>
Fs_base <a href="../builtin/index.html#uint64">uint64</a>
Gs_base <a href="../builtin/index.html#uint64">uint64</a>
Ds <a href="../builtin/index.html#uint64">uint64</a>
Es <a href="../builtin/index.html#uint64">uint64</a>
Fs <a href="../builtin/index.html#uint64">uint64</a>
Gs <a href="../builtin/index.html#uint64">uint64</a>
}</pre>
<h3 id="PtraceRegs.PC">func (*PtraceRegs) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4673:4705#L122">PC</a></h3>
<pre>func (r *<a href="index.html#PtraceRegs">PtraceRegs</a>) PC() <a href="../builtin/index.html#uint64">uint64</a></pre>
<h3 id="PtraceRegs.SetPC">func (*PtraceRegs) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4724:4761#L124">SetPC</a></h3>
<pre>func (r *<a href="index.html#PtraceRegs">PtraceRegs</a>) SetPC(pc <a href="../builtin/index.html#uint64">uint64</a>)</pre>
<h2 id="RawSockaddr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2789:2848#L184">RawSockaddr</a></h2>
<pre>type RawSockaddr struct {
Family <a href="../builtin/index.html#uint16">uint16</a>
Data [14]<a href="../builtin/index.html#int8">int8</a>
}</pre>
<h2 id="RawSockaddrAny">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2850:2913#L189">RawSockaddrAny</a></h2>
<pre>type RawSockaddrAny struct {
Addr <a href="index.html#RawSockaddr">RawSockaddr</a>
Pad [96]<a href="../builtin/index.html#int8">int8</a>
}</pre>
<h2 id="RawSockaddrInet4">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2224:2333#L147">RawSockaddrInet4</a></h2>
<pre>type RawSockaddrInet4 struct {
Family <a href="../builtin/index.html#uint16">uint16</a>
Port <a href="../builtin/index.html#uint16">uint16</a>
Addr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
Zero [8]<a href="../builtin/index.html#uint8">uint8</a>
}</pre>
<h2 id="RawSockaddrInet6">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2335:2469#L154">RawSockaddrInet6</a></h2>
<pre>type RawSockaddrInet6 struct {
Family <a href="../builtin/index.html#uint16">uint16</a>
Port <a href="../builtin/index.html#uint16">uint16</a>
Flowinfo <a href="../builtin/index.html#uint32">uint32</a>
Addr [16]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in6_addr */</span>
Scope_id <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="RawSockaddrLinklayer">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2537:2691#L167">RawSockaddrLinklayer</a></h2>
<pre>type RawSockaddrLinklayer struct {
Family <a href="../builtin/index.html#uint16">uint16</a>
Protocol <a href="../builtin/index.html#uint16">uint16</a>
Ifindex <a href="../builtin/index.html#int32">int32</a>
Hatype <a href="../builtin/index.html#uint16">uint16</a>
Pkttype <a href="../builtin/index.html#uint8">uint8</a>
Halen <a href="../builtin/index.html#uint8">uint8</a>
Addr [8]<a href="../builtin/index.html#uint8">uint8</a>
}</pre>
<h2 id="RawSockaddrNetlink">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2693:2787#L177">RawSockaddrNetlink</a></h2>
<pre>type RawSockaddrNetlink struct {
Family <a href="../builtin/index.html#uint16">uint16</a>
Pad <a href="../builtin/index.html#uint16">uint16</a>
Pid <a href="../builtin/index.html#uint32">uint32</a>
Groups <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="RawSockaddrUnix">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2471:2535#L162">RawSockaddrUnix</a></h2>
<pre>type RawSockaddrUnix struct {
Family <a href="../builtin/index.html#uint16">uint16</a>
Path [108]<a href="../builtin/index.html#int8">int8</a>
}</pre>
<h2 id="Rlimit">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1324:1370#L84">Rlimit</a></h2>
<pre>type Rlimit struct {
Cur <a href="../builtin/index.html#uint64">uint64</a>
Max <a href="../builtin/index.html#uint64">uint64</a>
}</pre>
<h2 id="RtAttr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8025:8073#L438">RtAttr</a></h2>
<pre>type RtAttr struct {
Len <a href="../builtin/index.html#uint16">uint16</a>
Type <a href="../builtin/index.html#uint16">uint16</a>
}</pre>
<h2 id="RtGenmsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7935:7973#L429">RtGenmsg</a></h2>
<pre>type RtGenmsg struct {
Family <a href="../builtin/index.html#uint8">uint8</a>
}</pre>
<h2 id="RtMsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8326:8492#L460">RtMsg</a></h2>
<pre>type RtMsg struct {
Family <a href="../builtin/index.html#uint8">uint8</a>
Dst_len <a href="../builtin/index.html#uint8">uint8</a>
Src_len <a href="../builtin/index.html#uint8">uint8</a>
Tos <a href="../builtin/index.html#uint8">uint8</a>
Table <a href="../builtin/index.html#uint8">uint8</a>
Protocol <a href="../builtin/index.html#uint8">uint8</a>
Scope <a href="../builtin/index.html#uint8">uint8</a>
Type <a href="../builtin/index.html#uint8">uint8</a>
Flags <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="RtNexthop">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8494:8580#L472">RtNexthop</a></h2>
<pre>type RtNexthop struct {
Len <a href="../builtin/index.html#uint16">uint16</a>
Flags <a href="../builtin/index.html#uint8">uint8</a>
Hops <a href="../builtin/index.html#uint8">uint8</a>
Ifindex <a href="../builtin/index.html#int32">int32</a>
}</pre>
<h2 id="Rusage">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1040:1322#L65">Rusage</a></h2>
<pre>type Rusage struct {
Utime <a href="index.html#Timeval">Timeval</a>
Stime <a href="index.html#Timeval">Timeval</a>
Maxrss <a href="../builtin/index.html#int64">int64</a>
Ixrss <a href="../builtin/index.html#int64">int64</a>
Idrss <a href="../builtin/index.html#int64">int64</a>
Isrss <a href="../builtin/index.html#int64">int64</a>
Minflt <a href="../builtin/index.html#int64">int64</a>
Majflt <a href="../builtin/index.html#int64">int64</a>
Nswap <a href="../builtin/index.html#int64">int64</a>
Inblock <a href="../builtin/index.html#int64">int64</a>
Oublock <a href="../builtin/index.html#int64">int64</a>
Msgsnd <a href="../builtin/index.html#int64">int64</a>
Msgrcv <a href="../builtin/index.html#int64">int64</a>
Nsignals <a href="../builtin/index.html#int64">int64</a>
Nvcsw <a href="../builtin/index.html#int64">int64</a>
Nivcsw <a href="../builtin/index.html#int64">int64</a>
}</pre>
<h2 id="Signal">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3387:3402#L136">Signal</a></h2>
<pre>type Signal <a href="../builtin/index.html#int">int</a></pre>
<p>
A Signal is a number describing a process signal.
It implements the os.Signal interface.
</p>
<h3 id="Signal.Signal">func (Signal) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3404:3428#L138">Signal</a></h3>
<pre>func (s <a href="index.html#Signal">Signal</a>) Signal()</pre>
<h3 id="Signal.String">func (Signal) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3433:3464#L140">String</a></h3>
<pre>func (s <a href="index.html#Signal">Signal</a>) String() <a href="../builtin/index.html#string">string</a></pre>
<h2 id="SockFilter">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8642:8718#L484">SockFilter</a></h2>
<pre>type SockFilter struct {
Code <a href="../builtin/index.html#uint16">uint16</a>
Jt <a href="../builtin/index.html#uint8">uint8</a>
Jf <a href="../builtin/index.html#uint8">uint8</a>
K <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h3 id="LsfJump">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=321:366#L7">LsfJump</a></h3>
<pre>func LsfJump(code, k, jt, jf <a href="../builtin/index.html#int">int</a>) *<a href="index.html#SockFilter">SockFilter</a></pre>
<h3 id="LsfStmt">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=224:261#L3">LsfStmt</a></h3>
<pre>func LsfStmt(code, k <a href="../builtin/index.html#int">int</a>) *<a href="index.html#SockFilter">SockFilter</a></pre>
<h2 id="SockFprog">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8720:8805#L491">SockFprog</a></h2>
<pre>type SockFprog struct {
Len <a href="../builtin/index.html#uint16">uint16</a>
Pad_cgo_0 [6]<a href="../builtin/index.html#byte">byte</a>
Filter *<a href="index.html#SockFilter">SockFilter</a>
}</pre>
<h2 id="Sockaddr">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4319:4447#L184">Sockaddr</a></h2>
<pre>type Sockaddr interface {
<span class="comment">// contains filtered or unexported methods</span>
}</pre>
<h3 id="Getpeername">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4970:5019#L222">Getpeername</a></h3>
<pre>func Getpeername(fd <a href="../builtin/index.html#int">int</a>) (sa <a href="index.html#Sockaddr">Sockaddr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h3 id="Getsockname">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11363:11412#L458">Getsockname</a></h3>
<pre>func Getsockname(fd <a href="../builtin/index.html#int">int</a>) (sa <a href="index.html#Sockaddr">Sockaddr</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="SockaddrInet4">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4449:4525#L188">SockaddrInet4</a></h2>
<pre>type SockaddrInet4 struct {
Port <a href="../builtin/index.html#int">int</a>
Addr [4]<a href="../builtin/index.html#byte">byte</a>
<span class="comment">// contains filtered or unexported fields</span>
}</pre>
<h2 id="SockaddrInet6">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4527:4625#L194">SockaddrInet6</a></h2>
<pre>type SockaddrInet6 struct {
Port <a href="../builtin/index.html#int">int</a>
ZoneId <a href="../builtin/index.html#uint32">uint32</a>
Addr [16]<a href="../builtin/index.html#byte">byte</a>
<span class="comment">// contains filtered or unexported fields</span>
}</pre>
<h2 id="SockaddrLinklayer">type <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=7837:7999#L310">SockaddrLinklayer</a></h2>
<pre>type SockaddrLinklayer struct {
Protocol <a href="../builtin/index.html#uint16">uint16</a>
Ifindex <a href="../builtin/index.html#int">int</a>
Hatype <a href="../builtin/index.html#uint16">uint16</a>
Pkttype <a href="../builtin/index.html#uint8">uint8</a>
Halen <a href="../builtin/index.html#uint8">uint8</a>
Addr [8]<a href="../builtin/index.html#byte">byte</a>
<span class="comment">// contains filtered or unexported fields</span>
}</pre>
<h2 id="SockaddrNetlink">type <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=8462:8580#L336">SockaddrNetlink</a></h2>
<pre>type SockaddrNetlink struct {
Family <a href="../builtin/index.html#uint16">uint16</a>
Pad <a href="../builtin/index.html#uint16">uint16</a>
Pid <a href="../builtin/index.html#uint32">uint32</a>
Groups <a href="../builtin/index.html#uint32">uint32</a>
<span class="comment">// contains filtered or unexported fields</span>
}</pre>
<h2 id="SockaddrUnix">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4627:4690#L201">SockaddrUnix</a></h2>
<pre>type SockaddrUnix struct {
Name <a href="../builtin/index.html#string">string</a>
<span class="comment">// contains filtered or unexported fields</span>
}</pre>
<h2 id="SocketControlMessage">type <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=1246:1313#L31">SocketControlMessage</a></h2>
<pre>type SocketControlMessage struct {
Header <a href="index.html#Cmsghdr">Cmsghdr</a>
Data []<a href="../builtin/index.html#byte">byte</a>
}</pre>
<p>
SocketControlMessage represents a socket control message.
</p>
<h2 id="Stat_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1392:1688#L91">Stat_t</a></h2>
<pre>type Stat_t struct {
Dev <a href="../builtin/index.html#uint64">uint64</a>
Ino <a href="../builtin/index.html#uint64">uint64</a>
Nlink <a href="../builtin/index.html#uint64">uint64</a>
Mode <a href="../builtin/index.html#uint32">uint32</a>
Uid <a href="../builtin/index.html#uint32">uint32</a>
Gid <a href="../builtin/index.html#uint32">uint32</a>
X__pad0 <a href="../builtin/index.html#int32">int32</a>
Rdev <a href="../builtin/index.html#uint64">uint64</a>
Size <a href="../builtin/index.html#int64">int64</a>
Blksize <a href="../builtin/index.html#int64">int64</a>
Blocks <a href="../builtin/index.html#int64">int64</a>
Atim <a href="index.html#Timespec">Timespec</a>
Mtim <a href="index.html#Timespec">Timespec</a>
Ctim <a href="index.html#Timespec">Timespec</a>
X__unused [3]<a href="../builtin/index.html#int64">int64</a>
}</pre>
<h2 id="Statfs_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1690:1901#L109">Statfs_t</a></h2>
<pre>type Statfs_t struct {
Type <a href="../builtin/index.html#int64">int64</a>
Bsize <a href="../builtin/index.html#int64">int64</a>
Blocks <a href="../builtin/index.html#uint64">uint64</a>
Bfree <a href="../builtin/index.html#uint64">uint64</a>
Bavail <a href="../builtin/index.html#uint64">uint64</a>
Files <a href="../builtin/index.html#uint64">uint64</a>
Ffree <a href="../builtin/index.html#uint64">uint64</a>
Fsid <a href="index.html#Fsid">Fsid</a>
Namelen <a href="../builtin/index.html#int64">int64</a>
Frsize <a href="../builtin/index.html#int64">int64</a>
Flags <a href="../builtin/index.html#int64">int64</a>
Spare [4]<a href="../builtin/index.html#int64">int64</a>
}</pre>
<h2 id="SysProcAttr">type <a href="http://localhost:6060/src/syscall/exec_linux.go?s=452:1770#L11">SysProcAttr</a></h2>
<pre>type SysProcAttr struct {
Chroot <a href="../builtin/index.html#string">string</a> <span class="comment">// Chroot.</span>
Credential *<a href="index.html#Credential">Credential</a> <span class="comment">// Credential.</span>
Ptrace <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Enable tracing.</span>
Setsid <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Create session.</span>
Setpgid <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Set process group ID to Pgid, or, if Pgid == 0, to new pid.</span>
Setctty <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Set controlling terminal to fd Ctty (only meaningful if Setsid is set)</span>
Noctty <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Detach fd 0 from controlling terminal</span>
Ctty <a href="../builtin/index.html#int">int</a> <span class="comment">// Controlling TTY fd</span>
Foreground <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Place child&#39;s process group in foreground. (Implies Setpgid. Uses Ctty as fd of controlling TTY)</span>
Pgid <a href="../builtin/index.html#int">int</a> <span class="comment">// Child&#39;s process group ID if Setpgid.</span>
Pdeathsig <a href="index.html#Signal">Signal</a> <span class="comment">// Signal that the process will get when its parent dies (Linux only)</span>
Cloneflags <a href="../builtin/index.html#uintptr">uintptr</a> <span class="comment">// Flags for clone calls (Linux only)</span>
UidMappings []<a href="index.html#SysProcIDMap">SysProcIDMap</a> <span class="comment">// User ID mappings for user namespaces.</span>
GidMappings []<a href="index.html#SysProcIDMap">SysProcIDMap</a> <span class="comment">// Group ID mappings for user namespaces.</span>
<span class="comment">// GidMappingsEnableSetgroups enabling setgroups syscall.</span>
<span class="comment">// If false, then setgroups syscall will be disabled for the child process.</span>
<span class="comment">// This parameter is no-op if GidMappings == nil. Otherwise for unprivileged</span>
<span class="comment">// users this should be set to false for mappings work.</span>
GidMappingsEnableSetgroups <a href="../builtin/index.html#bool">bool</a>
}</pre>
<h2 id="SysProcIDMap">type <a href="http://localhost:6060/src/syscall/exec_linux.go?s=333:450#L5">SysProcIDMap</a></h2>
<pre>type SysProcIDMap struct {
ContainerID <a href="../builtin/index.html#int">int</a> <span class="comment">// Container ID.</span>
HostID <a href="../builtin/index.html#int">int</a> <span class="comment">// Host ID.</span>
Size <a href="../builtin/index.html#int">int</a> <span class="comment">// Size.</span>
}</pre>
<p>
SysProcIDMap holds Container ID to Host ID mappings used for User Namespaces in Linux.
See user_namespaces(7).
</p>
<h2 id="Sysinfo_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9472:9790#L541">Sysinfo_t</a></h2>
<pre>type Sysinfo_t struct {
Uptime <a href="../builtin/index.html#int64">int64</a>
Loads [3]<a href="../builtin/index.html#uint64">uint64</a>
Totalram <a href="../builtin/index.html#uint64">uint64</a>
Freeram <a href="../builtin/index.html#uint64">uint64</a>
Sharedram <a href="../builtin/index.html#uint64">uint64</a>
Bufferram <a href="../builtin/index.html#uint64">uint64</a>
Totalswap <a href="../builtin/index.html#uint64">uint64</a>
Freeswap <a href="../builtin/index.html#uint64">uint64</a>
Procs <a href="../builtin/index.html#uint16">uint16</a>
Pad <a href="../builtin/index.html#uint16">uint16</a>
Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
Totalhigh <a href="../builtin/index.html#uint64">uint64</a>
Freehigh <a href="../builtin/index.html#uint64">uint64</a>
Unit <a href="../builtin/index.html#uint32">uint32</a>
X_f [0]<a href="../builtin/index.html#byte">byte</a>
Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
}</pre>
<h2 id="TCPInfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3975:4706#L267">TCPInfo</a></h2>
<pre>type TCPInfo struct {
State <a href="../builtin/index.html#uint8">uint8</a>
Ca_state <a href="../builtin/index.html#uint8">uint8</a>
Retransmits <a href="../builtin/index.html#uint8">uint8</a>
Probes <a href="../builtin/index.html#uint8">uint8</a>
Backoff <a href="../builtin/index.html#uint8">uint8</a>
Options <a href="../builtin/index.html#uint8">uint8</a>
Pad_cgo_0 [2]<a href="../builtin/index.html#byte">byte</a>
Rto <a href="../builtin/index.html#uint32">uint32</a>
Ato <a href="../builtin/index.html#uint32">uint32</a>
Snd_mss <a href="../builtin/index.html#uint32">uint32</a>
Rcv_mss <a href="../builtin/index.html#uint32">uint32</a>
Unacked <a href="../builtin/index.html#uint32">uint32</a>
Sacked <a href="../builtin/index.html#uint32">uint32</a>
Lost <a href="../builtin/index.html#uint32">uint32</a>
Retrans <a href="../builtin/index.html#uint32">uint32</a>
Fackets <a href="../builtin/index.html#uint32">uint32</a>
Last_data_sent <a href="../builtin/index.html#uint32">uint32</a>
Last_ack_sent <a href="../builtin/index.html#uint32">uint32</a>
Last_data_recv <a href="../builtin/index.html#uint32">uint32</a>
Last_ack_recv <a href="../builtin/index.html#uint32">uint32</a>
Pmtu <a href="../builtin/index.html#uint32">uint32</a>
Rcv_ssthresh <a href="../builtin/index.html#uint32">uint32</a>
Rtt <a href="../builtin/index.html#uint32">uint32</a>
Rttvar <a href="../builtin/index.html#uint32">uint32</a>
Snd_ssthresh <a href="../builtin/index.html#uint32">uint32</a>
Snd_cwnd <a href="../builtin/index.html#uint32">uint32</a>
Advmss <a href="../builtin/index.html#uint32">uint32</a>
Reordering <a href="../builtin/index.html#uint32">uint32</a>
Rcv_rtt <a href="../builtin/index.html#uint32">uint32</a>
Rcv_space <a href="../builtin/index.html#uint32">uint32</a>
Total_retrans <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="Termios">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=10251:10439#L590">Termios</a></h2>
<pre>type Termios struct {
Iflag <a href="../builtin/index.html#uint32">uint32</a>
Oflag <a href="../builtin/index.html#uint32">uint32</a>
Cflag <a href="../builtin/index.html#uint32">uint32</a>
Lflag <a href="../builtin/index.html#uint32">uint32</a>
Line <a href="../builtin/index.html#uint8">uint8</a>
Cc [32]<a href="../builtin/index.html#uint8">uint8</a>
Pad_cgo_0 [3]<a href="../builtin/index.html#byte">byte</a>
Ispeed <a href="../builtin/index.html#uint32">uint32</a>
Ospeed <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h2 id="Time_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=889:906#L51">Time_t</a></h2>
<pre>type Time_t <a href="../builtin/index.html#int64">int64</a></pre>
<h3 id="Time">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3632:3675#L67">Time</a></h3>
<pre>func Time(t *<a href="index.html#Time_t">Time_t</a>) (tt <a href="index.html#Time_t">Time_t</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
<h2 id="Timespec">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=347:395#L14">Timespec</a></h2>
<pre>type Timespec struct {
Sec <a href="../builtin/index.html#int64">int64</a>
Nsec <a href="../builtin/index.html#int64">int64</a>
}</pre>
<h3 id="NsecToTimespec">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3917:3962#L81">NsecToTimespec</a></h3>
<pre>func NsecToTimespec(nsec <a href="../builtin/index.html#int64">int64</a>) (ts <a href="index.html#Timespec">Timespec</a>)</pre>
<h3 id="Timespec.Nano">func (*Timespec) <a href="http://localhost:6060/src/syscall/syscall.go?s=3120:3152#L78">Nano</a></h3>
<pre>func (ts *<a href="index.html#Timespec">Timespec</a>) Nano() <a href="../builtin/index.html#int64">int64</a></pre>
<h3 id="Timespec.Unix">func (*Timespec) <a href="http://localhost:6060/src/syscall/syscall.go?s=2926:2976#L70">Unix</a></h3>
<pre>func (ts *<a href="index.html#Timespec">Timespec</a>) Unix() (sec <a href="../builtin/index.html#int64">int64</a>, nsec <a href="../builtin/index.html#int64">int64</a>)</pre>
<h2 id="Timeval">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=397:444#L19">Timeval</a></h2>
<pre>type Timeval struct {
Sec <a href="../builtin/index.html#int64">int64</a>
Usec <a href="../builtin/index.html#int64">int64</a>
}</pre>
<h3 id="NsecToTimeval">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4107:4150#L89">NsecToTimeval</a></h3>
<pre>func NsecToTimeval(nsec <a href="../builtin/index.html#int64">int64</a>) (tv <a href="index.html#Timeval">Timeval</a>)</pre>
<h3 id="Timeval.Nano">func (*Timeval) <a href="http://localhost:6060/src/syscall/syscall.go?s=3201:3232#L82">Nano</a></h3>
<pre>func (tv *<a href="index.html#Timeval">Timeval</a>) Nano() <a href="../builtin/index.html#int64">int64</a></pre>
<h3 id="Timeval.Unix">func (*Timeval) <a href="http://localhost:6060/src/syscall/syscall.go?s=3020:3069#L74">Unix</a></h3>
<pre>func (tv *<a href="index.html#Timeval">Timeval</a>) Unix() (sec <a href="../builtin/index.html#int64">int64</a>, nsec <a href="../builtin/index.html#int64">int64</a>)</pre>
<h2 id="Timex">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=446:887#L24">Timex</a></h2>
<pre>type Timex struct {
Modes <a href="../builtin/index.html#uint32">uint32</a>
Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
Offset <a href="../builtin/index.html#int64">int64</a>
Freq <a href="../builtin/index.html#int64">int64</a>
Maxerror <a href="../builtin/index.html#int64">int64</a>
Esterror <a href="../builtin/index.html#int64">int64</a>
Status <a href="../builtin/index.html#int32">int32</a>
Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
Constant <a href="../builtin/index.html#int64">int64</a>
Precision <a href="../builtin/index.html#int64">int64</a>
Tolerance <a href="../builtin/index.html#int64">int64</a>
Time <a href="index.html#Timeval">Timeval</a>
Tick <a href="../builtin/index.html#int64">int64</a>
Ppsfreq <a href="../builtin/index.html#int64">int64</a>
Jitter <a href="../builtin/index.html#int64">int64</a>
Shift <a href="../builtin/index.html#int32">int32</a>
Pad_cgo_2 [4]<a href="../builtin/index.html#byte">byte</a>
Stabil <a href="../builtin/index.html#int64">int64</a>
Jitcnt <a href="../builtin/index.html#int64">int64</a>
Calcnt <a href="../builtin/index.html#int64">int64</a>
Errcnt <a href="../builtin/index.html#int64">int64</a>
Stbcnt <a href="../builtin/index.html#int64">int64</a>
Tai <a href="../builtin/index.html#int32">int32</a>
Pad_cgo_3 [44]<a href="../builtin/index.html#byte">byte</a>
}</pre>
<h2 id="Tms">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=908:983#L53">Tms</a></h2>
<pre>type Tms struct {
Utime <a href="../builtin/index.html#int64">int64</a>
Stime <a href="../builtin/index.html#int64">int64</a>
Cutime <a href="../builtin/index.html#int64">int64</a>
Cstime <a href="../builtin/index.html#int64">int64</a>
}</pre>
<h2 id="Ucred">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3917:3973#L261">Ucred</a></h2>
<pre>type Ucred struct {
Pid <a href="../builtin/index.html#int32">int32</a>
Uid <a href="../builtin/index.html#uint32">uint32</a>
Gid <a href="../builtin/index.html#uint32">uint32</a>
}</pre>
<h3 id="GetsockoptUcred">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12837:12893#L508">GetsockoptUcred</a></h3>
<pre>func GetsockoptUcred(fd, level, opt <a href="../builtin/index.html#int">int</a>) (*<a href="index.html#Ucred">Ucred</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<h3 id="ParseUnixCredentials">func <a href="http://localhost:6060/src/syscall/sockcmsg_linux.go?s=814:880#L17">ParseUnixCredentials</a></h3>
<pre>func ParseUnixCredentials(m *<a href="index.html#SocketControlMessage">SocketControlMessage</a>) (*<a href="index.html#Ucred">Ucred</a>, <a href="../builtin/index.html#error">error</a>)</pre>
<p>
ParseUnixCredentials decodes a socket control message that contains
credentials in a Ucred structure. To receive such a message, the
SO_PASSCRED option must be enabled on the socket.
</p>
<h2 id="Ustat_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9943:10077#L569">Ustat_t</a></h2>
<pre>type Ustat_t struct {
Tfree <a href="../builtin/index.html#int32">int32</a>
Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
Tinode <a href="../builtin/index.html#uint64">uint64</a>
Fname [6]<a href="../builtin/index.html#int8">int8</a>
Fpack [6]<a href="../builtin/index.html#int8">int8</a>
Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
}</pre>
<h2 id="Utimbuf">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=985:1038#L60">Utimbuf</a></h2>
<pre>type Utimbuf struct {
Actime <a href="../builtin/index.html#int64">int64</a>
Modtime <a href="../builtin/index.html#int64">int64</a>
}</pre>
<h2 id="Utsname">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9792:9941#L560">Utsname</a></h2>
<pre>type Utsname struct {
Sysname [65]<a href="../builtin/index.html#int8">int8</a>
Nodename [65]<a href="../builtin/index.html#int8">int8</a>
Release [65]<a href="../builtin/index.html#int8">int8</a>
Version [65]<a href="../builtin/index.html#int8">int8</a>
Machine [65]<a href="../builtin/index.html#int8">int8</a>
Domainname [65]<a href="../builtin/index.html#int8">int8</a>
}</pre>
<h2 id="WaitStatus">type <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=4802:4824#L185">WaitStatus</a></h2>
<pre>type WaitStatus <a href="../builtin/index.html#uint32">uint32</a></pre>
<h3 id="WaitStatus.Continued">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5547:5583#L210">Continued</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Continued() <a href="../builtin/index.html#bool">bool</a></pre>
<h3 id="WaitStatus.CoreDump">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5608:5643#L212">CoreDump</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) CoreDump() <a href="../builtin/index.html#bool">bool</a></pre>
<h3 id="WaitStatus.ExitStatus">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5684:5720#L214">ExitStatus</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) ExitStatus() <a href="../builtin/index.html#int">int</a></pre>
<h3 id="WaitStatus.Exited">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5333:5366#L204">Exited</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Exited() <a href="../builtin/index.html#bool">bool</a></pre>
<h3 id="WaitStatus.Signal">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5788:5823#L221">Signal</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Signal() <a href="index.html#Signal">Signal</a></pre>
<h3 id="WaitStatus.Signaled">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5396:5431#L206">Signaled</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Signaled() <a href="../builtin/index.html#bool">bool</a></pre>
<h3 id="WaitStatus.StopSignal">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5889:5928#L228">StopSignal</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) StopSignal() <a href="index.html#Signal">Signal</a></pre>
<h3 id="WaitStatus.Stopped">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5482:5516#L208">Stopped</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Stopped() <a href="../builtin/index.html#bool">bool</a></pre>
<h3 id="WaitStatus.TrapCause">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=6000:6035#L235">TrapCause</a></h3>
<pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) TrapCause() <a href="../builtin/index.html#int">int</a></pre>
<div id="footer">
Build version go1.6.<br>
Except as <a href="https://developers.google.com/site-policies#restrictions">noted</a>,
the content of this page is licensed under the
Creative Commons Attribution 3.0 License,
and code is licensed under a <a href="http://localhost:6060/LICENSE">BSD license</a>.<br>
<a href="http://localhost:6060/doc/tos.html">Terms of Service</a> |
<a href="http://www.google.com/intl/en/policies/privacy/">Privacy Policy</a>
</div>
</div><!-- .container -->
</div><!-- #page -->
<!-- TODO(adonovan): load these from <head> using "defer" attribute? -->
<script type="text/javascript" src="../../lib/godoc/jquery.js"></script>
<script type="text/javascript" src="../../lib/godoc/jquery.treeview.js"></script>
<script type="text/javascript" src="../../lib/godoc/jquery.treeview.edit.js"></script>
<script type="text/javascript" src="../../lib/godoc/godocs.js"></script>
</body>
</html>