Module libc::aarch64_unknown_linux_musl
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)
-
-
-
-
-
-
-
-
-
-
-
fn SIGRTMAX() -> c_int
-
fn SIGRTMIN() -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn pthread_getattr_np(native: pthread_t, attr: &mut pthread_attr_t) -> c_int
-
extern "C" fn pthread_attr_getstack(attr: &pthread_attr_t, stackaddr: &mut &mut c_void, stacksize: &mut size_t) -> c_int
-
-
-
-
-
extern "C" fn statfs64(path: &c_char, buf: &mut statfs64_t) -> c_int
-
-
extern "C" fn fstatfs64(fd: c_int, buf: &mut statfs64_t) -> c_int
-
extern "C" fn statvfs64(path: &c_char, buf: &mut statvfs64_t) -> c_int
-
extern "C" fn fstatvfs64(fd: c_int, buf: &mut statvfs64_t) -> c_int
-
-
-
-
-
-
-
extern "C" fn freelocale(loc: locale_t)
-
-
-
-
-
-
-
-
-
extern "C" fn mmap64(addr: &mut c_void, len: size_t, prot: c_int, flags: c_int, fd: c_int, offset: off64_t) -> &mut c_void
-
-
-
-
-
-
extern "C" fn readdir64_r(dirp: &mut DIR, entry: &mut dirent64, result: &mut &mut dirent64) -> c_int
-
-
-
-
extern "C" fn pthread_condattr_getclock(attr: &pthread_condattr_t, clock_id: &mut clockid_t) -> c_int
-
extern "C" fn pthread_condattr_setclock(attr: &mut pthread_condattr_t, clock_id: clockid_t) -> c_int
-
-
-
-
-
-
extern "C" fn clearenv() -> c_int
-
-
-
-
-
-
-
extern "C" fn vfork() -> pid_t
-
-
-
-
-
-
-
-
extern "C" fn freeifaddrs(ifa: &mut ifaddrs)
-
-
-
-
-
-
-
-
-
-
extern "C" fn forkpty(amaster: &mut c_int, name: &mut c_char, termp: &termios, winp: &winsize) -> pid_t
-
extern "C" fn openpty(amaster: &mut c_int, aslave: &mut c_int, name: &mut c_char, termp: &termios, winp: &winsize) -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
fn SO_EE_OFFENDER(ee: &sock_extended_err) -> &mut sockaddr
-
-
-
fn BPF_STMT(code: __u16, k: __u32) -> sock_filter
-
fn BPF_JUMP(code: __u16, k: __u32, jt: __u8, jf: __u8) -> sock_filter
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn lio_listio(mode: c_int, aiocb_list: &&mut aiocb, nitems: c_int, sevp: &mut sigevent) -> c_int
-
-
-
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 process_vm_readv(pid: pid_t, local_iov: &iovec, liovcnt: c_ulong, remote_iov: &iovec, riovcnt: c_ulong, flags: c_ulong) -> isize
-
extern "C" fn process_vm_writev(pid: pid_t, local_iov: &iovec, liovcnt: c_ulong, remote_iov: &iovec, riovcnt: c_ulong, flags: c_ulong) -> isize
-
-
extern "C" fn getspnam_r(name: &c_char, spbuf: &mut spwd, buf: &mut c_char, buflen: size_t, spbufp: &mut &mut spwd) -> c_int
-
-
-
-
-
-
extern "C" fn mq_receive(mqd: mqd_t, msg_ptr: &mut c_char, msg_len: size_t, msg_prio: &mut c_uint) -> ssize_t
-
extern "C" fn mq_timedreceive(mqd: mqd_t, msg_ptr: &mut c_char, msg_len: size_t, msg_prio: &mut c_uint, abs_timeout: ×pec) -> ssize_t
-
-
extern "C" fn mq_timedsend(mqd: mqd_t, msg_ptr: &c_char, msg_len: size_t, msg_prio: c_uint, abs_timeout: ×pec) -> c_int
-
-
-
extern "C" fn pthread_mutex_consistent(mutex: &mut pthread_mutex_t) -> c_int
-
-
extern "C" fn pthread_mutexattr_getrobust(attr: &pthread_mutexattr_t, robustness: &mut c_int) -> c_int
-
extern "C" fn pthread_mutexattr_setrobust(attr: &mut pthread_mutexattr_t, robustness: c_int) -> c_int
-
-
-
-
extern "C" fn rand() -> c_int
-
extern "C" fn srand(seed: c_uint)
-
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 getpwent() -> &mut passwd
-
-
-
extern "C" fn getgrent() -> &mut group
-
-
-
extern "C" fn getspent() -> &mut spwd
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn msgrcv(msqid: c_int, msgp: &mut c_void, msgsz: size_t, msgtyp: c_long, msgflg: c_int) -> ssize_t
-
-
-
-
-
extern "C" fn tmpfile64() -> &mut FILE
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn setxattr(path: &c_char, name: &c_char, value: &c_void, size: size_t, flags: c_int) -> c_int
-
extern "C" fn lsetxattr(path: &c_char, name: &c_char, value: &c_void, size: size_t, flags: c_int) -> c_int
-
extern "C" fn fsetxattr(filedes: c_int, name: &c_char, value: &c_void, size: size_t, flags: c_int) -> c_int
-
-
-
-
-
-
-
-
-
extern "C" fn timerfd_gettime(fd: c_int, curr_value: &mut itimerspec) -> c_int
-
extern "C" fn timerfd_settime(fd: c_int, flags: c_int, new_value: &itimerspec, old_value: &mut itimerspec) -> c_int
-
-
extern "C" fn epoll_pwait(epfd: c_int, events: &mut epoll_event, maxevents: c_int, timeout: c_int, sigmask: &sigset_t) -> c_int
-
-
-
-
-
-
-
-
extern "C" fn pthread_getaffinity_np(thread: pthread_t, cpusetsize: size_t, cpuset: &mut cpu_set_t) -> c_int
-
extern "C" fn pthread_setaffinity_np(thread: pthread_t, cpusetsize: size_t, cpuset: &cpu_set_t) -> c_int
-
-
-
-
-
-
extern "C" fn if_nameindex() -> &mut if_nameindex_t
-
extern "C" fn if_freenameindex(ptr: &mut if_nameindex_t)
-
-
extern "C" fn mremap(addr: &mut c_void, len: size_t, new_len: size_t, flags: c_int, ...) -> &mut c_void
-
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 remap_file_pages(addr: &mut c_void, size: size_t, prot: c_int, pgoff: size_t, flags: c_int) -> c_int
-
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 vhangup() -> c_int
-
-
-
-
-
-
-
-
extern "C" fn epoll_wait(epfd: c_int, events: &mut epoll_event, maxevents: c_int, timeout: c_int) -> c_int
-
extern "C" fn epoll_ctl(epfd: c_int, op: c_int, fd: c_int, event: &mut epoll_event) -> c_int
-
extern "C" fn pthread_getschedparam(native: pthread_t, policy: &mut c_int, param: &mut sched_param) -> c_int
-
-
-
-
-
-
extern "C" fn splice(fd_in: c_int, off_in: &mut loff_t, fd_out: c_int, off_out: &mut loff_t, len: size_t, flags: c_uint) -> ssize_t
-
-
-
-
-
extern "C" fn sched_setparam(pid: pid_t, param: &sched_param) -> c_int
-
-
-
-
extern "C" fn mount(src: &c_char, target: &c_char, fstype: &c_char, flags: c_ulong, data: &c_void) -> c_int
-
-
-
extern "C" fn sched_getparam(pid: pid_t, param: &mut sched_param) -> c_int
-
extern "C" fn ppoll(fds: &mut pollfd, nfds: nfds_t, timeout: ×pec, sigmask: &sigset_t) -> c_int
-
extern "C" fn pthread_mutexattr_getprotocol(attr: &pthread_mutexattr_t, protocol: &mut c_int) -> c_int
-
extern "C" fn pthread_mutexattr_setprotocol(attr: &mut pthread_mutexattr_t, protocol: c_int) -> c_int
-
extern "C" fn pthread_mutex_timedlock(lock: &mut pthread_mutex_t, abstime: ×pec) -> c_int
-
extern "C" fn pthread_barrierattr_init(attr: &mut pthread_barrierattr_t) -> c_int
-
extern "C" fn pthread_barrierattr_destroy(attr: &mut pthread_barrierattr_t) -> c_int
-
-
-
extern "C" fn pthread_barrier_init(barrier: &mut pthread_barrier_t, attr: &pthread_barrierattr_t, count: c_uint) -> c_int
-
extern "C" fn pthread_barrier_destroy(barrier: &mut pthread_barrier_t) -> c_int
-
extern "C" fn pthread_barrier_wait(barrier: &mut pthread_barrier_t) -> c_int
-
extern "C" fn pthread_spin_init(lock: &mut pthread_spinlock_t, pshared: c_int) -> c_int
-
extern "C" fn pthread_spin_destroy(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn pthread_spin_lock(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn pthread_spin_trylock(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn pthread_spin_unlock(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn clone(cb: fn(&mut c_void) -> c_int, child_stack: &mut c_void, flags: c_int, arg: &mut c_void, ...) -> c_int
-
-
extern "C" fn clock_nanosleep(clk_id: clockid_t, flags: c_int, rqtp: ×pec, rmtp: &mut timespec) -> c_int
-
extern "C" fn pthread_attr_getguardsize(attr: &pthread_attr_t, guardsize: &mut size_t) -> c_int
-
-
-
-
-
-
extern "C" fn pthread_setschedparam(native: pthread_t, policy: c_int, param: &sched_param) -> c_int
-
-
extern "C" fn sched_setscheduler(pid: pid_t, policy: c_int, param: &sched_param) -> c_int
-
-
extern "C" fn sendfile64(out_fd: c_int, in_fd: c_int, offset: &mut off64_t, count: size_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 getgrouplist(user: &c_char, group: gid_t, groups: &mut gid_t, ngroups: &mut c_int) -> 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 dl_iterate_phdr(callback: fn(&mut dl_phdr_info, size_t, &mut c_void) -> c_int, data: &mut c_void) -> 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_getschedpolicy(attr: &posix_spawnattr_t, flags: &mut c_int) -> c_int
-
extern "C" fn posix_spawnattr_setschedpolicy(attr: &mut posix_spawnattr_t, flags: c_int) -> c_int
-
extern "C" fn posix_spawnattr_getschedparam(attr: &posix_spawnattr_t, param: &mut sched_param) -> c_int
-
extern "C" fn posix_spawnattr_setschedparam(attr: &mut posix_spawnattr_t, param: &sched_param) -> 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 fread_unlocked(ptr: &mut c_void, size: size_t, nobj: size_t, stream: &mut FILE) -> size_t
-
-
extern "C" fn inotify_init() -> 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 iconv(cd: iconv_t, inbuf: &mut &mut c_char, inbytesleft: &mut size_t, outbuf: &mut &mut c_char, outbytesleft: &mut size_t) -> size_t
-
-
extern "C" fn gettid() -> pid_t
-
-
-
-
extern "C" fn timer_gettime(timerid: timer_t, curr_value: &mut itimerspec) -> c_int
-
extern "C" fn timer_settime(timerid: timer_t, flags: c_int, new_value: &itimerspec, old_value: &mut itimerspec) -> c_int
-
extern "C" fn gethostid() -> c_long
-
-
extern