Module libc::x86_64_apple_darwin
Structs
Functions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn qsort(base: &mut c_void, num: size_t, size: size_t, compar: fn(&c_void, &c_void) -> c_int)
-
extern "C" fn bsearch(key: &c_void, base: &c_void, num: size_t, size: size_t, compar: fn(&c_void, &c_void) -> c_int) -> &mut c_void
-
-
-
-
-
-
-
extern "C" fn tmpfile() -> &mut FILE
-
-
-
extern "C" fn getchar() -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn rewind(stream: &mut FILE)
-
-
-
-
-
extern "C" fn clearerr(stream: &mut FILE)
-
extern "C" fn perror(s: &c_char)
-
-
-
-
extern "C" fn atoll(s: &c_char) -> c_longlong
-
-
-
-
extern "C" fn strtoll(s: &c_char, endp: &mut &mut c_char, base: c_int) -> c_longlong
-
-
extern "C" fn strtoull(s: &c_char, endp: &mut &mut c_char, base: c_int) -> c_ulonglong
-
-
-
-
extern "C" fn free(p: &mut c_void)
-
extern "C" fn abort() -> !
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn getchar_unlocked() -> c_int
-
-
-
-
-
-
extern "C" fn getpeername(socket: c_int, address: &mut sockaddr, address_len: &mut socklen_t) -> c_int
-
extern "C" fn getsockname(socket: c_int, address: &mut sockaddr, address_len: &mut socklen_t) -> c_int
-
extern "C" fn setsockopt(socket: c_int, level: c_int, name: c_int, value: &c_void, option_len: socklen_t) -> c_int
-
extern "C" fn socketpair(domain: c_int, type_: c_int, protocol: c_int, socket_vector: &mut c_int) -> c_int
-
extern "C" fn sendto(socket: c_int, buf: &c_void, len: size_t, flags: c_int, addr: &sockaddr, addrlen: socklen_t) -> ssize_t
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn rewinddir(dirp: &mut DIR)
-
-
-
extern "C" fn fchownat(dirfd: c_int, pathname: &c_char, owner: uid_t, group: gid_t, flags: c_int) -> c_int
-
-
extern "C" fn linkat(olddirfd: c_int, oldpath: &c_char, newdirfd: c_int, newpath: &c_char, flags: c_int) -> c_int
-
extern "C" fn renameat(olddirfd: c_int, oldpath: &c_char, newdirfd: c_int, newpath: &c_char) -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn fork() -> pid_t
-
-
-
extern "C" fn getegid() -> gid_t
-
extern "C" fn geteuid() -> uid_t
-
extern "C" fn getgid() -> gid_t
-
-
extern "C" fn getlogin() -> &mut c_char
-
-
-
extern "C" fn getpgrp() -> pid_t
-
extern "C" fn getpid() -> pid_t
-
extern "C" fn getppid() -> pid_t
-
extern "C" fn getuid() -> uid_t
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn setsid() -> pid_t
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn munlockall() -> c_int
-
extern "C" fn mmap(addr: &mut c_void, len: size_t, prot: c_int, flags: c_int, fd: c_int, offset: off_t) -> &mut c_void
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn signal(signum: c_int, handler: sighandler_t) -> sighandler_t
-
-
-
-
-
extern "C" fn pthread_self() -> pthread_t
-
-
-
extern "C" fn pthread_attr_init(attr: &mut pthread_attr_t) -> c_int
-
extern "C" fn pthread_attr_destroy(attr: &mut pthread_attr_t) -> c_int
-
extern "C" fn pthread_attr_setstacksize(attr: &mut pthread_attr_t, stack_size: size_t) -> c_int
-
extern "C" fn pthread_attr_setdetachstate(attr: &mut pthread_attr_t, state: c_int) -> c_int
-
-
extern "C" fn sched_yield() -> c_int
-
extern "C" fn pthread_key_create(key: &mut pthread_key_t, dtor: fn(&mut c_void)) -> c_int
-
extern "C" fn pthread_key_delete(key: pthread_key_t) -> c_int
-
extern "C" fn pthread_getspecific(key: pthread_key_t) -> &mut c_void
-
extern "C" fn pthread_setspecific(key: pthread_key_t, value: &c_void) -> c_int
-
extern "C" fn pthread_mutex_init(lock: &mut pthread_mutex_t, attr: &pthread_mutexattr_t) -> c_int
-
extern "C" fn pthread_mutex_destroy(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutex_lock(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutex_trylock(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutex_unlock(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutexattr_init(attr: &mut pthread_mutexattr_t) -> c_int
-
extern "C" fn pthread_mutexattr_destroy(attr: &mut pthread_mutexattr_t) -> c_int
-
extern "C" fn pthread_mutexattr_settype(attr: &mut pthread_mutexattr_t, _type: c_int) -> c_int
-
extern "C" fn pthread_cond_init(cond: &mut pthread_cond_t, attr: &pthread_condattr_t) -> c_int
-
extern "C" fn pthread_cond_wait(cond: &mut pthread_cond_t, lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_cond_timedwait(cond: &mut pthread_cond_t, lock: &mut pthread_mutex_t, abstime: ×pec) -> c_int
-
extern "C" fn pthread_cond_signal(cond: &mut pthread_cond_t) -> c_int
-
extern "C" fn pthread_cond_broadcast(cond: &mut pthread_cond_t) -> c_int
-
extern "C" fn pthread_cond_destroy(cond: &mut pthread_cond_t) -> c_int
-
extern "C" fn pthread_condattr_init(attr: &mut pthread_condattr_t) -> c_int
-
extern "C" fn pthread_condattr_destroy(attr: &mut pthread_condattr_t) -> c_int
-
extern "C" fn pthread_rwlock_init(lock: &mut pthread_rwlock_t, attr: &pthread_rwlockattr_t) -> c_int
-
extern "C" fn pthread_rwlock_destroy(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_rdlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_tryrdlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_wrlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_trywrlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_unlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlockattr_init(attr: &mut pthread_rwlockattr_t) -> c_int
-
extern "C" fn pthread_rwlockattr_destroy(attr: &mut pthread_rwlockattr_t) -> c_int
-
extern "C" fn getsockopt(sockfd: c_int, level: c_int, optname: c_int, optval: &mut c_void, optlen: &mut socklen_t) -> c_int
-
-
-
-
extern "C" fn dlerror() -> &mut c_char
-
-
-
extern "C" fn getaddrinfo(node: &c_char, service: &c_char, hints: &addrinfo, res: &mut &mut addrinfo) -> c_int
-
extern "C" fn freeaddrinfo(res: &mut addrinfo)
-
-
-
extern "C" fn res_init() -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn getservent() -> &mut servent
-
extern "C" fn setservent(stayopen: c_int)
-
-
-
-
-
-
-
-
-
extern "C" fn select(nfds: c_int, readfds: &mut fd_set, writefds: &mut fd_set, errorfds: &mut fd_set, timeout: &mut timeval) -> c_int
-
-
extern "C" fn localeconv() -> &mut lconv
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn pause() -> c_int
-
-
-
-
-
extern "C" fn readlinkat(dirfd: c_int, pathname: &c_char, buf: &mut c_char, bufsiz: size_t) -> ssize_t
-
-
-
extern "C" fn atexit(cb: fn()) -> c_int
-
extern "C" fn sigaction(signum: c_int, act: &sigaction_t, oldact: &mut sigaction_t) -> c_int
-
-
extern "C" fn pselect(nfds: c_int, readfds: &mut fd_set, writefds: &mut fd_set, errorfds: &mut fd_set, timeout: ×pec, sigmask: &sigset_t) -> c_int
-
extern "C" fn cfmakeraw(termios_: &mut termios)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn rand() -> c_int
-
extern "C" fn srand(seed: c_uint)
-
-
extern "C" fn freeifaddrs(ifa: &mut ifaddrs)
-
-
-
-
extern "C" fn kqueue() -> c_int
-
-
-
extern "C" fn getpwent() -> &mut passwd
-
-
-
-
extern "C" fn getgrent() -> &mut group
-
extern "C" fn getprogname() -> &c_char
-
extern "C" fn setprogname(name: &c_char)
-
-
extern "C" fn if_nameindex() -> &mut if_nameindex_t
-
extern "C" fn if_freenameindex(ptr: &mut if_nameindex_t)
-
-
extern "C" fn glob(pattern: &c_char, flags: c_int, errfunc: fn(&c_char, c_int) -> c_int, pglob: &mut glob_t) -> c_int
-
extern "C" fn globfree(pglob: &mut glob_t)
-
-
-
-
-
-
-
extern "C" fn recvfrom(socket: c_int, buf: &mut c_void, len: size_t, flags: c_int, addr: &mut sockaddr, addrlen: &mut socklen_t) -> ssize_t
-
-
-
-
-
-
-
-
-
-
extern "C" fn getgrgid_r(gid: gid_t, grp: &mut group, buf: &mut c_char, buflen: size_t, result: &mut &mut group) -> c_int
-
-
-
extern "C" fn getdtablesize() -> c_int
-
extern "C" fn getgrnam_r(name: &c_char, grp: &mut group, buf: &mut c_char, buflen: size_t, result: &mut &mut group) -> c_int
-
-
-
-
-
-
-
-
-
extern "C" fn getpwnam_r(name: &c_char, pwd: &mut passwd, buf: &mut c_char, buflen: size_t, result: &mut &mut passwd) -> c_int
-
extern "C" fn getpwuid_r(uid: uid_t, pwd: &mut passwd, buf: &mut c_char, buflen: size_t, result: &mut &mut passwd) -> c_int
-
-
extern "C" fn pthread_atfork(prepare: fn(), parent: fn(), child: fn()) -> c_int
-
-
-
-
extern "C" fn pthread_create(native: &mut pthread_t, attr: &pthread_attr_t, f: fn(&mut c_void) -> &mut c_void, value: &mut c_void) -> c_int
-
-
-
-
-
-
extern "C" fn regexec(preg: ®ex_t, input: &c_char, nmatch: size_t, pmatch: &mut regmatch_t, eflags: c_int) -> c_int
-
extern "C" fn regerror(errcode: c_int, preg: ®ex_t, errbuf: &mut c_char, errbuf_size: size_t) -> size_t
-
extern "C" fn regfree(preg: &mut regex_t)
-
extern "C" fn arc4random() -> u32
-
-
-
extern "C" fn drand48() -> c_double
-
-
extern "C" fn lrand48() -> c_long
-
-
extern "C" fn mrand48() -> c_long
-
-
extern "C" fn srand48(seed: c_long)
-
-
extern "C" fn lcong48(p: &mut c_ushort)
-
extern "C" fn getopt_long(argc: c_int, argv: &&mut c_char, optstring: &c_char, longopts: &option, longindex: &mut c_int) -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn lio_listio(mode: c_int, aiocb_list: &&mut aiocb, nitems: c_int, sevp: &mut sigevent) -> c_int
-
-
-
-
extern "C" fn getutxent() -> &mut utmpx
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn getnameinfo(sa: &sockaddr, salen: socklen_t, host: &mut c_char, hostlen: socklen_t, serv: &mut c_char, sevlen: socklen_t, flags: c_int) -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn sysctl(name: &mut c_int, namelen: c_uint, oldp: &mut c_void, oldlenp: &mut size_t, newp: &mut c_void, newlen: size_t) -> c_int
-
extern "C" fn sysctlbyname(name: &c_char, oldp: &mut c_void, oldlenp: &mut size_t, newp: &mut c_void, newlen: size_t) -> c_int
-
extern "C" fn mach_absolute_time() -> u64
-
extern "C" fn mach_timebase_info(info: &mut mach_timebase_info_t) -> c_int
-
extern "C" fn mach_host_self() -> mach_port_t
-
extern "C" fn mach_thread_self() -> mach_port_t
-
-
-
extern "C" fn pthread_mach_thread_np(thread: pthread_t) -> mach_port_t
-
extern "C" fn pthread_from_mach_thread_np(port: mach_port_t) -> pthread_t
-
extern "C" fn pthread_create_from_mach_thread(thread: &mut pthread_t, attr: &pthread_attr_t, f: fn(&mut c_void) -> &mut c_void, value: &mut c_void) -> c_int
-
extern "C" fn pthread_stack_frame_decode_np(frame_addr: uintptr_t, return_addr: &mut uintptr_t) -> uintptr_t
-
-
-
-
-
extern "C" fn pthread_main_np() -> c_int
-
-
-
-
-
-
extern "C" fn pthread_attr_set_qos_class_np(attr: &mut pthread_attr_t, class: qos_class_t, priority: c_int) -> c_int
-
extern "C" fn pthread_attr_get_qos_class_np(attr: &mut pthread_attr_t, class: &mut qos_class_t, priority: &mut c_int) -> c_int
-
extern "C" fn pthread_set_qos_class_self_np(class: qos_class_t, priority: c_int) -> c_int
-
extern "C" fn pthread_get_qos_class_np(thread: pthread_t, class: &mut qos_class_t, priority: &mut c_int) -> c_int
-
extern "C" fn pthread_attr_getschedparam(attr: &pthread_attr_t, param: &mut sched_param) -> c_int
-
extern "C" fn pthread_attr_setschedparam(attr: &mut pthread_attr_t, param: &sched_param) -> c_int
-
extern "C" fn pthread_getschedparam(thread: pthread_t, policy: &mut c_int, param: &mut sched_param) -> c_int
-
extern "C" fn pthread_setschedparam(thread: pthread_t, policy: c_int, param: &sched_param) -> c_int
-
extern "C" fn pthread_introspection_hook_install(hook: pthread_introspection_hook_t) -> pthread_introspection_hook_t
-
extern "C" fn pthread_introspection_setspecific_np(thread: pthread_t, key: pthread_key_t, value: &c_void) -> c_int
-
extern "C" fn pthread_introspection_getspecific_np(thread: pthread_t, key: pthread_key_t) -> &mut c_void
-
extern "C" fn pthread_jit_write_protect_np(enabled: c_int)
-
extern "C" fn pthread_jit_write_protect_supported_np() -> c_int
-
extern "C" fn pthread_jit_write_with_callback_np(callback: pthread_jit_write_callback_t, ctx: &mut c_void) -> c_int
-
-
-
extern "C" fn os_unfair_lock_lock(lock: os_unfair_lock_t)
-
extern "C" fn os_unfair_lock_trylock(lock: os_unfair_lock_t) -> bool
-
extern "C" fn os_unfair_lock_unlock(lock: os_unfair_lock_t)
-
extern "C" fn os_unfair_lock_assert_owner(lock: os_unfair_lock_t)
-
extern "C" fn os_unfair_lock_assert_not_owner(lock: os_unfair_lock_t)
-
-
extern "C" fn os_log_type_enabled(oslog: os_log_t, tpe: os_log_type_t) -> bool
-
extern "C" fn os_signpost_id_make_with_pointer(log: os_log_t, ptr: &c_void) -> os_signpost_id_t
-
extern "C" fn os_signpost_id_generate(log: os_log_t) -> os_signpost_id_t
-
-
extern "C" fn thread_policy_set(thread: thread_t, flavor: thread_policy_flavor_t, policy_info: thread_policy_t, count: mach_msg_type_number_t) -> kern_return_t
-
extern "C" fn thread_policy_get(thread: thread_t, flavor: thread_policy_flavor_t, policy_info: thread_policy_t, count: &mut mach_msg_type_number_t, get_default: &mut boolean_t) -> kern_return_t
-
extern "C" fn thread_info(target_act: thread_inspect_t, flavor: thread_flavor_t, thread_info_out: thread_info_t, thread_info_outCnt: &mut mach_msg_type_number_t) -> kern_return_t
-
-
-
-
extern "C" fn backtrace_from_fp(startfp: &mut c_void, array: &mut &mut c_void, size: c_int) -> c_int
-
extern "C" fn backtrace_image_offsets(array: &&mut c_void, image_offsets: &mut image_offset, size: c_int)
-
-
-
-
extern "C" fn kevent(kq: c_int, changelist: &kevent_t, nchanges: c_int, eventlist: &mut kevent_t, nevents: c_int, timeout: ×pec) -> c_int
-
extern "C" fn kevent64(kq: c_int, changelist: &kevent64_s, nchanges: c_int, eventlist: &mut kevent64_s, nevents: c_int, flags: c_uint, timeout: ×pec) -> c_int
-
-
-
-
-
-
extern "C" fn sendfile(fd: c_int, s: c_int, offset: off_t, len: &mut off_t, hdtr: &mut sf_hdtr, flags: c_int) -> c_int
-
-
-
extern "C" fn openpty(amaster: &mut c_int, aslave: &mut c_int, name: &mut c_char, termp: &mut termios, winp: &mut winsize) -> c_int
-
extern "C" fn forkpty(amaster: &mut c_int, name: &mut c_char, termp: &mut termios, winp: &mut winsize) -> pid_t
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn getxattr(path: &c_char, name: &c_char, value: &mut c_void, size: size_t, position: u32, flags: c_int) -> ssize_t
-
extern "C" fn fgetxattr(filedes: c_int, name: &c_char, value: &mut c_void, size: size_t, position: u32, flags: c_int) -> ssize_t
-
extern "C" fn setxattr(path: &c_char, name: &c_char, value: &c_void, size: size_t, position: u32, flags: c_int) -> c_int
-
extern "C" fn fsetxattr(filedes: c_int, name: &c_char, value: &c_void, size: size_t, position: u32, flags: c_int) -> c_int
-
-
-
-
-
extern "C" fn renameatx_np(fromfd: c_int, from: &c_char, tofd: c_int, to: &c_char, flags: c_uint) -> c_int
-
-
extern "C" fn getgrouplist(name: &c_char, basegid: c_int, groups: &mut c_int, ngroups: &mut c_int) -> c_int
-
-
-
-
-
-
extern "C" fn posix_spawn(pid: &mut pid_t, path: &c_char, file_actions: &posix_spawn_file_actions_t, attrp: &posix_spawnattr_t, argv: &&mut c_char, envp: &&mut c_char) -> c_int
-
extern "C" fn posix_spawnp(pid: &mut pid_t, file: &c_char, file_actions: &posix_spawn_file_actions_t, attrp: &posix_spawnattr_t, argv: &&mut c_char, envp: &&mut c_char) -> c_int
-
extern "C" fn posix_spawnattr_init(attr: &mut posix_spawnattr_t) -> c_int
-
extern "C" fn posix_spawnattr_destroy(attr: &mut posix_spawnattr_t) -> c_int
-
extern "C" fn posix_spawnattr_getsigdefault(attr: &posix_spawnattr_t, default: &mut sigset_t) -> c_int
-
extern "C" fn posix_spawnattr_setsigdefault(attr: &mut posix_spawnattr_t, default: &sigset_t) -> c_int
-
extern "C" fn posix_spawnattr_getsigmask(attr: &posix_spawnattr_t, default: &mut sigset_t) -> c_int
-
extern "C" fn posix_spawnattr_setsigmask(attr: &mut posix_spawnattr_t, default: &sigset_t) -> c_int
-
extern "C" fn posix_spawnattr_getflags(attr: &posix_spawnattr_t, flags: &mut c_short) -> c_int
-
extern "C" fn posix_spawnattr_setflags(attr: &mut posix_spawnattr_t, flags: c_short) -> c_int
-
extern "C" fn posix_spawnattr_getpgroup(attr: &posix_spawnattr_t, flags: &mut pid_t) -> c_int
-
extern "C" fn posix_spawnattr_setpgroup(attr: &mut posix_spawnattr_t, flags: pid_t) -> c_int
-
extern "C" fn posix_spawnattr_setarchpref_np(attr: &mut posix_spawnattr_t, count: size_t, pref: &mut cpu_type_t, subpref: &mut cpu_subtype_t, ocount: &mut size_t) -> c_int
-
extern "C" fn posix_spawnattr_getarchpref_np(attr: &posix_spawnattr_t, count: size_t, pref: &mut cpu_type_t, subpref: &mut cpu_subtype_t, ocount: &mut size_t) -> c_int
-
extern "C" fn posix_spawnattr_set_qos_class_np(attr: &mut posix_spawnattr_t, qos_class: qos_class_t) -> c_int
-
extern "C" fn posix_spawnattr_get_qos_class_np(attr: &posix_spawnattr_t, qos_class: &mut qos_class_t) -> c_int
-
extern "C" fn posix_spawn_file_actions_init(actions: &mut posix_spawn_file_actions_t) -> c_int
-
extern "C" fn posix_spawn_file_actions_destroy(actions: &mut posix_spawn_file_actions_t) -> c_int
-
extern "C" fn posix_spawn_file_actions_addopen(actions: &mut posix_spawn_file_actions_t, fd: c_int, path: &c_char, oflag: c_int, mode: mode_t) -> c_int
-
extern "C" fn posix_spawn_file_actions_addclose(actions: &mut posix_spawn_file_actions_t, fd: c_int) -> c_int
-
extern "C" fn posix_spawn_file_actions_adddup2(actions: &mut posix_spawn_file_actions_t, fd: c_int, newfd: c_int) -> c_int
-
-
extern "C" fn connectx(socket: c_int, endpoints: &sa_endpoints_t, associd: sae_associd_t, flags: c_uint, iov: &iovec, iovcnt: c_uint, len: &mut size_t, connid: &mut sae_connid_t) -> c_int
-
extern "C" fn disconnectx(socket: c_int, associd: sae_associd_t, connid: sae_connid_t) -> c_int
-
-
extern "C" fn ntp_gettime(buf: &mut ntptimeval) -> c_int
-
-
-
-
extern "C" fn clonefileat(src_dirfd: c_int, src: &c_char, dst_dirfd: c_int, dst: &c_char, flags: u32) -> c_int
-
-
extern "C" fn copyfile(from: &c_char, to: &c_char, state: copyfile_state_t, flags: copyfile_flags_t) -> c_int
-
extern "C" fn fcopyfile(from: c_int, to: c_int, state: copyfile_state_t, flags: copyfile_flags_t) -> c_int
-
-
-
-
-
extern "C" fn strtonum(__numstr: &c_char, __minval: c_longlong, __maxval: c_longlong, errstrp: &mut &c_char) -> c_longlong
-
extern "C" fn mstats() -> mstats_t
-
extern "C" fn malloc_printf(format: &c_char, ...)
-
extern "C" fn malloc_zone_check(zone: &mut malloc_zone_t) -> boolean_t
-
extern "C" fn malloc_zone_print(zone: &mut malloc_zone_t, verbose: boolean_t)
-
extern "C" fn malloc_zone_statistics(zone: &mut malloc_zone_t, stats: &mut malloc_statistics_t)
-
extern "C" fn malloc_zone_log(zone: &mut malloc_zone_t, address: &mut c_void)
-
extern "C" fn malloc_zone_print_ptr_info(ptr: &mut c_void)
-
extern "C" fn malloc_default_zone() -> &mut malloc_zone_t
-
extern "C" fn malloc_zone_from_ptr(ptr: &c_void) -> &mut malloc_zone_t
-
extern "C" fn malloc_zone_malloc(zone: &mut malloc_zone_t, size: size_t) -> &mut c_void
-
extern "C" fn malloc_zone_valloc(zone: &mut malloc_zone_t, size: size_t) -> &mut c_void
-
extern "C" fn malloc_zone_calloc(zone: &mut malloc_zone_t, num_items: size_t, size: size_t) -> &mut c_void
-
extern "C" fn malloc_zone_realloc(zone: &mut malloc_zone_t, ptr: &mut c_void, size: size_t) -> &mut c_void
-
extern "C" fn malloc_zone_free(zone: &mut malloc_zone_t, ptr: &mut c_void)
-
-
-
-
-
extern "C" fn proc_pidinfo(pid: c_int, flavor: c_int, arg: u64, buffer: &mut c_void, buffersize: c_int) -> c_int
-
extern "C" fn proc_pidfdinfo(pid: c_int, fd: c_int, flavor: c_int, buffer: &mut c_void, buffersize: c_int) -> c_int
-
extern "C" fn proc_pidfileportinfo(pid: c_int, fileport: u32, flavor: c_int, buffer: &mut c_void, buffersize: c_int) -> c_int
-
-
-
extern "C" fn proc_regionfilename(pid: c_int, address: u64, buffer: &mut c_void, buffersize: u32) -> c_int
-
-
-
extern "C" fn proc_pid_rusage(pid: c_int, flavor: c_int, buffer: &mut rusage_info_t) -> c_int
-
extern "C" fn proc_set_no_smt() -> c_int
-
extern "C" fn proc_setthread_no_smt() -> c_int
-
-
-
-
extern "C" fn gethostid() -> c_long
-
extern "C" fn sethostid(hostid: c_long)
-
extern "C" fn CCRandomGenerateBytes(bytes: &mut c_void, size: size_t) -> CCRNGStatus
-
extern "C" fn mach_vm_map(target_task: vm_map_t, address: &mut mach_vm_address_t, size: mach_vm_size_t, mask: mach_vm_offset_t, flags: c_int, object: mem_entry_name_port_t, offset: memory_object_offset_t, copy: boolean_t, cur_protection: vm_prot_t, max_protection: vm_prot_t, inheritance: vm_inherit_t) -> kern_return_t
-
extern "C" fn vm_deallocate(target_task: vm_map_t, address: vm_address_t, size: vm_size_t) -> kern_return_t
-
extern "C" fn host_statistics64(host_priv: host_t, flavor: host_flavor_t, host_info64_out: host_info64_t, host_info64_outCnt: &mut mach_msg_type_number_t) -> kern_return_t
-
extern "C" fn host_processor_info(host: host_t, flavor: processor_flavor_t, out_processor_count: &mut natural_t, out_processor_info: &mut processor_info_array_t, out_processor_infoCnt: &mut mach_msg_type_number_t) -> kern_return_t
-
extern "C" fn task_for_pid(host: mach_port_t, pid: pid_t, task: &mut mach_port_t) -> kern_return_t
-
extern "C" fn task_info(host: mach_port_t, flavor: task_flavor_t, task_info_out: task_info_t, task_info_count: &mut mach_msg_type_number_t) -> kern_return_t
-
extern "C" fn task_create(target_task: task_t, ledgers: ledger_array_t, ledgersCnt: mach_msg_type_number_t, inherit_memory: boolean_t, child_task: &mut task_t) -> kern_return_t
-
extern "C" fn task_terminate(target_task: task_t) -> kern_return_t
-
extern "C" fn task_threads(target_task: task_inspect_t, act_list: &mut thread_act_array_t, act_listCnt: &mut mach_msg_type_number_t) -> kern_return_t
-
extern "C" fn host_statistics(host_priv: host_t, flavor: host_flavor_t, host_info_out: host_info_t, host_info_outCnt: &mut mach_msg_type_number_t) -> kern_return_t
-
extern "C" fn sysdir_start_search_path_enumeration(dir: sysdir_search_path_directory_t, domainMask: sysdir_search_path_domain_mask_t) -> sysdir_search_path_enumeration_state
-
extern "C" fn sysdir_get_next_search_path_enumeration(state: sysdir_search_path_enumeration_state, path: &mut c_char) -> sysdir_search_path_enumeration_state
-
extern "C" fn getattrlist(path: &c_char, attrList: &mut c_void, attrBuf: &mut c_void, attrBufSize: size_t, options: u32) -> c_int
-
extern "C" fn fgetattrlist(fd: c_int, attrList: &mut c_void, attrBuf: &mut c_void, attrBufSize: size_t, options: u32) -> c_int
-
extern "C" fn getattrlistat(fd: c_int, path: &c_char, attrList: &mut c_void, attrBuf: &mut c_void, attrBufSize: size_t, options: c_ulong) -> c_int
-
extern "C" fn setattrlist(path: &c_char, attrList: &mut c_void, attrBuf: &mut c_void, attrBufSize: size_t, options: u32) -> c_int
-
extern "C" fn fsetattrlist(fd: c_int, attrList: &mut c_void, attrBuf: &mut c_void, attrBufSize: size_t, options: u32) -> c_int
-
extern "C" fn setattrlistat(dir_fd: c_int, path: &c_char, attrList: &mut c_void, attrBuf: &mut c_void, attrBufSize: size_t, options: u32) -> c_int
-
extern "C" fn getattrlistbulk(dirfd: c_int, attrList: &mut c_void, attrBuf: &mut c_void, attrBufSize: size_t, options: u64) -> c_int
-
-
-
-
-
extern "C" fn mach_task_self() -> mach_port_t
-
-
extern "C" fn memmem(haystack: &c_void, haystacklen: size_t, needle: &c_void, needlelen: size_t) -> &mut c_void
-
extern "C" fn task_set_info(target_task: task_t, flavor: task_flavor_t, task_info_in: task_info_t, task_info_inCnt: mach_msg_type_number_t) -> kern_return_t
-
-
extern "C" fn iconv(cd: iconv_t, inbuf: &mut &mut c_char, inbytesleft: &mut size_t, outbuf: &mut &mut c_char, outbytesleft: &mut size_t) -> size_t
-
-
Unions
Types
-
type int8_t = i8
-
type int16_t = i16
-
type int32_t = i32
-
type int64_t = i64
-
type uint8_t = u8
-
type uint16_t = u16
-
type uint32_t = u32
-
type uint64_t = u64
-
type c_schar = i8
-
type c_uchar = u8
-
type c_short = i16
-
type c_ushort = u16
-
type c_int = i32
-
type c_uint = u32
-
type c_float = f32
-
type c_double = f64
-
type c_longlong = i64
-
type c_ulonglong = u64
-
type intmax_t = i64
-
type uintmax_t = u64
-
type size_t = usize
-
type ptrdiff_t = isize
-
type intptr_t = isize
-
type uintptr_t = usize
-
type ssize_t = isize
-
type pid_t = i32
-
type in_addr_t = u32
-
type in_port_t = u16
-
type sighandler_t = size_t
-
type cc_t = c_uchar
-
type uid_t = u32
-
type gid_t = u32
-
type locale_t = &mut c_void
-
type off_t = i64
-
type useconds_t = u32
-
type blkcnt_t = i64
-
type socklen_t = u32
-
type sa_family_t = u8
-
type pthread_t = uintptr_t
-
type nfds_t = c_uint
-
type regoff_t = off_t
-
type c_char = i8
-
type wchar_t = i32
-
type clock_t = c_ulong
-
type time_t = c_long
-
type suseconds_t = i32
-
type dev_t = i32
-
type ino_t = u64
-
type mode_t = u16
-
type nlink_t = u16
-
type blksize_t = i32
-
type rlim_t = u64
-
type pthread_key_t = c_ulong
-
type sigset_t = u32
-
type clockid_t = c_uint
-
type fsblkcnt_t = c_uint
-
type fsfilcnt_t = c_uint
-
type speed_t = c_ulong
-
type tcflag_t = c_ulong
-
type nl_item = c_int
-
type id_t = c_uint
-
type sem_t = c_int
-
type idtype_t = c_uint
-
type integer_t = c_int
-
type cpu_type_t = integer_t
-
type cpu_subtype_t = integer_t
-
type natural_t = u32
-
type mach_msg_type_number_t = natural_t
-
type kern_return_t = c_int
-
type uuid_t = [u8; 16]
-
type task_info_t = &mut integer_t
-
type host_info_t = &mut integer_t
-
type task_flavor_t = natural_t
-
type rusage_info_t = &mut c_void
-
type vm_offset_t = uintptr_t
-
type vm_size_t = uintptr_t
-
type vm_address_t = vm_offset_t
-
type posix_spawnattr_t = &mut c_void
-
type posix_spawn_file_actions_t = &mut c_void
-
type key_t = c_int
-
type shmatt_t = c_ushort
-
type sae_associd_t = u32
-
type sae_connid_t = u32
-
type mach_port_t = c_uint
-
type host_t = c_uint
-
type host_flavor_t = integer_t
-
type host_info64_t = &mut integer_t
-
type processor_flavor_t = c_int
-
type thread_flavor_t = natural_t
-
type thread_inspect_t = mach_port_t
-
type thread_act_t = mach_port_t
-
type thread_act_array_t = &mut thread_act_t
-
type policy_t = c_int
-
type mach_vm_address_t = u64
-
type mach_vm_offset_t = u64
-
type mach_vm_size_t = u64
-
type vm_map_t = mach_port_t
-
type mem_entry_name_port_t = mach_port_t
-
type memory_object_t = mach_port_t
-
type memory_object_offset_t = c_ulonglong
-
type vm_inherit_t = c_uint
-
type vm_prot_t = c_int
-
type ledger_t = mach_port_t
-
type ledger_array_t = &mut ledger_t
-
type iconv_t = &mut c_void
-
type processor_cpu_load_info_t = &mut processor_cpu_load_info
-
type processor_cpu_load_info_data_t = processor_cpu_load_info
-
type processor_basic_info_t = &mut processor_basic_info
-
type processor_basic_info_data_t = processor_basic_info
-
type processor_set_basic_info_data_t = processor_set_basic_info
-
type processor_set_basic_info_t = &mut processor_set_basic_info
-
type processor_set_load_info_data_t = processor_set_load_info
-
type processor_set_load_info_t = &mut processor_set_load_info
-
type processor_info_t = &mut integer_t
-
type processor_info_array_t = &mut integer_t
-
type mach_task_basic_info_data_t = mach_task_basic_info
-
type mach_task_basic_info_t = &mut mach_task_basic_info
-
type task_thread_times_info_data_t = task_thread_times_info
-
type task_thread_times_info_t = &mut task_thread_times_info
-
type thread_info_t = &mut integer_t
-
type thread_basic_info_t = &mut thread_basic_info
-
type thread_basic_info_data_t = thread_basic_info
-
type thread_identifier_info_t = &mut thread_identifier_info
-
type thread_identifier_info_data_t = thread_identifier_info
-
type thread_extended_info_t = &mut thread_extended_info
-
type thread_extended_info_data_t = thread_extended_info
-
type thread_t = mach_port_t
-
type thread_policy_flavor_t = natural_t
-
type thread_policy_t = &mut integer_t
-
type thread_latency_qos_t = integer_t
-
type thread_throughput_qos_t = integer_t
-
type thread_standard_policy_data_t = thread_standard_policy
-
type thread_standard_policy_t = &mut thread_standard_policy
-
type thread_extended_policy_data_t = thread_extended_policy
-
type thread_extended_policy_t = &mut thread_extended_policy
-
type thread_time_constraint_policy_data_t = thread_time_constraint_policy
-
type thread_time_constraint_policy_t = &mut thread_time_constraint_policy
-
type thread_precedence_policy_data_t = thread_precedence_policy
-
type thread_precedence_policy_t = &mut thread_precedence_policy
-
type thread_affinity_policy_data_t = thread_affinity_policy
-
type thread_affinity_policy_t = &mut thread_affinity_policy
-
type thread_background_policy_data_t = thread_background_policy
-
type thread_background_policy_t = &mut thread_background_policy
-
type thread_latency_qos_policy_data_t = thread_latency_qos_policy
-
type thread_latency_qos_policy_t = &mut thread_latency_qos_policy
-
type thread_throughput_qos_policy_data_t = thread_throughput_qos_policy
-
type thread_throughput_qos_policy_t = &mut thread_throughput_qos_policy
-
-
-
type os_unfair_lock = os_unfair_lock_s
-
type os_unfair_lock_t = &mut os_unfair_lock
-
type os_log_t = &mut c_void
-
type os_log_type_t = u8
-
type os_signpost_id_t = u64
-
type os_signpost_type_t = u8
-
type vm_statistics_t = &mut vm_statistics
-
type vm_statistics_data_t = vm_statistics
-
type vm_statistics64_t = &mut vm_statistics64
-
type vm_statistics64_data_t = vm_statistics64
-
type task_t = mach_port_t
-
type task_inspect_t = mach_port_t
-
type sysdir_search_path_enumeration_state = c_uint
-
type CCStatus = i32
-
type CCCryptorStatus = i32
-
type CCRNGStatus = CCCryptorStatus
-
type copyfile_state_t = &mut c_void
-
type copyfile_flags_t = u32
-
type attrgroup_t = u32
-
type vol_capabilities_set_t = [u32; 4]
-
type mach_timebase_info_data_t = mach_timebase_info_t
-
type c_long = i64
-
type c_ulong = u64
-
type boolean_t = c_uint
-
type mcontext_t = &mut __darwin_mcontext64
Enums
Consts
-
const INT_MIN: c_int = ...
-
const INT_MAX: c_int = ...
-
const SIG_DFL: sighandler_t = ...
-
const SIG_IGN: sighandler_t = ...
-
const SIG_ERR: sighandler_t = ...
-
const DT_UNKNOWN: u8 = ...
-
const DT_FIFO: u8 = ...
-
const DT_CHR: u8 = ...
-
const DT_DIR: u8 = ...
-
const DT_BLK: u8 = ...
-
const DT_REG: u8 = ...
-
const DT_LNK: u8 = ...
-
const DT_SOCK: u8 = ...
-
const FD_CLOEXEC: c_int = ...
-
const USRQUOTA: c_int = ...
-
const GRPQUOTA: c_int = ...
-
const SIGIOT: c_int = ...
-
const S_ISUID: mode_t = ...
-
const S_ISGID: mode_t = ...
-
const S_ISVTX: mode_t = ...
-
const IF_NAMESIZE: size_t = ...
-
const IFNAMSIZ: size_t = ...
-
const LOG_EMERG: c_int = ...
-
const LOG_ALERT: c_int = ...
-
const LOG_CRIT: c_int = ...
-
const LOG_ERR: c_int = ...
-
const LOG_WARNING: c_int = ...
-
const LOG_NOTICE: c_int = ...
-
const LOG_INFO: c_int = ...
-
const LOG_DEBUG: c_int = ...
-
const LOG_KERN: c_int = ...
-
const LOG_USER: c_int = ...
-
const LOG_MAIL: c_int = ...
-
const LOG_DAEMON: c_int = ...
-
const LOG_AUTH: c_int = ...
-
const LOG_SYSLOG: c_int = ...
-
const LOG_LPR: c_int = ...
-
const LOG_NEWS: c_int = ...
-
const LOG_UUCP: c_int = ...
-
const LOG_LOCAL0: c_int = ...
-
const LOG_LOCAL1: c_int = ...
-
const LOG_LOCAL2: c_int = ...
-
const LOG_LOCAL3: c_int = ...
-
const LOG_LOCAL4: c_int = ...
-
const LOG_LOCAL5: c_int = ...
-
const LOG_LOCAL6: c_int = ...
-
const LOG_LOCAL7: c_int = ...
-
const LOG_PID: c_int = ...
-
const LOG_CONS: c_int = ...
-
const LOG_ODELAY: c_int = ...
-
const LOG_NDELAY: c_int = ...
-
const LOG_NOWAIT: c_int = ...
-
const LOG_PRIMASK: c_int = ...
-
const LOG_FACMASK: c_int = ...
-
const PRIO_MIN: c_int = ...
-
const PRIO_MAX: c_int = ...
-
const IPPROTO_ICMP: c_int = ...
-
const IPPROTO_ICMPV6: c_int = ...
-
const IPPROTO_TCP: c_int = ...
-
const IPPROTO_UDP: c_int = ...
-
const IPPROTO_IP: c_int = ...
-
const IPPROTO_IPV6: c_int = ...
-
const INADDR_LOOPBACK: in_addr_t = ...
-
const INADDR_ANY: in_addr_t = ...
-
const INADDR_BROADCAST: in_addr_t = ...
-
const INADDR_NONE: in_addr_t = ...
-
const ARPOP_REQUEST: u16 = ...
-
const ARPOP_REPLY: u16 = ...
-
const ATF_COM: c_int = ...
-
const ATF_PERM: c_int = ...
-
const ATF_PUBL: c_int = ...
-
const ATF_USETRAILERS: c_int = ...
-
const LC_ALL: c_int = ...
-
const LC_COLLATE: c_int = ...
-
const LC_CTYPE: c_int = ...
-
const LC_MONETARY: c_int = ...
-
const LC_NUMERIC: c_int = ...
-
const LC_TIME: c_int = ...
-
const LC_MESSAGES: c_int = ...
-
const FIOCLEX: c_ulong = ...
-
const FIONCLEX: c_ulong = ...
-
const FIONREAD: c_ulong = ...
-
const FIONBIO: c_ulong = ...
-
const FIOASYNC: c_ulong = ...
-
const FIOSETOWN: c_ulong = ...
-
const FIOGETOWN: c_ulong = ...
-
const PATH_MAX: c_int = ...
-
const MAXPATHLEN: c_int = ...
-
const IOV_MAX: c_int = ...
-
const SA_ONSTACK: c_int = ...
-
const SA_SIGINFO: c_int = ...
-
const SA_RESTART: c_int = ...
-
const SA_RESETHAND: c_int = ...
-
const SA_NOCLDSTOP: c_int = ...
-
const SA_NODEFER: c_int = ...
-
const SA_NOCLDWAIT: c_int = ...
-
const SS_ONSTACK: c_int = ...
-
const SS_DISABLE: c_int = ...
-
const SIGCHLD: c_int = ...
-
const SIGBUS: c_int = ...
-
const SIGUSR1: c_int = ...
-
const SIGUSR2: c_int = ...
-
const SIGCONT: c_int = ...
-
const SIGSTOP: c_int = ...
-
const SIGTSTP: c_int = ...
-
const SIGURG: c_int = ...
-
const SIGIO: c_int = ...
-
const SIGSYS: c_int = ...
-
const SIGTTIN: c_int = ...
-
const SIGTTOU: c_int = ...
-
const SIGXCPU: c_int = ...
-
const SIGXFSZ: c_int = ...
-
const SIGVTALRM: c_int = ...
-
const SIGPROF: c_int = ...
-
const SIGWINCH: c_int = ...
-
const SIGINFO: c_int = ...
-
const SIG_SETMASK: c_int = ...
-
const SIG_BLOCK: c_int = ...
-
const SIG_UNBLOCK: c_int = ...
-
const IP_TOS: c_int = ...
-
const IP_MULTICAST_IF: c_int = ...
-
const IP_MULTICAST_TTL: c_int = ...
-
const IP_MULTICAST_LOOP: c_int = ...
-
const IPV6_UNICAST_HOPS: c_int = ...
-
const IPV6_MULTICAST_IF: c_int = ...
-
const IPV6_MULTICAST_HOPS: c_int = ...
-
const IPV6_MULTICAST_LOOP: c_int = ...
-
const IPV6_V6ONLY: c_int = ...
-
const IPTOS_ECN_NOTECT: u8 = ...
-
const IPTOS_ECN_MASK: u8 = ...
-
const IPTOS_ECN_ECT1: u8 = ...
-
const IPTOS_ECN_ECT0: u8 = ...
-
const IPTOS_ECN_CE: u8 = ...
-
const ST_RDONLY: c_ulong = ...
-
const SCM_RIGHTS: c_int = ...
-
const NCCS: usize = ...
-
const O_ACCMODE: c_int = ...
-
const O_RDONLY: c_int = ...
-
const O_WRONLY: c_int = ...
-
const O_RDWR: c_int = ...
-
const O_APPEND: c_int = ...
-
const O_CREAT: c_int = ...
-
const O_TRUNC: c_int = ...
-
const O_EXCL: c_int = ...
-
const O_ASYNC: c_int = ...
-
const O_SYNC: c_int = ...
-
const O_NONBLOCK: c_int = ...
-
const O_NOFOLLOW: c_int = ...
-
const O_SHLOCK: c_int = ...
-
const O_EXLOCK: c_int = ...
-
const O_FSYNC: c_int = ...
-
const O_NDELAY: c_int = ...
-
const F_GETOWN: c_int = ...
-
const F_SETOWN: c_int = ...
-
const F_RDLCK: c_short = ...
-
const F_UNLCK: c_short = ...
-
const F_WRLCK: c_short = ...
-
const MNT_RDONLY: c_int = ...
-
const MNT_SYNCHRONOUS: c_int = ...
-
const MNT_NOEXEC: c_int = ...
-
const MNT_NOSUID: c_int = ...
-
const MNT_ASYNC: c_int = ...
-
const MNT_EXPORTED: c_int = ...
-
const MNT_UPDATE: c_int = ...
-
const MNT_RELOAD: c_int = ...
-
const MNT_FORCE: c_int = ...
-
const Q_SYNC: c_int = ...
-
const Q_QUOTAON: c_int = ...
-
const Q_QUOTAOFF: c_int = ...
-
const TCIOFF: c_int = ...
-
const TCION: c_int = ...
-
const TCOOFF: c_int = ...
-
const TCOON: c_int = ...
-
const TCIFLUSH: c_int = ...
-
const TCOFLUSH: c_int = ...
-
const TCIOFLUSH: c_int = ...
-
const TCSANOW: c_int = ...
-
const TCSADRAIN: c_int = ...
-
const TCSAFLUSH: c_int = ...
-
const VEOF: usize = ...
-
const VEOL: usize = ...
-
const VEOL2: usize = ...
-
const VERASE: usize = ...
-
const VWERASE: usize = ...
-
const VKILL: usize = ...
-
const VREPRINT: usize = ...
-
const VINTR: usize = ...
-
const VQUIT: usize = ...
-
const VSUSP: usize = ...
-
const VDSUSP: usize = ...
-
const VSTART: usize = ...
-
const VSTOP: usize = ...
-
const VLNEXT: usize = ...
-
const VDISCARD: usize = ...
-
const VMIN: usize = ...
-
const VTIME: usize = ...
-
const VSTATUS: usize = ...
-
const IGNBRK: tcflag_t = ...
-
const BRKINT: tcflag_t = ...
-
const IGNPAR: tcflag_t = ...
-
const PARMRK: tcflag_t = ...
-
const INPCK: tcflag_t = ...
-
const ISTRIP: tcflag_t = ...
-
const INLCR: tcflag_t = ...
-
const IGNCR: tcflag_t = ...
-
const ICRNL: tcflag_t = ...
-
const IXON: tcflag_t = ...
-
const IXOFF: tcflag_t = ...
-
const IXANY: tcflag_t = ...
-
const IMAXBEL: tcflag_t = ...
-
const OPOST: tcflag_t = ...
-
const ONLCR: tcflag_t = ...
-
const OXTABS: tcflag_t = ...
-
const ONOEOT: tcflag_t = ...
-
const CIGNORE: tcflag_t = ...
-
const CSIZE: tcflag_t = ...
-
const CS5: tcflag_t = ...
-
const CS6: tcflag_t = ...
-
const CS7: tcflag_t = ...
-
const CS8: tcflag_t = ...
-
const CSTOPB: tcflag_t = ...
-
const CREAD: tcflag_t = ...
-
const PARENB: tcflag_t = ...
-
const PARODD: tcflag_t = ...
-
const HUPCL: tcflag_t = ...
-
const CLOCAL: tcflag_t = ...
-
const ECHOKE: tcflag_t = ...
-
const ECHOE: tcflag_t = ...
-
const ECHOK: tcflag_t = ...
-
const ECHO: tcflag_t = ...
-
const ECHONL: tcflag_t = ...
-
const ECHOPRT: tcflag_t = ...
-
const ECHOCTL: tcflag_t = ...
-
const ISIG: tcflag_t = ...
-
const ICANON: tcflag_t = ...
-
const ALTWERASE: tcflag_t = ...
-
const IEXTEN: tcflag_t = ...
-
const EXTPROC: tcflag_t = ...
-
const TOSTOP: tcflag_t = ...
-
const FLUSHO: tcflag_t = ...
-
const NOKERNINFO: tcflag_t = ...
-
const PENDIN: tcflag_t = ...
-
const NOFLSH: tcflag_t = ...
-
const MDMBUF: tcflag_t = ...
-
const WNOHANG: c_int = ...
-
const WUNTRACED: c_int = ...
-
const RTLD_LAZY: c_int = ...
-
const RTLD_NOW: c_int = ...
-
const RTLD_NEXT: &mut c_void = ...
-
const RTLD_DEFAULT: &mut c_void = ...
-
const RTLD_SELF: &mut c_void = ...
-
const LOG_CRON: c_int = ...
-
const LOG_AUTHPRIV: c_int = ...
-
const LOG_FTP: c_int = ...
-
const LOG_PERROR: c_int = ...
-
const TCP_NODELAY: c_int = ...
-
const TCP_MAXSEG: c_int = ...
-
const PIPE_BUF: usize = ...
-
const BUS_ADRALN: c_int = ...
-
const BUS_ADRERR: c_int = ...
-
const BUS_OBJERR: c_int = ...
-
const CLD_EXITED: c_int = ...
-
const CLD_KILLED: c_int = ...
-
const CLD_DUMPED: c_int = ...
-
const CLD_TRAPPED: c_int = ...
-
const CLD_STOPPED: c_int = ...
-
const CLD_CONTINUED: c_int = ...
-
const POLLIN: c_short = ...
-
const POLLPRI: c_short = ...
-
const POLLOUT: c_short = ...
-
const POLLERR: c_short = ...
-
const POLLHUP: c_short = ...
-
const POLLNVAL: c_short = ...
-
const POLLRDNORM: c_short = ...
-
const POLLWRNORM: c_short = ...
-
const POLLRDBAND: c_short = ...
-
const POLLWRBAND: c_short = ...
-
const BIOCGBLEN: c_ulong = ...
-
const BIOCSBLEN: c_ulong = ...
-
const BIOCFLUSH: c_uint = ...
-
const BIOCPROMISC: c_uint = ...
-
const BIOCGDLT: c_ulong = ...
-
const BIOCGETIF: c_ulong = ...
-
const BIOCSETIF: c_ulong = ...
-
const BIOCGSTATS: c_ulong = ...
-
const BIOCIMMEDIATE: c_ulong = ...
-
const BIOCVERSION: c_ulong = ...
-
const BIOCGHDRCMPLT: c_ulong = ...
-
const BIOCSHDRCMPLT: c_ulong = ...
-
const SIOCGIFADDR: c_ulong = ...
-
const REG_BASIC: c_int = ...
-
const REG_EXTENDED: c_int = ...
-
const REG_ICASE: c_int = ...
-
const REG_NOSUB: c_int = ...
-
const REG_NEWLINE: c_int = ...
-
const REG_NOSPEC: c_int = ...
-
const REG_PEND: c_int = ...
-
const REG_DUMP: c_int = ...
-
const REG_NOMATCH: c_int = ...
-
const REG_BADPAT: c_int = ...
-
const REG_ECOLLATE: c_int = ...
-
const REG_ECTYPE: c_int = ...
-
const REG_EESCAPE: c_int = ...
-
const REG_ESUBREG: c_int = ...
-
const REG_EBRACK: c_int = ...
-
const REG_EPAREN: c_int = ...
-
const REG_EBRACE: c_int = ...
-
const REG_BADBR: c_int = ...
-
const REG_ERANGE: c_int = ...
-
const REG_ESPACE: c_int = ...
-
const REG_BADRPT: c_int = ...
-
const REG_EMPTY: c_int = ...
-
const REG_ASSERT: c_int = ...
-
const REG_INVARG: c_int = ...
-
const REG_ATOI: c_int = ...
-
const REG_ITOA: c_int = ...
-
const REG_NOTBOL: c_int = ...
-
const REG_NOTEOL: c_int = ...
-
const REG_STARTEND: c_int = ...
-
const REG_TRACE: c_int = ...
-
const REG_LARGE: c_int = ...
-
const REG_BACKR: c_int = ...
-
const TIOCCBRK: c_uint = ...
-
const TIOCSBRK: c_uint = ...
-
const PRIO_PROCESS: c_int = ...
-
const PRIO_PGRP: c_int = ...
-
const PRIO_USER: c_int = ...
-
const ITIMER_REAL: c_int = ...
-
const ITIMER_VIRTUAL: c_int = ...
-
const ITIMER_PROF: c_int = ...
-
const EMPTY: c_short = ...