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

8 years ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="theme-color" content="#375EAB">
  7. <title>syscall - The Go Programming Language</title>
  8. <link type="text/css" rel="stylesheet" href="../../lib/godoc/style.css">
  9. <link rel="stylesheet" href="../../lib/godoc/jquery.treeview.css">
  10. <script type="text/javascript">window.initFuncs = [];</script>
  11. </head>
  12. <body>
  13. <div id='lowframe' style="position: fixed; bottom: 0; left: 0; height: 0; width: 100%; border-top: thin solid grey; background-color: white; overflow: auto;">
  14. ...
  15. </div><!-- #lowframe -->
  16. <div id="topbar" class="wide"><div class="container">
  17. <div class="top-heading" id="heading-wide"><a href="http://localhost:6060/">The Go Programming Language</a></div>
  18. <div class="top-heading" id="heading-narrow"><a href="http://localhost:6060/">Go</a></div>
  19. <a href="index.html#" id="menu-button"><span id="menu-button-arrow">&#9661;</span></a>
  20. <form method="GET" action="http://localhost:6060/search">
  21. <div id="menu">
  22. <a href="http://localhost:6060/doc/">Documents</a>
  23. <a href="http://localhost:6060/pkg/">Packages</a>
  24. <a href="http://localhost:6060/project/">The Project</a>
  25. <a href="http://localhost:6060/help/">Help</a>
  26. <a href="http://localhost:6060/blog/">Blog</a>
  27. <input type="text" id="search" name="q" class="inactive" value="Search" placeholder="Search">
  28. </div>
  29. </form>
  30. </div></div>
  31. <div id="page" class="wide">
  32. <div class="container">
  33. <h1>Package syscall</h1>
  34. <div id="nav"></div>
  35. <!--
  36. Copyright 2009 The Go Authors. All rights reserved.
  37. Use of this source code is governed by a BSD-style
  38. license that can be found in the LICENSE file.
  39. -->
  40. <!--
  41. Note: Static (i.e., not template-generated) href and id
  42. attributes start with "pkg-" to make it impossible for
  43. them to conflict with generated attributes (some of which
  44. correspond to Go identifiers).
  45. -->
  46. <script type='text/javascript'>
  47. document.ANALYSIS_DATA = null;
  48. document.CALLGRAPH = null;
  49. </script>
  50. <div id="short-nav">
  51. <dl>
  52. <dd><code>import "syscall"</code></dd>
  53. </dl>
  54. <dl>
  55. <dd><a href="index.html#pkg-overview" class="overviewLink">Overview</a></dd>
  56. <dd><a href="index.html#pkg-index" class="indexLink">Index</a></dd>
  57. </dl>
  58. </div>
  59. <!-- The package's Name is printed as title by the top-level template -->
  60. <div id="pkg-overview" class="toggleVisible">
  61. <div class="collapsed">
  62. <h2 class="toggleButton" title="Click to show Overview section">Overview ▹</h2>
  63. </div>
  64. <div class="expanded">
  65. <h2 class="toggleButton" title="Click to hide Overview section">Overview ▾</h2>
  66. <p>
  67. Package syscall contains an interface to the low-level operating system
  68. primitives. The details vary depending on the underlying system, and
  69. by default, godoc will display the syscall documentation for the current
  70. system. If you want godoc to display syscall documentation for another
  71. system, set $GOOS and $GOARCH to the desired system. For example, if
  72. you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
  73. to freebsd and $GOARCH to arm.
  74. The primary use of syscall is inside other packages that provide a more
  75. portable interface to the system, such as &#34;os&#34;, &#34;time&#34; and &#34;net&#34;. Use
  76. those packages rather than this one if you can.
  77. For details of the functions and data types in this package consult
  78. the manuals for the appropriate operating system.
  79. These calls return err == nil to indicate success; otherwise
  80. err is an operating system error describing the failure.
  81. On most systems, that error has type syscall.Errno.
  82. </p>
  83. <p>
  84. NOTE: This package is locked down. Code outside the standard
  85. Go repository should be migrated to use the corresponding
  86. package in the golang.org/x/sys repository. That is also where updates
  87. required by new systems or versions should be applied.
  88. See <a href="https://golang.org/s/go1.4-syscall">https://golang.org/s/go1.4-syscall</a> for more information.
  89. </p>
  90. </div>
  91. </div>
  92. <div id="pkg-index" class="toggleVisible">
  93. <div class="collapsed">
  94. <h2 class="toggleButton" title="Click to show Index section">Index ▹</h2>
  95. </div>
  96. <div class="expanded">
  97. <h2 class="toggleButton" title="Click to hide Index section">Index ▾</h2>
  98. <!-- Table of contents for API; must be named manual-nav to turn off auto nav. -->
  99. <div id="manual-nav">
  100. <dl>
  101. <dd><a href="index.html#pkg-constants">Constants</a></dd>
  102. <dd><a href="index.html#pkg-variables">Variables</a></dd>
  103. <dd><a href="index.html#Accept">func Accept(fd int) (nfd int, sa Sockaddr, err error)</a></dd>
  104. <dd><a href="index.html#Accept4">func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error)</a></dd>
  105. <dd><a href="index.html#Access">func Access(path string, mode uint32) (err error)</a></dd>
  106. <dd><a href="index.html#Acct">func Acct(path string) (err error)</a></dd>
  107. <dd><a href="index.html#Adjtimex">func Adjtimex(buf *Timex) (state int, err error)</a></dd>
  108. <dd><a href="index.html#AttachLsf">func AttachLsf(fd int, i []SockFilter) error</a></dd>
  109. <dd><a href="index.html#Bind">func Bind(fd int, sa Sockaddr) (err error)</a></dd>
  110. <dd><a href="index.html#BindToDevice">func BindToDevice(fd int, device string) (err error)</a></dd>
  111. <dd><a href="index.html#BytePtrFromString">func BytePtrFromString(s string) (*byte, error)</a></dd>
  112. <dd><a href="index.html#ByteSliceFromString">func ByteSliceFromString(s string) ([]byte, error)</a></dd>
  113. <dd><a href="index.html#Chdir">func Chdir(path string) (err error)</a></dd>
  114. <dd><a href="index.html#Chmod">func Chmod(path string, mode uint32) (err error)</a></dd>
  115. <dd><a href="index.html#Chown">func Chown(path string, uid int, gid int) (err error)</a></dd>
  116. <dd><a href="index.html#Chroot">func Chroot(path string) (err error)</a></dd>
  117. <dd><a href="index.html#Clearenv">func Clearenv()</a></dd>
  118. <dd><a href="index.html#Close">func Close(fd int) (err error)</a></dd>
  119. <dd><a href="index.html#CloseOnExec">func CloseOnExec(fd int)</a></dd>
  120. <dd><a href="index.html#CmsgLen">func CmsgLen(datalen int) int</a></dd>
  121. <dd><a href="index.html#CmsgSpace">func CmsgSpace(datalen int) int</a></dd>
  122. <dd><a href="index.html#Connect">func Connect(fd int, sa Sockaddr) (err error)</a></dd>
  123. <dd><a href="index.html#Creat">func Creat(path string, mode uint32) (fd int, err error)</a></dd>
  124. <dd><a href="index.html#DetachLsf">func DetachLsf(fd int) error</a></dd>
  125. <dd><a href="index.html#Dup">func Dup(oldfd int) (fd int, err error)</a></dd>
  126. <dd><a href="index.html#Dup2">func Dup2(oldfd int, newfd int) (err error)</a></dd>
  127. <dd><a href="index.html#Dup3">func Dup3(oldfd int, newfd int, flags int) (err error)</a></dd>
  128. <dd><a href="index.html#Environ">func Environ() []string</a></dd>
  129. <dd><a href="index.html#EpollCreate">func EpollCreate(size int) (fd int, err error)</a></dd>
  130. <dd><a href="index.html#EpollCreate1">func EpollCreate1(flag int) (fd int, err error)</a></dd>
  131. <dd><a href="index.html#EpollCtl">func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error)</a></dd>
  132. <dd><a href="index.html#EpollWait">func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)</a></dd>
  133. <dd><a href="index.html#Exec">func Exec(argv0 string, argv []string, envv []string) (err error)</a></dd>
  134. <dd><a href="index.html#Exit">func Exit(code int)</a></dd>
  135. <dd><a href="index.html#Faccessat">func Faccessat(dirfd int, path string, mode uint32, flags int) (err error)</a></dd>
  136. <dd><a href="index.html#Fallocate">func Fallocate(fd int, mode uint32, off int64, len int64) (err error)</a></dd>
  137. <dd><a href="index.html#Fchdir">func Fchdir(fd int) (err error)</a></dd>
  138. <dd><a href="index.html#Fchmod">func Fchmod(fd int, mode uint32) (err error)</a></dd>
  139. <dd><a href="index.html#Fchmodat">func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)</a></dd>
  140. <dd><a href="index.html#Fchown">func Fchown(fd int, uid int, gid int) (err error)</a></dd>
  141. <dd><a href="index.html#Fchownat">func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)</a></dd>
  142. <dd><a href="index.html#FcntlFlock">func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error</a></dd>
  143. <dd><a href="index.html#Fdatasync">func Fdatasync(fd int) (err error)</a></dd>
  144. <dd><a href="index.html#Flock">func Flock(fd int, how int) (err error)</a></dd>
  145. <dd><a href="index.html#ForkExec">func ForkExec(argv0 string, argv []string, attr *ProcAttr) (pid int, err error)</a></dd>
  146. <dd><a href="index.html#Fstat">func Fstat(fd int, stat *Stat_t) (err error)</a></dd>
  147. <dd><a href="index.html#Fstatfs">func Fstatfs(fd int, buf *Statfs_t) (err error)</a></dd>
  148. <dd><a href="index.html#Fsync">func Fsync(fd int) (err error)</a></dd>
  149. <dd><a href="index.html#Ftruncate">func Ftruncate(fd int, length int64) (err error)</a></dd>
  150. <dd><a href="index.html#Futimes">func Futimes(fd int, tv []Timeval) (err error)</a></dd>
  151. <dd><a href="index.html#Futimesat">func Futimesat(dirfd int, path string, tv []Timeval) (err error)</a></dd>
  152. <dd><a href="index.html#Getcwd">func Getcwd(buf []byte) (n int, err error)</a></dd>
  153. <dd><a href="index.html#Getdents">func Getdents(fd int, buf []byte) (n int, err error)</a></dd>
  154. <dd><a href="index.html#Getegid">func Getegid() (egid int)</a></dd>
  155. <dd><a href="index.html#Getenv">func Getenv(key string) (value string, found bool)</a></dd>
  156. <dd><a href="index.html#Geteuid">func Geteuid() (euid int)</a></dd>
  157. <dd><a href="index.html#Getgid">func Getgid() (gid int)</a></dd>
  158. <dd><a href="index.html#Getgroups">func Getgroups() (gids []int, err error)</a></dd>
  159. <dd><a href="index.html#Getpagesize">func Getpagesize() int</a></dd>
  160. <dd><a href="index.html#Getpgid">func Getpgid(pid int) (pgid int, err error)</a></dd>
  161. <dd><a href="index.html#Getpgrp">func Getpgrp() (pid int)</a></dd>
  162. <dd><a href="index.html#Getpid">func Getpid() (pid int)</a></dd>
  163. <dd><a href="index.html#Getppid">func Getppid() (ppid int)</a></dd>
  164. <dd><a href="index.html#Getpriority">func Getpriority(which int, who int) (prio int, err error)</a></dd>
  165. <dd><a href="index.html#Getrlimit">func Getrlimit(resource int, rlim *Rlimit) (err error)</a></dd>
  166. <dd><a href="index.html#Getrusage">func Getrusage(who int, rusage *Rusage) (err error)</a></dd>
  167. <dd><a href="index.html#GetsockoptInet4Addr">func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error)</a></dd>
  168. <dd><a href="index.html#GetsockoptInt">func GetsockoptInt(fd, level, opt int) (value int, err error)</a></dd>
  169. <dd><a href="index.html#Gettid">func Gettid() (tid int)</a></dd>
  170. <dd><a href="index.html#Gettimeofday">func Gettimeofday(tv *Timeval) (err error)</a></dd>
  171. <dd><a href="index.html#Getuid">func Getuid() (uid int)</a></dd>
  172. <dd><a href="index.html#Getwd">func Getwd() (wd string, err error)</a></dd>
  173. <dd><a href="index.html#Getxattr">func Getxattr(path string, attr string, dest []byte) (sz int, err error)</a></dd>
  174. <dd><a href="index.html#InotifyAddWatch">func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc int, err error)</a></dd>
  175. <dd><a href="index.html#InotifyInit">func InotifyInit() (fd int, err error)</a></dd>
  176. <dd><a href="index.html#InotifyInit1">func InotifyInit1(flags int) (fd int, err error)</a></dd>
  177. <dd><a href="index.html#InotifyRmWatch">func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error)</a></dd>
  178. <dd><a href="index.html#Ioperm">func Ioperm(from int, num int, on int) (err error)</a></dd>
  179. <dd><a href="index.html#Iopl">func Iopl(level int) (err error)</a></dd>
  180. <dd><a href="index.html#Kill">func Kill(pid int, sig Signal) (err error)</a></dd>
  181. <dd><a href="index.html#Klogctl">func Klogctl(typ int, buf []byte) (n int, err error)</a></dd>
  182. <dd><a href="index.html#Lchown">func Lchown(path string, uid int, gid int) (err error)</a></dd>
  183. <dd><a href="index.html#Link">func Link(oldpath string, newpath string) (err error)</a></dd>
  184. <dd><a href="index.html#Listen">func Listen(s int, n int) (err error)</a></dd>
  185. <dd><a href="index.html#Listxattr">func Listxattr(path string, dest []byte) (sz int, err error)</a></dd>
  186. <dd><a href="index.html#LsfSocket">func LsfSocket(ifindex, proto int) (int, error)</a></dd>
  187. <dd><a href="index.html#Lstat">func Lstat(path string, stat *Stat_t) (err error)</a></dd>
  188. <dd><a href="index.html#Madvise">func Madvise(b []byte, advice int) (err error)</a></dd>
  189. <dd><a href="index.html#Mkdir">func Mkdir(path string, mode uint32) (err error)</a></dd>
  190. <dd><a href="index.html#Mkdirat">func Mkdirat(dirfd int, path string, mode uint32) (err error)</a></dd>
  191. <dd><a href="index.html#Mkfifo">func Mkfifo(path string, mode uint32) (err error)</a></dd>
  192. <dd><a href="index.html#Mknod">func Mknod(path string, mode uint32, dev int) (err error)</a></dd>
  193. <dd><a href="index.html#Mknodat">func Mknodat(dirfd int, path string, mode uint32, dev int) (err error)</a></dd>
  194. <dd><a href="index.html#Mlock">func Mlock(b []byte) (err error)</a></dd>
  195. <dd><a href="index.html#Mlockall">func Mlockall(flags int) (err error)</a></dd>
  196. <dd><a href="index.html#Mmap">func Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error)</a></dd>
  197. <dd><a href="index.html#Mount">func Mount(source string, target string, fstype string, flags uintptr, data string) (err error)</a></dd>
  198. <dd><a href="index.html#Mprotect">func Mprotect(b []byte, prot int) (err error)</a></dd>
  199. <dd><a href="index.html#Munlock">func Munlock(b []byte) (err error)</a></dd>
  200. <dd><a href="index.html#Munlockall">func Munlockall() (err error)</a></dd>
  201. <dd><a href="index.html#Munmap">func Munmap(b []byte) (err error)</a></dd>
  202. <dd><a href="index.html#Nanosleep">func Nanosleep(time *Timespec, leftover *Timespec) (err error)</a></dd>
  203. <dd><a href="index.html#NetlinkRIB">func NetlinkRIB(proto, family int) ([]byte, error)</a></dd>
  204. <dd><a href="index.html#Open">func Open(path string, mode int, perm uint32) (fd int, err error)</a></dd>
  205. <dd><a href="index.html#Openat">func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error)</a></dd>
  206. <dd><a href="index.html#ParseDirent">func ParseDirent(buf []byte, max int, names []string) (consumed int, count int, newnames []string)</a></dd>
  207. <dd><a href="index.html#ParseNetlinkMessage">func ParseNetlinkMessage(b []byte) ([]NetlinkMessage, error)</a></dd>
  208. <dd><a href="index.html#ParseNetlinkRouteAttr">func ParseNetlinkRouteAttr(m *NetlinkMessage) ([]NetlinkRouteAttr, error)</a></dd>
  209. <dd><a href="index.html#ParseSocketControlMessage">func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error)</a></dd>
  210. <dd><a href="index.html#ParseUnixRights">func ParseUnixRights(m *SocketControlMessage) ([]int, error)</a></dd>
  211. <dd><a href="index.html#Pause">func Pause() (err error)</a></dd>
  212. <dd><a href="index.html#Pipe">func Pipe(p []int) (err error)</a></dd>
  213. <dd><a href="index.html#Pipe2">func Pipe2(p []int, flags int) (err error)</a></dd>
  214. <dd><a href="index.html#PivotRoot">func PivotRoot(newroot string, putold string) (err error)</a></dd>
  215. <dd><a href="index.html#Pread">func Pread(fd int, p []byte, offset int64) (n int, err error)</a></dd>
  216. <dd><a href="index.html#PtraceAttach">func PtraceAttach(pid int) (err error)</a></dd>
  217. <dd><a href="index.html#PtraceCont">func PtraceCont(pid int, signal int) (err error)</a></dd>
  218. <dd><a href="index.html#PtraceDetach">func PtraceDetach(pid int) (err error)</a></dd>
  219. <dd><a href="index.html#PtraceGetEventMsg">func PtraceGetEventMsg(pid int) (msg uint, err error)</a></dd>
  220. <dd><a href="index.html#PtraceGetRegs">func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error)</a></dd>
  221. <dd><a href="index.html#PtracePeekData">func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err error)</a></dd>
  222. <dd><a href="index.html#PtracePeekText">func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error)</a></dd>
  223. <dd><a href="index.html#PtracePokeData">func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err error)</a></dd>
  224. <dd><a href="index.html#PtracePokeText">func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err error)</a></dd>
  225. <dd><a href="index.html#PtraceSetOptions">func PtraceSetOptions(pid int, options int) (err error)</a></dd>
  226. <dd><a href="index.html#PtraceSetRegs">func PtraceSetRegs(pid int, regs *PtraceRegs) (err error)</a></dd>
  227. <dd><a href="index.html#PtraceSingleStep">func PtraceSingleStep(pid int) (err error)</a></dd>
  228. <dd><a href="index.html#PtraceSyscall">func PtraceSyscall(pid int, signal int) (err error)</a></dd>
  229. <dd><a href="index.html#Pwrite">func Pwrite(fd int, p []byte, offset int64) (n int, err error)</a></dd>
  230. <dd><a href="index.html#RawSyscall">func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
  231. <dd><a href="index.html#RawSyscall6">func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
  232. <dd><a href="index.html#Read">func Read(fd int, p []byte) (n int, err error)</a></dd>
  233. <dd><a href="index.html#ReadDirent">func ReadDirent(fd int, buf []byte) (n int, err error)</a></dd>
  234. <dd><a href="index.html#Readlink">func Readlink(path string, buf []byte) (n int, err error)</a></dd>
  235. <dd><a href="index.html#Reboot">func Reboot(cmd int) (err error)</a></dd>
  236. <dd><a href="index.html#Recvfrom">func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err error)</a></dd>
  237. <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>
  238. <dd><a href="index.html#Removexattr">func Removexattr(path string, attr string) (err error)</a></dd>
  239. <dd><a href="index.html#Rename">func Rename(oldpath string, newpath string) (err error)</a></dd>
  240. <dd><a href="index.html#Renameat">func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)</a></dd>
  241. <dd><a href="index.html#Rmdir">func Rmdir(path string) error</a></dd>
  242. <dd><a href="index.html#Seek">func Seek(fd int, offset int64, whence int) (off int64, err error)</a></dd>
  243. <dd><a href="index.html#Select">func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)</a></dd>
  244. <dd><a href="index.html#Sendfile">func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)</a></dd>
  245. <dd><a href="index.html#Sendmsg">func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error)</a></dd>
  246. <dd><a href="index.html#SendmsgN">func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error)</a></dd>
  247. <dd><a href="index.html#Sendto">func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error)</a></dd>
  248. <dd><a href="index.html#SetLsfPromisc">func SetLsfPromisc(name string, m bool) error</a></dd>
  249. <dd><a href="index.html#SetNonblock">func SetNonblock(fd int, nonblocking bool) (err error)</a></dd>
  250. <dd><a href="index.html#Setdomainname">func Setdomainname(p []byte) (err error)</a></dd>
  251. <dd><a href="index.html#Setenv">func Setenv(key, value string) error</a></dd>
  252. <dd><a href="index.html#Setfsgid">func Setfsgid(gid int) (err error)</a></dd>
  253. <dd><a href="index.html#Setfsuid">func Setfsuid(uid int) (err error)</a></dd>
  254. <dd><a href="index.html#Setgid">func Setgid(gid int) (err error)</a></dd>
  255. <dd><a href="index.html#Setgroups">func Setgroups(gids []int) (err error)</a></dd>
  256. <dd><a href="index.html#Sethostname">func Sethostname(p []byte) (err error)</a></dd>
  257. <dd><a href="index.html#Setpgid">func Setpgid(pid int, pgid int) (err error)</a></dd>
  258. <dd><a href="index.html#Setpriority">func Setpriority(which int, who int, prio int) (err error)</a></dd>
  259. <dd><a href="index.html#Setregid">func Setregid(rgid int, egid int) (err error)</a></dd>
  260. <dd><a href="index.html#Setresgid">func Setresgid(rgid int, egid int, sgid int) (err error)</a></dd>
  261. <dd><a href="index.html#Setresuid">func Setresuid(ruid int, euid int, suid int) (err error)</a></dd>
  262. <dd><a href="index.html#Setreuid">func Setreuid(ruid int, euid int) (err error)</a></dd>
  263. <dd><a href="index.html#Setrlimit">func Setrlimit(resource int, rlim *Rlimit) (err error)</a></dd>
  264. <dd><a href="index.html#Setsid">func Setsid() (pid int, err error)</a></dd>
  265. <dd><a href="index.html#SetsockoptByte">func SetsockoptByte(fd, level, opt int, value byte) (err error)</a></dd>
  266. <dd><a href="index.html#SetsockoptICMPv6Filter">func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) error</a></dd>
  267. <dd><a href="index.html#SetsockoptIPMreq">func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error)</a></dd>
  268. <dd><a href="index.html#SetsockoptIPMreqn">func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error)</a></dd>
  269. <dd><a href="index.html#SetsockoptIPv6Mreq">func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error)</a></dd>
  270. <dd><a href="index.html#SetsockoptInet4Addr">func SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error)</a></dd>
  271. <dd><a href="index.html#SetsockoptInt">func SetsockoptInt(fd, level, opt int, value int) (err error)</a></dd>
  272. <dd><a href="index.html#SetsockoptLinger">func SetsockoptLinger(fd, level, opt int, l *Linger) (err error)</a></dd>
  273. <dd><a href="index.html#SetsockoptString">func SetsockoptString(fd, level, opt int, s string) (err error)</a></dd>
  274. <dd><a href="index.html#SetsockoptTimeval">func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error)</a></dd>
  275. <dd><a href="index.html#Settimeofday">func Settimeofday(tv *Timeval) (err error)</a></dd>
  276. <dd><a href="index.html#Setuid">func Setuid(uid int) (err error)</a></dd>
  277. <dd><a href="index.html#Setxattr">func Setxattr(path string, attr string, data []byte, flags int) (err error)</a></dd>
  278. <dd><a href="index.html#Shutdown">func Shutdown(fd int, how int) (err error)</a></dd>
  279. <dd><a href="index.html#SlicePtrFromStrings">func SlicePtrFromStrings(ss []string) ([]*byte, error)</a></dd>
  280. <dd><a href="index.html#Socket">func Socket(domain, typ, proto int) (fd int, err error)</a></dd>
  281. <dd><a href="index.html#Socketpair">func Socketpair(domain, typ, proto int) (fd [2]int, err error)</a></dd>
  282. <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>
  283. <dd><a href="index.html#StartProcess">func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle uintptr, err error)</a></dd>
  284. <dd><a href="index.html#Stat">func Stat(path string, stat *Stat_t) (err error)</a></dd>
  285. <dd><a href="index.html#Statfs">func Statfs(path string, buf *Statfs_t) (err error)</a></dd>
  286. <dd><a href="index.html#StringBytePtr">func StringBytePtr(s string) *byte</a></dd>
  287. <dd><a href="index.html#StringByteSlice">func StringByteSlice(s string) []byte</a></dd>
  288. <dd><a href="index.html#StringSlicePtr">func StringSlicePtr(ss []string) []*byte</a></dd>
  289. <dd><a href="index.html#Symlink">func Symlink(oldpath string, newpath string) (err error)</a></dd>
  290. <dd><a href="index.html#Sync">func Sync()</a></dd>
  291. <dd><a href="index.html#SyncFileRange">func SyncFileRange(fd int, off int64, n int64, flags int) (err error)</a></dd>
  292. <dd><a href="index.html#Syscall">func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
  293. <dd><a href="index.html#Syscall6">func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)</a></dd>
  294. <dd><a href="index.html#Sysinfo">func Sysinfo(info *Sysinfo_t) (err error)</a></dd>
  295. <dd><a href="index.html#Tee">func Tee(rfd int, wfd int, len int, flags int) (n int64, err error)</a></dd>
  296. <dd><a href="index.html#Tgkill">func Tgkill(tgid int, tid int, sig Signal) (err error)</a></dd>
  297. <dd><a href="index.html#Times">func Times(tms *Tms) (ticks uintptr, err error)</a></dd>
  298. <dd><a href="index.html#TimespecToNsec">func TimespecToNsec(ts Timespec) int64</a></dd>
  299. <dd><a href="index.html#TimevalToNsec">func TimevalToNsec(tv Timeval) int64</a></dd>
  300. <dd><a href="index.html#Truncate">func Truncate(path string, length int64) (err error)</a></dd>
  301. <dd><a href="index.html#Umask">func Umask(mask int) (oldmask int)</a></dd>
  302. <dd><a href="index.html#Uname">func Uname(buf *Utsname) (err error)</a></dd>
  303. <dd><a href="index.html#UnixCredentials">func UnixCredentials(ucred *Ucred) []byte</a></dd>
  304. <dd><a href="index.html#UnixRights">func UnixRights(fds ...int) []byte</a></dd>
  305. <dd><a href="index.html#Unlink">func Unlink(path string) error</a></dd>
  306. <dd><a href="index.html#Unlinkat">func Unlinkat(dirfd int, path string) error</a></dd>
  307. <dd><a href="index.html#Unmount">func Unmount(target string, flags int) (err error)</a></dd>
  308. <dd><a href="index.html#Unsetenv">func Unsetenv(key string) error</a></dd>
  309. <dd><a href="index.html#Unshare">func Unshare(flags int) (err error)</a></dd>
  310. <dd><a href="index.html#Ustat">func Ustat(dev int, ubuf *Ustat_t) (err error)</a></dd>
  311. <dd><a href="index.html#Utime">func Utime(path string, buf *Utimbuf) (err error)</a></dd>
  312. <dd><a href="index.html#Utimes">func Utimes(path string, tv []Timeval) (err error)</a></dd>
  313. <dd><a href="index.html#UtimesNano">func UtimesNano(path string, ts []Timespec) (err error)</a></dd>
  314. <dd><a href="index.html#Wait4">func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error)</a></dd>
  315. <dd><a href="index.html#Write">func Write(fd int, p []byte) (n int, err error)</a></dd>
  316. <dd><a href="index.html#Cmsghdr">type Cmsghdr</a></dd>
  317. <dd>&nbsp; &nbsp; <a href="index.html#Cmsghdr.SetLen">func (cmsg *Cmsghdr) SetLen(length int)</a></dd>
  318. <dd><a href="index.html#Credential">type Credential</a></dd>
  319. <dd><a href="index.html#Dirent">type Dirent</a></dd>
  320. <dd><a href="index.html#EpollEvent">type EpollEvent</a></dd>
  321. <dd><a href="index.html#Errno">type Errno</a></dd>
  322. <dd>&nbsp; &nbsp; <a href="index.html#Errno.Error">func (e Errno) Error() string</a></dd>
  323. <dd>&nbsp; &nbsp; <a href="index.html#Errno.Temporary">func (e Errno) Temporary() bool</a></dd>
  324. <dd>&nbsp; &nbsp; <a href="index.html#Errno.Timeout">func (e Errno) Timeout() bool</a></dd>
  325. <dd><a href="index.html#FdSet">type FdSet</a></dd>
  326. <dd><a href="index.html#Flock_t">type Flock_t</a></dd>
  327. <dd><a href="index.html#Fsid">type Fsid</a></dd>
  328. <dd><a href="index.html#ICMPv6Filter">type ICMPv6Filter</a></dd>
  329. <dd>&nbsp; &nbsp; <a href="index.html#GetsockoptICMPv6Filter">func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error)</a></dd>
  330. <dd><a href="index.html#IPMreq">type IPMreq</a></dd>
  331. <dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPMreq">func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error)</a></dd>
  332. <dd><a href="index.html#IPMreqn">type IPMreqn</a></dd>
  333. <dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPMreqn">func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error)</a></dd>
  334. <dd><a href="index.html#IPv6MTUInfo">type IPv6MTUInfo</a></dd>
  335. <dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPv6MTUInfo">func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error)</a></dd>
  336. <dd><a href="index.html#IPv6Mreq">type IPv6Mreq</a></dd>
  337. <dd>&nbsp; &nbsp; <a href="index.html#GetsockoptIPv6Mreq">func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error)</a></dd>
  338. <dd><a href="index.html#IfAddrmsg">type IfAddrmsg</a></dd>
  339. <dd><a href="index.html#IfInfomsg">type IfInfomsg</a></dd>
  340. <dd><a href="index.html#Inet4Pktinfo">type Inet4Pktinfo</a></dd>
  341. <dd><a href="index.html#Inet6Pktinfo">type Inet6Pktinfo</a></dd>
  342. <dd><a href="index.html#InotifyEvent">type InotifyEvent</a></dd>
  343. <dd><a href="index.html#Iovec">type Iovec</a></dd>
  344. <dd>&nbsp; &nbsp; <a href="index.html#Iovec.SetLen">func (iov *Iovec) SetLen(length int)</a></dd>
  345. <dd><a href="index.html#Linger">type Linger</a></dd>
  346. <dd><a href="index.html#Msghdr">type Msghdr</a></dd>
  347. <dd>&nbsp; &nbsp; <a href="index.html#Msghdr.SetControllen">func (msghdr *Msghdr) SetControllen(length int)</a></dd>
  348. <dd><a href="index.html#NetlinkMessage">type NetlinkMessage</a></dd>
  349. <dd><a href="index.html#NetlinkRouteAttr">type NetlinkRouteAttr</a></dd>
  350. <dd><a href="index.html#NetlinkRouteRequest">type NetlinkRouteRequest</a></dd>
  351. <dd><a href="index.html#NlAttr">type NlAttr</a></dd>
  352. <dd><a href="index.html#NlMsgerr">type NlMsgerr</a></dd>
  353. <dd><a href="index.html#NlMsghdr">type NlMsghdr</a></dd>
  354. <dd><a href="index.html#ProcAttr">type ProcAttr</a></dd>
  355. <dd><a href="index.html#PtraceRegs">type PtraceRegs</a></dd>
  356. <dd>&nbsp; &nbsp; <a href="index.html#PtraceRegs.PC">func (r *PtraceRegs) PC() uint64</a></dd>
  357. <dd>&nbsp; &nbsp; <a href="index.html#PtraceRegs.SetPC">func (r *PtraceRegs) SetPC(pc uint64)</a></dd>
  358. <dd><a href="index.html#RawSockaddr">type RawSockaddr</a></dd>
  359. <dd><a href="index.html#RawSockaddrAny">type RawSockaddrAny</a></dd>
  360. <dd><a href="index.html#RawSockaddrInet4">type RawSockaddrInet4</a></dd>
  361. <dd><a href="index.html#RawSockaddrInet6">type RawSockaddrInet6</a></dd>
  362. <dd><a href="index.html#RawSockaddrLinklayer">type RawSockaddrLinklayer</a></dd>
  363. <dd><a href="index.html#RawSockaddrNetlink">type RawSockaddrNetlink</a></dd>
  364. <dd><a href="index.html#RawSockaddrUnix">type RawSockaddrUnix</a></dd>
  365. <dd><a href="index.html#Rlimit">type Rlimit</a></dd>
  366. <dd><a href="index.html#RtAttr">type RtAttr</a></dd>
  367. <dd><a href="index.html#RtGenmsg">type RtGenmsg</a></dd>
  368. <dd><a href="index.html#RtMsg">type RtMsg</a></dd>
  369. <dd><a href="index.html#RtNexthop">type RtNexthop</a></dd>
  370. <dd><a href="index.html#Rusage">type Rusage</a></dd>
  371. <dd><a href="index.html#Signal">type Signal</a></dd>
  372. <dd>&nbsp; &nbsp; <a href="index.html#Signal.Signal">func (s Signal) Signal()</a></dd>
  373. <dd>&nbsp; &nbsp; <a href="index.html#Signal.String">func (s Signal) String() string</a></dd>
  374. <dd><a href="index.html#SockFilter">type SockFilter</a></dd>
  375. <dd>&nbsp; &nbsp; <a href="index.html#LsfJump">func LsfJump(code, k, jt, jf int) *SockFilter</a></dd>
  376. <dd>&nbsp; &nbsp; <a href="index.html#LsfStmt">func LsfStmt(code, k int) *SockFilter</a></dd>
  377. <dd><a href="index.html#SockFprog">type SockFprog</a></dd>
  378. <dd><a href="index.html#Sockaddr">type Sockaddr</a></dd>
  379. <dd>&nbsp; &nbsp; <a href="index.html#Getpeername">func Getpeername(fd int) (sa Sockaddr, err error)</a></dd>
  380. <dd>&nbsp; &nbsp; <a href="index.html#Getsockname">func Getsockname(fd int) (sa Sockaddr, err error)</a></dd>
  381. <dd><a href="index.html#SockaddrInet4">type SockaddrInet4</a></dd>
  382. <dd><a href="index.html#SockaddrInet6">type SockaddrInet6</a></dd>
  383. <dd><a href="index.html#SockaddrLinklayer">type SockaddrLinklayer</a></dd>
  384. <dd><a href="index.html#SockaddrNetlink">type SockaddrNetlink</a></dd>
  385. <dd><a href="index.html#SockaddrUnix">type SockaddrUnix</a></dd>
  386. <dd><a href="index.html#SocketControlMessage">type SocketControlMessage</a></dd>
  387. <dd><a href="index.html#Stat_t">type Stat_t</a></dd>
  388. <dd><a href="index.html#Statfs_t">type Statfs_t</a></dd>
  389. <dd><a href="index.html#SysProcAttr">type SysProcAttr</a></dd>
  390. <dd><a href="index.html#SysProcIDMap">type SysProcIDMap</a></dd>
  391. <dd><a href="index.html#Sysinfo_t">type Sysinfo_t</a></dd>
  392. <dd><a href="index.html#TCPInfo">type TCPInfo</a></dd>
  393. <dd><a href="index.html#Termios">type Termios</a></dd>
  394. <dd><a href="index.html#Time_t">type Time_t</a></dd>
  395. <dd>&nbsp; &nbsp; <a href="index.html#Time">func Time(t *Time_t) (tt Time_t, err error)</a></dd>
  396. <dd><a href="index.html#Timespec">type Timespec</a></dd>
  397. <dd>&nbsp; &nbsp; <a href="index.html#NsecToTimespec">func NsecToTimespec(nsec int64) (ts Timespec)</a></dd>
  398. <dd>&nbsp; &nbsp; <a href="index.html#Timespec.Nano">func (ts *Timespec) Nano() int64</a></dd>
  399. <dd>&nbsp; &nbsp; <a href="index.html#Timespec.Unix">func (ts *Timespec) Unix() (sec int64, nsec int64)</a></dd>
  400. <dd><a href="index.html#Timeval">type Timeval</a></dd>
  401. <dd>&nbsp; &nbsp; <a href="index.html#NsecToTimeval">func NsecToTimeval(nsec int64) (tv Timeval)</a></dd>
  402. <dd>&nbsp; &nbsp; <a href="index.html#Timeval.Nano">func (tv *Timeval) Nano() int64</a></dd>
  403. <dd>&nbsp; &nbsp; <a href="index.html#Timeval.Unix">func (tv *Timeval) Unix() (sec int64, nsec int64)</a></dd>
  404. <dd><a href="index.html#Timex">type Timex</a></dd>
  405. <dd><a href="index.html#Tms">type Tms</a></dd>
  406. <dd><a href="index.html#Ucred">type Ucred</a></dd>
  407. <dd>&nbsp; &nbsp; <a href="index.html#GetsockoptUcred">func GetsockoptUcred(fd, level, opt int) (*Ucred, error)</a></dd>
  408. <dd>&nbsp; &nbsp; <a href="index.html#ParseUnixCredentials">func ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error)</a></dd>
  409. <dd><a href="index.html#Ustat_t">type Ustat_t</a></dd>
  410. <dd><a href="index.html#Utimbuf">type Utimbuf</a></dd>
  411. <dd><a href="index.html#Utsname">type Utsname</a></dd>
  412. <dd><a href="index.html#WaitStatus">type WaitStatus</a></dd>
  413. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Continued">func (w WaitStatus) Continued() bool</a></dd>
  414. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.CoreDump">func (w WaitStatus) CoreDump() bool</a></dd>
  415. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.ExitStatus">func (w WaitStatus) ExitStatus() int</a></dd>
  416. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Exited">func (w WaitStatus) Exited() bool</a></dd>
  417. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Signal">func (w WaitStatus) Signal() Signal</a></dd>
  418. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Signaled">func (w WaitStatus) Signaled() bool</a></dd>
  419. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.StopSignal">func (w WaitStatus) StopSignal() Signal</a></dd>
  420. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.Stopped">func (w WaitStatus) Stopped() bool</a></dd>
  421. <dd>&nbsp; &nbsp; <a href="index.html#WaitStatus.TrapCause">func (w WaitStatus) TrapCause() int</a></dd>
  422. </dl>
  423. </div><!-- #manual-nav -->
  424. <h4>Package files</h4>
  425. <p>
  426. <span style="font-size:90%">
  427. <a href="http://localhost:6060/src/syscall/env_unix.go">env_unix.go</a>
  428. <a href="http://localhost:6060/src/syscall/exec_linux.go">exec_linux.go</a>
  429. <a href="http://localhost:6060/src/syscall/exec_unix.go">exec_unix.go</a>
  430. <a href="http://localhost:6060/src/syscall/flock.go">flock.go</a>
  431. <a href="http://localhost:6060/src/syscall/lsf_linux.go">lsf_linux.go</a>
  432. <a href="http://localhost:6060/src/syscall/msan0.go">msan0.go</a>
  433. <a href="http://localhost:6060/src/syscall/netlink_linux.go">netlink_linux.go</a>
  434. <a href="http://localhost:6060/src/syscall/sockcmsg_linux.go">sockcmsg_linux.go</a>
  435. <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go">sockcmsg_unix.go</a>
  436. <a href="http://localhost:6060/src/syscall/str.go">str.go</a>
  437. <a href="http://localhost:6060/src/syscall/syscall.go">syscall.go</a>
  438. <a href="http://localhost:6060/src/syscall/syscall_linux.go">syscall_linux.go</a>
  439. <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go">syscall_linux_amd64.go</a>
  440. <a href="http://localhost:6060/src/syscall/syscall_unix.go">syscall_unix.go</a>
  441. <a href="http://localhost:6060/src/syscall/zerrors_linux_amd64.go">zerrors_linux_amd64.go</a>
  442. <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go">zsyscall_linux_amd64.go</a>
  443. <a href="http://localhost:6060/src/syscall/zsysnum_linux_amd64.go">zsysnum_linux_amd64.go</a>
  444. <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go">ztypes_linux_amd64.go</a>
  445. </span>
  446. </p>
  447. </div><!-- .expanded -->
  448. </div><!-- #pkg-index -->
  449. <div id="pkg-callgraph" class="toggle" style="display: none">
  450. <div class="collapsed">
  451. <h2 class="toggleButton" title="Click to show Internal Call Graph section">Internal call graph ▹</h2>
  452. </div> <!-- .expanded -->
  453. <div class="expanded">
  454. <h2 class="toggleButton" title="Click to hide Internal Call Graph section">Internal call graph ▾</h2>
  455. <p>
  456. In the call graph viewer below, each node
  457. is a function belonging to this package
  458. and its children are the functions it
  459. calls&mdash;perhaps dynamically.
  460. </p>
  461. <p>
  462. The root nodes are the entry points of the
  463. package: functions that may be called from
  464. outside the package.
  465. There may be non-exported or anonymous
  466. functions among them if they are called
  467. dynamically from another package.
  468. </p>
  469. <p>
  470. Click a node to visit that function's source code.
  471. From there you can visit its callers by
  472. clicking its declaring <code>func</code>
  473. token.
  474. </p>
  475. <p>
  476. Functions may be omitted if they were
  477. determined to be unreachable in the
  478. particular programs or tests that were
  479. analyzed.
  480. </p>
  481. <!-- Zero means show all package entry points. -->
  482. <ul style="margin-left: 0.5in" id="callgraph-0" class="treeview"></ul>
  483. </div>
  484. </div> <!-- #pkg-callgraph -->
  485. <h2 id="pkg-constants">Constants</h2>
  486. <pre>const (
  487. <span id="AF_ALG">AF_ALG</span> = 0x26
  488. <span id="AF_APPLETALK">AF_APPLETALK</span> = 0x5
  489. <span id="AF_ASH">AF_ASH</span> = 0x12
  490. <span id="AF_ATMPVC">AF_ATMPVC</span> = 0x8
  491. <span id="AF_ATMSVC">AF_ATMSVC</span> = 0x14
  492. <span id="AF_AX25">AF_AX25</span> = 0x3
  493. <span id="AF_BLUETOOTH">AF_BLUETOOTH</span> = 0x1f
  494. <span id="AF_BRIDGE">AF_BRIDGE</span> = 0x7
  495. <span id="AF_CAIF">AF_CAIF</span> = 0x25
  496. <span id="AF_CAN">AF_CAN</span> = 0x1d
  497. <span id="AF_DECnet">AF_DECnet</span> = 0xc
  498. <span id="AF_ECONET">AF_ECONET</span> = 0x13
  499. <span id="AF_FILE">AF_FILE</span> = 0x1
  500. <span id="AF_IEEE802154">AF_IEEE802154</span> = 0x24
  501. <span id="AF_INET">AF_INET</span> = 0x2
  502. <span id="AF_INET6">AF_INET6</span> = 0xa
  503. <span id="AF_IPX">AF_IPX</span> = 0x4
  504. <span id="AF_IRDA">AF_IRDA</span> = 0x17
  505. <span id="AF_ISDN">AF_ISDN</span> = 0x22
  506. <span id="AF_IUCV">AF_IUCV</span> = 0x20
  507. <span id="AF_KEY">AF_KEY</span> = 0xf
  508. <span id="AF_LLC">AF_LLC</span> = 0x1a
  509. <span id="AF_LOCAL">AF_LOCAL</span> = 0x1
  510. <span id="AF_MAX">AF_MAX</span> = 0x27
  511. <span id="AF_NETBEUI">AF_NETBEUI</span> = 0xd
  512. <span id="AF_NETLINK">AF_NETLINK</span> = 0x10
  513. <span id="AF_NETROM">AF_NETROM</span> = 0x6
  514. <span id="AF_PACKET">AF_PACKET</span> = 0x11
  515. <span id="AF_PHONET">AF_PHONET</span> = 0x23
  516. <span id="AF_PPPOX">AF_PPPOX</span> = 0x18
  517. <span id="AF_RDS">AF_RDS</span> = 0x15
  518. <span id="AF_ROSE">AF_ROSE</span> = 0xb
  519. <span id="AF_ROUTE">AF_ROUTE</span> = 0x10
  520. <span id="AF_RXRPC">AF_RXRPC</span> = 0x21
  521. <span id="AF_SECURITY">AF_SECURITY</span> = 0xe
  522. <span id="AF_SNA">AF_SNA</span> = 0x16
  523. <span id="AF_TIPC">AF_TIPC</span> = 0x1e
  524. <span id="AF_UNIX">AF_UNIX</span> = 0x1
  525. <span id="AF_UNSPEC">AF_UNSPEC</span> = 0x0
  526. <span id="AF_WANPIPE">AF_WANPIPE</span> = 0x19
  527. <span id="AF_X25">AF_X25</span> = 0x9
  528. <span id="ARPHRD_ADAPT">ARPHRD_ADAPT</span> = 0x108
  529. <span id="ARPHRD_APPLETLK">ARPHRD_APPLETLK</span> = 0x8
  530. <span id="ARPHRD_ARCNET">ARPHRD_ARCNET</span> = 0x7
  531. <span id="ARPHRD_ASH">ARPHRD_ASH</span> = 0x30d
  532. <span id="ARPHRD_ATM">ARPHRD_ATM</span> = 0x13
  533. <span id="ARPHRD_AX25">ARPHRD_AX25</span> = 0x3
  534. <span id="ARPHRD_BIF">ARPHRD_BIF</span> = 0x307
  535. <span id="ARPHRD_CHAOS">ARPHRD_CHAOS</span> = 0x5
  536. <span id="ARPHRD_CISCO">ARPHRD_CISCO</span> = 0x201
  537. <span id="ARPHRD_CSLIP">ARPHRD_CSLIP</span> = 0x101
  538. <span id="ARPHRD_CSLIP6">ARPHRD_CSLIP6</span> = 0x103
  539. <span id="ARPHRD_DDCMP">ARPHRD_DDCMP</span> = 0x205
  540. <span id="ARPHRD_DLCI">ARPHRD_DLCI</span> = 0xf
  541. <span id="ARPHRD_ECONET">ARPHRD_ECONET</span> = 0x30e
  542. <span id="ARPHRD_EETHER">ARPHRD_EETHER</span> = 0x2
  543. <span id="ARPHRD_ETHER">ARPHRD_ETHER</span> = 0x1
  544. <span id="ARPHRD_EUI64">ARPHRD_EUI64</span> = 0x1b
  545. <span id="ARPHRD_FCAL">ARPHRD_FCAL</span> = 0x311
  546. <span id="ARPHRD_FCFABRIC">ARPHRD_FCFABRIC</span> = 0x313
  547. <span id="ARPHRD_FCPL">ARPHRD_FCPL</span> = 0x312
  548. <span id="ARPHRD_FCPP">ARPHRD_FCPP</span> = 0x310
  549. <span id="ARPHRD_FDDI">ARPHRD_FDDI</span> = 0x306
  550. <span id="ARPHRD_FRAD">ARPHRD_FRAD</span> = 0x302
  551. <span id="ARPHRD_HDLC">ARPHRD_HDLC</span> = 0x201
  552. <span id="ARPHRD_HIPPI">ARPHRD_HIPPI</span> = 0x30c
  553. <span id="ARPHRD_HWX25">ARPHRD_HWX25</span> = 0x110
  554. <span id="ARPHRD_IEEE1394">ARPHRD_IEEE1394</span> = 0x18
  555. <span id="ARPHRD_IEEE802">ARPHRD_IEEE802</span> = 0x6
  556. <span id="ARPHRD_IEEE80211">ARPHRD_IEEE80211</span> = 0x321
  557. <span id="ARPHRD_IEEE80211_PRISM">ARPHRD_IEEE80211_PRISM</span> = 0x322
  558. <span id="ARPHRD_IEEE80211_RADIOTAP">ARPHRD_IEEE80211_RADIOTAP</span> = 0x323
  559. <span id="ARPHRD_IEEE802154">ARPHRD_IEEE802154</span> = 0x324
  560. <span id="ARPHRD_IEEE802154_PHY">ARPHRD_IEEE802154_PHY</span> = 0x325
  561. <span id="ARPHRD_IEEE802_TR">ARPHRD_IEEE802_TR</span> = 0x320
  562. <span id="ARPHRD_INFINIBAND">ARPHRD_INFINIBAND</span> = 0x20
  563. <span id="ARPHRD_IPDDP">ARPHRD_IPDDP</span> = 0x309
  564. <span id="ARPHRD_IPGRE">ARPHRD_IPGRE</span> = 0x30a
  565. <span id="ARPHRD_IRDA">ARPHRD_IRDA</span> = 0x30f
  566. <span id="ARPHRD_LAPB">ARPHRD_LAPB</span> = 0x204
  567. <span id="ARPHRD_LOCALTLK">ARPHRD_LOCALTLK</span> = 0x305
  568. <span id="ARPHRD_LOOPBACK">ARPHRD_LOOPBACK</span> = 0x304
  569. <span id="ARPHRD_METRICOM">ARPHRD_METRICOM</span> = 0x17
  570. <span id="ARPHRD_NETROM">ARPHRD_NETROM</span> = 0x0
  571. <span id="ARPHRD_NONE">ARPHRD_NONE</span> = 0xfffe
  572. <span id="ARPHRD_PIMREG">ARPHRD_PIMREG</span> = 0x30b
  573. <span id="ARPHRD_PPP">ARPHRD_PPP</span> = 0x200
  574. <span id="ARPHRD_PRONET">ARPHRD_PRONET</span> = 0x4
  575. <span id="ARPHRD_RAWHDLC">ARPHRD_RAWHDLC</span> = 0x206
  576. <span id="ARPHRD_ROSE">ARPHRD_ROSE</span> = 0x10e
  577. <span id="ARPHRD_RSRVD">ARPHRD_RSRVD</span> = 0x104
  578. <span id="ARPHRD_SIT">ARPHRD_SIT</span> = 0x308
  579. <span id="ARPHRD_SKIP">ARPHRD_SKIP</span> = 0x303
  580. <span id="ARPHRD_SLIP">ARPHRD_SLIP</span> = 0x100
  581. <span id="ARPHRD_SLIP6">ARPHRD_SLIP6</span> = 0x102
  582. <span id="ARPHRD_TUNNEL">ARPHRD_TUNNEL</span> = 0x300
  583. <span id="ARPHRD_TUNNEL6">ARPHRD_TUNNEL6</span> = 0x301
  584. <span id="ARPHRD_VOID">ARPHRD_VOID</span> = 0xffff
  585. <span id="ARPHRD_X25">ARPHRD_X25</span> = 0x10f
  586. <span id="BPF_A">BPF_A</span> = 0x10
  587. <span id="BPF_ABS">BPF_ABS</span> = 0x20
  588. <span id="BPF_ADD">BPF_ADD</span> = 0x0
  589. <span id="BPF_ALU">BPF_ALU</span> = 0x4
  590. <span id="BPF_AND">BPF_AND</span> = 0x50
  591. <span id="BPF_B">BPF_B</span> = 0x10
  592. <span id="BPF_DIV">BPF_DIV</span> = 0x30
  593. <span id="BPF_H">BPF_H</span> = 0x8
  594. <span id="BPF_IMM">BPF_IMM</span> = 0x0
  595. <span id="BPF_IND">BPF_IND</span> = 0x40
  596. <span id="BPF_JA">BPF_JA</span> = 0x0
  597. <span id="BPF_JEQ">BPF_JEQ</span> = 0x10
  598. <span id="BPF_JGE">BPF_JGE</span> = 0x30
  599. <span id="BPF_JGT">BPF_JGT</span> = 0x20
  600. <span id="BPF_JMP">BPF_JMP</span> = 0x5
  601. <span id="BPF_JSET">BPF_JSET</span> = 0x40
  602. <span id="BPF_K">BPF_K</span> = 0x0
  603. <span id="BPF_LD">BPF_LD</span> = 0x0
  604. <span id="BPF_LDX">BPF_LDX</span> = 0x1
  605. <span id="BPF_LEN">BPF_LEN</span> = 0x80
  606. <span id="BPF_LSH">BPF_LSH</span> = 0x60
  607. <span id="BPF_MAJOR_VERSION">BPF_MAJOR_VERSION</span> = 0x1
  608. <span id="BPF_MAXINSNS">BPF_MAXINSNS</span> = 0x1000
  609. <span id="BPF_MEM">BPF_MEM</span> = 0x60
  610. <span id="BPF_MEMWORDS">BPF_MEMWORDS</span> = 0x10
  611. <span id="BPF_MINOR_VERSION">BPF_MINOR_VERSION</span> = 0x1
  612. <span id="BPF_MISC">BPF_MISC</span> = 0x7
  613. <span id="BPF_MSH">BPF_MSH</span> = 0xa0
  614. <span id="BPF_MUL">BPF_MUL</span> = 0x20
  615. <span id="BPF_NEG">BPF_NEG</span> = 0x80
  616. <span id="BPF_OR">BPF_OR</span> = 0x40
  617. <span id="BPF_RET">BPF_RET</span> = 0x6
  618. <span id="BPF_RSH">BPF_RSH</span> = 0x70
  619. <span id="BPF_ST">BPF_ST</span> = 0x2
  620. <span id="BPF_STX">BPF_STX</span> = 0x3
  621. <span id="BPF_SUB">BPF_SUB</span> = 0x10
  622. <span id="BPF_TAX">BPF_TAX</span> = 0x0
  623. <span id="BPF_TXA">BPF_TXA</span> = 0x80
  624. <span id="BPF_W">BPF_W</span> = 0x0
  625. <span id="BPF_X">BPF_X</span> = 0x8
  626. <span id="CLONE_CHILD_CLEARTID">CLONE_CHILD_CLEARTID</span> = 0x200000
  627. <span id="CLONE_CHILD_SETTID">CLONE_CHILD_SETTID</span> = 0x1000000
  628. <span id="CLONE_DETACHED">CLONE_DETACHED</span> = 0x400000
  629. <span id="CLONE_FILES">CLONE_FILES</span> = 0x400
  630. <span id="CLONE_FS">CLONE_FS</span> = 0x200
  631. <span id="CLONE_IO">CLONE_IO</span> = 0x80000000
  632. <span id="CLONE_NEWIPC">CLONE_NEWIPC</span> = 0x8000000
  633. <span id="CLONE_NEWNET">CLONE_NEWNET</span> = 0x40000000
  634. <span id="CLONE_NEWNS">CLONE_NEWNS</span> = 0x20000
  635. <span id="CLONE_NEWPID">CLONE_NEWPID</span> = 0x20000000
  636. <span id="CLONE_NEWUSER">CLONE_NEWUSER</span> = 0x10000000
  637. <span id="CLONE_NEWUTS">CLONE_NEWUTS</span> = 0x4000000
  638. <span id="CLONE_PARENT">CLONE_PARENT</span> = 0x8000
  639. <span id="CLONE_PARENT_SETTID">CLONE_PARENT_SETTID</span> = 0x100000
  640. <span id="CLONE_PTRACE">CLONE_PTRACE</span> = 0x2000
  641. <span id="CLONE_SETTLS">CLONE_SETTLS</span> = 0x80000
  642. <span id="CLONE_SIGHAND">CLONE_SIGHAND</span> = 0x800
  643. <span id="CLONE_SYSVSEM">CLONE_SYSVSEM</span> = 0x40000
  644. <span id="CLONE_THREAD">CLONE_THREAD</span> = 0x10000
  645. <span id="CLONE_UNTRACED">CLONE_UNTRACED</span> = 0x800000
  646. <span id="CLONE_VFORK">CLONE_VFORK</span> = 0x4000
  647. <span id="CLONE_VM">CLONE_VM</span> = 0x100
  648. <span id="DT_BLK">DT_BLK</span> = 0x6
  649. <span id="DT_CHR">DT_CHR</span> = 0x2
  650. <span id="DT_DIR">DT_DIR</span> = 0x4
  651. <span id="DT_FIFO">DT_FIFO</span> = 0x1
  652. <span id="DT_LNK">DT_LNK</span> = 0xa
  653. <span id="DT_REG">DT_REG</span> = 0x8
  654. <span id="DT_SOCK">DT_SOCK</span> = 0xc
  655. <span id="DT_UNKNOWN">DT_UNKNOWN</span> = 0x0
  656. <span id="DT_WHT">DT_WHT</span> = 0xe
  657. <span id="EPOLLERR">EPOLLERR</span> = 0x8
  658. <span id="EPOLLET">EPOLLET</span> = -0x80000000
  659. <span id="EPOLLHUP">EPOLLHUP</span> = 0x10
  660. <span id="EPOLLIN">EPOLLIN</span> = 0x1
  661. <span id="EPOLLMSG">EPOLLMSG</span> = 0x400
  662. <span id="EPOLLONESHOT">EPOLLONESHOT</span> = 0x40000000
  663. <span id="EPOLLOUT">EPOLLOUT</span> = 0x4
  664. <span id="EPOLLPRI">EPOLLPRI</span> = 0x2
  665. <span id="EPOLLRDBAND">EPOLLRDBAND</span> = 0x80
  666. <span id="EPOLLRDHUP">EPOLLRDHUP</span> = 0x2000
  667. <span id="EPOLLRDNORM">EPOLLRDNORM</span> = 0x40
  668. <span id="EPOLLWRBAND">EPOLLWRBAND</span> = 0x200
  669. <span id="EPOLLWRNORM">EPOLLWRNORM</span> = 0x100
  670. <span id="EPOLL_CLOEXEC">EPOLL_CLOEXEC</span> = 0x80000
  671. <span id="EPOLL_CTL_ADD">EPOLL_CTL_ADD</span> = 0x1
  672. <span id="EPOLL_CTL_DEL">EPOLL_CTL_DEL</span> = 0x2
  673. <span id="EPOLL_CTL_MOD">EPOLL_CTL_MOD</span> = 0x3
  674. <span id="EPOLL_NONBLOCK">EPOLL_NONBLOCK</span> = 0x800
  675. <span id="ETH_P_1588">ETH_P_1588</span> = 0x88f7
  676. <span id="ETH_P_8021Q">ETH_P_8021Q</span> = 0x8100
  677. <span id="ETH_P_802_2">ETH_P_802_2</span> = 0x4
  678. <span id="ETH_P_802_3">ETH_P_802_3</span> = 0x1
  679. <span id="ETH_P_AARP">ETH_P_AARP</span> = 0x80f3
  680. <span id="ETH_P_ALL">ETH_P_ALL</span> = 0x3
  681. <span id="ETH_P_AOE">ETH_P_AOE</span> = 0x88a2
  682. <span id="ETH_P_ARCNET">ETH_P_ARCNET</span> = 0x1a
  683. <span id="ETH_P_ARP">ETH_P_ARP</span> = 0x806
  684. <span id="ETH_P_ATALK">ETH_P_ATALK</span> = 0x809b
  685. <span id="ETH_P_ATMFATE">ETH_P_ATMFATE</span> = 0x8884
  686. <span id="ETH_P_ATMMPOA">ETH_P_ATMMPOA</span> = 0x884c
  687. <span id="ETH_P_AX25">ETH_P_AX25</span> = 0x2
  688. <span id="ETH_P_BPQ">ETH_P_BPQ</span> = 0x8ff
  689. <span id="ETH_P_CAIF">ETH_P_CAIF</span> = 0xf7
  690. <span id="ETH_P_CAN">ETH_P_CAN</span> = 0xc
  691. <span id="ETH_P_CONTROL">ETH_P_CONTROL</span> = 0x16
  692. <span id="ETH_P_CUST">ETH_P_CUST</span> = 0x6006
  693. <span id="ETH_P_DDCMP">ETH_P_DDCMP</span> = 0x6
  694. <span id="ETH_P_DEC">ETH_P_DEC</span> = 0x6000
  695. <span id="ETH_P_DIAG">ETH_P_DIAG</span> = 0x6005
  696. <span id="ETH_P_DNA_DL">ETH_P_DNA_DL</span> = 0x6001
  697. <span id="ETH_P_DNA_RC">ETH_P_DNA_RC</span> = 0x6002
  698. <span id="ETH_P_DNA_RT">ETH_P_DNA_RT</span> = 0x6003
  699. <span id="ETH_P_DSA">ETH_P_DSA</span> = 0x1b
  700. <span id="ETH_P_ECONET">ETH_P_ECONET</span> = 0x18
  701. <span id="ETH_P_EDSA">ETH_P_EDSA</span> = 0xdada
  702. <span id="ETH_P_FCOE">ETH_P_FCOE</span> = 0x8906
  703. <span id="ETH_P_FIP">ETH_P_FIP</span> = 0x8914
  704. <span id="ETH_P_HDLC">ETH_P_HDLC</span> = 0x19
  705. <span id="ETH_P_IEEE802154">ETH_P_IEEE802154</span> = 0xf6
  706. <span id="ETH_P_IEEEPUP">ETH_P_IEEEPUP</span> = 0xa00
  707. <span id="ETH_P_IEEEPUPAT">ETH_P_IEEEPUPAT</span> = 0xa01
  708. <span id="ETH_P_IP">ETH_P_IP</span> = 0x800
  709. <span id="ETH_P_IPV6">ETH_P_IPV6</span> = 0x86dd
  710. <span id="ETH_P_IPX">ETH_P_IPX</span> = 0x8137
  711. <span id="ETH_P_IRDA">ETH_P_IRDA</span> = 0x17
  712. <span id="ETH_P_LAT">ETH_P_LAT</span> = 0x6004
  713. <span id="ETH_P_LINK_CTL">ETH_P_LINK_CTL</span> = 0x886c
  714. <span id="ETH_P_LOCALTALK">ETH_P_LOCALTALK</span> = 0x9
  715. <span id="ETH_P_LOOP">ETH_P_LOOP</span> = 0x60
  716. <span id="ETH_P_MOBITEX">ETH_P_MOBITEX</span> = 0x15
  717. <span id="ETH_P_MPLS_MC">ETH_P_MPLS_MC</span> = 0x8848
  718. <span id="ETH_P_MPLS_UC">ETH_P_MPLS_UC</span> = 0x8847
  719. <span id="ETH_P_PAE">ETH_P_PAE</span> = 0x888e
  720. <span id="ETH_P_PAUSE">ETH_P_PAUSE</span> = 0x8808
  721. <span id="ETH_P_PHONET">ETH_P_PHONET</span> = 0xf5
  722. <span id="ETH_P_PPPTALK">ETH_P_PPPTALK</span> = 0x10
  723. <span id="ETH_P_PPP_DISC">ETH_P_PPP_DISC</span> = 0x8863
  724. <span id="ETH_P_PPP_MP">ETH_P_PPP_MP</span> = 0x8
  725. <span id="ETH_P_PPP_SES">ETH_P_PPP_SES</span> = 0x8864
  726. <span id="ETH_P_PUP">ETH_P_PUP</span> = 0x200
  727. <span id="ETH_P_PUPAT">ETH_P_PUPAT</span> = 0x201
  728. <span id="ETH_P_RARP">ETH_P_RARP</span> = 0x8035
  729. <span id="ETH_P_SCA">ETH_P_SCA</span> = 0x6007
  730. <span id="ETH_P_SLOW">ETH_P_SLOW</span> = 0x8809
  731. <span id="ETH_P_SNAP">ETH_P_SNAP</span> = 0x5
  732. <span id="ETH_P_TEB">ETH_P_TEB</span> = 0x6558
  733. <span id="ETH_P_TIPC">ETH_P_TIPC</span> = 0x88ca
  734. <span id="ETH_P_TRAILER">ETH_P_TRAILER</span> = 0x1c
  735. <span id="ETH_P_TR_802_2">ETH_P_TR_802_2</span> = 0x11
  736. <span id="ETH_P_WAN_PPP">ETH_P_WAN_PPP</span> = 0x7
  737. <span id="ETH_P_WCCP">ETH_P_WCCP</span> = 0x883e
  738. <span id="ETH_P_X25">ETH_P_X25</span> = 0x805
  739. <span id="FD_CLOEXEC">FD_CLOEXEC</span> = 0x1
  740. <span id="FD_SETSIZE">FD_SETSIZE</span> = 0x400
  741. <span id="F_DUPFD">F_DUPFD</span> = 0x0
  742. <span id="F_DUPFD_CLOEXEC">F_DUPFD_CLOEXEC</span> = 0x406
  743. <span id="F_EXLCK">F_EXLCK</span> = 0x4
  744. <span id="F_GETFD">F_GETFD</span> = 0x1
  745. <span id="F_GETFL">F_GETFL</span> = 0x3
  746. <span id="F_GETLEASE">F_GETLEASE</span> = 0x401
  747. <span id="F_GETLK">F_GETLK</span> = 0x5
  748. <span id="F_GETLK64">F_GETLK64</span> = 0x5
  749. <span id="F_GETOWN">F_GETOWN</span> = 0x9
  750. <span id="F_GETOWN_EX">F_GETOWN_EX</span> = 0x10
  751. <span id="F_GETPIPE_SZ">F_GETPIPE_SZ</span> = 0x408
  752. <span id="F_GETSIG">F_GETSIG</span> = 0xb
  753. <span id="F_LOCK">F_LOCK</span> = 0x1
  754. <span id="F_NOTIFY">F_NOTIFY</span> = 0x402
  755. <span id="F_OK">F_OK</span> = 0x0
  756. <span id="F_RDLCK">F_RDLCK</span> = 0x0
  757. <span id="F_SETFD">F_SETFD</span> = 0x2
  758. <span id="F_SETFL">F_SETFL</span> = 0x4
  759. <span id="F_SETLEASE">F_SETLEASE</span> = 0x400
  760. <span id="F_SETLK">F_SETLK</span> = 0x6
  761. <span id="F_SETLK64">F_SETLK64</span> = 0x6
  762. <span id="F_SETLKW">F_SETLKW</span> = 0x7
  763. <span id="F_SETLKW64">F_SETLKW64</span> = 0x7
  764. <span id="F_SETOWN">F_SETOWN</span> = 0x8
  765. <span id="F_SETOWN_EX">F_SETOWN_EX</span> = 0xf
  766. <span id="F_SETPIPE_SZ">F_SETPIPE_SZ</span> = 0x407
  767. <span id="F_SETSIG">F_SETSIG</span> = 0xa
  768. <span id="F_SHLCK">F_SHLCK</span> = 0x8
  769. <span id="F_TEST">F_TEST</span> = 0x3
  770. <span id="F_TLOCK">F_TLOCK</span> = 0x2
  771. <span id="F_ULOCK">F_ULOCK</span> = 0x0
  772. <span id="F_UNLCK">F_UNLCK</span> = 0x2
  773. <span id="F_WRLCK">F_WRLCK</span> = 0x1
  774. <span id="ICMPV6_FILTER">ICMPV6_FILTER</span> = 0x1
  775. <span id="IFA_F_DADFAILED">IFA_F_DADFAILED</span> = 0x8
  776. <span id="IFA_F_DEPRECATED">IFA_F_DEPRECATED</span> = 0x20
  777. <span id="IFA_F_HOMEADDRESS">IFA_F_HOMEADDRESS</span> = 0x10
  778. <span id="IFA_F_NODAD">IFA_F_NODAD</span> = 0x2
  779. <span id="IFA_F_OPTIMISTIC">IFA_F_OPTIMISTIC</span> = 0x4
  780. <span id="IFA_F_PERMANENT">IFA_F_PERMANENT</span> = 0x80
  781. <span id="IFA_F_SECONDARY">IFA_F_SECONDARY</span> = 0x1
  782. <span id="IFA_F_TEMPORARY">IFA_F_TEMPORARY</span> = 0x1
  783. <span id="IFA_F_TENTATIVE">IFA_F_TENTATIVE</span> = 0x40
  784. <span id="IFA_MAX">IFA_MAX</span> = 0x7
  785. <span id="IFF_ALLMULTI">IFF_ALLMULTI</span> = 0x200
  786. <span id="IFF_AUTOMEDIA">IFF_AUTOMEDIA</span> = 0x4000
  787. <span id="IFF_BROADCAST">IFF_BROADCAST</span> = 0x2
  788. <span id="IFF_DEBUG">IFF_DEBUG</span> = 0x4
  789. <span id="IFF_DYNAMIC">IFF_DYNAMIC</span> = 0x8000
  790. <span id="IFF_LOOPBACK">IFF_LOOPBACK</span> = 0x8
  791. <span id="IFF_MASTER">IFF_MASTER</span> = 0x400
  792. <span id="IFF_MULTICAST">IFF_MULTICAST</span> = 0x1000
  793. <span id="IFF_NOARP">IFF_NOARP</span> = 0x80
  794. <span id="IFF_NOTRAILERS">IFF_NOTRAILERS</span> = 0x20
  795. <span id="IFF_NO_PI">IFF_NO_PI</span> = 0x1000
  796. <span id="IFF_ONE_QUEUE">IFF_ONE_QUEUE</span> = 0x2000
  797. <span id="IFF_POINTOPOINT">IFF_POINTOPOINT</span> = 0x10
  798. <span id="IFF_PORTSEL">IFF_PORTSEL</span> = 0x2000
  799. <span id="IFF_PROMISC">IFF_PROMISC</span> = 0x100
  800. <span id="IFF_RUNNING">IFF_RUNNING</span> = 0x40
  801. <span id="IFF_SLAVE">IFF_SLAVE</span> = 0x800
  802. <span id="IFF_TAP">IFF_TAP</span> = 0x2
  803. <span id="IFF_TUN">IFF_TUN</span> = 0x1
  804. <span id="IFF_TUN_EXCL">IFF_TUN_EXCL</span> = 0x8000
  805. <span id="IFF_UP">IFF_UP</span> = 0x1
  806. <span id="IFF_VNET_HDR">IFF_VNET_HDR</span> = 0x4000
  807. <span id="IFNAMSIZ">IFNAMSIZ</span> = 0x10
  808. <span id="IN_ACCESS">IN_ACCESS</span> = 0x1
  809. <span id="IN_ALL_EVENTS">IN_ALL_EVENTS</span> = 0xfff
  810. <span id="IN_ATTRIB">IN_ATTRIB</span> = 0x4
  811. <span id="IN_CLASSA_HOST">IN_CLASSA_HOST</span> = 0xffffff
  812. <span id="IN_CLASSA_MAX">IN_CLASSA_MAX</span> = 0x80
  813. <span id="IN_CLASSA_NET">IN_CLASSA_NET</span> = 0xff000000
  814. <span id="IN_CLASSA_NSHIFT">IN_CLASSA_NSHIFT</span> = 0x18
  815. <span id="IN_CLASSB_HOST">IN_CLASSB_HOST</span> = 0xffff
  816. <span id="IN_CLASSB_MAX">IN_CLASSB_MAX</span> = 0x10000
  817. <span id="IN_CLASSB_NET">IN_CLASSB_NET</span> = 0xffff0000
  818. <span id="IN_CLASSB_NSHIFT">IN_CLASSB_NSHIFT</span> = 0x10
  819. <span id="IN_CLASSC_HOST">IN_CLASSC_HOST</span> = 0xff
  820. <span id="IN_CLASSC_NET">IN_CLASSC_NET</span> = 0xffffff00
  821. <span id="IN_CLASSC_NSHIFT">IN_CLASSC_NSHIFT</span> = 0x8
  822. <span id="IN_CLOEXEC">IN_CLOEXEC</span> = 0x80000
  823. <span id="IN_CLOSE">IN_CLOSE</span> = 0x18
  824. <span id="IN_CLOSE_NOWRITE">IN_CLOSE_NOWRITE</span> = 0x10
  825. <span id="IN_CLOSE_WRITE">IN_CLOSE_WRITE</span> = 0x8
  826. <span id="IN_CREATE">IN_CREATE</span> = 0x100
  827. <span id="IN_DELETE">IN_DELETE</span> = 0x200
  828. <span id="IN_DELETE_SELF">IN_DELETE_SELF</span> = 0x400
  829. <span id="IN_DONT_FOLLOW">IN_DONT_FOLLOW</span> = 0x2000000
  830. <span id="IN_EXCL_UNLINK">IN_EXCL_UNLINK</span> = 0x4000000
  831. <span id="IN_IGNORED">IN_IGNORED</span> = 0x8000
  832. <span id="IN_ISDIR">IN_ISDIR</span> = 0x40000000
  833. <span id="IN_LOOPBACKNET">IN_LOOPBACKNET</span> = 0x7f
  834. <span id="IN_MASK_ADD">IN_MASK_ADD</span> = 0x20000000
  835. <span id="IN_MODIFY">IN_MODIFY</span> = 0x2
  836. <span id="IN_MOVE">IN_MOVE</span> = 0xc0
  837. <span id="IN_MOVED_FROM">IN_MOVED_FROM</span> = 0x40
  838. <span id="IN_MOVED_TO">IN_MOVED_TO</span> = 0x80
  839. <span id="IN_MOVE_SELF">IN_MOVE_SELF</span> = 0x800
  840. <span id="IN_NONBLOCK">IN_NONBLOCK</span> = 0x800
  841. <span id="IN_ONESHOT">IN_ONESHOT</span> = 0x80000000
  842. <span id="IN_ONLYDIR">IN_ONLYDIR</span> = 0x1000000
  843. <span id="IN_OPEN">IN_OPEN</span> = 0x20
  844. <span id="IN_Q_OVERFLOW">IN_Q_OVERFLOW</span> = 0x4000
  845. <span id="IN_UNMOUNT">IN_UNMOUNT</span> = 0x2000
  846. <span id="IPPROTO_AH">IPPROTO_AH</span> = 0x33
  847. <span id="IPPROTO_COMP">IPPROTO_COMP</span> = 0x6c
  848. <span id="IPPROTO_DCCP">IPPROTO_DCCP</span> = 0x21
  849. <span id="IPPROTO_DSTOPTS">IPPROTO_DSTOPTS</span> = 0x3c
  850. <span id="IPPROTO_EGP">IPPROTO_EGP</span> = 0x8
  851. <span id="IPPROTO_ENCAP">IPPROTO_ENCAP</span> = 0x62
  852. <span id="IPPROTO_ESP">IPPROTO_ESP</span> = 0x32
  853. <span id="IPPROTO_FRAGMENT">IPPROTO_FRAGMENT</span> = 0x2c
  854. <span id="IPPROTO_GRE">IPPROTO_GRE</span> = 0x2f
  855. <span id="IPPROTO_HOPOPTS">IPPROTO_HOPOPTS</span> = 0x0
  856. <span id="IPPROTO_ICMP">IPPROTO_ICMP</span> = 0x1
  857. <span id="IPPROTO_ICMPV6">IPPROTO_ICMPV6</span> = 0x3a
  858. <span id="IPPROTO_IDP">IPPROTO_IDP</span> = 0x16
  859. <span id="IPPROTO_IGMP">IPPROTO_IGMP</span> = 0x2
  860. <span id="IPPROTO_IP">IPPROTO_IP</span> = 0x0
  861. <span id="IPPROTO_IPIP">IPPROTO_IPIP</span> = 0x4
  862. <span id="IPPROTO_IPV6">IPPROTO_IPV6</span> = 0x29
  863. <span id="IPPROTO_MTP">IPPROTO_MTP</span> = 0x5c
  864. <span id="IPPROTO_NONE">IPPROTO_NONE</span> = 0x3b
  865. <span id="IPPROTO_PIM">IPPROTO_PIM</span> = 0x67
  866. <span id="IPPROTO_PUP">IPPROTO_PUP</span> = 0xc
  867. <span id="IPPROTO_RAW">IPPROTO_RAW</span> = 0xff
  868. <span id="IPPROTO_ROUTING">IPPROTO_ROUTING</span> = 0x2b
  869. <span id="IPPROTO_RSVP">IPPROTO_RSVP</span> = 0x2e
  870. <span id="IPPROTO_SCTP">IPPROTO_SCTP</span> = 0x84
  871. <span id="IPPROTO_TCP">IPPROTO_TCP</span> = 0x6
  872. <span id="IPPROTO_TP">IPPROTO_TP</span> = 0x1d
  873. <span id="IPPROTO_UDP">IPPROTO_UDP</span> = 0x11
  874. <span id="IPPROTO_UDPLITE">IPPROTO_UDPLITE</span> = 0x88
  875. <span id="IPV6_2292DSTOPTS">IPV6_2292DSTOPTS</span> = 0x4
  876. <span id="IPV6_2292HOPLIMIT">IPV6_2292HOPLIMIT</span> = 0x8
  877. <span id="IPV6_2292HOPOPTS">IPV6_2292HOPOPTS</span> = 0x3
  878. <span id="IPV6_2292PKTINFO">IPV6_2292PKTINFO</span> = 0x2
  879. <span id="IPV6_2292PKTOPTIONS">IPV6_2292PKTOPTIONS</span> = 0x6
  880. <span id="IPV6_2292RTHDR">IPV6_2292RTHDR</span> = 0x5
  881. <span id="IPV6_ADDRFORM">IPV6_ADDRFORM</span> = 0x1
  882. <span id="IPV6_ADD_MEMBERSHIP">IPV6_ADD_MEMBERSHIP</span> = 0x14
  883. <span id="IPV6_AUTHHDR">IPV6_AUTHHDR</span> = 0xa
  884. <span id="IPV6_CHECKSUM">IPV6_CHECKSUM</span> = 0x7
  885. <span id="IPV6_DROP_MEMBERSHIP">IPV6_DROP_MEMBERSHIP</span> = 0x15
  886. <span id="IPV6_DSTOPTS">IPV6_DSTOPTS</span> = 0x3b
  887. <span id="IPV6_HOPLIMIT">IPV6_HOPLIMIT</span> = 0x34
  888. <span id="IPV6_HOPOPTS">IPV6_HOPOPTS</span> = 0x36
  889. <span id="IPV6_IPSEC_POLICY">IPV6_IPSEC_POLICY</span> = 0x22
  890. <span id="IPV6_JOIN_ANYCAST">IPV6_JOIN_ANYCAST</span> = 0x1b
  891. <span id="IPV6_JOIN_GROUP">IPV6_JOIN_GROUP</span> = 0x14
  892. <span id="IPV6_LEAVE_ANYCAST">IPV6_LEAVE_ANYCAST</span> = 0x1c
  893. <span id="IPV6_LEAVE_GROUP">IPV6_LEAVE_GROUP</span> = 0x15
  894. <span id="IPV6_MTU">IPV6_MTU</span> = 0x18
  895. <span id="IPV6_MTU_DISCOVER">IPV6_MTU_DISCOVER</span> = 0x17
  896. <span id="IPV6_MULTICAST_HOPS">IPV6_MULTICAST_HOPS</span> = 0x12
  897. <span id="IPV6_MULTICAST_IF">IPV6_MULTICAST_IF</span> = 0x11
  898. <span id="IPV6_MULTICAST_LOOP">IPV6_MULTICAST_LOOP</span> = 0x13
  899. <span id="IPV6_NEXTHOP">IPV6_NEXTHOP</span> = 0x9
  900. <span id="IPV6_PKTINFO">IPV6_PKTINFO</span> = 0x32
  901. <span id="IPV6_PMTUDISC_DO">IPV6_PMTUDISC_DO</span> = 0x2
  902. <span id="IPV6_PMTUDISC_DONT">IPV6_PMTUDISC_DONT</span> = 0x0
  903. <span id="IPV6_PMTUDISC_PROBE">IPV6_PMTUDISC_PROBE</span> = 0x3
  904. <span id="IPV6_PMTUDISC_WANT">IPV6_PMTUDISC_WANT</span> = 0x1
  905. <span id="IPV6_RECVDSTOPTS">IPV6_RECVDSTOPTS</span> = 0x3a
  906. <span id="IPV6_RECVERR">IPV6_RECVERR</span> = 0x19
  907. <span id="IPV6_RECVHOPLIMIT">IPV6_RECVHOPLIMIT</span> = 0x33
  908. <span id="IPV6_RECVHOPOPTS">IPV6_RECVHOPOPTS</span> = 0x35
  909. <span id="IPV6_RECVPKTINFO">IPV6_RECVPKTINFO</span> = 0x31
  910. <span id="IPV6_RECVRTHDR">IPV6_RECVRTHDR</span> = 0x38
  911. <span id="IPV6_RECVTCLASS">IPV6_RECVTCLASS</span> = 0x42
  912. <span id="IPV6_ROUTER_ALERT">IPV6_ROUTER_ALERT</span> = 0x16
  913. <span id="IPV6_RTHDR">IPV6_RTHDR</span> = 0x39
  914. <span id="IPV6_RTHDRDSTOPTS">IPV6_RTHDRDSTOPTS</span> = 0x37
  915. <span id="IPV6_RTHDR_LOOSE">IPV6_RTHDR_LOOSE</span> = 0x0
  916. <span id="IPV6_RTHDR_STRICT">IPV6_RTHDR_STRICT</span> = 0x1
  917. <span id="IPV6_RTHDR_TYPE_0">IPV6_RTHDR_TYPE_0</span> = 0x0
  918. <span id="IPV6_RXDSTOPTS">IPV6_RXDSTOPTS</span> = 0x3b
  919. <span id="IPV6_RXHOPOPTS">IPV6_RXHOPOPTS</span> = 0x36
  920. <span id="IPV6_TCLASS">IPV6_TCLASS</span> = 0x43
  921. <span id="IPV6_UNICAST_HOPS">IPV6_UNICAST_HOPS</span> = 0x10
  922. <span id="IPV6_V6ONLY">IPV6_V6ONLY</span> = 0x1a
  923. <span id="IPV6_XFRM_POLICY">IPV6_XFRM_POLICY</span> = 0x23
  924. <span id="IP_ADD_MEMBERSHIP">IP_ADD_MEMBERSHIP</span> = 0x23
  925. <span id="IP_ADD_SOURCE_MEMBERSHIP">IP_ADD_SOURCE_MEMBERSHIP</span> = 0x27
  926. <span id="IP_BLOCK_SOURCE">IP_BLOCK_SOURCE</span> = 0x26
  927. <span id="IP_DEFAULT_MULTICAST_LOOP">IP_DEFAULT_MULTICAST_LOOP</span> = 0x1
  928. <span id="IP_DEFAULT_MULTICAST_TTL">IP_DEFAULT_MULTICAST_TTL</span> = 0x1
  929. <span id="IP_DF">IP_DF</span> = 0x4000
  930. <span id="IP_DROP_MEMBERSHIP">IP_DROP_MEMBERSHIP</span> = 0x24
  931. <span id="IP_DROP_SOURCE_MEMBERSHIP">IP_DROP_SOURCE_MEMBERSHIP</span> = 0x28
  932. <span id="IP_FREEBIND">IP_FREEBIND</span> = 0xf
  933. <span id="IP_HDRINCL">IP_HDRINCL</span> = 0x3
  934. <span id="IP_IPSEC_POLICY">IP_IPSEC_POLICY</span> = 0x10
  935. <span id="IP_MAXPACKET">IP_MAXPACKET</span> = 0xffff
  936. <span id="IP_MAX_MEMBERSHIPS">IP_MAX_MEMBERSHIPS</span> = 0x14
  937. <span id="IP_MF">IP_MF</span> = 0x2000
  938. <span id="IP_MINTTL">IP_MINTTL</span> = 0x15
  939. <span id="IP_MSFILTER">IP_MSFILTER</span> = 0x29
  940. <span id="IP_MSS">IP_MSS</span> = 0x240
  941. <span id="IP_MTU">IP_MTU</span> = 0xe
  942. <span id="IP_MTU_DISCOVER">IP_MTU_DISCOVER</span> = 0xa
  943. <span id="IP_MULTICAST_IF">IP_MULTICAST_IF</span> = 0x20
  944. <span id="IP_MULTICAST_LOOP">IP_MULTICAST_LOOP</span> = 0x22
  945. <span id="IP_MULTICAST_TTL">IP_MULTICAST_TTL</span> = 0x21
  946. <span id="IP_OFFMASK">IP_OFFMASK</span> = 0x1fff
  947. <span id="IP_OPTIONS">IP_OPTIONS</span> = 0x4
  948. <span id="IP_ORIGDSTADDR">IP_ORIGDSTADDR</span> = 0x14
  949. <span id="IP_PASSSEC">IP_PASSSEC</span> = 0x12
  950. <span id="IP_PKTINFO">IP_PKTINFO</span> = 0x8
  951. <span id="IP_PKTOPTIONS">IP_PKTOPTIONS</span> = 0x9
  952. <span id="IP_PMTUDISC">IP_PMTUDISC</span> = 0xa
  953. <span id="IP_PMTUDISC_DO">IP_PMTUDISC_DO</span> = 0x2
  954. <span id="IP_PMTUDISC_DONT">IP_PMTUDISC_DONT</span> = 0x0
  955. <span id="IP_PMTUDISC_PROBE">IP_PMTUDISC_PROBE</span> = 0x3
  956. <span id="IP_PMTUDISC_WANT">IP_PMTUDISC_WANT</span> = 0x1
  957. <span id="IP_RECVERR">IP_RECVERR</span> = 0xb
  958. <span id="IP_RECVOPTS">IP_RECVOPTS</span> = 0x6
  959. <span id="IP_RECVORIGDSTADDR">IP_RECVORIGDSTADDR</span> = 0x14
  960. <span id="IP_RECVRETOPTS">IP_RECVRETOPTS</span> = 0x7
  961. <span id="IP_RECVTOS">IP_RECVTOS</span> = 0xd
  962. <span id="IP_RECVTTL">IP_RECVTTL</span> = 0xc
  963. <span id="IP_RETOPTS">IP_RETOPTS</span> = 0x7
  964. <span id="IP_RF">IP_RF</span> = 0x8000
  965. <span id="IP_ROUTER_ALERT">IP_ROUTER_ALERT</span> = 0x5
  966. <span id="IP_TOS">IP_TOS</span> = 0x1
  967. <span id="IP_TRANSPARENT">IP_TRANSPARENT</span> = 0x13
  968. <span id="IP_TTL">IP_TTL</span> = 0x2
  969. <span id="IP_UNBLOCK_SOURCE">IP_UNBLOCK_SOURCE</span> = 0x25
  970. <span id="IP_XFRM_POLICY">IP_XFRM_POLICY</span> = 0x11
  971. <span id="LINUX_REBOOT_CMD_CAD_OFF">LINUX_REBOOT_CMD_CAD_OFF</span> = 0x0
  972. <span id="LINUX_REBOOT_CMD_CAD_ON">LINUX_REBOOT_CMD_CAD_ON</span> = 0x89abcdef
  973. <span id="LINUX_REBOOT_CMD_HALT">LINUX_REBOOT_CMD_HALT</span> = 0xcdef0123
  974. <span id="LINUX_REBOOT_CMD_KEXEC">LINUX_REBOOT_CMD_KEXEC</span> = 0x45584543
  975. <span id="LINUX_REBOOT_CMD_POWER_OFF">LINUX_REBOOT_CMD_POWER_OFF</span> = 0x4321fedc
  976. <span id="LINUX_REBOOT_CMD_RESTART">LINUX_REBOOT_CMD_RESTART</span> = 0x1234567
  977. <span id="LINUX_REBOOT_CMD_RESTART2">LINUX_REBOOT_CMD_RESTART2</span> = 0xa1b2c3d4
  978. <span id="LINUX_REBOOT_CMD_SW_SUSPEND">LINUX_REBOOT_CMD_SW_SUSPEND</span> = 0xd000fce2
  979. <span id="LINUX_REBOOT_MAGIC1">LINUX_REBOOT_MAGIC1</span> = 0xfee1dead
  980. <span id="LINUX_REBOOT_MAGIC2">LINUX_REBOOT_MAGIC2</span> = 0x28121969
  981. <span id="LOCK_EX">LOCK_EX</span> = 0x2
  982. <span id="LOCK_NB">LOCK_NB</span> = 0x4
  983. <span id="LOCK_SH">LOCK_SH</span> = 0x1
  984. <span id="LOCK_UN">LOCK_UN</span> = 0x8
  985. <span id="MADV_DOFORK">MADV_DOFORK</span> = 0xb
  986. <span id="MADV_DONTFORK">MADV_DONTFORK</span> = 0xa
  987. <span id="MADV_DONTNEED">MADV_DONTNEED</span> = 0x4
  988. <span id="MADV_HUGEPAGE">MADV_HUGEPAGE</span> = 0xe
  989. <span id="MADV_HWPOISON">MADV_HWPOISON</span> = 0x64
  990. <span id="MADV_MERGEABLE">MADV_MERGEABLE</span> = 0xc
  991. <span id="MADV_NOHUGEPAGE">MADV_NOHUGEPAGE</span> = 0xf
  992. <span id="MADV_NORMAL">MADV_NORMAL</span> = 0x0
  993. <span id="MADV_RANDOM">MADV_RANDOM</span> = 0x1
  994. <span id="MADV_REMOVE">MADV_REMOVE</span> = 0x9
  995. <span id="MADV_SEQUENTIAL">MADV_SEQUENTIAL</span> = 0x2
  996. <span id="MADV_UNMERGEABLE">MADV_UNMERGEABLE</span> = 0xd
  997. <span id="MADV_WILLNEED">MADV_WILLNEED</span> = 0x3
  998. <span id="MAP_32BIT">MAP_32BIT</span> = 0x40
  999. <span id="MAP_ANON">MAP_ANON</span> = 0x20
  1000. <span id="MAP_ANONYMOUS">MAP_ANONYMOUS</span> = 0x20
  1001. <span id="MAP_DENYWRITE">MAP_DENYWRITE</span> = 0x800
  1002. <span id="MAP_EXECUTABLE">MAP_EXECUTABLE</span> = 0x1000
  1003. <span id="MAP_FILE">MAP_FILE</span> = 0x0
  1004. <span id="MAP_FIXED">MAP_FIXED</span> = 0x10
  1005. <span id="MAP_GROWSDOWN">MAP_GROWSDOWN</span> = 0x100
  1006. <span id="MAP_HUGETLB">MAP_HUGETLB</span> = 0x40000
  1007. <span id="MAP_LOCKED">MAP_LOCKED</span> = 0x2000
  1008. <span id="MAP_NONBLOCK">MAP_NONBLOCK</span> = 0x10000
  1009. <span id="MAP_NORESERVE">MAP_NORESERVE</span> = 0x4000
  1010. <span id="MAP_POPULATE">MAP_POPULATE</span> = 0x8000
  1011. <span id="MAP_PRIVATE">MAP_PRIVATE</span> = 0x2
  1012. <span id="MAP_SHARED">MAP_SHARED</span> = 0x1
  1013. <span id="MAP_STACK">MAP_STACK</span> = 0x20000
  1014. <span id="MAP_TYPE">MAP_TYPE</span> = 0xf
  1015. <span id="MCL_CURRENT">MCL_CURRENT</span> = 0x1
  1016. <span id="MCL_FUTURE">MCL_FUTURE</span> = 0x2
  1017. <span id="MNT_DETACH">MNT_DETACH</span> = 0x2
  1018. <span id="MNT_EXPIRE">MNT_EXPIRE</span> = 0x4
  1019. <span id="MNT_FORCE">MNT_FORCE</span> = 0x1
  1020. <span id="MSG_CMSG_CLOEXEC">MSG_CMSG_CLOEXEC</span> = 0x40000000
  1021. <span id="MSG_CONFIRM">MSG_CONFIRM</span> = 0x800
  1022. <span id="MSG_CTRUNC">MSG_CTRUNC</span> = 0x8
  1023. <span id="MSG_DONTROUTE">MSG_DONTROUTE</span> = 0x4
  1024. <span id="MSG_DONTWAIT">MSG_DONTWAIT</span> = 0x40
  1025. <span id="MSG_EOR">MSG_EOR</span> = 0x80
  1026. <span id="MSG_ERRQUEUE">MSG_ERRQUEUE</span> = 0x2000
  1027. <span id="MSG_FASTOPEN">MSG_FASTOPEN</span> = 0x20000000
  1028. <span id="MSG_FIN">MSG_FIN</span> = 0x200
  1029. <span id="MSG_MORE">MSG_MORE</span> = 0x8000
  1030. <span id="MSG_NOSIGNAL">MSG_NOSIGNAL</span> = 0x4000
  1031. <span id="MSG_OOB">MSG_OOB</span> = 0x1
  1032. <span id="MSG_PEEK">MSG_PEEK</span> = 0x2
  1033. <span id="MSG_PROXY">MSG_PROXY</span> = 0x10
  1034. <span id="MSG_RST">MSG_RST</span> = 0x1000
  1035. <span id="MSG_SYN">MSG_SYN</span> = 0x400
  1036. <span id="MSG_TRUNC">MSG_TRUNC</span> = 0x20
  1037. <span id="MSG_TRYHARD">MSG_TRYHARD</span> = 0x4
  1038. <span id="MSG_WAITALL">MSG_WAITALL</span> = 0x100
  1039. <span id="MSG_WAITFORONE">MSG_WAITFORONE</span> = 0x10000
  1040. <span id="MS_ACTIVE">MS_ACTIVE</span> = 0x40000000
  1041. <span id="MS_ASYNC">MS_ASYNC</span> = 0x1
  1042. <span id="MS_BIND">MS_BIND</span> = 0x1000
  1043. <span id="MS_DIRSYNC">MS_DIRSYNC</span> = 0x80
  1044. <span id="MS_INVALIDATE">MS_INVALIDATE</span> = 0x2
  1045. <span id="MS_I_VERSION">MS_I_VERSION</span> = 0x800000
  1046. <span id="MS_KERNMOUNT">MS_KERNMOUNT</span> = 0x400000
  1047. <span id="MS_MANDLOCK">MS_MANDLOCK</span> = 0x40
  1048. <span id="MS_MGC_MSK">MS_MGC_MSK</span> = 0xffff0000
  1049. <span id="MS_MGC_VAL">MS_MGC_VAL</span> = 0xc0ed0000
  1050. <span id="MS_MOVE">MS_MOVE</span> = 0x2000
  1051. <span id="MS_NOATIME">MS_NOATIME</span> = 0x400
  1052. <span id="MS_NODEV">MS_NODEV</span> = 0x4
  1053. <span id="MS_NODIRATIME">MS_NODIRATIME</span> = 0x800
  1054. <span id="MS_NOEXEC">MS_NOEXEC</span> = 0x8
  1055. <span id="MS_NOSUID">MS_NOSUID</span> = 0x2
  1056. <span id="MS_NOUSER">MS_NOUSER</span> = -0x80000000
  1057. <span id="MS_POSIXACL">MS_POSIXACL</span> = 0x10000
  1058. <span id="MS_PRIVATE">MS_PRIVATE</span> = 0x40000
  1059. <span id="MS_RDONLY">MS_RDONLY</span> = 0x1
  1060. <span id="MS_REC">MS_REC</span> = 0x4000
  1061. <span id="MS_RELATIME">MS_RELATIME</span> = 0x200000
  1062. <span id="MS_REMOUNT">MS_REMOUNT</span> = 0x20
  1063. <span id="MS_RMT_MASK">MS_RMT_MASK</span> = 0x800051
  1064. <span id="MS_SHARED">MS_SHARED</span> = 0x100000
  1065. <span id="MS_SILENT">MS_SILENT</span> = 0x8000
  1066. <span id="MS_SLAVE">MS_SLAVE</span> = 0x80000
  1067. <span id="MS_STRICTATIME">MS_STRICTATIME</span> = 0x1000000
  1068. <span id="MS_SYNC">MS_SYNC</span> = 0x4
  1069. <span id="MS_SYNCHRONOUS">MS_SYNCHRONOUS</span> = 0x10
  1070. <span id="MS_UNBINDABLE">MS_UNBINDABLE</span> = 0x20000
  1071. <span id="NAME_MAX">NAME_MAX</span> = 0xff
  1072. <span id="NETLINK_ADD_MEMBERSHIP">NETLINK_ADD_MEMBERSHIP</span> = 0x1
  1073. <span id="NETLINK_AUDIT">NETLINK_AUDIT</span> = 0x9
  1074. <span id="NETLINK_BROADCAST_ERROR">NETLINK_BROADCAST_ERROR</span> = 0x4
  1075. <span id="NETLINK_CONNECTOR">NETLINK_CONNECTOR</span> = 0xb
  1076. <span id="NETLINK_DNRTMSG">NETLINK_DNRTMSG</span> = 0xe
  1077. <span id="NETLINK_DROP_MEMBERSHIP">NETLINK_DROP_MEMBERSHIP</span> = 0x2
  1078. <span id="NETLINK_ECRYPTFS">NETLINK_ECRYPTFS</span> = 0x13
  1079. <span id="NETLINK_FIB_LOOKUP">NETLINK_FIB_LOOKUP</span> = 0xa
  1080. <span id="NETLINK_FIREWALL">NETLINK_FIREWALL</span> = 0x3
  1081. <span id="NETLINK_GENERIC">NETLINK_GENERIC</span> = 0x10
  1082. <span id="NETLINK_INET_DIAG">NETLINK_INET_DIAG</span> = 0x4
  1083. <span id="NETLINK_IP6_FW">NETLINK_IP6_FW</span> = 0xd
  1084. <span id="NETLINK_ISCSI">NETLINK_ISCSI</span> = 0x8
  1085. <span id="NETLINK_KOBJECT_UEVENT">NETLINK_KOBJECT_UEVENT</span> = 0xf
  1086. <span id="NETLINK_NETFILTER">NETLINK_NETFILTER</span> = 0xc
  1087. <span id="NETLINK_NFLOG">NETLINK_NFLOG</span> = 0x5
  1088. <span id="NETLINK_NO_ENOBUFS">NETLINK_NO_ENOBUFS</span> = 0x5
  1089. <span id="NETLINK_PKTINFO">NETLINK_PKTINFO</span> = 0x3
  1090. <span id="NETLINK_ROUTE">NETLINK_ROUTE</span> = 0x0
  1091. <span id="NETLINK_SCSITRANSPORT">NETLINK_SCSITRANSPORT</span> = 0x12
  1092. <span id="NETLINK_SELINUX">NETLINK_SELINUX</span> = 0x7
  1093. <span id="NETLINK_UNUSED">NETLINK_UNUSED</span> = 0x1
  1094. <span id="NETLINK_USERSOCK">NETLINK_USERSOCK</span> = 0x2
  1095. <span id="NETLINK_XFRM">NETLINK_XFRM</span> = 0x6
  1096. <span id="NLA_ALIGNTO">NLA_ALIGNTO</span> = 0x4
  1097. <span id="NLA_F_NESTED">NLA_F_NESTED</span> = 0x8000
  1098. <span id="NLA_F_NET_BYTEORDER">NLA_F_NET_BYTEORDER</span> = 0x4000
  1099. <span id="NLA_HDRLEN">NLA_HDRLEN</span> = 0x4
  1100. <span id="NLMSG_ALIGNTO">NLMSG_ALIGNTO</span> = 0x4
  1101. <span id="NLMSG_DONE">NLMSG_DONE</span> = 0x3
  1102. <span id="NLMSG_ERROR">NLMSG_ERROR</span> = 0x2
  1103. <span id="NLMSG_HDRLEN">NLMSG_HDRLEN</span> = 0x10
  1104. <span id="NLMSG_MIN_TYPE">NLMSG_MIN_TYPE</span> = 0x10
  1105. <span id="NLMSG_NOOP">NLMSG_NOOP</span> = 0x1
  1106. <span id="NLMSG_OVERRUN">NLMSG_OVERRUN</span> = 0x4
  1107. <span id="NLM_F_ACK">NLM_F_ACK</span> = 0x4
  1108. <span id="NLM_F_APPEND">NLM_F_APPEND</span> = 0x800
  1109. <span id="NLM_F_ATOMIC">NLM_F_ATOMIC</span> = 0x400
  1110. <span id="NLM_F_CREATE">NLM_F_CREATE</span> = 0x400
  1111. <span id="NLM_F_DUMP">NLM_F_DUMP</span> = 0x300
  1112. <span id="NLM_F_ECHO">NLM_F_ECHO</span> = 0x8
  1113. <span id="NLM_F_EXCL">NLM_F_EXCL</span> = 0x200
  1114. <span id="NLM_F_MATCH">NLM_F_MATCH</span> = 0x200
  1115. <span id="NLM_F_MULTI">NLM_F_MULTI</span> = 0x2
  1116. <span id="NLM_F_REPLACE">NLM_F_REPLACE</span> = 0x100
  1117. <span id="NLM_F_REQUEST">NLM_F_REQUEST</span> = 0x1
  1118. <span id="NLM_F_ROOT">NLM_F_ROOT</span> = 0x100
  1119. <span id="O_ACCMODE">O_ACCMODE</span> = 0x3
  1120. <span id="O_APPEND">O_APPEND</span> = 0x400
  1121. <span id="O_ASYNC">O_ASYNC</span> = 0x2000
  1122. <span id="O_CLOEXEC">O_CLOEXEC</span> = 0x80000
  1123. <span id="O_CREAT">O_CREAT</span> = 0x40
  1124. <span id="O_DIRECT">O_DIRECT</span> = 0x4000
  1125. <span id="O_DIRECTORY">O_DIRECTORY</span> = 0x10000
  1126. <span id="O_DSYNC">O_DSYNC</span> = 0x1000
  1127. <span id="O_EXCL">O_EXCL</span> = 0x80
  1128. <span id="O_FSYNC">O_FSYNC</span> = 0x101000
  1129. <span id="O_LARGEFILE">O_LARGEFILE</span> = 0x0
  1130. <span id="O_NDELAY">O_NDELAY</span> = 0x800
  1131. <span id="O_NOATIME">O_NOATIME</span> = 0x40000
  1132. <span id="O_NOCTTY">O_NOCTTY</span> = 0x100
  1133. <span id="O_NOFOLLOW">O_NOFOLLOW</span> = 0x20000
  1134. <span id="O_NONBLOCK">O_NONBLOCK</span> = 0x800
  1135. <span id="O_RDONLY">O_RDONLY</span> = 0x0
  1136. <span id="O_RDWR">O_RDWR</span> = 0x2
  1137. <span id="O_RSYNC">O_RSYNC</span> = 0x101000
  1138. <span id="O_SYNC">O_SYNC</span> = 0x101000
  1139. <span id="O_TRUNC">O_TRUNC</span> = 0x200
  1140. <span id="O_WRONLY">O_WRONLY</span> = 0x1
  1141. <span id="PACKET_ADD_MEMBERSHIP">PACKET_ADD_MEMBERSHIP</span> = 0x1
  1142. <span id="PACKET_BROADCAST">PACKET_BROADCAST</span> = 0x1
  1143. <span id="PACKET_DROP_MEMBERSHIP">PACKET_DROP_MEMBERSHIP</span> = 0x2
  1144. <span id="PACKET_FASTROUTE">PACKET_FASTROUTE</span> = 0x6
  1145. <span id="PACKET_HOST">PACKET_HOST</span> = 0x0
  1146. <span id="PACKET_LOOPBACK">PACKET_LOOPBACK</span> = 0x5
  1147. <span id="PACKET_MR_ALLMULTI">PACKET_MR_ALLMULTI</span> = 0x2
  1148. <span id="PACKET_MR_MULTICAST">PACKET_MR_MULTICAST</span> = 0x0
  1149. <span id="PACKET_MR_PROMISC">PACKET_MR_PROMISC</span> = 0x1
  1150. <span id="PACKET_MULTICAST">PACKET_MULTICAST</span> = 0x2
  1151. <span id="PACKET_OTHERHOST">PACKET_OTHERHOST</span> = 0x3
  1152. <span id="PACKET_OUTGOING">PACKET_OUTGOING</span> = 0x4
  1153. <span id="PACKET_RECV_OUTPUT">PACKET_RECV_OUTPUT</span> = 0x3
  1154. <span id="PACKET_RX_RING">PACKET_RX_RING</span> = 0x5
  1155. <span id="PACKET_STATISTICS">PACKET_STATISTICS</span> = 0x6
  1156. <span id="PRIO_PGRP">PRIO_PGRP</span> = 0x1
  1157. <span id="PRIO_PROCESS">PRIO_PROCESS</span> = 0x0
  1158. <span id="PRIO_USER">PRIO_USER</span> = 0x2
  1159. <span id="PROT_EXEC">PROT_EXEC</span> = 0x4
  1160. <span id="PROT_GROWSDOWN">PROT_GROWSDOWN</span> = 0x1000000
  1161. <span id="PROT_GROWSUP">PROT_GROWSUP</span> = 0x2000000
  1162. <span id="PROT_NONE">PROT_NONE</span> = 0x0
  1163. <span id="PROT_READ">PROT_READ</span> = 0x1
  1164. <span id="PROT_WRITE">PROT_WRITE</span> = 0x2
  1165. <span id="PR_CAPBSET_DROP">PR_CAPBSET_DROP</span> = 0x18
  1166. <span id="PR_CAPBSET_READ">PR_CAPBSET_READ</span> = 0x17
  1167. <span id="PR_ENDIAN_BIG">PR_ENDIAN_BIG</span> = 0x0
  1168. <span id="PR_ENDIAN_LITTLE">PR_ENDIAN_LITTLE</span> = 0x1
  1169. <span id="PR_ENDIAN_PPC_LITTLE">PR_ENDIAN_PPC_LITTLE</span> = 0x2
  1170. <span id="PR_FPEMU_NOPRINT">PR_FPEMU_NOPRINT</span> = 0x1
  1171. <span id="PR_FPEMU_SIGFPE">PR_FPEMU_SIGFPE</span> = 0x2
  1172. <span id="PR_FP_EXC_ASYNC">PR_FP_EXC_ASYNC</span> = 0x2
  1173. <span id="PR_FP_EXC_DISABLED">PR_FP_EXC_DISABLED</span> = 0x0
  1174. <span id="PR_FP_EXC_DIV">PR_FP_EXC_DIV</span> = 0x10000
  1175. <span id="PR_FP_EXC_INV">PR_FP_EXC_INV</span> = 0x100000
  1176. <span id="PR_FP_EXC_NONRECOV">PR_FP_EXC_NONRECOV</span> = 0x1
  1177. <span id="PR_FP_EXC_OVF">PR_FP_EXC_OVF</span> = 0x20000
  1178. <span id="PR_FP_EXC_PRECISE">PR_FP_EXC_PRECISE</span> = 0x3
  1179. <span id="PR_FP_EXC_RES">PR_FP_EXC_RES</span> = 0x80000
  1180. <span id="PR_FP_EXC_SW_ENABLE">PR_FP_EXC_SW_ENABLE</span> = 0x80
  1181. <span id="PR_FP_EXC_UND">PR_FP_EXC_UND</span> = 0x40000
  1182. <span id="PR_GET_DUMPABLE">PR_GET_DUMPABLE</span> = 0x3
  1183. <span id="PR_GET_ENDIAN">PR_GET_ENDIAN</span> = 0x13
  1184. <span id="PR_GET_FPEMU">PR_GET_FPEMU</span> = 0x9
  1185. <span id="PR_GET_FPEXC">PR_GET_FPEXC</span> = 0xb
  1186. <span id="PR_GET_KEEPCAPS">PR_GET_KEEPCAPS</span> = 0x7
  1187. <span id="PR_GET_NAME">PR_GET_NAME</span> = 0x10
  1188. <span id="PR_GET_PDEATHSIG">PR_GET_PDEATHSIG</span> = 0x2
  1189. <span id="PR_GET_SECCOMP">PR_GET_SECCOMP</span> = 0x15
  1190. <span id="PR_GET_SECUREBITS">PR_GET_SECUREBITS</span> = 0x1b
  1191. <span id="PR_GET_TIMERSLACK">PR_GET_TIMERSLACK</span> = 0x1e
  1192. <span id="PR_GET_TIMING">PR_GET_TIMING</span> = 0xd
  1193. <span id="PR_GET_TSC">PR_GET_TSC</span> = 0x19
  1194. <span id="PR_GET_UNALIGN">PR_GET_UNALIGN</span> = 0x5
  1195. <span id="PR_MCE_KILL">PR_MCE_KILL</span> = 0x21
  1196. <span id="PR_MCE_KILL_CLEAR">PR_MCE_KILL_CLEAR</span> = 0x0
  1197. <span id="PR_MCE_KILL_DEFAULT">PR_MCE_KILL_DEFAULT</span> = 0x2
  1198. <span id="PR_MCE_KILL_EARLY">PR_MCE_KILL_EARLY</span> = 0x1
  1199. <span id="PR_MCE_KILL_GET">PR_MCE_KILL_GET</span> = 0x22
  1200. <span id="PR_MCE_KILL_LATE">PR_MCE_KILL_LATE</span> = 0x0
  1201. <span id="PR_MCE_KILL_SET">PR_MCE_KILL_SET</span> = 0x1
  1202. <span id="PR_SET_DUMPABLE">PR_SET_DUMPABLE</span> = 0x4
  1203. <span id="PR_SET_ENDIAN">PR_SET_ENDIAN</span> = 0x14
  1204. <span id="PR_SET_FPEMU">PR_SET_FPEMU</span> = 0xa
  1205. <span id="PR_SET_FPEXC">PR_SET_FPEXC</span> = 0xc
  1206. <span id="PR_SET_KEEPCAPS">PR_SET_KEEPCAPS</span> = 0x8
  1207. <span id="PR_SET_NAME">PR_SET_NAME</span> = 0xf
  1208. <span id="PR_SET_PDEATHSIG">PR_SET_PDEATHSIG</span> = 0x1
  1209. <span id="PR_SET_PTRACER">PR_SET_PTRACER</span> = 0x59616d61
  1210. <span id="PR_SET_SECCOMP">PR_SET_SECCOMP</span> = 0x16
  1211. <span id="PR_SET_SECUREBITS">PR_SET_SECUREBITS</span> = 0x1c
  1212. <span id="PR_SET_TIMERSLACK">PR_SET_TIMERSLACK</span> = 0x1d
  1213. <span id="PR_SET_TIMING">PR_SET_TIMING</span> = 0xe
  1214. <span id="PR_SET_TSC">PR_SET_TSC</span> = 0x1a
  1215. <span id="PR_SET_UNALIGN">PR_SET_UNALIGN</span> = 0x6
  1216. <span id="PR_TASK_PERF_EVENTS_DISABLE">PR_TASK_PERF_EVENTS_DISABLE</span> = 0x1f
  1217. <span id="PR_TASK_PERF_EVENTS_ENABLE">PR_TASK_PERF_EVENTS_ENABLE</span> = 0x20
  1218. <span id="PR_TIMING_STATISTICAL">PR_TIMING_STATISTICAL</span> = 0x0
  1219. <span id="PR_TIMING_TIMESTAMP">PR_TIMING_TIMESTAMP</span> = 0x1
  1220. <span id="PR_TSC_ENABLE">PR_TSC_ENABLE</span> = 0x1
  1221. <span id="PR_TSC_SIGSEGV">PR_TSC_SIGSEGV</span> = 0x2
  1222. <span id="PR_UNALIGN_NOPRINT">PR_UNALIGN_NOPRINT</span> = 0x1
  1223. <span id="PR_UNALIGN_SIGBUS">PR_UNALIGN_SIGBUS</span> = 0x2
  1224. <span id="PTRACE_ARCH_PRCTL">PTRACE_ARCH_PRCTL</span> = 0x1e
  1225. <span id="PTRACE_ATTACH">PTRACE_ATTACH</span> = 0x10
  1226. <span id="PTRACE_CONT">PTRACE_CONT</span> = 0x7
  1227. <span id="PTRACE_DETACH">PTRACE_DETACH</span> = 0x11
  1228. <span id="PTRACE_EVENT_CLONE">PTRACE_EVENT_CLONE</span> = 0x3
  1229. <span id="PTRACE_EVENT_EXEC">PTRACE_EVENT_EXEC</span> = 0x4
  1230. <span id="PTRACE_EVENT_EXIT">PTRACE_EVENT_EXIT</span> = 0x6
  1231. <span id="PTRACE_EVENT_FORK">PTRACE_EVENT_FORK</span> = 0x1
  1232. <span id="PTRACE_EVENT_VFORK">PTRACE_EVENT_VFORK</span> = 0x2
  1233. <span id="PTRACE_EVENT_VFORK_DONE">PTRACE_EVENT_VFORK_DONE</span> = 0x5
  1234. <span id="PTRACE_GETEVENTMSG">PTRACE_GETEVENTMSG</span> = 0x4201
  1235. <span id="PTRACE_GETFPREGS">PTRACE_GETFPREGS</span> = 0xe
  1236. <span id="PTRACE_GETFPXREGS">PTRACE_GETFPXREGS</span> = 0x12
  1237. <span id="PTRACE_GETREGS">PTRACE_GETREGS</span> = 0xc
  1238. <span id="PTRACE_GETREGSET">PTRACE_GETREGSET</span> = 0x4204
  1239. <span id="PTRACE_GETSIGINFO">PTRACE_GETSIGINFO</span> = 0x4202
  1240. <span id="PTRACE_GET_THREAD_AREA">PTRACE_GET_THREAD_AREA</span> = 0x19
  1241. <span id="PTRACE_KILL">PTRACE_KILL</span> = 0x8
  1242. <span id="PTRACE_OLDSETOPTIONS">PTRACE_OLDSETOPTIONS</span> = 0x15
  1243. <span id="PTRACE_O_MASK">PTRACE_O_MASK</span> = 0x7f
  1244. <span id="PTRACE_O_TRACECLONE">PTRACE_O_TRACECLONE</span> = 0x8
  1245. <span id="PTRACE_O_TRACEEXEC">PTRACE_O_TRACEEXEC</span> = 0x10
  1246. <span id="PTRACE_O_TRACEEXIT">PTRACE_O_TRACEEXIT</span> = 0x40
  1247. <span id="PTRACE_O_TRACEFORK">PTRACE_O_TRACEFORK</span> = 0x2
  1248. <span id="PTRACE_O_TRACESYSGOOD">PTRACE_O_TRACESYSGOOD</span> = 0x1
  1249. <span id="PTRACE_O_TRACEVFORK">PTRACE_O_TRACEVFORK</span> = 0x4
  1250. <span id="PTRACE_O_TRACEVFORKDONE">PTRACE_O_TRACEVFORKDONE</span> = 0x20
  1251. <span id="PTRACE_PEEKDATA">PTRACE_PEEKDATA</span> = 0x2
  1252. <span id="PTRACE_PEEKTEXT">PTRACE_PEEKTEXT</span> = 0x1
  1253. <span id="PTRACE_PEEKUSR">PTRACE_PEEKUSR</span> = 0x3
  1254. <span id="PTRACE_POKEDATA">PTRACE_POKEDATA</span> = 0x5
  1255. <span id="PTRACE_POKETEXT">PTRACE_POKETEXT</span> = 0x4
  1256. <span id="PTRACE_POKEUSR">PTRACE_POKEUSR</span> = 0x6
  1257. <span id="PTRACE_SETFPREGS">PTRACE_SETFPREGS</span> = 0xf
  1258. <span id="PTRACE_SETFPXREGS">PTRACE_SETFPXREGS</span> = 0x13
  1259. <span id="PTRACE_SETOPTIONS">PTRACE_SETOPTIONS</span> = 0x4200
  1260. <span id="PTRACE_SETREGS">PTRACE_SETREGS</span> = 0xd
  1261. <span id="PTRACE_SETREGSET">PTRACE_SETREGSET</span> = 0x4205
  1262. <span id="PTRACE_SETSIGINFO">PTRACE_SETSIGINFO</span> = 0x4203
  1263. <span id="PTRACE_SET_THREAD_AREA">PTRACE_SET_THREAD_AREA</span> = 0x1a
  1264. <span id="PTRACE_SINGLEBLOCK">PTRACE_SINGLEBLOCK</span> = 0x21
  1265. <span id="PTRACE_SINGLESTEP">PTRACE_SINGLESTEP</span> = 0x9
  1266. <span id="PTRACE_SYSCALL">PTRACE_SYSCALL</span> = 0x18
  1267. <span id="PTRACE_SYSEMU">PTRACE_SYSEMU</span> = 0x1f
  1268. <span id="PTRACE_SYSEMU_SINGLESTEP">PTRACE_SYSEMU_SINGLESTEP</span> = 0x20
  1269. <span id="PTRACE_TRACEME">PTRACE_TRACEME</span> = 0x0
  1270. <span id="RLIMIT_AS">RLIMIT_AS</span> = 0x9
  1271. <span id="RLIMIT_CORE">RLIMIT_CORE</span> = 0x4
  1272. <span id="RLIMIT_CPU">RLIMIT_CPU</span> = 0x0
  1273. <span id="RLIMIT_DATA">RLIMIT_DATA</span> = 0x2
  1274. <span id="RLIMIT_FSIZE">RLIMIT_FSIZE</span> = 0x1
  1275. <span id="RLIMIT_NOFILE">RLIMIT_NOFILE</span> = 0x7
  1276. <span id="RLIMIT_STACK">RLIMIT_STACK</span> = 0x3
  1277. <span id="RLIM_INFINITY">RLIM_INFINITY</span> = -0x1
  1278. <span id="RTAX_ADVMSS">RTAX_ADVMSS</span> = 0x8
  1279. <span id="RTAX_CWND">RTAX_CWND</span> = 0x7
  1280. <span id="RTAX_FEATURES">RTAX_FEATURES</span> = 0xc
  1281. <span id="RTAX_FEATURE_ALLFRAG">RTAX_FEATURE_ALLFRAG</span> = 0x8
  1282. <span id="RTAX_FEATURE_ECN">RTAX_FEATURE_ECN</span> = 0x1
  1283. <span id="RTAX_FEATURE_SACK">RTAX_FEATURE_SACK</span> = 0x2
  1284. <span id="RTAX_FEATURE_TIMESTAMP">RTAX_FEATURE_TIMESTAMP</span> = 0x4
  1285. <span id="RTAX_HOPLIMIT">RTAX_HOPLIMIT</span> = 0xa
  1286. <span id="RTAX_INITCWND">RTAX_INITCWND</span> = 0xb
  1287. <span id="RTAX_INITRWND">RTAX_INITRWND</span> = 0xe
  1288. <span id="RTAX_LOCK">RTAX_LOCK</span> = 0x1
  1289. <span id="RTAX_MAX">RTAX_MAX</span> = 0xe
  1290. <span id="RTAX_MTU">RTAX_MTU</span> = 0x2
  1291. <span id="RTAX_REORDERING">RTAX_REORDERING</span> = 0x9
  1292. <span id="RTAX_RTO_MIN">RTAX_RTO_MIN</span> = 0xd
  1293. <span id="RTAX_RTT">RTAX_RTT</span> = 0x4
  1294. <span id="RTAX_RTTVAR">RTAX_RTTVAR</span> = 0x5
  1295. <span id="RTAX_SSTHRESH">RTAX_SSTHRESH</span> = 0x6
  1296. <span id="RTAX_UNSPEC">RTAX_UNSPEC</span> = 0x0
  1297. <span id="RTAX_WINDOW">RTAX_WINDOW</span> = 0x3
  1298. <span id="RTA_ALIGNTO">RTA_ALIGNTO</span> = 0x4
  1299. <span id="RTA_MAX">RTA_MAX</span> = 0x10
  1300. <span id="RTCF_DIRECTSRC">RTCF_DIRECTSRC</span> = 0x4000000
  1301. <span id="RTCF_DOREDIRECT">RTCF_DOREDIRECT</span> = 0x1000000
  1302. <span id="RTCF_LOG">RTCF_LOG</span> = 0x2000000
  1303. <span id="RTCF_MASQ">RTCF_MASQ</span> = 0x400000
  1304. <span id="RTCF_NAT">RTCF_NAT</span> = 0x800000
  1305. <span id="RTCF_VALVE">RTCF_VALVE</span> = 0x200000
  1306. <span id="RTF_ADDRCLASSMASK">RTF_ADDRCLASSMASK</span> = 0xf8000000
  1307. <span id="RTF_ADDRCONF">RTF_ADDRCONF</span> = 0x40000
  1308. <span id="RTF_ALLONLINK">RTF_ALLONLINK</span> = 0x20000
  1309. <span id="RTF_BROADCAST">RTF_BROADCAST</span> = 0x10000000
  1310. <span id="RTF_CACHE">RTF_CACHE</span> = 0x1000000
  1311. <span id="RTF_DEFAULT">RTF_DEFAULT</span> = 0x10000
  1312. <span id="RTF_DYNAMIC">RTF_DYNAMIC</span> = 0x10
  1313. <span id="RTF_FLOW">RTF_FLOW</span> = 0x2000000
  1314. <span id="RTF_GATEWAY">RTF_GATEWAY</span> = 0x2
  1315. <span id="RTF_HOST">RTF_HOST</span> = 0x4
  1316. <span id="RTF_INTERFACE">RTF_INTERFACE</span> = 0x40000000
  1317. <span id="RTF_IRTT">RTF_IRTT</span> = 0x100
  1318. <span id="RTF_LINKRT">RTF_LINKRT</span> = 0x100000
  1319. <span id="RTF_LOCAL">RTF_LOCAL</span> = 0x80000000
  1320. <span id="RTF_MODIFIED">RTF_MODIFIED</span> = 0x20
  1321. <span id="RTF_MSS">RTF_MSS</span> = 0x40
  1322. <span id="RTF_MTU">RTF_MTU</span> = 0x40
  1323. <span id="RTF_MULTICAST">RTF_MULTICAST</span> = 0x20000000
  1324. <span id="RTF_NAT">RTF_NAT</span> = 0x8000000
  1325. <span id="RTF_NOFORWARD">RTF_NOFORWARD</span> = 0x1000
  1326. <span id="RTF_NONEXTHOP">RTF_NONEXTHOP</span> = 0x200000
  1327. <span id="RTF_NOPMTUDISC">RTF_NOPMTUDISC</span> = 0x4000
  1328. <span id="RTF_POLICY">RTF_POLICY</span> = 0x4000000
  1329. <span id="RTF_REINSTATE">RTF_REINSTATE</span> = 0x8
  1330. <span id="RTF_REJECT">RTF_REJECT</span> = 0x200
  1331. <span id="RTF_STATIC">RTF_STATIC</span> = 0x400
  1332. <span id="RTF_THROW">RTF_THROW</span> = 0x2000
  1333. <span id="RTF_UP">RTF_UP</span> = 0x1
  1334. <span id="RTF_WINDOW">RTF_WINDOW</span> = 0x80
  1335. <span id="RTF_XRESOLVE">RTF_XRESOLVE</span> = 0x800
  1336. <span id="RTM_BASE">RTM_BASE</span> = 0x10
  1337. <span id="RTM_DELACTION">RTM_DELACTION</span> = 0x31
  1338. <span id="RTM_DELADDR">RTM_DELADDR</span> = 0x15
  1339. <span id="RTM_DELADDRLABEL">RTM_DELADDRLABEL</span> = 0x49
  1340. <span id="RTM_DELLINK">RTM_DELLINK</span> = 0x11
  1341. <span id="RTM_DELNEIGH">RTM_DELNEIGH</span> = 0x1d
  1342. <span id="RTM_DELQDISC">RTM_DELQDISC</span> = 0x25
  1343. <span id="RTM_DELROUTE">RTM_DELROUTE</span> = 0x19
  1344. <span id="RTM_DELRULE">RTM_DELRULE</span> = 0x21
  1345. <span id="RTM_DELTCLASS">RTM_DELTCLASS</span> = 0x29
  1346. <span id="RTM_DELTFILTER">RTM_DELTFILTER</span> = 0x2d
  1347. <span id="RTM_F_CLONED">RTM_F_CLONED</span> = 0x200
  1348. <span id="RTM_F_EQUALIZE">RTM_F_EQUALIZE</span> = 0x400
  1349. <span id="RTM_F_NOTIFY">RTM_F_NOTIFY</span> = 0x100
  1350. <span id="RTM_F_PREFIX">RTM_F_PREFIX</span> = 0x800
  1351. <span id="RTM_GETACTION">RTM_GETACTION</span> = 0x32
  1352. <span id="RTM_GETADDR">RTM_GETADDR</span> = 0x16
  1353. <span id="RTM_GETADDRLABEL">RTM_GETADDRLABEL</span> = 0x4a
  1354. <span id="RTM_GETANYCAST">RTM_GETANYCAST</span> = 0x3e
  1355. <span id="RTM_GETDCB">RTM_GETDCB</span> = 0x4e
  1356. <span id="RTM_GETLINK">RTM_GETLINK</span> = 0x12
  1357. <span id="RTM_GETMULTICAST">RTM_GETMULTICAST</span> = 0x3a
  1358. <span id="RTM_GETNEIGH">RTM_GETNEIGH</span> = 0x1e
  1359. <span id="RTM_GETNEIGHTBL">RTM_GETNEIGHTBL</span> = 0x42
  1360. <span id="RTM_GETQDISC">RTM_GETQDISC</span> = 0x26
  1361. <span id="RTM_GETROUTE">RTM_GETROUTE</span> = 0x1a
  1362. <span id="RTM_GETRULE">RTM_GETRULE</span> = 0x22
  1363. <span id="RTM_GETTCLASS">RTM_GETTCLASS</span> = 0x2a
  1364. <span id="RTM_GETTFILTER">RTM_GETTFILTER</span> = 0x2e
  1365. <span id="RTM_MAX">RTM_MAX</span> = 0x4f
  1366. <span id="RTM_NEWACTION">RTM_NEWACTION</span> = 0x30
  1367. <span id="RTM_NEWADDR">RTM_NEWADDR</span> = 0x14
  1368. <span id="RTM_NEWADDRLABEL">RTM_NEWADDRLABEL</span> = 0x48
  1369. <span id="RTM_NEWLINK">RTM_NEWLINK</span> = 0x10
  1370. <span id="RTM_NEWNDUSEROPT">RTM_NEWNDUSEROPT</span> = 0x44
  1371. <span id="RTM_NEWNEIGH">RTM_NEWNEIGH</span> = 0x1c
  1372. <span id="RTM_NEWNEIGHTBL">RTM_NEWNEIGHTBL</span> = 0x40
  1373. <span id="RTM_NEWPREFIX">RTM_NEWPREFIX</span> = 0x34
  1374. <span id="RTM_NEWQDISC">RTM_NEWQDISC</span> = 0x24
  1375. <span id="RTM_NEWROUTE">RTM_NEWROUTE</span> = 0x18
  1376. <span id="RTM_NEWRULE">RTM_NEWRULE</span> = 0x20
  1377. <span id="RTM_NEWTCLASS">RTM_NEWTCLASS</span> = 0x28
  1378. <span id="RTM_NEWTFILTER">RTM_NEWTFILTER</span> = 0x2c
  1379. <span id="RTM_NR_FAMILIES">RTM_NR_FAMILIES</span> = 0x10
  1380. <span id="RTM_NR_MSGTYPES">RTM_NR_MSGTYPES</span> = 0x40
  1381. <span id="RTM_SETDCB">RTM_SETDCB</span> = 0x4f
  1382. <span id="RTM_SETLINK">RTM_SETLINK</span> = 0x13
  1383. <span id="RTM_SETNEIGHTBL">RTM_SETNEIGHTBL</span> = 0x43
  1384. <span id="RTNH_ALIGNTO">RTNH_ALIGNTO</span> = 0x4
  1385. <span id="RTNH_F_DEAD">RTNH_F_DEAD</span> = 0x1
  1386. <span id="RTNH_F_ONLINK">RTNH_F_ONLINK</span> = 0x4
  1387. <span id="RTNH_F_PERVASIVE">RTNH_F_PERVASIVE</span> = 0x2
  1388. <span id="RTN_MAX">RTN_MAX</span> = 0xb
  1389. <span id="RTPROT_BIRD">RTPROT_BIRD</span> = 0xc
  1390. <span id="RTPROT_BOOT">RTPROT_BOOT</span> = 0x3
  1391. <span id="RTPROT_DHCP">RTPROT_DHCP</span> = 0x10
  1392. <span id="RTPROT_DNROUTED">RTPROT_DNROUTED</span> = 0xd
  1393. <span id="RTPROT_GATED">RTPROT_GATED</span> = 0x8
  1394. <span id="RTPROT_KERNEL">RTPROT_KERNEL</span> = 0x2
  1395. <span id="RTPROT_MRT">RTPROT_MRT</span> = 0xa
  1396. <span id="RTPROT_NTK">RTPROT_NTK</span> = 0xf
  1397. <span id="RTPROT_RA">RTPROT_RA</span> = 0x9
  1398. <span id="RTPROT_REDIRECT">RTPROT_REDIRECT</span> = 0x1
  1399. <span id="RTPROT_STATIC">RTPROT_STATIC</span> = 0x4
  1400. <span id="RTPROT_UNSPEC">RTPROT_UNSPEC</span> = 0x0
  1401. <span id="RTPROT_XORP">RTPROT_XORP</span> = 0xe
  1402. <span id="RTPROT_ZEBRA">RTPROT_ZEBRA</span> = 0xb
  1403. <span id="RT_CLASS_DEFAULT">RT_CLASS_DEFAULT</span> = 0xfd
  1404. <span id="RT_CLASS_LOCAL">RT_CLASS_LOCAL</span> = 0xff
  1405. <span id="RT_CLASS_MAIN">RT_CLASS_MAIN</span> = 0xfe
  1406. <span id="RT_CLASS_MAX">RT_CLASS_MAX</span> = 0xff
  1407. <span id="RT_CLASS_UNSPEC">RT_CLASS_UNSPEC</span> = 0x0
  1408. <span id="RUSAGE_CHILDREN">RUSAGE_CHILDREN</span> = -0x1
  1409. <span id="RUSAGE_SELF">RUSAGE_SELF</span> = 0x0
  1410. <span id="RUSAGE_THREAD">RUSAGE_THREAD</span> = 0x1
  1411. <span id="SCM_CREDENTIALS">SCM_CREDENTIALS</span> = 0x2
  1412. <span id="SCM_RIGHTS">SCM_RIGHTS</span> = 0x1
  1413. <span id="SCM_TIMESTAMP">SCM_TIMESTAMP</span> = 0x1d
  1414. <span id="SCM_TIMESTAMPING">SCM_TIMESTAMPING</span> = 0x25
  1415. <span id="SCM_TIMESTAMPNS">SCM_TIMESTAMPNS</span> = 0x23
  1416. <span id="SHUT_RD">SHUT_RD</span> = 0x0
  1417. <span id="SHUT_RDWR">SHUT_RDWR</span> = 0x2
  1418. <span id="SHUT_WR">SHUT_WR</span> = 0x1
  1419. <span id="SIOCADDDLCI">SIOCADDDLCI</span> = 0x8980
  1420. <span id="SIOCADDMULTI">SIOCADDMULTI</span> = 0x8931
  1421. <span id="SIOCADDRT">SIOCADDRT</span> = 0x890b
  1422. <span id="SIOCATMARK">SIOCATMARK</span> = 0x8905
  1423. <span id="SIOCDARP">SIOCDARP</span> = 0x8953
  1424. <span id="SIOCDELDLCI">SIOCDELDLCI</span> = 0x8981
  1425. <span id="SIOCDELMULTI">SIOCDELMULTI</span> = 0x8932
  1426. <span id="SIOCDELRT">SIOCDELRT</span> = 0x890c
  1427. <span id="SIOCDEVPRIVATE">SIOCDEVPRIVATE</span> = 0x89f0
  1428. <span id="SIOCDIFADDR">SIOCDIFADDR</span> = 0x8936
  1429. <span id="SIOCDRARP">SIOCDRARP</span> = 0x8960
  1430. <span id="SIOCGARP">SIOCGARP</span> = 0x8954
  1431. <span id="SIOCGIFADDR">SIOCGIFADDR</span> = 0x8915
  1432. <span id="SIOCGIFBR">SIOCGIFBR</span> = 0x8940
  1433. <span id="SIOCGIFBRDADDR">SIOCGIFBRDADDR</span> = 0x8919
  1434. <span id="SIOCGIFCONF">SIOCGIFCONF</span> = 0x8912
  1435. <span id="SIOCGIFCOUNT">SIOCGIFCOUNT</span> = 0x8938
  1436. <span id="SIOCGIFDSTADDR">SIOCGIFDSTADDR</span> = 0x8917
  1437. <span id="SIOCGIFENCAP">SIOCGIFENCAP</span> = 0x8925
  1438. <span id="SIOCGIFFLAGS">SIOCGIFFLAGS</span> = 0x8913
  1439. <span id="SIOCGIFHWADDR">SIOCGIFHWADDR</span> = 0x8927
  1440. <span id="SIOCGIFINDEX">SIOCGIFINDEX</span> = 0x8933
  1441. <span id="SIOCGIFMAP">SIOCGIFMAP</span> = 0x8970
  1442. <span id="SIOCGIFMEM">SIOCGIFMEM</span> = 0x891f
  1443. <span id="SIOCGIFMETRIC">SIOCGIFMETRIC</span> = 0x891d
  1444. <span id="SIOCGIFMTU">SIOCGIFMTU</span> = 0x8921
  1445. <span id="SIOCGIFNAME">SIOCGIFNAME</span> = 0x8910
  1446. <span id="SIOCGIFNETMASK">SIOCGIFNETMASK</span> = 0x891b
  1447. <span id="SIOCGIFPFLAGS">SIOCGIFPFLAGS</span> = 0x8935
  1448. <span id="SIOCGIFSLAVE">SIOCGIFSLAVE</span> = 0x8929
  1449. <span id="SIOCGIFTXQLEN">SIOCGIFTXQLEN</span> = 0x8942
  1450. <span id="SIOCGPGRP">SIOCGPGRP</span> = 0x8904
  1451. <span id="SIOCGRARP">SIOCGRARP</span> = 0x8961
  1452. <span id="SIOCGSTAMP">SIOCGSTAMP</span> = 0x8906
  1453. <span id="SIOCGSTAMPNS">SIOCGSTAMPNS</span> = 0x8907
  1454. <span id="SIOCPROTOPRIVATE">SIOCPROTOPRIVATE</span> = 0x89e0
  1455. <span id="SIOCRTMSG">SIOCRTMSG</span> = 0x890d
  1456. <span id="SIOCSARP">SIOCSARP</span> = 0x8955
  1457. <span id="SIOCSIFADDR">SIOCSIFADDR</span> = 0x8916
  1458. <span id="SIOCSIFBR">SIOCSIFBR</span> = 0x8941
  1459. <span id="SIOCSIFBRDADDR">SIOCSIFBRDADDR</span> = 0x891a
  1460. <span id="SIOCSIFDSTADDR">SIOCSIFDSTADDR</span> = 0x8918
  1461. <span id="SIOCSIFENCAP">SIOCSIFENCAP</span> = 0x8926
  1462. <span id="SIOCSIFFLAGS">SIOCSIFFLAGS</span> = 0x8914
  1463. <span id="SIOCSIFHWADDR">SIOCSIFHWADDR</span> = 0x8924
  1464. <span id="SIOCSIFHWBROADCAST">SIOCSIFHWBROADCAST</span> = 0x8937
  1465. <span id="SIOCSIFLINK">SIOCSIFLINK</span> = 0x8911
  1466. <span id="SIOCSIFMAP">SIOCSIFMAP</span> = 0x8971
  1467. <span id="SIOCSIFMEM">SIOCSIFMEM</span> = 0x8920
  1468. <span id="SIOCSIFMETRIC">SIOCSIFMETRIC</span> = 0x891e
  1469. <span id="SIOCSIFMTU">SIOCSIFMTU</span> = 0x8922
  1470. <span id="SIOCSIFNAME">SIOCSIFNAME</span> = 0x8923
  1471. <span id="SIOCSIFNETMASK">SIOCSIFNETMASK</span> = 0x891c
  1472. <span id="SIOCSIFPFLAGS">SIOCSIFPFLAGS</span> = 0x8934
  1473. <span id="SIOCSIFSLAVE">SIOCSIFSLAVE</span> = 0x8930
  1474. <span id="SIOCSIFTXQLEN">SIOCSIFTXQLEN</span> = 0x8943
  1475. <span id="SIOCSPGRP">SIOCSPGRP</span> = 0x8902
  1476. <span id="SIOCSRARP">SIOCSRARP</span> = 0x8962
  1477. <span id="SOCK_CLOEXEC">SOCK_CLOEXEC</span> = 0x80000
  1478. <span id="SOCK_DCCP">SOCK_DCCP</span> = 0x6
  1479. <span id="SOCK_DGRAM">SOCK_DGRAM</span> = 0x2
  1480. <span id="SOCK_NONBLOCK">SOCK_NONBLOCK</span> = 0x800
  1481. <span id="SOCK_PACKET">SOCK_PACKET</span> = 0xa
  1482. <span id="SOCK_RAW">SOCK_RAW</span> = 0x3
  1483. <span id="SOCK_RDM">SOCK_RDM</span> = 0x4
  1484. <span id="SOCK_SEQPACKET">SOCK_SEQPACKET</span> = 0x5
  1485. <span id="SOCK_STREAM">SOCK_STREAM</span> = 0x1
  1486. <span id="SOL_AAL">SOL_AAL</span> = 0x109
  1487. <span id="SOL_ATM">SOL_ATM</span> = 0x108
  1488. <span id="SOL_DECNET">SOL_DECNET</span> = 0x105
  1489. <span id="SOL_ICMPV6">SOL_ICMPV6</span> = 0x3a
  1490. <span id="SOL_IP">SOL_IP</span> = 0x0
  1491. <span id="SOL_IPV6">SOL_IPV6</span> = 0x29
  1492. <span id="SOL_IRDA">SOL_IRDA</span> = 0x10a
  1493. <span id="SOL_PACKET">SOL_PACKET</span> = 0x107
  1494. <span id="SOL_RAW">SOL_RAW</span> = 0xff
  1495. <span id="SOL_SOCKET">SOL_SOCKET</span> = 0x1
  1496. <span id="SOL_TCP">SOL_TCP</span> = 0x6
  1497. <span id="SOL_X25">SOL_X25</span> = 0x106
  1498. <span id="SOMAXCONN">SOMAXCONN</span> = 0x80
  1499. <span id="SO_ACCEPTCONN">SO_ACCEPTCONN</span> = 0x1e
  1500. <span id="SO_ATTACH_FILTER">SO_ATTACH_FILTER</span> = 0x1a
  1501. <span id="SO_BINDTODEVICE">SO_BINDTODEVICE</span> = 0x19
  1502. <span id="SO_BROADCAST">SO_BROADCAST</span> = 0x6
  1503. <span id="SO_BSDCOMPAT">SO_BSDCOMPAT</span> = 0xe
  1504. <span id="SO_DEBUG">SO_DEBUG</span> = 0x1
  1505. <span id="SO_DETACH_FILTER">SO_DETACH_FILTER</span> = 0x1b
  1506. <span id="SO_DOMAIN">SO_DOMAIN</span> = 0x27
  1507. <span id="SO_DONTROUTE">SO_DONTROUTE</span> = 0x5
  1508. <span id="SO_ERROR">SO_ERROR</span> = 0x4
  1509. <span id="SO_KEEPALIVE">SO_KEEPALIVE</span> = 0x9
  1510. <span id="SO_LINGER">SO_LINGER</span> = 0xd
  1511. <span id="SO_MARK">SO_MARK</span> = 0x24
  1512. <span id="SO_NO_CHECK">SO_NO_CHECK</span> = 0xb
  1513. <span id="SO_OOBINLINE">SO_OOBINLINE</span> = 0xa
  1514. <span id="SO_PASSCRED">SO_PASSCRED</span> = 0x10
  1515. <span id="SO_PASSSEC">SO_PASSSEC</span> = 0x22
  1516. <span id="SO_PEERCRED">SO_PEERCRED</span> = 0x11
  1517. <span id="SO_PEERNAME">SO_PEERNAME</span> = 0x1c
  1518. <span id="SO_PEERSEC">SO_PEERSEC</span> = 0x1f
  1519. <span id="SO_PRIORITY">SO_PRIORITY</span> = 0xc
  1520. <span id="SO_PROTOCOL">SO_PROTOCOL</span> = 0x26
  1521. <span id="SO_RCVBUF">SO_RCVBUF</span> = 0x8
  1522. <span id="SO_RCVBUFFORCE">SO_RCVBUFFORCE</span> = 0x21
  1523. <span id="SO_RCVLOWAT">SO_RCVLOWAT</span> = 0x12
  1524. <span id="SO_RCVTIMEO">SO_RCVTIMEO</span> = 0x14
  1525. <span id="SO_REUSEADDR">SO_REUSEADDR</span> = 0x2
  1526. <span id="SO_RXQ_OVFL">SO_RXQ_OVFL</span> = 0x28
  1527. <span id="SO_SECURITY_AUTHENTICATION">SO_SECURITY_AUTHENTICATION</span> = 0x16
  1528. <span id="SO_SECURITY_ENCRYPTION_NETWORK">SO_SECURITY_ENCRYPTION_NETWORK</span> = 0x18
  1529. <span id="SO_SECURITY_ENCRYPTION_TRANSPORT">SO_SECURITY_ENCRYPTION_TRANSPORT</span> = 0x17
  1530. <span id="SO_SNDBUF">SO_SNDBUF</span> = 0x7
  1531. <span id="SO_SNDBUFFORCE">SO_SNDBUFFORCE</span> = 0x20
  1532. <span id="SO_SNDLOWAT">SO_SNDLOWAT</span> = 0x13
  1533. <span id="SO_SNDTIMEO">SO_SNDTIMEO</span> = 0x15
  1534. <span id="SO_TIMESTAMP">SO_TIMESTAMP</span> = 0x1d
  1535. <span id="SO_TIMESTAMPING">SO_TIMESTAMPING</span> = 0x25
  1536. <span id="SO_TIMESTAMPNS">SO_TIMESTAMPNS</span> = 0x23
  1537. <span id="SO_TYPE">SO_TYPE</span> = 0x3
  1538. <span id="S_BLKSIZE">S_BLKSIZE</span> = 0x200
  1539. <span id="S_IEXEC">S_IEXEC</span> = 0x40
  1540. <span id="S_IFBLK">S_IFBLK</span> = 0x6000
  1541. <span id="S_IFCHR">S_IFCHR</span> = 0x2000
  1542. <span id="S_IFDIR">S_IFDIR</span> = 0x4000
  1543. <span id="S_IFIFO">S_IFIFO</span> = 0x1000
  1544. <span id="S_IFLNK">S_IFLNK</span> = 0xa000
  1545. <span id="S_IFMT">S_IFMT</span> = 0xf000
  1546. <span id="S_IFREG">S_IFREG</span> = 0x8000
  1547. <span id="S_IFSOCK">S_IFSOCK</span> = 0xc000
  1548. <span id="S_IREAD">S_IREAD</span> = 0x100
  1549. <span id="S_IRGRP">S_IRGRP</span> = 0x20
  1550. <span id="S_IROTH">S_IROTH</span> = 0x4
  1551. <span id="S_IRUSR">S_IRUSR</span> = 0x100
  1552. <span id="S_IRWXG">S_IRWXG</span> = 0x38
  1553. <span id="S_IRWXO">S_IRWXO</span> = 0x7
  1554. <span id="S_IRWXU">S_IRWXU</span> = 0x1c0
  1555. <span id="S_ISGID">S_ISGID</span> = 0x400
  1556. <span id="S_ISUID">S_ISUID</span> = 0x800
  1557. <span id="S_ISVTX">S_ISVTX</span> = 0x200
  1558. <span id="S_IWGRP">S_IWGRP</span> = 0x10
  1559. <span id="S_IWOTH">S_IWOTH</span> = 0x2
  1560. <span id="S_IWRITE">S_IWRITE</span> = 0x80
  1561. <span id="S_IWUSR">S_IWUSR</span> = 0x80
  1562. <span id="S_IXGRP">S_IXGRP</span> = 0x8
  1563. <span id="S_IXOTH">S_IXOTH</span> = 0x1
  1564. <span id="S_IXUSR">S_IXUSR</span> = 0x40
  1565. <span id="TCIFLUSH">TCIFLUSH</span> = 0x0
  1566. <span id="TCIOFLUSH">TCIOFLUSH</span> = 0x2
  1567. <span id="TCOFLUSH">TCOFLUSH</span> = 0x1
  1568. <span id="TCP_CONGESTION">TCP_CONGESTION</span> = 0xd
  1569. <span id="TCP_CORK">TCP_CORK</span> = 0x3
  1570. <span id="TCP_DEFER_ACCEPT">TCP_DEFER_ACCEPT</span> = 0x9
  1571. <span id="TCP_INFO">TCP_INFO</span> = 0xb
  1572. <span id="TCP_KEEPCNT">TCP_KEEPCNT</span> = 0x6
  1573. <span id="TCP_KEEPIDLE">TCP_KEEPIDLE</span> = 0x4
  1574. <span id="TCP_KEEPINTVL">TCP_KEEPINTVL</span> = 0x5
  1575. <span id="TCP_LINGER2">TCP_LINGER2</span> = 0x8
  1576. <span id="TCP_MAXSEG">TCP_MAXSEG</span> = 0x2
  1577. <span id="TCP_MAXWIN">TCP_MAXWIN</span> = 0xffff
  1578. <span id="TCP_MAX_WINSHIFT">TCP_MAX_WINSHIFT</span> = 0xe
  1579. <span id="TCP_MD5SIG">TCP_MD5SIG</span> = 0xe
  1580. <span id="TCP_MD5SIG_MAXKEYLEN">TCP_MD5SIG_MAXKEYLEN</span> = 0x50
  1581. <span id="TCP_MSS">TCP_MSS</span> = 0x200
  1582. <span id="TCP_NODELAY">TCP_NODELAY</span> = 0x1
  1583. <span id="TCP_QUICKACK">TCP_QUICKACK</span> = 0xc
  1584. <span id="TCP_SYNCNT">TCP_SYNCNT</span> = 0x7
  1585. <span id="TCP_WINDOW_CLAMP">TCP_WINDOW_CLAMP</span> = 0xa
  1586. <span id="TIOCCBRK">TIOCCBRK</span> = 0x5428
  1587. <span id="TIOCCONS">TIOCCONS</span> = 0x541d
  1588. <span id="TIOCEXCL">TIOCEXCL</span> = 0x540c
  1589. <span id="TIOCGDEV">TIOCGDEV</span> = 0x80045432
  1590. <span id="TIOCGETD">TIOCGETD</span> = 0x5424
  1591. <span id="TIOCGICOUNT">TIOCGICOUNT</span> = 0x545d
  1592. <span id="TIOCGLCKTRMIOS">TIOCGLCKTRMIOS</span> = 0x5456
  1593. <span id="TIOCGPGRP">TIOCGPGRP</span> = 0x540f
  1594. <span id="TIOCGPTN">TIOCGPTN</span> = 0x80045430
  1595. <span id="TIOCGRS485">TIOCGRS485</span> = 0x542e
  1596. <span id="TIOCGSERIAL">TIOCGSERIAL</span> = 0x541e
  1597. <span id="TIOCGSID">TIOCGSID</span> = 0x5429
  1598. <span id="TIOCGSOFTCAR">TIOCGSOFTCAR</span> = 0x5419
  1599. <span id="TIOCGWINSZ">TIOCGWINSZ</span> = 0x5413
  1600. <span id="TIOCINQ">TIOCINQ</span> = 0x541b
  1601. <span id="TIOCLINUX">TIOCLINUX</span> = 0x541c
  1602. <span id="TIOCMBIC">TIOCMBIC</span> = 0x5417
  1603. <span id="TIOCMBIS">TIOCMBIS</span> = 0x5416
  1604. <span id="TIOCMGET">TIOCMGET</span> = 0x5415
  1605. <span id="TIOCMIWAIT">TIOCMIWAIT</span> = 0x545c
  1606. <span id="TIOCMSET">TIOCMSET</span> = 0x5418
  1607. <span id="TIOCM_CAR">TIOCM_CAR</span> = 0x40
  1608. <span id="TIOCM_CD">TIOCM_CD</span> = 0x40
  1609. <span id="TIOCM_CTS">TIOCM_CTS</span> = 0x20
  1610. <span id="TIOCM_DSR">TIOCM_DSR</span> = 0x100
  1611. <span id="TIOCM_DTR">TIOCM_DTR</span> = 0x2
  1612. <span id="TIOCM_LE">TIOCM_LE</span> = 0x1
  1613. <span id="TIOCM_RI">TIOCM_RI</span> = 0x80
  1614. <span id="TIOCM_RNG">TIOCM_RNG</span> = 0x80
  1615. <span id="TIOCM_RTS">TIOCM_RTS</span> = 0x4
  1616. <span id="TIOCM_SR">TIOCM_SR</span> = 0x10
  1617. <span id="TIOCM_ST">TIOCM_ST</span> = 0x8
  1618. <span id="TIOCNOTTY">TIOCNOTTY</span> = 0x5422
  1619. <span id="TIOCNXCL">TIOCNXCL</span> = 0x540d
  1620. <span id="TIOCOUTQ">TIOCOUTQ</span> = 0x5411
  1621. <span id="TIOCPKT">TIOCPKT</span> = 0x5420
  1622. <span id="TIOCPKT_DATA">TIOCPKT_DATA</span> = 0x0
  1623. <span id="TIOCPKT_DOSTOP">TIOCPKT_DOSTOP</span> = 0x20
  1624. <span id="TIOCPKT_FLUSHREAD">TIOCPKT_FLUSHREAD</span> = 0x1
  1625. <span id="TIOCPKT_FLUSHWRITE">TIOCPKT_FLUSHWRITE</span> = 0x2
  1626. <span id="TIOCPKT_IOCTL">TIOCPKT_IOCTL</span> = 0x40
  1627. <span id="TIOCPKT_NOSTOP">TIOCPKT_NOSTOP</span> = 0x10
  1628. <span id="TIOCPKT_START">TIOCPKT_START</span> = 0x8
  1629. <span id="TIOCPKT_STOP">TIOCPKT_STOP</span> = 0x4
  1630. <span id="TIOCSBRK">TIOCSBRK</span> = 0x5427
  1631. <span id="TIOCSCTTY">TIOCSCTTY</span> = 0x540e
  1632. <span id="TIOCSERCONFIG">TIOCSERCONFIG</span> = 0x5453
  1633. <span id="TIOCSERGETLSR">TIOCSERGETLSR</span> = 0x5459
  1634. <span id="TIOCSERGETMULTI">TIOCSERGETMULTI</span> = 0x545a
  1635. <span id="TIOCSERGSTRUCT">TIOCSERGSTRUCT</span> = 0x5458
  1636. <span id="TIOCSERGWILD">TIOCSERGWILD</span> = 0x5454
  1637. <span id="TIOCSERSETMULTI">TIOCSERSETMULTI</span> = 0x545b
  1638. <span id="TIOCSERSWILD">TIOCSERSWILD</span> = 0x5455
  1639. <span id="TIOCSER_TEMT">TIOCSER_TEMT</span> = 0x1
  1640. <span id="TIOCSETD">TIOCSETD</span> = 0x5423
  1641. <span id="TIOCSIG">TIOCSIG</span> = 0x40045436
  1642. <span id="TIOCSLCKTRMIOS">TIOCSLCKTRMIOS</span> = 0x5457
  1643. <span id="TIOCSPGRP">TIOCSPGRP</span> = 0x5410
  1644. <span id="TIOCSPTLCK">TIOCSPTLCK</span> = 0x40045431
  1645. <span id="TIOCSRS485">TIOCSRS485</span> = 0x542f
  1646. <span id="TIOCSSERIAL">TIOCSSERIAL</span> = 0x541f
  1647. <span id="TIOCSSOFTCAR">TIOCSSOFTCAR</span> = 0x541a
  1648. <span id="TIOCSTI">TIOCSTI</span> = 0x5412
  1649. <span id="TIOCSWINSZ">TIOCSWINSZ</span> = 0x5414
  1650. <span id="TUNATTACHFILTER">TUNATTACHFILTER</span> = 0x401054d5
  1651. <span id="TUNDETACHFILTER">TUNDETACHFILTER</span> = 0x401054d6
  1652. <span id="TUNGETFEATURES">TUNGETFEATURES</span> = 0x800454cf
  1653. <span id="TUNGETIFF">TUNGETIFF</span> = 0x800454d2
  1654. <span id="TUNGETSNDBUF">TUNGETSNDBUF</span> = 0x800454d3
  1655. <span id="TUNGETVNETHDRSZ">TUNGETVNETHDRSZ</span> = 0x800454d7
  1656. <span id="TUNSETDEBUG">TUNSETDEBUG</span> = 0x400454c9
  1657. <span id="TUNSETGROUP">TUNSETGROUP</span> = 0x400454ce
  1658. <span id="TUNSETIFF">TUNSETIFF</span> = 0x400454ca
  1659. <span id="TUNSETLINK">TUNSETLINK</span> = 0x400454cd
  1660. <span id="TUNSETNOCSUM">TUNSETNOCSUM</span> = 0x400454c8
  1661. <span id="TUNSETOFFLOAD">TUNSETOFFLOAD</span> = 0x400454d0
  1662. <span id="TUNSETOWNER">TUNSETOWNER</span> = 0x400454cc
  1663. <span id="TUNSETPERSIST">TUNSETPERSIST</span> = 0x400454cb
  1664. <span id="TUNSETSNDBUF">TUNSETSNDBUF</span> = 0x400454d4
  1665. <span id="TUNSETTXFILTER">TUNSETTXFILTER</span> = 0x400454d1
  1666. <span id="TUNSETVNETHDRSZ">TUNSETVNETHDRSZ</span> = 0x400454d8
  1667. <span id="WALL">WALL</span> = 0x40000000
  1668. <span id="WCLONE">WCLONE</span> = 0x80000000
  1669. <span id="WCONTINUED">WCONTINUED</span> = 0x8
  1670. <span id="WEXITED">WEXITED</span> = 0x4
  1671. <span id="WNOHANG">WNOHANG</span> = 0x1
  1672. <span id="WNOTHREAD">WNOTHREAD</span> = 0x20000000
  1673. <span id="WNOWAIT">WNOWAIT</span> = 0x1000000
  1674. <span id="WORDSIZE">WORDSIZE</span> = 0x40
  1675. <span id="WSTOPPED">WSTOPPED</span> = 0x2
  1676. <span id="WUNTRACED">WUNTRACED</span> = 0x2
  1677. )</pre>
  1678. <pre>const (
  1679. <span id="E2BIG">E2BIG</span> = <a href="index.html#Errno">Errno</a>(0x7)
  1680. <span id="EACCES">EACCES</span> = <a href="index.html#Errno">Errno</a>(0xd)
  1681. <span id="EADDRINUSE">EADDRINUSE</span> = <a href="index.html#Errno">Errno</a>(0x62)
  1682. <span id="EADDRNOTAVAIL">EADDRNOTAVAIL</span> = <a href="index.html#Errno">Errno</a>(0x63)
  1683. <span id="EADV">EADV</span> = <a href="index.html#Errno">Errno</a>(0x44)
  1684. <span id="EAFNOSUPPORT">EAFNOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x61)
  1685. <span id="EAGAIN">EAGAIN</span> = <a href="index.html#Errno">Errno</a>(0xb)
  1686. <span id="EALREADY">EALREADY</span> = <a href="index.html#Errno">Errno</a>(0x72)
  1687. <span id="EBADE">EBADE</span> = <a href="index.html#Errno">Errno</a>(0x34)
  1688. <span id="EBADF">EBADF</span> = <a href="index.html#Errno">Errno</a>(0x9)
  1689. <span id="EBADFD">EBADFD</span> = <a href="index.html#Errno">Errno</a>(0x4d)
  1690. <span id="EBADMSG">EBADMSG</span> = <a href="index.html#Errno">Errno</a>(0x4a)
  1691. <span id="EBADR">EBADR</span> = <a href="index.html#Errno">Errno</a>(0x35)
  1692. <span id="EBADRQC">EBADRQC</span> = <a href="index.html#Errno">Errno</a>(0x38)
  1693. <span id="EBADSLT">EBADSLT</span> = <a href="index.html#Errno">Errno</a>(0x39)
  1694. <span id="EBFONT">EBFONT</span> = <a href="index.html#Errno">Errno</a>(0x3b)
  1695. <span id="EBUSY">EBUSY</span> = <a href="index.html#Errno">Errno</a>(0x10)
  1696. <span id="ECANCELED">ECANCELED</span> = <a href="index.html#Errno">Errno</a>(0x7d)
  1697. <span id="ECHILD">ECHILD</span> = <a href="index.html#Errno">Errno</a>(0xa)
  1698. <span id="ECHRNG">ECHRNG</span> = <a href="index.html#Errno">Errno</a>(0x2c)
  1699. <span id="ECOMM">ECOMM</span> = <a href="index.html#Errno">Errno</a>(0x46)
  1700. <span id="ECONNABORTED">ECONNABORTED</span> = <a href="index.html#Errno">Errno</a>(0x67)
  1701. <span id="ECONNREFUSED">ECONNREFUSED</span> = <a href="index.html#Errno">Errno</a>(0x6f)
  1702. <span id="ECONNRESET">ECONNRESET</span> = <a href="index.html#Errno">Errno</a>(0x68)
  1703. <span id="EDEADLK">EDEADLK</span> = <a href="index.html#Errno">Errno</a>(0x23)
  1704. <span id="EDEADLOCK">EDEADLOCK</span> = <a href="index.html#Errno">Errno</a>(0x23)
  1705. <span id="EDESTADDRREQ">EDESTADDRREQ</span> = <a href="index.html#Errno">Errno</a>(0x59)
  1706. <span id="EDOM">EDOM</span> = <a href="index.html#Errno">Errno</a>(0x21)
  1707. <span id="EDOTDOT">EDOTDOT</span> = <a href="index.html#Errno">Errno</a>(0x49)
  1708. <span id="EDQUOT">EDQUOT</span> = <a href="index.html#Errno">Errno</a>(0x7a)
  1709. <span id="EEXIST">EEXIST</span> = <a href="index.html#Errno">Errno</a>(0x11)
  1710. <span id="EFAULT">EFAULT</span> = <a href="index.html#Errno">Errno</a>(0xe)
  1711. <span id="EFBIG">EFBIG</span> = <a href="index.html#Errno">Errno</a>(0x1b)
  1712. <span id="EHOSTDOWN">EHOSTDOWN</span> = <a href="index.html#Errno">Errno</a>(0x70)
  1713. <span id="EHOSTUNREACH">EHOSTUNREACH</span> = <a href="index.html#Errno">Errno</a>(0x71)
  1714. <span id="EIDRM">EIDRM</span> = <a href="index.html#Errno">Errno</a>(0x2b)
  1715. <span id="EILSEQ">EILSEQ</span> = <a href="index.html#Errno">Errno</a>(0x54)
  1716. <span id="EINPROGRESS">EINPROGRESS</span> = <a href="index.html#Errno">Errno</a>(0x73)
  1717. <span id="EINTR">EINTR</span> = <a href="index.html#Errno">Errno</a>(0x4)
  1718. <span id="EINVAL">EINVAL</span> = <a href="index.html#Errno">Errno</a>(0x16)
  1719. <span id="EIO">EIO</span> = <a href="index.html#Errno">Errno</a>(0x5)
  1720. <span id="EISCONN">EISCONN</span> = <a href="index.html#Errno">Errno</a>(0x6a)
  1721. <span id="EISDIR">EISDIR</span> = <a href="index.html#Errno">Errno</a>(0x15)
  1722. <span id="EISNAM">EISNAM</span> = <a href="index.html#Errno">Errno</a>(0x78)
  1723. <span id="EKEYEXPIRED">EKEYEXPIRED</span> = <a href="index.html#Errno">Errno</a>(0x7f)
  1724. <span id="EKEYREJECTED">EKEYREJECTED</span> = <a href="index.html#Errno">Errno</a>(0x81)
  1725. <span id="EKEYREVOKED">EKEYREVOKED</span> = <a href="index.html#Errno">Errno</a>(0x80)
  1726. <span id="EL2HLT">EL2HLT</span> = <a href="index.html#Errno">Errno</a>(0x33)
  1727. <span id="EL2NSYNC">EL2NSYNC</span> = <a href="index.html#Errno">Errno</a>(0x2d)
  1728. <span id="EL3HLT">EL3HLT</span> = <a href="index.html#Errno">Errno</a>(0x2e)
  1729. <span id="EL3RST">EL3RST</span> = <a href="index.html#Errno">Errno</a>(0x2f)
  1730. <span id="ELIBACC">ELIBACC</span> = <a href="index.html#Errno">Errno</a>(0x4f)
  1731. <span id="ELIBBAD">ELIBBAD</span> = <a href="index.html#Errno">Errno</a>(0x50)
  1732. <span id="ELIBEXEC">ELIBEXEC</span> = <a href="index.html#Errno">Errno</a>(0x53)
  1733. <span id="ELIBMAX">ELIBMAX</span> = <a href="index.html#Errno">Errno</a>(0x52)
  1734. <span id="ELIBSCN">ELIBSCN</span> = <a href="index.html#Errno">Errno</a>(0x51)
  1735. <span id="ELNRNG">ELNRNG</span> = <a href="index.html#Errno">Errno</a>(0x30)
  1736. <span id="ELOOP">ELOOP</span> = <a href="index.html#Errno">Errno</a>(0x28)
  1737. <span id="EMEDIUMTYPE">EMEDIUMTYPE</span> = <a href="index.html#Errno">Errno</a>(0x7c)
  1738. <span id="EMFILE">EMFILE</span> = <a href="index.html#Errno">Errno</a>(0x18)
  1739. <span id="EMLINK">EMLINK</span> = <a href="index.html#Errno">Errno</a>(0x1f)
  1740. <span id="EMSGSIZE">EMSGSIZE</span> = <a href="index.html#Errno">Errno</a>(0x5a)
  1741. <span id="EMULTIHOP">EMULTIHOP</span> = <a href="index.html#Errno">Errno</a>(0x48)
  1742. <span id="ENAMETOOLONG">ENAMETOOLONG</span> = <a href="index.html#Errno">Errno</a>(0x24)
  1743. <span id="ENAVAIL">ENAVAIL</span> = <a href="index.html#Errno">Errno</a>(0x77)
  1744. <span id="ENETDOWN">ENETDOWN</span> = <a href="index.html#Errno">Errno</a>(0x64)
  1745. <span id="ENETRESET">ENETRESET</span> = <a href="index.html#Errno">Errno</a>(0x66)
  1746. <span id="ENETUNREACH">ENETUNREACH</span> = <a href="index.html#Errno">Errno</a>(0x65)
  1747. <span id="ENFILE">ENFILE</span> = <a href="index.html#Errno">Errno</a>(0x17)
  1748. <span id="ENOANO">ENOANO</span> = <a href="index.html#Errno">Errno</a>(0x37)
  1749. <span id="ENOBUFS">ENOBUFS</span> = <a href="index.html#Errno">Errno</a>(0x69)
  1750. <span id="ENOCSI">ENOCSI</span> = <a href="index.html#Errno">Errno</a>(0x32)
  1751. <span id="ENODATA">ENODATA</span> = <a href="index.html#Errno">Errno</a>(0x3d)
  1752. <span id="ENODEV">ENODEV</span> = <a href="index.html#Errno">Errno</a>(0x13)
  1753. <span id="ENOENT">ENOENT</span> = <a href="index.html#Errno">Errno</a>(0x2)
  1754. <span id="ENOEXEC">ENOEXEC</span> = <a href="index.html#Errno">Errno</a>(0x8)
  1755. <span id="ENOKEY">ENOKEY</span> = <a href="index.html#Errno">Errno</a>(0x7e)
  1756. <span id="ENOLCK">ENOLCK</span> = <a href="index.html#Errno">Errno</a>(0x25)
  1757. <span id="ENOLINK">ENOLINK</span> = <a href="index.html#Errno">Errno</a>(0x43)
  1758. <span id="ENOMEDIUM">ENOMEDIUM</span> = <a href="index.html#Errno">Errno</a>(0x7b)
  1759. <span id="ENOMEM">ENOMEM</span> = <a href="index.html#Errno">Errno</a>(0xc)
  1760. <span id="ENOMSG">ENOMSG</span> = <a href="index.html#Errno">Errno</a>(0x2a)
  1761. <span id="ENONET">ENONET</span> = <a href="index.html#Errno">Errno</a>(0x40)
  1762. <span id="ENOPKG">ENOPKG</span> = <a href="index.html#Errno">Errno</a>(0x41)
  1763. <span id="ENOPROTOOPT">ENOPROTOOPT</span> = <a href="index.html#Errno">Errno</a>(0x5c)
  1764. <span id="ENOSPC">ENOSPC</span> = <a href="index.html#Errno">Errno</a>(0x1c)
  1765. <span id="ENOSR">ENOSR</span> = <a href="index.html#Errno">Errno</a>(0x3f)
  1766. <span id="ENOSTR">ENOSTR</span> = <a href="index.html#Errno">Errno</a>(0x3c)
  1767. <span id="ENOSYS">ENOSYS</span> = <a href="index.html#Errno">Errno</a>(0x26)
  1768. <span id="ENOTBLK">ENOTBLK</span> = <a href="index.html#Errno">Errno</a>(0xf)
  1769. <span id="ENOTCONN">ENOTCONN</span> = <a href="index.html#Errno">Errno</a>(0x6b)
  1770. <span id="ENOTDIR">ENOTDIR</span> = <a href="index.html#Errno">Errno</a>(0x14)
  1771. <span id="ENOTEMPTY">ENOTEMPTY</span> = <a href="index.html#Errno">Errno</a>(0x27)
  1772. <span id="ENOTNAM">ENOTNAM</span> = <a href="index.html#Errno">Errno</a>(0x76)
  1773. <span id="ENOTRECOVERABLE">ENOTRECOVERABLE</span> = <a href="index.html#Errno">Errno</a>(0x83)
  1774. <span id="ENOTSOCK">ENOTSOCK</span> = <a href="index.html#Errno">Errno</a>(0x58)
  1775. <span id="ENOTSUP">ENOTSUP</span> = <a href="index.html#Errno">Errno</a>(0x5f)
  1776. <span id="ENOTTY">ENOTTY</span> = <a href="index.html#Errno">Errno</a>(0x19)
  1777. <span id="ENOTUNIQ">ENOTUNIQ</span> = <a href="index.html#Errno">Errno</a>(0x4c)
  1778. <span id="ENXIO">ENXIO</span> = <a href="index.html#Errno">Errno</a>(0x6)
  1779. <span id="EOPNOTSUPP">EOPNOTSUPP</span> = <a href="index.html#Errno">Errno</a>(0x5f)
  1780. <span id="EOVERFLOW">EOVERFLOW</span> = <a href="index.html#Errno">Errno</a>(0x4b)
  1781. <span id="EOWNERDEAD">EOWNERDEAD</span> = <a href="index.html#Errno">Errno</a>(0x82)
  1782. <span id="EPERM">EPERM</span> = <a href="index.html#Errno">Errno</a>(0x1)
  1783. <span id="EPFNOSUPPORT">EPFNOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x60)
  1784. <span id="EPIPE">EPIPE</span> = <a href="index.html#Errno">Errno</a>(0x20)
  1785. <span id="EPROTO">EPROTO</span> = <a href="index.html#Errno">Errno</a>(0x47)
  1786. <span id="EPROTONOSUPPORT">EPROTONOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x5d)
  1787. <span id="EPROTOTYPE">EPROTOTYPE</span> = <a href="index.html#Errno">Errno</a>(0x5b)
  1788. <span id="ERANGE">ERANGE</span> = <a href="index.html#Errno">Errno</a>(0x22)
  1789. <span id="EREMCHG">EREMCHG</span> = <a href="index.html#Errno">Errno</a>(0x4e)
  1790. <span id="EREMOTE">EREMOTE</span> = <a href="index.html#Errno">Errno</a>(0x42)
  1791. <span id="EREMOTEIO">EREMOTEIO</span> = <a href="index.html#Errno">Errno</a>(0x79)
  1792. <span id="ERESTART">ERESTART</span> = <a href="index.html#Errno">Errno</a>(0x55)
  1793. <span id="ERFKILL">ERFKILL</span> = <a href="index.html#Errno">Errno</a>(0x84)
  1794. <span id="EROFS">EROFS</span> = <a href="index.html#Errno">Errno</a>(0x1e)
  1795. <span id="ESHUTDOWN">ESHUTDOWN</span> = <a href="index.html#Errno">Errno</a>(0x6c)
  1796. <span id="ESOCKTNOSUPPORT">ESOCKTNOSUPPORT</span> = <a href="index.html#Errno">Errno</a>(0x5e)
  1797. <span id="ESPIPE">ESPIPE</span> = <a href="index.html#Errno">Errno</a>(0x1d)
  1798. <span id="ESRCH">ESRCH</span> = <a href="index.html#Errno">Errno</a>(0x3)
  1799. <span id="ESRMNT">ESRMNT</span> = <a href="index.html#Errno">Errno</a>(0x45)
  1800. <span id="ESTALE">ESTALE</span> = <a href="index.html#Errno">Errno</a>(0x74)
  1801. <span id="ESTRPIPE">ESTRPIPE</span> = <a href="index.html#Errno">Errno</a>(0x56)
  1802. <span id="ETIME">ETIME</span> = <a href="index.html#Errno">Errno</a>(0x3e)
  1803. <span id="ETIMEDOUT">ETIMEDOUT</span> = <a href="index.html#Errno">Errno</a>(0x6e)
  1804. <span id="ETOOMANYREFS">ETOOMANYREFS</span> = <a href="index.html#Errno">Errno</a>(0x6d)
  1805. <span id="ETXTBSY">ETXTBSY</span> = <a href="index.html#Errno">Errno</a>(0x1a)
  1806. <span id="EUCLEAN">EUCLEAN</span> = <a href="index.html#Errno">Errno</a>(0x75)
  1807. <span id="EUNATCH">EUNATCH</span> = <a href="index.html#Errno">Errno</a>(0x31)
  1808. <span id="EUSERS">EUSERS</span> = <a href="index.html#Errno">Errno</a>(0x57)
  1809. <span id="EWOULDBLOCK">EWOULDBLOCK</span> = <a href="index.html#Errno">Errno</a>(0xb)
  1810. <span id="EXDEV">EXDEV</span> = <a href="index.html#Errno">Errno</a>(0x12)
  1811. <span id="EXFULL">EXFULL</span> = <a href="index.html#Errno">Errno</a>(0x36)
  1812. )</pre>
  1813. <p>
  1814. Errors
  1815. </p>
  1816. <pre>const (
  1817. <span id="SIGABRT">SIGABRT</span> = <a href="index.html#Signal">Signal</a>(0x6)
  1818. <span id="SIGALRM">SIGALRM</span> = <a href="index.html#Signal">Signal</a>(0xe)
  1819. <span id="SIGBUS">SIGBUS</span> = <a href="index.html#Signal">Signal</a>(0x7)
  1820. <span id="SIGCHLD">SIGCHLD</span> = <a href="index.html#Signal">Signal</a>(0x11)
  1821. <span id="SIGCLD">SIGCLD</span> = <a href="index.html#Signal">Signal</a>(0x11)
  1822. <span id="SIGCONT">SIGCONT</span> = <a href="index.html#Signal">Signal</a>(0x12)
  1823. <span id="SIGFPE">SIGFPE</span> = <a href="index.html#Signal">Signal</a>(0x8)
  1824. <span id="SIGHUP">SIGHUP</span> = <a href="index.html#Signal">Signal</a>(0x1)
  1825. <span id="SIGILL">SIGILL</span> = <a href="index.html#Signal">Signal</a>(0x4)
  1826. <span id="SIGINT">SIGINT</span> = <a href="index.html#Signal">Signal</a>(0x2)
  1827. <span id="SIGIO">SIGIO</span> = <a href="index.html#Signal">Signal</a>(0x1d)
  1828. <span id="SIGIOT">SIGIOT</span> = <a href="index.html#Signal">Signal</a>(0x6)
  1829. <span id="SIGKILL">SIGKILL</span> = <a href="index.html#Signal">Signal</a>(0x9)
  1830. <span id="SIGPIPE">SIGPIPE</span> = <a href="index.html#Signal">Signal</a>(0xd)
  1831. <span id="SIGPOLL">SIGPOLL</span> = <a href="index.html#Signal">Signal</a>(0x1d)
  1832. <span id="SIGPROF">SIGPROF</span> = <a href="index.html#Signal">Signal</a>(0x1b)
  1833. <span id="SIGPWR">SIGPWR</span> = <a href="index.html#Signal">Signal</a>(0x1e)
  1834. <span id="SIGQUIT">SIGQUIT</span> = <a href="index.html#Signal">Signal</a>(0x3)
  1835. <span id="SIGSEGV">SIGSEGV</span> = <a href="index.html#Signal">Signal</a>(0xb)
  1836. <span id="SIGSTKFLT">SIGSTKFLT</span> = <a href="index.html#Signal">Signal</a>(0x10)
  1837. <span id="SIGSTOP">SIGSTOP</span> = <a href="index.html#Signal">Signal</a>(0x13)
  1838. <span id="SIGSYS">SIGSYS</span> = <a href="index.html#Signal">Signal</a>(0x1f)
  1839. <span id="SIGTERM">SIGTERM</span> = <a href="index.html#Signal">Signal</a>(0xf)
  1840. <span id="SIGTRAP">SIGTRAP</span> = <a href="index.html#Signal">Signal</a>(0x5)
  1841. <span id="SIGTSTP">SIGTSTP</span> = <a href="index.html#Signal">Signal</a>(0x14)
  1842. <span id="SIGTTIN">SIGTTIN</span> = <a href="index.html#Signal">Signal</a>(0x15)
  1843. <span id="SIGTTOU">SIGTTOU</span> = <a href="index.html#Signal">Signal</a>(0x16)
  1844. <span id="SIGUNUSED">SIGUNUSED</span> = <a href="index.html#Signal">Signal</a>(0x1f)
  1845. <span id="SIGURG">SIGURG</span> = <a href="index.html#Signal">Signal</a>(0x17)
  1846. <span id="SIGUSR1">SIGUSR1</span> = <a href="index.html#Signal">Signal</a>(0xa)
  1847. <span id="SIGUSR2">SIGUSR2</span> = <a href="index.html#Signal">Signal</a>(0xc)
  1848. <span id="SIGVTALRM">SIGVTALRM</span> = <a href="index.html#Signal">Signal</a>(0x1a)
  1849. <span id="SIGWINCH">SIGWINCH</span> = <a href="index.html#Signal">Signal</a>(0x1c)
  1850. <span id="SIGXCPU">SIGXCPU</span> = <a href="index.html#Signal">Signal</a>(0x18)
  1851. <span id="SIGXFSZ">SIGXFSZ</span> = <a href="index.html#Signal">Signal</a>(0x19)
  1852. )</pre>
  1853. <p>
  1854. Signals
  1855. </p>
  1856. <pre>const (
  1857. <span id="SYS_READ">SYS_READ</span> = 0
  1858. <span id="SYS_WRITE">SYS_WRITE</span> = 1
  1859. <span id="SYS_OPEN">SYS_OPEN</span> = 2
  1860. <span id="SYS_CLOSE">SYS_CLOSE</span> = 3
  1861. <span id="SYS_STAT">SYS_STAT</span> = 4
  1862. <span id="SYS_FSTAT">SYS_FSTAT</span> = 5
  1863. <span id="SYS_LSTAT">SYS_LSTAT</span> = 6
  1864. <span id="SYS_POLL">SYS_POLL</span> = 7
  1865. <span id="SYS_LSEEK">SYS_LSEEK</span> = 8
  1866. <span id="SYS_MMAP">SYS_MMAP</span> = 9
  1867. <span id="SYS_MPROTECT">SYS_MPROTECT</span> = 10
  1868. <span id="SYS_MUNMAP">SYS_MUNMAP</span> = 11
  1869. <span id="SYS_BRK">SYS_BRK</span> = 12
  1870. <span id="SYS_RT_SIGACTION">SYS_RT_SIGACTION</span> = 13
  1871. <span id="SYS_RT_SIGPROCMASK">SYS_RT_SIGPROCMASK</span> = 14
  1872. <span id="SYS_RT_SIGRETURN">SYS_RT_SIGRETURN</span> = 15
  1873. <span id="SYS_IOCTL">SYS_IOCTL</span> = 16
  1874. <span id="SYS_PREAD64">SYS_PREAD64</span> = 17
  1875. <span id="SYS_PWRITE64">SYS_PWRITE64</span> = 18
  1876. <span id="SYS_READV">SYS_READV</span> = 19
  1877. <span id="SYS_WRITEV">SYS_WRITEV</span> = 20
  1878. <span id="SYS_ACCESS">SYS_ACCESS</span> = 21
  1879. <span id="SYS_PIPE">SYS_PIPE</span> = 22
  1880. <span id="SYS_SELECT">SYS_SELECT</span> = 23
  1881. <span id="SYS_SCHED_YIELD">SYS_SCHED_YIELD</span> = 24
  1882. <span id="SYS_MREMAP">SYS_MREMAP</span> = 25
  1883. <span id="SYS_MSYNC">SYS_MSYNC</span> = 26
  1884. <span id="SYS_MINCORE">SYS_MINCORE</span> = 27
  1885. <span id="SYS_MADVISE">SYS_MADVISE</span> = 28
  1886. <span id="SYS_SHMGET">SYS_SHMGET</span> = 29
  1887. <span id="SYS_SHMAT">SYS_SHMAT</span> = 30
  1888. <span id="SYS_SHMCTL">SYS_SHMCTL</span> = 31
  1889. <span id="SYS_DUP">SYS_DUP</span> = 32
  1890. <span id="SYS_DUP2">SYS_DUP2</span> = 33
  1891. <span id="SYS_PAUSE">SYS_PAUSE</span> = 34
  1892. <span id="SYS_NANOSLEEP">SYS_NANOSLEEP</span> = 35
  1893. <span id="SYS_GETITIMER">SYS_GETITIMER</span> = 36
  1894. <span id="SYS_ALARM">SYS_ALARM</span> = 37
  1895. <span id="SYS_SETITIMER">SYS_SETITIMER</span> = 38
  1896. <span id="SYS_GETPID">SYS_GETPID</span> = 39
  1897. <span id="SYS_SENDFILE">SYS_SENDFILE</span> = 40
  1898. <span id="SYS_SOCKET">SYS_SOCKET</span> = 41
  1899. <span id="SYS_CONNECT">SYS_CONNECT</span> = 42
  1900. <span id="SYS_ACCEPT">SYS_ACCEPT</span> = 43
  1901. <span id="SYS_SENDTO">SYS_SENDTO</span> = 44
  1902. <span id="SYS_RECVFROM">SYS_RECVFROM</span> = 45
  1903. <span id="SYS_SENDMSG">SYS_SENDMSG</span> = 46
  1904. <span id="SYS_RECVMSG">SYS_RECVMSG</span> = 47
  1905. <span id="SYS_SHUTDOWN">SYS_SHUTDOWN</span> = 48
  1906. <span id="SYS_BIND">SYS_BIND</span> = 49
  1907. <span id="SYS_LISTEN">SYS_LISTEN</span> = 50
  1908. <span id="SYS_GETSOCKNAME">SYS_GETSOCKNAME</span> = 51
  1909. <span id="SYS_GETPEERNAME">SYS_GETPEERNAME</span> = 52
  1910. <span id="SYS_SOCKETPAIR">SYS_SOCKETPAIR</span> = 53
  1911. <span id="SYS_SETSOCKOPT">SYS_SETSOCKOPT</span> = 54
  1912. <span id="SYS_GETSOCKOPT">SYS_GETSOCKOPT</span> = 55
  1913. <span id="SYS_CLONE">SYS_CLONE</span> = 56
  1914. <span id="SYS_FORK">SYS_FORK</span> = 57
  1915. <span id="SYS_VFORK">SYS_VFORK</span> = 58
  1916. <span id="SYS_EXECVE">SYS_EXECVE</span> = 59
  1917. <span id="SYS_EXIT">SYS_EXIT</span> = 60
  1918. <span id="SYS_WAIT4">SYS_WAIT4</span> = 61
  1919. <span id="SYS_KILL">SYS_KILL</span> = 62
  1920. <span id="SYS_UNAME">SYS_UNAME</span> = 63
  1921. <span id="SYS_SEMGET">SYS_SEMGET</span> = 64
  1922. <span id="SYS_SEMOP">SYS_SEMOP</span> = 65
  1923. <span id="SYS_SEMCTL">SYS_SEMCTL</span> = 66
  1924. <span id="SYS_SHMDT">SYS_SHMDT</span> = 67
  1925. <span id="SYS_MSGGET">SYS_MSGGET</span> = 68
  1926. <span id="SYS_MSGSND">SYS_MSGSND</span> = 69
  1927. <span id="SYS_MSGRCV">SYS_MSGRCV</span> = 70
  1928. <span id="SYS_MSGCTL">SYS_MSGCTL</span> = 71
  1929. <span id="SYS_FCNTL">SYS_FCNTL</span> = 72
  1930. <span id="SYS_FLOCK">SYS_FLOCK</span> = 73
  1931. <span id="SYS_FSYNC">SYS_FSYNC</span> = 74
  1932. <span id="SYS_FDATASYNC">SYS_FDATASYNC</span> = 75
  1933. <span id="SYS_TRUNCATE">SYS_TRUNCATE</span> = 76
  1934. <span id="SYS_FTRUNCATE">SYS_FTRUNCATE</span> = 77
  1935. <span id="SYS_GETDENTS">SYS_GETDENTS</span> = 78
  1936. <span id="SYS_GETCWD">SYS_GETCWD</span> = 79
  1937. <span id="SYS_CHDIR">SYS_CHDIR</span> = 80
  1938. <span id="SYS_FCHDIR">SYS_FCHDIR</span> = 81
  1939. <span id="SYS_RENAME">SYS_RENAME</span> = 82
  1940. <span id="SYS_MKDIR">SYS_MKDIR</span> = 83
  1941. <span id="SYS_RMDIR">SYS_RMDIR</span> = 84
  1942. <span id="SYS_CREAT">SYS_CREAT</span> = 85
  1943. <span id="SYS_LINK">SYS_LINK</span> = 86
  1944. <span id="SYS_UNLINK">SYS_UNLINK</span> = 87
  1945. <span id="SYS_SYMLINK">SYS_SYMLINK</span> = 88
  1946. <span id="SYS_READLINK">SYS_READLINK</span> = 89
  1947. <span id="SYS_CHMOD">SYS_CHMOD</span> = 90
  1948. <span id="SYS_FCHMOD">SYS_FCHMOD</span> = 91
  1949. <span id="SYS_CHOWN">SYS_CHOWN</span> = 92
  1950. <span id="SYS_FCHOWN">SYS_FCHOWN</span> = 93
  1951. <span id="SYS_LCHOWN">SYS_LCHOWN</span> = 94
  1952. <span id="SYS_UMASK">SYS_UMASK</span> = 95
  1953. <span id="SYS_GETTIMEOFDAY">SYS_GETTIMEOFDAY</span> = 96
  1954. <span id="SYS_GETRLIMIT">SYS_GETRLIMIT</span> = 97
  1955. <span id="SYS_GETRUSAGE">SYS_GETRUSAGE</span> = 98
  1956. <span id="SYS_SYSINFO">SYS_SYSINFO</span> = 99
  1957. <span id="SYS_TIMES">SYS_TIMES</span> = 100
  1958. <span id="SYS_PTRACE">SYS_PTRACE</span> = 101
  1959. <span id="SYS_GETUID">SYS_GETUID</span> = 102
  1960. <span id="SYS_SYSLOG">SYS_SYSLOG</span> = 103
  1961. <span id="SYS_GETGID">SYS_GETGID</span> = 104
  1962. <span id="SYS_SETUID">SYS_SETUID</span> = 105
  1963. <span id="SYS_SETGID">SYS_SETGID</span> = 106
  1964. <span id="SYS_GETEUID">SYS_GETEUID</span> = 107
  1965. <span id="SYS_GETEGID">SYS_GETEGID</span> = 108
  1966. <span id="SYS_SETPGID">SYS_SETPGID</span> = 109
  1967. <span id="SYS_GETPPID">SYS_GETPPID</span> = 110
  1968. <span id="SYS_GETPGRP">SYS_GETPGRP</span> = 111
  1969. <span id="SYS_SETSID">SYS_SETSID</span> = 112
  1970. <span id="SYS_SETREUID">SYS_SETREUID</span> = 113
  1971. <span id="SYS_SETREGID">SYS_SETREGID</span> = 114
  1972. <span id="SYS_GETGROUPS">SYS_GETGROUPS</span> = 115
  1973. <span id="SYS_SETGROUPS">SYS_SETGROUPS</span> = 116
  1974. <span id="SYS_SETRESUID">SYS_SETRESUID</span> = 117
  1975. <span id="SYS_GETRESUID">SYS_GETRESUID</span> = 118
  1976. <span id="SYS_SETRESGID">SYS_SETRESGID</span> = 119
  1977. <span id="SYS_GETRESGID">SYS_GETRESGID</span> = 120
  1978. <span id="SYS_GETPGID">SYS_GETPGID</span> = 121
  1979. <span id="SYS_SETFSUID">SYS_SETFSUID</span> = 122
  1980. <span id="SYS_SETFSGID">SYS_SETFSGID</span> = 123
  1981. <span id="SYS_GETSID">SYS_GETSID</span> = 124
  1982. <span id="SYS_CAPGET">SYS_CAPGET</span> = 125
  1983. <span id="SYS_CAPSET">SYS_CAPSET</span> = 126
  1984. <span id="SYS_RT_SIGPENDING">SYS_RT_SIGPENDING</span> = 127
  1985. <span id="SYS_RT_SIGTIMEDWAIT">SYS_RT_SIGTIMEDWAIT</span> = 128
  1986. <span id="SYS_RT_SIGQUEUEINFO">SYS_RT_SIGQUEUEINFO</span> = 129
  1987. <span id="SYS_RT_SIGSUSPEND">SYS_RT_SIGSUSPEND</span> = 130
  1988. <span id="SYS_SIGALTSTACK">SYS_SIGALTSTACK</span> = 131
  1989. <span id="SYS_UTIME">SYS_UTIME</span> = 132
  1990. <span id="SYS_MKNOD">SYS_MKNOD</span> = 133
  1991. <span id="SYS_USELIB">SYS_USELIB</span> = 134
  1992. <span id="SYS_PERSONALITY">SYS_PERSONALITY</span> = 135
  1993. <span id="SYS_USTAT">SYS_USTAT</span> = 136
  1994. <span id="SYS_STATFS">SYS_STATFS</span> = 137
  1995. <span id="SYS_FSTATFS">SYS_FSTATFS</span> = 138
  1996. <span id="SYS_SYSFS">SYS_SYSFS</span> = 139
  1997. <span id="SYS_GETPRIORITY">SYS_GETPRIORITY</span> = 140
  1998. <span id="SYS_SETPRIORITY">SYS_SETPRIORITY</span> = 141
  1999. <span id="SYS_SCHED_SETPARAM">SYS_SCHED_SETPARAM</span> = 142
  2000. <span id="SYS_SCHED_GETPARAM">SYS_SCHED_GETPARAM</span> = 143
  2001. <span id="SYS_SCHED_SETSCHEDULER">SYS_SCHED_SETSCHEDULER</span> = 144
  2002. <span id="SYS_SCHED_GETSCHEDULER">SYS_SCHED_GETSCHEDULER</span> = 145
  2003. <span id="SYS_SCHED_GET_PRIORITY_MAX">SYS_SCHED_GET_PRIORITY_MAX</span> = 146
  2004. <span id="SYS_SCHED_GET_PRIORITY_MIN">SYS_SCHED_GET_PRIORITY_MIN</span> = 147
  2005. <span id="SYS_SCHED_RR_GET_INTERVAL">SYS_SCHED_RR_GET_INTERVAL</span> = 148
  2006. <span id="SYS_MLOCK">SYS_MLOCK</span> = 149
  2007. <span id="SYS_MUNLOCK">SYS_MUNLOCK</span> = 150
  2008. <span id="SYS_MLOCKALL">SYS_MLOCKALL</span> = 151
  2009. <span id="SYS_MUNLOCKALL">SYS_MUNLOCKALL</span> = 152
  2010. <span id="SYS_VHANGUP">SYS_VHANGUP</span> = 153
  2011. <span id="SYS_MODIFY_LDT">SYS_MODIFY_LDT</span> = 154
  2012. <span id="SYS_PIVOT_ROOT">SYS_PIVOT_ROOT</span> = 155
  2013. <span id="SYS__SYSCTL">SYS__SYSCTL</span> = 156
  2014. <span id="SYS_PRCTL">SYS_PRCTL</span> = 157
  2015. <span id="SYS_ARCH_PRCTL">SYS_ARCH_PRCTL</span> = 158
  2016. <span id="SYS_ADJTIMEX">SYS_ADJTIMEX</span> = 159
  2017. <span id="SYS_SETRLIMIT">SYS_SETRLIMIT</span> = 160
  2018. <span id="SYS_CHROOT">SYS_CHROOT</span> = 161
  2019. <span id="SYS_SYNC">SYS_SYNC</span> = 162
  2020. <span id="SYS_ACCT">SYS_ACCT</span> = 163
  2021. <span id="SYS_SETTIMEOFDAY">SYS_SETTIMEOFDAY</span> = 164
  2022. <span id="SYS_MOUNT">SYS_MOUNT</span> = 165
  2023. <span id="SYS_UMOUNT2">SYS_UMOUNT2</span> = 166
  2024. <span id="SYS_SWAPON">SYS_SWAPON</span> = 167
  2025. <span id="SYS_SWAPOFF">SYS_SWAPOFF</span> = 168
  2026. <span id="SYS_REBOOT">SYS_REBOOT</span> = 169
  2027. <span id="SYS_SETHOSTNAME">SYS_SETHOSTNAME</span> = 170
  2028. <span id="SYS_SETDOMAINNAME">SYS_SETDOMAINNAME</span> = 171
  2029. <span id="SYS_IOPL">SYS_IOPL</span> = 172
  2030. <span id="SYS_IOPERM">SYS_IOPERM</span> = 173
  2031. <span id="SYS_CREATE_MODULE">SYS_CREATE_MODULE</span> = 174
  2032. <span id="SYS_INIT_MODULE">SYS_INIT_MODULE</span> = 175
  2033. <span id="SYS_DELETE_MODULE">SYS_DELETE_MODULE</span> = 176
  2034. <span id="SYS_GET_KERNEL_SYMS">SYS_GET_KERNEL_SYMS</span> = 177
  2035. <span id="SYS_QUERY_MODULE">SYS_QUERY_MODULE</span> = 178
  2036. <span id="SYS_QUOTACTL">SYS_QUOTACTL</span> = 179
  2037. <span id="SYS_NFSSERVCTL">SYS_NFSSERVCTL</span> = 180
  2038. <span id="SYS_GETPMSG">SYS_GETPMSG</span> = 181
  2039. <span id="SYS_PUTPMSG">SYS_PUTPMSG</span> = 182
  2040. <span id="SYS_AFS_SYSCALL">SYS_AFS_SYSCALL</span> = 183
  2041. <span id="SYS_TUXCALL">SYS_TUXCALL</span> = 184
  2042. <span id="SYS_SECURITY">SYS_SECURITY</span> = 185
  2043. <span id="SYS_GETTID">SYS_GETTID</span> = 186
  2044. <span id="SYS_READAHEAD">SYS_READAHEAD</span> = 187
  2045. <span id="SYS_SETXATTR">SYS_SETXATTR</span> = 188
  2046. <span id="SYS_LSETXATTR">SYS_LSETXATTR</span> = 189
  2047. <span id="SYS_FSETXATTR">SYS_FSETXATTR</span> = 190
  2048. <span id="SYS_GETXATTR">SYS_GETXATTR</span> = 191
  2049. <span id="SYS_LGETXATTR">SYS_LGETXATTR</span> = 192
  2050. <span id="SYS_FGETXATTR">SYS_FGETXATTR</span> = 193
  2051. <span id="SYS_LISTXATTR">SYS_LISTXATTR</span> = 194
  2052. <span id="SYS_LLISTXATTR">SYS_LLISTXATTR</span> = 195
  2053. <span id="SYS_FLISTXATTR">SYS_FLISTXATTR</span> = 196
  2054. <span id="SYS_REMOVEXATTR">SYS_REMOVEXATTR</span> = 197
  2055. <span id="SYS_LREMOVEXATTR">SYS_LREMOVEXATTR</span> = 198
  2056. <span id="SYS_FREMOVEXATTR">SYS_FREMOVEXATTR</span> = 199
  2057. <span id="SYS_TKILL">SYS_TKILL</span> = 200
  2058. <span id="SYS_TIME">SYS_TIME</span> = 201
  2059. <span id="SYS_FUTEX">SYS_FUTEX</span> = 202
  2060. <span id="SYS_SCHED_SETAFFINITY">SYS_SCHED_SETAFFINITY</span> = 203
  2061. <span id="SYS_SCHED_GETAFFINITY">SYS_SCHED_GETAFFINITY</span> = 204
  2062. <span id="SYS_SET_THREAD_AREA">SYS_SET_THREAD_AREA</span> = 205
  2063. <span id="SYS_IO_SETUP">SYS_IO_SETUP</span> = 206
  2064. <span id="SYS_IO_DESTROY">SYS_IO_DESTROY</span> = 207
  2065. <span id="SYS_IO_GETEVENTS">SYS_IO_GETEVENTS</span> = 208
  2066. <span id="SYS_IO_SUBMIT">SYS_IO_SUBMIT</span> = 209
  2067. <span id="SYS_IO_CANCEL">SYS_IO_CANCEL</span> = 210
  2068. <span id="SYS_GET_THREAD_AREA">SYS_GET_THREAD_AREA</span> = 211
  2069. <span id="SYS_LOOKUP_DCOOKIE">SYS_LOOKUP_DCOOKIE</span> = 212
  2070. <span id="SYS_EPOLL_CREATE">SYS_EPOLL_CREATE</span> = 213
  2071. <span id="SYS_EPOLL_CTL_OLD">SYS_EPOLL_CTL_OLD</span> = 214
  2072. <span id="SYS_EPOLL_WAIT_OLD">SYS_EPOLL_WAIT_OLD</span> = 215
  2073. <span id="SYS_REMAP_FILE_PAGES">SYS_REMAP_FILE_PAGES</span> = 216
  2074. <span id="SYS_GETDENTS64">SYS_GETDENTS64</span> = 217
  2075. <span id="SYS_SET_TID_ADDRESS">SYS_SET_TID_ADDRESS</span> = 218
  2076. <span id="SYS_RESTART_SYSCALL">SYS_RESTART_SYSCALL</span> = 219
  2077. <span id="SYS_SEMTIMEDOP">SYS_SEMTIMEDOP</span> = 220
  2078. <span id="SYS_FADVISE64">SYS_FADVISE64</span> = 221
  2079. <span id="SYS_TIMER_CREATE">SYS_TIMER_CREATE</span> = 222
  2080. <span id="SYS_TIMER_SETTIME">SYS_TIMER_SETTIME</span> = 223
  2081. <span id="SYS_TIMER_GETTIME">SYS_TIMER_GETTIME</span> = 224
  2082. <span id="SYS_TIMER_GETOVERRUN">SYS_TIMER_GETOVERRUN</span> = 225
  2083. <span id="SYS_TIMER_DELETE">SYS_TIMER_DELETE</span> = 226
  2084. <span id="SYS_CLOCK_SETTIME">SYS_CLOCK_SETTIME</span> = 227
  2085. <span id="SYS_CLOCK_GETTIME">SYS_CLOCK_GETTIME</span> = 228
  2086. <span id="SYS_CLOCK_GETRES">SYS_CLOCK_GETRES</span> = 229
  2087. <span id="SYS_CLOCK_NANOSLEEP">SYS_CLOCK_NANOSLEEP</span> = 230
  2088. <span id="SYS_EXIT_GROUP">SYS_EXIT_GROUP</span> = 231
  2089. <span id="SYS_EPOLL_WAIT">SYS_EPOLL_WAIT</span> = 232
  2090. <span id="SYS_EPOLL_CTL">SYS_EPOLL_CTL</span> = 233
  2091. <span id="SYS_TGKILL">SYS_TGKILL</span> = 234
  2092. <span id="SYS_UTIMES">SYS_UTIMES</span> = 235
  2093. <span id="SYS_VSERVER">SYS_VSERVER</span> = 236
  2094. <span id="SYS_MBIND">SYS_MBIND</span> = 237
  2095. <span id="SYS_SET_MEMPOLICY">SYS_SET_MEMPOLICY</span> = 238
  2096. <span id="SYS_GET_MEMPOLICY">SYS_GET_MEMPOLICY</span> = 239
  2097. <span id="SYS_MQ_OPEN">SYS_MQ_OPEN</span> = 240
  2098. <span id="SYS_MQ_UNLINK">SYS_MQ_UNLINK</span> = 241
  2099. <span id="SYS_MQ_TIMEDSEND">SYS_MQ_TIMEDSEND</span> = 242
  2100. <span id="SYS_MQ_TIMEDRECEIVE">SYS_MQ_TIMEDRECEIVE</span> = 243
  2101. <span id="SYS_MQ_NOTIFY">SYS_MQ_NOTIFY</span> = 244
  2102. <span id="SYS_MQ_GETSETATTR">SYS_MQ_GETSETATTR</span> = 245
  2103. <span id="SYS_KEXEC_LOAD">SYS_KEXEC_LOAD</span> = 246
  2104. <span id="SYS_WAITID">SYS_WAITID</span> = 247
  2105. <span id="SYS_ADD_KEY">SYS_ADD_KEY</span> = 248
  2106. <span id="SYS_REQUEST_KEY">SYS_REQUEST_KEY</span> = 249
  2107. <span id="SYS_KEYCTL">SYS_KEYCTL</span> = 250
  2108. <span id="SYS_IOPRIO_SET">SYS_IOPRIO_SET</span> = 251
  2109. <span id="SYS_IOPRIO_GET">SYS_IOPRIO_GET</span> = 252
  2110. <span id="SYS_INOTIFY_INIT">SYS_INOTIFY_INIT</span> = 253
  2111. <span id="SYS_INOTIFY_ADD_WATCH">SYS_INOTIFY_ADD_WATCH</span> = 254
  2112. <span id="SYS_INOTIFY_RM_WATCH">SYS_INOTIFY_RM_WATCH</span> = 255
  2113. <span id="SYS_MIGRATE_PAGES">SYS_MIGRATE_PAGES</span> = 256
  2114. <span id="SYS_OPENAT">SYS_OPENAT</span> = 257
  2115. <span id="SYS_MKDIRAT">SYS_MKDIRAT</span> = 258
  2116. <span id="SYS_MKNODAT">SYS_MKNODAT</span> = 259
  2117. <span id="SYS_FCHOWNAT">SYS_FCHOWNAT</span> = 260
  2118. <span id="SYS_FUTIMESAT">SYS_FUTIMESAT</span> = 261
  2119. <span id="SYS_NEWFSTATAT">SYS_NEWFSTATAT</span> = 262
  2120. <span id="SYS_UNLINKAT">SYS_UNLINKAT</span> = 263
  2121. <span id="SYS_RENAMEAT">SYS_RENAMEAT</span> = 264
  2122. <span id="SYS_LINKAT">SYS_LINKAT</span> = 265
  2123. <span id="SYS_SYMLINKAT">SYS_SYMLINKAT</span> = 266
  2124. <span id="SYS_READLINKAT">SYS_READLINKAT</span> = 267
  2125. <span id="SYS_FCHMODAT">SYS_FCHMODAT</span> = 268
  2126. <span id="SYS_FACCESSAT">SYS_FACCESSAT</span> = 269
  2127. <span id="SYS_PSELECT6">SYS_PSELECT6</span> = 270
  2128. <span id="SYS_PPOLL">SYS_PPOLL</span> = 271
  2129. <span id="SYS_UNSHARE">SYS_UNSHARE</span> = 272
  2130. <span id="SYS_SET_ROBUST_LIST">SYS_SET_ROBUST_LIST</span> = 273
  2131. <span id="SYS_GET_ROBUST_LIST">SYS_GET_ROBUST_LIST</span> = 274
  2132. <span id="SYS_SPLICE">SYS_SPLICE</span> = 275
  2133. <span id="SYS_TEE">SYS_TEE</span> = 276
  2134. <span id="SYS_SYNC_FILE_RANGE">SYS_SYNC_FILE_RANGE</span> = 277
  2135. <span id="SYS_VMSPLICE">SYS_VMSPLICE</span> = 278
  2136. <span id="SYS_MOVE_PAGES">SYS_MOVE_PAGES</span> = 279
  2137. <span id="SYS_UTIMENSAT">SYS_UTIMENSAT</span> = 280
  2138. <span id="SYS_EPOLL_PWAIT">SYS_EPOLL_PWAIT</span> = 281
  2139. <span id="SYS_SIGNALFD">SYS_SIGNALFD</span> = 282
  2140. <span id="SYS_TIMERFD_CREATE">SYS_TIMERFD_CREATE</span> = 283
  2141. <span id="SYS_EVENTFD">SYS_EVENTFD</span> = 284
  2142. <span id="SYS_FALLOCATE">SYS_FALLOCATE</span> = 285
  2143. <span id="SYS_TIMERFD_SETTIME">SYS_TIMERFD_SETTIME</span> = 286
  2144. <span id="SYS_TIMERFD_GETTIME">SYS_TIMERFD_GETTIME</span> = 287
  2145. <span id="SYS_ACCEPT4">SYS_ACCEPT4</span> = 288
  2146. <span id="SYS_SIGNALFD4">SYS_SIGNALFD4</span> = 289
  2147. <span id="SYS_EVENTFD2">SYS_EVENTFD2</span> = 290
  2148. <span id="SYS_EPOLL_CREATE1">SYS_EPOLL_CREATE1</span> = 291
  2149. <span id="SYS_DUP3">SYS_DUP3</span> = 292
  2150. <span id="SYS_PIPE2">SYS_PIPE2</span> = 293
  2151. <span id="SYS_INOTIFY_INIT1">SYS_INOTIFY_INIT1</span> = 294
  2152. <span id="SYS_PREADV">SYS_PREADV</span> = 295
  2153. <span id="SYS_PWRITEV">SYS_PWRITEV</span> = 296
  2154. <span id="SYS_RT_TGSIGQUEUEINFO">SYS_RT_TGSIGQUEUEINFO</span> = 297
  2155. <span id="SYS_PERF_EVENT_OPEN">SYS_PERF_EVENT_OPEN</span> = 298
  2156. <span id="SYS_RECVMMSG">SYS_RECVMMSG</span> = 299
  2157. <span id="SYS_FANOTIFY_INIT">SYS_FANOTIFY_INIT</span> = 300
  2158. <span id="SYS_FANOTIFY_MARK">SYS_FANOTIFY_MARK</span> = 301
  2159. <span id="SYS_PRLIMIT64">SYS_PRLIMIT64</span> = 302
  2160. )</pre>
  2161. <pre>const (
  2162. <span id="SizeofSockaddrInet4">SizeofSockaddrInet4</span> = 0x10
  2163. <span id="SizeofSockaddrInet6">SizeofSockaddrInet6</span> = 0x1c
  2164. <span id="SizeofSockaddrAny">SizeofSockaddrAny</span> = 0x70
  2165. <span id="SizeofSockaddrUnix">SizeofSockaddrUnix</span> = 0x6e
  2166. <span id="SizeofSockaddrLinklayer">SizeofSockaddrLinklayer</span> = 0x14
  2167. <span id="SizeofSockaddrNetlink">SizeofSockaddrNetlink</span> = 0xc
  2168. <span id="SizeofLinger">SizeofLinger</span> = 0x8
  2169. <span id="SizeofIPMreq">SizeofIPMreq</span> = 0x8
  2170. <span id="SizeofIPMreqn">SizeofIPMreqn</span> = 0xc
  2171. <span id="SizeofIPv6Mreq">SizeofIPv6Mreq</span> = 0x14
  2172. <span id="SizeofMsghdr">SizeofMsghdr</span> = 0x38
  2173. <span id="SizeofCmsghdr">SizeofCmsghdr</span> = 0x10
  2174. <span id="SizeofInet4Pktinfo">SizeofInet4Pktinfo</span> = 0xc
  2175. <span id="SizeofInet6Pktinfo">SizeofInet6Pktinfo</span> = 0x14
  2176. <span id="SizeofIPv6MTUInfo">SizeofIPv6MTUInfo</span> = 0x20
  2177. <span id="SizeofICMPv6Filter">SizeofICMPv6Filter</span> = 0x20
  2178. <span id="SizeofUcred">SizeofUcred</span> = 0xc
  2179. <span id="SizeofTCPInfo">SizeofTCPInfo</span> = 0x68
  2180. )</pre>
  2181. <pre>const (
  2182. <span id="IFA_UNSPEC">IFA_UNSPEC</span> = 0x0
  2183. <span id="IFA_ADDRESS">IFA_ADDRESS</span> = 0x1
  2184. <span id="IFA_LOCAL">IFA_LOCAL</span> = 0x2
  2185. <span id="IFA_LABEL">IFA_LABEL</span> = 0x3
  2186. <span id="IFA_BROADCAST">IFA_BROADCAST</span> = 0x4
  2187. <span id="IFA_ANYCAST">IFA_ANYCAST</span> = 0x5
  2188. <span id="IFA_CACHEINFO">IFA_CACHEINFO</span> = 0x6
  2189. <span id="IFA_MULTICAST">IFA_MULTICAST</span> = 0x7
  2190. <span id="IFLA_UNSPEC">IFLA_UNSPEC</span> = 0x0
  2191. <span id="IFLA_ADDRESS">IFLA_ADDRESS</span> = 0x1
  2192. <span id="IFLA_BROADCAST">IFLA_BROADCAST</span> = 0x2
  2193. <span id="IFLA_IFNAME">IFLA_IFNAME</span> = 0x3
  2194. <span id="IFLA_MTU">IFLA_MTU</span> = 0x4
  2195. <span id="IFLA_LINK">IFLA_LINK</span> = 0x5
  2196. <span id="IFLA_QDISC">IFLA_QDISC</span> = 0x6
  2197. <span id="IFLA_STATS">IFLA_STATS</span> = 0x7
  2198. <span id="IFLA_COST">IFLA_COST</span> = 0x8
  2199. <span id="IFLA_PRIORITY">IFLA_PRIORITY</span> = 0x9
  2200. <span id="IFLA_MASTER">IFLA_MASTER</span> = 0xa
  2201. <span id="IFLA_WIRELESS">IFLA_WIRELESS</span> = 0xb
  2202. <span id="IFLA_PROTINFO">IFLA_PROTINFO</span> = 0xc
  2203. <span id="IFLA_TXQLEN">IFLA_TXQLEN</span> = 0xd
  2204. <span id="IFLA_MAP">IFLA_MAP</span> = 0xe
  2205. <span id="IFLA_WEIGHT">IFLA_WEIGHT</span> = 0xf
  2206. <span id="IFLA_OPERSTATE">IFLA_OPERSTATE</span> = 0x10
  2207. <span id="IFLA_LINKMODE">IFLA_LINKMODE</span> = 0x11
  2208. <span id="IFLA_LINKINFO">IFLA_LINKINFO</span> = 0x12
  2209. <span id="IFLA_NET_NS_PID">IFLA_NET_NS_PID</span> = 0x13
  2210. <span id="IFLA_IFALIAS">IFLA_IFALIAS</span> = 0x14
  2211. <span id="IFLA_MAX">IFLA_MAX</span> = 0x1d
  2212. <span id="RT_SCOPE_UNIVERSE">RT_SCOPE_UNIVERSE</span> = 0x0
  2213. <span id="RT_SCOPE_SITE">RT_SCOPE_SITE</span> = 0xc8
  2214. <span id="RT_SCOPE_LINK">RT_SCOPE_LINK</span> = 0xfd
  2215. <span id="RT_SCOPE_HOST">RT_SCOPE_HOST</span> = 0xfe
  2216. <span id="RT_SCOPE_NOWHERE">RT_SCOPE_NOWHERE</span> = 0xff
  2217. <span id="RT_TABLE_UNSPEC">RT_TABLE_UNSPEC</span> = 0x0
  2218. <span id="RT_TABLE_COMPAT">RT_TABLE_COMPAT</span> = 0xfc
  2219. <span id="RT_TABLE_DEFAULT">RT_TABLE_DEFAULT</span> = 0xfd
  2220. <span id="RT_TABLE_MAIN">RT_TABLE_MAIN</span> = 0xfe
  2221. <span id="RT_TABLE_LOCAL">RT_TABLE_LOCAL</span> = 0xff
  2222. <span id="RT_TABLE_MAX">RT_TABLE_MAX</span> = 0xffffffff
  2223. <span id="RTA_UNSPEC">RTA_UNSPEC</span> = 0x0
  2224. <span id="RTA_DST">RTA_DST</span> = 0x1
  2225. <span id="RTA_SRC">RTA_SRC</span> = 0x2
  2226. <span id="RTA_IIF">RTA_IIF</span> = 0x3
  2227. <span id="RTA_OIF">RTA_OIF</span> = 0x4
  2228. <span id="RTA_GATEWAY">RTA_GATEWAY</span> = 0x5
  2229. <span id="RTA_PRIORITY">RTA_PRIORITY</span> = 0x6
  2230. <span id="RTA_PREFSRC">RTA_PREFSRC</span> = 0x7
  2231. <span id="RTA_METRICS">RTA_METRICS</span> = 0x8
  2232. <span id="RTA_MULTIPATH">RTA_MULTIPATH</span> = 0x9
  2233. <span id="RTA_FLOW">RTA_FLOW</span> = 0xb
  2234. <span id="RTA_CACHEINFO">RTA_CACHEINFO</span> = 0xc
  2235. <span id="RTA_TABLE">RTA_TABLE</span> = 0xf
  2236. <span id="RTN_UNSPEC">RTN_UNSPEC</span> = 0x0
  2237. <span id="RTN_UNICAST">RTN_UNICAST</span> = 0x1
  2238. <span id="RTN_LOCAL">RTN_LOCAL</span> = 0x2
  2239. <span id="RTN_BROADCAST">RTN_BROADCAST</span> = 0x3
  2240. <span id="RTN_ANYCAST">RTN_ANYCAST</span> = 0x4
  2241. <span id="RTN_MULTICAST">RTN_MULTICAST</span> = 0x5
  2242. <span id="RTN_BLACKHOLE">RTN_BLACKHOLE</span> = 0x6
  2243. <span id="RTN_UNREACHABLE">RTN_UNREACHABLE</span> = 0x7
  2244. <span id="RTN_PROHIBIT">RTN_PROHIBIT</span> = 0x8
  2245. <span id="RTN_THROW">RTN_THROW</span> = 0x9
  2246. <span id="RTN_NAT">RTN_NAT</span> = 0xa
  2247. <span id="RTN_XRESOLVE">RTN_XRESOLVE</span> = 0xb
  2248. <span id="RTNLGRP_NONE">RTNLGRP_NONE</span> = 0x0
  2249. <span id="RTNLGRP_LINK">RTNLGRP_LINK</span> = 0x1
  2250. <span id="RTNLGRP_NOTIFY">RTNLGRP_NOTIFY</span> = 0x2
  2251. <span id="RTNLGRP_NEIGH">RTNLGRP_NEIGH</span> = 0x3
  2252. <span id="RTNLGRP_TC">RTNLGRP_TC</span> = 0x4
  2253. <span id="RTNLGRP_IPV4_IFADDR">RTNLGRP_IPV4_IFADDR</span> = 0x5
  2254. <span id="RTNLGRP_IPV4_MROUTE">RTNLGRP_IPV4_MROUTE</span> = 0x6
  2255. <span id="RTNLGRP_IPV4_ROUTE">RTNLGRP_IPV4_ROUTE</span> = 0x7
  2256. <span id="RTNLGRP_IPV4_RULE">RTNLGRP_IPV4_RULE</span> = 0x8
  2257. <span id="RTNLGRP_IPV6_IFADDR">RTNLGRP_IPV6_IFADDR</span> = 0x9
  2258. <span id="RTNLGRP_IPV6_MROUTE">RTNLGRP_IPV6_MROUTE</span> = 0xa
  2259. <span id="RTNLGRP_IPV6_ROUTE">RTNLGRP_IPV6_ROUTE</span> = 0xb
  2260. <span id="RTNLGRP_IPV6_IFINFO">RTNLGRP_IPV6_IFINFO</span> = 0xc
  2261. <span id="RTNLGRP_IPV6_PREFIX">RTNLGRP_IPV6_PREFIX</span> = 0x12
  2262. <span id="RTNLGRP_IPV6_RULE">RTNLGRP_IPV6_RULE</span> = 0x13
  2263. <span id="RTNLGRP_ND_USEROPT">RTNLGRP_ND_USEROPT</span> = 0x14
  2264. <span id="SizeofNlMsghdr">SizeofNlMsghdr</span> = 0x10
  2265. <span id="SizeofNlMsgerr">SizeofNlMsgerr</span> = 0x14
  2266. <span id="SizeofRtGenmsg">SizeofRtGenmsg</span> = 0x1
  2267. <span id="SizeofNlAttr">SizeofNlAttr</span> = 0x4
  2268. <span id="SizeofRtAttr">SizeofRtAttr</span> = 0x4
  2269. <span id="SizeofIfInfomsg">SizeofIfInfomsg</span> = 0x10
  2270. <span id="SizeofIfAddrmsg">SizeofIfAddrmsg</span> = 0x8
  2271. <span id="SizeofRtMsg">SizeofRtMsg</span> = 0xc
  2272. <span id="SizeofRtNexthop">SizeofRtNexthop</span> = 0x8
  2273. )</pre>
  2274. <pre>const (
  2275. <span id="SizeofSockFilter">SizeofSockFilter</span> = 0x8
  2276. <span id="SizeofSockFprog">SizeofSockFprog</span> = 0x10
  2277. )</pre>
  2278. <pre>const (
  2279. <span id="VINTR">VINTR</span> = 0x0
  2280. <span id="VQUIT">VQUIT</span> = 0x1
  2281. <span id="VERASE">VERASE</span> = 0x2
  2282. <span id="VKILL">VKILL</span> = 0x3
  2283. <span id="VEOF">VEOF</span> = 0x4
  2284. <span id="VTIME">VTIME</span> = 0x5
  2285. <span id="VMIN">VMIN</span> = 0x6
  2286. <span id="VSWTC">VSWTC</span> = 0x7
  2287. <span id="VSTART">VSTART</span> = 0x8
  2288. <span id="VSTOP">VSTOP</span> = 0x9
  2289. <span id="VSUSP">VSUSP</span> = 0xa
  2290. <span id="VEOL">VEOL</span> = 0xb
  2291. <span id="VREPRINT">VREPRINT</span> = 0xc
  2292. <span id="VDISCARD">VDISCARD</span> = 0xd
  2293. <span id="VWERASE">VWERASE</span> = 0xe
  2294. <span id="VLNEXT">VLNEXT</span> = 0xf
  2295. <span id="VEOL2">VEOL2</span> = 0x10
  2296. <span id="IGNBRK">IGNBRK</span> = 0x1
  2297. <span id="BRKINT">BRKINT</span> = 0x2
  2298. <span id="IGNPAR">IGNPAR</span> = 0x4
  2299. <span id="PARMRK">PARMRK</span> = 0x8
  2300. <span id="INPCK">INPCK</span> = 0x10
  2301. <span id="ISTRIP">ISTRIP</span> = 0x20
  2302. <span id="INLCR">INLCR</span> = 0x40
  2303. <span id="IGNCR">IGNCR</span> = 0x80
  2304. <span id="ICRNL">ICRNL</span> = 0x100
  2305. <span id="IUCLC">IUCLC</span> = 0x200
  2306. <span id="IXON">IXON</span> = 0x400
  2307. <span id="IXANY">IXANY</span> = 0x800
  2308. <span id="IXOFF">IXOFF</span> = 0x1000
  2309. <span id="IMAXBEL">IMAXBEL</span> = 0x2000
  2310. <span id="IUTF8">IUTF8</span> = 0x4000
  2311. <span id="OPOST">OPOST</span> = 0x1
  2312. <span id="OLCUC">OLCUC</span> = 0x2
  2313. <span id="ONLCR">ONLCR</span> = 0x4
  2314. <span id="OCRNL">OCRNL</span> = 0x8
  2315. <span id="ONOCR">ONOCR</span> = 0x10
  2316. <span id="ONLRET">ONLRET</span> = 0x20
  2317. <span id="OFILL">OFILL</span> = 0x40
  2318. <span id="OFDEL">OFDEL</span> = 0x80
  2319. <span id="B0">B0</span> = 0x0
  2320. <span id="B50">B50</span> = 0x1
  2321. <span id="B75">B75</span> = 0x2
  2322. <span id="B110">B110</span> = 0x3
  2323. <span id="B134">B134</span> = 0x4
  2324. <span id="B150">B150</span> = 0x5
  2325. <span id="B200">B200</span> = 0x6
  2326. <span id="B300">B300</span> = 0x7
  2327. <span id="B600">B600</span> = 0x8
  2328. <span id="B1200">B1200</span> = 0x9
  2329. <span id="B1800">B1800</span> = 0xa
  2330. <span id="B2400">B2400</span> = 0xb
  2331. <span id="B4800">B4800</span> = 0xc
  2332. <span id="B9600">B9600</span> = 0xd
  2333. <span id="B19200">B19200</span> = 0xe
  2334. <span id="B38400">B38400</span> = 0xf
  2335. <span id="CSIZE">CSIZE</span> = 0x30
  2336. <span id="CS5">CS5</span> = 0x0
  2337. <span id="CS6">CS6</span> = 0x10
  2338. <span id="CS7">CS7</span> = 0x20
  2339. <span id="CS8">CS8</span> = 0x30
  2340. <span id="CSTOPB">CSTOPB</span> = 0x40
  2341. <span id="CREAD">CREAD</span> = 0x80
  2342. <span id="PARENB">PARENB</span> = 0x100
  2343. <span id="PARODD">PARODD</span> = 0x200
  2344. <span id="HUPCL">HUPCL</span> = 0x400
  2345. <span id="CLOCAL">CLOCAL</span> = 0x800
  2346. <span id="B57600">B57600</span> = 0x1001
  2347. <span id="B115200">B115200</span> = 0x1002
  2348. <span id="B230400">B230400</span> = 0x1003
  2349. <span id="B460800">B460800</span> = 0x1004
  2350. <span id="B500000">B500000</span> = 0x1005
  2351. <span id="B576000">B576000</span> = 0x1006
  2352. <span id="B921600">B921600</span> = 0x1007
  2353. <span id="B1000000">B1000000</span> = 0x1008
  2354. <span id="B1152000">B1152000</span> = 0x1009
  2355. <span id="B1500000">B1500000</span> = 0x100a
  2356. <span id="B2000000">B2000000</span> = 0x100b
  2357. <span id="B2500000">B2500000</span> = 0x100c
  2358. <span id="B3000000">B3000000</span> = 0x100d
  2359. <span id="B3500000">B3500000</span> = 0x100e
  2360. <span id="B4000000">B4000000</span> = 0x100f
  2361. <span id="ISIG">ISIG</span> = 0x1
  2362. <span id="ICANON">ICANON</span> = 0x2
  2363. <span id="XCASE">XCASE</span> = 0x4
  2364. <span id="ECHO">ECHO</span> = 0x8
  2365. <span id="ECHOE">ECHOE</span> = 0x10
  2366. <span id="ECHOK">ECHOK</span> = 0x20
  2367. <span id="ECHONL">ECHONL</span> = 0x40
  2368. <span id="NOFLSH">NOFLSH</span> = 0x80
  2369. <span id="TOSTOP">TOSTOP</span> = 0x100
  2370. <span id="ECHOCTL">ECHOCTL</span> = 0x200
  2371. <span id="ECHOPRT">ECHOPRT</span> = 0x400
  2372. <span id="ECHOKE">ECHOKE</span> = 0x800
  2373. <span id="FLUSHO">FLUSHO</span> = 0x1000
  2374. <span id="PENDIN">PENDIN</span> = 0x4000
  2375. <span id="IEXTEN">IEXTEN</span> = 0x8000
  2376. <span id="TCGETS">TCGETS</span> = 0x5401
  2377. <span id="TCSETS">TCSETS</span> = 0x5402
  2378. )</pre>
  2379. <pre>const <span id="ImplementsGetwd">ImplementsGetwd</span> = <a href="../builtin/index.html#true">true</a></pre>
  2380. <pre>const (
  2381. <span id="PathMax">PathMax</span> = 0x1000
  2382. )</pre>
  2383. <pre>const <span id="SizeofInotifyEvent">SizeofInotifyEvent</span> = 0x10</pre>
  2384. <h2 id="pkg-variables">Variables</h2>
  2385. <pre>var (
  2386. <span id="Stdin">Stdin</span> = 0
  2387. <span id="Stdout">Stdout</span> = 1
  2388. <span id="Stderr">Stderr</span> = 2
  2389. )</pre>
  2390. <pre>var <span id="ForkLock">ForkLock</span> <a href="../sync/index.html">sync</a>.<a href="../sync/index.html#RWMutex">RWMutex</a></pre>
  2391. <pre>var <span id="SocketDisableIPv6">SocketDisableIPv6</span> <a href="../builtin/index.html#bool">bool</a></pre>
  2392. <p>
  2393. For testing: clients can set this flag to force
  2394. creation of IPv6 sockets to return EAFNOSUPPORT.
  2395. </p>
  2396. <h2 id="Accept">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=10740:10793#L425">Accept</a></h2>
  2397. <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>
  2398. <h2 id="Accept4">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11007:11072#L440">Accept4</a></h2>
  2399. <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>
  2400. <h2 id="Access">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=487:536#L10">Access</a></h2>
  2401. <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>
  2402. <h2 id="Acct">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=5926:5960#L226">Acct</a></h2>
  2403. <pre>func Acct(path <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2404. <h2 id="Adjtimex">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=6251:6299#L242">Adjtimex</a></h2>
  2405. <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>
  2406. <h2 id="AttachLsf">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=1411:1455#L58">AttachLsf</a></h2>
  2407. <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>
  2408. <h2 id="Bind">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4692:4734#L206">Bind</a></h2>
  2409. <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>
  2410. <h2 id="BindToDevice">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=15024:15076#L598">BindToDevice</a></h2>
  2411. <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>
  2412. <p>
  2413. BindToDevice binds the socket associated with fd to device.
  2414. </p>
  2415. <h2 id="BytePtrFromString">func <a href="http://localhost:6060/src/syscall/syscall.go?s=2673:2720#L58">BytePtrFromString</a></h2>
  2416. <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>
  2417. <p>
  2418. BytePtrFromString returns a pointer to a NUL-terminated array of
  2419. bytes containing the text of s. If s contains a NUL byte at any
  2420. location, it returns (nil, EINVAL).
  2421. </p>
  2422. <h2 id="ByteSliceFromString">func <a href="http://localhost:6060/src/syscall/syscall.go?s=2037:2087#L37">ByteSliceFromString</a></h2>
  2423. <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>
  2424. <p>
  2425. ByteSliceFromString returns a NUL-terminated slice of bytes
  2426. containing the text of s. If s contains a NUL byte at any
  2427. location, it returns (nil, EINVAL).
  2428. </p>
  2429. <h2 id="Chdir">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=6506:6541#L253">Chdir</a></h2>
  2430. <pre>func Chdir(path <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2431. <h2 id="Chmod">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=586:634#L14">Chmod</a></h2>
  2432. <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>
  2433. <h2 id="Chown">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=683:736#L18">Chown</a></h2>
  2434. <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>
  2435. <h2 id="Chroot">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=6833:6869#L269">Chroot</a></h2>
  2436. <pre>func Chroot(path <a href="../builtin/index.html#string">string</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2437. <h2 id="Clearenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=2416:2431#L115">Clearenv</a></h2>
  2438. <pre>func Clearenv()</pre>
  2439. <h2 id="Close">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7162:7192#L285">Close</a></h2>
  2440. <pre>func Close(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2441. <h2 id="CloseOnExec">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3566:3590#L86">CloseOnExec</a></h2>
  2442. <pre>func CloseOnExec(fd <a href="../builtin/index.html#int">int</a>)</pre>
  2443. <h2 id="CmsgLen">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=761:790#L16">CmsgLen</a></h2>
  2444. <pre>func CmsgLen(datalen <a href="../builtin/index.html#int">int</a>) <a href="../builtin/index.html#int">int</a></pre>
  2445. <p>
  2446. CmsgLen returns the value to store in the Len field of the Cmsghdr
  2447. structure, taking into account any necessary alignment.
  2448. </p>
  2449. <h2 id="CmsgSpace">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=955:986#L22">CmsgSpace</a></h2>
  2450. <pre>func CmsgSpace(datalen <a href="../builtin/index.html#int">int</a>) <a href="../builtin/index.html#int">int</a></pre>
  2451. <p>
  2452. CmsgSpace returns the number of bytes an ancillary element with
  2453. payload of the passed data length occupies.
  2454. </p>
  2455. <h2 id="Connect">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4828:4873#L214">Connect</a></h2>
  2456. <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>
  2457. <h2 id="Creat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=789:845#L22">Creat</a></h2>
  2458. <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>
  2459. <h2 id="DetachLsf">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=1642:1670#L65">DetachLsf</a></h2>
  2460. <pre>func DetachLsf(fd <a href="../builtin/index.html#int">int</a>) <a href="../builtin/index.html#error">error</a></pre>
  2461. <h2 id="Dup">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7361:7400#L295">Dup</a></h2>
  2462. <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>
  2463. <h2 id="Dup2">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28205:28248#L1190">Dup2</a></h2>
  2464. <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>
  2465. <h2 id="Dup3">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7585:7639#L306">Dup3</a></h2>
  2466. <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>
  2467. <h2 id="Environ">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=2624:2647#L128">Environ</a></h2>
  2468. <pre>func Environ() []<a href="../builtin/index.html#string">string</a></pre>
  2469. <h2 id="EpollCreate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=7836:7882#L316">EpollCreate</a></h2>
  2470. <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>
  2471. <h2 id="EpollCreate1">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=8078:8125#L327">EpollCreate1</a></h2>
  2472. <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>
  2473. <h2 id="EpollCtl">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=8322:8392#L338">EpollCtl</a></h2>
  2474. <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>
  2475. <h2 id="EpollWait">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=8629:8703#L348">EpollWait</a></h2>
  2476. <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>
  2477. <h2 id="Exec">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=6837:6902#L235">Exec</a></h2>
  2478. <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>
  2479. <p>
  2480. Ordinary exec.
  2481. </p>
  2482. <h2 id="Exit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9070:9089#L365">Exit</a></h2>
  2483. <pre>func Exit(code <a href="../builtin/index.html#int">int</a>)</pre>
  2484. <h2 id="Faccessat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9215:9289#L372">Faccessat</a></h2>
  2485. <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>
  2486. <h2 id="Fallocate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9633:9702#L388">Fallocate</a></h2>
  2487. <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>
  2488. <h2 id="Fchdir">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=9919:9950#L398">Fchdir</a></h2>
  2489. <pre>func Fchdir(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2490. <h2 id="Fchmod">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=10120:10164#L408">Fchmod</a></h2>
  2491. <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>
  2492. <h2 id="Fchmodat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=10346:10419#L418">Fchmodat</a></h2>
  2493. <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>
  2494. <h2 id="Fchown">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28432:28481#L1200">Fchown</a></h2>
  2495. <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>
  2496. <h2 id="Fchownat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=10762:10840#L434">Fchownat</a></h2>
  2497. <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>
  2498. <h2 id="FcntlFlock">func <a href="http://localhost:6060/src/syscall/flock.go?s=504:559#L6">FcntlFlock</a></h2>
  2499. <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>
  2500. <p>
  2501. FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
  2502. </p>
  2503. <h2 id="Fdatasync">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=11457:11491#L461">Fdatasync</a></h2>
  2504. <pre>func Fdatasync(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2505. <h2 id="Flock">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=11664:11703#L471">Flock</a></h2>
  2506. <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>
  2507. <h2 id="ForkExec">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=6486:6565#L224">ForkExec</a></h2>
  2508. <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>
  2509. <p>
  2510. Combination of fork and exec, careful to be thread safe.
  2511. </p>
  2512. <h2 id="Fstat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28673:28717#L1210">Fstat</a></h2>
  2513. <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>
  2514. <h2 id="Fstatfs">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28914:28961#L1220">Fstatfs</a></h2>
  2515. <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>
  2516. <h2 id="Fsync">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=11883:11913#L481">Fsync</a></h2>
  2517. <pre>func Fsync(fd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2518. <h2 id="Ftruncate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29159:29207#L1230">Ftruncate</a></h2>
  2519. <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>
  2520. <h2 id="Futimes">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=3602:3648#L124">Futimes</a></h2>
  2521. <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>
  2522. <h2 id="Futimesat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=3312:3376#L111">Futimesat</a></h2>
  2523. <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>
  2524. <h2 id="Getcwd">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=3791:3833#L144">Getcwd</a></h2>
  2525. <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>
  2526. <h2 id="Getdents">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12082:12134#L491">Getdents</a></h2>
  2527. <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>
  2528. <h2 id="Getegid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29394:29419#L1240">Getegid</a></h2>
  2529. <pre>func Getegid() (egid <a href="../builtin/index.html#int">int</a>)</pre>
  2530. <h2 id="Getenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=1601:1651#L61">Getenv</a></h2>
  2531. <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>
  2532. <h2 id="Geteuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29561:29586#L1248">Geteuid</a></h2>
  2533. <pre>func Geteuid() (euid <a href="../builtin/index.html#int">int</a>)</pre>
  2534. <h2 id="Getgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29728:29751#L1256">Getgid</a></h2>
  2535. <pre>func Getgid() (gid <a href="../builtin/index.html#int">int</a>)</pre>
  2536. <h2 id="Getgroups">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=4168:4208#L147">Getgroups</a></h2>
  2537. <pre>func Getgroups() (gids []<a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
  2538. <h2 id="Getpagesize">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3592:3614#L65">Getpagesize</a></h2>
  2539. <pre>func Getpagesize() <a href="../builtin/index.html#int">int</a></pre>
  2540. <h2 id="Getpgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12467:12510#L508">Getpgid</a></h2>
  2541. <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>
  2542. <h2 id="Getpgrp">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=22048:22072#L833">Getpgrp</a></h2>
  2543. <pre>func Getpgrp() (pid <a href="../builtin/index.html#int">int</a>)</pre>
  2544. <h2 id="Getpid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12702:12725#L519">Getpid</a></h2>
  2545. <pre>func Getpid() (pid <a href="../builtin/index.html#int">int</a>)</pre>
  2546. <h2 id="Getppid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=12865:12890#L527">Getppid</a></h2>
  2547. <pre>func Getppid() (ppid <a href="../builtin/index.html#int">int</a>)</pre>
  2548. <h2 id="Getpriority">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13032:13090#L535">Getpriority</a></h2>
  2549. <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>
  2550. <h2 id="Getrlimit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=29891:29945#L1264">Getrlimit</a></h2>
  2551. <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>
  2552. <h2 id="Getrusage">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13296:13347#L546">Getrusage</a></h2>
  2553. <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>
  2554. <h2 id="GetsockoptInet4Addr">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11572:11643#L467">GetsockoptInet4Addr</a></h2>
  2555. <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>
  2556. <h2 id="GetsockoptInt">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5179:5240#L231">GetsockoptInt</a></h2>
  2557. <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>
  2558. <h2 id="Gettid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13554:13577#L556">Gettid</a></h2>
  2559. <pre>func Gettid() (tid <a href="../builtin/index.html#int">int</a>)</pre>
  2560. <h2 id="Gettimeofday">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3470:3512#L57">Gettimeofday</a></h2>
  2561. <pre>func Gettimeofday(tv *<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2562. <h2 id="Getuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30155:30178#L1274">Getuid</a></h2>
  2563. <pre>func Getuid() (uid <a href="../builtin/index.html#int">int</a>)</pre>
  2564. <h2 id="Getwd">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=3864:3899#L134">Getwd</a></h2>
  2565. <pre>func Getwd() (wd <a href="../builtin/index.html#string">string</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
  2566. <h2 id="Getxattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=13717:13789#L564">Getxattr</a></h2>
  2567. <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>
  2568. <h2 id="InotifyAddWatch">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=14391:14476#L593">InotifyAddWatch</a></h2>
  2569. <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>
  2570. <h2 id="InotifyInit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30318:30356#L1282">InotifyInit</a></h2>
  2571. <pre>func InotifyInit() (fd <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
  2572. <h2 id="InotifyInit1">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=14828:14876#L610">InotifyInit1</a></h2>
  2573. <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>
  2574. <h2 id="InotifyRmWatch">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15074:15144#L621">InotifyRmWatch</a></h2>
  2575. <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>
  2576. <h2 id="Ioperm">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30540:30590#L1293">Ioperm</a></h2>
  2577. <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>
  2578. <h2 id="Iopl">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30783:30815#L1303">Iopl</a></h2>
  2579. <pre>func Iopl(level <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2580. <h2 id="Kill">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15364:15406#L632">Kill</a></h2>
  2581. <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>
  2582. <h2 id="Klogctl">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15589:15641#L642">Klogctl</a></h2>
  2583. <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>
  2584. <h2 id="Lchown">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=30986:31040#L1313">Lchown</a></h2>
  2585. <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>
  2586. <h2 id="Link">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=999:1052#L28">Link</a></h2>
  2587. <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>
  2588. <h2 id="Listen">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=31355:31392#L1329">Listen</a></h2>
  2589. <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>
  2590. <h2 id="Listxattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=15972:16032#L659">Listxattr</a></h2>
  2591. <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>
  2592. <h2 id="LsfSocket">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=456:503#L11">LsfSocket</a></h2>
  2593. <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>
  2594. <h2 id="Lstat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=31570:31619#L1339">Lstat</a></h2>
  2595. <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>
  2596. <h2 id="Madvise">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=26415:26461#L1106">Madvise</a></h2>
  2597. <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>
  2598. <h2 id="Mkdir">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1116:1164#L32">Mkdir</a></h2>
  2599. <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>
  2600. <h2 id="Mkdirat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=16492:16553#L682">Mkdirat</a></h2>
  2601. <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>
  2602. <h2 id="Mkfifo">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=6435:6484#L253">Mkfifo</a></h2>
  2603. <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>
  2604. <h2 id="Mknod">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1209:1266#L36">Mknod</a></h2>
  2605. <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>
  2606. <h2 id="Mknodat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=16872:16942#L698">Mknodat</a></h2>
  2607. <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>
  2608. <h2 id="Mlock">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=27135:27167#L1138">Mlock</a></h2>
  2609. <pre>func Mlock(b []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2610. <h2 id="Mlockall">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=27801:27837#L1170">Mlockall</a></h2>
  2611. <pre>func Mlockall(flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2612. <h2 id="Mmap">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=25022:25111#L905">Mmap</a></h2>
  2613. <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>
  2614. <h2 id="Mount">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=20289:20384#L786">Mount</a></h2>
  2615. <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>
  2616. <h2 id="Mprotect">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=26776:26821#L1122">Mprotect</a></h2>
  2617. <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>
  2618. <h2 id="Munlock">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=27466:27500#L1154">Munlock</a></h2>
  2619. <pre>func Munlock(b []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2620. <h2 id="Munlockall">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=28012:28041#L1180">Munlockall</a></h2>
  2621. <pre>func Munlockall() (err <a href="../builtin/index.html#error">error</a>)</pre>
  2622. <h2 id="Munmap">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=25170:25203#L909">Munmap</a></h2>
  2623. <pre>func Munmap(b []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2624. <h2 id="Nanosleep">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=17282:17344#L714">Nanosleep</a></h2>
  2625. <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>
  2626. <h2 id="NetlinkRIB">func <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=1612:1662#L42">NetlinkRIB</a></h2>
  2627. <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>
  2628. <p>
  2629. NetlinkRIB returns routing information base, as known as RIB, which
  2630. consists of network facility information, states and parameters.
  2631. </p>
  2632. <h2 id="Open">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1316:1381#L40">Open</a></h2>
  2633. <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>
  2634. <h2 id="Openat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1525:1604#L46">Openat</a></h2>
  2635. <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>
  2636. <h2 id="ParseDirent">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19617:19715#L763">ParseDirent</a></h2>
  2637. <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>
  2638. <h2 id="ParseNetlinkMessage">func <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=2992:3052#L106">ParseNetlinkMessage</a></h2>
  2639. <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>
  2640. <p>
  2641. ParseNetlinkMessage parses b as an array of netlink messages and
  2642. returns the slice containing the NetlinkMessage structures.
  2643. </p>
  2644. <h2 id="ParseNetlinkRouteAttr">func <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=3885:3958#L137">ParseNetlinkRouteAttr</a></h2>
  2645. <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>
  2646. <p>
  2647. ParseNetlinkRouteAttr parses m&#39;s payload as an array of netlink
  2648. route attributes and returns the slice containing the
  2649. NetlinkRouteAttr structures.
  2650. </p>
  2651. <h2 id="ParseSocketControlMessage">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=1396:1468#L38">ParseSocketControlMessage</a></h2>
  2652. <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>
  2653. <p>
  2654. ParseSocketControlMessage parses b as an array of socket control
  2655. messages.
  2656. </p>
  2657. <h2 id="ParseUnixRights">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=2625:2685#L80">ParseUnixRights</a></h2>
  2658. <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>
  2659. <p>
  2660. ParseUnixRights decodes a socket control message that contains an
  2661. integer array of open file descriptors from another process.
  2662. </p>
  2663. <h2 id="Pause">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=17567:17591#L724">Pause</a></h2>
  2664. <pre>func Pause() (err <a href="../builtin/index.html#error">error</a>)</pre>
  2665. <h2 id="Pipe">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4293:4323#L98">Pipe</a></h2>
  2666. <pre>func Pipe(p []<a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2667. <h2 id="Pipe2">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4499:4541#L111">Pipe2</a></h2>
  2668. <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>
  2669. <h2 id="PivotRoot">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=17750:17807#L734">PivotRoot</a></h2>
  2670. <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>
  2671. <h2 id="Pread">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=31939:32000#L1355">Pread</a></h2>
  2672. <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>
  2673. <h2 id="PtraceAttach">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19075:19113#L740">PtraceAttach</a></h2>
  2674. <pre>func PtraceAttach(pid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2675. <h2 id="PtraceCont">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18763:18811#L730">PtraceCont</a></h2>
  2676. <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>
  2677. <h2 id="PtraceDetach">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19159:19197#L742">PtraceDetach</a></h2>
  2678. <pre>func PtraceDetach(pid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2679. <h2 id="PtraceGetEventMsg">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18586:18639#L723">PtraceGetEventMsg</a></h2>
  2680. <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>
  2681. <h2 id="PtraceGetRegs">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18193:18253#L711">PtraceGetRegs</a></h2>
  2682. <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>
  2683. <h2 id="PtracePeekData">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=16506:16583#L648">PtracePeekData</a></h2>
  2684. <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>
  2685. <h2 id="PtracePeekText">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=16371:16448#L644">PtracePeekText</a></h2>
  2686. <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>
  2687. <h2 id="PtracePokeData">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18039:18117#L707">PtracePokeData</a></h2>
  2688. <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>
  2689. <h2 id="PtracePokeText">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=17885:17963#L703">PtracePokeText</a></h2>
  2690. <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>
  2691. <h2 id="PtraceSetOptions">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18465:18520#L719">PtraceSetOptions</a></h2>
  2692. <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>
  2693. <h2 id="PtraceSetRegs">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18332:18389#L715">PtraceSetRegs</a></h2>
  2694. <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>
  2695. <h2 id="PtraceSingleStep">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18983:19025#L738">PtraceSingleStep</a></h2>
  2696. <pre>func PtraceSingleStep(pid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2697. <h2 id="PtraceSyscall">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=18870:18921#L734">PtraceSyscall</a></h2>
  2698. <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>
  2699. <h2 id="Pwrite">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=32349:32411#L1372">Pwrite</a></h2>
  2700. <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>
  2701. <h2 id="RawSyscall">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=689:758#L20">RawSyscall</a></h2>
  2702. <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>
  2703. <h2 id="RawSyscall6">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=759:841#L21">RawSyscall6</a></h2>
  2704. <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>
  2705. <h2 id="Read">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3599:3645#L150">Read</a></h2>
  2706. <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>
  2707. <h2 id="ReadDirent">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19531:19585#L759">ReadDirent</a></h2>
  2708. <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>
  2709. <h2 id="Readlink">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1736:1793#L52">Readlink</a></h2>
  2710. <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>
  2711. <h2 id="Reboot">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=19316:19348#L746">Reboot</a></h2>
  2712. <pre>func Reboot(cmd <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2713. <h2 id="Recvfrom">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5365:5441#L238">Recvfrom</a></h2>
  2714. <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>
  2715. <h2 id="Recvmsg">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=13191:13292#L519">Recvmsg</a></h2>
  2716. <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>
  2717. <h2 id="Removexattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=18950:19004#L783">Removexattr</a></h2>
  2718. <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>
  2719. <h2 id="Rename">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1840:1895#L56">Rename</a></h2>
  2720. <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>
  2721. <h2 id="Renameat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=19435:19520#L805">Renameat</a></h2>
  2722. <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>
  2723. <h2 id="Rmdir">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=1958:1987#L60">Rmdir</a></h2>
  2724. <pre>func Rmdir(path <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
  2725. <h2 id="Seek">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=32761:32827#L1389">Seek</a></h2>
  2726. <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>
  2727. <h2 id="Select">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=33042:33129#L1400">Select</a></h2>
  2728. <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>
  2729. <h2 id="Sendfile">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=7530:7615#L313">Sendfile</a></h2>
  2730. <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>
  2731. <h2 id="Sendmsg">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=14035:14106#L553">Sendmsg</a></h2>
  2732. <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>
  2733. <h2 id="SendmsgN">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=14162:14241#L558">SendmsgN</a></h2>
  2734. <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>
  2735. <h2 id="Sendto">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5663:5728#L250">Sendto</a></h2>
  2736. <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>
  2737. <h2 id="SetLsfPromisc">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=873:918#L34">SetLsfPromisc</a></h2>
  2738. <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>
  2739. <h2 id="SetNonblock">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3627:3681#L88">SetNonblock</a></h2>
  2740. <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>
  2741. <h2 id="Setdomainname">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=19996:20036#L827">Setdomainname</a></h2>
  2742. <pre>func Setdomainname(p []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2743. <h2 id="Setenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=1928:1964#L83">Setenv</a></h2>
  2744. <pre>func Setenv(key, value <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
  2745. <h2 id="Setfsgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=33775:33809#L1422">Setfsgid</a></h2>
  2746. <pre>func Setfsgid(gid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2747. <h2 id="Setfsuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=33982:34016#L1432">Setfsuid</a></h2>
  2748. <pre>func Setfsuid(uid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2749. <h2 id="Setgid">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=23869:23901#L874">Setgid</a></h2>
  2750. <pre>func Setgid(gid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2751. <h2 id="Setgroups">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=4593:4631#L173">Setgroups</a></h2>
  2752. <pre>func Setgroups(gids []<a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2753. <h2 id="Sethostname">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=20343:20381#L843">Sethostname</a></h2>
  2754. <pre>func Sethostname(p []<a href="../builtin/index.html#byte">byte</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2755. <h2 id="Setpgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=20686:20729#L859">Setpgid</a></h2>
  2756. <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>
  2757. <h2 id="Setpriority">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=21366:21424#L890">Setpriority</a></h2>
  2758. <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>
  2759. <h2 id="Setregid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34189:34234#L1442">Setregid</a></h2>
  2760. <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>
  2761. <h2 id="Setresgid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34423:34479#L1452">Setresgid</a></h2>
  2762. <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>
  2763. <h2 id="Setresuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34681:34737#L1462">Setresuid</a></h2>
  2764. <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>
  2765. <h2 id="Setreuid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=35203:35248#L1482">Setreuid</a></h2>
  2766. <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>
  2767. <h2 id="Setrlimit">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=34939:34993#L1472">Setrlimit</a></h2>
  2768. <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>
  2769. <h2 id="Setsid">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=20916:20950#L869">Setsid</a></h2>
  2770. <pre>func Setsid() (pid <a href="../builtin/index.html#int">int</a>, err <a href="../builtin/index.html#error">error</a>)</pre>
  2771. <h2 id="SetsockoptByte">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5834:5897#L258">SetsockoptByte</a></h2>
  2772. <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>
  2773. <h2 id="SetsockoptICMPv6Filter">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6548:6623#L279">SetsockoptICMPv6Filter</a></h2>
  2774. <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>
  2775. <h2 id="SetsockoptIPMreq">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6254:6321#L271">SetsockoptIPMreq</a></h2>
  2776. <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>
  2777. <h2 id="SetsockoptIPMreqn">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=13037:13106#L515">SetsockoptIPMreqn</a></h2>
  2778. <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>
  2779. <h2 id="SetsockoptIPv6Mreq">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6398:6469#L275">SetsockoptIPv6Mreq</a></h2>
  2780. <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>
  2781. <h2 id="SetsockoptInet4Addr">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6112:6183#L267">SetsockoptInet4Addr</a></h2>
  2782. <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>
  2783. <h2 id="SetsockoptInt">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=5965:6026#L262">SetsockoptInt</a></h2>
  2784. <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>
  2785. <h2 id="SetsockoptLinger">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6708:6772#L283">SetsockoptLinger</a></h2>
  2786. <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>
  2787. <h2 id="SetsockoptString">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6846:6909#L287">SetsockoptString</a></h2>
  2788. <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>
  2789. <h2 id="SetsockoptTimeval">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=6998:7065#L291">SetsockoptTimeval</a></h2>
  2790. <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>
  2791. <h2 id="Settimeofday">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=21129:21171#L880">Settimeofday</a></h2>
  2792. <pre>func Settimeofday(tv *<a href="index.html#Timeval">Timeval</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2793. <h2 id="Setuid">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=23812:23844#L870">Setuid</a></h2>
  2794. <pre>func Setuid(uid <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2795. <h2 id="Setxattr">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=21625:21700#L900">Setxattr</a></h2>
  2796. <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>
  2797. <h2 id="Shutdown">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=35437:35479#L1492">Shutdown</a></h2>
  2798. <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>
  2799. <h2 id="SlicePtrFromStrings">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3308:3362#L73">SlicePtrFromStrings</a></h2>
  2800. <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>
  2801. <p>
  2802. SlicePtrFromStrings converts a slice of strings to a slice of
  2803. pointers to NUL-terminated byte arrays. If any string contains
  2804. a NUL byte, it returns (nil, EINVAL).
  2805. </p>
  2806. <h2 id="Socket">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=7146:7201#L295">Socket</a></h2>
  2807. <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>
  2808. <h2 id="Socketpair">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=7328:7390#L303">Socketpair</a></h2>
  2809. <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>
  2810. <h2 id="Splice">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=35662:35758#L1502">Splice</a></h2>
  2811. <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>
  2812. <h2 id="StartProcess">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=6654:6753#L229">StartProcess</a></h2>
  2813. <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>
  2814. <p>
  2815. StartProcess wraps ForkExec for package os.
  2816. </p>
  2817. <h2 id="Stat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=36046:36094#L1513">Stat</a></h2>
  2818. <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>
  2819. <h2 id="Statfs">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=36413:36464#L1529">Statfs</a></h2>
  2820. <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>
  2821. <h2 id="StringBytePtr">func <a href="http://localhost:6060/src/syscall/syscall.go?s=2429:2463#L53">StringBytePtr</a></h2>
  2822. <pre>func StringBytePtr(s <a href="../builtin/index.html#string">string</a>) *<a href="../builtin/index.html#byte">byte</a></pre>
  2823. <p>
  2824. StringBytePtr returns a pointer to a NUL-terminated array of bytes.
  2825. If s contains a NUL byte this function panics instead of returning
  2826. an error.
  2827. </p>
  2828. <p>
  2829. Deprecated: Use BytePtrFromString instead.
  2830. </p>
  2831. <h2 id="StringByteSlice">func <a href="http://localhost:6060/src/syscall/syscall.go?s=1705:1742#L26">StringByteSlice</a></h2>
  2832. <pre>func StringByteSlice(s <a href="../builtin/index.html#string">string</a>) []<a href="../builtin/index.html#byte">byte</a></pre>
  2833. <p>
  2834. StringByteSlice converts a string to a NUL-terminated []byte,
  2835. If s contains a NUL byte this function panics instead of
  2836. returning an error.
  2837. </p>
  2838. <p>
  2839. Deprecated: Use ByteSliceFromString instead.
  2840. </p>
  2841. <h2 id="StringSlicePtr">func <a href="http://localhost:6060/src/syscall/exec_unix.go?s=2962:3002#L61">StringSlicePtr</a></h2>
  2842. <pre>func StringSlicePtr(ss []<a href="../builtin/index.html#string">string</a>) []*<a href="../builtin/index.html#byte">byte</a></pre>
  2843. <p>
  2844. StringSlicePtr converts a slice of strings to a slice of pointers
  2845. to NUL-terminated byte arrays. If any string contains a NUL byte
  2846. this function panics instead of returning an error.
  2847. </p>
  2848. <p>
  2849. Deprecated: Use SlicePtrFromStrings instead.
  2850. </p>
  2851. <h2 id="Symlink">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2117:2173#L66">Symlink</a></h2>
  2852. <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>
  2853. <h2 id="Sync">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22300:22311#L928">Sync</a></h2>
  2854. <pre>func Sync()</pre>
  2855. <h2 id="SyncFileRange">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=36784:36853#L1545">SyncFileRange</a></h2>
  2856. <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>
  2857. <h2 id="Syscall">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=542:608#L18">Syscall</a></h2>
  2858. <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>
  2859. <h2 id="Syscall6">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=609:688#L19">Syscall6</a></h2>
  2860. <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>
  2861. <h2 id="Sysinfo">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22419:22460#L935">Sysinfo</a></h2>
  2862. <pre>func Sysinfo(info *<a href="index.html#Sysinfo_t">Sysinfo_t</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2863. <h2 id="Tee">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22652:22719#L945">Tee</a></h2>
  2864. <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>
  2865. <h2 id="Tgkill">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=22948:23002#L956">Tgkill</a></h2>
  2866. <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>
  2867. <h2 id="Times">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23199:23246#L966">Times</a></h2>
  2868. <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>
  2869. <h2 id="TimespecToNsec">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3831:3869#L79">TimespecToNsec</a></h2>
  2870. <pre>func TimespecToNsec(ts <a href="index.html#Timespec">Timespec</a>) <a href="../builtin/index.html#int64">int64</a></pre>
  2871. <h2 id="TimevalToNsec">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4019:4055#L87">TimevalToNsec</a></h2>
  2872. <pre>func TimevalToNsec(tv <a href="index.html#Timeval">Timeval</a>) <a href="../builtin/index.html#int64">int64</a></pre>
  2873. <h2 id="Truncate">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=37075:37127#L1555">Truncate</a></h2>
  2874. <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>
  2875. <h2 id="Umask">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23457:23491#L977">Umask</a></h2>
  2876. <pre>func Umask(mask <a href="../builtin/index.html#int">int</a>) (oldmask <a href="../builtin/index.html#int">int</a>)</pre>
  2877. <h2 id="Uname">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23646:23682#L985">Uname</a></h2>
  2878. <pre>func Uname(buf *<a href="index.html#Utsname">Utsname</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2879. <h2 id="UnixCredentials">func <a href="http://localhost:6060/src/syscall/sockcmsg_linux.go?s=367:408#L4">UnixCredentials</a></h2>
  2880. <pre>func UnixCredentials(ucred *<a href="index.html#Ucred">Ucred</a>) []<a href="../builtin/index.html#byte">byte</a></pre>
  2881. <p>
  2882. UnixCredentials encodes credentials into a socket control message
  2883. for sending to another process. This can be used for
  2884. authentication.
  2885. </p>
  2886. <h2 id="UnixRights">func <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=2144:2178#L63">UnixRights</a></h2>
  2887. <pre>func UnixRights(fds ...<a href="../builtin/index.html#int">int</a>) []<a href="../builtin/index.html#byte">byte</a></pre>
  2888. <p>
  2889. UnixRights encodes a set of open file descriptors into a socket
  2890. control message for sending to another process.
  2891. </p>
  2892. <h2 id="Unlink">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2226:2256#L70">Unlink</a></h2>
  2893. <pre>func Unlink(path <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
  2894. <h2 id="Unlinkat">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2362:2405#L76">Unlinkat</a></h2>
  2895. <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>
  2896. <h2 id="Unmount">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=23871:23921#L995">Unmount</a></h2>
  2897. <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>
  2898. <h2 id="Unsetenv">func <a href="http://localhost:6060/src/syscall/env_unix.go?s=1407:1438#L47">Unsetenv</a></h2>
  2899. <pre>func Unsetenv(key <a href="../builtin/index.html#string">string</a>) <a href="../builtin/index.html#error">error</a></pre>
  2900. <h2 id="Unshare">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=24230:24265#L1011">Unshare</a></h2>
  2901. <pre>func Unshare(flags <a href="../builtin/index.html#int">int</a>) (err <a href="../builtin/index.html#error">error</a>)</pre>
  2902. <h2 id="Ustat">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=24439:24485#L1021">Ustat</a></h2>
  2903. <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>
  2904. <h2 id="Utime">func <a href="http://localhost:6060/src/syscall/zsyscall_linux_amd64.go?s=24683:24732#L1031">Utime</a></h2>
  2905. <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>
  2906. <h2 id="Utimes">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2502:2552#L82">Utimes</a></h2>
  2907. <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>
  2908. <h2 id="UtimesNano">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=2729:2784#L91">UtimesNano</a></h2>
  2909. <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>
  2910. <h2 id="Wait4">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=6205:6296#L244">Wait4</a></h2>
  2911. <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>
  2912. <h2 id="Write">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3896:3943#L166">Write</a></h2>
  2913. <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>
  2914. <h2 id="Cmsghdr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3508:3615#L234">Cmsghdr</a></h2>
  2915. <pre>type Cmsghdr struct {
  2916. Len <a href="../builtin/index.html#uint64">uint64</a>
  2917. Level <a href="../builtin/index.html#int32">int32</a>
  2918. Type <a href="../builtin/index.html#int32">int32</a>
  2919. X__cmsg_data [0]<a href="../builtin/index.html#uint8">uint8</a>
  2920. }</pre>
  2921. <h3 id="Cmsghdr.SetLen">func (*Cmsghdr) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4935:4974#L134">SetLen</a></h3>
  2922. <pre>func (cmsg *<a href="index.html#Cmsghdr">Cmsghdr</a>) SetLen(length <a href="../builtin/index.html#int">int</a>)</pre>
  2923. <h2 id="Credential">type <a href="http://localhost:6060/src/syscall/exec_unix.go?s=3984:4114#L104">Credential</a></h2>
  2924. <pre>type Credential struct {
  2925. Uid <a href="../builtin/index.html#uint32">uint32</a> <span class="comment">// User ID.</span>
  2926. Gid <a href="../builtin/index.html#uint32">uint32</a> <span class="comment">// Group ID.</span>
  2927. Groups []<a href="../builtin/index.html#uint32">uint32</a> <span class="comment">// Supplementary group IDs.</span>
  2928. }</pre>
  2929. <p>
  2930. Credential holds user and group identities to be assumed
  2931. by a child process started by StartProcess.
  2932. </p>
  2933. <h2 id="Dirent">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1903:2035#L124">Dirent</a></h2>
  2934. <pre>type Dirent struct {
  2935. Ino <a href="../builtin/index.html#uint64">uint64</a>
  2936. Off <a href="../builtin/index.html#int64">int64</a>
  2937. Reclen <a href="../builtin/index.html#uint16">uint16</a>
  2938. Type <a href="../builtin/index.html#uint8">uint8</a>
  2939. Name [256]<a href="../builtin/index.html#int8">int8</a>
  2940. Pad_cgo_0 [5]<a href="../builtin/index.html#byte">byte</a>
  2941. }</pre>
  2942. <h2 id="EpollEvent">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=10079:10148#L578">EpollEvent</a></h2>
  2943. <pre>type EpollEvent struct {
  2944. Events <a href="../builtin/index.html#uint32">uint32</a>
  2945. Fd <a href="../builtin/index.html#int32">int32</a>
  2946. Pad <a href="../builtin/index.html#int32">int32</a>
  2947. }</pre>
  2948. <h2 id="Errno">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2471:2489#L90">Errno</a></h2>
  2949. <pre>type Errno <a href="../builtin/index.html#uintptr">uintptr</a></pre>
  2950. <p>
  2951. An Errno is an unsigned number describing an error condition.
  2952. It implements the error interface. The zero Errno is by convention
  2953. a non-error, so code to convert from Errno to error should use:
  2954. </p>
  2955. <pre>err = nil
  2956. if errno != 0 {
  2957. err = errno
  2958. }
  2959. </pre>
  2960. <h3 id="Errno.Error">func (Errno) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2491:2520#L92">Error</a></h3>
  2961. <pre>func (e <a href="index.html#Errno">Errno</a>) Error() <a href="../builtin/index.html#string">string</a></pre>
  2962. <h3 id="Errno.Temporary">func (Errno) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2651:2682#L102">Temporary</a></h3>
  2963. <pre>func (e <a href="index.html#Errno">Errno</a>) Temporary() <a href="../builtin/index.html#bool">bool</a></pre>
  2964. <h3 id="Errno.Timeout">func (Errno) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=2777:2806#L106">Timeout</a></h3>
  2965. <pre>func (e <a href="index.html#Errno">Errno</a>) Timeout() <a href="../builtin/index.html#bool">bool</a></pre>
  2966. <h2 id="FdSet">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9433:9470#L537">FdSet</a></h2>
  2967. <pre>type FdSet struct {
  2968. Bits [16]<a href="../builtin/index.html#int64">int64</a>
  2969. }</pre>
  2970. <h2 id="Flock_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2076:2222#L137">Flock_t</a></h2>
  2971. <pre>type Flock_t struct {
  2972. Type <a href="../builtin/index.html#int16">int16</a>
  2973. Whence <a href="../builtin/index.html#int16">int16</a>
  2974. Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
  2975. Start <a href="../builtin/index.html#int64">int64</a>
  2976. Len <a href="../builtin/index.html#int64">int64</a>
  2977. Pid <a href="../builtin/index.html#int32">int32</a>
  2978. Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
  2979. }</pre>
  2980. <h2 id="Fsid">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2037:2074#L133">Fsid</a></h2>
  2981. <pre>type Fsid struct {
  2982. X__val [2]<a href="../builtin/index.html#int32">int32</a>
  2983. }</pre>
  2984. <h2 id="ICMPv6Filter">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3871:3915#L257">ICMPv6Filter</a></h2>
  2985. <pre>type ICMPv6Filter struct {
  2986. Data [8]<a href="../builtin/index.html#uint32">uint32</a>
  2987. }</pre>
  2988. <h3 id="GetsockoptICMPv6Filter">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12609:12679#L501">GetsockoptICMPv6Filter</a></h3>
  2989. <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>
  2990. <h2 id="IPMreq">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3037:3125#L206">IPMreq</a></h2>
  2991. <pre>type IPMreq struct {
  2992. Multiaddr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
  2993. Interface [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
  2994. }</pre>
  2995. <h3 id="GetsockoptIPMreq">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11761:11819#L473">GetsockoptIPMreq</a></h3>
  2996. <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>
  2997. <h2 id="IPMreqn">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3127:3233#L211">IPMreqn</a></h2>
  2998. <pre>type IPMreqn struct {
  2999. Multiaddr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
  3000. Address [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
  3001. Ifindex <a href="../builtin/index.html#int32">int32</a>
  3002. }</pre>
  3003. <h3 id="GetsockoptIPMreqn">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11965:12025#L480">GetsockoptIPMreqn</a></h3>
  3004. <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>
  3005. <h2 id="IPv6MTUInfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3806:3869#L252">IPv6MTUInfo</a></h2>
  3006. <pre>type IPv6MTUInfo struct {
  3007. Addr <a href="index.html#RawSockaddrInet6">RawSockaddrInet6</a>
  3008. Mtu <a href="../builtin/index.html#uint32">uint32</a>
  3009. }</pre>
  3010. <h3 id="GetsockoptIPv6MTUInfo">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12385:12453#L494">GetsockoptIPv6MTUInfo</a></h3>
  3011. <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>
  3012. <h2 id="IPv6Mreq">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3235:3312#L217">IPv6Mreq</a></h2>
  3013. <pre>type IPv6Mreq struct {
  3014. Multiaddr [16]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in6_addr */</span>
  3015. Interface <a href="../builtin/index.html#uint32">uint32</a>
  3016. }</pre>
  3017. <h3 id="GetsockoptIPv6Mreq">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12173:12235#L487">GetsockoptIPv6Mreq</a></h3>
  3018. <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>
  3019. <h2 id="IfAddrmsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8213:8324#L452">IfAddrmsg</a></h2>
  3020. <pre>type IfAddrmsg struct {
  3021. Family <a href="../builtin/index.html#uint8">uint8</a>
  3022. Prefixlen <a href="../builtin/index.html#uint8">uint8</a>
  3023. Flags <a href="../builtin/index.html#uint8">uint8</a>
  3024. Scope <a href="../builtin/index.html#uint8">uint8</a>
  3025. Index <a href="../builtin/index.html#uint32">uint32</a>
  3026. }</pre>
  3027. <h2 id="IfInfomsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8075:8211#L443">IfInfomsg</a></h2>
  3028. <pre>type IfInfomsg struct {
  3029. Family <a href="../builtin/index.html#uint8">uint8</a>
  3030. X__ifi_pad <a href="../builtin/index.html#uint8">uint8</a>
  3031. Type <a href="../builtin/index.html#uint16">uint16</a>
  3032. Index <a href="../builtin/index.html#int32">int32</a>
  3033. Flags <a href="../builtin/index.html#uint32">uint32</a>
  3034. Change <a href="../builtin/index.html#uint32">uint32</a>
  3035. }</pre>
  3036. <h2 id="Inet4Pktinfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3617:3725#L241">Inet4Pktinfo</a></h2>
  3037. <pre>type Inet4Pktinfo struct {
  3038. Ifindex <a href="../builtin/index.html#int32">int32</a>
  3039. Spec_dst [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
  3040. Addr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
  3041. }</pre>
  3042. <h2 id="Inet6Pktinfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3727:3804#L247">Inet6Pktinfo</a></h2>
  3043. <pre>type Inet6Pktinfo struct {
  3044. Addr [16]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in6_addr */</span>
  3045. Ifindex <a href="../builtin/index.html#uint32">uint32</a>
  3046. }</pre>
  3047. <h2 id="InotifyEvent">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8807:8911#L497">InotifyEvent</a></h2>
  3048. <pre>type InotifyEvent struct {
  3049. Wd <a href="../builtin/index.html#int32">int32</a>
  3050. Mask <a href="../builtin/index.html#uint32">uint32</a>
  3051. Cookie <a href="../builtin/index.html#uint32">uint32</a>
  3052. Len <a href="../builtin/index.html#uint32">uint32</a>
  3053. Name [0]<a href="../builtin/index.html#uint8">uint8</a>
  3054. }</pre>
  3055. <h2 id="Iovec">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2989:3035#L201">Iovec</a></h2>
  3056. <pre>type Iovec struct {
  3057. Base *<a href="../builtin/index.html#byte">byte</a>
  3058. Len <a href="../builtin/index.html#uint64">uint64</a>
  3059. }</pre>
  3060. <h3 id="Iovec.SetLen">func (*Iovec) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4778:4814#L126">SetLen</a></h3>
  3061. <pre>func (iov *<a href="index.html#Iovec">Iovec</a>) SetLen(length <a href="../builtin/index.html#int">int</a>)</pre>
  3062. <h2 id="Linger">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2937:2987#L196">Linger</a></h2>
  3063. <pre>type Linger struct {
  3064. Onoff <a href="../builtin/index.html#int32">int32</a>
  3065. Linger <a href="../builtin/index.html#int32">int32</a>
  3066. }</pre>
  3067. <h2 id="Msghdr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3314:3506#L222">Msghdr</a></h2>
  3068. <pre>type Msghdr struct {
  3069. Name *<a href="../builtin/index.html#byte">byte</a>
  3070. Namelen <a href="../builtin/index.html#uint32">uint32</a>
  3071. Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
  3072. Iov *<a href="index.html#Iovec">Iovec</a>
  3073. Iovlen <a href="../builtin/index.html#uint64">uint64</a>
  3074. Control *<a href="../builtin/index.html#byte">byte</a>
  3075. Controllen <a href="../builtin/index.html#uint64">uint64</a>
  3076. Flags <a href="../builtin/index.html#int32">int32</a>
  3077. Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
  3078. }</pre>
  3079. <h3 id="Msghdr.SetControllen">func (*Msghdr) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4846:4893#L130">SetControllen</a></h3>
  3080. <pre>func (msghdr *<a href="index.html#Msghdr">Msghdr</a>) SetControllen(length <a href="../builtin/index.html#int">int</a>)</pre>
  3081. <h2 id="NetlinkMessage">type <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=2797:2859#L99">NetlinkMessage</a></h2>
  3082. <pre>type NetlinkMessage struct {
  3083. Header <a href="index.html#NlMsghdr">NlMsghdr</a>
  3084. Data []<a href="../builtin/index.html#byte">byte</a>
  3085. }</pre>
  3086. <p>
  3087. NetlinkMessage represents a netlink message.
  3088. </p>
  3089. <h2 id="NetlinkRouteAttr">type <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=3667:3727#L129">NetlinkRouteAttr</a></h2>
  3090. <pre>type NetlinkRouteAttr struct {
  3091. Attr <a href="index.html#RtAttr">RtAttr</a>
  3092. Value []<a href="../builtin/index.html#byte">byte</a>
  3093. }</pre>
  3094. <p>
  3095. NetlinkRouteAttr represents a netlink route attribute.
  3096. </p>
  3097. <h2 id="NetlinkRouteRequest">type <a href="http://localhost:6060/src/syscall/netlink_linux.go?s=670:739#L14">NetlinkRouteRequest</a></h2>
  3098. <pre>type NetlinkRouteRequest struct {
  3099. Header <a href="index.html#NlMsghdr">NlMsghdr</a>
  3100. Data <a href="index.html#RtGenmsg">RtGenmsg</a>
  3101. }</pre>
  3102. <p>
  3103. NetlinkRouteRequest represents a request message to receive routing
  3104. and link states from the kernel.
  3105. </p>
  3106. <h2 id="NlAttr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7975:8023#L433">NlAttr</a></h2>
  3107. <pre>type NlAttr struct {
  3108. Len <a href="../builtin/index.html#uint16">uint16</a>
  3109. Type <a href="../builtin/index.html#uint16">uint16</a>
  3110. }</pre>
  3111. <h2 id="NlMsgerr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7880:7933#L424">NlMsgerr</a></h2>
  3112. <pre>type NlMsgerr struct {
  3113. Error <a href="../builtin/index.html#int32">int32</a>
  3114. Msg <a href="index.html#NlMsghdr">NlMsghdr</a>
  3115. }</pre>
  3116. <h2 id="NlMsghdr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7784:7878#L416">NlMsghdr</a></h2>
  3117. <pre>type NlMsghdr struct {
  3118. Len <a href="../builtin/index.html#uint32">uint32</a>
  3119. Type <a href="../builtin/index.html#uint16">uint16</a>
  3120. Flags <a href="../builtin/index.html#uint16">uint16</a>
  3121. Seq <a href="../builtin/index.html#uint32">uint32</a>
  3122. Pid <a href="../builtin/index.html#uint32">uint32</a>
  3123. }</pre>
  3124. <h2 id="ProcAttr">type <a href="http://localhost:6060/src/syscall/exec_unix.go?s=4211:4373#L112">ProcAttr</a></h2>
  3125. <pre>type ProcAttr struct {
  3126. Dir <a href="../builtin/index.html#string">string</a> <span class="comment">// Current working directory.</span>
  3127. Env []<a href="../builtin/index.html#string">string</a> <span class="comment">// Environment.</span>
  3128. Files []<a href="../builtin/index.html#uintptr">uintptr</a> <span class="comment">// File descriptors.</span>
  3129. Sys *<a href="index.html#SysProcAttr">SysProcAttr</a>
  3130. }</pre>
  3131. <p>
  3132. ProcAttr holds attributes that will be applied to a new process started
  3133. by StartProcess.
  3134. </p>
  3135. <h2 id="PtraceRegs">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8946:9431#L507">PtraceRegs</a></h2>
  3136. <pre>type PtraceRegs struct {
  3137. R15 <a href="../builtin/index.html#uint64">uint64</a>
  3138. R14 <a href="../builtin/index.html#uint64">uint64</a>
  3139. R13 <a href="../builtin/index.html#uint64">uint64</a>
  3140. R12 <a href="../builtin/index.html#uint64">uint64</a>
  3141. Rbp <a href="../builtin/index.html#uint64">uint64</a>
  3142. Rbx <a href="../builtin/index.html#uint64">uint64</a>
  3143. R11 <a href="../builtin/index.html#uint64">uint64</a>
  3144. R10 <a href="../builtin/index.html#uint64">uint64</a>
  3145. R9 <a href="../builtin/index.html#uint64">uint64</a>
  3146. R8 <a href="../builtin/index.html#uint64">uint64</a>
  3147. Rax <a href="../builtin/index.html#uint64">uint64</a>
  3148. Rcx <a href="../builtin/index.html#uint64">uint64</a>
  3149. Rdx <a href="../builtin/index.html#uint64">uint64</a>
  3150. Rsi <a href="../builtin/index.html#uint64">uint64</a>
  3151. Rdi <a href="../builtin/index.html#uint64">uint64</a>
  3152. Orig_rax <a href="../builtin/index.html#uint64">uint64</a>
  3153. Rip <a href="../builtin/index.html#uint64">uint64</a>
  3154. Cs <a href="../builtin/index.html#uint64">uint64</a>
  3155. Eflags <a href="../builtin/index.html#uint64">uint64</a>
  3156. Rsp <a href="../builtin/index.html#uint64">uint64</a>
  3157. Ss <a href="../builtin/index.html#uint64">uint64</a>
  3158. Fs_base <a href="../builtin/index.html#uint64">uint64</a>
  3159. Gs_base <a href="../builtin/index.html#uint64">uint64</a>
  3160. Ds <a href="../builtin/index.html#uint64">uint64</a>
  3161. Es <a href="../builtin/index.html#uint64">uint64</a>
  3162. Fs <a href="../builtin/index.html#uint64">uint64</a>
  3163. Gs <a href="../builtin/index.html#uint64">uint64</a>
  3164. }</pre>
  3165. <h3 id="PtraceRegs.PC">func (*PtraceRegs) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4673:4705#L122">PC</a></h3>
  3166. <pre>func (r *<a href="index.html#PtraceRegs">PtraceRegs</a>) PC() <a href="../builtin/index.html#uint64">uint64</a></pre>
  3167. <h3 id="PtraceRegs.SetPC">func (*PtraceRegs) <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4724:4761#L124">SetPC</a></h3>
  3168. <pre>func (r *<a href="index.html#PtraceRegs">PtraceRegs</a>) SetPC(pc <a href="../builtin/index.html#uint64">uint64</a>)</pre>
  3169. <h2 id="RawSockaddr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2789:2848#L184">RawSockaddr</a></h2>
  3170. <pre>type RawSockaddr struct {
  3171. Family <a href="../builtin/index.html#uint16">uint16</a>
  3172. Data [14]<a href="../builtin/index.html#int8">int8</a>
  3173. }</pre>
  3174. <h2 id="RawSockaddrAny">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2850:2913#L189">RawSockaddrAny</a></h2>
  3175. <pre>type RawSockaddrAny struct {
  3176. Addr <a href="index.html#RawSockaddr">RawSockaddr</a>
  3177. Pad [96]<a href="../builtin/index.html#int8">int8</a>
  3178. }</pre>
  3179. <h2 id="RawSockaddrInet4">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2224:2333#L147">RawSockaddrInet4</a></h2>
  3180. <pre>type RawSockaddrInet4 struct {
  3181. Family <a href="../builtin/index.html#uint16">uint16</a>
  3182. Port <a href="../builtin/index.html#uint16">uint16</a>
  3183. Addr [4]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in_addr */</span>
  3184. Zero [8]<a href="../builtin/index.html#uint8">uint8</a>
  3185. }</pre>
  3186. <h2 id="RawSockaddrInet6">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2335:2469#L154">RawSockaddrInet6</a></h2>
  3187. <pre>type RawSockaddrInet6 struct {
  3188. Family <a href="../builtin/index.html#uint16">uint16</a>
  3189. Port <a href="../builtin/index.html#uint16">uint16</a>
  3190. Flowinfo <a href="../builtin/index.html#uint32">uint32</a>
  3191. Addr [16]<a href="../builtin/index.html#byte">byte</a> <span class="comment">/* in6_addr */</span>
  3192. Scope_id <a href="../builtin/index.html#uint32">uint32</a>
  3193. }</pre>
  3194. <h2 id="RawSockaddrLinklayer">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2537:2691#L167">RawSockaddrLinklayer</a></h2>
  3195. <pre>type RawSockaddrLinklayer struct {
  3196. Family <a href="../builtin/index.html#uint16">uint16</a>
  3197. Protocol <a href="../builtin/index.html#uint16">uint16</a>
  3198. Ifindex <a href="../builtin/index.html#int32">int32</a>
  3199. Hatype <a href="../builtin/index.html#uint16">uint16</a>
  3200. Pkttype <a href="../builtin/index.html#uint8">uint8</a>
  3201. Halen <a href="../builtin/index.html#uint8">uint8</a>
  3202. Addr [8]<a href="../builtin/index.html#uint8">uint8</a>
  3203. }</pre>
  3204. <h2 id="RawSockaddrNetlink">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2693:2787#L177">RawSockaddrNetlink</a></h2>
  3205. <pre>type RawSockaddrNetlink struct {
  3206. Family <a href="../builtin/index.html#uint16">uint16</a>
  3207. Pad <a href="../builtin/index.html#uint16">uint16</a>
  3208. Pid <a href="../builtin/index.html#uint32">uint32</a>
  3209. Groups <a href="../builtin/index.html#uint32">uint32</a>
  3210. }</pre>
  3211. <h2 id="RawSockaddrUnix">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=2471:2535#L162">RawSockaddrUnix</a></h2>
  3212. <pre>type RawSockaddrUnix struct {
  3213. Family <a href="../builtin/index.html#uint16">uint16</a>
  3214. Path [108]<a href="../builtin/index.html#int8">int8</a>
  3215. }</pre>
  3216. <h2 id="Rlimit">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1324:1370#L84">Rlimit</a></h2>
  3217. <pre>type Rlimit struct {
  3218. Cur <a href="../builtin/index.html#uint64">uint64</a>
  3219. Max <a href="../builtin/index.html#uint64">uint64</a>
  3220. }</pre>
  3221. <h2 id="RtAttr">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8025:8073#L438">RtAttr</a></h2>
  3222. <pre>type RtAttr struct {
  3223. Len <a href="../builtin/index.html#uint16">uint16</a>
  3224. Type <a href="../builtin/index.html#uint16">uint16</a>
  3225. }</pre>
  3226. <h2 id="RtGenmsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=7935:7973#L429">RtGenmsg</a></h2>
  3227. <pre>type RtGenmsg struct {
  3228. Family <a href="../builtin/index.html#uint8">uint8</a>
  3229. }</pre>
  3230. <h2 id="RtMsg">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8326:8492#L460">RtMsg</a></h2>
  3231. <pre>type RtMsg struct {
  3232. Family <a href="../builtin/index.html#uint8">uint8</a>
  3233. Dst_len <a href="../builtin/index.html#uint8">uint8</a>
  3234. Src_len <a href="../builtin/index.html#uint8">uint8</a>
  3235. Tos <a href="../builtin/index.html#uint8">uint8</a>
  3236. Table <a href="../builtin/index.html#uint8">uint8</a>
  3237. Protocol <a href="../builtin/index.html#uint8">uint8</a>
  3238. Scope <a href="../builtin/index.html#uint8">uint8</a>
  3239. Type <a href="../builtin/index.html#uint8">uint8</a>
  3240. Flags <a href="../builtin/index.html#uint32">uint32</a>
  3241. }</pre>
  3242. <h2 id="RtNexthop">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8494:8580#L472">RtNexthop</a></h2>
  3243. <pre>type RtNexthop struct {
  3244. Len <a href="../builtin/index.html#uint16">uint16</a>
  3245. Flags <a href="../builtin/index.html#uint8">uint8</a>
  3246. Hops <a href="../builtin/index.html#uint8">uint8</a>
  3247. Ifindex <a href="../builtin/index.html#int32">int32</a>
  3248. }</pre>
  3249. <h2 id="Rusage">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1040:1322#L65">Rusage</a></h2>
  3250. <pre>type Rusage struct {
  3251. Utime <a href="index.html#Timeval">Timeval</a>
  3252. Stime <a href="index.html#Timeval">Timeval</a>
  3253. Maxrss <a href="../builtin/index.html#int64">int64</a>
  3254. Ixrss <a href="../builtin/index.html#int64">int64</a>
  3255. Idrss <a href="../builtin/index.html#int64">int64</a>
  3256. Isrss <a href="../builtin/index.html#int64">int64</a>
  3257. Minflt <a href="../builtin/index.html#int64">int64</a>
  3258. Majflt <a href="../builtin/index.html#int64">int64</a>
  3259. Nswap <a href="../builtin/index.html#int64">int64</a>
  3260. Inblock <a href="../builtin/index.html#int64">int64</a>
  3261. Oublock <a href="../builtin/index.html#int64">int64</a>
  3262. Msgsnd <a href="../builtin/index.html#int64">int64</a>
  3263. Msgrcv <a href="../builtin/index.html#int64">int64</a>
  3264. Nsignals <a href="../builtin/index.html#int64">int64</a>
  3265. Nvcsw <a href="../builtin/index.html#int64">int64</a>
  3266. Nivcsw <a href="../builtin/index.html#int64">int64</a>
  3267. }</pre>
  3268. <h2 id="Signal">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3387:3402#L136">Signal</a></h2>
  3269. <pre>type Signal <a href="../builtin/index.html#int">int</a></pre>
  3270. <p>
  3271. A Signal is a number describing a process signal.
  3272. It implements the os.Signal interface.
  3273. </p>
  3274. <h3 id="Signal.Signal">func (Signal) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3404:3428#L138">Signal</a></h3>
  3275. <pre>func (s <a href="index.html#Signal">Signal</a>) Signal()</pre>
  3276. <h3 id="Signal.String">func (Signal) <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=3433:3464#L140">String</a></h3>
  3277. <pre>func (s <a href="index.html#Signal">Signal</a>) String() <a href="../builtin/index.html#string">string</a></pre>
  3278. <h2 id="SockFilter">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8642:8718#L484">SockFilter</a></h2>
  3279. <pre>type SockFilter struct {
  3280. Code <a href="../builtin/index.html#uint16">uint16</a>
  3281. Jt <a href="../builtin/index.html#uint8">uint8</a>
  3282. Jf <a href="../builtin/index.html#uint8">uint8</a>
  3283. K <a href="../builtin/index.html#uint32">uint32</a>
  3284. }</pre>
  3285. <h3 id="LsfJump">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=321:366#L7">LsfJump</a></h3>
  3286. <pre>func LsfJump(code, k, jt, jf <a href="../builtin/index.html#int">int</a>) *<a href="index.html#SockFilter">SockFilter</a></pre>
  3287. <h3 id="LsfStmt">func <a href="http://localhost:6060/src/syscall/lsf_linux.go?s=224:261#L3">LsfStmt</a></h3>
  3288. <pre>func LsfStmt(code, k <a href="../builtin/index.html#int">int</a>) *<a href="index.html#SockFilter">SockFilter</a></pre>
  3289. <h2 id="SockFprog">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=8720:8805#L491">SockFprog</a></h2>
  3290. <pre>type SockFprog struct {
  3291. Len <a href="../builtin/index.html#uint16">uint16</a>
  3292. Pad_cgo_0 [6]<a href="../builtin/index.html#byte">byte</a>
  3293. Filter *<a href="index.html#SockFilter">SockFilter</a>
  3294. }</pre>
  3295. <h2 id="Sockaddr">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4319:4447#L184">Sockaddr</a></h2>
  3296. <pre>type Sockaddr interface {
  3297. <span class="comment">// contains filtered or unexported methods</span>
  3298. }</pre>
  3299. <h3 id="Getpeername">func <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4970:5019#L222">Getpeername</a></h3>
  3300. <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>
  3301. <h3 id="Getsockname">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=11363:11412#L458">Getsockname</a></h3>
  3302. <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>
  3303. <h2 id="SockaddrInet4">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4449:4525#L188">SockaddrInet4</a></h2>
  3304. <pre>type SockaddrInet4 struct {
  3305. Port <a href="../builtin/index.html#int">int</a>
  3306. Addr [4]<a href="../builtin/index.html#byte">byte</a>
  3307. <span class="comment">// contains filtered or unexported fields</span>
  3308. }</pre>
  3309. <h2 id="SockaddrInet6">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4527:4625#L194">SockaddrInet6</a></h2>
  3310. <pre>type SockaddrInet6 struct {
  3311. Port <a href="../builtin/index.html#int">int</a>
  3312. ZoneId <a href="../builtin/index.html#uint32">uint32</a>
  3313. Addr [16]<a href="../builtin/index.html#byte">byte</a>
  3314. <span class="comment">// contains filtered or unexported fields</span>
  3315. }</pre>
  3316. <h2 id="SockaddrLinklayer">type <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=7837:7999#L310">SockaddrLinklayer</a></h2>
  3317. <pre>type SockaddrLinklayer struct {
  3318. Protocol <a href="../builtin/index.html#uint16">uint16</a>
  3319. Ifindex <a href="../builtin/index.html#int">int</a>
  3320. Hatype <a href="../builtin/index.html#uint16">uint16</a>
  3321. Pkttype <a href="../builtin/index.html#uint8">uint8</a>
  3322. Halen <a href="../builtin/index.html#uint8">uint8</a>
  3323. Addr [8]<a href="../builtin/index.html#byte">byte</a>
  3324. <span class="comment">// contains filtered or unexported fields</span>
  3325. }</pre>
  3326. <h2 id="SockaddrNetlink">type <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=8462:8580#L336">SockaddrNetlink</a></h2>
  3327. <pre>type SockaddrNetlink struct {
  3328. Family <a href="../builtin/index.html#uint16">uint16</a>
  3329. Pad <a href="../builtin/index.html#uint16">uint16</a>
  3330. Pid <a href="../builtin/index.html#uint32">uint32</a>
  3331. Groups <a href="../builtin/index.html#uint32">uint32</a>
  3332. <span class="comment">// contains filtered or unexported fields</span>
  3333. }</pre>
  3334. <h2 id="SockaddrUnix">type <a href="http://localhost:6060/src/syscall/syscall_unix.go?s=4627:4690#L201">SockaddrUnix</a></h2>
  3335. <pre>type SockaddrUnix struct {
  3336. Name <a href="../builtin/index.html#string">string</a>
  3337. <span class="comment">// contains filtered or unexported fields</span>
  3338. }</pre>
  3339. <h2 id="SocketControlMessage">type <a href="http://localhost:6060/src/syscall/sockcmsg_unix.go?s=1246:1313#L31">SocketControlMessage</a></h2>
  3340. <pre>type SocketControlMessage struct {
  3341. Header <a href="index.html#Cmsghdr">Cmsghdr</a>
  3342. Data []<a href="../builtin/index.html#byte">byte</a>
  3343. }</pre>
  3344. <p>
  3345. SocketControlMessage represents a socket control message.
  3346. </p>
  3347. <h2 id="Stat_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1392:1688#L91">Stat_t</a></h2>
  3348. <pre>type Stat_t struct {
  3349. Dev <a href="../builtin/index.html#uint64">uint64</a>
  3350. Ino <a href="../builtin/index.html#uint64">uint64</a>
  3351. Nlink <a href="../builtin/index.html#uint64">uint64</a>
  3352. Mode <a href="../builtin/index.html#uint32">uint32</a>
  3353. Uid <a href="../builtin/index.html#uint32">uint32</a>
  3354. Gid <a href="../builtin/index.html#uint32">uint32</a>
  3355. X__pad0 <a href="../builtin/index.html#int32">int32</a>
  3356. Rdev <a href="../builtin/index.html#uint64">uint64</a>
  3357. Size <a href="../builtin/index.html#int64">int64</a>
  3358. Blksize <a href="../builtin/index.html#int64">int64</a>
  3359. Blocks <a href="../builtin/index.html#int64">int64</a>
  3360. Atim <a href="index.html#Timespec">Timespec</a>
  3361. Mtim <a href="index.html#Timespec">Timespec</a>
  3362. Ctim <a href="index.html#Timespec">Timespec</a>
  3363. X__unused [3]<a href="../builtin/index.html#int64">int64</a>
  3364. }</pre>
  3365. <h2 id="Statfs_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=1690:1901#L109">Statfs_t</a></h2>
  3366. <pre>type Statfs_t struct {
  3367. Type <a href="../builtin/index.html#int64">int64</a>
  3368. Bsize <a href="../builtin/index.html#int64">int64</a>
  3369. Blocks <a href="../builtin/index.html#uint64">uint64</a>
  3370. Bfree <a href="../builtin/index.html#uint64">uint64</a>
  3371. Bavail <a href="../builtin/index.html#uint64">uint64</a>
  3372. Files <a href="../builtin/index.html#uint64">uint64</a>
  3373. Ffree <a href="../builtin/index.html#uint64">uint64</a>
  3374. Fsid <a href="index.html#Fsid">Fsid</a>
  3375. Namelen <a href="../builtin/index.html#int64">int64</a>
  3376. Frsize <a href="../builtin/index.html#int64">int64</a>
  3377. Flags <a href="../builtin/index.html#int64">int64</a>
  3378. Spare [4]<a href="../builtin/index.html#int64">int64</a>
  3379. }</pre>
  3380. <h2 id="SysProcAttr">type <a href="http://localhost:6060/src/syscall/exec_linux.go?s=452:1770#L11">SysProcAttr</a></h2>
  3381. <pre>type SysProcAttr struct {
  3382. Chroot <a href="../builtin/index.html#string">string</a> <span class="comment">// Chroot.</span>
  3383. Credential *<a href="index.html#Credential">Credential</a> <span class="comment">// Credential.</span>
  3384. Ptrace <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Enable tracing.</span>
  3385. Setsid <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Create session.</span>
  3386. 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>
  3387. 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>
  3388. Noctty <a href="../builtin/index.html#bool">bool</a> <span class="comment">// Detach fd 0 from controlling terminal</span>
  3389. Ctty <a href="../builtin/index.html#int">int</a> <span class="comment">// Controlling TTY fd</span>
  3390. 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>
  3391. Pgid <a href="../builtin/index.html#int">int</a> <span class="comment">// Child&#39;s process group ID if Setpgid.</span>
  3392. Pdeathsig <a href="index.html#Signal">Signal</a> <span class="comment">// Signal that the process will get when its parent dies (Linux only)</span>
  3393. Cloneflags <a href="../builtin/index.html#uintptr">uintptr</a> <span class="comment">// Flags for clone calls (Linux only)</span>
  3394. UidMappings []<a href="index.html#SysProcIDMap">SysProcIDMap</a> <span class="comment">// User ID mappings for user namespaces.</span>
  3395. GidMappings []<a href="index.html#SysProcIDMap">SysProcIDMap</a> <span class="comment">// Group ID mappings for user namespaces.</span>
  3396. <span class="comment">// GidMappingsEnableSetgroups enabling setgroups syscall.</span>
  3397. <span class="comment">// If false, then setgroups syscall will be disabled for the child process.</span>
  3398. <span class="comment">// This parameter is no-op if GidMappings == nil. Otherwise for unprivileged</span>
  3399. <span class="comment">// users this should be set to false for mappings work.</span>
  3400. GidMappingsEnableSetgroups <a href="../builtin/index.html#bool">bool</a>
  3401. }</pre>
  3402. <h2 id="SysProcIDMap">type <a href="http://localhost:6060/src/syscall/exec_linux.go?s=333:450#L5">SysProcIDMap</a></h2>
  3403. <pre>type SysProcIDMap struct {
  3404. ContainerID <a href="../builtin/index.html#int">int</a> <span class="comment">// Container ID.</span>
  3405. HostID <a href="../builtin/index.html#int">int</a> <span class="comment">// Host ID.</span>
  3406. Size <a href="../builtin/index.html#int">int</a> <span class="comment">// Size.</span>
  3407. }</pre>
  3408. <p>
  3409. SysProcIDMap holds Container ID to Host ID mappings used for User Namespaces in Linux.
  3410. See user_namespaces(7).
  3411. </p>
  3412. <h2 id="Sysinfo_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9472:9790#L541">Sysinfo_t</a></h2>
  3413. <pre>type Sysinfo_t struct {
  3414. Uptime <a href="../builtin/index.html#int64">int64</a>
  3415. Loads [3]<a href="../builtin/index.html#uint64">uint64</a>
  3416. Totalram <a href="../builtin/index.html#uint64">uint64</a>
  3417. Freeram <a href="../builtin/index.html#uint64">uint64</a>
  3418. Sharedram <a href="../builtin/index.html#uint64">uint64</a>
  3419. Bufferram <a href="../builtin/index.html#uint64">uint64</a>
  3420. Totalswap <a href="../builtin/index.html#uint64">uint64</a>
  3421. Freeswap <a href="../builtin/index.html#uint64">uint64</a>
  3422. Procs <a href="../builtin/index.html#uint16">uint16</a>
  3423. Pad <a href="../builtin/index.html#uint16">uint16</a>
  3424. Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
  3425. Totalhigh <a href="../builtin/index.html#uint64">uint64</a>
  3426. Freehigh <a href="../builtin/index.html#uint64">uint64</a>
  3427. Unit <a href="../builtin/index.html#uint32">uint32</a>
  3428. X_f [0]<a href="../builtin/index.html#byte">byte</a>
  3429. Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
  3430. }</pre>
  3431. <h2 id="TCPInfo">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3975:4706#L267">TCPInfo</a></h2>
  3432. <pre>type TCPInfo struct {
  3433. State <a href="../builtin/index.html#uint8">uint8</a>
  3434. Ca_state <a href="../builtin/index.html#uint8">uint8</a>
  3435. Retransmits <a href="../builtin/index.html#uint8">uint8</a>
  3436. Probes <a href="../builtin/index.html#uint8">uint8</a>
  3437. Backoff <a href="../builtin/index.html#uint8">uint8</a>
  3438. Options <a href="../builtin/index.html#uint8">uint8</a>
  3439. Pad_cgo_0 [2]<a href="../builtin/index.html#byte">byte</a>
  3440. Rto <a href="../builtin/index.html#uint32">uint32</a>
  3441. Ato <a href="../builtin/index.html#uint32">uint32</a>
  3442. Snd_mss <a href="../builtin/index.html#uint32">uint32</a>
  3443. Rcv_mss <a href="../builtin/index.html#uint32">uint32</a>
  3444. Unacked <a href="../builtin/index.html#uint32">uint32</a>
  3445. Sacked <a href="../builtin/index.html#uint32">uint32</a>
  3446. Lost <a href="../builtin/index.html#uint32">uint32</a>
  3447. Retrans <a href="../builtin/index.html#uint32">uint32</a>
  3448. Fackets <a href="../builtin/index.html#uint32">uint32</a>
  3449. Last_data_sent <a href="../builtin/index.html#uint32">uint32</a>
  3450. Last_ack_sent <a href="../builtin/index.html#uint32">uint32</a>
  3451. Last_data_recv <a href="../builtin/index.html#uint32">uint32</a>
  3452. Last_ack_recv <a href="../builtin/index.html#uint32">uint32</a>
  3453. Pmtu <a href="../builtin/index.html#uint32">uint32</a>
  3454. Rcv_ssthresh <a href="../builtin/index.html#uint32">uint32</a>
  3455. Rtt <a href="../builtin/index.html#uint32">uint32</a>
  3456. Rttvar <a href="../builtin/index.html#uint32">uint32</a>
  3457. Snd_ssthresh <a href="../builtin/index.html#uint32">uint32</a>
  3458. Snd_cwnd <a href="../builtin/index.html#uint32">uint32</a>
  3459. Advmss <a href="../builtin/index.html#uint32">uint32</a>
  3460. Reordering <a href="../builtin/index.html#uint32">uint32</a>
  3461. Rcv_rtt <a href="../builtin/index.html#uint32">uint32</a>
  3462. Rcv_space <a href="../builtin/index.html#uint32">uint32</a>
  3463. Total_retrans <a href="../builtin/index.html#uint32">uint32</a>
  3464. }</pre>
  3465. <h2 id="Termios">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=10251:10439#L590">Termios</a></h2>
  3466. <pre>type Termios struct {
  3467. Iflag <a href="../builtin/index.html#uint32">uint32</a>
  3468. Oflag <a href="../builtin/index.html#uint32">uint32</a>
  3469. Cflag <a href="../builtin/index.html#uint32">uint32</a>
  3470. Lflag <a href="../builtin/index.html#uint32">uint32</a>
  3471. Line <a href="../builtin/index.html#uint8">uint8</a>
  3472. Cc [32]<a href="../builtin/index.html#uint8">uint8</a>
  3473. Pad_cgo_0 [3]<a href="../builtin/index.html#byte">byte</a>
  3474. Ispeed <a href="../builtin/index.html#uint32">uint32</a>
  3475. Ospeed <a href="../builtin/index.html#uint32">uint32</a>
  3476. }</pre>
  3477. <h2 id="Time_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=889:906#L51">Time_t</a></h2>
  3478. <pre>type Time_t <a href="../builtin/index.html#int64">int64</a></pre>
  3479. <h3 id="Time">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3632:3675#L67">Time</a></h3>
  3480. <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>
  3481. <h2 id="Timespec">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=347:395#L14">Timespec</a></h2>
  3482. <pre>type Timespec struct {
  3483. Sec <a href="../builtin/index.html#int64">int64</a>
  3484. Nsec <a href="../builtin/index.html#int64">int64</a>
  3485. }</pre>
  3486. <h3 id="NsecToTimespec">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=3917:3962#L81">NsecToTimespec</a></h3>
  3487. <pre>func NsecToTimespec(nsec <a href="../builtin/index.html#int64">int64</a>) (ts <a href="index.html#Timespec">Timespec</a>)</pre>
  3488. <h3 id="Timespec.Nano">func (*Timespec) <a href="http://localhost:6060/src/syscall/syscall.go?s=3120:3152#L78">Nano</a></h3>
  3489. <pre>func (ts *<a href="index.html#Timespec">Timespec</a>) Nano() <a href="../builtin/index.html#int64">int64</a></pre>
  3490. <h3 id="Timespec.Unix">func (*Timespec) <a href="http://localhost:6060/src/syscall/syscall.go?s=2926:2976#L70">Unix</a></h3>
  3491. <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>
  3492. <h2 id="Timeval">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=397:444#L19">Timeval</a></h2>
  3493. <pre>type Timeval struct {
  3494. Sec <a href="../builtin/index.html#int64">int64</a>
  3495. Usec <a href="../builtin/index.html#int64">int64</a>
  3496. }</pre>
  3497. <h3 id="NsecToTimeval">func <a href="http://localhost:6060/src/syscall/syscall_linux_amd64.go?s=4107:4150#L89">NsecToTimeval</a></h3>
  3498. <pre>func NsecToTimeval(nsec <a href="../builtin/index.html#int64">int64</a>) (tv <a href="index.html#Timeval">Timeval</a>)</pre>
  3499. <h3 id="Timeval.Nano">func (*Timeval) <a href="http://localhost:6060/src/syscall/syscall.go?s=3201:3232#L82">Nano</a></h3>
  3500. <pre>func (tv *<a href="index.html#Timeval">Timeval</a>) Nano() <a href="../builtin/index.html#int64">int64</a></pre>
  3501. <h3 id="Timeval.Unix">func (*Timeval) <a href="http://localhost:6060/src/syscall/syscall.go?s=3020:3069#L74">Unix</a></h3>
  3502. <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>
  3503. <h2 id="Timex">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=446:887#L24">Timex</a></h2>
  3504. <pre>type Timex struct {
  3505. Modes <a href="../builtin/index.html#uint32">uint32</a>
  3506. Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
  3507. Offset <a href="../builtin/index.html#int64">int64</a>
  3508. Freq <a href="../builtin/index.html#int64">int64</a>
  3509. Maxerror <a href="../builtin/index.html#int64">int64</a>
  3510. Esterror <a href="../builtin/index.html#int64">int64</a>
  3511. Status <a href="../builtin/index.html#int32">int32</a>
  3512. Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
  3513. Constant <a href="../builtin/index.html#int64">int64</a>
  3514. Precision <a href="../builtin/index.html#int64">int64</a>
  3515. Tolerance <a href="../builtin/index.html#int64">int64</a>
  3516. Time <a href="index.html#Timeval">Timeval</a>
  3517. Tick <a href="../builtin/index.html#int64">int64</a>
  3518. Ppsfreq <a href="../builtin/index.html#int64">int64</a>
  3519. Jitter <a href="../builtin/index.html#int64">int64</a>
  3520. Shift <a href="../builtin/index.html#int32">int32</a>
  3521. Pad_cgo_2 [4]<a href="../builtin/index.html#byte">byte</a>
  3522. Stabil <a href="../builtin/index.html#int64">int64</a>
  3523. Jitcnt <a href="../builtin/index.html#int64">int64</a>
  3524. Calcnt <a href="../builtin/index.html#int64">int64</a>
  3525. Errcnt <a href="../builtin/index.html#int64">int64</a>
  3526. Stbcnt <a href="../builtin/index.html#int64">int64</a>
  3527. Tai <a href="../builtin/index.html#int32">int32</a>
  3528. Pad_cgo_3 [44]<a href="../builtin/index.html#byte">byte</a>
  3529. }</pre>
  3530. <h2 id="Tms">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=908:983#L53">Tms</a></h2>
  3531. <pre>type Tms struct {
  3532. Utime <a href="../builtin/index.html#int64">int64</a>
  3533. Stime <a href="../builtin/index.html#int64">int64</a>
  3534. Cutime <a href="../builtin/index.html#int64">int64</a>
  3535. Cstime <a href="../builtin/index.html#int64">int64</a>
  3536. }</pre>
  3537. <h2 id="Ucred">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=3917:3973#L261">Ucred</a></h2>
  3538. <pre>type Ucred struct {
  3539. Pid <a href="../builtin/index.html#int32">int32</a>
  3540. Uid <a href="../builtin/index.html#uint32">uint32</a>
  3541. Gid <a href="../builtin/index.html#uint32">uint32</a>
  3542. }</pre>
  3543. <h3 id="GetsockoptUcred">func <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=12837:12893#L508">GetsockoptUcred</a></h3>
  3544. <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>
  3545. <h3 id="ParseUnixCredentials">func <a href="http://localhost:6060/src/syscall/sockcmsg_linux.go?s=814:880#L17">ParseUnixCredentials</a></h3>
  3546. <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>
  3547. <p>
  3548. ParseUnixCredentials decodes a socket control message that contains
  3549. credentials in a Ucred structure. To receive such a message, the
  3550. SO_PASSCRED option must be enabled on the socket.
  3551. </p>
  3552. <h2 id="Ustat_t">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9943:10077#L569">Ustat_t</a></h2>
  3553. <pre>type Ustat_t struct {
  3554. Tfree <a href="../builtin/index.html#int32">int32</a>
  3555. Pad_cgo_0 [4]<a href="../builtin/index.html#byte">byte</a>
  3556. Tinode <a href="../builtin/index.html#uint64">uint64</a>
  3557. Fname [6]<a href="../builtin/index.html#int8">int8</a>
  3558. Fpack [6]<a href="../builtin/index.html#int8">int8</a>
  3559. Pad_cgo_1 [4]<a href="../builtin/index.html#byte">byte</a>
  3560. }</pre>
  3561. <h2 id="Utimbuf">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=985:1038#L60">Utimbuf</a></h2>
  3562. <pre>type Utimbuf struct {
  3563. Actime <a href="../builtin/index.html#int64">int64</a>
  3564. Modtime <a href="../builtin/index.html#int64">int64</a>
  3565. }</pre>
  3566. <h2 id="Utsname">type <a href="http://localhost:6060/src/syscall/ztypes_linux_amd64.go?s=9792:9941#L560">Utsname</a></h2>
  3567. <pre>type Utsname struct {
  3568. Sysname [65]<a href="../builtin/index.html#int8">int8</a>
  3569. Nodename [65]<a href="../builtin/index.html#int8">int8</a>
  3570. Release [65]<a href="../builtin/index.html#int8">int8</a>
  3571. Version [65]<a href="../builtin/index.html#int8">int8</a>
  3572. Machine [65]<a href="../builtin/index.html#int8">int8</a>
  3573. Domainname [65]<a href="../builtin/index.html#int8">int8</a>
  3574. }</pre>
  3575. <h2 id="WaitStatus">type <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=4802:4824#L185">WaitStatus</a></h2>
  3576. <pre>type WaitStatus <a href="../builtin/index.html#uint32">uint32</a></pre>
  3577. <h3 id="WaitStatus.Continued">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5547:5583#L210">Continued</a></h3>
  3578. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Continued() <a href="../builtin/index.html#bool">bool</a></pre>
  3579. <h3 id="WaitStatus.CoreDump">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5608:5643#L212">CoreDump</a></h3>
  3580. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) CoreDump() <a href="../builtin/index.html#bool">bool</a></pre>
  3581. <h3 id="WaitStatus.ExitStatus">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5684:5720#L214">ExitStatus</a></h3>
  3582. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) ExitStatus() <a href="../builtin/index.html#int">int</a></pre>
  3583. <h3 id="WaitStatus.Exited">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5333:5366#L204">Exited</a></h3>
  3584. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Exited() <a href="../builtin/index.html#bool">bool</a></pre>
  3585. <h3 id="WaitStatus.Signal">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5788:5823#L221">Signal</a></h3>
  3586. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Signal() <a href="index.html#Signal">Signal</a></pre>
  3587. <h3 id="WaitStatus.Signaled">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5396:5431#L206">Signaled</a></h3>
  3588. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Signaled() <a href="../builtin/index.html#bool">bool</a></pre>
  3589. <h3 id="WaitStatus.StopSignal">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5889:5928#L228">StopSignal</a></h3>
  3590. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) StopSignal() <a href="index.html#Signal">Signal</a></pre>
  3591. <h3 id="WaitStatus.Stopped">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=5482:5516#L208">Stopped</a></h3>
  3592. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) Stopped() <a href="../builtin/index.html#bool">bool</a></pre>
  3593. <h3 id="WaitStatus.TrapCause">func (WaitStatus) <a href="http://localhost:6060/src/syscall/syscall_linux.go?s=6000:6035#L235">TrapCause</a></h3>
  3594. <pre>func (w <a href="index.html#WaitStatus">WaitStatus</a>) TrapCause() <a href="../builtin/index.html#int">int</a></pre>
  3595. <div id="footer">
  3596. Build version go1.6.<br>
  3597. Except as <a href="https://developers.google.com/site-policies#restrictions">noted</a>,
  3598. the content of this page is licensed under the
  3599. Creative Commons Attribution 3.0 License,
  3600. and code is licensed under a <a href="http://localhost:6060/LICENSE">BSD license</a>.<br>
  3601. <a href="http://localhost:6060/doc/tos.html">Terms of Service</a> |
  3602. <a href="http://www.google.com/intl/en/policies/privacy/">Privacy Policy</a>
  3603. </div>
  3604. </div><!-- .container -->
  3605. </div><!-- #page -->
  3606. <!-- TODO(adonovan): load these from <head> using "defer" attribute? -->
  3607. <script type="text/javascript" src="../../lib/godoc/jquery.js"></script>
  3608. <script type="text/javascript" src="../../lib/godoc/jquery.treeview.js"></script>
  3609. <script type="text/javascript" src="../../lib/godoc/jquery.treeview.edit.js"></script>
  3610. <script type="text/javascript" src="../../lib/godoc/godocs.js"></script>
  3611. </body>
  3612. </html>