package unix
Import Path
golang.org/x/sys/unix (on go.dev)
Dependency Relation
imports 9 packages, and imported by 3 packages
Involved Source Files
aliases.go
constants.go
dev_darwin.go
dirent.go
endian_little.go
env_unix.go
fcntl_darwin.go
fdset.go
ioctl.go
pagesize_unix.go
race0.go
readdirent_getdirentries.go
sockcmsg_unix.go
sockcmsg_unix_other.go
str.go
Package unix contains an interface to the low-level operating system
primitives. OS details vary depending on the underlying system, and
by default, godoc will display OS-specific documentation for the current
system. If you want godoc to display OS documentation for another
system, set $GOOS and $GOARCH to the desired system. For example, if
you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
to freebsd and $GOARCH to arm.
The primary use of this package is inside other packages that provide a more
portable interface to the system, such as "os", "time" and "net". Use
those packages rather than this one if you can.
For details of the functions and data types in this package consult
the manuals for the appropriate operating system.
These calls return err == nil to indicate success; otherwise
err represents an operating system error describing the failure and
holds a value of type syscall.Errno.
syscall_bsd.go
syscall_darwin.1_13.go
syscall_darwin.go
syscall_darwin_amd64.go
syscall_darwin_libSystem.go
syscall_unix.go
syscall_unix_gc.go
timestruct.go
zerrors_darwin_amd64.go
zsyscall_darwin_amd64.1_13.go
zsyscall_darwin_amd64.go
zsysnum_darwin_amd64.go
ztypes_darwin_amd64.go
asm_darwin_amd64.s
zsyscall_darwin_amd64.1_13.s
zsyscall_darwin_amd64.s
Code Examples
package main
import (
"golang.org/x/sys/unix"
"log"
"os"
)
func main() {
err := unix.Exec("/bin/ls", []string{"ls", "-al"}, os.Environ())
log.Fatal(err)
}
package main
import (
"golang.org/x/sys/unix"
"log"
"os"
)
func main() {
f, _ := os.Create("example.lock")
if err := unix.Flock(int(f.Fd()), unix.LOCK_EX); err != nil {
log.Fatal(err)
}
// Do work here that requires the lock. When finished, release the lock:
if err := unix.Flock(int(f.Fd()), unix.LOCK_UN); err != nil {
log.Fatal(err)
}
}
Package-Level Type Names (total 71, in which 63 are exported)
Hz int32
Profhz int32
Stathz int32
Tick int32
Tickadj int32
func SysctlClockinfo(name string) (*Clockinfo, error)
Len uint32
Level int32
Type int32
(*T) SetLen(length int)
(*T) data(offset uintptr) unsafe.Pointer
func socketControlMessageHeaderAndData(b []byte) (*Cmsghdr, []byte, error)
Ino uint64
Name [1024]int8
Namlen uint16
Reclen uint16
Seekoff uint64
Type uint8
func readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno)
func readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno)
Bits [32]int32
Clear removes fd from the set fds.
IsSet returns whether fd is in the set fds.
Set adds fd to the set fds.
Zero clears the set fds.
func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
Len int64
Pid int32
Start int64
Type int16
Whence int16
func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error
Bytesalloc int64
Flags uint32
Length int64
Offset int64
Posmode int32
func FcntlFstore(fd uintptr, cmd int, fstore *Fstore_t) error
Filt [8]uint32
func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error)
func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) error
Addrlen uint8
Baudrate uint32
Collisions uint32
Hdrlen uint8
Hwassist uint32
Ibytes uint32
Ierrors uint32
Imcasts uint32
Ipackets uint32
Iqdrops uint32
Lastchange Timeval32
Metric uint32
Mtu uint32
Noproto uint32
Obytes uint32
Oerrors uint32
Omcasts uint32
Opackets uint32
Physical uint8
Recvquota uint8
Recvtiming uint32
Reserved1 uint32
Reserved2 uint32
Type uint8
Typelen uint8
Unused1 uint8
Unused2 uint32
Xmitquota uint8
Xmittiming uint32
IfreqMTU is struct ifreq used to get or set a network device's MTU.
MTU int32
Name [16]byte
func IoctlGetIfreqMTU(fd int, ifname string) (*IfreqMTU, error)
func IoctlSetIfreqMTU(fd int, ifreq *IfreqMTU) error
// in_addr
// in_addr
func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error)
func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error)
Interface uint32
// in6_addr
func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error)
func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error)
Addr RawSockaddrInet6
Mtu uint32
func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error)
Data int64
Fflags uint32
Filter int16
Flags uint16
Ident uint64
Udata *byte
func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n int, err error)
func SetKevent(k *Kevent_t, fd, mode, flags int)
Linger int32
Onoff int32
func GetsockoptLinger(fd, level, opt int) (*Linger, error)
func SetsockoptLinger(fd, level, opt int, l *Linger) (err error)
Control *byte
Controllen uint32
Flags int32
Iov *Iovec
Iovlen int32
Name *byte
Namelen uint32
(*T) SetControllen(length int)
(*T) SetIovlen(length int)
func recvmsg(s int, msg *Msghdr, flags int) (n int, err error)
func sendmsg(s int, msg *Msghdr, flags int) (n int, err error)
Events int16
Fd int32
Revents int16
func Poll(fds []PollFd, timeout int) (n int, err error)
func poll(fds *PollFd, nfds int, timeout int) (n int, err error)
Addr RawSockaddr
Pad [92]int8
func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err error)
func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error)
func anyToSockaddrGOOS(fd int, rsa *RawSockaddrAny) (Sockaddr, error)
func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)
func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)
func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)
Cur uint64
Max uint64
func Getrlimit(which int, lim *Rlimit) (err error)
func Setrlimit(which int, lim *Rlimit) (err error)
Expire int32
Filler [3]uint32
Hopcount uint32
Locks uint32
Mtu uint32
Pksent uint32
Recvpipe uint32
Rtt uint32
Rttvar uint32
Sendpipe uint32
Ssthresh uint32
State uint32
Addrs int32
Errno int32
Flags int32
Index uint16
Inits uint32
Msglen uint16
Pid int32
Rmx RtMetrics
Seq int32
Type uint8
Use int32
Version uint8
Idrss int64
Inblock int64
Isrss int64
Ixrss int64
Majflt int64
Maxrss int64
Minflt int64
Msgrcv int64
Msgsnd int64
Nivcsw int64
Nsignals int64
Nswap int64
Nvcsw int64
Oublock int64
Stime Timeval
Utime Timeval
func Getrusage(who int, rusage *Rusage) (err error)
func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error)
func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)
Sockaddr represents a socket address.
// lowercase; only we can define Sockaddrs
*SockaddrCtl
*SockaddrDatalink
*SockaddrInet4
*SockaddrInet6
*SockaddrUnix
func Accept(fd int) (nfd int, sa Sockaddr, err error)
func Getpeername(fd int) (sa Sockaddr, err error)
func Getsockname(fd int) (sa Sockaddr, err error)
func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err error)
func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error)
func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error)
func anyToSockaddrGOOS(fd int, rsa *RawSockaddrAny) (Sockaddr, error)
func Bind(fd int, sa Sockaddr) (err error)
func Connect(fd int, sa Sockaddr) (err error)
func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error)
func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error)
func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error)
SockaddrCtl implements the Sockaddr interface for AF_SYSTEM type sockets.
ID uint32
Unit uint32
raw RawSockaddrCtl
(*T) sockaddr() (unsafe.Pointer, _Socklen, error)
*T : Sockaddr
SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.
Alen uint8
Data [12]int8
Family uint8
Index uint16
Len uint8
Nlen uint8
Slen uint8
Type uint8
raw RawSockaddrDatalink
(*T) sockaddr() (unsafe.Pointer, _Socklen, error)
*T : Sockaddr
SockaddrInet4 implements the Sockaddr interface for AF_INET type sockets.
Addr [4]byte
Port int
raw RawSockaddrInet4
(*T) sockaddr() (unsafe.Pointer, _Socklen, error)
*T : Sockaddr
SockaddrInet6 implements the Sockaddr interface for AF_INET6 type sockets.
Addr [16]byte
Port int
ZoneId uint32
raw RawSockaddrInet6
(*T) sockaddr() (unsafe.Pointer, _Socklen, error)
*T : Sockaddr
SockaddrUnix implements the Sockaddr interface for AF_UNIX type sockets.
Name string
raw RawSockaddrUnix
(*T) sockaddr() (unsafe.Pointer, _Socklen, error)
*T : Sockaddr
SocketControlMessage represents a socket control message.
Data []byte
Header Cmsghdr
func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error)
func ParseUnixRights(m *SocketControlMessage) ([]int, error)
Atim Timespec
Blksize int32
Blocks int64
Btim Timespec
Ctim Timespec
Dev int32
Flags uint32
Gen uint32
Gid uint32
Ino uint64
Lspare int32
Mode uint16
Mtim Timespec
Nlink uint16
Qspare [2]int64
Rdev int32
Size int64
Uid uint32
func Fstat(fd int, stat *Stat_t) (err error)
func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
func Lstat(path string, stat *Stat_t) (err error)
func Stat(path string, stat *Stat_t) (err error)
Bavail uint64
Bfree uint64
Blocks uint64
Bsize uint32
Ffree uint64
Files uint64
Flags uint32
Flags_ext uint32
Fsid Fsid
Fssubtype uint32
Fstypename [16]byte
Iosize int32
Mntfromname [1024]byte
Mntonname [1024]byte
Owner uint32
Reserved [7]uint32
Type uint32
func Fstatfs(fd int, stat *Statfs_t) (err error)
func Getfsstat(buf []Statfs_t, flags int) (n int, err error)
func Statfs(path string, stat *Statfs_t) (err error)
type SysProcAttr = syscall.SysProcAttr (struct)
Cc [20]uint8
Cflag uint64
Iflag uint64
Ispeed uint64
Lflag uint64
Oflag uint64
Ospeed uint64
func IoctlGetTermios(fd int, req uint) (*Termios, error)
func IoctlSetTermios(fd int, req uint, value *Termios) error
Nsec int64
Sec int64
Nano returns ts as the number of nanoseconds elapsed since the Unix epoch.
Unix returns ts as the number of seconds and nanoseconds elapsed since the
Unix epoch.
func NsecToTimespec(nsec int64) Timespec
func TimeToTimespec(t time.Time) (Timespec, error)
func setTimespec(sec, nsec int64) Timespec
func ClockGettime(clockid int32, time *Timespec) (err error)
func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n int, err error)
func TimespecToNsec(ts Timespec) int64
func UtimesNano(path string, ts []Timespec) error
func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error
func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error)
func setattrlistTimes(path string, times []Timespec, flags int) error
func utimensat(dirfd int, path string, times *[2]Timespec, flags int) error
Sec int64
Usec int32
Nano returns tv as the number of nanoseconds elapsed since the Unix epoch.
Unix returns tv as the number of seconds and nanoseconds elapsed since the
Unix epoch.
func GetsockoptTimeval(fd, level, opt int) (*Timeval, error)
func NsecToTimeval(nsec int64) Timeval
func SysctlTimeval(name string) (*Timeval, error)
func setTimeval(sec, usec int64) Timeval
func Adjtime(delta *Timeval, olddelta *Timeval) (err error)
func Adjtime(delta *Timeval, olddelta *Timeval) (err error)
func Futimes(fd int, tv []Timeval) error
func Gettimeofday(tp *Timeval) (err error)
func Lutimes(path string, tv []Timeval) error
func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error)
func Settimeofday(tp *Timeval) (err error)
func TimevalToNsec(tv Timeval) int64
func Utimes(path string, tv []Timeval) error
func futimes(fd int, timeval *[2]Timeval) (err error)
func utimes(path string, timeval *[2]Timeval) (err error)
Machine [256]byte
Nodename [256]byte
Release [256]byte
Sysname [256]byte
Version [256]byte
func Uname(uname *Utsname) error
( T) Continued() bool
( T) CoreDump() bool
( T) ExitStatus() int
( T) Exited() bool
( T) Killed() bool
( T) Signal() syscall.Signal
( T) Signaled() bool
( T) StopSignal() syscall.Signal
( T) Stopped() bool
( T) TrapCause() int
func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error)
Package-Level Functions (total 451, in which 227 are exported)
BytePtrFromString returns a pointer to a NUL-terminated array of
bytes containing the text of s. If s contains a NUL byte at any
location, it returns (nil, EINVAL).
BytePtrToString takes a pointer to a sequence of text and returns the corresponding string.
If the pointer is nil, it returns the empty string. It assumes that the text sequence is terminated
at a zero byte; if the zero byte is not present, the program may crash.
ByteSliceFromString returns a NUL-terminated slice of bytes
containing the text of s. If s contains a NUL byte at any
location, it returns (nil, EINVAL).
ByteSliceToString returns a string form of the text represented by the slice s, with a terminating NUL and any
bytes after the NUL removed.
func ClockGettime(clockid int32, time *Timespec) (err error) func CloseOnExec(fd int)
CmsgLen returns the value to store in the Len field of the Cmsghdr
structure, taking into account any necessary alignment.
CmsgSpace returns the number of bytes an ancillary element with
payload of the passed data length occupies.
ErrnoName returns the error name for error number e.
Exec calls execve(2), which replaces the calling executable in the process
tree. argv0 should be the full path to an executable ("/bin/ls") and the
executable name should also be the first argument in argv (["ls", "-l"]).
envv are the environment variables that should be passed to the new
process (["USER=go", "PWD=/tmp"]).
FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
FcntlFstore performs a fcntl syscall for the F_PREALLOCATE command.
FcntlInt performs a fcntl syscall on fd with the provided command and argument.
func Fremovexattr(fd int, attr string) (err error) func Getdtablesize() (size int) func Getpeername(fd int) (sa Sockaddr, err error) func Getsockname(fd int) (sa Sockaddr, err error) func GetsockoptByte(fd, level, opt int) (value byte, err error) func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) func GetsockoptInt(fd, level, opt int) (value int, err error) func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) func GetsockoptLinger(fd, level, opt int) (*Linger, error)
GetsockoptString returns the string value of the socket option opt for the
socket associated with fd at the given socket level.
func GetsockoptTimeval(fd, level, opt int) (*Timeval, error) func GetsockoptUint64(fd, level, opt int) (value uint64, err error) func Gettimeofday(tp *Timeval) (err error) func IoctlCtlInfo(fd int, ctlInfo *CtlInfo) error
IoctlGetIfreqMTU performs the SIOCGIFMTU ioctl operation on fd to get the MTU
of the network device specified by ifname.
IoctlGetInt performs an ioctl operation which gets an integer value
from fd, using the specified request number.
A few ioctl requests use the return value as an output parameter;
for those, IoctlRetInt should be used instead of this function.
IoctlSetIfreqMTU performs the SIOCSIFMTU ioctl operation on fd to set the MTU
of the network device specified by ifreq.Name.
IoctlSetInt performs an ioctl operation which sets an integer value
on fd, using the specified request number.
IoctlSetPointerInt performs an ioctl operation which sets an
integer value on fd, using the specified request number. The ioctl
argument is called with a pointer to the integer value, rather than
passing the integer value directly.
IoctlSetTermios performs an ioctl on fd with a *Termios.
The req value will usually be TCSETA or TIOCSETA.
IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
To change fd's window size, the req argument should be TIOCSWINSZ.
func Lremovexattr(link string, attr string) (err error)
Lutimes sets the access and modification times tv on path. If path refers to
a symlink, it is not dereferenced and the timestamps are set on the symlink.
If tv is nil, the access and modification times are set to the current time.
Otherwise tv must contain exactly 2 elements, with access time as the first
element and modification time as the second element.
Major returns the major component of a Darwin device number.
Minor returns the minor component of a Darwin device number.
Mkdev returns a Darwin device number generated from the given major and minor
components.
func Munlockall() (err error)
NsecToTimespec takes a number of nanoseconds since the Unix epoch
and returns the corresponding Timespec value.
NsecToTimeval takes a number of nanoseconds since the Unix epoch
and returns the corresponding Timeval value.
ParseDirent parses up to max directory entries in buf,
appending the names to names. It returns the number of
bytes consumed from buf, the number of entries added
to names, and the new names slice.
ParseSocketControlMessage parses b as an array of socket control
messages.
ParseUnixRights decodes a socket control message that contains an
integer array of open file descriptors from another process.
func PtraceAttach(pid int) (err error) func PtraceDetach(pid int) (err error)
ReadDirent reads directory entries from fd and writes them into buf.
func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) func Removexattr(path string, attr string) (err error) func SetNonblock(fd int, nonblocking bool) (err error) func Setprivexec(flag int) (err error) func SetsockoptByte(fd, level, opt int, value byte) (err error) func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) error func SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error) func SetsockoptInt(fd, level, opt int, value int) (err error) func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error) func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error) func SetsockoptLinger(fd, level, opt int, l *Linger) (err error) func SetsockoptString(fd, level, opt int, s string) (err error) func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) func SetsockoptUint64(fd, level, opt int, value uint64) (err error) func Settimeofday(tp *Timeval) (err error)
SignalName returns the signal name for signal number s.
SignalNum returns the syscall.Signal for signal named s,
or 0 if a signal with such name is not found.
The signal name should start with "SIG".
func Socketpair(domain, typ, proto int) (fd [2]int, err error) func SysctlClockinfo(name string) (*Clockinfo, error) func SysctlTimeval(name string) (*Timeval, error) func SysctlUint32(name string) (uint32, error)
TimespecToNsec converts a Timespec value into a number of
nanoseconds since the Unix epoch.
TimeToTimespec converts t into a Timespec.
On some 32-bit systems the range of valid Timespec values are smaller
than that of time.Time values. So if t is out of the valid range of
Timespec, it returns a zero Timespec and ERANGE.
TimevalToNsec converts a Timeval value into a number of nanoseconds
since the Unix epoch.
UnixRights encodes a set of open file descriptors into a socket
control message for sending to another process.
func UtimesNano(path string, ts []Timespec) error
Package-Level Variables (total 14, in which 4 are exported)
For testing: clients can set this flag to force
creation of IPv6 sockets to return EAFNOSUPPORT.
Package-Level Constants (total 2106, in which 2098 are exported)
const AF_APPLETALK = 16 const AF_DATAKIT = 9 const AF_IEEE80211 = 37 const AF_IMPLINK = 3 const AF_NETBIOS = 33 const AF_RESERVED_36 = 36 const AF_SYS_CONTROL = 2 const AT_REMOVEDIR = 128 const AT_SYMLINK_FOLLOW = 64 const AT_SYMLINK_NOFOLLOW = 32 const ATTR_CMN_ACCESSMASK = 131072 const ATTR_CMN_ACCTIME = 4096 const ATTR_CMN_ADDEDTIME = 268435456 const ATTR_CMN_BKUPTIME = 8192 const ATTR_CMN_CHGTIME = 2048 const ATTR_CMN_CRTIME = 512 const ATTR_CMN_DATA_PROTECT_FLAGS = 1073741824 const ATTR_CMN_DEVID = 2 const ATTR_CMN_DOCUMENT_ID = 1048576 const ATTR_CMN_ERROR = 536870912 const ATTR_CMN_EXTENDED_SECURITY = 4194304 const ATTR_CMN_FILEID = 33554432 const ATTR_CMN_FLAGS = 262144 const ATTR_CMN_FNDRINFO = 16384 const ATTR_CMN_FSID = 4 const ATTR_CMN_FULLPATH = 134217728 const ATTR_CMN_GEN_COUNT = 524288 const ATTR_CMN_GRPID = 65536 const ATTR_CMN_GRPUUID = 16777216 const ATTR_CMN_MODTIME = 1024 const ATTR_CMN_NAME = 1 const ATTR_CMN_NAMEDATTRCOUNT = 524288 const ATTR_CMN_NAMEDATTRLIST = 1048576 const ATTR_CMN_OBJID = 32 const ATTR_CMN_OBJTAG = 16 const ATTR_CMN_OWNERID = 32768 const ATTR_CMN_PARENTID = 67108864 const ATTR_CMN_PAROBJID = 128 const ATTR_CMN_RETURNED_ATTRS = 2147483648 const ATTR_CMN_SCRIPT = 256 const ATTR_CMN_SETMASK = 1103625984 const ATTR_CMN_USERACCESS = 2097152 const ATTR_CMN_UUID = 8388608 const ATTR_CMN_VALIDMASK = 4294967295 const ATTR_CMN_VOLSETMASK = 26368 const ATTR_FILE_CLUMPSIZE = 16 const ATTR_FILE_DATAALLOCSIZE = 1024 const ATTR_FILE_DATAEXTENTS = 2048 const ATTR_FILE_DATALENGTH = 512 const ATTR_FILE_DEVTYPE = 32 const ATTR_FILE_FILETYPE = 64 const ATTR_FILE_FORKCOUNT = 128 const ATTR_FILE_FORKLIST = 256 const ATTR_FILE_RSRCALLOCSIZE = 8192 const ATTR_FILE_RSRCEXTENTS = 16384 const ATTR_FILE_RSRCLENGTH = 4096 const ATTR_FILE_SETMASK = 32 const ATTR_FILE_VALIDMASK = 14335 const ATTR_VOL_ATTRIBUTES = 1073741824 const ATTR_VOL_CAPABILITIES = 131072 const ATTR_VOL_DIRCOUNT = 1024 const ATTR_VOL_ENCODINGSUSED = 65536 const ATTR_VOL_FILECOUNT = 512 const ATTR_VOL_FSTYPE = 1 const ATTR_VOL_INFO = 2147483648 const ATTR_VOL_IOBLOCKSIZE = 128 const ATTR_VOL_MAXOBJCOUNT = 2048 const ATTR_VOL_MOUNTEDDEVICE = 32768 const ATTR_VOL_MOUNTFLAGS = 16384 const ATTR_VOL_MOUNTPOINT = 4096 const ATTR_VOL_NAME = 8192 const ATTR_VOL_OBJCOUNT = 256 const ATTR_VOL_QUOTA_SIZE = 268435456 const ATTR_VOL_RESERVED_SIZE = 536870912 const ATTR_VOL_SETMASK = 2147491840 const ATTR_VOL_SIZE = 4 const ATTR_VOL_SPACEAVAIL = 16 const ATTR_VOL_UUID = 262144 const ATTR_VOL_VALIDMASK = 4027056127 const BIOCGDLTLIST = 3222028921 const BIOCGHDRCMPLT = 1074020980 const BIOCGRTIMEOUT = 1074807406 const BIOCGSEESENT = 1074020982 const BIOCGSTATS = 1074283119 const BIOCIMMEDIATE = 2147762800 const BIOCPROMISC = 536887913 const BIOCSETFNR = 2148549246 const BIOCSHDRCMPLT = 2147762805 const BIOCSRTIMEOUT = 2148549229 const BIOCSSEESENT = 2147762807 const BIOCVERSION = 1074020977 const BPF_ALIGNMENT = 4 const BPF_MAXBUFSIZE = 524288 const BPF_MAXINSNS = 512 const BPF_MEMWORDS = 16 const BPF_MINBUFSIZE = 32 const BPF_RELEASE = 199606 const CLOCK_MONOTONIC = 6 const CLOCK_REALTIME = 0 const CLONE_NOFOLLOW = 1 const CTL_MAXNAME = 12 const CTLIOCGINFO = 3227799043 const DLT_A653_ICM = 185 const DLT_AIRONET_HEADER = 120 const DLT_ARCNET = 7 const DLT_ARCNET_LINUX = 129 const DLT_ATM_CLIP = 19 const DLT_ATM_RFC1483 = 11 const DLT_AURORA = 126 const DLT_AX25_KISS = 202 const DLT_BACNET_MS_TP = 165 const DLT_BLUETOOTH_HCI_H4 = 187 const DLT_C_HDLC = 104 const DLT_C_HDLC_WITH_DIR = 205 const DLT_CAN20B = 190 const DLT_CAN_SOCKETCAN = 227 const DLT_CISCO_IOS = 118 const DLT_DOCSIS = 143 const DLT_DVB_CI = 235 const DLT_ECONET = 115 const DLT_EN10MB = 1 const DLT_ERF_ETH = 175 const DLT_ERF_POS = 176 const DLT_FLEXRAY = 210 const DLT_FRELAY = 107 const DLT_FRELAY_WITH_DIR = 206 const DLT_GCOM_SERIAL = 173 const DLT_GCOM_T1E1 = 172 const DLT_GPRS_LLC = 169 const DLT_GSMTAP_ABIS = 218 const DLT_GSMTAP_UM = 217 const DLT_IBM_SN = 146 const DLT_IBM_SP = 145 const DLT_IEEE802 = 6 const DLT_IEEE802_11 = 105 const DLT_IEEE802_11_RADIO = 127 const DLT_IEEE802_15_4 = 195 const DLT_IEEE802_15_4_LINUX = 191 const DLT_IEEE802_15_4_NOFCS = 230 const DLT_IEEE802_16_MAC_CPS = 188 const DLT_IP_OVER_FC = 122 const DLT_IPFILTER = 116 const DLT_IPMB_LINUX = 209 const DLT_JUNIPER_ATM1 = 137 const DLT_JUNIPER_ATM2 = 135 const DLT_JUNIPER_ATM_CEMIC = 238 const DLT_JUNIPER_CHDLC = 181 const DLT_JUNIPER_ES = 132 const DLT_JUNIPER_ETHER = 178 const DLT_JUNIPER_FRELAY = 180 const DLT_JUNIPER_GGSN = 133 const DLT_JUNIPER_ISM = 194 const DLT_JUNIPER_MFR = 134 const DLT_JUNIPER_MLFR = 131 const DLT_JUNIPER_MLPPP = 130 const DLT_JUNIPER_MONITOR = 164 const DLT_JUNIPER_PIC_PEER = 174 const DLT_JUNIPER_PPP = 179 const DLT_JUNIPER_PPPOE = 167 const DLT_JUNIPER_PPPOE_ATM = 168 const DLT_JUNIPER_SERVICES = 136 const DLT_JUNIPER_SRX_E2E = 233 const DLT_JUNIPER_ST = 200 const DLT_JUNIPER_VP = 183 const DLT_JUNIPER_VS = 232 const DLT_LAPB_WITH_DIR = 207 const DLT_LINUX_EVDEV = 216 const DLT_LINUX_IRDA = 144 const DLT_LINUX_LAPD = 177 const DLT_LINUX_SLL = 113 const DLT_MATCHING_MAX = 245 const DLT_MATCHING_MIN = 104 const DLT_MPEG_2_TS = 243 const DLT_MTP2_WITH_PHDR = 139 const DLT_MUX27010 = 236 const DLT_NETANALYZER = 240 const DLT_NFC_LLCP = 245 const DLT_PCI_EXP = 125 const DLT_PFSYNC = 18 const DLT_PPP_BSDOS = 16 const DLT_PPP_ETHER = 51 const DLT_PPP_PPPD = 166 const DLT_PPP_SERIAL = 50 const DLT_PPP_WITH_DIR = 204 const DLT_PPP_WITH_DIRECTION = 166 const DLT_PRISM_HEADER = 119 const DLT_PRONET = 4 const DLT_SLIP_BSDOS = 15 const DLT_STANAG_5066_D_PDU = 237 const DLT_SUNATM = 123 const DLT_USB_LINUX = 189 const DLT_USB_LINUX_MMAPPED = 220 const DLT_USER10 = 157 const DLT_USER11 = 158 const DLT_USER12 = 159 const DLT_USER13 = 160 const DLT_USER14 = 161 const DLT_USER15 = 162 const DLT_WIHART = 223 const DLT_X2E_SERIAL = 213 const DLT_X2E_XORAYA = 214 const DT_UNKNOWN = 0
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
Errors
const EV_DISABLE = 8 const EV_DISPATCH = 128 const EV_DISPATCH2 = 384 const EV_ONESHOT = 16 const EV_RECEIPT = 64 const EV_SYSFLAGS = 61440 const EV_UDATA_SPECIFIC = 256 const EV_VANISHED = 512 const EVFILT_AIO = -3 const EVFILT_EXCEPT = -15 const EVFILT_MACHPORT = -8 const EVFILT_PROC = -5 const EVFILT_READ = -1 const EVFILT_SIGNAL = -6 const EVFILT_SYSCOUNT = 15 const EVFILT_THREADMARKER = 15 const EVFILT_TIMER = -7 const EVFILT_USER = -10 const EVFILT_VNODE = -4 const EVFILT_WRITE = -2
Errors
Errors
const F_ADDFILESIGS = 61 const F_ALLOCATEALL = 4 const F_BARRIERFSYNC = 85 const F_CHECK_LV = 98 const F_CHKCLEAN = 41 const F_DUPFD_CLOEXEC = 67 const F_FINDSIGS = 78 const F_FLUSH_DATA = 40 const F_FREEZE_FS = 53 const F_FULLFSYNC = 51 const F_GETCODEDIR = 72 const F_GETLKPID = 66 const F_GETNOSIGPIPE = 74 const F_GETPATH_MTMINFO = 71 const F_GLOBAL_NOCACHE = 55 const F_LOG2PHYS = 49 const F_LOG2PHYS_EXT = 65 const F_NODIRECT = 62 const F_PATHPKG_CHECK = 52 const F_PEOFPOSMODE = 3 const F_PREALLOCATE = 42 const F_PUNCHHOLE = 99 const F_RDADVISE = 44 const F_SETBACKINGSTORE = 70 const F_SETLKWTIMEOUT = 10 const F_SETNOSIGPIPE = 73 const F_SINGLE_WRITER = 76 const F_TRANSCODEKEY = 75 const F_TRIM_ACTIVE_FILE = 100 const F_VOLPOSMODE = 4 const FD_CLOEXEC = 1 const FD_SETSIZE = 1024 const FSOPT_NOFOLLOW = 1 const HW_MACHINE = 1 const ICMP6_FILTER = 18 const IFF_ALLMULTI = 512 const IFF_ALTPHYS = 16384 const IFF_BROADCAST = 2 const IFF_LOOPBACK = 8 const IFF_MULTICAST = 32768 const IFF_NOTRAILERS = 32 const IFF_OACTIVE = 1024 const IFF_POINTOPOINT = 16 const IFF_PROMISC = 256 const IFF_RUNNING = 64 const IFF_SIMPLEX = 2048 const IFT_ARCNET = 35 const IFT_ARCNETPLUS = 36 const IFT_BRIDGE = 209 const IFT_CELLULAR = 255 const IFT_FRELAY = 32 const IFT_FRELAYDCE = 44 const IFT_HDH1822 = 3 const IFT_IEEE1394 = 144 const IFT_IEEE8023ADLAG = 136 const IFT_ISDNBASIC = 20 const IFT_ISDNPRIMARY = 21 const IFT_ISO88022LLC = 41 const IFT_ISO88023 = 7 const IFT_ISO88024 = 8 const IFT_ISO88025 = 9 const IFT_ISO88026 = 10 const IFT_L2VLAN = 135 const IFT_LOCALTALK = 42 const IFT_MIOX25 = 38 const IFT_PFSYNC = 246 const IFT_PROPMUX = 54 const IFT_PROPVIRTUAL = 53 const IFT_PTPSERIAL = 22 const IFT_SMDSDXI = 43 const IFT_SMDSICIP = 52 const IFT_SONETPATH = 50 const IFT_SONETVT = 51 const IFT_STARLAN = 11 const IFT_X25DDN = 4 const IFT_X25PLE = 40 const IFT_XETHER = 26 const ImplementsGetwd = true const IN_CLASSA_HOST = 16777215 const IN_CLASSA_MAX = 128 const IN_CLASSA_NET = 4278190080 const IN_CLASSA_NSHIFT = 24 const IN_CLASSB_HOST = 65535 const IN_CLASSB_MAX = 65536 const IN_CLASSB_NET = 4294901760 const IN_CLASSB_NSHIFT = 16 const IN_CLASSC_HOST = 255 const IN_CLASSC_NET = 4294967040 const IN_CLASSD_HOST = 268435455 const IN_CLASSD_NET = 4026531840 const IN_CLASSD_NSHIFT = 28 const IN_LINKLOCALNETNUM = 2851995648 const IN_LOOPBACKNET = 127 const IP_ADD_MEMBERSHIP = 12 const IP_BLOCK_SOURCE = 72 const IP_BOUND_IF = 25 const IP_DROP_MEMBERSHIP = 13 const IP_DUMMYNET_DEL = 61 const IP_DUMMYNET_FLUSH = 62 const IP_DUMMYNET_GET = 64 const IP_FW_FLUSH = 42 const IP_FW_RESETLOG = 45 const IP_FW_ZERO = 43 const IP_HDRINCL = 2 const IP_IPSEC_POLICY = 21 const IP_MAX_GROUP_SRC_FILTER = 512 const IP_MAX_MEMBERSHIPS = 4095 const IP_MAX_SOCK_MUTE_FILTER = 128 const IP_MAX_SOCK_SRC_FILTER = 128 const IP_MAXPACKET = 65535 const IP_MIN_MEMBERSHIPS = 31 const IP_MSFILTER = 74 const IP_MULTICAST_IF = 9 const IP_MULTICAST_LOOP = 11 const IP_MULTICAST_TTL = 10 const IP_MULTICAST_VIF = 14 const IP_NAT__XXX = 55 const IP_OFFMASK = 8191 const IP_OLD_FW_ADD = 50 const IP_OLD_FW_DEL = 51 const IP_OLD_FW_FLUSH = 52 const IP_OLD_FW_GET = 54 const IP_OLD_FW_RESETLOG = 56 const IP_OLD_FW_ZERO = 53 const IP_OPTIONS = 1 const IP_PKTINFO = 26 const IP_PORTRANGE = 19 const IP_RECVDSTADDR = 7 const IP_RECVOPTS = 5 const IP_RECVPKTINFO = 26 const IP_RECVRETOPTS = 6 const IP_RECVTOS = 27 const IP_RECVTTL = 24 const IP_RETOPTS = 8 const IP_RSVP_OFF = 16 const IP_RSVP_ON = 15 const IP_RSVP_VIF_OFF = 18 const IP_RSVP_VIF_ON = 17 const IP_STRIPHDR = 23 const IP_UNBLOCK_SOURCE = 73 const IPPROTO_3PC = 34 const IPPROTO_ADFS = 68 const IPPROTO_AH = 51 const IPPROTO_AHIP = 61 const IPPROTO_APES = 99 const IPPROTO_ARGUS = 13 const IPPROTO_AX25 = 93 const IPPROTO_BHA = 49 const IPPROTO_BLT = 30 const IPPROTO_BRSATMON = 76 const IPPROTO_CFTP = 62 const IPPROTO_CHAOS = 16 const IPPROTO_CMTP = 38 const IPPROTO_CPHB = 73 const IPPROTO_CPNX = 72 const IPPROTO_DDP = 37 const IPPROTO_DGP = 86 const IPPROTO_DIVERT = 254 const IPPROTO_DONE = 257 const IPPROTO_DSTOPTS = 60 const IPPROTO_EGP = 8 const IPPROTO_EMCON = 14 const IPPROTO_ENCAP = 98 const IPPROTO_EON = 80 const IPPROTO_ESP = 50 const IPPROTO_ETHERIP = 97 const IPPROTO_FRAGMENT = 44 const IPPROTO_GGP = 3 const IPPROTO_GMTP = 100 const IPPROTO_GRE = 47 const IPPROTO_HELLO = 63 const IPPROTO_HMP = 20 const IPPROTO_HOPOPTS = 0 const IPPROTO_ICMP = 1 const IPPROTO_ICMPV6 = 58 const IPPROTO_IDP = 22 const IPPROTO_IDPR = 35 const IPPROTO_IDRP = 45 const IPPROTO_IGMP = 2 const IPPROTO_IGP = 85 const IPPROTO_IGRP = 88 const IPPROTO_IL = 40 const IPPROTO_INLSP = 52 const IPPROTO_INP = 32 const IPPROTO_IP = 0 const IPPROTO_IPCOMP = 108 const IPPROTO_IPCV = 71 const IPPROTO_IPEIP = 94 const IPPROTO_IPIP = 4 const IPPROTO_IPPC = 67 const IPPROTO_IPV4 = 4 const IPPROTO_IPV6 = 41 const IPPROTO_IRTP = 28 const IPPROTO_KRYPTOLAN = 65 const IPPROTO_LARP = 91 const IPPROTO_LEAF1 = 25 const IPPROTO_LEAF2 = 26 const IPPROTO_MAX = 256 const IPPROTO_MAXID = 52 const IPPROTO_MEAS = 19 const IPPROTO_MHRP = 48 const IPPROTO_MICP = 95 const IPPROTO_MTP = 92 const IPPROTO_MUX = 18 const IPPROTO_ND = 77 const IPPROTO_NHRP = 54 const IPPROTO_NONE = 59 const IPPROTO_NSP = 31 const IPPROTO_NVPII = 11 const IPPROTO_OSPFIGP = 89 const IPPROTO_PGM = 113 const IPPROTO_PIGP = 9 const IPPROTO_PIM = 103 const IPPROTO_PRM = 21 const IPPROTO_PUP = 12 const IPPROTO_PVP = 75 const IPPROTO_RAW = 255 const IPPROTO_RCCMON = 10 const IPPROTO_RDP = 27 const IPPROTO_ROUTING = 43 const IPPROTO_RSVP = 46 const IPPROTO_RVD = 66 const IPPROTO_SATEXPAK = 64 const IPPROTO_SATMON = 69 const IPPROTO_SCCSP = 96 const IPPROTO_SCTP = 132 const IPPROTO_SDRP = 42 const IPPROTO_SEP = 33 const IPPROTO_SRPC = 90 const IPPROTO_ST = 7 const IPPROTO_SVMTP = 82 const IPPROTO_SWIPE = 53 const IPPROTO_TCF = 87 const IPPROTO_TCP = 6 const IPPROTO_TP = 29 const IPPROTO_TPXX = 39 const IPPROTO_TRUNK1 = 23 const IPPROTO_TRUNK2 = 24 const IPPROTO_TTP = 84 const IPPROTO_UDP = 17 const IPPROTO_VINES = 83 const IPPROTO_VISA = 70 const IPPROTO_VMTP = 81 const IPPROTO_WBEXPAK = 79 const IPPROTO_WBMON = 78 const IPPROTO_WSN = 74 const IPPROTO_XNET = 15 const IPPROTO_XTP = 36 const IPV6_2292DSTOPTS = 23 const IPV6_2292HOPLIMIT = 20 const IPV6_2292HOPOPTS = 22 const IPV6_2292NEXTHOP = 21 const IPV6_2292PKTINFO = 19 const IPV6_2292PKTOPTIONS = 25 const IPV6_2292RTHDR = 24 const IPV6_BINDV6ONLY = 27 const IPV6_BOUND_IF = 125 const IPV6_CHECKSUM = 26 const IPV6_DEFHLIM = 64 const IPV6_FAITH = 29 const IPV6_FLOW_ECN_MASK = 768 const IPV6_FLOWINFO_MASK = 4294967055 const IPV6_FLOWLABEL_MASK = 4294905600 const IPV6_FRAGTTL = 60 const IPV6_FW_ADD = 30 const IPV6_FW_DEL = 31 const IPV6_FW_FLUSH = 32 const IPV6_FW_GET = 34 const IPV6_FW_ZERO = 33 const IPV6_HLIMDEC = 1 const IPV6_IPSEC_POLICY = 28 const IPV6_JOIN_GROUP = 12 const IPV6_LEAVE_GROUP = 13 const IPV6_MAX_MEMBERSHIPS = 4095 const IPV6_MAXHLIM = 255 const IPV6_MAXOPTHDR = 2048 const IPV6_MAXPACKET = 65535 const IPV6_MULTICAST_HOPS = 10 const IPV6_MULTICAST_LOOP = 11 const IPV6_PORTRANGE = 14 const IPV6_RECVTCLASS = 35 const IPV6_TCLASS = 36 const IPV6_V6ONLY = 27 const IPV6_VERSION = 96 const IPV6_VERSION_MASK = 240 const KERN_HOSTNAME = 10 const KERN_OSRELEASE = 2 const KERN_OSTYPE = 1 const KERN_VERSION = 4 const MADV_CAN_REUSE = 9 const MADV_DONTNEED = 4 const MADV_FREE_REUSE = 8 const MADV_NORMAL = 0 const MADV_PAGEOUT = 10 const MADV_RANDOM = 1 const MADV_SEQUENTIAL = 2 const MADV_WILLNEED = 3 const MAP_ANONYMOUS = 4096 const MAP_HASSEMAPHORE = 512 const MAP_NOCACHE = 1024 const MAP_NOEXTEND = 256 const MAP_NORESERVE = 64 const MAP_PRIVATE = 2 const MAP_RENAME = 32 const MAP_RESERVED0080 = 128 const MAP_RESILIENT_CODESIGN = 8192 const MAP_RESILIENT_MEDIA = 16384 const MAP_SHARED = 1 const MCL_CURRENT = 1 const MCL_FUTURE = 2 const MNT_AUTOMOUNTED = 4194304 const MNT_CMDFLAGS = 983040 const MNT_CPROTECT = 128 const MNT_DEFWRITE = 33554432 const MNT_DONTBROWSE = 1048576 const MNT_DOVOLFS = 32768 const MNT_EXPORTED = 256 const MNT_IGNORE_OWNERSHIP = 2097152 const MNT_JOURNALED = 8388608 const MNT_MULTILABEL = 67108864 const MNT_NOATIME = 268435456 const MNT_NOBLOCK = 131072 const MNT_NOEXEC = 4 const MNT_NOSUID = 8 const MNT_NOUSERXATTR = 16777216 const MNT_NOWAIT = 2 const MNT_QUARANTINE = 1024 const MNT_RDONLY = 1 const MNT_RELOAD = 262144 const MNT_ROOTFS = 16384 const MNT_SYNCHRONOUS = 2 const MNT_UNKNOWNPERMISSIONS = 2097152 const MNT_UPDATE = 65536 const MNT_VISFLAGMASK = 401667583 const MS_DEACTIVATE = 8 const MS_INVALIDATE = 2 const MS_KILLPAGES = 4 const MSG_CTRUNC = 32 const MSG_DONTROUTE = 4 const MSG_DONTWAIT = 128 const MSG_HAVEMORE = 8192 const MSG_NEEDSA = 65536 const MSG_RCVMORE = 16384 const MSG_WAITALL = 64 const MSG_WAITSTREAM = 512 const NET_RT_DUMP = 1 const NET_RT_DUMP2 = 7 const NET_RT_FLAGS = 2 const NET_RT_IFLIST = 3 const NET_RT_IFLIST2 = 6 const NET_RT_MAXID = 10 const NET_RT_STAT = 4 const NET_RT_TRASH = 5 const NOKERNINFO = 33554432 const NOTE_ABSOLUTE = 8 const NOTE_ATTRIB = 8 const NOTE_BACKGROUND = 64 const NOTE_CHILD = 4 const NOTE_CRITICAL = 32 const NOTE_DELETE = 1 const NOTE_EXIT_CSERROR = 262144 const NOTE_EXIT_DECRYPTFAIL = 65536 const NOTE_EXIT_DETAIL = 33554432 const NOTE_EXIT_DETAIL_MASK = 458752 const NOTE_EXIT_MEMORY = 131072 const NOTE_EXIT_REPARENTED = 524288 const NOTE_EXITSTATUS = 67108864 const NOTE_EXTEND = 4 const NOTE_FFAND = 1073741824 const NOTE_FFCOPY = 3221225472 const NOTE_FFCTRLMASK = 3221225472 const NOTE_FFLAGSMASK = 16777215 const NOTE_FFNOP = 0 const NOTE_FUNLOCK = 256 const NOTE_LEEWAY = 16 const NOTE_LOWAT = 1 const NOTE_NSECONDS = 4 const NOTE_PCTRLMASK = -1048576 const NOTE_PDATAMASK = 1048575 const NOTE_RENAME = 32 const NOTE_REVOKE = 64 const NOTE_SECONDS = 1 const NOTE_SIGNAL = 134217728 const NOTE_TRACK = 1 const NOTE_TRACKERR = 2 const NOTE_TRIGGER = 16777216 const NOTE_USECONDS = 2 const NOTE_VM_ERROR = 268435456 const NOTE_VM_PRESSURE = 2147483648 const NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 536870912 const NOTE_VM_PRESSURE_TERMINATE = 1073741824 const NOTE_WRITE = 2 const O_DIRECTORY = 1048576 const O_NOFOLLOW = 256 const O_NONBLOCK = 4 const POLLRDBAND = 128 const POLLRDNORM = 64 const POLLWRBAND = 256 const POLLWRNORM = 4 const PRIO_PROCESS = 0 const PROT_WRITE = 2 const PT_ATTACHEXC = 14 const PT_CONTINUE = 7 const PT_DENY_ATTACH = 31 const PT_FIRSTMACH = 32 const PT_FORCEQUOTA = 30 const PT_THUPDATE = 13 const PT_TRACE_ME = 0 const PT_WRITE_D = 5 const PT_WRITE_I = 4 const PT_WRITE_U = 6 const PTRACE_CONT = 7 const PTRACE_KILL = 8 const PTRACE_TRACEME = 0 const RLIM_INFINITY = 9223372036854775807 const RLIMIT_CORE = 4 const RLIMIT_CPU = 0 const RLIMIT_DATA = 2 const RLIMIT_FSIZE = 1 const RLIMIT_MEMLOCK = 6 const RLIMIT_NOFILE = 8 const RLIMIT_NPROC = 7 const RLIMIT_RSS = 5 const RLIMIT_STACK = 3 const RTA_AUTHOR = 64 const RTA_GATEWAY = 2 const RTA_GENMASK = 8 const RTA_NETMASK = 4 const RTAX_AUTHOR = 6 const RTAX_GATEWAY = 1 const RTAX_GENMASK = 3 const RTAX_NETMASK = 2 const RTF_BLACKHOLE = 4096 const RTF_BROADCAST = 4194304 const RTF_CLONING = 256 const RTF_CONDEMNED = 33554432 const RTF_DELCLONE = 128 const RTF_DYNAMIC = 16 const RTF_GATEWAY = 2 const RTF_IFSCOPE = 16777216 const RTF_LLINFO = 1024 const RTF_MODIFIED = 32 const RTF_MULTICAST = 8388608 const RTF_NOIFREF = 8192 const RTF_PINNED = 1048576 const RTF_PRCLONING = 65536 const RTF_PROTO1 = 32768 const RTF_PROTO2 = 16384 const RTF_PROTO3 = 262144 const RTF_REJECT = 8 const RTF_ROUTER = 268435456 const RTF_STATIC = 2048 const RTF_WASCLONED = 131072 const RTF_XRESOLVE = 512 const RTM_CHANGE = 3 const RTM_DELADDR = 13 const RTM_DELETE = 2 const RTM_DELMADDR = 16 const RTM_IFINFO = 14 const RTM_IFINFO2 = 18 const RTM_LOSING = 5 const RTM_NEWADDR = 12 const RTM_NEWMADDR = 15 const RTM_NEWMADDR2 = 19 const RTM_OLDADD = 9 const RTM_OLDDEL = 10 const RTM_REDIRECT = 6 const RTM_RESOLVE = 11 const RTM_RTTUNIT = 1000000 const RTM_VERSION = 5 const RTV_EXPIRE = 4 const RTV_HOPCOUNT = 2 const RTV_RTTVAR = 128 const RTV_SSTHRESH = 32 const RUSAGE_CHILDREN = -1 const RUSAGE_SELF = 0 const SCM_RIGHTS = 1 const SCM_TIMESTAMP = 2
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
Signals
const SIOCADDMULTI = 2149607729 const SIOCAIFADDR = 2151704858 const SIOCARPIPLL = 3223349544 const SIOCATMARK = 1074033415 const SIOCAUTOADDR = 3223349542 const SIOCAUTONETMASK = 2149607719 const SIOCDELMULTI = 2149607730 const SIOCDIFADDR = 2149607705 const SIOCDIFPHYADDR = 2149607745 const SIOCGDRVSPEC = 3223873915 const SIOCGETVLAN = 3223349631 const SIOCGHIWAT = 1074033409 const SIOCGIFADDR = 3223349537 const SIOCGIFALTMTU = 3223349576 const SIOCGIFASYNCMAP = 3223349628 const SIOCGIFBOND = 3223349575 const SIOCGIFBRDADDR = 3223349539 const SIOCGIFCAP = 3223349595 const SIOCGIFCONF = 3222038820 const SIOCGIFDEVMTU = 3223349572 const SIOCGIFDSTADDR = 3223349538 const SIOCGIFFLAGS = 3223349521 const SIOCGIFGENERIC = 3223349562 const SIOCGIFKPI = 3223349639 const SIOCGIFMAC = 3223349634 const SIOCGIFMEDIA = 3224135992 const SIOCGIFMETRIC = 3223349527 const SIOCGIFMTU = 3223349555 const SIOCGIFNETMASK = 3223349541 const SIOCGIFPDSTADDR = 3223349568 const SIOCGIFPHYS = 3223349557 const SIOCGIFPSRCADDR = 3223349567 const SIOCGIFSTATUS = 3274795325 const SIOCGIFVLAN = 3223349631 const SIOCGIFWAKEFLAGS = 3223349640 const SIOCGLOWAT = 1074033411 const SIOCIFCREATE = 3223349624 const SIOCIFCREATE2 = 3223349626 const SIOCIFDESTROY = 2149607801 const SIOCIFGCLONERS = 3222301057 const SIOCRSLVMULTI = 3222300987 const SIOCSDRVSPEC = 2150132091 const SIOCSETVLAN = 2149607806 const SIOCSHIWAT = 2147775232 const SIOCSIFADDR = 2149607692 const SIOCSIFALTMTU = 2149607749 const SIOCSIFASYNCMAP = 2149607805 const SIOCSIFBOND = 2149607750 const SIOCSIFBRDADDR = 2149607699 const SIOCSIFCAP = 2149607770 const SIOCSIFDSTADDR = 2149607694 const SIOCSIFFLAGS = 2149607696 const SIOCSIFGENERIC = 2149607737 const SIOCSIFKPI = 2149607814 const SIOCSIFLLADDR = 2149607740 const SIOCSIFMAC = 2149607811 const SIOCSIFMEDIA = 3223349559 const SIOCSIFMETRIC = 2149607704 const SIOCSIFMTU = 2149607732 const SIOCSIFNETMASK = 2149607702 const SIOCSIFPHYADDR = 2151704894 const SIOCSIFPHYS = 2149607734 const SIOCSIFVLAN = 2149607806 const SIOCSLOWAT = 2147775234 const SizeofBpfHdr = 20 const SizeofBpfInsn = 8 const SizeofBpfProgram = 16 const SizeofBpfStat = 8 const SizeofClockinfo = 20 const SizeofCmsghdr = 12 const SizeofICMPv6Filter = 32 const SizeofIfaMsghdr = 20 const SizeofIfData = 96 const SizeofIfmaMsghdr = 16 const SizeofIfmaMsghdr2 = 20 const SizeofIfMsghdr = 112 const SizeofInet4Pktinfo = 12 const SizeofInet6Pktinfo = 20 const SizeofIPMreq = 8 const SizeofIPv6Mreq = 20 const SizeofIPv6MTUInfo = 32 const SizeofLinger = 8 const SizeofLong = 8 const SizeofLongLong = 8 const SizeofMsghdr = 48 const SizeofRtMetrics = 56 const SizeofRtMsghdr = 92 const SizeofShort = 2 const SizeofSockaddrAny = 108 const SizeofSockaddrCtl = 32 const SizeofSockaddrInet4 = 16 const SizeofSockaddrInet6 = 28 const SizeofSockaddrUnix = 106 const SO_ACCEPTCONN = 2 const SO_BROADCAST = 32 const SO_DONTROUTE = 16 const SO_DONTTRUNC = 8192 const SO_KEEPALIVE = 8 const SO_LINGER_SEC = 4224 const SO_NET_SERVICE_TYPE = 4374 const SO_NETSVC_MARKING_LEVEL = 4377 const SO_NOADDRERR = 4131 const SO_NOSIGPIPE = 4130 const SO_NOTIFYCONFLICT = 4134 const SO_NP_EXTENSIONS = 4227 const SO_NUMRCVPKT = 4370 const SO_OOBINLINE = 256 const SO_PEERLABEL = 4113 const SO_RANDOMPORT = 4226 const SO_RCVLOWAT = 4100 const SO_RCVTIMEO = 4102 const SO_REUSEADDR = 4 const SO_REUSEPORT = 512 const SO_REUSESHAREUID = 4133 const SO_SNDLOWAT = 4099 const SO_SNDTIMEO = 4101 const SO_TIMESTAMP = 1024 const SO_TIMESTAMP_MONOTONIC = 2048 const SO_UPCALLCLOSEWAIT = 4135 const SO_USELOOPBACK = 64 const SO_WANTMORE = 16384 const SO_WANTOOBFLAG = 32768 const SOCK_DGRAM = 2 const SOCK_MAXADDRLEN = 255 const SOCK_SEQPACKET = 5 const SOCK_STREAM = 1 const SOL_SOCKET = 65535
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Some external packages rely on SYS___SYSCTL being defined to implement their
own sysctl wrappers. Provide it here, even though direct syscalls are no
longer supported on darwin.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
Deprecated: Use libSystem wrappers instead of direct syscalls.
const TCP_CONNECTION_INFO = 262 const TCP_ENABLE_ECN = 260 const TCP_FASTOPEN = 261 const TCP_KEEPALIVE = 16 const TCP_KEEPCNT = 258 const TCP_KEEPINTVL = 257 const TCP_MAX_SACK = 4 const TCP_MAX_WINSHIFT = 14 const TCP_MAXHLEN = 60 const TCP_MAXOLEN = 40 const TCP_MAXSEG = 2 const TCP_MAXWIN = 65535 const TCP_MINMSS = 216 const TCP_NODELAY = 1 const TCP_NOPUSH = 4 const TCP_NOTSENT_LOWAT = 513 const TCP_RXT_CONNDROPTIME = 128 const TCP_RXT_FINDROP = 256 const TCP_SENDMOREACKS = 259 const TIOCDCDTIMESTAMP = 1074820184 const TIOCDSIMICROCODE = 536900693 const TIOCGDRAINWAIT = 1074033750 const TIOCGWINSZ = 1074295912 const TIOCMGDTRWAIT = 1074033754 const TIOCMSDTRWAIT = 2147775579 const TIOCPKT_DATA = 0 const TIOCPKT_DOSTOP = 32 const TIOCPKT_IOCTL = 64 const TIOCPKT_NOSTOP = 16 const TIOCPKT_START = 8 const TIOCPKT_STOP = 4 const TIOCPTYGNAME = 1082160211 const TIOCPTYGRANT = 536900692 const TIOCPTYUNLK = 536900690 const TIOCREMOTE = 2147775593 const TIOCSDRAINWAIT = 2147775575 const TIOCSWINSZ = 2148037735 const TIOCTIMESTAMP = 1074820185 const VM_LOADAVG = 2 const VM_MACHFACTOR = 4 const VM_SWAPUSAGE = 5 const WCONTINUED = 16 const XATTR_CREATE = 2 const XATTR_NODEFAULT = 16 const XATTR_NOFOLLOW = 1 const XATTR_REPLACE = 4
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |