cosmopolitan/libc/sysv/calls
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
..
__acl_aclcheck_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_aclcheck_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_aclcheck_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_delete_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_delete_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_delete_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_get_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_get_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_get_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_set_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_set_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__acl_set_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__bsd_setegid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__bsd_seteuid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__cap_rights_get.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__disable_threadsignal.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__get_tcb.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_execve.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_get_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_get_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_get_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_get_mount.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_get_pid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_get_proc.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_getfsstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_mount.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_set_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_set_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_set_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_set_proc.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__mac_syscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__old_semwait_signal.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__old_semwait_signal_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__pthread_canceled.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__pthread_chdir.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__pthread_fchdir.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__pthread_kill.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__pthread_markcancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__pthread_sigmask.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__semwait_signal.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__semwait_signal_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__set_tcb.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__setugid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sigwait_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_accept.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_accept4.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_bind.s Add unix domain socket support to redbean 2022-06-22 03:04:25 -07:00
__sys_connect.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_dup3.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_execve.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_fcntl.s Make redbean StoreAsset() work better 2021-05-14 05:44:37 -07:00
__sys_fstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_fstatat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_getpeername.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_getrusage.s Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
__sys_getsockname.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_gettid.s Add malloc logging tool 2022-05-26 23:19:22 -07:00
__sys_lstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_mmap.s Support malloc() on bare metal 2021-02-24 00:53:24 -08:00
__sys_mremap.s Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
__sys_munmap.s Improve memory safety 2021-10-13 17:27:13 -07:00
__sys_openat.s Improve system call polyfills 2021-03-08 10:07:02 -08:00
__sys_pipe.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_pipe2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_sigprocmask.s Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
__sys_socket.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_socketpair.s Perform fine-tuning of socketpair and pipe 2021-03-16 22:44:54 -07:00
__sys_stat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_utimensat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__sys_wait4.s Make major improvements to redbean and libraries 2021-04-18 12:34:15 -07:00
__sysctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__threxit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__thrsigdivert.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__thrsleep.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
__thrwakeup.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_sysctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
_umtx_op.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
abort2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
abort_with_payload.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
accept_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
access_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
acct.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
add_key.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
adjfreq.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
adjtime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
adjtimex.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
afs3_syscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_cancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_error.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_fsync.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_mlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_read.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_return.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_suspend.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_suspend_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_waitcomplete.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
aio_write.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
audit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
audit_session_join.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
audit_session_port.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
audit_session_self.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
auditctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
auditon.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
bindat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
bpf.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
bsdthread_create.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
bsdthread_ctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
bsdthread_register.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
bsdthread_terminate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cap_enter.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cap_fcntls_get.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cap_fcntls_limit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cap_getmode.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cap_ioctls_get.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cap_ioctls_limit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cap_rights_limit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
capget.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
capset.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
change_fdguard_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
chflags.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
chflagsat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
chmod_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
clock_adjtime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
clock_getcpuclockid2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
clock_nanosleep.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
clock_settime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
clone3.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
clonefileat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
close_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
close_range.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
closefrom.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
coalition.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
coalition_info.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
connect_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
connectat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
connectx.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
copyfile.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cpuset.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cpuset_getaffinity.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cpuset_getdomain.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cpuset_getid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cpuset_setaffinity.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cpuset_setdomain.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
cpuset_setid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
csops.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
csops_audittoken.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
csrctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
delete.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
delete_module.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
disconnectx.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
eaccess.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
epoll_pwait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
epoll_pwait2.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
eventfd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
eventfd2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
exchangedata.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
execveat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_delete_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_delete_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_delete_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_get_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_get_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_get_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_list_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_list_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_list_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_set_fd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_set_file.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattr_set_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
extattrctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fallocate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fanotify_init.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fanotify_mark.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fchflags.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fchmod_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fclonefileat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fcntl_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fexecve.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ffclock_getcounter.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ffclock_getestimate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ffclock_setestimate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ffsctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fgetattrlist.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fgetxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fhlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fhlinkat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fhopen.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fhreadlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fhstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fhstatfs.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fileport_makefd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fileport_makeport.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
finit_module.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
flistxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fmount.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fpathconf.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fremovexattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fs_snapshot.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fsconfig.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
fsctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fsetattrlist.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fsetxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fsmount.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
fsopen.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
fspick.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
fstat_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fstatfs.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
fsync_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
futex_waitv.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
get_mempolicy.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
get_robust_list.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getattrlist.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getattrlistat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getattrlistbulk.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getaudit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getaudit_addr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getauid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getcpu.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getdents.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getdirentries.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getdirentriesattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getdtablecount.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getdtablesize.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getfh.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getfhat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getfsstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getgroups.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
gethostid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
gethostuuid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getkerninfo.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getlogin.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getlogin_r.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getloginclass.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getpagesize_freebsd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getrtable.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getsgroups.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getthrid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getwgroups.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
getxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
grab_pgo_data.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
gssd_syscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
guarded_close_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
guarded_kqueue_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
guarded_open_dprotected_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
guarded_open_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
guarded_pwrite_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
guarded_write_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
guarded_writev_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
identitysvc.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
init_module.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
initgroups.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
inotify_add_watch.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
inotify_init.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
inotify_init1.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
inotify_rm_watch.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_cancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_destroy.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_getevents.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_pgetevents.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_setup.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_submit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_uring_enter.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_uring_register.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
io_uring_setup.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ioperm.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
iopl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
iopolicysys.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ioprio_get.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ioprio_set.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
issetugid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
jail.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
jail_attach.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
jail_get.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
jail_remove.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
jail_set.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kas_info.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kbind.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kcmp.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kdebug_trace.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kdebug_trace_string.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kdebug_typefilter.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kenv.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kevent.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kevent_id.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kevent_qos.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kexec_file_load.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kexec_load.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
keyctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldfind.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldfirstmod.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldload.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldnext.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldsym.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldunload.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kldunloadf.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kmq_notify.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kmq_setattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kmq_timedreceive.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kmq_timedsend.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kmq_unlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
kqueue.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_close.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_destroy.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_getvalue.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_init.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_post.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_timedwait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_trywait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_unlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ksem_wait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ktimer_create.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ktimer_delete.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ktimer_getoverrun.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ktimer_gettime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ktimer_settime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ktrace.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lchflags.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lchmod.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ledger.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lgetfh.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lgetxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lio_listio.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
listxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
llistxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lookup_dcookie.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lpathconf.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lremovexattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lsetxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
lstat_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mac_syscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mbind.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
membarrier.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
memfd_create.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
memfd_secret.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
memorystatus_control.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
memorystatus_get_level.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
microstackshot.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
migrate_pages.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
minherit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mkdir_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mkfifo_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mkfifoat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mknodat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mlock2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mlockall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
modfind.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
modfnext.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
modify_ldt.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
modnext.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
modstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
modwatch.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mount_setattr.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
move_mount.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
move_pages.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mq_getsetattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mq_notify.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mq_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mq_timedreceive.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mq_timedsend.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mq_unlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mquery.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
mremap_encrypted.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msgctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msgget.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msgrcv.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msgrcv_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msgsnd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msgsnd_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msgsys.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msync_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
msyscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
munlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
munlockall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
name_to_handle_at.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
necp_client_action.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
necp_match_policy.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
necp_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
necp_session_action.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
necp_session_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
net_qos_guideline.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
netagent_trigger.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nfsclnt.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nfssvc.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nfstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nlm_syscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nlstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nmount.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nnpfs_syscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
nstat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ntp_adjtime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ntp_gettime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
obreak.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
open_by_handle_at.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
open_dprotected_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
open_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
open_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
open_tree.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
openat_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
openbyid_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
os_fault_with_payload.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pathconf.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pdfork.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pdgetpid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pdkill.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
peeloff.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
perf_event_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
persona.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
personality.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pid_hibernate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pid_resume.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pid_shutdown_sockets.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pid_suspend.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pidfd_getfd.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
pidfd_open.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
pidfd_send_signal.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pivot_root.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pkey_alloc.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pkey_free.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pkey_mprotect.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
poll_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
posix_fallocate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pread_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
preadv2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
prlimit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
proc_info.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
proc_rlimit_control.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
proc_trace_log.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
proc_uuid_policy.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
procctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
process_madvise.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
process_mrelease.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
process_policy.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
process_vm_readv.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
process_vm_writev.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
profil.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pselect.s Make pledge() and unveil() work amazingly 2022-07-19 21:33:49 -07:00
pselect_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_cvbroad.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_cvclrprepost.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_cvsignal.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_cvwait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_mutexdrop.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_mutexwait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_downgrade.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_longrdlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_rdlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_unlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_unlock2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_upgrade.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_wrlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
psynch_rw_yieldwrlock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pwrite_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
pwritev2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
quota.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
quotactl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
quotactl_fd.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
rctl_add_rule.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rctl_get_limits.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rctl_get_racct.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rctl_get_rules.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rctl_remove_rule.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
read_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
readahead.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
readv_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
recvfrom_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
recvmmsg.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
recvmsg_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
recvmsg_x.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
removexattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
renameat2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
renameatx_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
request_key.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
restart_syscall.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
revoke.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rfork.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rseq.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rt_tgsigqueueinfo.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rtprio.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
rtprio_thread.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sched_getattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sched_rr_get_interval.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sched_setattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sctp_generic_recvmsg.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sctp_generic_sendmsg.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sctp_generic_sendmsg_iov.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sctp_peeloff.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
searchfs.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
select_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sem_close.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sem_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sem_post.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sem_trywait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sem_unlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sem_wait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sem_wait_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
semctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
semget.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
semop.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
semsys.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
semtimedop.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sendmsg_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sendmsg_x.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sendsyslog.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sendto_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
set_mempolicy.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
set_mempolicy_home_node.s Add latest Linux syscalls including landlock 2022-07-15 18:29:49 -07:00
set_robust_list.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
set_tid_address.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setattrlist.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setattrlistat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setaudit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setaudit_addr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setauid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setcontext.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setdomainname.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setfib.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setgroups.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sethostid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sethostname.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setlogin.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setloginclass.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setns.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setprivexec.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setrtable.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setsgroups.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
settid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
settid_with_pid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
settimeofday.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setwgroups.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
setxattr.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sfi_ctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sfi_pidctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shared_region_check_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shared_region_map_and_slide_np.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shm_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shm_unlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shmat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shmctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shmdt.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shmget.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
shmsys.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigblock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
signalfd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
signalfd4.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigpending.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigsetmask.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigstack.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigsuspend_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigtimedwait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigvec.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigwait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sigwaitinfo.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
socket_delegate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sstk.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
stack_snapshot_with_config.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
stat_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
statfs.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
statx.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
swapcontext.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
swapctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
swapoff.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
swapon.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
syncfs.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_access.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_alarm.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_arch_prctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_bogus.s Show crash reports on SIGSYS 2022-06-23 13:01:01 -07:00
sys_chdir.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_chmod.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_chown.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_chroot.s Fix bugs and add security features to redbean 2022-04-18 00:01:26 -07:00
sys_clock_getres.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_clock_gettime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_clone.s Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
sys_close.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_copy_file_range.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_creat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_dup.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_dup2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_epoll_create.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_epoll_create1.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_epoll_ctl.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_epoll_wait.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_exit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_faccessat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_faccessat2.s Improve pledge() and unveil() 2022-07-18 07:58:20 -07:00
sys_fadvise.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fchdir.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fchmod.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fchmodat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fchown.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fchownat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fdatasync.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_flock.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fork.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_fsync.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_ftruncate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_futex.s Make more fixes and improvements 2022-06-13 11:02:13 -07:00
sys_futimens.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_futimes.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_futimesat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getcontext.s Get threads working on all platforms 2022-05-13 03:59:09 -07:00
sys_getcwd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getegid.s Fix bugs with recent change 2022-04-16 10:40:23 -07:00
sys_geteuid.s Fix bugs with recent change 2022-04-16 10:40:23 -07:00
sys_getgid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getitimer.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getpgid.s Get more Python tests passing (#141) 2021-08-16 15:26:31 -07:00
sys_getpgrp.s Fix bugs with recent change 2022-04-16 10:40:23 -07:00
sys_getpid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getppid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getpriority.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getrandom.s Add SSL to redbean 2021-06-24 13:20:50 -07:00
sys_getresgid.s Add assimilate.com command for APE binaries 2022-07-13 20:56:24 -07:00
sys_getresuid.s Add assimilate.com command for APE binaries 2022-07-13 20:56:24 -07:00
sys_getrlimit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getsid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getsockopt.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_gettimeofday.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_getuid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_ioctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_kill.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_killpg.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_landlock_add_rule.s Make pledge() and unveil() work amazingly 2022-07-19 21:33:49 -07:00
sys_landlock_create_ruleset.s Make pledge() and unveil() work amazingly 2022-07-19 21:33:49 -07:00
sys_landlock_restrict_self.s Make pledge() and unveil() work amazingly 2022-07-19 21:33:49 -07:00
sys_lchown.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_link.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_linkat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_listen.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_lseek.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_lutimes.s Improve Libc by making Python work even better 2021-08-18 22:16:23 -07:00
sys_madvise.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_mincore.s Add raw memory visualization tool to redbean 2022-05-14 04:33:58 -07:00
sys_mkdir.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_mkdirat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_mkfifo.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_mknod.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_mount.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_mprotect.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_msync.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_nanosleep.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_openat2.s Improve pledge() and unveil() 2022-07-18 07:58:20 -07:00
sys_pause.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_pledge.s Make improvements 2022-04-28 09:57:07 -07:00
sys_poll.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_posix_openpt.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_posix_spawn.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_ppoll.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_pread.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_preadv.s Add XNU magnums for preadv() and writev() 2022-04-12 01:10:26 -07:00
sys_ptrace.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_pwrite.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_pwritev.s Add XNU magnums for preadv() and writev() 2022-04-12 01:10:26 -07:00
sys_read.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_readlink.s Improve Libc by making Python work even better 2021-08-18 22:16:23 -07:00
sys_readlinkat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_readv.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_reboot.s Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
sys_recvfrom.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_recvmsg.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_rename.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_renameat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_rmdir.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sched_get_priority_max.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_get_priority_min.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_getaffinity.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_getparam.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_getscheduler.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_setaffinity.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_setparam.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_setscheduler.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_sched_yield.s Improve system calls 2022-07-08 06:42:03 -07:00
sys_select.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sendfile.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sendmsg.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sendto.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setfsgid.s Add assimilate.com command for APE binaries 2022-07-13 20:56:24 -07:00
sys_setfsuid.s Add assimilate.com command for APE binaries 2022-07-13 20:56:24 -07:00
sys_setgid.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_setitimer.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setpgid.s Improve locks and signals 2022-04-12 05:20:17 -07:00
sys_setpriority.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setregid.s Make improvements 2022-04-24 10:06:05 -07:00
sys_setresgid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setresuid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setreuid.s Make improvements 2022-04-24 10:06:05 -07:00
sys_setrlimit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setsid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setsockopt.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_setuid.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_shutdown.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sigaction.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sigaltstack.s Improve memory safety 2021-10-13 17:27:13 -07:00
sys_sigqueue.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_sigqueueinfo.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_sigsuspend.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_splice.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_symlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_symlinkat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sync.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sync_file_range.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_sysinfo.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_tgkill.s Get threads working on all platforms 2022-05-13 03:59:09 -07:00
sys_times.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_tkill.s Get threads working on all platforms 2022-05-13 03:59:09 -07:00
sys_truncate.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_umask.s Improve synchronization 2022-04-15 15:31:55 -07:00
sys_uname.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_unlink.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_unlinkat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_unmount.s Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
sys_unveil.s Write some tests for unveil() 2022-07-18 02:27:26 -07:00
sys_utime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_utimes.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_vmsplice.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_write.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sys_writev.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sysctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sysctlbyname.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
sysfs.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
syslog.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
system_override.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
tee.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
telemetry.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
terminate_with_payload.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_create.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_exit.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_kill.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_kill2.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_new.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_self.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_set_name.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_suspend.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thr_wake.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thread_selfcounts.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thread_selfid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thread_selfusage.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
thrkill.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timer_create.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timer_delete.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timer_getoverrun.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timer_gettime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timer_settime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timerfd_create.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timerfd_gettime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
timerfd_settime.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ulock_wait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ulock_wake.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
umask_extended.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
umount2.s Improve isystem includes and magic numbers 2021-08-14 23:36:36 -07:00
undelete.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
unshare.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
userfaultfd.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
usrctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
ustat.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
utrace.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
uuidgen.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
vadvise.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
vfs_purge.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
vhangup.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
vm_pressure_monitor.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
wait.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
wait4_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
wait6.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
waitevent.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
waitid.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
waitid_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
watchevent.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
work_interval_ctl.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
workq_kernreturn.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
workq_open.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
write_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
writev_nocancel.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
yield.s Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00