cosmopolitan/libc/sysv/consts
Justine Tunney dd8544c3bd
Delve into clock rabbit hole
The worst issue I had with consts.sh for clock_gettime is how it defined
too many clocks. So I looked into these clocks all day to figure out how
how they overlap in functionality. I discovered counter-intuitive things
such as how CLOCK_MONOTONIC should be CLOCK_UPTIME on MacOS and BSD, and
that CLOCK_BOOTTIME should be CLOCK_MONOTONIC on MacOS / BSD. Windows 10
also has some incredible new APIs, that let us simplify clock_gettime().

  - Linux CLOCK_REALTIME         -> GetSystemTimePreciseAsFileTime()
  - Linux CLOCK_MONOTONIC        -> QueryUnbiasedInterruptTimePrecise()
  - Linux CLOCK_MONOTONIC_RAW    -> QueryUnbiasedInterruptTimePrecise()
  - Linux CLOCK_REALTIME_COARSE  -> GetSystemTimeAsFileTime()
  - Linux CLOCK_MONOTONIC_COARSE -> QueryUnbiasedInterruptTime()
  - Linux CLOCK_BOOTTIME         -> QueryInterruptTimePrecise()

Documentation on the clock crew has been added to clock_gettime() in the
docstring and in redbean's documentation too. You can read that to learn
interesting facts about eight essential clocks that survived this purge.
This is original research you will not find on Google, OpenAI, or Claude

