cosmopolitan/libc/sysv/consts
Justine Tunney 98254a7c1f Make pledge() and unveil() work amazingly
This change reconciles our pledge() implementation with the OpenBSD
kernel source code. We now a polyfill that's much closer to OpenBSD's
behavior. For example, it was discovered that "stdio" permits threads.
There were a bunch of Linux system calls that needed to be added, like
sched_yield(). The exec / execnative category division is now dropped.
We're instead using OpenBSD's "prot_exec" promise for launching APE
binaries and dynamic shared objects. We also now filter clone() flags.

The pledge.com command has been greatly improved. It now does unveiling
by default when Landlock is available. It's now smart enough to unveil a
superset of paths that OpenBSD automatically unveils with pledge(), such
as /etc/localtime. pledge.com also now checks if the executable being
launched is a dynamic shared object, in which case it unveils libraries.

These changes now make it possible to pledge curl on ubuntu 20.04 glibc:

    pledge.com -p 'stdio rpath prot_exec inet dns tty sendfd recvfd' \
        curl -s https://justine.lol/hello.txt

Here's what pledging curl on Alpine 3.16 with Musl Libc looks like:

    pledge.com -p 'stdio rpath prot_exec dns inet' \
        curl -s https://justine.lol/hello.txt

Here's what pledging curl.com w/ ape loader looks like:

    pledge.com -p 'stdio rpath prot_exec dns inet' \
        o//examples/curl.com https://justine.lol/hello.txt

The most secure sandbox, is curl.com converted to static ELF:

    o//tool/build/assimilate.com o//examples/curl.com
    pledge.com -p 'stdio rpath dns inet' \
        o//examples/curl.com https://justine.lol/hello.txt

