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 = /* ... */
-
const RUN_LVL: c_short = /* ... */
-
const BOOT_TIME: c_short = /* ... */
-
const OLD_TIME: c_short = /* ... */
-
const NEW_TIME: c_short = /* ... */
-
const INIT_PROCESS: c_short = /* ... */
-
const LOGIN_PROCESS: c_short = /* ... */
-
const USER_PROCESS: c_short = /* ... */
-
const DEAD_PROCESS: c_short = /* ... */
-
const ACCOUNTING: c_short = /* ... */
-
const SIGNATURE: c_short = /* ... */
-
const SHUTDOWN_TIME: c_short = /* ... */
-
const LC_COLLATE_MASK: c_int = /* ... */
-
const LC_CTYPE_MASK: c_int = /* ... */
-
const LC_MESSAGES_MASK: c_int = /* ... */
-
const LC_MONETARY_MASK: c_int = /* ... */
-
const LC_NUMERIC_MASK: c_int = /* ... */
-
const LC_TIME_MASK: c_int = /* ... */
-
const LC_ALL_MASK: c_int = /* ... */
-
const CODESET: nl_item = /* ... */
-
const D_T_FMT: nl_item = /* ... */
-
const D_FMT: nl_item = /* ... */
-
const T_FMT: nl_item = /* ... */
-
const T_FMT_AMPM: nl_item = /* ... */
-
const AM_STR: nl_item = /* ... */
-
const PM_STR: nl_item = /* ... */
-
const DAY_1: nl_item = /* ... */
-
const DAY_2: nl_item = /* ... */
-
const DAY_3: nl_item = /* ... */
-
const DAY_4: nl_item = /* ... */
-
const DAY_5: nl_item = /* ... */
-
const DAY_6: nl_item = /* ... */
-
const DAY_7: nl_item = /* ... */
-
const ABDAY_1: nl_item = /* ... */
-
const ABDAY_2: nl_item = /* ... */
-
const ABDAY_3: nl_item = /* ... */
-
const ABDAY_4: nl_item = /* ... */
-
const ABDAY_5: nl_item = /* ... */
-
const ABDAY_6: nl_item = /* ... */
-
const ABDAY_7: nl_item = /* ... */
-
const MON_1: nl_item = /* ... */
-
const MON_2: nl_item = /* ... */
-
const MON_3: nl_item = /* ... */
-
const MON_4: nl_item = /* ... */
-
const MON_5: nl_item = /* ... */
-
const MON_6: nl_item = /* ... */
-
const MON_7: nl_item = /* ... */
-
const MON_8: nl_item = /* ... */
-
const MON_9: nl_item = /* ... */
-
const MON_10: nl_item = /* ... */
-
const MON_11: nl_item = /* ... */
-
const MON_12: nl_item = /* ... */
-
const ABMON_1: nl_item = /* ... */
-
const ABMON_2: nl_item = /* ... */
-
const ABMON_3: nl_item = /* ... */
-
const ABMON_4: nl_item = /* ... */
-
const ABMON_5: nl_item = /* ... */
-
const ABMON_6: nl_item = /* ... */
-
const ABMON_7: nl_item = /* ... */
-
const ABMON_8: nl_item = /* ... */
-
const ABMON_9: nl_item = /* ... */
-
const ABMON_10: nl_item = /* ... */
-
const ABMON_11: nl_item = /* ... */
-
const ABMON_12: nl_item = /* ... */
-
const CLOCK_REALTIME: clockid_t = /* ... */
-
const CLOCK_MONOTONIC_RAW: clockid_t = /* ... */
-
const CLOCK_MONOTONIC_RAW_APPROX: clockid_t = /* ... */
-
const CLOCK_MONOTONIC: clockid_t = /* ... */
-
const CLOCK_UPTIME_RAW: clockid_t = /* ... */
-
const CLOCK_UPTIME_RAW_APPROX: clockid_t = /* ... */
-
const CLOCK_PROCESS_CPUTIME_ID: clockid_t = /* ... */
-
const CLOCK_THREAD_CPUTIME_ID: clockid_t = /* ... */
-
const ERA: nl_item = /* ... */
-
const ERA_D_FMT: nl_item = /* ... */
-
const ERA_D_T_FMT: nl_item = /* ... */
-
const ERA_T_FMT: nl_item = /* ... */
-
const ALT_DIGITS: nl_item = /* ... */
-
const RADIXCHAR: nl_item = /* ... */
-
const THOUSEP: nl_item = /* ... */
-
const YESEXPR: nl_item = /* ... */
-
const NOEXPR: nl_item = /* ... */
-
const YESSTR: nl_item = /* ... */
-
const NOSTR: nl_item = /* ... */
-
const CRNCYSTR: nl_item = /* ... */
-
const D_MD_ORDER: nl_item = /* ... */
-
const EXIT_FAILURE: c_int = /* ... */
-
const EXIT_SUCCESS: c_int = /* ... */
-
const RAND_MAX: c_int = /* ... */
-
const EOF: c_int = /* ... */
-
const SEEK_SET: c_int = /* ... */
-
const SEEK_CUR: c_int = /* ... */
-
const SEEK_END: c_int = /* ... */
-
const SEEK_HOLE: c_int = /* ... */
-
const SEEK_DATA: c_int = /* ... */
-
const BUFSIZ: c_uint = /* ... */
-
const FOPEN_MAX: c_uint = /* ... */
-
const FILENAME_MAX: c_uint = /* ... */
-
const L_tmpnam: c_uint = /* ... */
-
const TMP_MAX: c_uint = /* ... */
-
const O_EVTONLY: c_int = /* ... */
-
const O_NOCTTY: c_int = /* ... */
-
const O_DIRECTORY: c_int = /* ... */
-
const O_SYMLINK: c_int = /* ... */
-
const O_DSYNC: c_int = /* ... */
-
const O_CLOEXEC: c_int = /* ... */
-
const O_NOFOLLOW_ANY: c_int = /* ... */
-
const S_IFIFO: mode_t = /* ... */
-
const S_IFCHR: mode_t = /* ... */
-
const S_IFBLK: mode_t = /* ... */
-
const S_IFDIR: mode_t = /* ... */
-
const S_IFREG: mode_t = /* ... */
-
const S_IFLNK: mode_t = /* ... */
-
const S_IFSOCK: mode_t = /* ... */
-
const S_IFMT: mode_t = /* ... */
-
const S_IEXEC: mode_t = /* ... */
-
const S_IWRITE: mode_t = /* ... */
-
const S_IREAD: mode_t = /* ... */
-
const S_IRWXU: mode_t = /* ... */
-
const S_IXUSR: mode_t = /* ... */
-
const S_IWUSR: mode_t = /* ... */
-
const S_IRUSR: mode_t = /* ... */
-
const S_IRWXG: mode_t = /* ... */
-
const S_IXGRP: mode_t = /* ... */
-
const S_IWGRP: mode_t = /* ... */
-
const S_IRGRP: mode_t = /* ... */
-
const S_IRWXO: mode_t = /* ... */
-
const S_IXOTH: mode_t = /* ... */
-
const S_IWOTH: mode_t = /* ... */
-
const S_IROTH: mode_t = /* ... */
-
const F_OK: c_int = /* ... */
-
const R_OK: c_int = /* ... */
-
const W_OK: c_int = /* ... */
-
const X_OK: c_int = /* ... */
-
const STDIN_FILENO: c_int = /* ... */
-
const STDOUT_FILENO: c_int = /* ... */
-
const STDERR_FILENO: c_int = /* ... */
-
const F_LOCK: c_int = /* ... */
-
const F_TEST: c_int = /* ... */
-
const F_TLOCK: c_int = /* ... */
-
const F_ULOCK: c_int = /* ... */
-
const F_GETLK: c_int = /* ... */
-
const F_SETLK: c_int = /* ... */
-
const F_SETLKW: c_int = /* ... */
-
const SIGHUP: c_int = /* ... */
-
const SIGINT: c_int = /* ... */
-
const SIGQUIT: c_int = /* ... */
-
const SIGILL: c_int = /* ... */
-
const SIGABRT: c_int = /* ... */
-
const SIGEMT: c_int = /* ... */
-
const SIGFPE: c_int = /* ... */
-
const SIGKILL: c_int = /* ... */
-
const SIGSEGV: c_int = /* ... */
-
const SIGPIPE: c_int = /* ... */
-
const SIGALRM: c_int = /* ... */
-
const SIGTERM: c_int = /* ... */
-
const PROT_NONE: c_int = /* ... */
-
const PROT_READ: c_int = /* ... */
-
const PROT_WRITE: c_int = /* ... */
-
const PROT_EXEC: c_int = /* ... */
-
const PT_TRACE_ME: c_int = /* ... */
-
const PT_READ_I: c_int = /* ... */
-
const PT_READ_D: c_int = /* ... */
-
const PT_READ_U: c_int = /* ... */
-
const PT_WRITE_I: c_int = /* ... */
-
const PT_WRITE_D: c_int = /* ... */
-
const PT_WRITE_U: c_int = /* ... */
-
const PT_CONTINUE: c_int = /* ... */
-
const PT_KILL: c_int = /* ... */
-
const PT_STEP: c_int = /* ... */
-
const PT_ATTACH: c_int = /* ... */
-
const PT_DETACH: c_int = /* ... */
-
const PT_SIGEXC: c_int = /* ... */
-
const PT_THUPDATE: c_int = /* ... */
-
const PT_ATTACHEXC: c_int = /* ... */
-
const PT_FORCEQUOTA: c_int = /* ... */
-
const PT_DENY_ATTACH: c_int = /* ... */
-
const PT_FIRSTMACH: c_int = /* ... */
-
const MAP_FILE: c_int = /* ... */
-
const MAP_SHARED: c_int = /* ... */
-
const MAP_PRIVATE: c_int = /* ... */
-
const MAP_FIXED: c_int = /* ... */
-
const MAP_ANON: c_int = /* ... */
-
const MAP_ANONYMOUS: c_int = /* ... */
-
const CPU_STATE_USER: c_int = /* ... */
-
const CPU_STATE_SYSTEM: c_int = /* ... */
-
const CPU_STATE_IDLE: c_int = /* ... */
-
const CPU_STATE_NICE: c_int = /* ... */
-
const CPU_STATE_MAX: c_int = /* ... */
-
const PROCESSOR_BASIC_INFO: c_int = /* ... */
-
const PROCESSOR_CPU_LOAD_INFO: c_int = /* ... */
-
const PROCESSOR_PM_REGS_INFO: c_int = /* ... */
-
const PROCESSOR_TEMPERATURE: c_int = /* ... */
-
const PROCESSOR_SET_LOAD_INFO: c_int = /* ... */
-
const PROCESSOR_SET_BASIC_INFO: c_int = /* ... */
-
const VM_FLAGS_FIXED: c_int = /* ... */
-
const VM_FLAGS_ANYWHERE: c_int = /* ... */
-
const VM_FLAGS_PURGABLE: c_int = /* ... */
-
const VM_FLAGS_RANDOM_ADDR: c_int = /* ... */
-
const VM_FLAGS_NO_CACHE: c_int = /* ... */
-
const VM_FLAGS_RESILIENT_CODESIGN: c_int = /* ... */
-
const VM_FLAGS_RESILIENT_MEDIA: c_int = /* ... */
-
const VM_FLAGS_OVERWRITE: c_int = /* ... */
-
const VM_FLAGS_SUPERPAGE_MASK: c_int = /* ... */
-
const VM_FLAGS_RETURN_DATA_ADDR: c_int = /* ... */
-
const VM_FLAGS_RETURN_4K_DATA_ADDR: c_int = /* ... */
-
const VM_FLAGS_ALIAS_MASK: c_int = /* ... */
-
const VM_FLAGS_USER_ALLOCATE: c_int = /* ... */
-
const VM_FLAGS_USER_MAP: c_int = /* ... */
-
const VM_FLAGS_USER_REMAP: c_int = /* ... */
-
const VM_FLAGS_SUPERPAGE_SHIFT: c_int = /* ... */
-
const SUPERPAGE_NONE: c_int = /* ... */
-
const SUPERPAGE_SIZE_ANY: c_int = /* ... */
-
const VM_FLAGS_SUPERPAGE_NONE: c_int = /* ... */
-
const VM_FLAGS_SUPERPAGE_SIZE_ANY: c_int = /* ... */
-
const SUPERPAGE_SIZE_2MB: c_int = /* ... */
-
const VM_FLAGS_SUPERPAGE_SIZE_2MB: c_int = /* ... */
-
const VM_MEMORY_MALLOC: c_int = /* ... */
-
const VM_MEMORY_MALLOC_SMALL: c_int = /* ... */
-
const VM_MEMORY_MALLOC_LARGE: c_int = /* ... */
-
const VM_MEMORY_MALLOC_HUGE: c_int = /* ... */
-
const VM_MEMORY_SBRK: c_int = /* ... */
-
const VM_MEMORY_REALLOC: c_int = /* ... */
-
const VM_MEMORY_MALLOC_TINY: c_int = /* ... */
-
const VM_MEMORY_MALLOC_LARGE_REUSABLE: c_int = /* ... */
-
const VM_MEMORY_MALLOC_LARGE_REUSED: c_int = /* ... */
-
const VM_MEMORY_ANALYSIS_TOOL: c_int = /* ... */
-
const VM_MEMORY_MALLOC_NANO: c_int = /* ... */
-
const VM_MEMORY_MACH_MSG: c_int = /* ... */
-
const VM_MEMORY_IOKIT: c_int = /* ... */
-
const VM_MEMORY_STACK: c_int = /* ... */
-
const VM_MEMORY_GUARD: c_int = /* ... */
-
const VM_MEMORY_SHARED_PMAP: c_int = /* ... */
-
const VM_MEMORY_DYLIB: c_int = /* ... */
-
const VM_MEMORY_OBJC_DISPATCHERS: c_int = /* ... */
-
const VM_MEMORY_UNSHARED_PMAP: c_int = /* ... */
-
const VM_MEMORY_APPKIT: c_int = /* ... */
-
const VM_MEMORY_FOUNDATION: c_int = /* ... */
-
const VM_MEMORY_COREGRAPHICS: c_int = /* ... */
-
const VM_MEMORY_CORESERVICES: c_int = /* ... */
-
const VM_MEMORY_CARBON: c_int = /* ... */
-
const VM_MEMORY_JAVA: c_int = /* ... */
-
const VM_MEMORY_COREDATA: c_int = /* ... */
-
const VM_MEMORY_COREDATA_OBJECTIDS: c_int = /* ... */
-
const VM_MEMORY_ATS: c_int = /* ... */
-
const VM_MEMORY_LAYERKIT: c_int = /* ... */
-
const VM_MEMORY_CGIMAGE: c_int = /* ... */
-
const VM_MEMORY_TCMALLOC: c_int = /* ... */
-
const VM_MEMORY_COREGRAPHICS_DATA: c_int = /* ... */
-
const VM_MEMORY_COREGRAPHICS_SHARED: c_int = /* ... */
-
const VM_MEMORY_COREGRAPHICS_FRAMEBUFFERS: c_int = /* ... */
-
const VM_MEMORY_COREGRAPHICS_BACKINGSTORES: c_int = /* ... */
-
const VM_MEMORY_COREGRAPHICS_XALLOC: c_int = /* ... */
-
const VM_MEMORY_COREGRAPHICS_MISC: c_int = /* ... */
-
const VM_MEMORY_DYLD: c_int = /* ... */
-
const VM_MEMORY_DYLD_MALLOC: c_int = /* ... */
-
const VM_MEMORY_SQLITE: c_int = /* ... */
-
const VM_MEMORY_JAVASCRIPT_CORE: c_int = /* ... */
-
const VM_MEMORY_JAVASCRIPT_JIT_EXECUTABLE_ALLOCATOR: c_int = /* ... */
-
const VM_MEMORY_JAVASCRIPT_JIT_REGISTER_FILE: c_int = /* ... */
-
const VM_MEMORY_GLSL: c_int = /* ... */
-
const VM_MEMORY_OPENCL: c_int = /* ... */
-
const VM_MEMORY_COREIMAGE: c_int = /* ... */
-
const VM_MEMORY_WEBCORE_PURGEABLE_BUFFERS: c_int = /* ... */
-
const VM_MEMORY_IMAGEIO: c_int = /* ... */
-
const VM_MEMORY_COREPROFILE: c_int = /* ... */
-
const VM_MEMORY_ASSETSD: c_int = /* ... */
-
const VM_MEMORY_OS_ALLOC_ONCE: c_int = /* ... */
-
const VM_MEMORY_LIBDISPATCH: c_int = /* ... */
-
const VM_MEMORY_ACCELERATE: c_int = /* ... */
-
const VM_MEMORY_COREUI: c_int = /* ... */
-
const VM_MEMORY_COREUIFILE: c_int = /* ... */
-
const VM_MEMORY_GENEALOGY: c_int = /* ... */
-
const VM_MEMORY_RAWCAMERA: c_int = /* ... */
-
const VM_MEMORY_CORPSEINFO: c_int = /* ... */
-
const VM_MEMORY_ASL: c_int = /* ... */
-
const VM_MEMORY_SWIFT_RUNTIME: c_int = /* ... */
-
const VM_MEMORY_SWIFT_METADATA: c_int = /* ... */
-
const VM_MEMORY_DHMM: c_int = /* ... */
-
const VM_MEMORY_SCENEKIT: c_int = /* ... */
-
const VM_MEMORY_SKYWALK: c_int = /* ... */
-
const VM_MEMORY_APPLICATION_SPECIFIC_1: c_int = /* ... */
-
const VM_MEMORY_APPLICATION_SPECIFIC_16: c_int = /* ... */
-
const MAP_FAILED: &mut c_void = /* ... */
-
const MCL_CURRENT: c_int = /* ... */
-
const MCL_FUTURE: c_int = /* ... */
-
const MS_ASYNC: c_int = /* ... */
-
const MS_INVALIDATE: c_int = /* ... */
-
const MS_SYNC: c_int = /* ... */
-
const MS_KILLPAGES: c_int = /* ... */
-
const MS_DEACTIVATE: c_int = /* ... */
-
const EPERM: c_int = /* ... */
-
const ENOENT: c_int = /* ... */
-
const ESRCH: c_int = /* ... */
-
const EINTR: c_int = /* ... */
-
const EIO: c_int = /* ... */
-
const ENXIO: c_int = /* ... */
-
const E2BIG: c_int = /* ... */
-
const ENOEXEC: c_int = /* ... */
-
const EBADF: c_int = /* ... */
-
const ECHILD: c_int = /* ... */
-
const EDEADLK: c_int = /* ... */
-
const ENOMEM: c_int = /* ... */
-
const EACCES: c_int = /* ... */
-
const EFAULT: c_int = /* ... */
-
const ENOTBLK: c_int = /* ... */
-
const EBUSY: c_int = /* ... */
-
const EEXIST: c_int = /* ... */
-
const EXDEV: c_int = /* ... */
-
const ENODEV: c_int = /* ... */
-
const ENOTDIR: c_int = /* ... */
-
const EISDIR: c_int = /* ... */
-
const EINVAL: c_int = /* ... */
-
const ENFILE: c_int = /* ... */
-
const EMFILE: c_int = /* ... */
-
const ENOTTY: c_int = /* ... */
-
const ETXTBSY: c_int = /* ... */
-
const EFBIG: c_int = /* ... */
-
const ENOSPC: c_int = /* ... */
-
const ESPIPE: c_int = /* ... */
-
const EROFS: c_int = /* ... */
-
const EMLINK: c_int = /* ... */
-
const EPIPE: c_int = /* ... */
-
const EDOM: c_int = /* ... */
-
const ERANGE: c_int = /* ... */
-
const EAGAIN: c_int = /* ... */
-
const EWOULDBLOCK: c_int = /* ... */
-
const EINPROGRESS: c_int = /* ... */
-
const EALREADY: c_int = /* ... */
-
const ENOTSOCK: c_int = /* ... */
-
const EDESTADDRREQ: c_int = /* ... */
-
const EMSGSIZE: c_int = /* ... */
-
const EPROTOTYPE: c_int = /* ... */
-
const ENOPROTOOPT: c_int = /* ... */
-
const EPROTONOSUPPORT: c_int = /* ... */
-
const ESOCKTNOSUPPORT: c_int = /* ... */
-
const ENOTSUP: c_int = /* ... */
-
const EPFNOSUPPORT: c_int = /* ... */
-
const EAFNOSUPPORT: c_int = /* ... */
-
const EADDRINUSE: c_int = /* ... */
-
const EADDRNOTAVAIL: c_int = /* ... */
-
const ENETDOWN: c_int = /* ... */
-
const ENETUNREACH: c_int = /* ... */
-
const ENETRESET: c_int = /* ... */
-
const ECONNABORTED: c_int = /* ... */
-
const ECONNRESET: c_int = /* ... */
-
const ENOBUFS: c_int = /* ... */
-
const EISCONN: c_int = /* ... */
-
const ENOTCONN: c_int = /* ... */
-
const ESHUTDOWN: c_int = /* ... */
-
const ETOOMANYREFS: c_int = /* ... */
-
const ETIMEDOUT: c_int = /* ... */
-
const ECONNREFUSED: c_int = /* ... */
-
const ELOOP: c_int = /* ... */
-
const ENAMETOOLONG: c_int = /* ... */
-
const EHOSTDOWN: c_int = /* ... */
-
const EHOSTUNREACH: c_int = /* ... */
-
const ENOTEMPTY: c_int = /* ... */
-
const EPROCLIM: c_int = /* ... */
-
const EUSERS: c_int = /* ... */
-
const EDQUOT: c_int = /* ... */
-
const ESTALE: c_int = /* ... */
-
const EREMOTE: c_int = /* ... */
-
const EBADRPC: c_int = /* ... */
-
const ERPCMISMATCH: c_int = /* ... */
-
const EPROGUNAVAIL: c_int = /* ... */
-
const EPROGMISMATCH: c_int = /* ... */
-
const EPROCUNAVAIL: c_int = /* ... */
-
const ENOLCK: c_int = /* ... */
-
const ENOSYS: c_int = /* ... */
-
const EFTYPE: c_int = /* ... */
-
const EAUTH: c_int = /* ... */
-
const ENEEDAUTH: c_int = /* ... */
-
const EPWROFF: c_int = /* ... */
-
const EDEVERR: c_int = /* ... */
-
const EOVERFLOW: c_int = /* ... */
-
const EBADEXEC: c_int = /* ... */
-
const EBADARCH: c_int = /* ... */
-
const ESHLIBVERS: c_int = /* ... */
-
const EBADMACHO: c_int = /* ... */
-
const ECANCELED: c_int = /* ... */
-
const EIDRM: c_int = /* ... */
-
const ENOMSG: c_int = /* ... */
-
const EILSEQ: c_int = /* ... */
-
const ENOATTR: c_int = /* ... */
-
const EBADMSG: c_int = /* ... */
-
const EMULTIHOP: c_int = /* ... */
-
const ENODATA: c_int = /* ... */
-
const ENOLINK: c_int = /* ... */
-
const ENOSR: c_int = /* ... */
-
const ENOSTR: c_int = /* ... */
-
const EPROTO: c_int = /* ... */
-
const ETIME: c_int = /* ... */
-
const EOPNOTSUPP: c_int = /* ... */
-
const ENOPOLICY: c_int = /* ... */
-
const ENOTRECOVERABLE: c_int = /* ... */
-
const EOWNERDEAD: c_int = /* ... */
-
const EQFULL: c_int = /* ... */
-
const ELAST: c_int = /* ... */
-
const EAI_AGAIN: c_int = /* ... */
-
const EAI_BADFLAGS: c_int = /* ... */
-
const EAI_FAIL: c_int = /* ... */
-
const EAI_FAMILY: c_int = /* ... */
-
const EAI_MEMORY: c_int = /* ... */
-
const EAI_NODATA: c_int = /* ... */
-
const EAI_NONAME: c_int = /* ... */
-
const EAI_SERVICE: c_int = /* ... */
-
const EAI_SOCKTYPE: c_int = /* ... */
-
const EAI_SYSTEM: c_int = /* ... */
-
const EAI_OVERFLOW: c_int = /* ... */
-
const F_DUPFD: c_int = /* ... */
-
const F_DUPFD_CLOEXEC: c_int = /* ... */
-
const F_GETFD: c_int = /* ... */
-
const F_SETFD: c_int = /* ... */
-
const F_GETFL: c_int = /* ... */
-
const F_SETFL: c_int = /* ... */
-
const F_PREALLOCATE: c_int = /* ... */
-
const F_RDADVISE: c_int = /* ... */
-
const F_RDAHEAD: c_int = /* ... */
-
const F_NOCACHE: c_int = /* ... */
-
const F_LOG2PHYS: c_int = /* ... */
-
const F_GETPATH: c_int = /* ... */
-
const F_FULLFSYNC: c_int = /* ... */
-
const F_FREEZE_FS: c_int = /* ... */
-
const F_THAW_FS: c_int = /* ... */
-
const F_GLOBAL_NOCACHE: c_int = /* ... */
-
const F_NODIRECT: c_int = /* ... */
-
const F_LOG2PHYS_EXT: c_int = /* ... */
-
const F_BARRIERFSYNC: c_int = /* ... */
-
const F_GETPATH_NOFIRMLINK: c_int = /* ... */
-
const F_ALLOCATECONTIG: c_uint = /* ... */
-
const F_ALLOCATEALL: c_uint = /* ... */
-
const F_PEOFPOSMODE: c_int = /* ... */
-
const F_VOLPOSMODE: c_int = /* ... */
-
const AT_FDCWD: c_int = /* ... */
-
const AT_EACCESS: c_int = /* ... */
-
const AT_SYMLINK_NOFOLLOW: c_int = /* ... */
-
const AT_SYMLINK_FOLLOW: c_int = /* ... */
-
const AT_REMOVEDIR: c_int = /* ... */
-
const PTHREAD_INTROSPECTION_THREAD_CREATE: c_uint = /* ... */
-
const PTHREAD_INTROSPECTION_THREAD_START: c_uint = /* ... */
-
const PTHREAD_INTROSPECTION_THREAD_TERMINATE: c_uint = /* ... */
-
const PTHREAD_INTROSPECTION_THREAD_DESTROY: c_uint = /* ... */
-
const TIOCMODG: c_ulong = /* ... */
-
const TIOCMODS: c_ulong = /* ... */
-
const TIOCM_LE: c_int = /* ... */
-
const TIOCM_DTR: c_int = /* ... */
-
const TIOCM_RTS: c_int = /* ... */
-
const TIOCM_ST: c_int = /* ... */
-
const TIOCM_SR: c_int = /* ... */
-
const TIOCM_CTS: c_int = /* ... */
-
const TIOCM_CAR: c_int = /* ... */
-
const TIOCM_CD: c_int = /* ... */
-
const TIOCM_RNG: c_int = /* ... */
-
const TIOCM_RI: c_int = /* ... */
-
const TIOCM_DSR: c_int = /* ... */
-
const TIOCEXCL: c_int = /* ... */
-
const TIOCNXCL: c_int = /* ... */
-
const TIOCFLUSH: c_ulong = /* ... */
-
const TIOCGETD: c_ulong = /* ... */
-
const TIOCSETD: c_ulong = /* ... */
-
const TIOCIXON: c_uint = /* ... */
-
const TIOCIXOFF: c_uint = /* ... */
-
const TIOCSDTR: c_uint = /* ... */
-
const TIOCCDTR: c_uint = /* ... */
-
const TIOCGPGRP: c_ulong = /* ... */
-
const TIOCSPGRP: c_ulong = /* ... */
-
const TIOCOUTQ: c_ulong = /* ... */
-
const TIOCSTI: c_ulong = /* ... */
-
const TIOCNOTTY: c_uint = /* ... */
-
const TIOCPKT: c_ulong = /* ... */
-
const TIOCPKT_DATA: c_int = /* ... */
-
const TIOCPKT_FLUSHREAD: c_int = /* ... */
-
const TIOCPKT_FLUSHWRITE: c_int = /* ... */
-
const TIOCPKT_STOP: c_int = /* ... */
-
const TIOCPKT_START: c_int = /* ... */
-
const TIOCPKT_NOSTOP: c_int = /* ... */
-
const TIOCPKT_DOSTOP: c_int = /* ... */
-
const TIOCPKT_IOCTL: c_int = /* ... */
-
const TIOCSTOP: c_uint = /* ... */
-
const TIOCSTART: c_uint = /* ... */
-
const TIOCMSET: c_ulong = /* ... */
-
const TIOCMBIS: c_ulong = /* ... */
-
const TIOCMBIC: c_ulong = /* ... */
-
const TIOCMGET: c_ulong = /* ... */
-
const TIOCREMOTE: c_ulong = /* ... */
-
const TIOCGWINSZ: c_ulong = /* ... */
-
const TIOCSWINSZ: c_ulong = /* ... */
-
const TIOCUCNTL: c_ulong = /* ... */
-
const TIOCSTAT: c_uint = /* ... */
-
const TIOCSCONS: c_uint = /* ... */
-
const TIOCCONS: c_ulong = /* ... */
-
const TIOCSCTTY: c_uint = /* ... */
-
const TIOCEXT: c_ulong = /* ... */
-
const TIOCSIG: c_uint = /* ... */
-
const TIOCDRAIN: c_uint = /* ... */
-
const TIOCMSDTRWAIT: c_ulong = /* ... */
-
const TIOCMGDTRWAIT: c_ulong = /* ... */
-
const TIOCSDRAINWAIT: c_ulong = /* ... */
-
const TIOCGDRAINWAIT: c_ulong = /* ... */
-
const TIOCDSIMICROCODE: c_uint = /* ... */
-
const TIOCPTYGRANT: c_uint = /* ... */
-
const TIOCPTYGNAME: c_uint = /* ... */
-
const TIOCPTYUNLK: c_uint = /* ... */
-
const BIOCGRSIG: c_ulong = /* ... */
-
const BIOCSRSIG: c_ulong = /* ... */
-
const BIOCSDLT: c_ulong = /* ... */
-
const BIOCGSEESENT: c_ulong = /* ... */
-
const BIOCSSEESENT: c_ulong = /* ... */
-
const BIOCGDLTLIST: c_ulong = /* ... */
-
const FIODTYPE: c_ulong = /* ... */
-
const B0: speed_t = /* ... */
-
const B50: speed_t = /* ... */
-
const B75: speed_t = /* ... */
-
const B110: speed_t = /* ... */
-
const B134: speed_t = /* ... */
-
const B150: speed_t = /* ... */
-
const B200: speed_t = /* ... */
-
const B300: speed_t = /* ... */
-
const B600: speed_t = /* ... */
-
const B1200: speed_t = /* ... */
-
const B1800: speed_t = /* ... */
-
const B2400: speed_t = /* ... */
-
const B4800: speed_t = /* ... */
-
const B9600: speed_t = /* ... */
-
const B19200: speed_t = /* ... */
-
const B38400: speed_t = /* ... */
-
const B7200: speed_t = /* ... */
-
const B14400: speed_t = /* ... */
-
const B28800: speed_t = /* ... */
-
const B57600: speed_t = /* ... */
-
const B76800: speed_t = /* ... */
-
const B115200: speed_t = /* ... */
-
const B230400: speed_t = /* ... */
-
const EXTA: speed_t = /* ... */
-
const EXTB: speed_t = /* ... */
-
const SIGTRAP: c_int = /* ... */
-
const GLOB_APPEND: c_int = /* ... */
-
const GLOB_DOOFFS: c_int = /* ... */
-
const GLOB_ERR: c_int = /* ... */
-
const GLOB_MARK: c_int = /* ... */
-
const GLOB_NOCHECK: c_int = /* ... */
-
const GLOB_NOSORT: c_int = /* ... */
-
const GLOB_NOESCAPE: c_int = /* ... */
-
const GLOB_NOSPACE: c_int = /* ... */
-
const GLOB_ABORTED: c_int = /* ... */
-
const GLOB_NOMATCH: c_int = /* ... */
-
const POSIX_MADV_NORMAL: c_int = /* ... */
-
const POSIX_MADV_RANDOM: c_int = /* ... */
-
const POSIX_MADV_SEQUENTIAL: c_int = /* ... */
-
const POSIX_MADV_WILLNEED: c_int = /* ... */
-
const POSIX_MADV_DONTNEED: c_int = /* ... */
-
const PTHREAD_PROCESS_PRIVATE: c_int = /* ... */
-
const PTHREAD_PROCESS_SHARED: c_int = /* ... */
-
const PTHREAD_CREATE_JOINABLE: c_int = /* ... */
-
const PTHREAD_CREATE_DETACHED: c_int = /* ... */
-
const PTHREAD_STACK_MIN: size_t = /* ... */
-
const RLIMIT_CPU: c_int = /* ... */
-
const RLIMIT_FSIZE: c_int = /* ... */
-
const RLIMIT_DATA: c_int = /* ... */
-
const RLIMIT_STACK: c_int = /* ... */
-
const RLIMIT_CORE: c_int = /* ... */
-
const RLIMIT_AS: c_int = /* ... */
-
const RLIMIT_RSS: c_int = /* ... */
-
const RLIMIT_MEMLOCK: c_int = /* ... */
-
const RLIMIT_NPROC: c_int = /* ... */
-
const RLIMIT_NOFILE: c_int = /* ... */
-
const RLIM_NLIMITS: c_int = /* ... */
-
const RLIM_INFINITY: rlim_t = /* ... */
-
const RUSAGE_SELF: c_int = /* ... */
-
const RUSAGE_CHILDREN: c_int = /* ... */
-
const MADV_NORMAL: c_int = /* ... */
-
const MADV_RANDOM: c_int = /* ... */
-
const MADV_SEQUENTIAL: c_int = /* ... */
-
const MADV_WILLNEED: c_int = /* ... */
-
const MADV_DONTNEED: c_int = /* ... */
-
const MADV_FREE: c_int = /* ... */
-
const MADV_ZERO_WIRED_PAGES: c_int = /* ... */
-
const MADV_FREE_REUSABLE: c_int = /* ... */
-
const MADV_FREE_REUSE: c_int = /* ... */
-
const MADV_CAN_REUSE: c_int = /* ... */
-
const MINCORE_INCORE: c_int = /* ... */
-
const MINCORE_REFERENCED: c_int = /* ... */
-
const MINCORE_MODIFIED: c_int = /* ... */
-
const MINCORE_REFERENCED_OTHER: c_int = /* ... */
-
const MINCORE_MODIFIED_OTHER: c_int = /* ... */
-
const CTLIOCGINFO: c_ulong = /* ... */
-
const IPPROTO_HOPOPTS: c_int = /* ... */
-
const IPPROTO_IGMP: c_int = /* ... */
-
const IPPROTO_GGP: c_int = /* ... */
-
const IPPROTO_IPIP: c_int = /* ... */
-
const IPPROTO_ST: c_int = /* ... */
-
const IPPROTO_EGP: c_int = /* ... */
-
const IPPROTO_PIGP: c_int = /* ... */
-
const IPPROTO_RCCMON: c_int = /* ... */
-
const IPPROTO_NVPII: c_int = /* ... */
-
const IPPROTO_PUP: c_int = /* ... */
-
const IPPROTO_ARGUS: c_int = /* ... */
-
const IPPROTO_EMCON: c_int = /* ... */
-
const IPPROTO_XNET: c_int = /* ... */
-
const IPPROTO_CHAOS: c_int = /* ... */
-
const IPPROTO_MUX: c_int = /* ... */
-
const IPPROTO_MEAS: c_int = /* ... */
-
const IPPROTO_HMP: c_int = /* ... */
-
const IPPROTO_PRM: c_int = /* ... */
-
const IPPROTO_IDP: c_int = /* ... */
-
const IPPROTO_TRUNK1: c_int = /* ... */
-
const IPPROTO_TRUNK2: c_int = /* ... */
-
const IPPROTO_LEAF1: c_int = /* ... */
-
const IPPROTO_LEAF2: c_int = /* ... */
-
const IPPROTO_RDP: c_int = /* ... */
-
const IPPROTO_IRTP: c_int = /* ... */
-
const IPPROTO_TP: c_int = /* ... */
-
const IPPROTO_BLT: c_int = /* ... */
-
const IPPROTO_NSP: c_int = /* ... */
-
const IPPROTO_INP: c_int = /* ... */
-
const IPPROTO_SEP: c_int = /* ... */
-
const IPPROTO_3PC: c_int = /* ... */
-
const IPPROTO_IDPR: c_int = /* ... */
-
const IPPROTO_XTP: c_int = /* ... */
-
const IPPROTO_DDP: c_int = /* ... */
-
const IPPROTO_CMTP: c_int = /* ... */
-
const IPPROTO_TPXX: c_int = /* ... */
-
const IPPROTO_IL: c_int = /* ... */
-
const IPPROTO_SDRP: c_int = /* ... */
-
const IPPROTO_ROUTING: c_int = /* ... */
-
const IPPROTO_FRAGMENT: c_int = /* ... */
-
const IPPROTO_IDRP: c_int = /* ... */
-
const IPPROTO_RSVP: c_int = /* ... */
-
const IPPROTO_GRE: c_int = /* ... */
-
const IPPROTO_MHRP: c_int = /* ... */
-
const IPPROTO_BHA: c_int = /* ... */
-
const IPPROTO_ESP: c_int = /* ... */
-
const IPPROTO_AH: c_int = /* ... */
-
const IPPROTO_INLSP: c_int = /* ... */
-
const IPPROTO_SWIPE: c_int = /* ... */
-
const IPPROTO_NHRP: c_int = /* ... */
-
const IPPROTO_NONE: c_int = /* ... */
-
const IPPROTO_DSTOPTS: c_int = /* ... */
-
const IPPROTO_AHIP: c_int = /* ... */
-
const IPPROTO_CFTP: c_int = /* ... */
-
const IPPROTO_HELLO: c_int = /* ... */
-
const IPPROTO_SATEXPAK: c_int = /* ... */
-
const IPPROTO_KRYPTOLAN: c_int = /* ... */
-
const IPPROTO_RVD: c_int = /* ... */
-
const IPPROTO_IPPC: c_int = /* ... */
-
const IPPROTO_ADFS: c_int = /* ... */
-
const IPPROTO_SATMON: c_int = /* ... */
-
const IPPROTO_VISA: c_int = /* ... */
-
const IPPROTO_IPCV: c_int = /* ... */
-
const IPPROTO_CPNX: c_int = /* ... */
-
const IPPROTO_CPHB: c_int = /* ... */
-
const IPPROTO_WSN: c_int = /* ... */
-
const IPPROTO_PVP: c_int = /* ... */
-
const IPPROTO_BRSATMON: c_int = /* ... */
-
const IPPROTO_ND: c_int = /* ... */
-
const IPPROTO_WBMON: c_int = /* ... */
-
const IPPROTO_WBEXPAK: c_int = /* ... */
-
const IPPROTO_EON: c_int = /* ... */
-
const IPPROTO_VMTP: c_int = /* ... */
-
const IPPROTO_SVMTP: c_int = /* ... */
-
const IPPROTO_VINES: c_int = /* ... */
-
const IPPROTO_TTP: c_int = /* ... */
-
const IPPROTO_IGP: c_int = /* ... */
-
const IPPROTO_DGP: c_int = /* ... */
-
const IPPROTO_TCF: c_int = /* ... */
-
const IPPROTO_IGRP: c_int = /* ... */
-
const IPPROTO_OSPFIGP: c_int = /* ... */
-
const IPPROTO_SRPC: c_int = /* ... */
-
const IPPROTO_LARP: c_int = /* ... */
-
const IPPROTO_MTP: c_int = /* ... */
-
const IPPROTO_AX25: c_int = /* ... */
-
const IPPROTO_IPEIP: c_int = /* ... */
-
const IPPROTO_MICP: c_int = /* ... */
-
const IPPROTO_SCCSP: c_int = /* ... */
-
const IPPROTO_ETHERIP: c_int = /* ... */
-
const IPPROTO_ENCAP: c_int = /* ... */
-
const IPPROTO_APES: c_int = /* ... */
-
const IPPROTO_GMTP: c_int = /* ... */
-
const IPPROTO_PIM: c_int = /* ... */
-
const IPPROTO_IPCOMP: c_int = /* ... */
-
const IPPROTO_PGM: c_int = /* ... */
-
const IPPROTO_SCTP: c_int = /* ... */
-
const IPPROTO_DIVERT: c_int = /* ... */
-
const IPPROTO_RAW: c_int = /* ... */
-
const IPPROTO_MAX: c_int = /* ... */
-
const IPPROTO_DONE: c_int = /* ... */
-
const AF_UNSPEC: c_int = /* ... */
-
const AF_LOCAL: c_int = /* ... */
-
const AF_UNIX: c_int = /* ... */
-
const AF_INET: c_int = /* ... */
-
const AF_IMPLINK: c_int = /* ... */
-
const AF_PUP: c_int = /* ... */
-
const AF_CHAOS: c_int = /* ... */
-
const AF_NS: c_int = /* ... */
-
const AF_ISO: c_int = /* ... */
-
const AF_OSI: c_int = /* ... */
-
const AF_ECMA: c_int = /* ... */
-
const AF_DATAKIT: c_int = /* ... */
-
const AF_CCITT: c_int = /* ... */
-
const AF_SNA: c_int = /* ... */
-
const AF_DECnet: c_int = /* ... */
-
const AF_DLI: c_int = /* ... */
-
const AF_LAT: c_int = /* ... */
-
const AF_HYLINK: c_int = /* ... */
-
const AF_APPLETALK: c_int = /* ... */
-
const AF_ROUTE: c_int = /* ... */
-
const AF_LINK: c_int = /* ... */
-
const pseudo_AF_XTP: c_int = /* ... */
-
const AF_COIP: c_int = /* ... */
-
const AF_CNT: c_int = /* ... */
-
const pseudo_AF_RTIP: c_int = /* ... */
-
const AF_IPX: c_int = /* ... */
-
const AF_SIP: c_int = /* ... */
-
const pseudo_AF_PIP: c_int = /* ... */
-
const AF_NDRV: c_int = /* ... */
-
const AF_ISDN: c_int = /* ... */
-
const AF_E164: c_int = /* ... */
-
const pseudo_AF_KEY: c_int = /* ... */
-
const AF_INET6: c_int = /* ... */
-
const AF_NATM: c_int = /* ... */
-
const AF_SYSTEM: c_int = /* ... */
-
const AF_NETBIOS: c_int = /* ... */
-
const AF_PPP: c_int = /* ... */
-
const pseudo_AF_HDRCMPLT: c_int = /* ... */
-
const AF_SYS_CONTROL: c_int = /* ... */
-
const SYSPROTO_EVENT: c_int = /* ... */
-
const SYSPROTO_CONTROL: c_int = /* ... */
-
const PF_UNSPEC: c_int = /* ... */
-
const PF_LOCAL: c_int = /* ... */
-
const PF_UNIX: c_int = /* ... */
-
const PF_INET: c_int = /* ... */
-
const PF_IMPLINK: c_int = /* ... */
-
const PF_PUP: c_int = /* ... */
-
const PF_CHAOS: c_int = /* ... */
-
const PF_NS: c_int = /* ... */
-
const PF_ISO: c_int = /* ... */
-
const PF_OSI: c_int = /* ... */
-
const PF_ECMA: c_int = /* ... */
-
const PF_DATAKIT: c_int = /* ... */
-
const PF_CCITT: c_int = /* ... */
-
const PF_SNA: c_int = /* ... */
-
const PF_DECnet: c_int = /* ... */
-
const PF_DLI: c_int = /* ... */
-
const PF_LAT: c_int = /* ... */
-
const PF_HYLINK: c_int = /* ... */
-
const PF_APPLETALK: c_int = /* ... */
-
const PF_ROUTE: c_int = /* ... */
-
const PF_LINK: c_int = /* ... */
-
const PF_XTP: c_int = /* ... */
-
const PF_COIP: c_int = /* ... */
-
const PF_CNT: c_int = /* ... */
-
const PF_SIP: c_int = /* ... */
-
const PF_IPX: c_int = /* ... */
-
const PF_RTIP: c_int = /* ... */
-
const PF_PIP: c_int = /* ... */
-
const PF_NDRV: c_int = /* ... */
-
const PF_ISDN: c_int = /* ... */
-
const PF_KEY: c_int = /* ... */
-
const PF_INET6: c_int = /* ... */
-
const PF_NATM: c_int = /* ... */
-
const PF_SYSTEM: c_int = /* ... */
-
const PF_NETBIOS: c_int = /* ... */
-
const PF_PPP: c_int = /* ... */
-
const NET_RT_DUMP: c_int = /* ... */
-
const NET_RT_FLAGS: c_int = /* ... */
-
const NET_RT_IFLIST: c_int = /* ... */
-
const SOMAXCONN: c_int = /* ... */
-
const SOCK_MAXADDRLEN: c_int = /* ... */
-
const SOCK_STREAM: c_int = /* ... */
-
const SOCK_DGRAM: c_int = /* ... */
-
const SOCK_RAW: c_int = /* ... */
-
const SOCK_RDM: c_int = /* ... */
-
const SOCK_SEQPACKET: c_int = /* ... */
-
const IP_TTL: c_int = /* ... */
-
const IP_HDRINCL: c_int = /* ... */
-
const IP_RECVDSTADDR: c_int = /* ... */
-
const IP_ADD_MEMBERSHIP: c_int = /* ... */
-
const IP_DROP_MEMBERSHIP: c_int = /* ... */
-
const IP_RECVIF: c_int = /* ... */
-
const IP_BOUND_IF: c_int = /* ... */
-
const IP_PKTINFO: c_int = /* ... */
-
const IP_RECVTOS: c_int = /* ... */
-
const IP_DONTFRAG: c_int = /* ... */
-
const IPV6_JOIN_GROUP: c_int = /* ... */
-
const IPV6_LEAVE_GROUP: c_int = /* ... */
-
const IPV6_CHECKSUM: c_int = /* ... */
-
const IPV6_RECVTCLASS: c_int = /* ... */
-
const IPV6_TCLASS: c_int = /* ... */
-
const IPV6_PKTINFO: c_int = /* ... */
-
const IPV6_HOPLIMIT: c_int = /* ... */
-
const IPV6_RECVPKTINFO: c_int = /* ... */
-
const IPV6_DONTFRAG: c_int = /* ... */
-
const IP_ADD_SOURCE_MEMBERSHIP: c_int = /* ... */
-
const IP_DROP_SOURCE_MEMBERSHIP: c_int = /* ... */
-
const IP_BLOCK_SOURCE: c_int = /* ... */
-
const IP_UNBLOCK_SOURCE: c_int = /* ... */
-
const IPV6_BOUND_IF: c_int = /* ... */
-
const TCP_NOPUSH: c_int = /* ... */
-
const TCP_NOOPT: c_int = /* ... */
-
const TCP_KEEPALIVE: c_int = /* ... */
-
const TCP_KEEPINTVL: c_int = /* ... */
-
const TCP_KEEPCNT: c_int = /* ... */
-
const TCP_FASTOPEN: c_int = /* ... */
-
const SOL_LOCAL: c_int = /* ... */
-
const LOCAL_PEERCRED: c_int = /* ... */
-
const LOCAL_PEERPID: c_int = /* ... */
-
const LOCAL_PEEREPID: c_int = /* ... */
-
const LOCAL_PEERUUID: c_int = /* ... */
-
const LOCAL_PEEREUUID: c_int = /* ... */
-
const SOL_SOCKET: c_int = /* ... */
-
const SO_DEBUG: c_int = /* ... */
-
const SO_ACCEPTCONN: c_int = /* ... */
-
const SO_REUSEADDR: c_int = /* ... */
-
const SO_KEEPALIVE: c_int = /* ... */
-
const SO_DONTROUTE: c_int = /* ... */
-
const SO_BROADCAST: c_int = /* ... */
-
const SO_USELOOPBACK: c_int = /* ... */
-
const SO_LINGER: c_int = /* ... */
-
const SO_OOBINLINE: c_int = /* ... */
-
const SO_REUSEPORT: c_int = /* ... */
-
const SO_TIMESTAMP: c_int = /* ... */
-
const SO_TIMESTAMP_MONOTONIC: c_int = /* ... */
-
const SO_DONTTRUNC: c_int = /* ... */
-
const SO_WANTMORE: c_int = /* ... */
-
const SO_WANTOOBFLAG: c_int = /* ... */
-
const SO_SNDBUF: c_int = /* ... */
-
const SO_RCVBUF: c_int = /* ... */
-
const SO_SNDLOWAT: c_int = /* ... */
-
const SO_RCVLOWAT: c_int = /* ... */
-
const SO_SNDTIMEO: c_int = /* ... */
-
const SO_RCVTIMEO: c_int = /* ... */
-
const SO_ERROR: c_int = /* ... */
-
const SO_TYPE: c_int = /* ... */
-
const SO_LABEL: c_int = /* ... */
-
const SO_PEERLABEL: c_int = /* ... */
-
const SO_NREAD: c_int = /* ... */
-
const SO_NKE: c_int = /* ... */
-
const SO_NOSIGPIPE: c_int = /* ... */
-
const SO_NOADDRERR: c_int = /* ... */
-
const SO_NWRITE: c_int = /* ... */
-
const SO_REUSESHAREUID: c_int = /* ... */
-
const SO_NOTIFYCONFLICT: c_int = /* ... */
-
const SO_LINGER_SEC: c_int = /* ... */
-
const SO_RANDOMPORT: c_int = /* ... */
-
const SO_NP_EXTENSIONS: c_int = /* ... */
-
const MSG_OOB: c_int = /* ... */
-
const MSG_PEEK: c_int = /* ... */
-
const MSG_DONTROUTE: c_int = /* ... */
-
const MSG_EOR: c_int = /* ... */
-
const MSG_TRUNC: c_int = /* ... */
-
const MSG_CTRUNC: c_int = /* ... */
-
const MSG_WAITALL: c_int = /* ... */
-
const MSG_DONTWAIT: c_int = /* ... */
-
const MSG_EOF: c_int = /* ... */
-
const MSG_FLUSH: c_int = /* ... */
-
const MSG_HOLD: c_int = /* ... */
-
const MSG_SEND: c_int = /* ... */
-
const MSG_HAVEMORE: c_int = /* ... */
-
const MSG_RCVMORE: c_int = /* ... */
-
const SCM_TIMESTAMP: c_int = /* ... */
-
const SCM_CREDS: c_int = /* ... */
-
const IFF_UP: c_int = /* ... */
-
const IFF_BROADCAST: c_int = /* ... */
-
const IFF_DEBUG: c_int = /* ... */
-
const IFF_LOOPBACK: c_int = /* ... */
-
const IFF_POINTOPOINT: c_int = /* ... */
-
const IFF_NOTRAILERS: c_int = /* ... */
-
const IFF_RUNNING: c_int = /* ... */
-
const IFF_NOARP: c_int = /* ... */
-
const IFF_PROMISC: c_int = /* ... */
-
const IFF_ALLMULTI: c_int = /* ... */
-
const IFF_OACTIVE: c_int = /* ... */
-
const IFF_SIMPLEX: c_int = /* ... */
-
const IFF_LINK0: c_int = /* ... */
-
const IFF_LINK1: c_int = /* ... */
-
const IFF_LINK2: c_int = /* ... */
-
const IFF_ALTPHYS: c_int = /* ... */
-
const IFF_MULTICAST: c_int = /* ... */
-
const SHUT_RD: c_int = /* ... */
-
const SHUT_WR: c_int = /* ... */
-
const SHUT_RDWR: c_int = /* ... */
-
const SAE_ASSOCID_ANY: sae_associd_t = /* ... */
-
const SAE_ASSOCID_ALL: sae_associd_t = /* ... */
-
const SAE_CONNID_ANY: sae_connid_t = /* ... */
-
const SAE_CONNID_ALL: sae_connid_t = /* ... */
-
const CONNECT_RESUME_ON_READ_WRITE: c_uint = /* ... */
-
const CONNECT_DATA_IDEMPOTENT: c_uint = /* ... */
-
const CONNECT_DATA_AUTHENTICATED: c_uint = /* ... */
-
const LOCK_SH: c_int = /* ... */
-
const LOCK_EX: c_int = /* ... */
-
const LOCK_NB: c_int = /* ... */
-
const LOCK_UN: c_int = /* ... */
-
const MAP_COPY: c_int = /* ... */
-
const MAP_RENAME: c_int = /* ... */
-
const MAP_NORESERVE: c_int = /* ... */
-
const MAP_NOEXTEND: c_int = /* ... */
-
const MAP_HASSEMAPHORE: c_int = /* ... */
-
const MAP_NOCACHE: c_int = /* ... */
-
const MAP_JIT: c_int = /* ... */
-
const PTHREAD_MUTEX_NORMAL: c_int = /* ... */
-
const PTHREAD_MUTEX_ERRORCHECK: c_int = /* ... */
-
const PTHREAD_MUTEX_RECURSIVE: c_int = /* ... */
-
const PTHREAD_MUTEX_DEFAULT: c_int = /* ... */
-
const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = /* ... */
-
const PTHREAD_COND_INITIALIZER: pthread_cond_t = /* ... */
-
const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = /* ... */
-
const OS_UNFAIR_LOCK_INIT: os_unfair_lock = /* ... */
-
const OS_LOG_TYPE_DEFAULT: os_log_type_t = /* ... */
-
const OS_LOG_TYPE_INFO: os_log_type_t = /* ... */
-
const OS_LOG_TYPE_DEBUG: os_log_type_t = /* ... */
-
const OS_LOG_TYPE_ERROR: os_log_type_t = /* ... */
-
const OS_LOG_TYPE_FAULT: os_log_type_t = /* ... */
-
const OS_SIGNPOST_EVENT: os_signpost_type_t = /* ... */
-
const OS_SIGNPOST_INTERVAL_BEGIN: os_signpost_type_t = /* ... */
-
const OS_SIGNPOST_INTERVAL_END: os_signpost_type_t = /* ... */
-
const MINSIGSTKSZ: size_t = /* ... */
-
const SIGSTKSZ: size_t = /* ... */
-
const FD_SETSIZE: usize = /* ... */
-
const ST_NOSUID: c_ulong = /* ... */
-
const SCHED_OTHER: c_int = /* ... */
-
const SCHED_FIFO: c_int = /* ... */
-
const SCHED_RR: c_int = /* ... */
-
const EVFILT_READ: i16 = /* ... */
-
const EVFILT_WRITE: i16 = /* ... */
-
const EVFILT_AIO: i16 = /* ... */
-
const EVFILT_VNODE: i16 = /* ... */
-
const EVFILT_PROC: i16 = /* ... */
-
const EVFILT_SIGNAL: i16 = /* ... */
-
const EVFILT_TIMER: i16 = /* ... */
-
const EVFILT_MACHPORT: i16 = /* ... */
-
const EVFILT_FS: i16 = /* ... */
-
const EVFILT_USER: i16 = /* ... */
-
const EVFILT_VM: i16 = /* ... */
-
const EV_ADD: u16 = /* ... */
-
const EV_DELETE: u16 = /* ... */
-
const EV_ENABLE: u16 = /* ... */
-
const EV_DISABLE: u16 = /* ... */
-
const EV_ONESHOT: u16 = /* ... */
-
const EV_CLEAR: u16 = /* ... */
-
const EV_RECEIPT: u16 = /* ... */
-
const EV_DISPATCH: u16 = /* ... */
-
const EV_FLAG0: u16 = /* ... */
-
const EV_POLL: u16 = /* ... */
-
const EV_FLAG1: u16 = /* ... */
-
const EV_OOBAND: u16 = /* ... */
-
const EV_ERROR: u16 = /* ... */
-
const EV_EOF: u16 = /* ... */
-
const EV_SYSFLAGS: u16 = /* ... */
-
const NOTE_TRIGGER: u32 = /* ... */
-
const NOTE_FFNOP: u32 = /* ... */
-
const NOTE_FFAND: u32 = /* ... */
-
const NOTE_FFOR: u32 = /* ... */
-
const NOTE_FFCOPY: u32 = /* ... */
-
const NOTE_FFCTRLMASK: u32 = /* ... */
-
const NOTE_FFLAGSMASK: u32 = /* ... */
-
const NOTE_LOWAT: u32 = /* ... */
-
const NOTE_DELETE: u32 = /* ... */
-
const NOTE_WRITE: u32 = /* ... */
-
const NOTE_EXTEND: u32 = /* ... */
-
const NOTE_ATTRIB: u32 = /* ... */
-
const NOTE_LINK: u32 = /* ... */
-
const NOTE_RENAME: u32 = /* ... */
-
const NOTE_REVOKE: u32 = /* ... */
-
const NOTE_NONE: u32 = /* ... */
-
const NOTE_EXIT: u32 = /* ... */
-
const NOTE_FORK: u32 = /* ... */
-
const NOTE_EXEC: u32 = /* ... */
-
const NOTE_REAP: u32 = /* ... */
-
const NOTE_SIGNAL: u32 = /* ... */
-
const NOTE_EXITSTATUS: u32 = /* ... */
-
const NOTE_EXIT_DETAIL: u32 = /* ... */
-
const NOTE_PDATAMASK: u32 = /* ... */
-
const NOTE_PCTRLMASK: u32 = /* ... */
-
const NOTE_EXIT_REPARENTED: u32 = /* ... */
-
const NOTE_EXIT_DETAIL_MASK: u32 = /* ... */
-
const NOTE_EXIT_DECRYPTFAIL: u32 = /* ... */
-
const NOTE_EXIT_MEMORY: u32 = /* ... */
-
const NOTE_EXIT_CSERROR: u32 = /* ... */
-
const NOTE_VM_PRESSURE: u32 = /* ... */
-
const NOTE_VM_PRESSURE_TERMINATE: u32 = /* ... */
-
const NOTE_VM_PRESSURE_SUDDEN_TERMINATE: u32 = /* ... */
-
const NOTE_VM_ERROR: u32 = /* ... */
-
const NOTE_SECONDS: u32 = /* ... */
-
const NOTE_USECONDS: u32 = /* ... */
-
const NOTE_NSECONDS: u32 = /* ... */
-
const NOTE_ABSOLUTE: u32 = /* ... */
-
const NOTE_LEEWAY: u32 = /* ... */
-
const NOTE_CRITICAL: u32 = /* ... */
-
const NOTE_BACKGROUND: u32 = /* ... */
-
const NOTE_TRACK: u32 = /* ... */
-
const NOTE_TRACKERR: u32 = /* ... */
-
const NOTE_CHILD: u32 = /* ... */
-
const OCRNL: tcflag_t = /* ... */
-
const ONOCR: tcflag_t = /* ... */
-
const ONLRET: tcflag_t = /* ... */
-
const OFILL: tcflag_t = /* ... */
-
const NLDLY: tcflag_t = /* ... */
-
const TABDLY: tcflag_t = /* ... */
-
const CRDLY: tcflag_t = /* ... */
-
const FFDLY: tcflag_t = /* ... */
-
const BSDLY: tcflag_t = /* ... */
-
const VTDLY: tcflag_t = /* ... */
-
const OFDEL: tcflag_t = /* ... */
-
const NL0: tcflag_t = /* ... */
-
const NL1: tcflag_t = /* ... */
-
const TAB0: tcflag_t = /* ... */
-
const TAB1: tcflag_t = /* ... */
-
const TAB2: tcflag_t = /* ... */
-
const CR0: tcflag_t = /* ... */
-
const CR1: tcflag_t = /* ... */
-
const CR2: tcflag_t = /* ... */
-
const CR3: tcflag_t = /* ... */
-
const FF0: tcflag_t = /* ... */
-
const FF1: tcflag_t = /* ... */
-
const BS0: tcflag_t = /* ... */
-
const BS1: tcflag_t = /* ... */
-
const TAB3: tcflag_t = /* ... */
-
const VT0: tcflag_t = /* ... */
-
const VT1: tcflag_t = /* ... */
-
const IUTF8: tcflag_t = /* ... */
-
const CRTSCTS: tcflag_t = /* ... */
-
const NI_MAXHOST: socklen_t = /* ... */
-
const NI_MAXSERV: socklen_t = /* ... */
-
const NI_NOFQDN: c_int = /* ... */
-
const NI_NUMERICHOST: c_int = /* ... */
-
const NI_NAMEREQD: c_int = /* ... */
-
const NI_NUMERICSERV: c_int = /* ... */
-
const NI_NUMERICSCOPE: c_int = /* ... */
-
const NI_DGRAM: c_int = /* ... */
-
const Q_GETQUOTA: c_int = /* ... */
-
const Q_SETQUOTA: c_int = /* ... */
-
const RENAME_SWAP: c_uint = /* ... */
-
const RENAME_EXCL: c_uint = /* ... */
-
const RTLD_LOCAL: c_int = /* ... */
-
const RTLD_FIRST: c_int = /* ... */
-
const RTLD_NODELETE: c_int = /* ... */
-
const RTLD_NOLOAD: c_int = /* ... */
-
const RTLD_GLOBAL: c_int = /* ... */
-
const LOG_NETINFO: c_int = /* ... */
-
const LOG_REMOTEAUTH: c_int = /* ... */
-
const LOG_INSTALL: c_int = /* ... */
-
const LOG_RAS: c_int = /* ... */
-
const LOG_LAUNCHD: c_int = /* ... */
-
const LOG_NFACILITIES: c_int = /* ... */
-
const CTLTYPE: c_int = /* ... */
-
const CTLTYPE_NODE: c_int = /* ... */
-
const CTLTYPE_INT: c_int = /* ... */
-
const CTLTYPE_STRING: c_int = /* ... */
-
const CTLTYPE_QUAD: c_int = /* ... */
-
const CTLTYPE_OPAQUE: c_int = /* ... */
-
const CTLTYPE_STRUCT: c_int = /* ... */
-
const CTLFLAG_RD: c_int = /* ... */
-
const CTLFLAG_WR: c_int = /* ... */
-
const CTLFLAG_RW: c_int = /* ... */
-
const CTLFLAG_NOLOCK: c_int = /* ... */
-
const CTLFLAG_ANYBODY: c_int = /* ... */
-
const CTLFLAG_SECURE: c_int = /* ... */
-
const CTLFLAG_MASKED: c_int = /* ... */
-
const CTLFLAG_NOAUTO: c_int = /* ... */
-
const CTLFLAG_KERN: c_int = /* ... */
-
const CTLFLAG_LOCKED: c_int = /* ... */
-
const CTLFLAG_OID2: c_int = /* ... */
-
const CTL_UNSPEC: c_int = /* ... */
-
const CTL_KERN: c_int = /* ... */
-
const CTL_VM: c_int = /* ... */
-
const CTL_VFS: c_int = /* ... */
-
const CTL_NET: c_int = /* ... */
-
const CTL_DEBUG: c_int = /* ... */
-
const CTL_HW: c_int = /* ... */
-
const CTL_MACHDEP: c_int = /* ... */
-
const CTL_USER: c_int = /* ... */
-
const CTL_MAXID: c_int = /* ... */
-
const KERN_OSTYPE: c_int = /* ... */
-
const KERN_OSRELEASE: c_int = /* ... */
-
const KERN_OSREV: c_int = /* ... */
-
const KERN_VERSION: c_int = /* ... */
-
const KERN_MAXVNODES: c_int = /* ... */
-
const KERN_MAXPROC: c_int = /* ... */
-
const KERN_MAXFILES: c_int = /* ... */
-
const KERN_ARGMAX: c_int = /* ... */
-
const KERN_SECURELVL: c_int = /* ... */
-
const KERN_HOSTNAME: c_int = /* ... */
-
const KERN_HOSTID: c_int = /* ... */
-
const KERN_CLOCKRATE: c_int = /* ... */
-
const KERN_VNODE: c_int = /* ... */
-
const KERN_PROC: c_int = /* ... */
-
const KERN_FILE: c_int = /* ... */
-
const KERN_PROF: c_int = /* ... */
-
const KERN_POSIX1: c_int = /* ... */
-
const KERN_NGROUPS: c_int = /* ... */
-
const KERN_JOB_CONTROL: c_int = /* ... */
-
const KERN_SAVED_IDS: c_int = /* ... */
-
const KERN_BOOTTIME: c_int = /* ... */
-
const KERN_NISDOMAINNAME: c_int = /* ... */
-
const KERN_DOMAINNAME: c_int = /* ... */
-
const KERN_MAXPARTITIONS: c_int = /* ... */
-
const KERN_KDEBUG: c_int = /* ... */
-
const KERN_UPDATEINTERVAL: c_int = /* ... */
-
const KERN_OSRELDATE: c_int = /* ... */
-
const KERN_NTP_PLL: c_int = /* ... */
-
const KERN_BOOTFILE: c_int = /* ... */
-
const KERN_MAXFILESPERPROC: c_int = /* ... */
-
const KERN_MAXPROCPERUID: c_int = /* ... */
-
const KERN_DUMPDEV: c_int = /* ... */
-
const KERN_IPC: c_int = /* ... */
-
const KERN_DUMMY: c_int = /* ... */
-
const KERN_PS_STRINGS: c_int = /* ... */
-
const KERN_USRSTACK32: c_int = /* ... */
-
const KERN_LOGSIGEXIT: c_int = /* ... */
-
const KERN_SYMFILE: c_int = /* ... */
-
const KERN_PROCARGS: c_int = /* ... */
-
const KERN_NETBOOT: c_int = /* ... */
-
const KERN_SYSV: c_int = /* ... */
-
const KERN_AFFINITY: c_int = /* ... */
-
const KERN_TRANSLATE: c_int = /* ... */
-
const KERN_CLASSIC: c_int = /* ... */
-
const KERN_EXEC: c_int = /* ... */
-
const KERN_CLASSICHANDLER: c_int = /* ... */
-
const KERN_AIOMAX: c_int = /* ... */
-
const KERN_AIOPROCMAX: c_int = /* ... */
-
const KERN_AIOTHREADS: c_int = /* ... */
-
const KERN_COREFILE: c_int = /* ... */
-
const KERN_COREDUMP: c_int = /* ... */
-
const KERN_SUGID_COREDUMP: c_int = /* ... */
-
const KERN_PROCDELAYTERM: c_int = /* ... */
-
const KERN_SHREG_PRIVATIZABLE: c_int = /* ... */
-
const KERN_LOW_PRI_WINDOW: c_int = /* ... */
-
const KERN_LOW_PRI_DELAY: c_int = /* ... */
-
const KERN_POSIX: c_int = /* ... */
-
const KERN_USRSTACK64: c_int = /* ... */
-
const KERN_NX_PROTECTION: c_int = /* ... */
-
const KERN_TFP: c_int = /* ... */
-
const KERN_PROCNAME: c_int = /* ... */
-
const KERN_THALTSTACK: c_int = /* ... */
-
const KERN_SPECULATIVE_READS: c_int = /* ... */
-
const KERN_OSVERSION: c_int = /* ... */
-
const KERN_SAFEBOOT: c_int = /* ... */
-
const KERN_RAGEVNODE: c_int = /* ... */
-
const KERN_TTY: c_int = /* ... */
-
const KERN_CHECKOPENEVT: c_int = /* ... */
-
const KERN_THREADNAME: c_int = /* ... */
-
const KERN_MAXID: c_int = /* ... */
-
const KERN_RAGE_PROC: c_int = /* ... */
-
const KERN_RAGE_THREAD: c_int = /* ... */
-
const KERN_UNRAGE_PROC: c_int = /* ... */
-
const KERN_UNRAGE_THREAD: c_int = /* ... */
-
const KERN_OPENEVT_PROC: c_int = /* ... */
-
const KERN_UNOPENEVT_PROC: c_int = /* ... */
-
const KERN_TFP_POLICY: c_int = /* ... */
-
const KERN_TFP_POLICY_DENY: c_int = /* ... */
-
const KERN_TFP_POLICY_DEFAULT: c_int = /* ... */
-
const KERN_KDEFLAGS: c_int = /* ... */
-
const KERN_KDDFLAGS: c_int = /* ... */
-
const KERN_KDENABLE: c_int = /* ... */
-
const KERN_KDSETBUF: c_int = /* ... */
-
const KERN_KDGETBUF: c_int = /* ... */
-
const KERN_KDSETUP: c_int = /* ... */
-
const KERN_KDREMOVE: c_int = /* ... */
-
const KERN_KDSETREG: c_int = /* ... */
-
const KERN_KDGETREG: c_int = /* ... */
-
const KERN_KDREADTR: c_int = /* ... */
-
const KERN_KDPIDTR: c_int = /* ... */
-
const KERN_KDTHRMAP: c_int = /* ... */
-
const KERN_KDPIDEX: c_int = /* ... */
-
const KERN_KDSETRTCDEC: c_int = /* ... */
-
const KERN_KDGETENTROPY: c_int = /* ... */
-
const KERN_KDWRITETR: c_int = /* ... */
-
const KERN_KDWRITEMAP: c_int = /* ... */
-
const KERN_KDENABLE_BG_TRACE: c_int = /* ... */
-
const KERN_KDDISABLE_BG_TRACE: c_int = /* ... */
-
const KERN_KDREADCURTHRMAP: c_int = /* ... */
-
const KERN_KDSET_TYPEFILTER: c_int = /* ... */
-
const KERN_KDBUFWAIT: c_int = /* ... */
-
const KERN_KDCPUMAP: c_int = /* ... */
-
const KERN_PROC_ALL: c_int = /* ... */
-
const KERN_PROC_PID: c_int = /* ... */
-
const KERN_PROC_PGRP: c_int = /* ... */
-
const KERN_PROC_SESSION: c_int = /* ... */
-
const KERN_PROC_TTY: c_int = /* ... */
-
const KERN_PROC_UID: c_int = /* ... */
-
const KERN_PROC_RUID: c_int = /* ... */
-
const KERN_PROC_LCID: c_int = /* ... */
-
const KERN_SUCCESS: c_int = /* ... */
-
const KERN_INVALID_ADDRESS: c_int = /* ... */
-
const KERN_PROTECTION_FAILURE: c_int = /* ... */
-
const KERN_NO_SPACE: c_int = /* ... */
-
const KERN_INVALID_ARGUMENT: c_int = /* ... */
-
const KERN_FAILURE: c_int = /* ... */
-
const KERN_RESOURCE_SHORTAGE: c_int = /* ... */
-
const KERN_NOT_RECEIVER: c_int = /* ... */
-
const KERN_NO_ACCESS: c_int = /* ... */
-
const KERN_MEMORY_FAILURE: c_int = /* ... */
-
const KERN_MEMORY_ERROR: c_int = /* ... */
-
const KERN_ALREADY_IN_SET: c_int = /* ... */
-
const KERN_NOT_IN_SET: c_int = /* ... */
-
const KERN_NAME_EXISTS: c_int = /* ... */
-
const KERN_ABORTED: c_int = /* ... */
-
const KERN_INVALID_NAME: c_int = /* ... */
-
const KERN_INVALID_TASK: c_int = /* ... */
-
const KERN_INVALID_RIGHT: c_int = /* ... */
-
const KERN_INVALID_VALUE: c_int = /* ... */
-
const KERN_UREFS_OVERFLOW: c_int = /* ... */
-
const KERN_INVALID_CAPABILITY: c_int = /* ... */
-
const KERN_RIGHT_EXISTS: c_int = /* ... */
-
const KERN_INVALID_HOST: c_int = /* ... */
-
const KERN_MEMORY_PRESENT: c_int = /* ... */
-
const KERN_MEMORY_DATA_MOVED: c_int = /* ... */
-
const KERN_MEMORY_RESTART_COPY: c_int = /* ... */
-
const KERN_INVALID_PROCESSOR_SET: c_int = /* ... */
-
const KERN_POLICY_LIMIT: c_int = /* ... */
-
const KERN_INVALID_POLICY: c_int = /* ... */
-
const KERN_INVALID_OBJECT: c_int = /* ... */
-
const KERN_ALREADY_WAITING: c_int = /* ... */
-
const KERN_DEFAULT_SET: c_int = /* ... */
-
const KERN_EXCEPTION_PROTECTED: c_int = /* ... */
-
const KERN_INVALID_LEDGER: c_int = /* ... */
-
const KERN_INVALID_MEMORY_CONTROL: c_int = /* ... */
-
const KERN_INVALID_SECURITY: c_int = /* ... */
-
const KERN_NOT_DEPRESSED: c_int = /* ... */
-
const KERN_TERMINATED: c_int = /* ... */
-
const KERN_LOCK_SET_DESTROYED: c_int = /* ... */
-
const KERN_LOCK_UNSTABLE: c_int = /* ... */
-
const KERN_LOCK_OWNED: c_int = /* ... */
-
const KERN_LOCK_OWNED_SELF: c_int = /* ... */
-
const KERN_SEMAPHORE_DESTROYED: c_int = /* ... */
-
const KERN_RPC_SERVER_TERMINATED: c_int = /* ... */
-
const KERN_RPC_TERMINATE_ORPHAN: c_int = /* ... */
-
const KERN_RPC_CONTINUE_ORPHAN: c_int = /* ... */
-
const KERN_NOT_SUPPORTED: c_int = /* ... */
-
const KERN_NODE_DOWN: c_int = /* ... */
-
const KERN_NOT_WAITING: c_int = /* ... */
-
const KERN_OPERATION_TIMED_OUT: c_int = /* ... */
-
const KERN_CODESIGN_ERROR: c_int = /* ... */
-
const KERN_POLICY_STATIC: c_int = /* ... */
-
const KERN_INSUFFICIENT_BUFFER_SIZE: c_int = /* ... */
-
const KIPC_MAXSOCKBUF: c_int = /* ... */
-
const KIPC_SOCKBUF_WASTE: c_int = /* ... */
-
const KIPC_SOMAXCONN: c_int = /* ... */
-
const KIPC_MAX_LINKHDR: c_int = /* ... */
-
const KIPC_MAX_PROTOHDR: c_int = /* ... */
-
const KIPC_MAX_HDR: c_int = /* ... */
-
const KIPC_MAX_DATALEN: c_int = /* ... */
-
const KIPC_MBSTAT: c_int = /* ... */
-
const KIPC_NMBCLUSTERS: c_int = /* ... */
-
const KIPC_SOQLIMITCOMPAT: c_int = /* ... */
-
const VM_METER: c_int = /* ... */
-
const VM_LOADAVG: c_int = /* ... */
-
const VM_MACHFACTOR: c_int = /* ... */
-
const VM_SWAPUSAGE: c_int = /* ... */
-
const VM_MAXID: c_int = /* ... */
-
const VM_PROT_NONE: vm_prot_t = /* ... */
-
const VM_PROT_READ: vm_prot_t = /* ... */
-
const VM_PROT_WRITE: vm_prot_t = /* ... */
-
const VM_PROT_EXECUTE: vm_prot_t = /* ... */
-
const MEMORY_OBJECT_NULL: memory_object_t = /* ... */
-
const HW_MACHINE: c_int = /* ... */
-
const HW_MODEL: c_int = /* ... */
-
const HW_NCPU: c_int = /* ... */
-
const HW_BYTEORDER: c_int = /* ... */
-
const HW_PHYSMEM: c_int = /* ... */
-
const HW_USERMEM: c_int = /* ... */
-
const HW_PAGESIZE: c_int = /* ... */
-
const HW_DISKNAMES: c_int = /* ... */
-
const HW_DISKSTATS: c_int = /* ... */
-
const HW_EPOCH: c_int = /* ... */
-
const HW_FLOATINGPT: c_int = /* ... */
-
const HW_MACHINE_ARCH: c_int = /* ... */
-
const HW_VECTORUNIT: c_int = /* ... */
-
const HW_BUS_FREQ: c_int = /* ... */
-
const HW_CPU_FREQ: c_int = /* ... */
-
const HW_CACHELINE: c_int = /* ... */
-
const HW_L1ICACHESIZE: c_int = /* ... */
-
const HW_L1DCACHESIZE: c_int = /* ... */
-
const HW_L2SETTINGS: c_int = /* ... */
-
const HW_L2CACHESIZE: c_int = /* ... */
-
const HW_L3SETTINGS: c_int = /* ... */
-
const HW_L3CACHESIZE: c_int = /* ... */
-
const HW_TB_FREQ: c_int = /* ... */
-
const HW_MEMSIZE: c_int = /* ... */
-
const HW_AVAILCPU: c_int = /* ... */
-
const HW_TARGET: c_int = /* ... */
-
const HW_PRODUCT: c_int = /* ... */
-
const HW_MAXID: c_int = /* ... */
-
const USER_CS_PATH: c_int = /* ... */
-
const USER_BC_BASE_MAX: c_int = /* ... */
-
const USER_BC_DIM_MAX: c_int = /* ... */
-
const USER_BC_SCALE_MAX: c_int = /* ... */
-
const USER_BC_STRING_MAX: c_int = /* ... */
-
const USER_COLL_WEIGHTS_MAX: c_int = /* ... */
-
const USER_EXPR_NEST_MAX: c_int = /* ... */
-
const USER_LINE_MAX: c_int = /* ... */
-
const USER_RE_DUP_MAX: c_int = /* ... */
-
const USER_POSIX2_VERSION: c_int = /* ... */
-
const USER_POSIX2_C_BIND: c_int = /* ... */
-
const USER_POSIX2_C_DEV: c_int = /* ... */
-
const USER_POSIX2_CHAR_TERM: c_int = /* ... */
-
const USER_POSIX2_FORT_DEV: c_int = /* ... */
-
const USER_POSIX2_FORT_RUN: c_int = /* ... */
-
const USER_POSIX2_LOCALEDEF: c_int = /* ... */
-
const USER_POSIX2_SW_DEV: c_int = /* ... */
-
const USER_POSIX2_UPE: c_int = /* ... */
-
const USER_STREAM_MAX: c_int = /* ... */
-
const USER_TZNAME_MAX: c_int = /* ... */
-
const USER_MAXID: c_int = /* ... */
-
const CTL_DEBUG_NAME: c_int = /* ... */
-
const CTL_DEBUG_VALUE: c_int = /* ... */
-
const CTL_DEBUG_MAXID: c_int = /* ... */
-
const PRIO_DARWIN_THREAD: c_int = /* ... */
-
const PRIO_DARWIN_PROCESS: c_int = /* ... */
-
const PRIO_DARWIN_BG: c_int = /* ... */
-
const PRIO_DARWIN_NONUI: c_int = /* ... */
-
const SEM_FAILED: &mut sem_t = /* ... */
-
const AI_PASSIVE: c_int = /* ... */
-
const AI_CANONNAME: c_int = /* ... */
-
const AI_NUMERICHOST: c_int = /* ... */
-
const AI_NUMERICSERV: c_int = /* ... */
-
const AI_MASK: c_int = /* ... */
-
const AI_ALL: c_int = /* ... */
-
const AI_V4MAPPED_CFG: c_int = /* ... */
-
const AI_ADDRCONFIG: c_int = /* ... */
-
const AI_V4MAPPED: c_int = /* ... */
-
const AI_DEFAULT: c_int = /* ... */
-
const AI_UNUSABLE: c_int = /* ... */
-
const SIGEV_NONE: c_int = /* ... */
-
const SIGEV_SIGNAL: c_int = /* ... */
-
const SIGEV_THREAD: c_int = /* ... */
-
const AIO_CANCELED: c_int = /* ... */
-
const AIO_NOTCANCELED: c_int = /* ... */
-
const AIO_ALLDONE: c_int = /* ... */
-
const AIO_LISTIO_MAX: c_int = /* ... */
-
const LIO_NOP: c_int = /* ... */
-
const LIO_WRITE: c_int = /* ... */
-
const LIO_READ: c_int = /* ... */
-
const LIO_WAIT: c_int = /* ... */
-
const LIO_NOWAIT: c_int = /* ... */
-
const WEXITED: c_int = /* ... */
-
const WSTOPPED: c_int = /* ... */
-
const WCONTINUED: c_int = /* ... */
-
const WNOWAIT: c_int = /* ... */
-
const P_ALL: idtype_t = /* ... */
-
const P_PID: idtype_t = /* ... */
-
const P_PGID: idtype_t = /* ... */
-
const UTIME_OMIT: c_long = /* ... */
-
const UTIME_NOW: c_long = /* ... */
-
const XATTR_NOFOLLOW: c_int = /* ... */
-
const XATTR_CREATE: c_int = /* ... */
-
const XATTR_REPLACE: c_int = /* ... */
-
const XATTR_NOSECURITY: c_int = /* ... */
-
const XATTR_NODEFAULT: c_int = /* ... */
-
const XATTR_SHOWCOMPRESSION: c_int = /* ... */
-
const NET_RT_IFLIST2: c_int = /* ... */
-
const RTF_UP: c_int = /* ... */
-
const RTF_GATEWAY: c_int = /* ... */
-
const RTF_HOST: c_int = /* ... */
-
const RTF_REJECT: c_int = /* ... */
-
const RTF_DYNAMIC: c_int = /* ... */
-
const RTF_MODIFIED: c_int = /* ... */
-
const RTF_DONE: c_int = /* ... */
-
const RTF_DELCLONE: c_int = /* ... */
-
const RTF_CLONING: c_int = /* ... */
-
const RTF_XRESOLVE: c_int = /* ... */
-
const RTF_LLINFO: c_int = /* ... */
-
const RTF_STATIC: c_int = /* ... */
-
const RTF_BLACKHOLE: c_int = /* ... */
-
const RTF_NOIFREF: c_int = /* ... */
-
const RTF_PROTO2: c_int = /* ... */
-
const RTF_PROTO1: c_int = /* ... */
-
const RTF_PRCLONING: c_int = /* ... */
-
const RTF_WASCLONED: c_int = /* ... */
-
const RTF_PROTO3: c_int = /* ... */
-
const RTF_PINNED: c_int = /* ... */
-
const RTF_LOCAL: c_int = /* ... */
-
const RTF_BROADCAST: c_int = /* ... */
-
const RTF_MULTICAST: c_int = /* ... */
-
const RTF_IFSCOPE: c_int = /* ... */
-
const RTF_CONDEMNED: c_int = /* ... */
-
const RTF_IFREF: c_int = /* ... */
-
const RTF_PROXY: c_int = /* ... */
-
const RTF_ROUTER: c_int = /* ... */
-
const RTF_DEAD: c_int = /* ... */
-
const RTF_GLOBAL: c_int = /* ... */
-
const RTM_VERSION: c_int = /* ... */
-
const RTM_ADD: c_int = /* ... */
-
const RTM_DELETE: c_int = /* ... */
-
const RTM_CHANGE: c_int = /* ... */
-
const RTM_GET: c_int = /* ... */
-
const RTM_LOSING: c_int = /* ... */
-
const RTM_REDIRECT: c_int = /* ... */
-
const RTM_MISS: c_int = /* ... */
-
const RTM_LOCK: c_int = /* ... */
-
const RTM_OLDADD: c_int = /* ... */
-
const RTM_OLDDEL: c_int = /* ... */
-
const RTM_RESOLVE: c_int = /* ... */
-
const RTM_NEWADDR: c_int = /* ... */
-
const RTM_DELADDR: c_int = /* ... */
-
const RTM_IFINFO: c_int = /* ... */
-
const RTM_NEWMADDR: c_int = /* ... */
-
const RTM_DELMADDR: c_int = /* ... */
-
const RTM_IFINFO2: c_int = /* ... */
-
const RTM_NEWMADDR2: c_int = /* ... */
-
const RTM_GET2: c_int = /* ... */
-
const RTV_MTU: c_int = /* ... */
-
const RTV_HOPCOUNT: c_int = /* ... */
-
const RTV_EXPIRE: c_int = /* ... */
-
const RTV_RPIPE: c_int = /* ... */
-
const RTV_SPIPE: c_int = /* ... */
-
const RTV_SSTHRESH: c_int = /* ... */
-
const RTV_RTT: c_int = /* ... */
-
const RTV_RTTVAR: c_int = /* ... */
-
const RTA_DST: c_int = /* ... */
-
const RTA_GATEWAY: c_int = /* ... */
-
const RTA_NETMASK: c_int = /* ... */
-
const RTA_GENMASK: c_int = /* ... */
-
const RTA_IFP: c_int = /* ... */
-
const RTA_IFA: c_int = /* ... */
-
const RTA_AUTHOR: c_int = /* ... */
-
const RTA_BRD: c_int = /* ... */
-
const RTAX_DST: c_int = /* ... */
-
const RTAX_GATEWAY: c_int = /* ... */
-
const RTAX_NETMASK: c_int = /* ... */
-
const RTAX_GENMASK: c_int = /* ... */
-
const RTAX_IFP: c_int = /* ... */
-
const RTAX_IFA: c_int = /* ... */
-
const RTAX_AUTHOR: c_int = /* ... */
-
const RTAX_BRD: c_int = /* ... */
-
const RTAX_MAX: c_int = /* ... */
-
const KERN_PROCARGS2: c_int = /* ... */
-
const PROC_PIDTASKALLINFO: c_int = /* ... */
-
const PROC_PIDTBSDINFO: c_int = /* ... */
-
const PROC_PIDTASKINFO: c_int = /* ... */
-
const PROC_PIDTHREADINFO: c_int = /* ... */
-
const PROC_PIDVNODEPATHINFO: c_int = /* ... */
-
const PROC_PIDPATHINFO_MAXSIZE: c_int = /* ... */
-
const PROC_CSM_ALL: c_uint = /* ... */
-
const PROC_CSM_NOSMT: c_uint = /* ... */
-
const PROC_CSM_TECS: c_uint = /* ... */
-
const MAXCOMLEN: usize = /* ... */
-
const MAXTHREADNAMESIZE: usize = /* ... */
-
const XUCRED_VERSION: c_uint = /* ... */
-
const LC_SEGMENT: u32 = /* ... */
-
const LC_SEGMENT_64: u32 = /* ... */
-
const MH_MAGIC: u32 = /* ... */
-
const MH_MAGIC_64: u32 = /* ... */
-
const UTUN_OPT_FLAGS: c_int = /* ... */
-
const UTUN_OPT_IFNAME: c_int = /* ... */
-
const DLT_NULL: c_uint = /* ... */
-
const DLT_EN10MB: c_uint = /* ... */
-
const DLT_EN3MB: c_uint = /* ... */
-
const DLT_AX25: c_uint = /* ... */
-
const DLT_PRONET: c_uint = /* ... */
-
const DLT_CHAOS: c_uint = /* ... */
-
const DLT_IEEE802: c_uint = /* ... */
-
const DLT_ARCNET: c_uint = /* ... */
-
const DLT_SLIP: c_uint = /* ... */
-
const DLT_PPP: c_uint = /* ... */
-
const DLT_FDDI: c_uint = /* ... */
-
const DLT_ATM_RFC1483: c_uint = /* ... */
-
const DLT_RAW: c_uint = /* ... */
-
const DLT_LOOP: c_uint = /* ... */
-
const BPF_ALIGNMENT: c_int = /* ... */
-
const MNT_NODEV: c_int = /* ... */
-
const MNT_UNION: c_int = /* ... */
-
const MNT_CPROTECT: c_int = /* ... */
-
const MNT_QUARANTINE: c_int = /* ... */
-
const MNT_LOCAL: c_int = /* ... */
-
const MNT_QUOTA: c_int = /* ... */
-
const MNT_ROOTFS: c_int = /* ... */
-
const MNT_DOVOLFS: c_int = /* ... */
-
const MNT_DONTBROWSE: c_int = /* ... */
-
const MNT_IGNORE_OWNERSHIP: c_int = /* ... */
-
const MNT_AUTOMOUNTED: c_int = /* ... */
-
const MNT_JOURNALED: c_int = /* ... */
-
const MNT_NOUSERXATTR: c_int = /* ... */
-
const MNT_DEFWRITE: c_int = /* ... */
-
const MNT_MULTILABEL: c_int = /* ... */
-
const MNT_NOATIME: c_int = /* ... */
-
const MNT_SNAPSHOT: c_int = /* ... */
-
const MNT_NOBLOCK: c_int = /* ... */
-
const POSIX_SPAWN_RESETIDS: c_int = /* ... */
-
const POSIX_SPAWN_SETPGROUP: c_int = /* ... */
-
const POSIX_SPAWN_SETSIGDEF: c_int = /* ... */
-
const POSIX_SPAWN_SETSIGMASK: c_int = /* ... */
-
const POSIX_SPAWN_SETEXEC: c_int = /* ... */
-
const POSIX_SPAWN_START_SUSPENDED: c_int = /* ... */
-
const POSIX_SPAWN_CLOEXEC_DEFAULT: c_int = /* ... */
-
const IPC_CREAT: c_int = /* ... */
-
const IPC_EXCL: c_int = /* ... */
-
const IPC_NOWAIT: c_int = /* ... */
-
const IPC_PRIVATE: key_t = /* ... */
-
const IPC_RMID: c_int = /* ... */
-
const IPC_SET: c_int = /* ... */
-
const IPC_STAT: c_int = /* ... */
-
const IPC_R: c_int = /* ... */
-
const IPC_W: c_int = /* ... */
-
const IPC_M: c_int = /* ... */
-
const SEM_UNDO: c_int = /* ... */
-
const GETNCNT: c_int = /* ... */
-
const GETPID: c_int = /* ... */
-
const GETVAL: c_int = /* ... */
-
const GETALL: c_int = /* ... */
-
const GETZCNT: c_int = /* ... */
-
const SETVAL: c_int = /* ... */
-
const SETALL: c_int = /* ... */
-
const SHM_RDONLY: c_int = /* ... */
-
const SHM_RND: c_int = /* ... */
-
const SHMLBA: c_int = /* ... */
-
const SHM_R: c_int = /* ... */
-
const SHM_W: c_int = /* ... */
-
const UF_SETTABLE: c_uint = /* ... */
-
const UF_NODUMP: c_uint = /* ... */
-
const UF_IMMUTABLE: c_uint = /* ... */
-
const UF_APPEND: c_uint = /* ... */
-
const UF_OPAQUE: c_uint = /* ... */
-
const UF_COMPRESSED: c_uint = /* ... */
-
const UF_TRACKED: c_uint = /* ... */
-
const SF_SETTABLE: c_uint = /* ... */
-
const SF_ARCHIVED: c_uint = /* ... */
-
const SF_IMMUTABLE: c_uint = /* ... */
-
const SF_APPEND: c_uint = /* ... */
-
const UF_HIDDEN: c_uint = /* ... */
-
const NTP_API: c_int = /* ... */
-
const MAXPHASE: c_long = /* ... */
-
const MAXFREQ: c_long = /* ... */
-
const MINSEC: c_int = /* ... */
-
const MAXSEC: c_int = /* ... */
-
const NANOSECOND: c_long = /* ... */
-
const SCALE_PPM: c_int = /* ... */
-
const MAXTC: c_int = /* ... */
-
const MOD_OFFSET: c_uint = /* ... */
-
const MOD_FREQUENCY: c_uint = /* ... */
-
const MOD_MAXERROR: c_uint = /* ... */
-
const MOD_ESTERROR: c_uint = /* ... */
-
const MOD_STATUS: c_uint = /* ... */
-
const MOD_TIMECONST: c_uint = /* ... */
-
const MOD_PPSMAX: c_uint = /* ... */
-
const MOD_TAI: c_uint = /* ... */
-
const MOD_MICRO: c_uint = /* ... */
-
const MOD_NANO: c_uint = /* ... */
-
const MOD_CLKB: c_uint = /* ... */
-
const MOD_CLKA: c_uint = /* ... */
-
const STA_PLL: c_int = /* ... */
-
const STA_PPSFREQ: c_int = /* ... */
-
const STA_PPSTIME: c_int = /* ... */
-
const STA_FLL: c_int = /* ... */
-
const STA_INS: c_int = /* ... */
-
const STA_DEL: c_int = /* ... */
-
const STA_UNSYNC: c_int = /* ... */
-
const STA_FREQHOLD: c_int = /* ... */
-
const STA_PPSSIGNAL: c_int = /* ... */
-
const STA_PPSJITTER: c_int = /* ... */
-
const STA_PPSWANDER: c_int = /* ... */
-
const STA_PPSERROR: c_int = /* ... */
-
const STA_CLOCKERR: c_int = /* ... */
-
const STA_NANO: c_int = /* ... */
-
const STA_MODE: c_int = /* ... */
-
const STA_CLK: c_int = /* ... */
-
const STA_RONLY: c_int = /* ... */
-
const TIME_OK: c_int = /* ... */
-
const TIME_INS: c_int = /* ... */
-
const TIME_DEL: c_int = /* ... */
-
const TIME_OOP: c_int = /* ... */
-
const TIME_WAIT: c_int = /* ... */
-
const TIME_ERROR: c_int = /* ... */
-
const MNT_WAIT: c_int = /* ... */
-
const MNT_NOWAIT: c_int = /* ... */
-
const THREAD_STANDARD_POLICY: c_int = /* ... */
-
const THREAD_STANDARD_POLICY_COUNT: c_int = /* ... */
-
const THREAD_EXTENDED_POLICY: c_int = /* ... */
-
const THREAD_TIME_CONSTRAINT_POLICY: c_int = /* ... */
-
const THREAD_PRECEDENCE_POLICY: c_int = /* ... */
-
const THREAD_AFFINITY_POLICY: c_int = /* ... */
-
const THREAD_AFFINITY_TAG_NULL: c_int = /* ... */
-
const THREAD_BACKGROUND_POLICY: c_int = /* ... */
-
const THREAD_BACKGROUND_POLICY_DARWIN_BG: c_int = /* ... */
-
const THREAD_LATENCY_QOS_POLICY: c_int = /* ... */
-
const THREAD_THROUGHPUT_QOS_POLICY: c_int = /* ... */
-
const TH_STATE_RUNNING: c_int = /* ... */
-
const TH_STATE_STOPPED: c_int = /* ... */
-
const TH_STATE_WAITING: c_int = /* ... */
-
const TH_STATE_UNINTERRUPTIBLE: c_int = /* ... */
-
const TH_STATE_HALTED: c_int = /* ... */
-
const TH_FLAGS_SWAPPED: c_int = /* ... */
-
const TH_FLAGS_IDLE: c_int = /* ... */
-
const TH_FLAGS_GLOBAL_FORCED_IDLE: c_int = /* ... */
-
const THREAD_BASIC_INFO: c_int = /* ... */
-
const THREAD_IDENTIFIER_INFO: c_int = /* ... */
-
const THREAD_EXTENDED_INFO: c_int = /* ... */
-
const kCCSuccess: i32 = /* ... */
-
const kCCParamError: i32 = /* ... */
-
const kCCBufferTooSmall: i32 = /* ... */
-
const kCCMemoryFailure: i32 = /* ... */
-
const kCCAlignmentError: i32 = /* ... */
-
const kCCDecodeError: i32 = /* ... */
-
const kCCUnimplemented: i32 = /* ... */
-
const kCCOverflow: i32 = /* ... */
-
const kCCRNGFailure: i32 = /* ... */
-
const kCCUnspecifiedError: i32 = /* ... */
-
const kCCCallSequenceError: i32 = /* ... */
-
const kCCKeySizeError: i32 = /* ... */
-
const kCCInvalidKey: i32 = /* ... */
-
const HOST_LOAD_INFO: i32 = /* ... */
-
const HOST_VM_INFO: i32 = /* ... */
-
const HOST_CPU_LOAD_INFO: i32 = /* ... */
-
const HOST_VM_INFO64: i32 = /* ... */
-
const HOST_EXTMOD_INFO64: i32 = /* ... */
-
const HOST_EXPIRED_TASK_INFO: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_PRESENT: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_FICTITIOUS: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_REF: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_DIRTY: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_PAGED_OUT: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_COPIED: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_SPECULATIVE: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_EXTERNAL: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_CS_VALIDATED: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_CS_TAINTED: i32 = /* ... */
-
const VM_PAGE_QUERY_PAGE_CS_NX: i32 = /* ... */
-
const TASK_THREAD_TIMES_INFO: u32 = /* ... */
-
const HOST_CPU_LOAD_INFO_COUNT: u32 = /* ... */
-
const MACH_TASK_BASIC_INFO: u32 = /* ... */
-
const MACH_PORT_NULL: i32 = /* ... */
-
const RUSAGE_INFO_V0: c_int = /* ... */
-
const RUSAGE_INFO_V1: c_int = /* ... */
-
const RUSAGE_INFO_V2: c_int = /* ... */
-
const RUSAGE_INFO_V3: c_int = /* ... */
-
const RUSAGE_INFO_V4: c_int = /* ... */
-
const COPYFILE_ACL: copyfile_flags_t = /* ... */
-
const COPYFILE_STAT: copyfile_flags_t = /* ... */
-
const COPYFILE_XATTR: copyfile_flags_t = /* ... */
-
const COPYFILE_DATA: copyfile_flags_t = /* ... */
-
const COPYFILE_SECURITY: copyfile_flags_t = /* ... */
-
const COPYFILE_METADATA: copyfile_flags_t = /* ... */
-
const COPYFILE_RECURSIVE: copyfile_flags_t = /* ... */
-
const COPYFILE_CHECK: copyfile_flags_t = /* ... */
-
const COPYFILE_EXCL: copyfile_flags_t = /* ... */
-
const COPYFILE_NOFOLLOW_SRC: copyfile_flags_t = /* ... */
-
const COPYFILE_NOFOLLOW_DST: copyfile_flags_t = /* ... */
-
const COPYFILE_MOVE: copyfile_flags_t = /* ... */
-
const COPYFILE_UNLINK: copyfile_flags_t = /* ... */
-
const COPYFILE_NOFOLLOW: copyfile_flags_t = /* ... */
-
const COPYFILE_PACK: copyfile_flags_t = /* ... */
-
const COPYFILE_UNPACK: copyfile_flags_t = /* ... */
-
const COPYFILE_CLONE: copyfile_flags_t = /* ... */
-
const COPYFILE_CLONE_FORCE: copyfile_flags_t = /* ... */
-
const COPYFILE_RUN_IN_PLACE: copyfile_flags_t = /* ... */
-
const COPYFILE_DATA_SPARSE: copyfile_flags_t = /* ... */
-
const COPYFILE_PRESERVE_DST_TRACKED: copyfile_flags_t = /* ... */
-
const COPYFILE_VERBOSE: copyfile_flags_t = /* ... */
-
const COPYFILE_RECURSE_ERROR: c_int = /* ... */
-
const COPYFILE_RECURSE_FILE: c_int = /* ... */
-
const COPYFILE_RECURSE_DIR: c_int = /* ... */
-
const COPYFILE_RECURSE_DIR_CLEANUP: c_int = /* ... */
-
const COPYFILE_COPY_DATA: c_int = /* ... */
-
const COPYFILE_COPY_XATTR: c_int = /* ... */
-
const COPYFILE_START: c_int = /* ... */
-
const COPYFILE_FINISH: c_int = /* ... */
-
const COPYFILE_ERR: c_int = /* ... */
-
const COPYFILE_PROGRESS: c_int = /* ... */
-
const COPYFILE_CONTINUE: c_int = /* ... */
-
const COPYFILE_SKIP: c_int = /* ... */
-
const COPYFILE_QUIT: c_int = /* ... */
-
const ATTR_BIT_MAP_COUNT: c_ushort = /* ... */
-
const FSOPT_NOFOLLOW: u32 = /* ... */
-
const FSOPT_NOFOLLOW_ANY: u32 = /* ... */
-
const FSOPT_REPORT_FULLSIZE: u32 = /* ... */
-
const FSOPT_PACK_INVAL_ATTRS: u32 = /* ... */
-
const FSOPT_ATTR_CMN_EXTENDED: u32 = /* ... */
-
const FSOPT_RETURN_REALDEV: u32 = /* ... */
-
const ATTR_CMN_NAME: attrgroup_t = /* ... */
-
const ATTR_CMN_DEVID: attrgroup_t = /* ... */
-
const ATTR_CMN_FSID: attrgroup_t = /* ... */
-
const ATTR_CMN_OBJTYPE: attrgroup_t = /* ... */
-
const ATTR_CMN_OBJTAG: attrgroup_t = /* ... */
-
const ATTR_CMN_OBJID: attrgroup_t = /* ... */
-
const ATTR_CMN_OBJPERMANENTID: attrgroup_t = /* ... */
-
const ATTR_CMN_PAROBJID: attrgroup_t = /* ... */
-
const ATTR_CMN_SCRIPT: attrgroup_t = /* ... */
-
const ATTR_CMN_CRTIME: attrgroup_t = /* ... */
-
const ATTR_CMN_MODTIME: attrgroup_t = /* ... */
-
const ATTR_CMN_CHGTIME: attrgroup_t = /* ... */
-
const ATTR_CMN_ACCTIME: attrgroup_t = /* ... */
-
const ATTR_CMN_BKUPTIME: attrgroup_t = /* ... */
-
const ATTR_CMN_FNDRINFO: attrgroup_t = /* ... */
-
const ATTR_CMN_OWNERID: attrgroup_t = /* ... */
-
const ATTR_CMN_GRPID: attrgroup_t = /* ... */
-
const ATTR_CMN_ACCESSMASK: attrgroup_t = /* ... */
-
const ATTR_CMN_FLAGS: attrgroup_t = /* ... */
-
const ATTR_CMN_GEN_COUNT: attrgroup_t = /* ... */
-
const ATTR_CMN_DOCUMENT_ID: attrgroup_t = /* ... */
-
const ATTR_CMN_USERACCESS: attrgroup_t = /* ... */
-
const ATTR_CMN_EXTENDED_SECURITY: attrgroup_t = /* ... */
-
const ATTR_CMN_UUID: attrgroup_t = /* ... */
-
const ATTR_CMN_GRPUUID: attrgroup_t = /* ... */
-
const ATTR_CMN_FILEID: attrgroup_t = /* ... */
-
const ATTR_CMN_PARENTID: attrgroup_t = /* ... */
-
const ATTR_CMN_FULLPATH: attrgroup_t = /* ... */
-
const ATTR_CMN_ADDEDTIME: attrgroup_t = /* ... */
-
const ATTR_CMN_DATA_PROTECT_FLAGS: attrgroup_t = /* ... */
-
const ATTR_CMN_RETURNED_ATTRS: attrgroup_t = /* ... */
-
const ATTR_VOL_FSTYPE: attrgroup_t = /* ... */
-
const ATTR_VOL_SIGNATURE: attrgroup_t = /* ... */
-
const ATTR_VOL_SIZE: attrgroup_t = /* ... */
-
const ATTR_VOL_SPACEFREE: attrgroup_t = /* ... */
-
const ATTR_VOL_SPACEAVAIL: attrgroup_t = /* ... */
-
const ATTR_VOL_MINALLOCATION: attrgroup_t = /* ... */
-
const ATTR_VOL_ALLOCATIONCLUMP: attrgroup_t = /* ... */
-
const ATTR_VOL_IOBLOCKSIZE: attrgroup_t = /* ... */
-
const ATTR_VOL_OBJCOUNT: attrgroup_t = /* ... */
-
const ATTR_VOL_FILECOUNT: attrgroup_t = /* ... */
-
const ATTR_VOL_DIRCOUNT: attrgroup_t = /* ... */
-
const ATTR_VOL_MAXOBJCOUNT: attrgroup_t = /* ... */
-
const ATTR_VOL_MOUNTPOINT: attrgroup_t = /* ... */
-
const ATTR_VOL_NAME: attrgroup_t = /* ... */
-
const ATTR_VOL_MOUNTFLAGS: attrgroup_t = /* ... */
-
const ATTR_VOL_MOUNTEDDEVICE: attrgroup_t = /* ... */
-
const ATTR_VOL_ENCODINGSUSED: attrgroup_t = /* ... */
-
const ATTR_VOL_CAPABILITIES: attrgroup_t = /* ... */
-
const ATTR_VOL_UUID: attrgroup_t = /* ... */
-
const ATTR_VOL_SPACEUSED: attrgroup_t = /* ... */
-
const ATTR_VOL_QUOTA_SIZE: attrgroup_t = /* ... */
-
const ATTR_VOL_RESERVED_SIZE: attrgroup_t = /* ... */
-
const ATTR_VOL_ATTRIBUTES: attrgroup_t = /* ... */
-
const ATTR_VOL_INFO: attrgroup_t = /* ... */
-
const ATTR_DIR_LINKCOUNT: attrgroup_t = /* ... */
-
const ATTR_DIR_ENTRYCOUNT: attrgroup_t = /* ... */
-
const ATTR_DIR_MOUNTSTATUS: attrgroup_t = /* ... */
-
const ATTR_DIR_ALLOCSIZE: attrgroup_t = /* ... */
-
const ATTR_DIR_IOBLOCKSIZE: attrgroup_t = /* ... */
-
const ATTR_DIR_DATALENGTH: attrgroup_t = /* ... */
-
const ATTR_FILE_LINKCOUNT: attrgroup_t = /* ... */
-
const ATTR_FILE_TOTALSIZE: attrgroup_t = /* ... */
-
const ATTR_FILE_ALLOCSIZE: attrgroup_t = /* ... */
-
const ATTR_FILE_IOBLOCKSIZE: attrgroup_t = /* ... */
-
const ATTR_FILE_DEVTYPE: attrgroup_t = /* ... */
-
const ATTR_FILE_FORKCOUNT: attrgroup_t = /* ... */
-
const ATTR_FILE_FORKLIST: attrgroup_t = /* ... */
-
const ATTR_FILE_DATALENGTH: attrgroup_t = /* ... */
-
const ATTR_FILE_DATAALLOCSIZE: attrgroup_t = /* ... */
-
const ATTR_FILE_RSRCLENGTH: attrgroup_t = /* ... */
-
const ATTR_FILE_RSRCALLOCSIZE: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_RELPATH: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_PRIVATESIZE: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_LINKID: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_NOFIRMLINKPATH: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_REALDEVID: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_REALFSID: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_CLONEID: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_EXT_FLAGS: attrgroup_t = /* ... */
-
const ATTR_CMNEXT_RECURSIVE_GENCOUNT: attrgroup_t = /* ... */
-
const DIR_MNTSTATUS_MNTPOINT: u32 = /* ... */
-
const VOL_CAPABILITIES_FORMAT: usize = /* ... */
-
const VOL_CAPABILITIES_INTERFACES: usize = /* ... */
-
const VOL_CAP_FMT_PERSISTENTOBJECTIDS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_SYMBOLICLINKS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_HARDLINKS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_JOURNAL: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_JOURNAL_ACTIVE: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_NO_ROOT_TIMES: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_SPARSE_FILES: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_ZERO_RUNS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_CASE_SENSITIVE: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_CASE_PRESERVING: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_FAST_STATFS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_2TB_FILESIZE: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_OPENDENYMODES: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_HIDDEN_FILES: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_PATH_FROM_ID: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_NO_VOLUME_SIZES: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_DECMPFS_COMPRESSION: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_64BIT_OBJECT_IDS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_DIR_HARDLINKS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_DOCUMENT_ID: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_WRITE_GENERATION_COUNT: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_NO_IMMUTABLE_FILES: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_NO_PERMISSIONS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_SHARED_SPACE: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_VOL_GROUPS: attrgroup_t = /* ... */
-
const VOL_CAP_FMT_SEALED: attrgroup_t = /* ... */
-
const VOL_CAP_INT_SEARCHFS: attrgroup_t = /* ... */
-
const VOL_CAP_INT_ATTRLIST: attrgroup_t = /* ... */
-
const VOL_CAP_INT_NFSEXPORT: attrgroup_t = /* ... */
-
const VOL_CAP_INT_READDIRATTR: attrgroup_t = /* ... */
-
const VOL_CAP_INT_EXCHANGEDATA: attrgroup_t = /* ... */
-
const VOL_CAP_INT_COPYFILE: attrgroup_t = /* ... */
-
const VOL_CAP_INT_ALLOCATE: attrgroup_t = /* ... */
-
const VOL_CAP_INT_VOL_RENAME: attrgroup_t = /* ... */
-
const VOL_CAP_INT_ADVLOCK: attrgroup_t = /* ... */
-
const VOL_CAP_INT_FLOCK: attrgroup_t = /* ... */
-
const VOL_CAP_INT_EXTENDED_SECURITY: attrgroup_t = /* ... */
-
const VOL_CAP_INT_USERACCESS: attrgroup_t = /* ... */
-
const VOL_CAP_INT_MANLOCK: attrgroup_t = /* ... */
-
const VOL_CAP_INT_NAMEDSTREAMS: attrgroup_t = /* ... */
-
const VOL_CAP_INT_EXTENDED_ATTR: attrgroup_t = /* ... */
-
const VOL_CAP_INT_CLONE: attrgroup_t = /* ... */
-
const VOL_CAP_INT_SNAPSHOT: attrgroup_t = /* ... */
-
const VOL_CAP_INT_RENAME_SWAP: attrgroup_t = /* ... */
-
const VOL_CAP_INT_RENAME_EXCL: attrgroup_t = /* ... */
-
const VOL_CAP_INT_RENAME_OPENFAIL: attrgroup_t = /* ... */
-
const SIDL: u32 = /* ... */
-
const SRUN: u32 = /* ... */
-
const SSLEEP: u32 = /* ... */
-
const SSTOP: u32 = /* ... */
-
const SZOMB: u32 = /* ... */
-
const THREAD_EXTENDED_POLICY_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_TIME_CONSTRAINT_POLICY_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_PRECEDENCE_POLICY_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_AFFINITY_POLICY_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_BACKGROUND_POLICY_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_LATENCY_QOS_POLICY_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_THROUGHPUT_QOS_POLICY_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_BASIC_INFO_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_IDENTIFIER_INFO_COUNT: mach_msg_type_number_t = /* ... */
-
const THREAD_EXTENDED_INFO_COUNT: mach_msg_type_number_t = /* ... */
-
const TASK_THREAD_TIMES_INFO_COUNT: u32 = /* ... */
-
const MACH_TASK_BASIC_INFO_COUNT: u32 = /* ... */
-
const HOST_VM_INFO64_COUNT: mach_msg_type_number_t = /* ... */
-
const NET_RT_MAXID: c_int = /* ... */
-
const TIOCTIMESTAMP: c_ulong = /* ... */
-
const TIOCDCDTIMESTAMP: c_ulong = /* ... */
-
const BIOCSETF: c_ulong = /* ... */
-
const BIOCSRTIMEOUT: c_ulong = /* ... */
-
const BIOCGRTIMEOUT: c_ulong = /* ... */
-
const BIOCSETFNR: c_ulong = /* ... */
-
const MAX_KCTL_NAME: usize = /* ... */
Statics
-
static mach_task_self_: mach_port_t
-
static vm_page_size: vm_size_t