I've tested this change by porting *NSYNC to become fully clock agnostic
since it has extensive tests for spotting irregularities in time. I have
also included these tests in the default build so they no longer need to
be run manually. Both CLOCK_REALTIME and CLOCK_MONOTONIC are good across
the entire amd64 and arm64 test fleets.
2024-09-04 01:32:46 -07:00
..
__NR__sysctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_accept.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_accept4.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_access.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_acct.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_add_key.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_adjtimex.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_alarm.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_arch_prctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_bind.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_bpf.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_capget.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_capset.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_chdir.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_chmod.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_chown.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_chroot.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_clock_adjtime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_clock_getres.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_clock_gettime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_clock_nanosleep.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_clock_settime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_clone.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_close.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_connect.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_copy_file_range.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_cpuset_getaffinity.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_cpuset_setaffinity.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_creat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_delete_module.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_dup.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_dup2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_dup3.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_epoll_create.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_epoll_create1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_epoll_ctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_epoll_pwait.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_epoll_wait.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_eventfd.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_eventfd2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_execve.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_execveat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_exit.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_exit_group.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_faccessat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fadvise.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fallocate.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fanotify_init.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fanotify_mark.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fchdir.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fchmod.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fchmodat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fchown.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fchownat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fcntl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fdatasync.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fgetxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_finit_module.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_flistxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_flock.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fork.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fremovexattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fsetxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fstat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fstatat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fstatfs.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_fsync.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ftruncate.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_futex.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_futimens.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_futimes.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_futimesat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_get_mempolicy.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_get_robust_list.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getcpu.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getcwd.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getdents.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getegid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_geteuid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getgid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getgroups.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getitimer.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getpeername.S Fix definition of getpeername on FreeBSD 2024-05-26 17:03:22 -07:00
__NR_getpgid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getpgrp.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getpid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getppid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getpriority.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getrandom.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getresgid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getresuid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getrlimit.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getrusage.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getsid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getsockname.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getsockopt.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_gettid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_gettimeofday.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getuid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_getxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_init_module.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_inotify_add_watch.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_inotify_init.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_inotify_init1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_inotify_rm_watch.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_cancel.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_destroy.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_getevents.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_pgetevents.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_setup.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_submit.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_uring_enter.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_uring_register.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_io_uring_setup.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ioctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ioperm.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_iopl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ioprio_get.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ioprio_set.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_kcmp.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_kexec_file_load.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_kexec_load.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_keyctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_kill.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_killpg.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ktrace.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_lchown.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_lgetxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_link.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_linkat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_listen.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_listxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_llistxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_lookup_dcookie.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_lremovexattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_lseek.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_lsetxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_lstat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_madvise.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mbind.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_membarrier.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_memfd_create.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_migrate_pages.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mincore.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mkdir.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mkdirat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mkfifo.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mkfifoat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mknod.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mknodat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mlock.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mlock2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mlockall.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mmap.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_modify_ldt.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mount.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_move_pages.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mprotect.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mq_getsetattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mq_notify.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mq_open.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mq_timedreceive.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mq_timedsend.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mq_unlink.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_mremap.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_msgctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_msgget.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_msgrcv.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_msgsnd.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_msync.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_msyscall.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_munlock.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_munlockall.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_munmap.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_name_to_handle_at.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_nanosleep.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_open.S Make improvements 2023-09-18 21:04:47 -07:00
__NR_open_by_handle_at.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_openat.S Make improvements 2023-09-18 21:04:47 -07:00
__NR_pause.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_perf_event_open.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_personality.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pidfd_send_signal.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pipe.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pipe2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pivot_root.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pkey_alloc.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pkey_free.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pkey_mprotect.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pledge.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_poll.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_posix_fallocate.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_posix_spawn.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ppoll.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_prctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pread.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_preadv.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_preadv2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_prlimit.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_process_vm_readv.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_process_vm_writev.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pselect.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pselect6.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ptrace.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_pwrite.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_pwritev.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_pwritev2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_quotactl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_read.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_readahead.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_readlink.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_readlinkat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_readv.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_reboot.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_recvfrom.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_recvmmsg.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_recvmsg.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_removexattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_rename.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_renameat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_renameat2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_request_key.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_restart_syscall.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_rmdir.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_rseq.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_get_priority_max.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_get_priority_min.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_getaffinity.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_getattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_getparam.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_getscheduler.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_rr_get_interval.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_setaffinity.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_setattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_setparam.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_setscheduler.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sched_yield.S Make improvements 2023-09-18 21:04:47 -07:00
__NR_seccomp.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_select.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_semctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_semget.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_semop.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_semtimedop.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sendfile.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sendmmsg.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sendmsg.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sendto.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_set_mempolicy.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_set_robust_list.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_set_tid_address.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_set_tls.S Fix --ftrace with cosmo_dlopen() 2024-01-05 15:13:07 -08:00
__NR_setdomainname.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setfsgid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setfsuid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setgid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setgroups.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sethostname.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setitimer.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setns.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setpgid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setpriority.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setregid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setresgid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setresuid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setreuid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setrlimit.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setsid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setsockopt.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_settimeofday.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setuid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_setxattr.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_shmat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_shmctl.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_shmdt.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_shmget.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_shutdown.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sigaction.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sigaltstack.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_signalfd.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_signalfd4.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sigpending.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sigprocmask.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sigqueueinfo.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sigsuspend.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sigtimedwait.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_socket.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_socketpair.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_splice.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_stat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_statfs.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_statx.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_swapoff.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_swapon.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_symlink.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_symlinkat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sync.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_syncfs.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sysfs.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_sysinfo.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_syslog.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_tee.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_tgkill.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_tgsigqueueinfo.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timer_create.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timer_delete.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timer_getoverrun.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timer_gettime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timer_settime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timerfd_create.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timerfd_gettime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_timerfd_settime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_times.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_tkill.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_truncate.S Fully support OpenBSD 7.3 2023-07-01 18:14:27 -07:00
__NR_umask.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_umount2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_uname.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_unlink.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_unlinkat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_unshare.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_userfaultfd.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_ustat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_utime.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_utimensat.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_utimes.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_vfork.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_vhangup.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_vmsplice.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_wait4.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_waitid.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
__NR_write.S Make improvements 2023-09-18 21:04:47 -07:00
__NR_writev.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
_ARG_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
_LINUX_QUOTA_VERSION.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
_MINSIGSTKSZ.S Make improvements 2023-09-18 21:04:47 -07:00
_NAME_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
_NSIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
_PATH_MAX.S Remove long path tests for Windows 2023-08-21 04:43:53 -07:00
_posix.h
_POSIX_VDISABLE.S Fix bugs in termios library and cleanup code 2023-06-14 19:30:52 -07:00
_SEM_SEMUN_UNDEFINED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
_SIGSTKSZ.S Make improvements 2023-09-18 21:04:47 -07:00
ABORTED_COMMAND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ACCT_BYTEORDER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ACCT_COMM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ACK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ACORE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
af.h Reduce header complexity 2023-11-28 14:39:42 -08:00
AF_ALG.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_APPLETALK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_ASH.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_ATMPVC.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_ATMSVC.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_AX25.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_BLUETOOTH.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_BRIDGE.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_CAIF.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_CAN.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_ECONET.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_FILE.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_IB.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_IEEE802154.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_INET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_INET6.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_IPX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_IRDA.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_ISDN.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_IUCV.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_KCM.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_KEY.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_LINK.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_LLC.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_LOCAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_MPLS.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_NETBEUI.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_NETLINK.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_NETROM.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_NFC.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_PACKET.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_PHONET.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_PPPOX.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_RDS.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_ROSE.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_ROUTE.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_RXRPC.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_SECURITY.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_SNA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_TIPC.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_UNIX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_UNSPEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AF_VSOCK.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_WANPIPE.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AF_X25.S Fix bug with temporary files on Windows 2023-08-13 07:10:33 -07:00
AFORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AIO_ALLDONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AIO_CANCELED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AIO_NOTCANCELED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
arch.h Make improvements 2023-06-15 14:50:53 -07:00
AREGTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
arp.h Get us closer to building busybox 2023-06-18 04:13:45 -07:00
at.h Reduce header complexity 2023-11-28 14:39:42 -08:00
AT_BASE_PLATFORM.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_CANARY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_CANARYLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_CLKTCK.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_DCACHEBSIZE.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_EACCESS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_EGID.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_EHDRFLAGS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_EMPTY_PATH.S Get Fat Emacs working in Windows Console 2023-08-18 05:00:30 -07:00
AT_EUID.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_EXECFD.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_EXECFN.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_EXECPATH.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_FDCWD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_GID.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_HWCAP.S Introduce FreeBSD ARM64 support 2023-12-29 20:14:02 -08:00
AT_HWCAP2.S Introduce FreeBSD ARM64 support 2023-12-29 20:14:02 -08:00
AT_ICACHEBSIZE.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_MINSIGSTKSZ.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_NCPUS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_NO_AUTOMOUNT.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_NOTELF.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_OSRELDATE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_PAGESIZES.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_PAGESIZESLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_PLATFORM.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_RANDOM.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_REMOVEDIR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_SECURE.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_STACKBASE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_STACKPROT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_SYMLINK_FOLLOW.S Get Fat Emacs working in Windows Console 2023-08-18 05:00:30 -07:00
AT_SYMLINK_NOFOLLOW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_SYSINFO_EHDR.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_TIMEKEEP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
AT_UCACHEBSIZE.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
AT_UID.S Mint APE Loader v1.5 2023-07-26 13:54:49 -07:00
audit.h Get TEST_LIBC_STR passing on AARCH64 2023-05-12 18:09:23 -07:00
auxv.h Enable argv[0] tests in more places (#1061) 2024-01-06 11:42:03 -08:00
B0.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B50.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B75.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B110.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B134.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B150.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B200.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B300.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B600.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B1200.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B1800.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B2400.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B4800.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B9600.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B19200.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B38400.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B57600.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B115200.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B230400.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B500000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B576000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B1000000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B1152000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B1500000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B2000000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B2500000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B3000000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B3500000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
B4000000.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
baud.internal.h Reduce header complexity 2023-11-28 14:39:42 -08:00
BC_BASE_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BC_DIM_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BC_SCALE_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BC_STRING_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BRKINT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BS1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BSDLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BUS_ADRALN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BUS_ADRERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BUS_MCEERR_AO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BUS_MCEERR_AR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BUS_OBJERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
BUS_OOMERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
c.h
cap.h
CDISCARD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CEOT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CERASE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CHRTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CKILL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLD_CONTINUED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLD_DUMPED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLD_EXITED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLD_KILLED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLD_STOPPED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLD_TRAPPED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLNEXT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLOCAL.S Fix bugs in termios library and cleanup code 2023-06-14 19:30:52 -07:00
clock.h Delve into clock rabbit hole 2024-09-04 01:32:46 -07:00
CLOCK_BOOTTIME.S Delve into clock rabbit hole 2024-09-04 01:32:46 -07:00
CLOCK_MONOTONIC.S Delve into clock rabbit hole 2024-09-04 01:32:46 -07:00
CLOCK_MONOTONIC_COARSE.S Delve into clock rabbit hole 2024-09-04 01:32:46 -07:00
CLOCK_MONOTONIC_RAW.S Delve into clock rabbit hole 2024-09-04 01:32:46 -07:00
CLOCK_PROCESS_CPUTIME_ID.S Make improvements 2024-02-12 10:23:00 -08:00
CLOCK_REALTIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLOCK_REALTIME_COARSE.S Improve time/sleep accuracy on Windows 2023-11-18 01:57:44 -08:00
CLOCK_THREAD_CPUTIME_ID.S Make improvements 2024-02-12 10:23:00 -08:00
clone.h Replace COSMO define with _COSMO_SOURCE 2023-08-13 20:55:04 -07:00
CLONE_VM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
close.h Reduce header complexity 2023-11-28 14:39:42 -08:00
CLOSE_RANGE_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CLOSE_RANGE_UNSHARE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CMIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CMSPAR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
COMMAND_COMPLETE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
COMMAND_TERMINATED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
COMPLETE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CONTINUE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CONTTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
COPY_ABORTED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
COPY_VERIFY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CQUIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CR1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CR2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CR3.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CRDLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CREPRINT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CRPRNT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CRTSCTS.S Fix bugs in termios library and cleanup code 2023-06-14 19:30:52 -07:00
CS5.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CS6.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CS7.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CS8.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CSTART.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CSTOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CSTOPB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
CTIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
D_FMT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
D_T_FMT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
DATA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
DEV_BSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
DIRTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
dn.h
dt.h Make ZipOS and Qemu work better 2023-08-15 18:32:50 -07:00
E2BIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EACCES.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EADDRINUSE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EADDRNOTAVAIL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EADV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EAFNOSUPPORT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EAGAIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EALREADY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EAUTH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADARCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADFD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADMACHO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADMSG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADRPC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADRQC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBADSLT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EBUSY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECANCELED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHILD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHOCTL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHOE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHOK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHOKE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHONL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHOPRT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECHRNG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECOMM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECONNABORTED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECONNREFUSED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ECONNRESET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EDEADLK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EDESTADDRREQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EDEVERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EDOM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EDOTDOT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EDQUOT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EEXIST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EFAULT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EFBIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EFD_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EFD_NONBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EFD_SEMAPHORE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EFTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EHOSTDOWN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EHOSTUNREACH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EHWPOISON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EIDRM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EILSEQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EINPROGRESS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EINTR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EINVAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EISCONN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EISDIR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EISNAM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EKEYEXPIRED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EKEYREJECTED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EKEYREVOKED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EL2HLT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EL2NSYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EL3HLT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EL3RST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELF_NGREG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELF_PRARGSZ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELIBACC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELIBBAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELIBEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELIBMAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELIBSCN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELNRNG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ELOOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EM_ALTERA_NIOS2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EM_LATTICEMICO32.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EMEDIUMTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EMFILE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EMLINK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EMSGSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EMULTIHOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENAMETOOLONG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENAVAIL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
endian.h
ENEEDAUTH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENETDOWN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENETRESET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENETUNREACH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENFILE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOANO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOATTR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOBUFS.S Make improvements 2023-10-03 06:17:16 -07:00
ENOCSI.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENODATA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENODEV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOENT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOEXEC.S Make improvements 2023-09-18 21:04:47 -07:00
ENOKEY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOLCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOLINK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOMEDIUM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOMEM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOMSG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENONET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOPKG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOPOLICY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOPROTOOPT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOSPC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOSR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOSTR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOSYS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTBLK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTCONN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTDIR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTEMPTY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTNAM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTRECOVERABLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTSOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTSUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTTY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENOTUNIQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ENXIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EOPNOTSUPP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EOVERFLOW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EOWNERDEAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPERM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPFNOSUPPORT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPIPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPROCLIM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPROCUNAVAIL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPROGMISMATCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPROGUNAVAIL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPROTO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPROTONOSUPPORT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPROTOTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EPWROFF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ERANGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EREMCHG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EREMOTE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EREMOTEIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ERESTART.S Make win32 i/o signals atomic and longjmp() safe 2023-11-04 20:33:29 -07:00
ERFKILL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EROFS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ERPCMISMATCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESHLIBVERS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESHUTDOWN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESOCKTNOSUPPORT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESPIPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESRCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESRMNT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESTALE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ESTRPIPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ethernet.h Get us closer to building busybox 2023-06-18 04:13:45 -07:00
ETIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ETIMEDOUT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ETOOMANYREFS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ETXTBSY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EUCLEAN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EUNATCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EUSERS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EWOULDBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ex.h
EXDEV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EXFULL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
exit.h
EXPR_NEST_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
EXTPROC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
f.h Reduce header complexity 2023-11-28 14:39:42 -08:00
F_BARRIERFSYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_DUPFD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_DUPFD_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_FULLFSYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETFD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETFL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETLEASE.S Test m=aarch64 on GitHub Actions 2023-06-05 15:23:00 -07:00
F_GETLK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETNOSIGPIPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETOWN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETOWN_EX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETPATH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETPIPE_SZ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_GETSIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_MAXFD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_NOCACHE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_NOTIFY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_OFD_GETLK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_OFD_SETLK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_OFD_SETLKW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_RDLCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETFD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETFL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETLEASE.S Test m=aarch64 on GitHub Actions 2023-06-05 15:23:00 -07:00
F_SETLK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETLKW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETNOSIGPIPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETOWN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETOWN_EX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETPIPE_SZ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_SETSIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_UNLCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
F_WRLCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
falloc.h Reduce header complexity 2023-11-28 14:39:42 -08:00
FALLOC_FL_COLLAPSE_RANGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FALLOC_FL_INSERT_RANGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FALLOC_FL_KEEP_SIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FALLOC_FL_NO_HIDE_STALE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FALLOC_FL_PUNCH_HOLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FALLOC_FL_UNSHARE_RANGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FALLOC_FL_ZERO_RANGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
fan.h
fbio.h Reduce header complexity 2023-11-28 14:39:42 -08:00
FBIO_WAITFORVSYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FBIOGET_FSCREENINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FBIOGET_VSCREENINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FBIOGETCMAP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FBIOPAN_DISPLAY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FBIOPUT_VSCREENINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FBIOPUTCMAP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
fd.h Reduce header complexity 2023-11-28 14:39:42 -08:00
FD_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FD_SETSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FF1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FFDLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FIFOTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
fileno.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
fio.h Reduce header complexity 2023-11-28 14:39:42 -08:00
FIOASYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FIOCLEX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FIONBIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FIONCLEX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FIONREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FLUSHO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_FLTDIV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_FLTINV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_FLTOVF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_FLTRES.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_FLTSUB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_FLTUND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_INTDIV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FPE_INTOVF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
fs.h
FSETLOCKING_BYCALLER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FSETLOCKING_INTERNAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FSETLOCKING_QUERY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
futex.h Reduce header complexity 2023-11-28 14:39:42 -08:00
FUTEX_PRIVATE_FLAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FUTEX_REQUEUE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FUTEX_WAIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FUTEX_WAKE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
FWRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
GIO_FONT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
GIO_FONTX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
grnd.h Fix bugs in cosmocc toolchain 2023-06-08 23:44:03 -07:00
GRPQUOTA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
HOST_NAME_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
HUPCL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
hwcap.h Introduce native support for MacOS ARM64 2023-05-20 04:17:03 -07:00
ICANON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
icmp6.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
ICMP6_DST_UNREACH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_DST_UNREACH_ADDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_DST_UNREACH_ADMIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_DST_UNREACH_BEYONDSCOPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_DST_UNREACH_NOPORT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_DST_UNREACH_NOROUTE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_ECHO_REPLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_ECHO_REQUEST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_FILTER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_INFOMSG_MASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_PACKET_TOO_BIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_PARAM_PROB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_PARAMPROB_HEADER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_PARAMPROB_NEXTHEADER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_PARAMPROB_OPTION.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_ROUTER_RENUMBERING.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_FLAGS_FORCEAPPLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_FLAGS_PREVDONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_FLAGS_REQRESULT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_FLAGS_SPECSITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_FLAGS_TEST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_PCOUSE_RAFLAGS_AUTO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_PCOUSE_RAFLAGS_ONLINK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_RESULT_FLAGS_FORBIDDEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_RR_RESULT_FLAGS_OOB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_TIME_EXCEED_REASSEMBLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_TIME_EXCEED_TRANSIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICMP6_TIME_EXCEEDED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ICRNL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IEXTEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IF_NAMESIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
iff.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
IFF_ALLMULTI.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_AUTOMEDIA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_BROADCAST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_DEBUG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_DYNAMIC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_LOOPBACK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_MASTER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_MULTICAST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_NOARP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_NOTRAILERS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_POINTOPOINT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_PORTSEL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_PROMISC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_RUNNING.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_SLAVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IFF_UP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IGNBRK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IGNCR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IGNPAR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_BADSTK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_COPROC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_ILLADR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_ILLOPC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_ILLOPN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_ILLTRP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_PRVOPC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ILL_PRVREG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IMAXBEL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
in.h Create a fake syscall() function due to Python 2023-06-09 05:18:38 -07:00
inaddr.h Use DNS implementation from Musl Libc 2023-12-28 23:04:35 -08:00
inet6.h
INET6_ADDRSTRLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
INET_ADDRSTRLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
INLCR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
INPCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
INTERMEDIATE_C_GOOD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
INTERMEDIATE_GOOD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
io.h Reduce header complexity 2023-11-28 14:39:42 -08:00
ioprio.h Rerun clang-format on the repo (#1217) 2024-06-15 16:34:48 -04:00
iov.h Reduce header complexity 2023-11-28 14:39:42 -08:00
IOV_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ip.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
IP6F_MORE_FRAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP6F_OFF_MASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP6F_RESERVED_MASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_ADD_MEMBERSHIP.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_ADD_SOURCE_MEMBERSHIP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_BIND_ADDRESS_NO_PORT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_BLOCK_SOURCE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_CHECKSUM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_DEFAULT_MULTICAST_LOOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_DEFAULT_MULTICAST_TTL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_DROP_MEMBERSHIP.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_DROP_SOURCE_MEMBERSHIP.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_FREEBIND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_HDRINCL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_IPSEC_POLICY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_MAX_MEMBERSHIPS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_MINTTL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_MSFILTER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_MTU.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_MTU_DISCOVER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_MULTICAST_ALL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_MULTICAST_IF.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_MULTICAST_LOOP.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_MULTICAST_TTL.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_NODEFRAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_OPTIONS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_ORIGDSTADDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PASSSEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PKTINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PKTOPTIONS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PMTUDISC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PMTUDISC_DO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PMTUDISC_DONT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PMTUDISC_INTERFACE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PMTUDISC_OMIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PMTUDISC_PROBE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_PMTUDISC_WANT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RECVDSTADDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RECVERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RECVOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RECVORIGDSTADDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RECVRETOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RECVTOS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RECVTTL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_RETOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_ROUTER_ALERT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_TOS.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_TRANSPARENT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_TTL.S Update Windows IP_MULTICAST constants to use Ws2tcpip.h values (#839) (#842) 2023-07-01 19:44:27 -07:00
IP_UNBLOCK_SOURCE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_UNICAST_IF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IP_XFRM_POLICY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ipport.h Reduce header complexity 2023-11-28 14:39:42 -08:00
IPPORT_USERRESERVED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ipproto.h Make more fixes and improvements 2023-07-29 18:44:15 -07:00
ipv6.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
IPV6_2292DSTOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_2292HOPLIMIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_2292HOPOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_2292PKTINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_2292PKTOPTIONS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_2292RTHDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_ADD_MEMBERSHIP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_ADDRFORM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_AUTHHDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_AUTOFLOWLABEL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_CHECKSUM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_DONTFRAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_DROP_MEMBERSHIP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_DSTOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_HDRINCL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_HOPLIMIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_HOPOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_IPSEC_POLICY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_JOIN_ANYCAST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_JOIN_GROUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_LEAVE_ANYCAST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_LEAVE_GROUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_MINHOPCOUNT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_MTU.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_MTU_DISCOVER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_MULTICAST_HOPS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_MULTICAST_IF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_MULTICAST_LOOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_NEXTHOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_ORIGDSTADDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PATHMTU.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PKTINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PMTUDISC_DO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PMTUDISC_DONT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PMTUDISC_INTERFACE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PMTUDISC_OMIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PMTUDISC_PROBE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_PMTUDISC_WANT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVDSTOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVHOPLIMIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVHOPOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVORIGDSTADDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVPATHMTU.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVPKTINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVRTHDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RECVTCLASS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_ROUTER_ALERT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RTHDR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RTHDR_LOOSE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RTHDR_STRICT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RTHDR_TYPE_0.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RTHDRDSTOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RXDSTOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_RXHOPOPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_TCLASS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_UNICAST_HOPS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_V6ONLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IPV6_XFRM_POLICY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ISIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ISTRIP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
itimer.h
IUCLC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IUTF8.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IXANY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IXOFF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
IXON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
kd.h Reduce header complexity 2023-11-28 14:39:42 -08:00
KDFONTOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
kern.h Reduce header complexity 2023-11-28 14:39:42 -08:00
l.h
L_INCR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
L_SET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
L_XTND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
limits.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
LINE_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LINK_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LINKED_CMD_COMPLETE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LINKED_FLG_CMD_COMPLETE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
lio.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
LIO_NOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LIO_NOWAIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LIO_READ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LIO_WAIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LIO_WRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LNKTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
lock.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
LOCK_EX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LOCK_NB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LOCK_SH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LOCK_UN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LOCK_UNLOCK_CACHE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
log.h
LOGIN_NAME_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
LOGIN_PROCESS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
loglevel.h Reduce header complexity 2023-11-28 14:39:42 -08:00
madv.h Reduce header complexity 2023-11-28 14:39:42 -08:00
MADV_COLD.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_COLLAPSE.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_DODUMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_DOFORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_DONTDUMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_DONTFORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_DONTNEED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_DONTNEED_LOCKED.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_FREE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_HUGEPAGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_HWPOISON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_KEEPONFORK.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_MERGEABLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_NOHUGEPAGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_NORMAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_PAGEOUT.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_POPULATE_READ.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_POPULATE_WRITE.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_RANDOM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_REMOVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_SEQUENTIAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_SOFT_OFFLINE.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
MADV_UNMERGEABLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_WILLNEED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MADV_WIPEONFORK.S Linux add definition for madvise flag (#883) 2023-09-06 12:34:54 -07:00
map.h Make realloc() go 100x faster on Linux/NetBSD 2024-07-07 12:40:30 -07:00
MAP_32BIT.S Test m=aarch64 on GitHub Actions 2023-06-05 15:23:00 -07:00
MAP_ANON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_ANONYMOUS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_CONCEAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_DENYWRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_EXECUTABLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_FILE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_FIXED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_FIXED_NOREPLACE.S Rewrite memory manager 2024-06-22 05:45:11 -07:00
MAP_HASSEMAPHORE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_HUGETLB.S Introduce MAP_HUGETLB 2024-05-24 11:44:44 -07:00
MAP_INHERIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_JIT.S Improve dlopen() on Apple Silicon 2023-11-17 02:33:14 -08:00
MAP_LOCKED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_NOCACHE.S Make improvements 2024-02-12 10:23:00 -08:00
MAP_NOCORE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_NOEXTEND.S Make improvements 2024-02-12 10:23:00 -08:00
MAP_NOFORK.S Make realloc() go 100x faster on Linux/NetBSD 2024-07-07 12:40:30 -07:00
MAP_NONBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_NORESERVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_NOSYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_POPULATE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_PRIVATE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_SHARED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_SHARED_VALIDATE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_SYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAP_TYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MATH_ERREXCEPT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MATH_ERRNO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAX_CANON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAX_DQ_TIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAX_HANDLE_SZ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAX_INPUT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAX_IQ_TIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAXNAMLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MAXQUOTAS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
mcast.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
MCAST_BLOCK_SOURCE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_EXCLUDE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_INCLUDE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_JOIN_GROUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_JOIN_SOURCE_GROUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_LEAVE_GROUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_LEAVE_SOURCE_GROUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_MSFILTER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCAST_UNBLOCK_SOURCE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCL_CURRENT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCL_FUTURE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MCL_ONFAULT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MEDIUM_ERROR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MEDIUM_SCAN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
mfd.h
MLD_LISTENER_QUERY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MLD_LISTENER_REDUCTION.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MLD_LISTENER_REPORT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
mlock.h Reduce header complexity 2023-11-28 14:39:42 -08:00
MNT_ASYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_BYFSID.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_DETACH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_EXPIRE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_FORCE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_NOATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_NOCLUSTERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_NOCLUSTERW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_NODEV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_NOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_NOSUID.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_RDONLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_RELATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_RELOAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_SNAPSHOT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_STRICTATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_SUIDDIR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_SYNCHRONOUS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MNT_UPDATE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
modem.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
mount.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
mremap.h
MS_ACTIVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_ASYNC.S Fix msync() flags on FreeBSD 2023-08-21 04:15:05 -07:00
MS_BIND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_DIRSYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_I_VERSION.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_INVALIDATE.S Fix msync() flags on FreeBSD 2023-08-21 04:15:05 -07:00
MS_KERNMOUNT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_LAZYTIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_MANDLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_MGC_MSK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_MGC_VAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_MOVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_NOATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_NODEV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_NODIRATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_NOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_NOSUID.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_NOUSER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_POSIXACL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_PRIVATE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_RDONLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_REC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_RELATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_REMOUNT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_RMT_MASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_SHARED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_SILENT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_SLAVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_STRICTATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_SYNC.S Fix msync() flags on FreeBSD 2023-08-21 04:15:05 -07:00
MS_SYNCHRONOUS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MS_UNBINDABLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
msg.h Reduce header complexity 2023-11-28 14:39:42 -08:00
MSG_BATCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_BCAST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_CMSG_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_CONFIRM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_CTRUNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_DONTROUTE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_DONTWAIT.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
MSG_EOF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_EOR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_ERRQUEUE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_EXCEPT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_FASTOPEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_FIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_INFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_MCAST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_MORE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_NOERROR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_NOSIGNAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_NOTIFICATION.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_OOB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_PARITY_ERROR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_PEEK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_PROXY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_RST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_STAT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_SYN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_TRUNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_WAITALL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
MSG_WAITFORONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
msync.h Reduce header complexity 2023-11-28 14:39:42 -08:00
NBBY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
NGROUPS_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
NL1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
NL2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
NL3.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
NLDLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
NOFLSH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
nr.h Remove sync_file_range() 2023-11-15 23:21:22 -08:00
NR_DQHASH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
NR_DQUOTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
nrlinux.h Replace COSMO define with _COSMO_SOURCE 2023-08-13 20:55:04 -07:00
o.h Reduce header complexity 2023-11-28 14:39:42 -08:00
O_APPEND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_ASYNC.S Make improvements 2023-08-21 02:34:17 -07:00
O_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_COMPRESSED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_CREAT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_DIRECT.S Make improvements 2023-08-21 02:34:17 -07:00
O_DIRECTORY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_DSYNC.S Make improvements 2023-08-21 02:34:17 -07:00
O_EXCL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_EXEC.S Test m=aarch64 on GitHub Actions 2023-06-05 15:23:00 -07:00
O_EXLOCK.S Make improvements 2023-08-21 02:34:17 -07:00
O_INDEXED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_LARGEFILE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_NOATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_NOCTTY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_NOFOLLOW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_NOFOLLOW_ANY.S Make improvements 2023-08-21 02:34:17 -07:00
O_NONBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_PATH.S Make improvements 2023-08-21 02:34:17 -07:00
O_RANDOM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_RSYNC.S Make improvements 2023-08-21 02:34:17 -07:00
O_SEARCH.S Make improvements 2023-08-21 02:34:17 -07:00
O_SEQUENTIAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_SHLOCK.S Make improvements 2023-08-21 02:34:17 -07:00
O_SYNC.S Make improvements 2023-08-21 02:34:17 -07:00
O_TMPFILE.S Fix the build 2023-08-13 07:17:40 -07:00
O_TRUNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_TTY_INIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
O_UNLINK.S Make improvements 2023-09-06 12:34:59 -07:00
O_VERIFY.S Make improvements 2023-08-21 02:34:17 -07:00
OCRNL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
OFDEL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
OFILL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ok.h Reduce header complexity 2023-11-28 14:39:42 -08:00
OLCUC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ONLCR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ONLRET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ONOCR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
OPOST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PARENB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PARMRK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PARODD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PENDIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PERSISTENT_RESERVE_IN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PERSISTENT_RESERVE_OUT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
personality.h Fix bugs in cosmocc toolchain 2023-06-08 23:44:03 -07:00
pf.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
PF_ALG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_APPLETALK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_ASH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_ATMPVC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_ATMSVC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_AX25.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_BLUETOOTH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_BRIDGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_CAIF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_CAN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_ECONET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_FILE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_IB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_IEEE802154.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_INET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_INET6.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_IPX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_IRDA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_ISDN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_IUCV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_KCM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_KEY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_LLC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_LOCAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_MPLS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_NETBEUI.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_NETLINK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_NETROM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_NFC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_PACKET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_PHONET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_PPPOX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_RDS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_ROSE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_ROUTE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_RXRPC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_SECURITY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_SNA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_TIPC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_UNIX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_UNSPEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_VSOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_WANPIPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PF_X25.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIO_FONT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIO_FONT8x8.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIO_FONT8x14.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIO_FONT8x16.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIO_FONTRESET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIO_FONTX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIO_VFONT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PIPE_BUF.S Fix console copy/paste issue 2023-11-08 09:29:45 -08:00
poll.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
POLL_ERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLL_HUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLL_IN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLL_MSG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLL_OUT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLL_PRI.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLHUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLNVAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLOUT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLPRI.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLRDBAND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLRDHUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLRDNORM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLWRBAND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POLLWRNORM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
posix.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
POSIX_FADV_DONTNEED.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_FADV_NOREUSE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
POSIX_FADV_NORMAL.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_FADV_RANDOM.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_FADV_SEQUENTIAL.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_FADV_WILLNEED.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_MADV_DONTNEED.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_MADV_NORMAL.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_MADV_RANDOM.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_MADV_SEQUENTIAL.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
POSIX_MADV_WILLNEED.S Make improvements for Actually Portable Emacs 2023-08-19 06:44:58 -07:00
pr.h Extend pr.h header with recent options (#881) 2023-08-20 02:49:58 -07:00
PRELIM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
prio.h Reduce header complexity 2023-11-28 14:39:42 -08:00
PRIO_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PRIO_MIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PRIO_PGRP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PRIO_PROCESS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PRIO_USER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
prot.h Make mmap() scalable 2024-07-05 23:26:00 -07:00
PROT_EXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PROT_GUARD.S Make mmap() scalable 2024-07-05 23:26:00 -07:00
PROT_NONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PROT_READ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PROT_WRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
pt.h
ptrace.h Reduce header complexity 2023-11-28 14:39:42 -08:00
PTRACE_ATTACH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_CONT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_DETACH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_CLONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_EXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_EXIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_FORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_SECCOMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_STOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_VFORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_EVENT_VFORK_DONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_GETEVENTMSG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_GETFPREGS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_GETFPXREGS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_GETREGS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_GETREGSET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_GETSIGINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_GETSIGMASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_INTERRUPT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_KILL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_LISTEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_MASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACECLONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACEEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACEEXIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACEFORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACESECCOMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACESYSGOOD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACEVFORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_O_TRACEVFORKDONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_PEEKDATA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_PEEKSIGINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_PEEKTEXT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_PEEKUSER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_POKEDATA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_POKETEXT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_POKEUSER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SECCOMP_GET_FILTER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SECCOMP_GET_METADATA.S Add PTRACE_SECCOMP_GET_METADATA (#882) 2023-08-20 02:49:22 -07:00
PTRACE_SEIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SETFPREGS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SETFPXREGS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SETOPTIONS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SETREGS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SETREGSET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SETSIGINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SETSIGMASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SINGLESTEP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_SYSCALL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
PTRACE_TRACEME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
pty.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
Q_GETFMT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
Q_GETINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
Q_GETQUOTA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
Q_QUOTAOFF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
Q_QUOTAON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
Q_SETINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
Q_SETQUOTA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
Q_SYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
R_OK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_AUTOBOOT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_DISABLE_CAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_ENABLE_CAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_HALT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_HALT_SYSTEM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_KEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_NOSYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_POWER_OFF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_POWERDOWN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_POWEROFF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RB_SW_SUSPEND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
read.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
reboot.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
REGTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RES_PRF_CLASS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RHF_GUARANTEE_START_INIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RHF_NO_LIBRARY_REPLACEMENT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
rlim.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
RLIM_INFINITY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIM_NLIMITS.S Remove old stack code and improve dirstream 2023-08-16 07:54:40 -07:00
RLIM_SAVED_CUR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIM_SAVED_MAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
rlimit.h Reduce header complexity 2023-11-28 14:39:42 -08:00
RLIMIT_AS.S Improve dlopen() on Apple Silicon 2023-11-17 02:33:14 -08:00
RLIMIT_CORE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_CPU.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_DATA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_FSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_LOCKS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_MEMLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_MSGQUEUE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_NICE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_NOFILE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_NPROC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_NPTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_RSS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_RTPRIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_RTTIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_SBSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_SIGPENDING.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_STACK.S Remove old stack code and improve dirstream 2023-08-16 07:54:40 -07:00
RLIMIT_SWAP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RLIMIT_VMEM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RPM_PCO_ADD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RPM_PCO_CHANGE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RPM_PCO_SETGLOBAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RRQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RTF_NOFORWARD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RTF_NOPMTUDISC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
rusage.h Reduce header complexity 2023-11-28 14:39:42 -08:00
RUSAGE_BOTH.S Make improvements 2023-10-08 08:59:53 -07:00
RUSAGE_CHILDREN.S Make improvements 2023-10-08 08:59:53 -07:00
RUSAGE_SELF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
RUSAGE_THREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
s.h Rerun clang-format on the repo (#1217) 2024-06-15 16:34:48 -04:00
sa.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
SA_NOCLDSTOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_NOCLDWAIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_NODEFER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_NOMASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_ONESHOT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_ONSTACK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_RESETHAND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_RESTART.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SA_SIGINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SARMAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
sched.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
SCHED_BATCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCHED_DEADLINE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCHED_FIFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCHED_IDLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCHED_OTHER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCHED_RESET_ON_FORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCHED_RR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
scm.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
SCM_CREDENTIALS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCM_RIGHTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCM_TIMESTAMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCM_TIMESTAMPING.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCM_TIMESTAMPNS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SCM_WIFI_STATUS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
seek.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SEEK_DATA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SEEK_HOLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SEGSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SEGV_ACCERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SEGV_MAPERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SEGV_PKUERR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SEND_DIAGNOSTIC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SEND_VOLUME_TAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SET_LIMITS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SET_WINDOW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
sf.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
SF_MNOWAIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SF_NODISKIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SF_SYNC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SFD_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SFD_NONBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
shm.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SHM_ANON.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_DEST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_EXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_HUGETLB.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_INFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_LOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_LOCKED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_NORESERVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_R.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_RDONLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_REMAP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_RND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_STAT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_UNLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHM_W.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
shut.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SHUT_RD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHUT_RDWR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SHUT_WR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_ASYNCIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_ASYNCNL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_KERNEL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_MESGQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_NOINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_QUEUE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_TIMER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_TKILL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SI_USER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
sicode.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
sig.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SIG_BLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIG_SETMASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIG_UNBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGABRT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGALRM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGBUS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGCHLD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGCONT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGEMT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGEV_NONE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGEV_SIGNAL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGEV_THREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGFPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGHUP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGILL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGINFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGINT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGIO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGIOT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGKILL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGPIPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGPOLL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGPROF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGPWR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGQUIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGRTMAX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGRTMIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGSEGV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGSTKFLT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGSTOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGSYS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGTERM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGTHR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGTRAP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGTSTP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGTTIN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGTTOU.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGURG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGUSR1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGUSR2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGVTALRM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGWINCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGXCPU.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SIGXFSZ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
sio.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SIOCADDDLCI.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCADDMULTI.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCADDRT.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCDARP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCDELDLCI.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCDELMULTI.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCDELRT.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCDEVPRIVATE.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCDIFADDR.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCDRARP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGARP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFADDR.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFBR.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFBRDADDR.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFCONF.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFCOUNT.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFDSTADDR.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFENCAP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFFLAGS.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFHWADDR.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFINDEX.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFMAP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFMEM.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFMETRIC.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFMTU.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFNAME.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFNETMASK.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGIFPFLAGS.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFSLAVE.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGIFTXQLEN.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGPGRP.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCGRARP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGSTAMP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCGSTAMPNS.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCPROTOPRIVATE.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCRTMSG.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSARP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFADDR.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSIFBR.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFBRDADDR.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSIFDSTADDR.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSIFENCAP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFFLAGS.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSIFHWADDR.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFHWBROADCAST.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFLINK.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFMAP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFMEM.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFMETRIC.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSIFMTU.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSIFNAME.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFNETMASK.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSIFPFLAGS.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFSLAVE.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSIFTXQLEN.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOCSPGRP.S Fix some more socket bugs 2023-07-23 16:31:10 -07:00
SIOCSRARP.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
SIOGIFINDEX.S Support non-blocking i/o across platforms 2023-07-23 02:56:47 -07:00
so.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SO_ACCEPTCONN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_BROADCAST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_DEBUG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_DONTROUTE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_ERROR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_KEEPALIVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_LINGER.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_OOBINLINE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_RCVBUF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_RCVLOWAT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_RCVTIMEO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_REUSEADDR.S Clean up some code 2023-10-11 11:45:31 -07:00
SO_REUSEPORT.S Make more fixes and improvements 2023-07-29 18:44:15 -07:00
SO_SNDBUF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_SNDLOWAT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_SNDTIMEO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_TYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SO_USELOOPBACK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
sock.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SOCK_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_DCCP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_DGRAM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_NONBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_PACKET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_RAW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_RDM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_SEQPACKET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SOCK_STREAM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
sol.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SOL_SOCKET.S Make more fixes and improvements 2023-07-29 18:44:15 -07:00
SOMAXCONN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
splice.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SPLICE_F_GIFT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SPLICE_F_MORE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SPLICE_F_MOVE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SPLICE_F_NONBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ss.h Reduce header complexity 2023-11-28 14:39:42 -08:00
SS_DISABLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SS_ONSTACK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
st.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
ST_APPEND.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_IMMUTABLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_MANDLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_NOATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_NODEV.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_NODIRATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_NOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_NOSUID.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_RDONLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_RELATIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_SYNCHRONOUS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
ST_WRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SUBCMDMASK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SUBCMDSHIFT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SYMTYPE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SYS_SECCOMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
SYS_USER_DISPATCH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
syscon.internal.h Remove .internal from more header filenames 2024-08-04 12:52:25 -07:00
T_FMT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
T_FMT_AMPM.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TAB1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TAB2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TAB3.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TABDLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCGETS.S Fix BSD regressions 2023-07-01 00:17:33 -07:00
TCIFLUSH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCIOFLUSH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCOFLUSH.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
tcp.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
TCP_CC_INFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_CONGESTION.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_COOKIE_TRANSACTIONS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_CORK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_DEFER_ACCEPT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_FASTOPEN.S Test m=aarch64 on GitHub Actions 2023-06-05 15:23:00 -07:00
TCP_FASTOPEN_CONNECT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_INFO.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_KEEPCNT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_KEEPIDLE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_KEEPINTVL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_LINGER2.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_MAXSEG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_MD5SIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_MD5SIG_MAXKEYLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_NODELAY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_NOTSENT_LOWAT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_QUEUE_SEQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_QUICKACK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_REPAIR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_REPAIR_OPTIONS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_REPAIR_QUEUE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_SAVE_SYN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_SAVED_SYN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_SYNCNT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_THIN_DUPACK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_THIN_LINEAR_TIMEOUTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_TIMESTAMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_ULP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_USER_TIMEOUT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TCP_WINDOW_CLAMP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
tcpopt.h
TCSETS.S Fix BSD regressions 2023-07-01 00:17:33 -07:00
termios.h Reduce header complexity 2023-11-28 14:39:42 -08:00
TEST_UNIT_READY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TFD_CLOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TFD_NONBLOCK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TFD_TIMER_ABSTIME.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TGEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TGREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TGWRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
th.h
timer.h
TIOCCONS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCGETD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCGWINSZ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCINQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_CAR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_CD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_CTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_DCD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_DSR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_DTR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_LE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_RI.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_RNG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_RTS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_SR.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCM_ST.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCMBIC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCMBIS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCMGET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCMODG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCMODS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCMSDTRWAIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCMSET.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCNOTTY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCNXCL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCOUTQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_DATA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_DOSTOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_FLUSHREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_FLUSHWRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_IOCTL.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_NOSTOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_START.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCPKT_STOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCSCTTY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCSETD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCSIG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCSPGRP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TIOCSTI.S Fix bugs in termios library and cleanup code 2023-06-14 19:30:52 -07:00
TIOCSWINSZ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TMAGLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TOEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TOREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TOSTOP.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TOWRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TRANSIENT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TRAP_BRKPT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TRAP_TRACE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TSGID.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TSUID.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TSVTX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TTYDEF_CFLAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TTYDEF_IFLAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TTYDEF_LFLAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TTYDEF_OFLAG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TTYDEF_SPEED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TUEXEC.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TUREAD.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TUWRITE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
TVERSLEN.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
uc.h Reduce header complexity 2023-11-28 14:39:42 -08:00
UDP_ENCAP_ESPINUDP_NON_IKE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
UDP_NO_CHECK6_RX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
UDP_NO_CHECK6_TX.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
UL_GETFSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
UL_SETFSIZE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
UMOUNT_NOFOLLOW.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
unmount.h Reduce header complexity 2023-11-28 14:39:42 -08:00
USRQUOTA.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
utime.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
UTIME_NOW.S Test m=aarch64 on GitHub Actions 2023-06-05 15:23:00 -07:00
UTIME_OMIT.S Test m=aarch64 on GitHub Actions 2023-06-05 15:23:00 -07:00
VDISCARD.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VEOF.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VEOL.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VEOL2.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VERASE.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VINTR.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VKILL.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VLNEXT.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VMIN.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VQUIT.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VREPRINT.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VSTART.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VSTOP.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VSUSP.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VSWTC.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VT1.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
VTDLY.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
VTIME.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
VWERASE.S Implement basic canonical mode for Windows 2023-10-03 22:36:22 -07:00
w.h Run clang-format (#1197) 2024-06-01 16:30:43 -04:00
W_OK.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
waitid.h Reduce header complexity 2023-11-28 14:39:42 -08:00
WCONTINUED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WEOF.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WEXITED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WNOHANG.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WNOWAIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WORD_BIT.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WRQ.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WSTOPPED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
WUNTRACED.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
X_OK.S Get Fat Emacs working in Windows Console 2023-08-18 05:00:30 -07:00
XATTR_CREATE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
XATTR_REPLACE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
XCASE.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00
xopen.h
XTABS.S Get threads working well on MacOS Arm64 2023-06-04 01:57:10 -07:00