A weird corner case needed to be handled when resolving symbolic links
during the unveiling process, that's arguably a Landlock bug. It's not
surprising since Musl and Glibc are also inconsistent here too.
2022-07-19 21:33:49 -07:00
..
__NR___mac_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR___sysctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR__sysctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR__umtx_op.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_abort2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_abort_with_payload.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_accept.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_accept4.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_accept_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_access.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_access_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acct.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_aclcheck_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_aclcheck_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_aclcheck_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_delete_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_delete_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_delete_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_get_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_get_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_get_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_set_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_set_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_acl_set_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_add_key.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_adjfreq.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_adjtime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_adjtimex.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_afs3_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_cancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_error.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_fsync.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_mlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_read.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_return.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_suspend.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_suspend_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_waitcomplete.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_aio_write.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_alarm.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_arch_prctl.S Add malloc logging tool 2022-05-26 23:19:22 -07:00
__NR_audit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_audit_session_join.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_audit_session_port.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_audit_session_self.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_auditctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_auditon.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_bind.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_bindat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_bpf.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_break.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_bsdthread_ctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_bsdthread_terminate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_enter.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_fcntls_get.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_fcntls_limit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_getmode.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_ioctls_get.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_ioctls_limit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_rights_get.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cap_rights_limit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_capget.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_capset.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_change_fdguard_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_chdir.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_chflags.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_chflagsat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_chmod.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_chmod_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_chown.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_chroot.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_clock_adjtime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_clock_getcpuclockid2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_clock_getres.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_clock_gettime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_clock_nanosleep.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_clock_settime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_clone.S Improve system call support 2021-08-25 21:36:17 -07:00
__NR_clonefileat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_close.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_close_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_closefrom.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_coalition.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_coalition_info.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_connect.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_connect_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_connectat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_connectx.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_copy_file_range.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_copyfile.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cpuset.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cpuset_getaffinity.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cpuset_getdomain.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cpuset_getid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cpuset_setaffinity.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cpuset_setdomain.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_cpuset_setid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_creat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_csops.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_csops_audittoken.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_csrctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_delete.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_delete_module.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_disable_threadsignal.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_disconnectx.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_dup.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_dup2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_dup3.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_eaccess.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_epoll_create.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_epoll_create1.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_epoll_ctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_epoll_pwait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_epoll_wait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_eventfd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_eventfd2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_exchangedata.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_execve.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_execveat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_exit.S Fix bugs and add security features to redbean 2022-04-18 00:01:26 -07:00
__NR_exit_group.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_delete_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_delete_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_delete_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_get_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_get_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_get_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_list_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_list_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_list_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_set_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_set_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattr_set_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_extattrctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_faccessat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fadvise.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fallocate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fanotify_init.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fanotify_mark.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fchdir.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fchflags.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fchmod.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fchmod_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fchmodat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fchown.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fchownat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fclonefileat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fcntl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fcntl_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fdatasync.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fexecve.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ffclock_getcounter.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ffclock_getestimate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ffclock_setestimate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ffsctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fgetattrlist.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fgetxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fhlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fhlinkat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fhopen.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fhreadlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fhstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fhstatfs.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fileport_makefd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fileport_makeport.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_finit_module.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_flistxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_flock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fmount.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fork.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fpathconf.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fremovexattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fs_snapshot.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fsctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fsetattrlist.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fsetxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fstat_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fstatat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fstatfs.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fsync.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_fsync_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ftruncate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_futex.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_futimens.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_futimes.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_futimesat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_get_mempolicy.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_get_robust_list.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_get_tcb.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getattrlist.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getattrlistat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getattrlistbulk.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getaudit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getaudit_addr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getauid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getcontext.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getcpu.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getcwd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getdents.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getdirentries.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getdirentriesattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getdtablecount.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getdtablesize.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getegid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_geteuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getfh.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getfhat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getfsstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getgid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getgroups.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_gethostid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_gethostuuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getitimer.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getkerninfo.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getlogin.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getlogin_r.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getloginclass.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getpagesize.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getpeername.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getpgid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getpgrp.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getpid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getppid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getpriority.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getrandom.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getresgid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getresuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getrlimit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getrtable.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getrusage.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getsgroups.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getsid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getsockname.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getsockopt.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getthrid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_gettid.S Add malloc logging tool 2022-05-26 23:19:22 -07:00
__NR_gettimeofday.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getwgroups.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_getxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_grab_pgo_data.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_gssd_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_guarded_close_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_guarded_kqueue_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_guarded_open_dprotected_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_guarded_open_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_guarded_pwrite_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_guarded_write_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_guarded_writev_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_identitysvc.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_init_module.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_initgroups.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_inotify_add_watch.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_inotify_init.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_inotify_init1.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_inotify_rm_watch.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_cancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_destroy.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_getevents.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_pgetevents.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_setup.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_submit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_uring_enter.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_uring_register.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_io_uring_setup.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ioctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ioperm.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_iopl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_iopolicysys.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ioprio_get.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ioprio_set.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_issetugid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_jail.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_jail_attach.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_jail_get.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_jail_remove.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_jail_set.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kas_info.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kbind.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kcmp.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kdebug_trace.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kdebug_trace_string.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kdebug_typefilter.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kenv.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kevent.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kevent_id.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kevent_qos.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kexec_file_load.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kexec_load.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_keyctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kill.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_killpg.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldfind.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldfirstmod.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldload.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldnext.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldsym.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldunload.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kldunloadf.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kmq_notify.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kmq_setattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kmq_timedreceive.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kmq_timedsend.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kmq_unlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_kqueue.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_close.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_destroy.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_getvalue.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_init.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_post.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_timedwait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_trywait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_unlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ksem_wait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ktimer_create.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ktimer_delete.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ktimer_getoverrun.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ktimer_gettime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ktimer_settime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ktrace.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lchflags.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lchmod.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lchown.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ledger.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lgetfh.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lgetxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_linkat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lio_listio.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_listen.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_listxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_llistxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lookup_dcookie.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lpathconf.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lremovexattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lseek.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lsetxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lstat_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_lutimes.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_execve.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_get_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_get_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_get_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_get_mount.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_get_pid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_get_proc.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_getfsstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_mount.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_set_fd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_set_file.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_set_link.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_set_proc.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mac_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_madvise.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mbind.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_membarrier.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_memfd_create.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_memorystatus_control.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_memorystatus_get_level.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_microstackshot.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_migrate_pages.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mincore.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_minherit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mkdir.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mkdir_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mkdirat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mkfifo.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mkfifo_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mkfifoat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mknod.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mknodat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mlock2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mlockall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mmap.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_modfind.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_modfnext.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_modify_ldt.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_modnext.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_modstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_modwatch.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mount.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_move_pages.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mprotect.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mq_getsetattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mq_notify.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mq_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mq_timedreceive.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mq_timedsend.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mq_unlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mquery.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mremap.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_mremap_encrypted.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msgctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msgget.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msgrcv.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msgrcv_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msgsnd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msgsnd_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msgsys.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msync.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msync_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_msyscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_munlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_munlockall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_munmap.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_name_to_handle_at.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nanosleep.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_necp_client_action.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_necp_match_policy.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_necp_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_necp_session_action.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_necp_session_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_net_qos_guideline.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_netagent_trigger.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nfsclnt.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nfssvc.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nfstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nlm_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nlstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nmount.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nnpfs_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_nstat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ntp_adjtime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ntp_gettime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_obreak.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_old_semwait_signal.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_old_semwait_signal_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_open_by_handle_at.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_open_dprotected_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_open_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_open_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_openat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_openat_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_openbyid_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_os_fault_with_payload.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pathconf.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pause.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pdfork.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pdgetpid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pdkill.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_peeloff.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_perf_event_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_persona.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_personality.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pid_hibernate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pid_resume.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pid_shutdown_sockets.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pid_suspend.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pidfd_send_signal.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pipe.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pipe2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pivot_root.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pkey_alloc.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pkey_free.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pkey_mprotect.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pledge.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_poll.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_poll_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_posix_fallocate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_posix_openpt.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_posix_spawn.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ppoll.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_prctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pread.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pread_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_preadv.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_preadv2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_prlimit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_proc_info.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_proc_rlimit_control.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_proc_trace_log.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_proc_uuid_policy.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_procctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_process_policy.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_process_vm_readv.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_process_vm_writev.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_profil.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pselect.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pselect6.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pselect_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_cvbroad.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_cvclrprepost.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_cvsignal.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_cvwait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_mutexdrop.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_mutexwait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_downgrade.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_longrdlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_rdlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_unlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_unlock2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_upgrade.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_wrlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_psynch_rw_yieldwrlock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pthread_canceled.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pthread_chdir.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pthread_fchdir.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pthread_kill.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pthread_markcancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pthread_sigmask.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ptrace.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pwrite.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pwrite_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pwritev.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_pwritev2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_quota.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_quotactl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rctl_add_rule.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rctl_get_limits.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rctl_get_racct.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rctl_get_rules.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rctl_remove_rule.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_read.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_read_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_readahead.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_readlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_readlinkat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_readv.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_readv_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_reboot.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_recv.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_recvfrom.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_recvfrom_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_recvmmsg.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_recvmsg.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_recvmsg_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_recvmsg_x.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_removexattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rename.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_renameat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_renameat2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_renameatx_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_request_key.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_restart_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_revoke.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rfork.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rmdir.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rseq.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rt_sigqueueinfo.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rt_tgsigqueueinfo.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rtprio.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_rtprio_thread.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_get_priority_max.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_get_priority_min.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_getaffinity.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_getattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_getparam.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_getscheduler.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_rr_get_interval.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_setaffinity.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_setattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_setparam.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_setscheduler.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sched_yield.S Improve system calls 2022-07-08 06:42:03 -07:00
__NR_sctp_generic_recvmsg.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sctp_generic_sendmsg.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sctp_generic_sendmsg_iov.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sctp_peeloff.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_searchfs.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_seccomp.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_select.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_select_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sem_close.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sem_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sem_post.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sem_trywait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sem_unlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sem_wait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sem_wait_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_semctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_semget.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_semop.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_semsys.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_semtimedop.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_semwait_signal.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_semwait_signal_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_send.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendfile.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendmmsg.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendmsg.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendmsg_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendmsg_x.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendsyslog.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendto.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sendto_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_set_mempolicy.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_set_robust_list.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_set_tcb.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_set_tid_address.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setattrlist.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setattrlistat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setaudit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setaudit_addr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setauid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setcontext.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setdomainname.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setegid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_seteuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setfib.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setfsgid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setfsuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setgid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setgroups.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sethostid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sethostname.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setitimer.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setlogin.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setloginclass.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setns.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setpgid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setpriority.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setprivexec.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setregid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setresgid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setresuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setreuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setrlimit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setrtable.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setsgroups.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setsid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setsockopt.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_settid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_settid_with_pid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_settimeofday.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setugid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setuid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setwgroups.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_setxattr.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sfi_ctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sfi_pidctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shared_region_check_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shared_region_map_and_slide_np.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shm_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shm_unlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shmat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shmctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shmdt.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shmget.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shmsys.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_shutdown.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigaction.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigaltstack.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigblock.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_signalfd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_signalfd4.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigpending.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigprocmask.S Make improvements 2022-04-07 00:15:35 -07:00
__NR_sigqueue.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigsetmask.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigstack.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigsuspend.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigsuspend_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigtimedwait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigvec.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigwait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigwait_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sigwaitinfo.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_socket.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_socket_delegate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_socketpair.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_splice.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sstk.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_stack_snapshot_with_config.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_stat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_stat_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_statfs.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_statx.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_swapcontext.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_swapctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_swapoff.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_swapon.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_symlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_symlinkat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sync.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sync_file_range.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_syncfs.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_syscall.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sysctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sysctlbyname.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sysfs.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_sysinfo.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_syslog.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_system_override.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_tee.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_telemetry.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_terminate_with_payload.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_tfork.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_tgkill.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_create.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_exit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_kill.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_kill2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_self.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_set_name.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_suspend.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thr_wake.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thread_selfcounts.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thread_selfid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thread_selfusage.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_threxit.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thrkill.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thrsigdivert.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thrsleep.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_thrwakeup.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timer_create.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timer_delete.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timer_getoverrun.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timer_gettime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timer_settime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timerfd_create.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timerfd_gettime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_timerfd_settime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_times.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_tkill.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_truncate.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ulock_wait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ulock_wake.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_umask.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_umask_extended.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_umount2.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_uname.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_undelete.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_unlink.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_unlinkat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_unmount.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_unshare.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_unveil.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_userfaultfd.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_usrctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_ustat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_utime.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_utimensat.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_utimes.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_utrace.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_uuidgen.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_vadvise.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_vfork.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_vfs_purge.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_vhangup.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_vm_pressure_monitor.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_vmsplice.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_wait.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_wait4.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_wait4_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_wait6.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_waitevent.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_waitid.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_waitid_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_watchevent.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_work_interval_ctl.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_workq_kernreturn.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_workq_open.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_write.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_write_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_writev.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_writev_nocancel.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
__NR_yield.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
_ARG_MAX.S Make improvements 2022-04-28 09:57:07 -07:00
_LINUX_QUOTA_VERSION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_NAME_MAX.S Make improvements 2022-04-28 09:57:07 -07:00
_NSIG.S Make improvements 2022-04-28 09:57:07 -07:00
_PATH_MAX.S Make improvements 2022-04-28 09:57:07 -07:00
_posix.h Make improvements 2022-04-28 09:57:07 -07:00
_SEM_SEMUN_UNDEFINED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_XOPEN_ENH_I18N.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_XOPEN_IOV_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_XOPEN_NAME_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_XOPEN_PATH_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_XOPEN_SOURCE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_XOPEN_UNIX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_XOPEN_VERSION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ABORTED_COMMAND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ACCOUNTING.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ACCT_BYTEORDER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ACCT_COMM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ACK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ACORE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
af.h Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
AF_ALG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_APPLETALK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_ASH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_ATMPVC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_ATMSVC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_AX25.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_BLUETOOTH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_BRIDGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_CAIF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_CAN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_ECONET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_FILE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_IB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_IEEE802154.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_INET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_INET6.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_IPX.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
AF_IRDA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_ISDN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_IUCV.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_KCM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_KEY.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
AF_LINK.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
AF_LLC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_LOCAL.S Perform minor fixups 2021-03-13 19:40:04 -08:00
AF_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_MPLS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_NETBEUI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_NETLINK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_NETROM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_NFC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_PACKET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_PHONET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_PPPOX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_RDS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_ROSE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_ROUTE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_RXRPC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_SECURITY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_SNA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_TIPC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_UNIX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_UNSPEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_VSOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_WANPIPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AF_X25.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AFORK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AHZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AIO_ALLDONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AIO_CANCELED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AIO_NOTCANCELED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
alg.h Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ALG_SET_AEAD_ASSOCLEN.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ALG_SET_AEAD_AUTHSIZE.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ALG_SET_DRBG_ENTROPY.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ALG_SET_IV.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ALG_SET_KEY.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ALG_SET_OP.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ALLOW_MEDIUM_REMOVAL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ALT_DIGITS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AM_STR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AREGTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
arphrd.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
ASU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
at.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
AT_BASE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_BASE_PLATFORM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_CANARY.S Make improvements 2022-03-16 13:40:10 -07:00
AT_CANARYLEN.S Make improvements 2022-03-16 13:40:10 -07:00
AT_CLKTCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_DCACHEBSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_EACCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_EGID.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_EHDRFLAGS.S Make improvements 2022-03-16 13:40:10 -07:00
AT_EMPTY_PATH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_ENTRY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_EUID.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_EXECFD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_EXECFN.S Make improvements 2022-03-16 13:40:10 -07:00
AT_EXECPATH.S Make improvements 2022-03-16 13:40:10 -07:00
AT_FDCWD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_FLAGS.S Make improvements 2022-03-16 13:40:10 -07:00
AT_GID.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_HWCAP.S Improve system call polyfills 2021-03-08 10:07:02 -08:00
AT_HWCAP2.S Improve system call polyfills 2021-03-08 10:07:02 -08:00
AT_ICACHEBSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_NCPUS.S Make improvements 2022-03-16 13:40:10 -07:00
AT_NO_AUTOMOUNT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_NOTELF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_OSRELDATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_PAGESIZES.S Make improvements 2022-03-16 13:40:10 -07:00
AT_PAGESIZESLEN.S Make improvements 2022-03-16 13:40:10 -07:00
AT_PAGESZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_PHDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_PHENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_PHNUM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_PLATFORM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_RANDOM.S Make improvements 2022-03-16 13:40:10 -07:00
AT_REMOVEDIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_SECURE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_STACKBASE.S Make improvements 2022-03-16 13:40:10 -07:00
AT_STACKPROT.S Make improvements 2022-03-16 13:40:10 -07:00
AT_SYMLINK_FOLLOW.S Delete some junk constants 2022-04-11 23:49:53 -07:00
AT_SYMLINK_NOFOLLOW.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
AT_SYSINFO_EHDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_TIMEKEEP.S Make improvements 2022-03-16 13:40:10 -07:00
AT_UCACHEBSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
AT_UID.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ATF_NETMASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
audit.h Add seccomp bpf sandboxing to redbean 2022-04-18 08:54:42 -07:00
auxv.h Make improvements 2022-03-16 13:40:10 -07:00
AXSIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
B0.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B50.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B75.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B110.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B134.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B150.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B200.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B300.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B600.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B1200.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B1800.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B2400.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B4800.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B9600.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B19200.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B38400.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B57600.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B115200.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B230400.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B460800.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
B500000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B576000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B921600.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
B1000000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B1152000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B1500000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B2000000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B2500000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B3000000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B3500000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
B4000000.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
baud.h Undiamond Python headers 2021-08-12 14:07:40 -07:00
BC_BASE_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BC_DIM_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BC_SCALE_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BC_STRING_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BITSPERBYTE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BLANK_CHECK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BOOT_TIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BRKINT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BS0.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BS1.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BSDLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
BUS_ADRALN.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
BUS_ADRERR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
BUS_MCEERR_AO.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
BUS_MCEERR_AR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
BUS_OBJERR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
BUS_OOMERR.S Improve signals and memory protection 2022-04-12 22:11:00 -07:00
BUSY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
c.h Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
CANBSIZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CBAUD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CBAUDEX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CDISCARD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CEOT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CERASE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CHANGE_DEFINITION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CHARBITS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CHARCLASS_NAME_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CHECK_CONDITION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CHRTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CIBAUD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CKILL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CLD_CONTINUED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
CLD_DUMPED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
CLD_EXITED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
CLD_KILLED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
CLD_STOPPED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
CLD_TRAPPED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
CLNEXT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CLOCAL.S Make improvements 2022-04-24 10:06:05 -07:00
clock.h Make clock_gettime() faster on FreeBSD 2022-06-11 00:05:06 -07:00
CLOCK_BOOTTIME.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_BOOTTIME_ALARM.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_MONOTONIC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CLOCK_MONOTONIC_COARSE.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_MONOTONIC_FAST.S Make clock_gettime() faster on FreeBSD 2022-06-11 00:05:06 -07:00
CLOCK_MONOTONIC_PRECISE.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_MONOTONIC_RAW.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_PROCESS_CPUTIME_ID.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_PROF.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_REALTIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CLOCK_REALTIME_ALARM.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_REALTIME_COARSE.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_REALTIME_FAST.S Make clock_gettime() faster on FreeBSD 2022-06-11 00:05:06 -07:00
CLOCK_REALTIME_PRECISE.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_SECOND.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_TAI.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_THREAD_CPUTIME_ID.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_UPTIME.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_UPTIME_FAST.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCK_UPTIME_PRECISE.S Improve system calls 2022-07-08 06:42:03 -07:00
CLOCKS_PER_SEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
clone.h Make pledge() and unveil() work amazingly 2022-07-19 21:33:49 -07:00
CLONE_VM.S Make improvements 2022-04-07 00:15:35 -07:00
CMIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CMSPAR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CODESET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
COLL_WEIGHTS_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
COMMAND_COMPLETE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
COMMAND_TERMINATED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
COMPLETE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CONDITION_GOOD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CONTINUE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CONTTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
COPY_ABORTED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
COPY_VERIFY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CPU_SETSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CQUIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CR0.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
CR1.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
CR2.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
CR3.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
CRDLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CREAD.S Make improvements 2022-04-24 10:06:05 -07:00
CREPRINT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CRNCYSTR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CRPRNT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CRTSCTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CS5.S Make improvements 2022-04-24 10:06:05 -07:00
CS6.S Make improvements 2022-04-24 10:06:05 -07:00
CS7.S Make improvements 2022-04-24 10:06:05 -07:00
CS8.S Make improvements 2022-04-24 10:06:05 -07:00
CSIZE.S Make improvements 2022-04-24 10:06:05 -07:00
CSTART.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
CSTATUS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
CSTOP.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
CSTOPB.S Make improvements 2022-04-24 10:06:05 -07:00
CTIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
D_FMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
D_T_FMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DATA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DATA_PROTECT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DEAD_PROCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DELAYTIMER_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DEV_BSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DIRTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DMAXEXP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DMINEXP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DOUBLEBITS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
dt.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
DT_BLK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DT_CHR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DT_DIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DT_FIFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DT_LNK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DT_REG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DT_SOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
DT_UNKNOWN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
E2BIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EACCES.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EADDRINUSE.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EADDRNOTAVAIL.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EADV.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EAFNOSUPPORT.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EAGAIN.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EALREADY.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EAUTH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EBADARCH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EBADE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EBADEXEC.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EBADF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EBADFD.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
EBADMACHO.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EBADMSG.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
EBADR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EBADRPC.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EBADRQC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EBADSLT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EBUSY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECANCELED.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
ECHILD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHOCTL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHOE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHOK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHOKE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHONL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHOPRT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ECHRNG.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ECOMM.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ECONNABORTED.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ECONNREFUSED.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ECONNRESET.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EDEADLK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EDESTADDRREQ.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EDEVERR.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EDOM.S Make gdtoa less tunable (#104) 2021-03-07 16:41:59 -08:00
EDOTDOT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EDQUOT.S Fix bugs and add security features to redbean 2022-04-18 00:01:26 -07:00
EEXIST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EFAULT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EFBIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EFD_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EFD_NONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EFD_SEMAPHORE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EFTYPE.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EHOSTDOWN.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EHOSTUNREACH.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EHWPOISON.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EIDRM.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
EILSEQ.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
EINPROGRESS.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EINTR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EINVAL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EIO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EISCONN.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EISDIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EISNAM.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EKEYEXPIRED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EKEYREJECTED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EKEYREVOKED.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EL2HLT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EL2NSYNC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EL3HLT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EL3RST.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ELF_NGREG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ELF_PRARGSZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ELIBACC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ELIBBAD.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ELIBEXEC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ELIBMAX.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ELIBSCN.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ELNRNG.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ELOOP.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EM_ALTERA_NIOS2.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EM_LATTICEMICO32.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EMEDIUMTYPE.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
EMFILE.S Fix bugs and add security features to redbean 2022-04-18 00:01:26 -07:00
EMLINK.S Fix bugs and add security features to redbean 2022-04-18 00:01:26 -07:00
EMPTY.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
EMSGSIZE.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EMULTIHOP.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ENAMETOOLONG.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENAVAIL.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ENDRUNDISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
ENEEDAUTH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
ENETDOWN.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENETRESET.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENETUNREACH.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENFILE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOANO.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ENOATTR.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
ENOBUFS.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENOCSI.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ENODATA.S Improve synchronization 2022-04-15 15:31:55 -07:00
ENODEV.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOKEY.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ENOLCK.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
ENOLINK.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ENOMEDIUM.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ENOMEM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOMSG.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
ENONET.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
ENOPKG.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ENOPOLICY.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
ENOPROTOOPT.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENOSPC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOSR.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ENOSTR.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ENOSYS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOTBLK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOTCONN.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENOTDIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOTEMPTY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOTNAM.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ENOTRECOVERABLE.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
ENOTSOCK.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENOTSUP.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ENOTTY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ENOTUNIQ.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ENXIO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EOPNOTSUPP.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EOVERFLOW.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
EOWNERDEAD.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
EPERM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPFNOSUPPORT.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EPIPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
epoll.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
EPOLL_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLL_CTL_ADD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLL_CTL_DEL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLL_CTL_MOD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLERR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLEXCLUSIVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLHUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLMSG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLONESHOT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLOUT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLPRI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLRDBAND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLRDHUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLRDNORM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLWAKEUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLWRBAND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPOLLWRNORM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EPROCLIM.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EPROCUNAVAIL.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EPROGMISMATCH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EPROGUNAVAIL.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
EPROTO.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
EPROTONOSUPPORT.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EPROTOTYPE.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EPWROFF.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
ERA.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ERA_D_FMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ERA_D_T_FMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ERA_T_FMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ERANGE.S Make gdtoa less tunable (#104) 2021-03-07 16:41:59 -08:00
EREMCHG.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EREMOTE.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EREMOTEIO.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ERESTART.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ERFKILL.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EROFS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ERPCMISMATCH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
ESHLIBVERS.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
ESHUTDOWN.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ESOCKTNOSUPPORT.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ESPIPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ESRCH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ESRMNT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ESTALE.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ESTRPIPE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ETIME.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ETIMEDOUT.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ETOOMANYREFS.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ETXTBSY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EUCLEAN.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EUNATCH.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
EUSERS.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
EWOULDBLOCK.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
ex.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
EX__BASE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX__MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_CANTCREAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_CONFIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_DATAERR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_IOERR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_NOHOST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_NOINPUT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_NOPERM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_NOUSER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_OK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_OSERR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_OSFILE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_PROTOCOL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_SOFTWARE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_TEMPFAIL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_UNAVAILABLE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EX_USAGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EXDEV.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EXFULL.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
exit.h Make improvements 2022-04-27 05:39:39 -07:00
EXPR_NEST_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
EXTA.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
EXTB.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
EXTPROC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
f.h Get more Python tests passing (#141) 2021-08-16 15:26:31 -07:00
F_DUPFD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_DUPFD_CLOEXEC.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
F_FULLFSYNC.S Get more Python tests passing (#141) 2021-08-16 15:26:31 -07:00
F_GETFD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_GETFL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_GETLEASE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_GETLK.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
F_GETLK64.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
F_GETOWN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_GETOWN_EX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_GETPIPE_SZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_GETSIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_LOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_MAXFD.S Improve Libc by making Python work even better 2021-08-18 22:16:23 -07:00
F_NOCACHE.S Get more Python tests passing (#141) 2021-08-16 15:26:31 -07:00
F_NOTIFY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_OFD_GETLK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_OFD_SETLK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_OFD_SETLKW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_OK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_RDLCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_SETFD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_SETFL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_SETLEASE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_SETLK.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
F_SETLK64.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
F_SETLKW.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
F_SETLKW64.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
F_SETOWN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_SETOWN_EX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_SETPIPE_SZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_SETSIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_TEST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_TLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_ULOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
F_UNLCK.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
F_WRLCK.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
falloc.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
FALLOC_FL_COLLAPSE_RANGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FALLOC_FL_INSERT_RANGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FALLOC_FL_KEEP_SIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FALLOC_FL_NO_HIDE_STALE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FALLOC_FL_PUNCH_HOLE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FALLOC_FL_UNSHARE_RANGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FALLOC_FL_ZERO_RANGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fan.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
FAN_ACCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ACCESS_PERM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ALL_CLASS_BITS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ALL_EVENTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ALL_INIT_FLAGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ALL_MARK_FLAGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ALL_OUTGOING_EVENTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ALL_PERM_EVENTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ALLOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_CLASS_CONTENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_CLASS_NOTIF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_CLASS_PRE_CONTENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_CLOSE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_CLOSE_NOWRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_CLOSE_WRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_DENY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_EVENT_METADATA_LEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_EVENT_ON_CHILD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_ADD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_DONT_FOLLOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_FLUSH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_IGNORED_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_IGNORED_SURV_MODIFY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_MOUNT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_ONLYDIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MARK_REMOVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_MODIFY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_NOFD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_NONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_ONDIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_OPEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_OPEN_PERM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_Q_OVERFLOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_UNLIMITED_MARKS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAN_UNLIMITED_QUEUE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FANOTIFY_METADATA_VERSION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FAPPEND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FASYNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fd.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
FD_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FD_SETSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FF0.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FF1.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FFDLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FFSYNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FIFOTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FILENAME_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fileno.h Initial import 2020-06-15 07:18:57 -07:00
fio.h Undiamond Python headers 2021-08-12 14:07:40 -07:00
FIOASYNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FIOCLEX.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
FIOGETOWN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FIONBIO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FIONCLEX.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
FIONREAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FIOSETOWN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FLUSHO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FMAXEXP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FMINEXP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FNDELAY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FNM_NOSYS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FNONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FOPEN_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FORMAT_UNIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FPE_FLTDIV.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FPE_FLTINV.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FPE_FLTOVF.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FPE_FLTRES.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FPE_FLTSUB.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FPE_FLTUND.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FPE_INTDIV.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FPE_INTOVF.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
FREAD.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
FSETLOCKING_BYCALLER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FSETLOCKING_INTERNAL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
FSETLOCKING_QUERY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
futex.h Make improvements 2022-05-28 00:28:09 -07:00
FUTEX_PRIVATE_FLAG.S Make improvements 2022-05-28 00:28:09 -07:00
FUTEX_REQUEUE.S Make improvements 2022-05-28 00:28:09 -07:00
FUTEX_WAIT.S Make improvements 2022-05-28 00:28:09 -07:00
FUTEX_WAKE.S Make improvements 2022-05-28 00:28:09 -07:00
FWRITE.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
grnd.h Make numerous improvements 2021-09-28 01:52:34 -07:00
GRPQUOTA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
H4DISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
HARDWARE_ERROR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
HEAD_OF_QUEUE_TAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
HOST_NAME_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
HUPCL.S Make improvements 2022-04-24 10:06:05 -07:00
ICANON.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
icmp6.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
ICMP6_DST_UNREACH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_DST_UNREACH_ADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_DST_UNREACH_ADMIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_DST_UNREACH_BEYONDSCOPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_DST_UNREACH_NOPORT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_DST_UNREACH_NOROUTE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_ECHO_REPLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_ECHO_REQUEST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_FILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_INFOMSG_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_PACKET_TOO_BIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_PARAM_PROB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_PARAMPROB_HEADER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_PARAMPROB_NEXTHEADER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_PARAMPROB_OPTION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_ROUTER_RENUMBERING.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_FLAGS_FORCEAPPLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_FLAGS_PREVDONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_FLAGS_REQRESULT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_FLAGS_SPECSITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_FLAGS_TEST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_PCOUSE_RAFLAGS_AUTO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_PCOUSE_RAFLAGS_ONLINK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_RESULT_FLAGS_FORBIDDEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_RR_RESULT_FLAGS_OOB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_TIME_EXCEED_REASSEMBLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_TIME_EXCEED_TRANSIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICMP6_TIME_EXCEEDED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ICRNL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IEXTEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IF_NAMESIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
iff.h Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IFF_ALLMULTI.S Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IFF_AUTOMEDIA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_BROADCAST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_DEBUG.S Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IFF_DYNAMIC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_LOOPBACK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_MASTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_MULTICAST.S Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IFF_NOARP.S Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IFF_NOTRAILERS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_POINTOPOINT.S Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IFF_PORTSEL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_PROMISC.S Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IFF_RUNNING.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_SLAVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IFF_UP.S Add test for ioctl(SIOCGIFCONF) and polyfill on BSDs 2021-06-25 18:44:04 -07:00
IGMP_MEMBERSHIP_QUERY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IGNBRK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IGNCR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IGNPAR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ILL_BADSTK.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILL_COPROC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILL_ILLADR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILL_ILLOPC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILL_ILLOPN.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILL_ILLTRP.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILL_PRVOPC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILL_PRVREG.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
ILLEGAL_REQUEST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IMAXBEL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
in.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
IN_ACCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_ALL_EVENTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_ATTRIB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_CLOSE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_CLOSE_NOWRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_CLOSE_WRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_CREATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_DELETE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_DELETE_SELF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_DONT_FOLLOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_EXCL_UNLINK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_IGNORED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_ISDIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_LOOPBACKNET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_MASK_ADD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_MODIFY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_MOVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_MOVE_SELF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_MOVED_FROM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_MOVED_TO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_NONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_ONESHOT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_ONLYDIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_OPEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_Q_OVERFLOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IN_UNMOUNT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
inaddr.h Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
INET6_ADDRSTRLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INET_ADDRSTRLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INIT_PROCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INITIATE_RECOVERY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INITIATOR_ERROR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INLCR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INPCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INQUIRY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INTERMEDIATE_C_GOOD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
INTERMEDIATE_GOOD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ioprio.h Improve upon the new pledge command 2022-07-14 04:39:45 -07:00
iov.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
IOV_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ip.h Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP6F_MORE_FRAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP6F_OFF_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP6F_RESERVED_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_ADD_MEMBERSHIP.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP_ADD_SOURCE_MEMBERSHIP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_BIND_ADDRESS_NO_PORT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_BLOCK_SOURCE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_CHECKSUM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_DEFAULT_MULTICAST_LOOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_DEFAULT_MULTICAST_TTL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_DROP_MEMBERSHIP.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP_DROP_SOURCE_MEMBERSHIP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_FREEBIND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_HDRINCL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_IPSEC_POLICY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_MAX_MEMBERSHIPS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_MINTTL.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
IP_MSFILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_MTU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_MTU_DISCOVER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_MULTICAST_ALL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_MULTICAST_IF.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP_MULTICAST_LOOP.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP_MULTICAST_TTL.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP_NODEFRAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_OPTIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_ORIGDSTADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PASSSEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PKTINFO.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
IP_PKTOPTIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PMTUDISC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PMTUDISC_DO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PMTUDISC_DONT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PMTUDISC_INTERFACE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PMTUDISC_OMIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PMTUDISC_PROBE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_PMTUDISC_WANT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_RECVDSTADDR.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP_RECVERR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_RECVOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_RECVORIGDSTADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_RECVRETOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_RECVTOS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_RECVTTL.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
IP_RETOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_ROUTER_ALERT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_TOS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_TRANSPARENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_TTL.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IP_UNBLOCK_SOURCE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_UNICAST_IF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IP_XFRM_POLICY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ipport.h Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
IPPORT_RESERVED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPORT_USERRESERVED.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
ipproto.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
IPPROTO_AH.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_BEETPH.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_COMP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_DCCP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_DSTOPTS.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_EGP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_ENCAP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_ESP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_FRAGMENT.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_GRE.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_HOPOPTS.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_ICMP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_ICMPV6.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_IDP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_IGMP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_IP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_IPIP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_IPV6.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_MH.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_MPLS.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_MTP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_NONE.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_PIM.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_PUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_RAW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_ROUTING.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_RSVP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_SCTP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_TCP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_TP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
IPPROTO_UDP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPPROTO_UDPLITE.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
ipv6.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
IPV6_2292DSTOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_2292HOPLIMIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_2292HOPOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_2292PKTINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_2292PKTOPTIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_2292RTHDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_ADD_MEMBERSHIP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_ADDRFORM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_AUTHHDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_AUTOFLOWLABEL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_CHECKSUM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_DONTFRAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_DROP_MEMBERSHIP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_DSTOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_HDRINCL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_HOPLIMIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_HOPOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_IPSEC_POLICY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_JOIN_ANYCAST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_JOIN_GROUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_LEAVE_ANYCAST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_LEAVE_GROUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_MINHOPCOUNT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_MTU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_MTU_DISCOVER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_MULTICAST_HOPS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_MULTICAST_IF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_MULTICAST_LOOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_NEXTHOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_ORIGDSTADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PATHMTU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PKTINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PMTUDISC_DO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PMTUDISC_DONT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PMTUDISC_INTERFACE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PMTUDISC_OMIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PMTUDISC_PROBE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_PMTUDISC_WANT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVDSTOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVERR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVHOPLIMIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVHOPOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVORIGDSTADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVPATHMTU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVPKTINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVRTHDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RECVTCLASS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_ROUTER_ALERT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RTHDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RTHDR_LOOSE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RTHDR_STRICT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RTHDR_TYPE_0.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RTHDRDSTOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RXDSTOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_RXHOPOPTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_TCLASS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_UNICAST_HOPS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_V6ONLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IPV6_XFRM_POLICY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ISIG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ISTRIP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
itimer.h Improve system calls 2022-07-08 06:42:03 -07:00
IUCLC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
IUTF8.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IXANY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IXOFF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
IXON.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
L_INCR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
L_SET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
L_XTND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
limits.h Make improvements 2022-04-28 09:57:07 -07:00
LINE_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LINKED_CMD_COMPLETE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LINKED_FLG_CMD_COMPLETE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lio.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
LIO_NOP.S Improve system calls 2022-07-08 06:42:03 -07:00
LIO_NOWAIT.S Improve system calls 2022-07-08 06:42:03 -07:00
LIO_READ.S Improve system calls 2022-07-08 06:42:03 -07:00
LIO_WAIT.S Improve system calls 2022-07-08 06:42:03 -07:00
LIO_WRITE.S Improve system calls 2022-07-08 06:42:03 -07:00
LNKTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LOCAL_PEERCRED.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
lock.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
LOCK_EX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LOCK_NB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LOCK_SH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LOCK_UN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LOCK_UNLOCK_CACHE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
log.h Add seccomp bpf sandboxing to redbean 2022-04-18 08:54:42 -07:00
LOGIN_NAME_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
LOGIN_PROCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
madv.h Improve synchronization 2022-04-15 15:31:55 -07:00
MADV_DODUMP.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_DOFORK.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_DONTDUMP.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_DONTFORK.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_DONTNEED.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_FREE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MADV_HUGEPAGE.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_HWPOISON.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_MERGEABLE.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_NOHUGEPAGE.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_NORMAL.S Improve synchronization 2022-04-15 15:31:55 -07:00
MADV_RANDOM.S Improve synchronization 2022-04-15 15:31:55 -07:00
MADV_REMOVE.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_SEQUENTIAL.S Improve synchronization 2022-04-15 15:31:55 -07:00
MADV_UNMERGEABLE.S Make improvements 2022-03-16 13:40:10 -07:00
MADV_WILLNEED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
map.h Strengthen the pledge() polyfill 2022-06-27 13:02:17 -07:00
MAP_32BIT.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_ANON.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_ANONYMOUS.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_CONCEAL.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_DENYWRITE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_EXECUTABLE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_FILE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_FIXED.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_FIXED_NOREPLACE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_GROWSDOWN.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_HASSEMAPHORE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_HUGE_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAP_HUGE_SHIFT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAP_HUGETLB.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_INHERIT.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_LOCKED.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_NOCORE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_NONBLOCK.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_NORESERVE.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_NOSYNC.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_POPULATE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MAP_PRIVATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAP_SHARED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAP_SHARED_VALIDATE.S Strengthen the pledge() polyfill 2022-06-27 13:02:17 -07:00
MAP_STACK.S Make improvements 2022-05-12 06:45:36 -07:00
MAP_SYNC.S Strengthen the pledge() polyfill 2022-06-27 13:02:17 -07:00
MAP_TYPE.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
MATH_ERREXCEPT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MATH_ERRNO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAX_DQ_TIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAX_HANDLE_SZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAX_IQ_TIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAXHOSTNAMELEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAXNAMLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAXPATHLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAXQUOTAS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MAXSYMLINKS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mcast.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
MCAST_BLOCK_SOURCE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_EXCLUDE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_INCLUDE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_JOIN_GROUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_JOIN_SOURCE_GROUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_LEAVE_GROUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_LEAVE_SOURCE_GROUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_MSFILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCAST_UNBLOCK_SOURCE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCL_CURRENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCL_FUTURE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MCL_ONFAULT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MEDIUM_ERROR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MEDIUM_SCAN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MESSAGE_REJECT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mfd.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
MFD_ALLOW_SEALING.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MFD_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MINSIGSTKSZ.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
MISCOMPARE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MLD_LISTENER_QUERY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MLD_LISTENER_REDUCTION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MLD_LISTENER_REPORT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mlock.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
MNT_ASYNC.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_BYFSID.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_DETACH.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_EXPIRE.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_FORCE.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_NOATIME.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_NOCLUSTERR.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_NOCLUSTERW.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_NODEV.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_NOEXEC.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_NOSUID.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_RDONLY.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_RELATIME.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_RELOAD.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_SNAPSHOT.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_STRICTATIME.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_SUIDDIR.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_SYNCHRONOUS.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MNT_UPDATE.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
modem.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
mount.h Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MOVE_MEDIUM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MQ_PRIO_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mremap.h Improve memory safety 2021-10-13 17:27:13 -07:00
MREMAP_FIXED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MREMAP_MAYMOVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_ACTIVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_ASYNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_BIND.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_DIRSYNC.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_I_VERSION.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_INVALIDATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_KERNMOUNT.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_LAZYTIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_MANDLOCK.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_MGC_MSK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_MGC_VAL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_MOVE.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_NOATIME.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_NODEV.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_NODIRATIME.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_NOEXEC.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_NOSUID.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_NOUSER.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_POSIXACL.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_PRIVATE.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_RDONLY.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_REC.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_RELATIME.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_REMOUNT.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_RMT_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_SHARED.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_SILENT.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_SLAVE.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_STRICTATIME.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_SYNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MS_SYNCHRONOUS.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
MS_UNBINDABLE.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
msg.h Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
MSG_BATCH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_BCAST.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
MSG_CMSG_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_CONFIRM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_CTRUNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_DONTROUTE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_DONTWAIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_EOF.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
MSG_EOR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_ERRQUEUE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_EXCEPT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_FASTOPEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_FIN.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
MSG_INFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_MCAST.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
MSG_MORE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_NOERROR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_NOSIGNAL.S Strengthen the pledge() polyfill 2022-06-27 13:02:17 -07:00
MSG_NOTIFICATION.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
MSG_OOB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_PARITY_ERROR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_PEEK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_PROXY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_RST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_STAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_SYN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_TRUNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_WAITALL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MSG_WAITFORONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msync.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
MTCOMPRESSION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTERASE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTFSFM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTLOAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTMKPART.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTRAS1.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTRAS3.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTRETEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTSETBLK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTSETDENSITY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTSETDRVBUFFER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTSETPART.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTUNLOAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
MTUNLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NBBY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NCARGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NCCS.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
nd.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
ND_NA_FLAG_OVERRIDE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_NA_FLAG_ROUTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_NA_FLAG_SOLICITED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_NEIGHBOR_ADVERT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_NEIGHBOR_SOLICIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_RA_FLAG_HOME_AGENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_RA_FLAG_MANAGED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_RA_FLAG_OTHER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_REDIRECT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_ROUTER_ADVERT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ND_ROUTER_SOLICIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NETGRAPHDISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
NEW_TIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NFDBITS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NGREG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NGROUPS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NGROUPS_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL0.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
NL1.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
NL2.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
NL3.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
NL_ARGMAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL_CAT_LOCALE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL_LANGMAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL_MSGMAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL_NMAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL_SETD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL_SETMAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NL_TEXTMAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NLDLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NMEADISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
NO_ADDRESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NO_SENSE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NOEXPR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NOFILE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NOFLSH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NOGROUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NOSTR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nr.h Get threads working on all platforms 2022-05-13 03:59:09 -07:00
NR_DQHASH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
NR_DQUOTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nrlinux.h Write some tests for unveil() 2022-07-18 02:27:26 -07:00
NZERO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
o.h Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_ACCMODE.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_APPEND.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_ASYNC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_CLOEXEC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_COMPRESSED.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_CREAT.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_DIRECT.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_DIRECTORY.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_DSYNC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_EXCL.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_EXEC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_EXLOCK.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
O_INDEXED.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_LARGEFILE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
O_NDELAY.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_NOATIME.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_NOCTTY.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_NOFOLLOW.S Fix bugs and add security features to redbean 2022-04-18 00:01:26 -07:00
O_NOFOLLOW_ANY.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
O_NONBLOCK.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_PATH.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_RANDOM.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_RDONLY.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_RDWR.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_RSYNC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_SEARCH.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
O_SEQUENTIAL.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_SHLOCK.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
O_SPARSE.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_SYNC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_TMPFILE.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
O_TRUNC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_TTY_INIT.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
O_VERIFY.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
O_WRONLY.S Get Redbean fork() working on the New Technology 2022-03-20 08:01:14 -07:00
OCRNL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
OFDEL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
OFILL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ok.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
OLCUC.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
OLD_TIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ONLCR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ONLRET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ONOCR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
OPOST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ORDERED_QUEUE_TAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ORIG_RAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PARENB.S Make improvements 2022-04-24 10:06:05 -07:00
PARMRK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PARODD.S Make improvements 2022-04-24 10:06:05 -07:00
PENDIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PERSISTENT_RESERVE_IN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PERSISTENT_RESERVE_OUT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
personality.h Fix some issues and do some code cleanup 2022-05-23 10:15:53 -07:00
pf.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
PF_ALG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_APPLETALK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_ASH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_ATMPVC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_ATMSVC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_AX25.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_BLUETOOTH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_BRIDGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_CAIF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_CAN.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
PF_ECONET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_FILE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_IB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_IEEE802154.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_INET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_INET6.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_IPX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_IRDA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_ISDN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_IUCV.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_KCM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_KEY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_LLC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_LOCAL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_MPLS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_NETBEUI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_NETLINK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_NETROM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_NFC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_PACKET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_PHONET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_PPPOX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_RDS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_ROSE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_ROUTE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_RXRPC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_SECURITY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_SNA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_TIPC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_UNIX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_UNSPEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_VSOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_WANPIPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PF_X25.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PIPE_BUF.S Make improvements 2022-04-28 09:57:07 -07:00
PM_STR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
poll.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
POLL_ERR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
POLL_HUP.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
POLL_IN.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
POLL_MSG.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
POLL_OUT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
POLL_PRI.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
POLLERR.S Add support for symbol table in .com files 2022-03-23 06:34:46 -07:00
POLLHUP.S Add support for symbol table in .com files 2022-03-23 06:34:46 -07:00
POLLIN.S Add support for symbol table in .com files 2022-03-23 06:34:46 -07:00
POLLNVAL.S Add support for symbol table in .com files 2022-03-23 06:34:46 -07:00
POLLOUT.S Add support for symbol table in .com files 2022-03-23 06:34:46 -07:00
POLLPRI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
POLLRDBAND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
POLLRDHUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
POLLRDNORM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
POLLWRBAND.S Add support for symbol table in .com files 2022-03-23 06:34:46 -07:00
POLLWRNORM.S Add support for symbol table in .com files 2022-03-23 06:34:46 -07:00
posix.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
POSIX_FADV_DONTNEED.S Make improvements 2022-03-16 13:40:10 -07:00
POSIX_FADV_NOREUSE.S Make improvements 2022-03-16 13:40:10 -07:00
POSIX_FADV_NORMAL.S Improve synchronization 2022-04-15 15:31:55 -07:00
POSIX_FADV_RANDOM.S Improve synchronization 2022-04-15 15:31:55 -07:00
POSIX_FADV_SEQUENTIAL.S Improve synchronization 2022-04-15 15:31:55 -07:00
POSIX_FADV_WILLNEED.S Make improvements 2022-03-16 13:40:10 -07:00
POSIX_MADV_DONTNEED.S Make improvements 2022-03-16 13:40:10 -07:00
POSIX_MADV_NORMAL.S Improve synchronization 2022-04-15 15:31:55 -07:00
POSIX_MADV_RANDOM.S Improve synchronization 2022-04-15 15:31:55 -07:00
POSIX_MADV_SEQUENTIAL.S Improve synchronization 2022-04-15 15:31:55 -07:00
POSIX_MADV_WILLNEED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PPPDISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
pr.h Add pledge.com for launching commands in a sandbox 2022-07-13 04:31:46 -07:00
PRE_FETCH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PRELIM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
prio.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
PRIO_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PRIO_MIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PRIO_PGRP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PRIO_PROCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PRIO_USER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
prot.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
PROT_EXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PROT_GROWSDOWN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PROT_GROWSUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PROT_NONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PROT_READ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PROT_WRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pt.h Fix XNU / FreeBSD / OpenBSD / RHEL5 / NT bugs 2021-01-25 18:31:17 -08:00
PTMGET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ptrace.h Fix bugs with recent change 2022-04-16 10:40:23 -07:00
PTRACE_ATTACH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_CONT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_DETACH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_EVENT_CLONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_EVENT_EXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_EVENT_EXIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_EVENT_FORK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_EVENT_SECCOMP.S Fix bugs with recent change 2022-04-16 10:40:23 -07:00
PTRACE_EVENT_STOP.S Fix bugs with recent change 2022-04-16 10:40:23 -07:00
PTRACE_EVENT_VFORK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_EVENT_VFORK_DONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_GETEVENTMSG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_GETFPREGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_GETFPXREGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_GETREGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_GETREGSET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_GETSIGINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_GETSIGMASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_INTERRUPT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_KILL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_LISTEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_TRACECLONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_TRACEEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_TRACEEXIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_TRACEFORK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_TRACESECCOMP.S Fix bugs with recent change 2022-04-16 10:40:23 -07:00
PTRACE_O_TRACESYSGOOD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_TRACEVFORK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_O_TRACEVFORKDONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_PEEKDATA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_PEEKSIGINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_PEEKTEXT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_PEEKUSER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_POKEDATA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_POKETEXT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_POKEUSER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SECCOMP_GET_FILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SEIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SETFPREGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SETFPXREGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SETOPTIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SETREGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SETREGSET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SETSIGINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SETSIGMASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SINGLESTEP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_SYSCALL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
PTRACE_TRACEME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pty.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
Q_GETFMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
Q_GETINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
Q_GETQUOTA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
Q_QUOTAOFF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
Q_QUOTAON.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
Q_SETINFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
Q_SETQUOTA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
Q_SYNC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
QUEUE_FULL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
R_OK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RADIXCHAR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RB_AUTOBOOT.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
RB_DISABLE_CAD.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
RB_ENABLE_CAD.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
RB_HALT.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
RB_HALT_SYSTEM.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
RB_KEXEC.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
RB_NOSYNC.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
RB_POWER_OFF.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
RB_POWERDOWN.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
RB_POWEROFF.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
RB_SW_SUSPEND.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
RE_DUP_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
read.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
REASSIGN_BLOCKS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
reboot.h Add more documentation to redbean 2022-04-21 04:01:42 -07:00
RECEIVE_DIAGNOSTIC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RECOVER_BUFFERED_DATA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RECOVERED_ERROR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
REGTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RELEASE_RECOVERY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
REQUEST_SENSE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RES_PRF_CLASS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RESERVATION_CONFLICT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RESERVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RESERVE_10.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RESTORE_POINTERS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
REZERO_UNIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RHF_GUARANTEE_START_INIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RHF_NO_LIBRARY_REPLACEMENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rlim.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
RLIM_INFINITY.S Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
RLIM_NLIMITS.S Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
RLIM_SAVED_CUR.S Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
RLIM_SAVED_MAX.S Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
rlimit.h Undiamond Python headers 2021-08-12 14:07:40 -07:00
RLIMIT_AS.S Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
RLIMIT_CORE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_CPU.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_DATA.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_FSIZE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_LOCKS.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_MEMLOCK.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_MSGQUEUE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_NICE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_NOFILE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_NPROC.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_NPTS.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
RLIMIT_RSS.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_RTPRIO.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_RTTIME.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
RLIMIT_SBSIZE.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
RLIMIT_SIGPENDING.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_STACK.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RLIMIT_SWAP.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
RLIMIT_VMEM.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
RPM_PCO_ADD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RPM_PCO_CHANGE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RPM_PCO_SETGLOBAL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RRQ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RTCF_DOREDIRECT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RTF_NOFORWARD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RTF_NOPMTUDISC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RUN_LVL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rusage.h Undiamond Python headers 2021-08-12 14:07:40 -07:00
RUSAGE_BOTH.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
RUSAGE_CHILDREN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RUSAGE_SELF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
RUSAGE_THREAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
s.h Reduce makefile dependencies by 10% 2022-06-08 20:01:28 -07:00
sa.h Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_NOCLDSTOP.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_NOCLDWAIT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_NODEFER.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_NOMASK.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_ONESHOT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_ONSTACK.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_RESETHAND.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_RESTART.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SA_SIGINFO.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SARMAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SAVE_POINTERS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sched.h Improve system calls 2022-07-08 06:42:03 -07:00
SCHED_BATCH.S Improve system calls 2022-07-08 06:42:03 -07:00
SCHED_DEADLINE.S Improve system calls 2022-07-08 06:42:03 -07:00
SCHED_FIFO.S Improve system calls 2022-07-08 06:42:03 -07:00
SCHED_IDLE.S Improve system calls 2022-07-08 06:42:03 -07:00
SCHED_OTHER.S Improve system calls 2022-07-08 06:42:03 -07:00
SCHED_RESET_ON_FORK.S Improve system calls 2022-07-08 06:42:03 -07:00
SCHED_RR.S Improve system calls 2022-07-08 06:42:03 -07:00
scm.h Improve system calls 2022-07-08 06:42:03 -07:00
SCM_CREDENTIALS.S Improve system calls 2022-07-08 06:42:03 -07:00
SCM_RIGHTS.S Improve system calls 2022-07-08 06:42:03 -07:00
SCM_TIMESTAMP.S Improve system calls 2022-07-08 06:42:03 -07:00
SCM_TIMESTAMPING.S Improve system calls 2022-07-08 06:42:03 -07:00
SCM_TIMESTAMPNS.S Improve system calls 2022-07-08 06:42:03 -07:00
SCM_WIFI_STATUS.S Improve system calls 2022-07-08 06:42:03 -07:00
SEGSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SEGV_ACCERR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SEGV_MAPERR.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SEGV_PKUERR.S Improve signals and memory protection 2022-04-12 22:11:00 -07:00
SEM_INFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SEM_STAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SEM_VALUE_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SEND_DIAGNOSTIC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SEND_VOLUME_TAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SET_LIMITS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SET_WINDOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sf.h Undiamond Python headers 2021-08-12 14:07:40 -07:00
SF_MNOWAIT.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
SF_NODISKIO.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
SF_SYNC.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
SFD_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SFD_NONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shm.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
SHM_DEST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_EXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_HUGETLB.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_INFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_LOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_LOCKED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_NORESERVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_R.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_RDONLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_REMAP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_RND.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_STAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_UNLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHM_W.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHMLBA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shut.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
SHUT_RD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHUT_RDWR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SHUT_WR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SI_ASYNCIO.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_ASYNCNL.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_KERNEL.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_MESGQ.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_NOINFO.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_QUEUE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_TIMER.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_TKILL.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SI_USER.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
sicode.h Make more fixes and improvements 2022-04-21 09:18:45 -07:00
sig.h Make signal handling work well across platforms 2022-03-25 07:28:57 -07:00
SIG_ATOMIC_MIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIG_BLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIG_SETMASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIG_UNBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGABRT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGALRM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGBUS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGCHLD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGCONT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGEMT.S Add SSL to redbean 2021-06-24 13:20:50 -07:00
SIGEV_NONE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGEV_SIGNAL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGEV_THREAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGFPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGHUP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGILL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGINFO.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
SIGINT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGIO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGIOT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SIGKILL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGPIPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGPOLL.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SIGPROF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGPWR.S Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
SIGQUIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGRTMAX.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
SIGRTMIN.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
SIGSEGV.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGSTKFLT.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
SIGSTKSZ.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
SIGSTOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGSYS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGTERM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGTRAP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGTSTP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGTTIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGTTOU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGURG.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
SIGUSR1.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGUSR2.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGVTALRM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGWINCH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGXCPU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIGXFSZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIMPLE_QUEUE_TAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sio.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
SIOCADDDLCI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCADDMULTI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCADDRT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCATMARK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCDARP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCDELDLCI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCDELMULTI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCDELRT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCDEVPRIVATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCDIFADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCDRARP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGARP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFBR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFBRDADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFCONF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFCOUNT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFDSTADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFENCAP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFFLAGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFHWADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFINDEX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFMAP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFMEM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFMETRIC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFMTU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFNAME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFNETMASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFPFLAGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFSLAVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGIFTXQLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGPGRP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGRARP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGSTAMP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCGSTAMPNS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCPROTOPRIVATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCRTMSG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSARP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFBR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFBRDADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFDSTADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFENCAP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFFLAGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFHWADDR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFHWBROADCAST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFLINK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFMAP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFMEM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFMETRIC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFMTU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFNAME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFNETMASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFPFLAGS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFSLAVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSIFTXQLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSPGRP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOCSRARP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SIOGIFINDEX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SLIPDISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
so.h Make improvements 2022-04-24 10:06:05 -07:00
SO_ACCEPTCONN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_ATTACH_BPF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_ATTACH_FILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_ATTACH_REUSEPORT_CBPF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_ATTACH_REUSEPORT_EBPF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_BINDTODEVICE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_BPF_EXTENSIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_BROADCAST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_BSDCOMPAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_BUSY_POLL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_CNX_ADVICE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_DEBUG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_DETACH_BPF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_DETACH_FILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_DOMAIN.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
SO_DONTLINGER.S Improve redbean 2022-04-25 08:30:14 -07:00
SO_DONTROUTE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_ERROR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_EXCLUSIVEADDRUSE.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
SO_GET_FILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_INCOMING_CPU.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_KEEPALIVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_LINGER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_LOCK_FILTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_MARK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_MAX_PACING_RATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_NO_CHECK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_NOFCS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_OOBINLINE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_PASSCRED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_PASSSEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_PEEK_OFF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_PEERCRED.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
SO_PEERNAME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_PEERSEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_PRIORITY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_PROTOCOL.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
SO_RCVBUF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_RCVBUFFORCE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_RCVLOWAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_RCVTIMEO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_REUSEADDR.S Improve redbean 2022-04-25 08:30:14 -07:00
SO_REUSEPORT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_RXQ_OVFL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SECURITY_AUTHENTICATION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SECURITY_ENCRYPTION_NETWORK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SECURITY_ENCRYPTION_TRANSPORT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SELECT_ERR_QUEUE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SETFIB.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
SO_SNDBUF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SNDBUFFORCE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SNDLOWAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_SNDTIMEO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_TIMESTAMP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_TIMESTAMPING.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_TIMESTAMPNS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_TYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SO_USELOOPBACK.S Perform build and magnum tuning 2021-08-10 10:26:13 -07:00
SO_WIFI_STATUS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sock.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
SOCK_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_DCCP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_DGRAM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_NONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_PACKET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_RAW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_RDM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_SEQPACKET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOCK_STREAM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sol.h Make improvements 2022-04-24 10:06:05 -07:00
SOL_AAL.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_ALG.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_ATM.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_BLUETOOTH.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_CAIF.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_DCCP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_DECNET.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_ICMPV6.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_IP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOL_IPV6.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOL_IRDA.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_IUCV.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_KCM.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_LLC.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_NETBEUI.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_NETLINK.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_NFC.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_PACKET.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_PNPIPE.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_PPPOL2TP.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_RAW.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_RDS.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_RXRPC.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_SOCKET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOL_TCP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOL_TIPC.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOL_UDP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SOL_X25.S Add tcp syn packet fingerprinting to redbean 2022-07-17 02:43:49 -07:00
SOMAXCONN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SPACE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
splice.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
SPLICE_F_GIFT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SPLICE_F_MORE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SPLICE_F_MOVE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SPLICE_F_NONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ss.h Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
SS_DISABLE.S Improve memory safety 2021-10-13 17:27:13 -07:00
SS_ONSTACK.S Improve memory safety 2021-10-13 17:27:13 -07:00
st.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
ST_APPEND.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ST_IMMUTABLE.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ST_MANDLOCK.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
ST_NOATIME.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
ST_NODEV.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
ST_NODIRATIME.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ST_NOEXEC.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
ST_NOSUID.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ST_RDONLY.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
ST_RELATIME.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
ST_SYNCHRONOUS.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
ST_WRITE.S Write tests for new APE loader and fix bugs 2022-05-22 05:45:38 -07:00
STA_RONLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
START_STOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
STATUS_MASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
STRIPDISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
SUBCMDMASK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SUBCMDSHIFT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SWAP_FLAG_DISCARD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SYMLOOP_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SYMTYPE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SYNC_FILE_RANGE_WAIT_AFTER.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SYNC_FILE_RANGE_WAIT_BEFORE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SYNC_FILE_RANGE_WRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SYNCHRONIZE_CACHE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
SYS_SECCOMP.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
SYS_USER_DISPATCH.S Make more fixes and improvements 2022-04-21 09:18:45 -07:00
syscon.internal.h Productionize new APE loader and more 2021-10-02 08:27:03 -07:00
T_FMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
T_FMT_AMPM.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TAB0.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
TAB1.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
TAB2.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
TAB3.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
TABDLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TABLDISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TCFLSH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TCGETS.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TCIFLUSH.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
TCIOFF.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TCIOFLUSH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TCION.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TCOFLUSH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TCOOFF.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
TCOON.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
tcp.h Add HTTP/HTTPS Fetch() API to redbean 2021-07-07 21:44:27 -07:00
TCP_CC_INFO.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_CONGESTION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_COOKIE_TRANSACTIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_CORK.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
TCP_DEFER_ACCEPT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_FASTOPEN.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
TCP_FASTOPEN_CONNECT.S Add HTTP/HTTPS Fetch() API to redbean 2021-07-07 21:44:27 -07:00
TCP_INFO.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
TCP_KEEPCNT.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
TCP_KEEPIDLE.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
TCP_KEEPINTVL.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
TCP_LINGER2.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_MAXSEG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_MD5SIG.S Add /statusz page to redbean plus other enhancements 2021-04-23 18:53:57 -07:00
TCP_MD5SIG_MAXKEYLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_NODELAY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_NOTSENT_LOWAT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_QUEUE_SEQ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_QUICKACK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_REPAIR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_REPAIR_OPTIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_REPAIR_QUEUE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_SAVE_SYN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_SAVED_SYN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_SYNCNT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_THIN_DUPACK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_THIN_LINEAR_TIMEOUTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_TIMESTAMP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_ULP.S Add HTTP/HTTPS Fetch() API to redbean 2021-07-07 21:44:27 -07:00
TCP_USER_TIMEOUT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCP_WINDOW_CLAMP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
tcpopt.h Improve system calls 2022-07-08 06:42:03 -07:00
TCSADRAIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCSAFLUSH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCSANOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCSBRK.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
TCSETS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCSETSF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCSETSW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TCXONC.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
termios.h Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
TEST_UNIT_READY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TFD_CLOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TFD_NONBLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TFD_TIMER_ABSTIME.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TGEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TGREAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TGWRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
th.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
TH_ACK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TH_FIN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TH_PUSH.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TH_RST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TH_SYN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TH_URG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
THOUSEP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIME_UTC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timer.h Improve system calls 2022-07-08 06:42:03 -07:00
TIOCCBRK.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCCDTR.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCCHKVERAUTH.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCCONS.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCDRAIN.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
TIOCEXT.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCFLAG_CLOCAL.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCFLAG_MDMBUF.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCFLAG_PPS.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCFLAG_SOFTCAR.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCFLUSH.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TIOCGDRAINWAIT.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCGETA.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCGETD.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCGFLAGS.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCGPGRP.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCGPTN.S Add malloc logging tool 2022-05-26 23:19:22 -07:00
TIOCGSID.S Undiamond Python headers 2021-08-12 14:07:40 -07:00
TIOCGTSTAMP.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCGWINSZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCINQ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_CAR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_CD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_CTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_DCD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_DSR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_DTR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_LE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_RI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_RNG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_RTS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_SR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCM_ST.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCMBIC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCMBIS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCMGET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCMODG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCMODS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCMSDTRWAIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCMSET.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCNOTTY.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCNXCL.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCOUTQ.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCPKT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_DATA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_DOSTOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_FLUSHREAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_FLUSHWRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_IOCTL.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_NOSTOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_START.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPKT_STOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCPTMASTER.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCREMOTE.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSBRK.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSCTTY.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSDRAINWAIT.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSDTR.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSER_TEMT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCSERGETLSR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCSERGETMULTI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCSERSETMULTI.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCSETA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCSETAF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCSETAW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCSETD.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSETVERAUTH.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSFLAGS.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSIG.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSPGRP.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSPTLCK.S Add malloc logging tool 2022-05-26 23:19:22 -07:00
TIOCSTART.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TIOCSTAT.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSTI.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSTOP.S Improve ZIP filesystem and change its prefix 2021-08-22 01:11:53 -07:00
TIOCSTSTAMP.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCSWINSZ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TIOCTIMESTAMP.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TIOCUCNTL_CBRK.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TMAGLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TMP_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TOEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TOREAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TOSTOP.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TOWRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TRANSIENT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TRAP_BRKPT.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
TRAP_TRACE.S Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
TSGID.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TSS_DTOR_ITERATIONS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TSUID.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TSVTX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TTY_NAME_MAX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TTYDEF_CFLAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TTYDEF_IFLAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TTYDEF_LFLAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TTYDEF_OFLAG.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TTYDEF_SPEED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TTYDISC.S Use unsigned leb128 for magnums 2021-02-24 04:00:38 -08:00
TUEXEC.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TUREAD.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TUWRITE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
TVERSLEN.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UDP_ENCAP_ESPINUDP_NON_IKE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UDP_NO_CHECK6_RX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UDP_NO_CHECK6_TX.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UIO_MAXIOV.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UL_GETFSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UL_SETFSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UMOUNT_NOFOLLOW.S Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
UNIT_ATTENTION.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
unmount.h Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
UPDATE_BLOCK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
USER_PROCESS.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
USRQUOTA.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UT_HOSTSIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UT_LINESIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UT_NAMESIZE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
utime.h Improve dead code elimination 2021-02-08 04:04:42 -08:00
UTIME_NOW.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
UTIME_OMIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
VDISCARD.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VEOF.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VEOL.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VEOL2.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VERASE.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VERIFY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
VINTR.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VKILL.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VLNEXT.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VMIN.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VQUIT.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VREPRINT.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VSTART.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VSTOP.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VSUSP.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VSWTC.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VT0.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
VT1.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
VTDLY.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
VTIME.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
VWERASE.S Fix termios struct on Linux 2021-09-03 22:19:41 -07:00
w.h Improve Libc by making Python work even better 2021-08-18 22:16:23 -07:00
W_OK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
waitid.h Undiamond Python headers 2021-08-12 14:07:40 -07:00
WCONTINUED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
WEOF.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
WEXITED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
WNOHANG.S Improve Libc by making Python work even better 2021-08-18 22:16:23 -07:00
WNOWAIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
WORD_BIT.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
WRQ.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
WSTOPPED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
WUNTRACED.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
X_OK.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
XATTR_CREATE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
XATTR_REPLACE.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
XCASE.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
XTABS.S Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
YESEXPR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
YESSTR.S Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00