diff --git a/README.md b/README.md index 793536229..8ea2863a3 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ a build-once run-anywhere language, like Java, except it doesn't need an interpreter or virtual machine. Instead, it reconfigures stock GCC to output a POSIX-approved polyglot format that runs natively on Linux + -Mac + Windows + FreeBSD + OpenBSD + BIOS with the best possible +Mac + Windows + FreeBSD + OpenBSD + NetBSD + BIOS with the best possible performance and the tiniest footprint imaginable. ## Background diff --git a/ape/ape.S b/ape/ape.S index 3c0cf479e..ff3c7e8b3 100644 --- a/ape/ape.S +++ b/ape/ape.S @@ -518,7 +518,7 @@ ape.phdrs: .quad 0 # p_memsz .quad 16 # p_align .align __SIZEOF_POINTER__ - .long PT_NOTE # openbsd note + .long PT_NOTE # notes .long PF_R .stub .Lape.note.offset,quad .stub .Lape.note.vaddr,quad @@ -530,15 +530,28 @@ ape.phdrs: .section .note.openbsd.ident,"a",@progbits .Lopenbsd.ident: - .long 8 - .long 4 - .long 0x1 - .asciz "OpenBSD" - .long 0 - .size .Lopenbsd.ident,.-.Lopenbsd.ident + .long 2f-1f + .long 4f-3f + .long 1 +1: .asciz "OpenBSD" +2: .align 4 +3: .long 0 +4: .size .Lopenbsd.ident,.-.Lopenbsd.ident .type .Lopenbsd.ident,@object .previous + .section .note.netbsd.ident,"a",@progbits +.Lnetbsd.ident: + .long 2f-1f + .long 4f-3f + .long 1 +1: .asciz "NetBSD" +2: .align 4 +3: .long 901000000 +4: .size .Lnetbsd.ident,.-.Lnetbsd.ident + .type .Lnetbsd.ident,@object + .previous + /* ▄▄███▄ ▄▄████████▄ ▄█████████████▄ diff --git a/ape/ape.lds b/ape/ape.lds index 7ca29a2c8..bb9c51876 100644 --- a/ape/ape.lds +++ b/ape/ape.lds @@ -227,6 +227,7 @@ SECTIONS { . = ALIGN(. != 0 ? __SIZEOF_POINTER__ : 1); HIDDEN(.Lape.note = .); KEEP(*(.note.openbsd.ident)) + KEEP(*(.note.netbsd.ident)) HIDDEN(.Lape.note.end = .); . += 1; diff --git a/libc/calls/stat2linux.c b/libc/calls/stat2linux.c index ba6b0ea66..0f9306b3e 100644 --- a/libc/calls/stat2linux.c +++ b/libc/calls/stat2linux.c @@ -70,6 +70,12 @@ static textstartup void __stat2linux_openbsd(union metastat *ms) { st_ctim); } +static textstartup void __stat2linux_netbsd(union metastat *ms) { + SWITCHEROO(ms->netbsd, ms->linux, st_dev, st_ino, st_nlink, st_mode, st_uid, + st_gid, st_rdev, st_size, st_blksize, st_blocks, st_atim, st_mtim, + st_ctim); +} + /** * Transcodes “The Dismal Data Structure” from BSD→Linux ABI. * @asyncsignalsafe @@ -82,6 +88,8 @@ textstartup void __stat2linux(void *ms) { __stat2linux_freebsd((union metastat *)ms); } else if (SupportsOpenbsd() && IsOpenbsd()) { __stat2linux_openbsd((union metastat *)ms); + } else if (SupportsNetbsd() && IsNetbsd()) { + __stat2linux_netbsd((union metastat *)ms); } } } diff --git a/libc/calls/struct/metastat.internal.h b/libc/calls/struct/metastat.internal.h index 3e3dca72a..70fb0a4e1 100644 --- a/libc/calls/struct/metastat.internal.h +++ b/libc/calls/struct/metastat.internal.h @@ -47,11 +47,24 @@ struct stat_openbsd { struct timespec __st_birthtim; }; +struct stat_netbsd { + uint64_t st_dev; + uint32_t st_mode; + uint64_t st_ino; + uint32_t st_nlink, st_uid, st_gid; + uint64_t st_rdev; + struct timespec st_atim, st_mtim, st_ctim, st_birthtim; + int64_t st_size, st_blocks; + int32_t st_blksize; + uint32_t st_flags, st_gen, st_spare[2]; +}; + union metastat { struct stat linux; struct stat_xnu xnu; struct stat_freebsd freebsd; struct stat_openbsd openbsd; + struct stat_netbsd netbsd; }; COSMOPOLITAN_C_END_ diff --git a/libc/calls/struct/sigaction-netbsd.h b/libc/calls/struct/sigaction-netbsd.h new file mode 100644 index 000000000..0264f2515 --- /dev/null +++ b/libc/calls/struct/sigaction-netbsd.h @@ -0,0 +1,18 @@ +#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGACTION_NETBSD_H_ +#define COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGACTION_NETBSD_H_ +#if !(__ASSEMBLER__ + __LINKER__ + 0) +COSMOPOLITAN_C_START_ + +struct sigset_netbsd { + uint32_t sig[4]; +}; + +struct sigaction_netbsd { + intptr_t sa_handler; + struct sigset_netbsd sa_mask; + uint32_t sa_flags; +}; + +COSMOPOLITAN_C_END_ +#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ +#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGACTION_NETBSD_H_ */ diff --git a/libc/dce.h b/libc/dce.h index c4bc08455..b58bbec89 100644 --- a/libc/dce.h +++ b/libc/dce.h @@ -8,26 +8,18 @@ #ifndef SUPPORT_VECTOR /** * Supported Platforms Tuning Knob (Runtime & Compile-Time) - * - * Cosmopolitan's design allows us to support eight platforms. We enable - * them all by default, since we're able to do eight so efficiently. We - * can't do more, due to the way the 80x86 instruction set is encoded. - * - * The user may optionally tune this bitmask, which effectively asks the - * compiler to leave out system call polyfills for a platform, which may - * offer marginal improvements in terms of code size and performance, at - * the cost of portability. + * Tuning this bitmask will remove platform polyfills at compile-time. */ #define SUPPORT_VECTOR 0b11111111 #endif + #define LINUX 1 #define METAL 2 #define WINDOWS 4 #define XNU 8 #define OPENBSD 16 #define FREEBSD 32 -/* #define YOUR_CLOUD_PLATFORM_HERE 64 /\* jtunney@gmail.com *\/ */ -/* #define YOUR_CLOUD_PLATFORM_HERE 128 /\* jtunney@gmail.com *\/ */ +#define NETBSD 64 #ifdef NDEBUG #define NoDebug() 1 @@ -89,28 +81,31 @@ #define SupportsXnu() ((SUPPORT_VECTOR & XNU) == XNU) #define SupportsFreebsd() ((SUPPORT_VECTOR & FREEBSD) == FREEBSD) #define SupportsOpenbsd() ((SUPPORT_VECTOR & OPENBSD) == OPENBSD) -#define SupportsBsd() (!!(SUPPORT_VECTOR & (XNU | FREEBSD | OPENBSD))) +#define SupportsNetbsd() ((SUPPORT_VECTOR & NETBSD) == NETBSD) +#define SupportsBsd() (!!(SUPPORT_VECTOR & (XNU | FREEBSD | OPENBSD | NETBSD))) #define SupportsSystemv() \ - ((SUPPORT_VECTOR & (LINUX | METAL | XNU | OPENBSD | FREEBSD)) != 0) + ((SUPPORT_VECTOR & (LINUX | METAL | XNU | OPENBSD | FREEBSD | NETBSD)) != 0) #ifndef __ASSEMBLER__ #define __HOSTOS (__hostos & SUPPORT_VECTOR) #define IsLinux() ((__HOSTOS & LINUX) == LINUX) #define IsMetal() ((__HOSTOS & METAL) == METAL) #define IsWindows() ((__HOSTOS & WINDOWS) == WINDOWS) -#define IsBsd() ((__HOSTOS & (XNU | FREEBSD | OPENBSD)) != 0) +#define IsBsd() ((__HOSTOS & (XNU | FREEBSD | OPENBSD | NETBSD)) != 0) #define IsXnu() ((__HOSTOS & XNU) == XNU) #define IsFreebsd() ((__HOSTOS & FREEBSD) == FREEBSD) #define IsOpenbsd() ((__HOSTOS & OPENBSD) == OPENBSD) +#define IsNetbsd() ((__HOSTOS & NETBSD) == NETBSD) #else /* clang-format off */ #define IsLinux() $LINUX,__hostos(%rip) #define IsMetal() $METAL,__hostos(%rip) #define IsWindows() $WINDOWS,__hostos(%rip) -#define IsBsd() $XNU|FREEBSD|OPENBSD,__hostos(%rip) +#define IsBsd() $XNU|FREEBSD|OPENBSD|NETBSD,__hostos(%rip) #define IsXnu() $XNU,__hostos(%rip) #define IsFreebsd() $FREEBSD,__hostos(%rip) #define IsOpenbsd() $OPENBSD,__hostos(%rip) +#define IsNetbsd() $NETBSD,__hostos(%rip) /* clang-format on */ #endif diff --git a/libc/fmt/pflink.h b/libc/fmt/pflink.h index 1c7ca5249..67f142748 100644 --- a/libc/fmt/pflink.h +++ b/libc/fmt/pflink.h @@ -88,9 +88,9 @@ static long __pflink(long x) { x |= kCp437[0]; x |= ntoa(0, 0, 0, 0, 0, 0, 0, 0, 0); x |= ftoa(0, 0, 0, 0, 0, 0); - x |= strnwidth(0, 0); - x |= strnwidth16(0, 0); - x |= wcsnwidth(0, 0); + x |= strnwidth(0, 0, 0); + x |= strnwidth16(0, 0, 0); + x |= wcsnwidth(0, 0, 0); x |= malloc(0); x |= __grow(0, 0, 0, 0); x |= (intptr_t)strerror(0); diff --git a/libc/fmt/stoa.c b/libc/fmt/stoa.c index 097d8739b..423cd447d 100644 --- a/libc/fmt/stoa.c +++ b/libc/fmt/stoa.c @@ -144,14 +144,14 @@ int stoa(int out(long, void *), void *arg, void *data, unsigned long flags, w = precision; if (signbit == 63) { if (weaken(wcsnwidth)) { - w = weaken(wcsnwidth)((const wchar_t *)p, precision); + w = weaken(wcsnwidth)((const wchar_t *)p, precision, 0); } } else if (signbit == 15) { if (weaken(strnwidth16)) { - w = weaken(strnwidth16)((const char16_t *)p, precision); + w = weaken(strnwidth16)((const char16_t *)p, precision, 0); } } else if (weaken(strnwidth)) { - w = weaken(strnwidth)(p, precision); + w = weaken(strnwidth)(p, precision, 0); } if (w < width) { pad = width - w; diff --git a/libc/str/strncat.c b/libc/str/strncat.c index 33145751d..5215c9671 100644 --- a/libc/str/strncat.c +++ b/libc/str/strncat.c @@ -16,7 +16,6 @@ │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ -#include "libc/macros.h" #include "libc/str/str.h" /** diff --git a/libc/sysv/calls/__acl_aclcheck_fd.s b/libc/sysv/calls/__acl_aclcheck_fd.s index 59b95d88d..df36ccaa8 100644 --- a/libc/sysv/calls/__acl_aclcheck_fd.s +++ b/libc/sysv/calls/__acl_aclcheck_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_aclcheck_fd 0xffff0162ffffffff globl +.scall __acl_aclcheck_fd 0xffffff162fffffff globl diff --git a/libc/sysv/calls/__acl_aclcheck_file.s b/libc/sysv/calls/__acl_aclcheck_file.s index cb315e65c..10e5d6ac6 100644 --- a/libc/sysv/calls/__acl_aclcheck_file.s +++ b/libc/sysv/calls/__acl_aclcheck_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_aclcheck_file 0xffff0161ffffffff globl +.scall __acl_aclcheck_file 0xffffff161fffffff globl diff --git a/libc/sysv/calls/__acl_aclcheck_link.s b/libc/sysv/calls/__acl_aclcheck_link.s index b9b4ac51e..eddc4c8e6 100644 --- a/libc/sysv/calls/__acl_aclcheck_link.s +++ b/libc/sysv/calls/__acl_aclcheck_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_aclcheck_link 0xffff01acffffffff globl +.scall __acl_aclcheck_link 0xffffff1acfffffff globl diff --git a/libc/sysv/calls/__acl_delete_fd.s b/libc/sysv/calls/__acl_delete_fd.s index eb62a89a1..1035d7fbc 100644 --- a/libc/sysv/calls/__acl_delete_fd.s +++ b/libc/sysv/calls/__acl_delete_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_delete_fd 0xffff0160ffffffff globl +.scall __acl_delete_fd 0xffffff160fffffff globl diff --git a/libc/sysv/calls/__acl_delete_file.s b/libc/sysv/calls/__acl_delete_file.s index b58be8f09..9cf34fecc 100644 --- a/libc/sysv/calls/__acl_delete_file.s +++ b/libc/sysv/calls/__acl_delete_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_delete_file 0xffff015fffffffff globl +.scall __acl_delete_file 0xffffff15ffffffff globl diff --git a/libc/sysv/calls/__acl_delete_link.s b/libc/sysv/calls/__acl_delete_link.s index 6ed2bb39d..6d3abba7c 100644 --- a/libc/sysv/calls/__acl_delete_link.s +++ b/libc/sysv/calls/__acl_delete_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_delete_link 0xffff01abffffffff globl +.scall __acl_delete_link 0xffffff1abfffffff globl diff --git a/libc/sysv/calls/__acl_get_fd.s b/libc/sysv/calls/__acl_get_fd.s index 30fec7dbc..24151495a 100644 --- a/libc/sysv/calls/__acl_get_fd.s +++ b/libc/sysv/calls/__acl_get_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_get_fd 0xffff015dffffffff globl +.scall __acl_get_fd 0xffffff15dfffffff globl diff --git a/libc/sysv/calls/__acl_get_file.s b/libc/sysv/calls/__acl_get_file.s index 49c712089..f477fdd7a 100644 --- a/libc/sysv/calls/__acl_get_file.s +++ b/libc/sysv/calls/__acl_get_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_get_file 0xffff015bffffffff globl +.scall __acl_get_file 0xffffff15bfffffff globl diff --git a/libc/sysv/calls/__acl_get_link.s b/libc/sysv/calls/__acl_get_link.s index ef64c7f43..118d0297d 100644 --- a/libc/sysv/calls/__acl_get_link.s +++ b/libc/sysv/calls/__acl_get_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_get_link 0xffff01a9ffffffff globl +.scall __acl_get_link 0xffffff1a9fffffff globl diff --git a/libc/sysv/calls/__acl_set_fd.s b/libc/sysv/calls/__acl_set_fd.s index 4aa97145f..2e7e4c024 100644 --- a/libc/sysv/calls/__acl_set_fd.s +++ b/libc/sysv/calls/__acl_set_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_set_fd 0xffff015effffffff globl +.scall __acl_set_fd 0xffffff15efffffff globl diff --git a/libc/sysv/calls/__acl_set_file.s b/libc/sysv/calls/__acl_set_file.s index ced69cf7a..e401435d5 100644 --- a/libc/sysv/calls/__acl_set_file.s +++ b/libc/sysv/calls/__acl_set_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_set_file 0xffff015cffffffff globl +.scall __acl_set_file 0xffffff15cfffffff globl diff --git a/libc/sysv/calls/__acl_set_link.s b/libc/sysv/calls/__acl_set_link.s index 8427b8057..72fda157d 100644 --- a/libc/sysv/calls/__acl_set_link.s +++ b/libc/sysv/calls/__acl_set_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __acl_set_link 0xffff01aaffffffff globl +.scall __acl_set_link 0xffffff1aafffffff globl diff --git a/libc/sysv/calls/__bsd_setegid.s b/libc/sysv/calls/__bsd_setegid.s index a13fe9809..bba1771c9 100644 --- a/libc/sysv/calls/__bsd_setegid.s +++ b/libc/sysv/calls/__bsd_setegid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __bsd_setegid 0x00b600b620b6ffff globl hidden +.scall __bsd_setegid 0xfff0b60b620b6fff globl hidden diff --git a/libc/sysv/calls/__bsd_seteuid.s b/libc/sysv/calls/__bsd_seteuid.s index 5f1a083ae..9ddd51a7c 100644 --- a/libc/sysv/calls/__bsd_seteuid.s +++ b/libc/sysv/calls/__bsd_seteuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __bsd_seteuid 0x00b700b720b7ffff globl hidden +.scall __bsd_seteuid 0xfff0b70b720b7fff globl hidden diff --git a/libc/sysv/calls/__cap_rights_get.s b/libc/sysv/calls/__cap_rights_get.s index 2bde7efa9..2b762fe36 100644 --- a/libc/sysv/calls/__cap_rights_get.s +++ b/libc/sysv/calls/__cap_rights_get.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __cap_rights_get 0xffff0203ffffffff globl +.scall __cap_rights_get 0xffffff203fffffff globl diff --git a/libc/sysv/calls/__disable_threadsignal.s b/libc/sysv/calls/__disable_threadsignal.s index 5923e2e80..1a4416670 100644 --- a/libc/sysv/calls/__disable_threadsignal.s +++ b/libc/sysv/calls/__disable_threadsignal.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __disable_threadsignal 0xffffffff214bffff globl +.scall __disable_threadsignal 0xfffffffff214bfff globl diff --git a/libc/sysv/calls/__get_tcb.s b/libc/sysv/calls/__get_tcb.s index df591feb1..f8f116541 100644 --- a/libc/sysv/calls/__get_tcb.s +++ b/libc/sysv/calls/__get_tcb.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __get_tcb 0x014affffffffffff globl +.scall __get_tcb 0xfff14affffffffff globl diff --git a/libc/sysv/calls/__mac_execve.s b/libc/sysv/calls/__mac_execve.s index c51a45468..22f4ccec7 100644 --- a/libc/sysv/calls/__mac_execve.s +++ b/libc/sysv/calls/__mac_execve.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_execve 0xffff019f217cffff globl +.scall __mac_execve 0xffffff19f217cfff globl diff --git a/libc/sysv/calls/__mac_get_fd.s b/libc/sysv/calls/__mac_get_fd.s index 71e8a7ca4..c1fa0e582 100644 --- a/libc/sysv/calls/__mac_get_fd.s +++ b/libc/sysv/calls/__mac_get_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_get_fd 0xffff01822184ffff globl +.scall __mac_get_fd 0xffffff1822184fff globl diff --git a/libc/sysv/calls/__mac_get_file.s b/libc/sysv/calls/__mac_get_file.s index 479caada6..44c011a0f 100644 --- a/libc/sysv/calls/__mac_get_file.s +++ b/libc/sysv/calls/__mac_get_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_get_file 0xffff0183217effff globl +.scall __mac_get_file 0xffffff183217efff globl diff --git a/libc/sysv/calls/__mac_get_link.s b/libc/sysv/calls/__mac_get_link.s index 356958979..7c7f87bc5 100644 --- a/libc/sysv/calls/__mac_get_link.s +++ b/libc/sysv/calls/__mac_get_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_get_link 0xffff019a2180ffff globl +.scall __mac_get_link 0xffffff19a2180fff globl diff --git a/libc/sysv/calls/__mac_get_mount.s b/libc/sysv/calls/__mac_get_mount.s index a7b0d88fe..af9102fad 100644 --- a/libc/sysv/calls/__mac_get_mount.s +++ b/libc/sysv/calls/__mac_get_mount.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_get_mount 0xffffffff21a9ffff globl +.scall __mac_get_mount 0xfffffffff21a9fff globl diff --git a/libc/sysv/calls/__mac_get_pid.s b/libc/sysv/calls/__mac_get_pid.s index b2064973e..a2595602e 100644 --- a/libc/sysv/calls/__mac_get_pid.s +++ b/libc/sysv/calls/__mac_get_pid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_get_pid 0xffff01992186ffff globl +.scall __mac_get_pid 0xffffff1992186fff globl diff --git a/libc/sysv/calls/__mac_get_proc.s b/libc/sysv/calls/__mac_get_proc.s index 30c55e5ad..2a55fc26d 100644 --- a/libc/sysv/calls/__mac_get_proc.s +++ b/libc/sysv/calls/__mac_get_proc.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_get_proc 0xffff01802182ffff globl +.scall __mac_get_proc 0xffffff1802182fff globl diff --git a/libc/sysv/calls/__mac_getfsstat.s b/libc/sysv/calls/__mac_getfsstat.s index e4a57d58f..819ff23af 100644 --- a/libc/sysv/calls/__mac_getfsstat.s +++ b/libc/sysv/calls/__mac_getfsstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_getfsstat 0xffffffff21aaffff globl +.scall __mac_getfsstat 0xfffffffff21aafff globl diff --git a/libc/sysv/calls/__mac_mount.s b/libc/sysv/calls/__mac_mount.s index bd3d1a81f..5a57ededb 100644 --- a/libc/sysv/calls/__mac_mount.s +++ b/libc/sysv/calls/__mac_mount.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_mount 0xffffffff21a8ffff globl +.scall __mac_mount 0xfffffffff21a8fff globl diff --git a/libc/sysv/calls/__mac_set_fd.s b/libc/sysv/calls/__mac_set_fd.s index 634edece3..f82d1ccfa 100644 --- a/libc/sysv/calls/__mac_set_fd.s +++ b/libc/sysv/calls/__mac_set_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_set_fd 0xffff01842185ffff globl +.scall __mac_set_fd 0xffffff1842185fff globl diff --git a/libc/sysv/calls/__mac_set_file.s b/libc/sysv/calls/__mac_set_file.s index 8db95f017..3c20525b5 100644 --- a/libc/sysv/calls/__mac_set_file.s +++ b/libc/sysv/calls/__mac_set_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_set_file 0xffff0185217fffff globl +.scall __mac_set_file 0xffffff185217ffff globl diff --git a/libc/sysv/calls/__mac_set_link.s b/libc/sysv/calls/__mac_set_link.s index ed73ec721..22598d9c0 100644 --- a/libc/sysv/calls/__mac_set_link.s +++ b/libc/sysv/calls/__mac_set_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_set_link 0xffff019b2181ffff globl +.scall __mac_set_link 0xffffff19b2181fff globl diff --git a/libc/sysv/calls/__mac_set_proc.s b/libc/sysv/calls/__mac_set_proc.s index 2abc01db8..c0b7e1a91 100644 --- a/libc/sysv/calls/__mac_set_proc.s +++ b/libc/sysv/calls/__mac_set_proc.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_set_proc 0xffff01812183ffff globl +.scall __mac_set_proc 0xffffff1812183fff globl diff --git a/libc/sysv/calls/__mac_syscall.s b/libc/sysv/calls/__mac_syscall.s index e93e8f80c..63b029b56 100644 --- a/libc/sysv/calls/__mac_syscall.s +++ b/libc/sysv/calls/__mac_syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __mac_syscall 0xffffffff217dffff globl +.scall __mac_syscall 0xfffffffff217dfff globl diff --git a/libc/sysv/calls/__old_semwait_signal.s b/libc/sysv/calls/__old_semwait_signal.s index a8fd1d716..9db266ad1 100644 --- a/libc/sysv/calls/__old_semwait_signal.s +++ b/libc/sysv/calls/__old_semwait_signal.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __old_semwait_signal 0xffffffff2172ffff globl +.scall __old_semwait_signal 0xfffffffff2172fff globl diff --git a/libc/sysv/calls/__old_semwait_signal_nocancel.s b/libc/sysv/calls/__old_semwait_signal_nocancel.s index e99fb3673..5e8de29ce 100644 --- a/libc/sysv/calls/__old_semwait_signal_nocancel.s +++ b/libc/sysv/calls/__old_semwait_signal_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __old_semwait_signal_nocancel 0xffffffff2173ffff globl +.scall __old_semwait_signal_nocancel 0xfffffffff2173fff globl diff --git a/libc/sysv/calls/__pthread_canceled.s b/libc/sysv/calls/__pthread_canceled.s index c142f96e7..08249155f 100644 --- a/libc/sysv/calls/__pthread_canceled.s +++ b/libc/sysv/calls/__pthread_canceled.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __pthread_canceled 0xffffffff214dffff globl +.scall __pthread_canceled 0xfffffffff214dfff globl diff --git a/libc/sysv/calls/__pthread_chdir.s b/libc/sysv/calls/__pthread_chdir.s index 363b79503..240325c77 100644 --- a/libc/sysv/calls/__pthread_chdir.s +++ b/libc/sysv/calls/__pthread_chdir.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __pthread_chdir 0xffffffff215cffff globl +.scall __pthread_chdir 0xfffffffff215cfff globl diff --git a/libc/sysv/calls/__pthread_fchdir.s b/libc/sysv/calls/__pthread_fchdir.s index 31d93a368..51a27db77 100644 --- a/libc/sysv/calls/__pthread_fchdir.s +++ b/libc/sysv/calls/__pthread_fchdir.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __pthread_fchdir 0xffffffff215dffff globl +.scall __pthread_fchdir 0xfffffffff215dfff globl diff --git a/libc/sysv/calls/__pthread_kill.s b/libc/sysv/calls/__pthread_kill.s index 7f6afd910..69f87fc7a 100644 --- a/libc/sysv/calls/__pthread_kill.s +++ b/libc/sysv/calls/__pthread_kill.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __pthread_kill 0xffffffff2148ffff globl +.scall __pthread_kill 0xfffffffff2148fff globl diff --git a/libc/sysv/calls/__pthread_markcancel.s b/libc/sysv/calls/__pthread_markcancel.s index 949e40a52..c82da23e9 100644 --- a/libc/sysv/calls/__pthread_markcancel.s +++ b/libc/sysv/calls/__pthread_markcancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __pthread_markcancel 0xffffffff214cffff globl +.scall __pthread_markcancel 0xfffffffff214cfff globl diff --git a/libc/sysv/calls/__pthread_sigmask.s b/libc/sysv/calls/__pthread_sigmask.s index a9b78d29c..f1ba31ebc 100644 --- a/libc/sysv/calls/__pthread_sigmask.s +++ b/libc/sysv/calls/__pthread_sigmask.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __pthread_sigmask 0xffffffff2149ffff globl +.scall __pthread_sigmask 0xfffffffff2149fff globl diff --git a/libc/sysv/calls/__semwait_signal.s b/libc/sysv/calls/__semwait_signal.s index 4abdbf5b4..ae635821a 100644 --- a/libc/sysv/calls/__semwait_signal.s +++ b/libc/sysv/calls/__semwait_signal.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __semwait_signal 0xffffffff214effff globl +.scall __semwait_signal 0xfffffffff214efff globl diff --git a/libc/sysv/calls/__semwait_signal_nocancel.s b/libc/sysv/calls/__semwait_signal_nocancel.s index 3ae11fcb1..170f454c1 100644 --- a/libc/sysv/calls/__semwait_signal_nocancel.s +++ b/libc/sysv/calls/__semwait_signal_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __semwait_signal_nocancel 0xffffffff21a7ffff globl +.scall __semwait_signal_nocancel 0xfffffffff21a7fff globl diff --git a/libc/sysv/calls/__set_tcb.s b/libc/sysv/calls/__set_tcb.s index 90981ae1a..1143c41fc 100644 --- a/libc/sysv/calls/__set_tcb.s +++ b/libc/sysv/calls/__set_tcb.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __set_tcb 0x0149ffffffffffff globl +.scall __set_tcb 0xfff149ffffffffff globl diff --git a/libc/sysv/calls/__setugid.s b/libc/sysv/calls/__setugid.s index 2dd6db1ea..04120e922 100644 --- a/libc/sysv/calls/__setugid.s +++ b/libc/sysv/calls/__setugid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __setugid 0xffff0176ffffffff globl +.scall __setugid 0xffffff176fffffff globl diff --git a/libc/sysv/calls/__sigwait_nocancel.s b/libc/sysv/calls/__sigwait_nocancel.s index a4e1ed53f..b411eb135 100644 --- a/libc/sysv/calls/__sigwait_nocancel.s +++ b/libc/sysv/calls/__sigwait_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sigwait_nocancel 0xffffffff21a6ffff globl +.scall __sigwait_nocancel 0xfffffffff21a6fff globl diff --git a/libc/sysv/calls/__sys_accept.s b/libc/sysv/calls/__sys_accept.s index 494b7274f..a2ae96f83 100644 --- a/libc/sysv/calls/__sys_accept.s +++ b/libc/sysv/calls/__sys_accept.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_accept 0x001e021d201e002b globl hidden +.scall __sys_accept 0x01e01e21d201e02b globl hidden diff --git a/libc/sysv/calls/__sys_accept4.s b/libc/sysv/calls/__sys_accept4.s index b8125d4b0..fa595a7b6 100644 --- a/libc/sysv/calls/__sys_accept4.s +++ b/libc/sysv/calls/__sys_accept4.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_accept4 0x005d021dffff0120 globl hidden +.scall __sys_accept4 0xfff05d21dffff120 globl hidden diff --git a/libc/sysv/calls/__sys_connect.s b/libc/sysv/calls/__sys_connect.s index ea753bdd9..ac4a524e7 100644 --- a/libc/sysv/calls/__sys_connect.s +++ b/libc/sysv/calls/__sys_connect.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_connect 0x006200622062002a globl hidden +.scall __sys_connect 0x062062062206202a globl hidden diff --git a/libc/sysv/calls/__sys_dup3.s b/libc/sysv/calls/__sys_dup3.s index d3b353f3f..a926d7068 100644 --- a/libc/sysv/calls/__sys_dup3.s +++ b/libc/sysv/calls/__sys_dup3.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_dup3 0x0066ffffffff0124 globl hidden +.scall __sys_dup3 0x1c6066fffffff124 globl hidden diff --git a/libc/sysv/calls/__sys_execve.s b/libc/sysv/calls/__sys_execve.s index c014295e0..fd8b97279 100644 --- a/libc/sysv/calls/__sys_execve.s +++ b/libc/sysv/calls/__sys_execve.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_execve 0x003b003b203b003b globl hidden +.scall __sys_execve 0x03b03b03b203b03b globl hidden diff --git a/libc/sysv/calls/__sys_fork.s b/libc/sysv/calls/__sys_fork.s index c3398e5db..e9519041f 100644 --- a/libc/sysv/calls/__sys_fork.s +++ b/libc/sysv/calls/__sys_fork.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_fork 0x0002000220020039 globl hidden +.scall __sys_fork 0x0020020022002039 globl hidden diff --git a/libc/sysv/calls/__sys_fstat.s b/libc/sysv/calls/__sys_fstat.s index 9968b54a7..abc1d68c8 100644 --- a/libc/sysv/calls/__sys_fstat.s +++ b/libc/sysv/calls/__sys_fstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_fstat 0x0035022721530005 globl hidden +.scall __sys_fstat 0x1b80352272153005 globl hidden diff --git a/libc/sysv/calls/__sys_fstatat.s b/libc/sysv/calls/__sys_fstatat.s index 0a636dc1c..5caa7d7b4 100644 --- a/libc/sysv/calls/__sys_fstatat.s +++ b/libc/sysv/calls/__sys_fstatat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_fstatat 0x002a022821d60106 globl hidden +.scall __sys_fstatat 0x1d202a22821d6106 globl hidden diff --git a/libc/sysv/calls/__sys_ftruncate.s b/libc/sysv/calls/__sys_ftruncate.s index 333fa59d5..97c57b914 100644 --- a/libc/sysv/calls/__sys_ftruncate.s +++ b/libc/sysv/calls/__sys_ftruncate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_ftruncate 0x00c901e020c9004d globl hidden +.scall __sys_ftruncate 0x0c90c91e020c904d globl hidden diff --git a/libc/sysv/calls/__sys_getpeername.s b/libc/sysv/calls/__sys_getpeername.s index 5e818064f..12a061dfa 100644 --- a/libc/sysv/calls/__sys_getpeername.s +++ b/libc/sysv/calls/__sys_getpeername.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_getpeername 0x001f008d201f0034 globl hidden +.scall __sys_getpeername 0x01f01f08d201f034 globl hidden diff --git a/libc/sysv/calls/__sys_getsockname.s b/libc/sysv/calls/__sys_getsockname.s index def85d1ac..fee6040c8 100644 --- a/libc/sysv/calls/__sys_getsockname.s +++ b/libc/sysv/calls/__sys_getsockname.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_getsockname 0x0020002020200033 globl hidden +.scall __sys_getsockname 0x0200200202020033 globl hidden diff --git a/libc/sysv/calls/__sys_gettimeofday.s b/libc/sysv/calls/__sys_gettimeofday.s index e09f7ad6d..e8dac45c1 100644 --- a/libc/sysv/calls/__sys_gettimeofday.s +++ b/libc/sysv/calls/__sys_gettimeofday.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_gettimeofday 0x0043007420740060 globl hidden +.scall __sys_gettimeofday 0x1a20430742074060 globl hidden diff --git a/libc/sysv/calls/__sys_lseek.s b/libc/sysv/calls/__sys_lseek.s index 53fa7740d..e7798e7a1 100644 --- a/libc/sysv/calls/__sys_lseek.s +++ b/libc/sysv/calls/__sys_lseek.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_lseek 0x00c701de20c70008 globl hidden +.scall __sys_lseek 0x0c70c71de20c7008 globl hidden diff --git a/libc/sysv/calls/__sys_lstat.s b/libc/sysv/calls/__sys_lstat.s index ad3a61e64..209fed6d5 100644 --- a/libc/sysv/calls/__sys_lstat.s +++ b/libc/sysv/calls/__sys_lstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_lstat 0x0028002821540006 globl hidden +.scall __sys_lstat 0x1b90280282154006 globl hidden diff --git a/libc/sysv/calls/__sys_mmap.s b/libc/sysv/calls/__sys_mmap.s index 0932ee11f..c331e2e0b 100644 --- a/libc/sysv/calls/__sys_mmap.s +++ b/libc/sysv/calls/__sys_mmap.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_mmap 0x00c501dd20c50009 globl hidden +.scall __sys_mmap 0x0c50c51dd20c5009 globl hidden diff --git a/libc/sysv/calls/__sys_pipe.s b/libc/sysv/calls/__sys_pipe.s index a74fa08dd..9901b1a38 100644 --- a/libc/sysv/calls/__sys_pipe.s +++ b/libc/sysv/calls/__sys_pipe.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_pipe 0x0107021e202a0016 globl hidden +.scall __sys_pipe 0x02a10721e202a016 globl hidden diff --git a/libc/sysv/calls/__sys_pipe2.s b/libc/sysv/calls/__sys_pipe2.s index bac9997cf..057a6a771 100644 --- a/libc/sysv/calls/__sys_pipe2.s +++ b/libc/sysv/calls/__sys_pipe2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_pipe2 0x0065021effff0125 globl hidden +.scall __sys_pipe2 0x1c506521effff125 globl hidden diff --git a/libc/sysv/calls/__sys_pread.s b/libc/sysv/calls/__sys_pread.s index eb8d02105..3b5b5d277 100644 --- a/libc/sysv/calls/__sys_pread.s +++ b/libc/sysv/calls/__sys_pread.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_pread 0x00ad01db20990011 globl hidden +.scall __sys_pread 0x0ad0ad1db2099011 globl hidden diff --git a/libc/sysv/calls/__sys_preadv.s b/libc/sysv/calls/__sys_preadv.s index 59e97f0b2..caeef7a1f 100644 --- a/libc/sysv/calls/__sys_preadv.s +++ b/libc/sysv/calls/__sys_preadv.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_preadv 0x010b0121ffff0127 globl hidden +.scall __sys_preadv 0x12110b121ffff127 globl hidden diff --git a/libc/sysv/calls/__sys_pwrite.s b/libc/sysv/calls/__sys_pwrite.s index 793e9d5cf..20ce64e75 100644 --- a/libc/sysv/calls/__sys_pwrite.s +++ b/libc/sysv/calls/__sys_pwrite.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_pwrite 0x00ae01dc209a0012 globl hidden +.scall __sys_pwrite 0x0ae0ae1dc209a012 globl hidden diff --git a/libc/sysv/calls/__sys_pwritev.s b/libc/sysv/calls/__sys_pwritev.s index 15862baec..dd1d551f5 100644 --- a/libc/sysv/calls/__sys_pwritev.s +++ b/libc/sysv/calls/__sys_pwritev.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_pwritev 0x010c0122ffff0128 globl hidden +.scall __sys_pwritev 0x12210c122ffff128 globl hidden diff --git a/libc/sysv/calls/__sys_socket.s b/libc/sysv/calls/__sys_socket.s index 8a66d3dc9..0c554b4df 100644 --- a/libc/sysv/calls/__sys_socket.s +++ b/libc/sysv/calls/__sys_socket.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_socket 0x0061006120610029 globl hidden +.scall __sys_socket 0x18a0610612061029 globl hidden diff --git a/libc/sysv/calls/__sys_stat.s b/libc/sysv/calls/__sys_stat.s index f730084aa..77ba51a14 100644 --- a/libc/sysv/calls/__sys_stat.s +++ b/libc/sysv/calls/__sys_stat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_stat 0x0026ffff21520004 globl hidden +.scall __sys_stat 0x1b7026fff2152004 globl hidden diff --git a/libc/sysv/calls/__sys_truncate.s b/libc/sysv/calls/__sys_truncate.s index f524591f6..56699c92a 100644 --- a/libc/sysv/calls/__sys_truncate.s +++ b/libc/sysv/calls/__sys_truncate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_truncate 0x00c801df20c8004c globl hidden +.scall __sys_truncate 0x0c80c81df20c804c globl hidden diff --git a/libc/sysv/calls/__sys_utimensat.s b/libc/sysv/calls/__sys_utimensat.s index ad7952f15..3c117c7f1 100644 --- a/libc/sysv/calls/__sys_utimensat.s +++ b/libc/sysv/calls/__sys_utimensat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sys_utimensat 0x00540223ffff0118 globl hidden +.scall __sys_utimensat 0x1d3054223ffff118 globl hidden diff --git a/libc/sysv/calls/__syscall.s b/libc/sysv/calls/__syscall.s index 13aac804c..408cbf910 100644 --- a/libc/sysv/calls/__syscall.s +++ b/libc/sysv/calls/__syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __syscall 0x00c6ffffffffffff globl +.scall __syscall 0xfff0c6ffffffffff globl diff --git a/libc/sysv/calls/__sysctl.s b/libc/sysv/calls/__sysctl.s index 72f2dda8d..9e984ffef 100644 --- a/libc/sysv/calls/__sysctl.s +++ b/libc/sysv/calls/__sysctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __sysctl 0xffff00caffffffff globl +.scall __sysctl 0xffffff0cafffffff globl diff --git a/libc/sysv/calls/__tfork.s b/libc/sysv/calls/__tfork.s index 127cb0d74..c37e06be2 100644 --- a/libc/sysv/calls/__tfork.s +++ b/libc/sysv/calls/__tfork.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __tfork 0x0008ffffffffffff globl +.scall __tfork 0xfff008ffffffffff globl diff --git a/libc/sysv/calls/__threxit.s b/libc/sysv/calls/__threxit.s index 7d9d7e7ab..b92eaf769 100644 --- a/libc/sysv/calls/__threxit.s +++ b/libc/sysv/calls/__threxit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __threxit 0x012effffffffffff globl +.scall __threxit 0xfff12effffffffff globl diff --git a/libc/sysv/calls/__thrsigdivert.s b/libc/sysv/calls/__thrsigdivert.s index cec83082b..f66f79125 100644 --- a/libc/sysv/calls/__thrsigdivert.s +++ b/libc/sysv/calls/__thrsigdivert.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __thrsigdivert 0x012fffffffffffff globl +.scall __thrsigdivert 0xfff12fffffffffff globl diff --git a/libc/sysv/calls/__thrsleep.s b/libc/sysv/calls/__thrsleep.s index 95ea679c0..574ed65d3 100644 --- a/libc/sysv/calls/__thrsleep.s +++ b/libc/sysv/calls/__thrsleep.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __thrsleep 0x005effffffffffff globl +.scall __thrsleep 0xfff05effffffffff globl diff --git a/libc/sysv/calls/__thrwakeup.s b/libc/sysv/calls/__thrwakeup.s index fbe7ef055..811df144c 100644 --- a/libc/sysv/calls/__thrwakeup.s +++ b/libc/sysv/calls/__thrwakeup.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall __thrwakeup 0x012dffffffffffff globl +.scall __thrwakeup 0xfff12dffffffffff globl diff --git a/libc/sysv/calls/_sysctl.s b/libc/sysv/calls/_sysctl.s index 4cdafa285..b98a95600 100644 --- a/libc/sysv/calls/_sysctl.s +++ b/libc/sysv/calls/_sysctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall _sysctl 0xffffffffffff009c globl +.scall _sysctl 0xfffffffffffff09c globl diff --git a/libc/sysv/calls/_umtx_op.s b/libc/sysv/calls/_umtx_op.s index c077f65e9..0d6756cf5 100644 --- a/libc/sysv/calls/_umtx_op.s +++ b/libc/sysv/calls/_umtx_op.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall _umtx_op 0xffff01c6ffffffff globl +.scall _umtx_op 0xffffff1c6fffffff globl diff --git a/libc/sysv/calls/abort2.s b/libc/sysv/calls/abort2.s index 611e02901..28ec77cbe 100644 --- a/libc/sysv/calls/abort2.s +++ b/libc/sysv/calls/abort2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall abort2 0xffff01cfffffffff globl +.scall abort2 0xffffff1cffffffff globl diff --git a/libc/sysv/calls/abort_with_payload.s b/libc/sysv/calls/abort_with_payload.s index 39bec8a4d..59a7f77a8 100644 --- a/libc/sysv/calls/abort_with_payload.s +++ b/libc/sysv/calls/abort_with_payload.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall abort_with_payload 0xffffffff2209ffff globl +.scall abort_with_payload 0xfffffffff2209fff globl diff --git a/libc/sysv/calls/accept_nocancel.s b/libc/sysv/calls/accept_nocancel.s index 4fef2f64b..68e58b9d8 100644 --- a/libc/sysv/calls/accept_nocancel.s +++ b/libc/sysv/calls/accept_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall accept_nocancel 0xffffffff2194ffff globl +.scall accept_nocancel 0xfffffffff2194fff globl diff --git a/libc/sysv/calls/access_extended.s b/libc/sysv/calls/access_extended.s index 6c13ff05f..4304b4c74 100644 --- a/libc/sysv/calls/access_extended.s +++ b/libc/sysv/calls/access_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall access_extended 0xffffffff211cffff globl +.scall access_extended 0xfffffffff211cfff globl diff --git a/libc/sysv/calls/acct.s b/libc/sysv/calls/acct.s index de590dc67..492915e56 100644 --- a/libc/sysv/calls/acct.s +++ b/libc/sysv/calls/acct.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall acct 0x00330033203300a3 globl +.scall acct 0x03303303320330a3 globl diff --git a/libc/sysv/calls/add_key.s b/libc/sysv/calls/add_key.s index f409b2d83..84efa9ae9 100644 --- a/libc/sysv/calls/add_key.s +++ b/libc/sysv/calls/add_key.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall add_key 0xffffffffffff00f8 globl +.scall add_key 0xfffffffffffff0f8 globl diff --git a/libc/sysv/calls/adjfreq.s b/libc/sysv/calls/adjfreq.s index 7277d217d..0742139ee 100644 --- a/libc/sysv/calls/adjfreq.s +++ b/libc/sysv/calls/adjfreq.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall adjfreq 0x0131ffffffffffff globl +.scall adjfreq 0xfff131ffffffffff globl diff --git a/libc/sysv/calls/adjtime.s b/libc/sysv/calls/adjtime.s index ee70504e9..b92486943 100644 --- a/libc/sysv/calls/adjtime.s +++ b/libc/sysv/calls/adjtime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall adjtime 0x008c008c208cffff globl +.scall adjtime 0x1a508c08c208cfff globl diff --git a/libc/sysv/calls/adjtimex.s b/libc/sysv/calls/adjtimex.s index 8807a6ece..1c4262e42 100644 --- a/libc/sysv/calls/adjtimex.s +++ b/libc/sysv/calls/adjtimex.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall adjtimex 0xffffffffffff009f globl +.scall adjtimex 0xfffffffffffff09f globl diff --git a/libc/sysv/calls/afs3_syscall.s b/libc/sysv/calls/afs3_syscall.s index ba8c1a1c1..eba1bca4a 100644 --- a/libc/sysv/calls/afs3_syscall.s +++ b/libc/sysv/calls/afs3_syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall afs3_syscall 0xffff0179ffffffff globl +.scall afs3_syscall 0xffffff179fffffff globl diff --git a/libc/sysv/calls/aio_cancel.s b/libc/sysv/calls/aio_cancel.s index 3e2914ddb..361dd8901 100644 --- a/libc/sysv/calls/aio_cancel.s +++ b/libc/sysv/calls/aio_cancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_cancel 0xffff013c213cffff globl +.scall aio_cancel 0x18ffff13c213cfff globl diff --git a/libc/sysv/calls/aio_error.s b/libc/sysv/calls/aio_error.s index 67b6f3771..7c6d09a48 100644 --- a/libc/sysv/calls/aio_error.s +++ b/libc/sysv/calls/aio_error.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_error 0xffff013d213dffff globl +.scall aio_error 0x190fff13d213dfff globl diff --git a/libc/sysv/calls/aio_fsync.s b/libc/sysv/calls/aio_fsync.s index c7905a776..35d346402 100644 --- a/libc/sysv/calls/aio_fsync.s +++ b/libc/sysv/calls/aio_fsync.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_fsync 0xffff01d12139ffff globl +.scall aio_fsync 0x191fff1d12139fff globl diff --git a/libc/sysv/calls/aio_mlock.s b/libc/sysv/calls/aio_mlock.s index bdb95733a..b5157a9f5 100644 --- a/libc/sysv/calls/aio_mlock.s +++ b/libc/sysv/calls/aio_mlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_mlock 0xffff021fffffffff globl +.scall aio_mlock 0xffffff21ffffffff globl diff --git a/libc/sysv/calls/aio_read.s b/libc/sysv/calls/aio_read.s index a8e82c510..8df241579 100644 --- a/libc/sysv/calls/aio_read.s +++ b/libc/sysv/calls/aio_read.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_read 0xffff013e213effff globl +.scall aio_read 0x192fff13e213efff globl diff --git a/libc/sysv/calls/aio_return.s b/libc/sysv/calls/aio_return.s index 7991bb1db..657f6b9b2 100644 --- a/libc/sysv/calls/aio_return.s +++ b/libc/sysv/calls/aio_return.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_return 0xffff013a213affff globl +.scall aio_return 0x193fff13a213afff globl diff --git a/libc/sysv/calls/aio_suspend.s b/libc/sysv/calls/aio_suspend.s index 833923d56..5880467a5 100644 --- a/libc/sysv/calls/aio_suspend.s +++ b/libc/sysv/calls/aio_suspend.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_suspend 0xffff013b213bffff globl +.scall aio_suspend 0x1b6fff13b213bfff globl diff --git a/libc/sysv/calls/aio_suspend_nocancel.s b/libc/sysv/calls/aio_suspend_nocancel.s index bd91296be..64cfb06fa 100644 --- a/libc/sysv/calls/aio_suspend_nocancel.s +++ b/libc/sysv/calls/aio_suspend_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_suspend_nocancel 0xffffffff21a5ffff globl +.scall aio_suspend_nocancel 0xfffffffff21a5fff globl diff --git a/libc/sysv/calls/aio_waitcomplete.s b/libc/sysv/calls/aio_waitcomplete.s index f457efcae..3dc902fd9 100644 --- a/libc/sysv/calls/aio_waitcomplete.s +++ b/libc/sysv/calls/aio_waitcomplete.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_waitcomplete 0xffff0167ffffffff globl +.scall aio_waitcomplete 0xffffff167fffffff globl diff --git a/libc/sysv/calls/aio_write.s b/libc/sysv/calls/aio_write.s index 30e12dd58..7d406260a 100644 --- a/libc/sysv/calls/aio_write.s +++ b/libc/sysv/calls/aio_write.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall aio_write 0xffff013f213fffff globl +.scall aio_write 0x195fff13f213ffff globl diff --git a/libc/sysv/calls/audit.s b/libc/sysv/calls/audit.s index 59e7e2673..91e9428c0 100644 --- a/libc/sysv/calls/audit.s +++ b/libc/sysv/calls/audit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall audit 0xffff01bd215effff globl +.scall audit 0xffffff1bd215efff globl diff --git a/libc/sysv/calls/audit_session_join.s b/libc/sysv/calls/audit_session_join.s index c0f791219..650a619e8 100644 --- a/libc/sysv/calls/audit_session_join.s +++ b/libc/sysv/calls/audit_session_join.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall audit_session_join 0xffffffff21adffff globl +.scall audit_session_join 0xfffffffff21adfff globl diff --git a/libc/sysv/calls/audit_session_port.s b/libc/sysv/calls/audit_session_port.s index 201580212..a13a500af 100644 --- a/libc/sysv/calls/audit_session_port.s +++ b/libc/sysv/calls/audit_session_port.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall audit_session_port 0xffffffff21b0ffff globl +.scall audit_session_port 0xfffffffff21b0fff globl diff --git a/libc/sysv/calls/audit_session_self.s b/libc/sysv/calls/audit_session_self.s index e1fb9da79..6461a064c 100644 --- a/libc/sysv/calls/audit_session_self.s +++ b/libc/sysv/calls/audit_session_self.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall audit_session_self 0xffffffff21acffff globl +.scall audit_session_self 0xfffffffff21acfff globl diff --git a/libc/sysv/calls/auditctl.s b/libc/sysv/calls/auditctl.s index 736dc3727..579fe4cd7 100644 --- a/libc/sysv/calls/auditctl.s +++ b/libc/sysv/calls/auditctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall auditctl 0xffff01c52167ffff globl +.scall auditctl 0xffffff1c52167fff globl diff --git a/libc/sysv/calls/auditon.s b/libc/sysv/calls/auditon.s index a80cf443d..a3d101d76 100644 --- a/libc/sysv/calls/auditon.s +++ b/libc/sysv/calls/auditon.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall auditon 0xffff01be215fffff globl +.scall auditon 0xffffff1be215ffff globl diff --git a/libc/sysv/calls/bindat.s b/libc/sysv/calls/bindat.s index 4a8ef75d1..844a109f9 100644 --- a/libc/sysv/calls/bindat.s +++ b/libc/sysv/calls/bindat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall bindat 0xffff021affffffff globl +.scall bindat 0xffffff21afffffff globl diff --git a/libc/sysv/calls/bpf.s b/libc/sysv/calls/bpf.s index 50ed73486..7ecfbc493 100644 --- a/libc/sysv/calls/bpf.s +++ b/libc/sysv/calls/bpf.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall bpf 0xffffffffffff0141 globl +.scall bpf 0xfffffffffffff141 globl diff --git a/libc/sysv/calls/break.s b/libc/sysv/calls/break.s index 66baf7c0f..b019c8157 100644 --- a/libc/sysv/calls/break.s +++ b/libc/sysv/calls/break.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall break 0xffff0011ffffffff globl +.scall break 0xffffff011fffffff globl diff --git a/libc/sysv/calls/bsdthread_create.s b/libc/sysv/calls/bsdthread_create.s index 6970bc4c3..16a18ee05 100644 --- a/libc/sysv/calls/bsdthread_create.s +++ b/libc/sysv/calls/bsdthread_create.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall bsdthread_create 0xffffffff2168ffff globl +.scall bsdthread_create 0xfffffffff2168fff globl diff --git a/libc/sysv/calls/bsdthread_ctl.s b/libc/sysv/calls/bsdthread_ctl.s index 2df31222a..7b935e7e9 100644 --- a/libc/sysv/calls/bsdthread_ctl.s +++ b/libc/sysv/calls/bsdthread_ctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall bsdthread_ctl 0xffffffff21deffff globl +.scall bsdthread_ctl 0xfffffffff21defff globl diff --git a/libc/sysv/calls/bsdthread_register.s b/libc/sysv/calls/bsdthread_register.s index a12a2ff7e..bbb39a93a 100644 --- a/libc/sysv/calls/bsdthread_register.s +++ b/libc/sysv/calls/bsdthread_register.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall bsdthread_register 0xffffffff216effff globl +.scall bsdthread_register 0xfffffffff216efff globl diff --git a/libc/sysv/calls/bsdthread_terminate.s b/libc/sysv/calls/bsdthread_terminate.s index 5d49dd5f4..85b028db1 100644 --- a/libc/sysv/calls/bsdthread_terminate.s +++ b/libc/sysv/calls/bsdthread_terminate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall bsdthread_terminate 0xffffffff2169ffff globl +.scall bsdthread_terminate 0xfffffffff2169fff globl diff --git a/libc/sysv/calls/cap_enter.s b/libc/sysv/calls/cap_enter.s index 6a3096296..e8039c782 100644 --- a/libc/sysv/calls/cap_enter.s +++ b/libc/sysv/calls/cap_enter.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cap_enter 0xffff0204ffffffff globl +.scall cap_enter 0xffffff204fffffff globl diff --git a/libc/sysv/calls/cap_fcntls_get.s b/libc/sysv/calls/cap_fcntls_get.s index fa46cd85d..b8e91deb1 100644 --- a/libc/sysv/calls/cap_fcntls_get.s +++ b/libc/sysv/calls/cap_fcntls_get.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cap_fcntls_get 0xffff0219ffffffff globl +.scall cap_fcntls_get 0xffffff219fffffff globl diff --git a/libc/sysv/calls/cap_fcntls_limit.s b/libc/sysv/calls/cap_fcntls_limit.s index 740d51201..447628071 100644 --- a/libc/sysv/calls/cap_fcntls_limit.s +++ b/libc/sysv/calls/cap_fcntls_limit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cap_fcntls_limit 0xffff0218ffffffff globl +.scall cap_fcntls_limit 0xffffff218fffffff globl diff --git a/libc/sysv/calls/cap_getmode.s b/libc/sysv/calls/cap_getmode.s index 73f9c5b59..d16ddf096 100644 --- a/libc/sysv/calls/cap_getmode.s +++ b/libc/sysv/calls/cap_getmode.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cap_getmode 0xffff0205ffffffff globl +.scall cap_getmode 0xffffff205fffffff globl diff --git a/libc/sysv/calls/cap_ioctls_get.s b/libc/sysv/calls/cap_ioctls_get.s index 09da90283..2845a70ff 100644 --- a/libc/sysv/calls/cap_ioctls_get.s +++ b/libc/sysv/calls/cap_ioctls_get.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cap_ioctls_get 0xffff0217ffffffff globl +.scall cap_ioctls_get 0xffffff217fffffff globl diff --git a/libc/sysv/calls/cap_ioctls_limit.s b/libc/sysv/calls/cap_ioctls_limit.s index 196cf72d3..28711448c 100644 --- a/libc/sysv/calls/cap_ioctls_limit.s +++ b/libc/sysv/calls/cap_ioctls_limit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cap_ioctls_limit 0xffff0216ffffffff globl +.scall cap_ioctls_limit 0xffffff216fffffff globl diff --git a/libc/sysv/calls/cap_rights_limit.s b/libc/sysv/calls/cap_rights_limit.s index 6eb4a2c5f..30aaa211d 100644 --- a/libc/sysv/calls/cap_rights_limit.s +++ b/libc/sysv/calls/cap_rights_limit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cap_rights_limit 0xffff0215ffffffff globl +.scall cap_rights_limit 0xffffff215fffffff globl diff --git a/libc/sysv/calls/capget.s b/libc/sysv/calls/capget.s index 16baf50c9..bf3e78b00 100644 --- a/libc/sysv/calls/capget.s +++ b/libc/sysv/calls/capget.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall capget 0xffffffffffff007d globl +.scall capget 0xfffffffffffff07d globl diff --git a/libc/sysv/calls/capset.s b/libc/sysv/calls/capset.s index 1efc0daad..2afa15743 100644 --- a/libc/sysv/calls/capset.s +++ b/libc/sysv/calls/capset.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall capset 0xffffffffffff007e globl +.scall capset 0xfffffffffffff07e globl diff --git a/libc/sysv/calls/change_fdguard_np.s b/libc/sysv/calls/change_fdguard_np.s index f10c347da..639900a47 100644 --- a/libc/sysv/calls/change_fdguard_np.s +++ b/libc/sysv/calls/change_fdguard_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall change_fdguard_np 0xffffffff21bcffff globl +.scall change_fdguard_np 0xfffffffff21bcfff globl diff --git a/libc/sysv/calls/chflags.s b/libc/sysv/calls/chflags.s index d085f8212..a3adcbdcc 100644 --- a/libc/sysv/calls/chflags.s +++ b/libc/sysv/calls/chflags.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall chflags 0x002200222022ffff globl +.scall chflags 0x0220220222022fff globl diff --git a/libc/sysv/calls/chflagsat.s b/libc/sysv/calls/chflagsat.s index 2f44976db..c8c9e678c 100644 --- a/libc/sysv/calls/chflagsat.s +++ b/libc/sysv/calls/chflagsat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall chflagsat 0x006b021cffffffff globl +.scall chflagsat 0xfff06b21cfffffff globl diff --git a/libc/sysv/calls/chmod_extended.s b/libc/sysv/calls/chmod_extended.s index 83c2fc10f..643b904f8 100644 --- a/libc/sysv/calls/chmod_extended.s +++ b/libc/sysv/calls/chmod_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall chmod_extended 0xffffffff211affff globl +.scall chmod_extended 0xfffffffff211afff globl diff --git a/libc/sysv/calls/chroot.s b/libc/sysv/calls/chroot.s index c7436eeac..b7f137118 100644 --- a/libc/sysv/calls/chroot.s +++ b/libc/sysv/calls/chroot.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall chroot 0x003d003d203d00a1 globl +.scall chroot 0x03d03d03d203d0a1 globl diff --git a/libc/sysv/calls/clock_adjtime.s b/libc/sysv/calls/clock_adjtime.s index 462d86bde..68e2ce2da 100644 --- a/libc/sysv/calls/clock_adjtime.s +++ b/libc/sysv/calls/clock_adjtime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall clock_adjtime 0xffffffffffff0131 globl +.scall clock_adjtime 0xfffffffffffff131 globl diff --git a/libc/sysv/calls/clock_getcpuclockid2.s b/libc/sysv/calls/clock_getcpuclockid2.s index a8a7ec949..decb3341a 100644 --- a/libc/sysv/calls/clock_getcpuclockid2.s +++ b/libc/sysv/calls/clock_getcpuclockid2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall clock_getcpuclockid2 0xffff00f7ffffffff globl +.scall clock_getcpuclockid2 0x1e2fff0f7fffffff globl diff --git a/libc/sysv/calls/clock_getres.s b/libc/sysv/calls/clock_getres.s index 779138a3c..e4c47d087 100644 --- a/libc/sysv/calls/clock_getres.s +++ b/libc/sysv/calls/clock_getres.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall clock_getres 0x005900eaffff00e5 globl +.scall clock_getres 0x1ad0590eaffff0e5 globl diff --git a/libc/sysv/calls/clock_nanosleep.s b/libc/sysv/calls/clock_nanosleep.s index 59391a1b9..3608ec015 100644 --- a/libc/sysv/calls/clock_nanosleep.s +++ b/libc/sysv/calls/clock_nanosleep.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall clock_nanosleep 0xffff00f4ffff00e6 globl +.scall clock_nanosleep 0xffffff0f4ffff0e6 globl diff --git a/libc/sysv/calls/clock_settime.s b/libc/sysv/calls/clock_settime.s index c0cfd84be..f5a2ba9d4 100644 --- a/libc/sysv/calls/clock_settime.s +++ b/libc/sysv/calls/clock_settime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall clock_settime 0x005800e9ffff00e3 globl +.scall clock_settime 0x1ac0580e9ffff0e3 globl diff --git a/libc/sysv/calls/clone.s b/libc/sysv/calls/clone.s index fda7c2d5a..f473b1990 100644 --- a/libc/sysv/calls/clone.s +++ b/libc/sysv/calls/clone.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall clone 0xffffffffffff0038 globl +.scall clone 0xfffffffffffff038 globl diff --git a/libc/sysv/calls/clonefileat.s b/libc/sysv/calls/clonefileat.s index 8dd44790a..3cf59206d 100644 --- a/libc/sysv/calls/clonefileat.s +++ b/libc/sysv/calls/clonefileat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall clonefileat 0xffffffff21ceffff globl +.scall clonefileat 0xfffffffff21cefff globl diff --git a/libc/sysv/calls/close_nocancel.s b/libc/sysv/calls/close_nocancel.s index bd78fff3d..92871b227 100644 --- a/libc/sysv/calls/close_nocancel.s +++ b/libc/sysv/calls/close_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall close_nocancel 0xffffffff218fffff globl +.scall close_nocancel 0xfffffffff218ffff globl diff --git a/libc/sysv/calls/closefrom.s b/libc/sysv/calls/closefrom.s index ef55a3b30..503df0ec7 100644 --- a/libc/sysv/calls/closefrom.s +++ b/libc/sysv/calls/closefrom.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall closefrom 0x011f01fdffffffff globl +.scall closefrom 0xfff11f1fdfffffff globl diff --git a/libc/sysv/calls/coalition.s b/libc/sysv/calls/coalition.s index d25a11da7..b427f01af 100644 --- a/libc/sysv/calls/coalition.s +++ b/libc/sysv/calls/coalition.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall coalition 0xffffffff21caffff globl +.scall coalition 0xfffffffff21cafff globl diff --git a/libc/sysv/calls/coalition_info.s b/libc/sysv/calls/coalition_info.s index 0caf45626..128743a1a 100644 --- a/libc/sysv/calls/coalition_info.s +++ b/libc/sysv/calls/coalition_info.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall coalition_info 0xffffffff21cbffff globl +.scall coalition_info 0xfffffffff21cbfff globl diff --git a/libc/sysv/calls/connect_nocancel.s b/libc/sysv/calls/connect_nocancel.s index bcae217ec..1f76137f5 100644 --- a/libc/sysv/calls/connect_nocancel.s +++ b/libc/sysv/calls/connect_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall connect_nocancel 0xffffffff2199ffff globl +.scall connect_nocancel 0xfffffffff2199fff globl diff --git a/libc/sysv/calls/connectat.s b/libc/sysv/calls/connectat.s index 9f06b74f7..afb61870a 100644 --- a/libc/sysv/calls/connectat.s +++ b/libc/sysv/calls/connectat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall connectat 0xffff021bffffffff globl +.scall connectat 0xffffff21bfffffff globl diff --git a/libc/sysv/calls/connectx.s b/libc/sysv/calls/connectx.s index 279e1f899..daa855188 100644 --- a/libc/sysv/calls/connectx.s +++ b/libc/sysv/calls/connectx.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall connectx 0xffffffff21bfffff globl +.scall connectx 0xfffffffff21bffff globl diff --git a/libc/sysv/calls/copyfile.s b/libc/sysv/calls/copyfile.s index 303470066..f5b265739 100644 --- a/libc/sysv/calls/copyfile.s +++ b/libc/sysv/calls/copyfile.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall copyfile 0xffffffff20e3ffff globl +.scall copyfile 0xfffffffff20e3fff globl diff --git a/libc/sysv/calls/cpuset.s b/libc/sysv/calls/cpuset.s index 874d8b52d..0faee1c6e 100644 --- a/libc/sysv/calls/cpuset.s +++ b/libc/sysv/calls/cpuset.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cpuset 0xffff01e4ffffffff globl +.scall cpuset 0xffffff1e4fffffff globl diff --git a/libc/sysv/calls/cpuset_getaffinity.s b/libc/sysv/calls/cpuset_getaffinity.s index e23d387b6..e929b7f5d 100644 --- a/libc/sysv/calls/cpuset_getaffinity.s +++ b/libc/sysv/calls/cpuset_getaffinity.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cpuset_getaffinity 0xffff01e7ffffffff globl +.scall cpuset_getaffinity 0xffffff1e7fffffff globl diff --git a/libc/sysv/calls/cpuset_getdomain.s b/libc/sysv/calls/cpuset_getdomain.s index 9b31dc8d1..664020c32 100644 --- a/libc/sysv/calls/cpuset_getdomain.s +++ b/libc/sysv/calls/cpuset_getdomain.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cpuset_getdomain 0xffff0231ffffffff globl +.scall cpuset_getdomain 0xffffff231fffffff globl diff --git a/libc/sysv/calls/cpuset_getid.s b/libc/sysv/calls/cpuset_getid.s index 4b0cd7092..278d8e80b 100644 --- a/libc/sysv/calls/cpuset_getid.s +++ b/libc/sysv/calls/cpuset_getid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cpuset_getid 0xffff01e6ffffffff globl +.scall cpuset_getid 0xffffff1e6fffffff globl diff --git a/libc/sysv/calls/cpuset_setaffinity.s b/libc/sysv/calls/cpuset_setaffinity.s index b67a4d776..a3d3b1248 100644 --- a/libc/sysv/calls/cpuset_setaffinity.s +++ b/libc/sysv/calls/cpuset_setaffinity.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cpuset_setaffinity 0xffff01e8ffffffff globl +.scall cpuset_setaffinity 0xffffff1e8fffffff globl diff --git a/libc/sysv/calls/cpuset_setdomain.s b/libc/sysv/calls/cpuset_setdomain.s index 35282fde7..c9e12c98f 100644 --- a/libc/sysv/calls/cpuset_setdomain.s +++ b/libc/sysv/calls/cpuset_setdomain.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cpuset_setdomain 0xffff0232ffffffff globl +.scall cpuset_setdomain 0xffffff232fffffff globl diff --git a/libc/sysv/calls/cpuset_setid.s b/libc/sysv/calls/cpuset_setid.s index 2a5aaca32..308757a9c 100644 --- a/libc/sysv/calls/cpuset_setid.s +++ b/libc/sysv/calls/cpuset_setid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall cpuset_setid 0xffff01e5ffffffff globl +.scall cpuset_setid 0xffffff1e5fffffff globl diff --git a/libc/sysv/calls/csops.s b/libc/sysv/calls/csops.s index 13787b72e..b5d45b59c 100644 --- a/libc/sysv/calls/csops.s +++ b/libc/sysv/calls/csops.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall csops 0xffffffff20a9ffff globl +.scall csops 0xfffffffff20a9fff globl diff --git a/libc/sysv/calls/csops_audittoken.s b/libc/sysv/calls/csops_audittoken.s index 104f4c586..f9d054ce2 100644 --- a/libc/sysv/calls/csops_audittoken.s +++ b/libc/sysv/calls/csops_audittoken.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall csops_audittoken 0xffffffff20aaffff globl +.scall csops_audittoken 0xfffffffff20aafff globl diff --git a/libc/sysv/calls/csrctl.s b/libc/sysv/calls/csrctl.s index 1da9b3a38..5f66b40f6 100644 --- a/libc/sysv/calls/csrctl.s +++ b/libc/sysv/calls/csrctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall csrctl 0xffffffff21e3ffff globl +.scall csrctl 0xfffffffff21e3fff globl diff --git a/libc/sysv/calls/delete.s b/libc/sysv/calls/delete.s index 8c8bd7f24..03cfbb403 100644 --- a/libc/sysv/calls/delete.s +++ b/libc/sysv/calls/delete.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall delete 0xffffffff20e2ffff globl +.scall delete 0xfffffffff20e2fff globl diff --git a/libc/sysv/calls/delete_module.s b/libc/sysv/calls/delete_module.s index 781c31559..5cfa13a36 100644 --- a/libc/sysv/calls/delete_module.s +++ b/libc/sysv/calls/delete_module.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall delete_module 0xffffffffffff00b0 globl +.scall delete_module 0xfffffffffffff0b0 globl diff --git a/libc/sysv/calls/disconnectx.s b/libc/sysv/calls/disconnectx.s index 27c99539b..ad45a90fa 100644 --- a/libc/sysv/calls/disconnectx.s +++ b/libc/sysv/calls/disconnectx.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall disconnectx 0xffffffff21c0ffff globl +.scall disconnectx 0xfffffffff21c0fff globl diff --git a/libc/sysv/calls/eaccess.s b/libc/sysv/calls/eaccess.s index d121d8b21..5127d4879 100644 --- a/libc/sysv/calls/eaccess.s +++ b/libc/sysv/calls/eaccess.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall eaccess 0xffff0178ffffffff globl +.scall eaccess 0xffffff178fffffff globl diff --git a/libc/sysv/calls/epoll_pwait.s b/libc/sysv/calls/epoll_pwait.s index 31a76e613..a816b13f2 100644 --- a/libc/sysv/calls/epoll_pwait.s +++ b/libc/sysv/calls/epoll_pwait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall epoll_pwait 0xffffffffffff0119 globl +.scall epoll_pwait 0xfffffffffffff119 globl diff --git a/libc/sysv/calls/eventfd.s b/libc/sysv/calls/eventfd.s index 12ca55f40..52829ec2a 100644 --- a/libc/sysv/calls/eventfd.s +++ b/libc/sysv/calls/eventfd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall eventfd 0xffffffffffff011c globl +.scall eventfd 0xfffffffffffff11c globl diff --git a/libc/sysv/calls/eventfd2.s b/libc/sysv/calls/eventfd2.s index 7bcb33b7b..4f8b9b299 100644 --- a/libc/sysv/calls/eventfd2.s +++ b/libc/sysv/calls/eventfd2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall eventfd2 0xffffffffffff0122 globl +.scall eventfd2 0xfffffffffffff122 globl diff --git a/libc/sysv/calls/exchangedata.s b/libc/sysv/calls/exchangedata.s index 0ee10872e..f8a31a43d 100644 --- a/libc/sysv/calls/exchangedata.s +++ b/libc/sysv/calls/exchangedata.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall exchangedata 0xffffffff20dfffff globl +.scall exchangedata 0xfffffffff20dffff globl diff --git a/libc/sysv/calls/execveat.s b/libc/sysv/calls/execveat.s index 8a7f538bb..7960c752b 100644 --- a/libc/sysv/calls/execveat.s +++ b/libc/sysv/calls/execveat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall execveat 0xffffffffffff0142 globl +.scall execveat 0xfffffffffffff142 globl diff --git a/libc/sysv/calls/extattr_delete_fd.s b/libc/sysv/calls/extattr_delete_fd.s index dcaa3b33e..45db9e191 100644 --- a/libc/sysv/calls/extattr_delete_fd.s +++ b/libc/sysv/calls/extattr_delete_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_delete_fd 0xffff0175ffffffff globl +.scall extattr_delete_fd 0x16efff175fffffff globl diff --git a/libc/sysv/calls/extattr_delete_file.s b/libc/sysv/calls/extattr_delete_file.s index edf3ff94d..938229e91 100644 --- a/libc/sysv/calls/extattr_delete_file.s +++ b/libc/sysv/calls/extattr_delete_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_delete_file 0xffff0166ffffffff globl +.scall extattr_delete_file 0x16bfff166fffffff globl diff --git a/libc/sysv/calls/extattr_delete_link.s b/libc/sysv/calls/extattr_delete_link.s index a96b44956..cd71d2d47 100644 --- a/libc/sysv/calls/extattr_delete_link.s +++ b/libc/sysv/calls/extattr_delete_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_delete_link 0xffff019effffffff globl +.scall extattr_delete_link 0x171fff19efffffff globl diff --git a/libc/sysv/calls/extattr_get_fd.s b/libc/sysv/calls/extattr_get_fd.s index 65f82b86c..bbf786341 100644 --- a/libc/sysv/calls/extattr_get_fd.s +++ b/libc/sysv/calls/extattr_get_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_get_fd 0xffff0174ffffffff globl +.scall extattr_get_fd 0x16dfff174fffffff globl diff --git a/libc/sysv/calls/extattr_get_file.s b/libc/sysv/calls/extattr_get_file.s index 6466b63b8..9639e4c07 100644 --- a/libc/sysv/calls/extattr_get_file.s +++ b/libc/sysv/calls/extattr_get_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_get_file 0xffff0165ffffffff globl +.scall extattr_get_file 0x16afff165fffffff globl diff --git a/libc/sysv/calls/extattr_get_link.s b/libc/sysv/calls/extattr_get_link.s index 9f7828846..1aadc49e8 100644 --- a/libc/sysv/calls/extattr_get_link.s +++ b/libc/sysv/calls/extattr_get_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_get_link 0xffff019dffffffff globl +.scall extattr_get_link 0x170fff19dfffffff globl diff --git a/libc/sysv/calls/extattr_list_fd.s b/libc/sysv/calls/extattr_list_fd.s index beeeb969e..0c4a52c9d 100644 --- a/libc/sysv/calls/extattr_list_fd.s +++ b/libc/sysv/calls/extattr_list_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_list_fd 0xffff01b5ffffffff globl +.scall extattr_list_fd 0x172fff1b5fffffff globl diff --git a/libc/sysv/calls/extattr_list_file.s b/libc/sysv/calls/extattr_list_file.s index 8df808fb0..e836ce806 100644 --- a/libc/sysv/calls/extattr_list_file.s +++ b/libc/sysv/calls/extattr_list_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_list_file 0xffff01b6ffffffff globl +.scall extattr_list_file 0x173fff1b6fffffff globl diff --git a/libc/sysv/calls/extattr_list_link.s b/libc/sysv/calls/extattr_list_link.s index bfcbe83ba..ef47b96e1 100644 --- a/libc/sysv/calls/extattr_list_link.s +++ b/libc/sysv/calls/extattr_list_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_list_link 0xffff01b7ffffffff globl +.scall extattr_list_link 0x174fff1b7fffffff globl diff --git a/libc/sysv/calls/extattr_set_fd.s b/libc/sysv/calls/extattr_set_fd.s index efaa2a70f..6116ff9c8 100644 --- a/libc/sysv/calls/extattr_set_fd.s +++ b/libc/sysv/calls/extattr_set_fd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_set_fd 0xffff0173ffffffff globl +.scall extattr_set_fd 0x16cfff173fffffff globl diff --git a/libc/sysv/calls/extattr_set_file.s b/libc/sysv/calls/extattr_set_file.s index be1ff2c7c..b3e668f83 100644 --- a/libc/sysv/calls/extattr_set_file.s +++ b/libc/sysv/calls/extattr_set_file.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_set_file 0xffff0164ffffffff globl +.scall extattr_set_file 0x169fff164fffffff globl diff --git a/libc/sysv/calls/extattr_set_link.s b/libc/sysv/calls/extattr_set_link.s index b5eafa5c8..a28a7898b 100644 --- a/libc/sysv/calls/extattr_set_link.s +++ b/libc/sysv/calls/extattr_set_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattr_set_link 0xffff019cffffffff globl +.scall extattr_set_link 0x16ffff19cfffffff globl diff --git a/libc/sysv/calls/extattrctl.s b/libc/sysv/calls/extattrctl.s index 4152f2a0a..4a68f56a6 100644 --- a/libc/sysv/calls/extattrctl.s +++ b/libc/sysv/calls/extattrctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall extattrctl 0xffff0163ffffffff globl +.scall extattrctl 0x168fff163fffffff globl diff --git a/libc/sysv/calls/fanotify_init.s b/libc/sysv/calls/fanotify_init.s index f89a51e2f..7877289ac 100644 --- a/libc/sysv/calls/fanotify_init.s +++ b/libc/sysv/calls/fanotify_init.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fanotify_init 0xffffffffffff012c globl +.scall fanotify_init 0xfffffffffffff12c globl diff --git a/libc/sysv/calls/fanotify_mark.s b/libc/sysv/calls/fanotify_mark.s index aff3c97f7..57cc6b27f 100644 --- a/libc/sysv/calls/fanotify_mark.s +++ b/libc/sysv/calls/fanotify_mark.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fanotify_mark 0xffffffffffff012d globl +.scall fanotify_mark 0xfffffffffffff12d globl diff --git a/libc/sysv/calls/fchflags.s b/libc/sysv/calls/fchflags.s index 3180b5b24..ba69ff050 100644 --- a/libc/sysv/calls/fchflags.s +++ b/libc/sysv/calls/fchflags.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fchflags 0x002300232023ffff globl +.scall fchflags 0x0230230232023fff globl diff --git a/libc/sysv/calls/fchmod_extended.s b/libc/sysv/calls/fchmod_extended.s index 03035f85c..4f51a23d7 100644 --- a/libc/sysv/calls/fchmod_extended.s +++ b/libc/sysv/calls/fchmod_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fchmod_extended 0xffffffff211bffff globl +.scall fchmod_extended 0xfffffffff211bfff globl diff --git a/libc/sysv/calls/fclonefileat.s b/libc/sysv/calls/fclonefileat.s index b0fade520..3218f39e2 100644 --- a/libc/sysv/calls/fclonefileat.s +++ b/libc/sysv/calls/fclonefileat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fclonefileat 0xffffffff2205ffff globl +.scall fclonefileat 0xfffffffff2205fff globl diff --git a/libc/sysv/calls/fcntl_nocancel.s b/libc/sysv/calls/fcntl_nocancel.s index c52a4a02f..06af111fe 100644 --- a/libc/sysv/calls/fcntl_nocancel.s +++ b/libc/sysv/calls/fcntl_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fcntl_nocancel 0xffffffff2196ffff globl +.scall fcntl_nocancel 0xfffffffff2196fff globl diff --git a/libc/sysv/calls/fexecve.s b/libc/sysv/calls/fexecve.s index 7ebaad449..4c2757685 100644 --- a/libc/sysv/calls/fexecve.s +++ b/libc/sysv/calls/fexecve.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fexecve 0xffff01ecffffffff globl +.scall fexecve 0x1d1fff1ecfffffff globl diff --git a/libc/sysv/calls/ffclock_getcounter.s b/libc/sysv/calls/ffclock_getcounter.s index 0786afca3..35146b5c9 100644 --- a/libc/sysv/calls/ffclock_getcounter.s +++ b/libc/sysv/calls/ffclock_getcounter.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ffclock_getcounter 0xffff00f1ffffffff globl +.scall ffclock_getcounter 0xffffff0f1fffffff globl diff --git a/libc/sysv/calls/ffclock_getestimate.s b/libc/sysv/calls/ffclock_getestimate.s index bc515fb53..c0790ace0 100644 --- a/libc/sysv/calls/ffclock_getestimate.s +++ b/libc/sysv/calls/ffclock_getestimate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ffclock_getestimate 0xffff00f3ffffffff globl +.scall ffclock_getestimate 0xffffff0f3fffffff globl diff --git a/libc/sysv/calls/ffclock_setestimate.s b/libc/sysv/calls/ffclock_setestimate.s index a112086d4..217f83ce7 100644 --- a/libc/sysv/calls/ffclock_setestimate.s +++ b/libc/sysv/calls/ffclock_setestimate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ffclock_setestimate 0xffff00f2ffffffff globl +.scall ffclock_setestimate 0xffffff0f2fffffff globl diff --git a/libc/sysv/calls/ffsctl.s b/libc/sysv/calls/ffsctl.s index 4ba476b61..2e07b7029 100644 --- a/libc/sysv/calls/ffsctl.s +++ b/libc/sysv/calls/ffsctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ffsctl 0xffffffff20f5ffff globl +.scall ffsctl 0xfffffffff20f5fff globl diff --git a/libc/sysv/calls/fgetattrlist.s b/libc/sysv/calls/fgetattrlist.s index fbf8f6f8c..113bf9971 100644 --- a/libc/sysv/calls/fgetattrlist.s +++ b/libc/sysv/calls/fgetattrlist.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fgetattrlist 0xffffffff20e4ffff globl +.scall fgetattrlist 0xfffffffff20e4fff globl diff --git a/libc/sysv/calls/fgetxattr.s b/libc/sysv/calls/fgetxattr.s index 3c546208b..5236abf62 100644 --- a/libc/sysv/calls/fgetxattr.s +++ b/libc/sysv/calls/fgetxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fgetxattr 0xffffffff20eb00c1 globl +.scall fgetxattr 0x17cffffff20eb0c1 globl diff --git a/libc/sysv/calls/fhlink.s b/libc/sysv/calls/fhlink.s index dd1250c8b..69bdd2907 100644 --- a/libc/sysv/calls/fhlink.s +++ b/libc/sysv/calls/fhlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fhlink 0xffff0235ffffffff globl +.scall fhlink 0xffffff235fffffff globl diff --git a/libc/sysv/calls/fhlinkat.s b/libc/sysv/calls/fhlinkat.s index b0d771489..a80ed8bcc 100644 --- a/libc/sysv/calls/fhlinkat.s +++ b/libc/sysv/calls/fhlinkat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fhlinkat 0xffff0236ffffffff globl +.scall fhlinkat 0xffffff236fffffff globl diff --git a/libc/sysv/calls/fhopen.s b/libc/sysv/calls/fhopen.s index fd5b82fa7..b3ae8cd64 100644 --- a/libc/sysv/calls/fhopen.s +++ b/libc/sysv/calls/fhopen.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fhopen 0x0108012a20f8ffff globl +.scall fhopen 0x18c10812a20f8fff globl diff --git a/libc/sysv/calls/fhreadlink.s b/libc/sysv/calls/fhreadlink.s index 858d5b07f..9ea744d29 100644 --- a/libc/sysv/calls/fhreadlink.s +++ b/libc/sysv/calls/fhreadlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fhreadlink 0xffff0237ffffffff globl +.scall fhreadlink 0xffffff237fffffff globl diff --git a/libc/sysv/calls/fhstat.s b/libc/sysv/calls/fhstat.s index 5559dbd81..2a4dad888 100644 --- a/libc/sysv/calls/fhstat.s +++ b/libc/sysv/calls/fhstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fhstat 0x01260229ffffffff globl +.scall fhstat 0x1c3126229fffffff globl diff --git a/libc/sysv/calls/fhstatfs.s b/libc/sysv/calls/fhstatfs.s index 16e88e7ed..daf06d385 100644 --- a/libc/sysv/calls/fhstatfs.s +++ b/libc/sysv/calls/fhstatfs.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fhstatfs 0x0041022effffffff globl +.scall fhstatfs 0xfff04122efffffff globl diff --git a/libc/sysv/calls/fileport_makefd.s b/libc/sysv/calls/fileport_makefd.s index cd481a6e3..2a4e5a594 100644 --- a/libc/sysv/calls/fileport_makefd.s +++ b/libc/sysv/calls/fileport_makefd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fileport_makefd 0xffffffff21afffff globl +.scall fileport_makefd 0xfffffffff21affff globl diff --git a/libc/sysv/calls/fileport_makeport.s b/libc/sysv/calls/fileport_makeport.s index b5da064ed..3e6f5efd0 100644 --- a/libc/sysv/calls/fileport_makeport.s +++ b/libc/sysv/calls/fileport_makeport.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fileport_makeport 0xffffffff21aeffff globl +.scall fileport_makeport 0xfffffffff21aefff globl diff --git a/libc/sysv/calls/finit_module.s b/libc/sysv/calls/finit_module.s index d980d49c4..7c4d39e74 100644 --- a/libc/sysv/calls/finit_module.s +++ b/libc/sysv/calls/finit_module.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall finit_module 0xffffffffffff0139 globl +.scall finit_module 0xfffffffffffff139 globl diff --git a/libc/sysv/calls/flistxattr.s b/libc/sysv/calls/flistxattr.s index cda012ae2..78d5b743b 100644 --- a/libc/sysv/calls/flistxattr.s +++ b/libc/sysv/calls/flistxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall flistxattr 0xffffffff20f100c4 globl +.scall flistxattr 0x17fffffff20f10c4 globl diff --git a/libc/sysv/calls/fmount.s b/libc/sysv/calls/fmount.s index c757ee5cf..84c8019bd 100644 --- a/libc/sysv/calls/fmount.s +++ b/libc/sysv/calls/fmount.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fmount 0xffffffff220effff globl +.scall fmount 0xfffffffff220efff globl diff --git a/libc/sysv/calls/fpathconf.s b/libc/sysv/calls/fpathconf.s index dda9a8bf8..150c26c4f 100644 --- a/libc/sysv/calls/fpathconf.s +++ b/libc/sysv/calls/fpathconf.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fpathconf 0x00c000c020c0ffff globl +.scall fpathconf 0x0c00c00c020c0fff globl diff --git a/libc/sysv/calls/fremovexattr.s b/libc/sysv/calls/fremovexattr.s index 8da544d6f..a475ebef6 100644 --- a/libc/sysv/calls/fremovexattr.s +++ b/libc/sysv/calls/fremovexattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fremovexattr 0xffffffff20ef00c7 globl +.scall fremovexattr 0x182ffffff20ef0c7 globl diff --git a/libc/sysv/calls/fs_snapshot.s b/libc/sysv/calls/fs_snapshot.s index ba8c0439c..3092b8f3e 100644 --- a/libc/sysv/calls/fs_snapshot.s +++ b/libc/sysv/calls/fs_snapshot.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fs_snapshot 0xffffffff2206ffff globl +.scall fs_snapshot 0xfffffffff2206fff globl diff --git a/libc/sysv/calls/fsctl.s b/libc/sysv/calls/fsctl.s index c66abd51f..121853d8c 100644 --- a/libc/sysv/calls/fsctl.s +++ b/libc/sysv/calls/fsctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fsctl 0xffffffff20f2ffff globl +.scall fsctl 0xfffffffff20f2fff globl diff --git a/libc/sysv/calls/fsetattrlist.s b/libc/sysv/calls/fsetattrlist.s index f48900692..7a0cf3de9 100644 --- a/libc/sysv/calls/fsetattrlist.s +++ b/libc/sysv/calls/fsetattrlist.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fsetattrlist 0xffffffff20e5ffff globl +.scall fsetattrlist 0xfffffffff20e5fff globl diff --git a/libc/sysv/calls/fsetxattr.s b/libc/sysv/calls/fsetxattr.s index 2e69c065b..2f1a83447 100644 --- a/libc/sysv/calls/fsetxattr.s +++ b/libc/sysv/calls/fsetxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fsetxattr 0xffffffff20ed00be globl +.scall fsetxattr 0x179ffffff20ed0be globl diff --git a/libc/sysv/calls/fstat_extended.s b/libc/sysv/calls/fstat_extended.s index a4e49101f..509537809 100644 --- a/libc/sysv/calls/fstat_extended.s +++ b/libc/sysv/calls/fstat_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fstat_extended 0xffffffff2119ffff globl +.scall fstat_extended 0xfffffffff2119fff globl diff --git a/libc/sysv/calls/fstatfs.s b/libc/sysv/calls/fstatfs.s index c0c56fc44..77d438c0e 100644 --- a/libc/sysv/calls/fstatfs.s +++ b/libc/sysv/calls/fstatfs.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fstatfs 0x0040022c215a008a globl +.scall fstatfs 0xfff04022c215a08a globl diff --git a/libc/sysv/calls/fsync_nocancel.s b/libc/sysv/calls/fsync_nocancel.s index ad51a93b8..4d41d9b03 100644 --- a/libc/sysv/calls/fsync_nocancel.s +++ b/libc/sysv/calls/fsync_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall fsync_nocancel 0xffffffff2198ffff globl +.scall fsync_nocancel 0xfffffffff2198fff globl diff --git a/libc/sysv/calls/futex.s b/libc/sysv/calls/futex.s index 031fb736f..a5b036fd1 100644 --- a/libc/sysv/calls/futex.s +++ b/libc/sysv/calls/futex.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall futex 0x0053ffffffff00ca globl +.scall futex 0xfff053fffffff0ca globl diff --git a/libc/sysv/calls/get_mempolicy.s b/libc/sysv/calls/get_mempolicy.s index 5d1631652..9b965055c 100644 --- a/libc/sysv/calls/get_mempolicy.s +++ b/libc/sysv/calls/get_mempolicy.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall get_mempolicy 0xffffffffffff00ef globl +.scall get_mempolicy 0xfffffffffffff0ef globl diff --git a/libc/sysv/calls/get_robust_list.s b/libc/sysv/calls/get_robust_list.s index 2f8961591..e78b7f83e 100644 --- a/libc/sysv/calls/get_robust_list.s +++ b/libc/sysv/calls/get_robust_list.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall get_robust_list 0xffffffffffff0112 globl +.scall get_robust_list 0xfffffffffffff112 globl diff --git a/libc/sysv/calls/getattrlist.s b/libc/sysv/calls/getattrlist.s index 660c76f06..c079d8cf4 100644 --- a/libc/sysv/calls/getattrlist.s +++ b/libc/sysv/calls/getattrlist.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getattrlist 0xffffffff20dcffff globl +.scall getattrlist 0xfffffffff20dcfff globl diff --git a/libc/sysv/calls/getattrlistat.s b/libc/sysv/calls/getattrlistat.s index f81386fd0..5fae2f151 100644 --- a/libc/sysv/calls/getattrlistat.s +++ b/libc/sysv/calls/getattrlistat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getattrlistat 0xffffffff21dcffff globl +.scall getattrlistat 0xfffffffff21dcfff globl diff --git a/libc/sysv/calls/getattrlistbulk.s b/libc/sysv/calls/getattrlistbulk.s index 16aa3ffb7..3f2c45e2e 100644 --- a/libc/sysv/calls/getattrlistbulk.s +++ b/libc/sysv/calls/getattrlistbulk.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getattrlistbulk 0xffffffff21cdffff globl +.scall getattrlistbulk 0xfffffffff21cdfff globl diff --git a/libc/sysv/calls/getaudit.s b/libc/sysv/calls/getaudit.s index 237c9bbee..efe7e1080 100644 --- a/libc/sysv/calls/getaudit.s +++ b/libc/sysv/calls/getaudit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getaudit 0xffff01c1ffffffff globl +.scall getaudit 0xffffff1c1fffffff globl diff --git a/libc/sysv/calls/getaudit_addr.s b/libc/sysv/calls/getaudit_addr.s index 1efea0a2e..95809554d 100644 --- a/libc/sysv/calls/getaudit_addr.s +++ b/libc/sysv/calls/getaudit_addr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getaudit_addr 0xffff01c32165ffff globl +.scall getaudit_addr 0xffffff1c32165fff globl diff --git a/libc/sysv/calls/getauid.s b/libc/sysv/calls/getauid.s index a76cccb4e..bf229848b 100644 --- a/libc/sysv/calls/getauid.s +++ b/libc/sysv/calls/getauid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getauid 0xffff01bf2161ffff globl +.scall getauid 0xffffff1bf2161fff globl diff --git a/libc/sysv/calls/getcontext.s b/libc/sysv/calls/getcontext.s index d9476e69f..b76afd842 100644 --- a/libc/sysv/calls/getcontext.s +++ b/libc/sysv/calls/getcontext.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getcontext 0xffff01a5ffffffff globl +.scall getcontext 0x133fff1a5fffffff globl diff --git a/libc/sysv/calls/getcpu.s b/libc/sysv/calls/getcpu.s index 7332ded17..02a4c48e6 100644 --- a/libc/sysv/calls/getcpu.s +++ b/libc/sysv/calls/getcpu.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getcpu 0xffffffffffff0135 globl +.scall getcpu 0xfffffffffffff135 globl diff --git a/libc/sysv/calls/getdents.s b/libc/sysv/calls/getdents.s index a2aaa12ab..0c3dd838f 100644 --- a/libc/sysv/calls/getdents.s +++ b/libc/sysv/calls/getdents.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getdents 0x0063011020c400d9 globl hidden +.scall getdents 0x18606311020c40d9 globl hidden diff --git a/libc/sysv/calls/getdirentries.s b/libc/sysv/calls/getdirentries.s index 839abad74..11121b09e 100644 --- a/libc/sysv/calls/getdirentries.s +++ b/libc/sysv/calls/getdirentries.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getdirentries 0xffff022a20c4ffff globl +.scall getdirentries 0xffffff22a20c4fff globl diff --git a/libc/sysv/calls/getdirentriesattr.s b/libc/sysv/calls/getdirentriesattr.s index b0c79ea99..09f0d90ce 100644 --- a/libc/sysv/calls/getdirentriesattr.s +++ b/libc/sysv/calls/getdirentriesattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getdirentriesattr 0xffffffff20deffff globl +.scall getdirentriesattr 0xfffffffff20defff globl diff --git a/libc/sysv/calls/getdtablecount.s b/libc/sysv/calls/getdtablecount.s index 3f5264e52..4606e1f78 100644 --- a/libc/sysv/calls/getdtablecount.s +++ b/libc/sysv/calls/getdtablecount.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getdtablecount 0x0012ffffffffffff globl +.scall getdtablecount 0xfff012ffffffffff globl diff --git a/libc/sysv/calls/getdtablesize.s b/libc/sysv/calls/getdtablesize.s index addb56905..67338d6e1 100644 --- a/libc/sysv/calls/getdtablesize.s +++ b/libc/sysv/calls/getdtablesize.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getdtablesize 0xffff00592059ffff globl +.scall getdtablesize 0xffffff0592059fff globl diff --git a/libc/sysv/calls/getegid.s b/libc/sysv/calls/getegid.s index a0d488a50..88f764a6a 100644 --- a/libc/sysv/calls/getegid.s +++ b/libc/sysv/calls/getegid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getegid 0x002b002b202b006c globl +.scall getegid 0xfff02b02b202b06c globl diff --git a/libc/sysv/calls/geteuid.s b/libc/sysv/calls/geteuid.s index ebe3c1a28..8b49a1940 100644 --- a/libc/sysv/calls/geteuid.s +++ b/libc/sysv/calls/geteuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall geteuid 0x001900192019006b globl +.scall geteuid 0xfff019019201906b globl diff --git a/libc/sysv/calls/getfh.s b/libc/sysv/calls/getfh.s index ac7053612..dfbc26cd4 100644 --- a/libc/sysv/calls/getfh.s +++ b/libc/sysv/calls/getfh.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getfh 0x00a100a120a1ffff globl +.scall getfh 0x18b0a10a120a1fff globl diff --git a/libc/sysv/calls/getfhat.s b/libc/sysv/calls/getfhat.s index d9eba15c6..81e6d1ac6 100644 --- a/libc/sysv/calls/getfhat.s +++ b/libc/sysv/calls/getfhat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getfhat 0xffff0234ffffffff globl +.scall getfhat 0xffffff234fffffff globl diff --git a/libc/sysv/calls/getfsstat.s b/libc/sysv/calls/getfsstat.s index 9dcc72a76..38b78922c 100644 --- a/libc/sysv/calls/getfsstat.s +++ b/libc/sysv/calls/getfsstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getfsstat 0x003e022d215bffff globl +.scall getfsstat 0xfff03e22d215bfff globl diff --git a/libc/sysv/calls/getgroups.s b/libc/sysv/calls/getgroups.s index 68ead1411..e9160aacf 100644 --- a/libc/sysv/calls/getgroups.s +++ b/libc/sysv/calls/getgroups.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getgroups 0x004f004f204f0073 globl +.scall getgroups 0x04f04f04f204f073 globl diff --git a/libc/sysv/calls/gethostid.s b/libc/sysv/calls/gethostid.s index c8b3ce886..c79761537 100644 --- a/libc/sysv/calls/gethostid.s +++ b/libc/sysv/calls/gethostid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall gethostid 0xffff008effffffff globl +.scall gethostid 0xffffff08efffffff globl diff --git a/libc/sysv/calls/gethostuuid.s b/libc/sysv/calls/gethostuuid.s index 1b4d9c26a..0e1d1563d 100644 --- a/libc/sysv/calls/gethostuuid.s +++ b/libc/sysv/calls/gethostuuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall gethostuuid 0xffffffff208effff globl +.scall gethostuuid 0xfffffffff208efff globl diff --git a/libc/sysv/calls/getkerninfo.s b/libc/sysv/calls/getkerninfo.s index 33d6d4b15..882a4ee86 100644 --- a/libc/sysv/calls/getkerninfo.s +++ b/libc/sysv/calls/getkerninfo.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getkerninfo 0xffff003fffffffff globl +.scall getkerninfo 0xffffff03ffffffff globl diff --git a/libc/sysv/calls/getlogin.s b/libc/sysv/calls/getlogin.s index b09eda28f..b5539f5f4 100644 --- a/libc/sysv/calls/getlogin.s +++ b/libc/sysv/calls/getlogin.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getlogin 0xffff00312031ffff globl +.scall getlogin 0xffffff0312031fff globl diff --git a/libc/sysv/calls/getlogin_r.s b/libc/sysv/calls/getlogin_r.s index 92d3dde86..f91b18e9f 100644 --- a/libc/sysv/calls/getlogin_r.s +++ b/libc/sysv/calls/getlogin_r.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getlogin_r 0x008dffffffffffff globl +.scall getlogin_r 0xfff08dffffffffff globl diff --git a/libc/sysv/calls/getloginclass.s b/libc/sysv/calls/getloginclass.s index 2be612152..bef2c9c96 100644 --- a/libc/sysv/calls/getloginclass.s +++ b/libc/sysv/calls/getloginclass.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getloginclass 0xffff020bffffffff globl +.scall getloginclass 0xffffff20bfffffff globl diff --git a/libc/sysv/calls/getpagesize_freebsd.s b/libc/sysv/calls/getpagesize_freebsd.s index e5d174780..64e54c0e6 100644 --- a/libc/sysv/calls/getpagesize_freebsd.s +++ b/libc/sysv/calls/getpagesize_freebsd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getpagesize_freebsd 0xffff0040ffffffff globl hidden +.scall getpagesize_freebsd 0xffffff040fffffff globl hidden diff --git a/libc/sysv/calls/getpgid.s b/libc/sysv/calls/getpgid.s index 88cc6863c..d0589b77f 100644 --- a/libc/sysv/calls/getpgid.s +++ b/libc/sysv/calls/getpgid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getpgid 0x00cf00cf20970079 globl +.scall getpgid 0x0cf0cf0cf2097079 globl diff --git a/libc/sysv/calls/getpgrp.s b/libc/sysv/calls/getpgrp.s index dbe8d672f..e3b8dd1ec 100644 --- a/libc/sysv/calls/getpgrp.s +++ b/libc/sysv/calls/getpgrp.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getpgrp 0x005100512051006f globl +.scall getpgrp 0x051051051205106f globl diff --git a/libc/sysv/calls/getresgid.s b/libc/sysv/calls/getresgid.s index 2b4a51b25..38adca514 100644 --- a/libc/sysv/calls/getresgid.s +++ b/libc/sysv/calls/getresgid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getresgid 0x011b0169ffff0078 globl +.scall getresgid 0xfff11b169ffff078 globl diff --git a/libc/sysv/calls/getresuid.s b/libc/sysv/calls/getresuid.s index 64fefc4ac..d5c7fda21 100644 --- a/libc/sysv/calls/getresuid.s +++ b/libc/sysv/calls/getresuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getresuid 0x01190168ffff0076 globl +.scall getresuid 0xfff119168ffff076 globl diff --git a/libc/sysv/calls/getrtable.s b/libc/sysv/calls/getrtable.s index 01def27f6..72ce0565c 100644 --- a/libc/sysv/calls/getrtable.s +++ b/libc/sysv/calls/getrtable.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getrtable 0x0137ffffffffffff globl +.scall getrtable 0xfff137ffffffffff globl diff --git a/libc/sysv/calls/getsgroups.s b/libc/sysv/calls/getsgroups.s index e689904be..8044dd632 100644 --- a/libc/sysv/calls/getsgroups.s +++ b/libc/sysv/calls/getsgroups.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getsgroups 0xffffffff2120ffff globl +.scall getsgroups 0xfffffffff2120fff globl diff --git a/libc/sysv/calls/getthrid.s b/libc/sysv/calls/getthrid.s index 931bbf6e0..28010f884 100644 --- a/libc/sysv/calls/getthrid.s +++ b/libc/sysv/calls/getthrid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getthrid 0x012bffffffffffff globl +.scall getthrid 0xfff12bffffffffff globl diff --git a/libc/sysv/calls/getwgroups.s b/libc/sysv/calls/getwgroups.s index 3e3a26e4d..c9db62451 100644 --- a/libc/sysv/calls/getwgroups.s +++ b/libc/sysv/calls/getwgroups.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getwgroups 0xffffffff2122ffff globl +.scall getwgroups 0xfffffffff2122fff globl diff --git a/libc/sysv/calls/getxattr.s b/libc/sysv/calls/getxattr.s index ad2c59d7e..836948586 100644 --- a/libc/sysv/calls/getxattr.s +++ b/libc/sysv/calls/getxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall getxattr 0xffffffff20ea00bf globl +.scall getxattr 0x17affffff20ea0bf globl diff --git a/libc/sysv/calls/grab_pgo_data.s b/libc/sysv/calls/grab_pgo_data.s index e02888a81..6d6d658f4 100644 --- a/libc/sysv/calls/grab_pgo_data.s +++ b/libc/sysv/calls/grab_pgo_data.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall grab_pgo_data 0xffffffff21edffff globl +.scall grab_pgo_data 0xfffffffff21edfff globl diff --git a/libc/sysv/calls/gssd_syscall.s b/libc/sysv/calls/gssd_syscall.s index 590a35fc8..0acc6664a 100644 --- a/libc/sysv/calls/gssd_syscall.s +++ b/libc/sysv/calls/gssd_syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall gssd_syscall 0xffff01f9ffffffff globl +.scall gssd_syscall 0xffffff1f9fffffff globl diff --git a/libc/sysv/calls/guarded_close_np.s b/libc/sysv/calls/guarded_close_np.s index 63c92c149..0de85bfd9 100644 --- a/libc/sysv/calls/guarded_close_np.s +++ b/libc/sysv/calls/guarded_close_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall guarded_close_np 0xffffffff21baffff globl +.scall guarded_close_np 0xfffffffff21bafff globl diff --git a/libc/sysv/calls/guarded_kqueue_np.s b/libc/sysv/calls/guarded_kqueue_np.s index 42a7d97c7..d66a92c7e 100644 --- a/libc/sysv/calls/guarded_kqueue_np.s +++ b/libc/sysv/calls/guarded_kqueue_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall guarded_kqueue_np 0xffffffff21bbffff globl +.scall guarded_kqueue_np 0xfffffffff21bbfff globl diff --git a/libc/sysv/calls/guarded_open_dprotected_np.s b/libc/sysv/calls/guarded_open_dprotected_np.s index ec86cd871..8d8455839 100644 --- a/libc/sysv/calls/guarded_open_dprotected_np.s +++ b/libc/sysv/calls/guarded_open_dprotected_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall guarded_open_dprotected_np 0xffffffff21e4ffff globl +.scall guarded_open_dprotected_np 0xfffffffff21e4fff globl diff --git a/libc/sysv/calls/guarded_open_np.s b/libc/sysv/calls/guarded_open_np.s index 38e529584..102ba86ee 100644 --- a/libc/sysv/calls/guarded_open_np.s +++ b/libc/sysv/calls/guarded_open_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall guarded_open_np 0xffffffff21b9ffff globl +.scall guarded_open_np 0xfffffffff21b9fff globl diff --git a/libc/sysv/calls/guarded_pwrite_np.s b/libc/sysv/calls/guarded_pwrite_np.s index 32c781d38..07f659a4b 100644 --- a/libc/sysv/calls/guarded_pwrite_np.s +++ b/libc/sysv/calls/guarded_pwrite_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall guarded_pwrite_np 0xffffffff21e6ffff globl +.scall guarded_pwrite_np 0xfffffffff21e6fff globl diff --git a/libc/sysv/calls/guarded_write_np.s b/libc/sysv/calls/guarded_write_np.s index 75ba192b6..918b7d5ac 100644 --- a/libc/sysv/calls/guarded_write_np.s +++ b/libc/sysv/calls/guarded_write_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall guarded_write_np 0xffffffff21e5ffff globl +.scall guarded_write_np 0xfffffffff21e5fff globl diff --git a/libc/sysv/calls/guarded_writev_np.s b/libc/sysv/calls/guarded_writev_np.s index d33d9cf3c..6010a2ec4 100644 --- a/libc/sysv/calls/guarded_writev_np.s +++ b/libc/sysv/calls/guarded_writev_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall guarded_writev_np 0xffffffff21e7ffff globl +.scall guarded_writev_np 0xfffffffff21e7fff globl diff --git a/libc/sysv/calls/identitysvc.s b/libc/sysv/calls/identitysvc.s index fa03a5311..0d3d9e69e 100644 --- a/libc/sysv/calls/identitysvc.s +++ b/libc/sysv/calls/identitysvc.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall identitysvc 0xffffffff2125ffff globl +.scall identitysvc 0xfffffffff2125fff globl diff --git a/libc/sysv/calls/init_module.s b/libc/sysv/calls/init_module.s index 8e9e05f0f..c43b97313 100644 --- a/libc/sysv/calls/init_module.s +++ b/libc/sysv/calls/init_module.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall init_module 0xffffffffffff00af globl +.scall init_module 0xfffffffffffff0af globl diff --git a/libc/sysv/calls/initgroups.s b/libc/sysv/calls/initgroups.s index 8cb8aba46..af61b46fe 100644 --- a/libc/sysv/calls/initgroups.s +++ b/libc/sysv/calls/initgroups.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall initgroups 0xffffffff20f3ffff globl +.scall initgroups 0xfffffffff20f3fff globl diff --git a/libc/sysv/calls/inotify_add_watch.s b/libc/sysv/calls/inotify_add_watch.s index 9fc52ff54..e0caaa230 100644 --- a/libc/sysv/calls/inotify_add_watch.s +++ b/libc/sysv/calls/inotify_add_watch.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall inotify_add_watch 0xffffffffffff00fe globl +.scall inotify_add_watch 0xfffffffffffff0fe globl diff --git a/libc/sysv/calls/inotify_init.s b/libc/sysv/calls/inotify_init.s index 5d8bfd357..87df5b763 100644 --- a/libc/sysv/calls/inotify_init.s +++ b/libc/sysv/calls/inotify_init.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall inotify_init 0xffffffffffff00fd globl +.scall inotify_init 0xfffffffffffff0fd globl diff --git a/libc/sysv/calls/inotify_init1.s b/libc/sysv/calls/inotify_init1.s index 707d29311..53a31904b 100644 --- a/libc/sysv/calls/inotify_init1.s +++ b/libc/sysv/calls/inotify_init1.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall inotify_init1 0xffffffffffff0126 globl +.scall inotify_init1 0xfffffffffffff126 globl diff --git a/libc/sysv/calls/inotify_rm_watch.s b/libc/sysv/calls/inotify_rm_watch.s index b0af1bf17..291edf024 100644 --- a/libc/sysv/calls/inotify_rm_watch.s +++ b/libc/sysv/calls/inotify_rm_watch.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall inotify_rm_watch 0xffffffffffff00ff globl +.scall inotify_rm_watch 0xfffffffffffff0ff globl diff --git a/libc/sysv/calls/io_cancel.s b/libc/sysv/calls/io_cancel.s index a8db82403..d99fcc445 100644 --- a/libc/sysv/calls/io_cancel.s +++ b/libc/sysv/calls/io_cancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_cancel 0xffffffffffff00d2 globl +.scall io_cancel 0xfffffffffffff0d2 globl diff --git a/libc/sysv/calls/io_destroy.s b/libc/sysv/calls/io_destroy.s index 195bda665..b3de906b0 100644 --- a/libc/sysv/calls/io_destroy.s +++ b/libc/sysv/calls/io_destroy.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_destroy 0xffffffffffff00cf globl +.scall io_destroy 0xfffffffffffff0cf globl diff --git a/libc/sysv/calls/io_getevents.s b/libc/sysv/calls/io_getevents.s index 108dd2b50..c4215e012 100644 --- a/libc/sysv/calls/io_getevents.s +++ b/libc/sysv/calls/io_getevents.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_getevents 0xffffffffffff00d0 globl +.scall io_getevents 0xfffffffffffff0d0 globl diff --git a/libc/sysv/calls/io_pgetevents.s b/libc/sysv/calls/io_pgetevents.s index 5e0af623f..e20bcc808 100644 --- a/libc/sysv/calls/io_pgetevents.s +++ b/libc/sysv/calls/io_pgetevents.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_pgetevents 0xffffffffffff014d globl +.scall io_pgetevents 0xfffffffffffff14d globl diff --git a/libc/sysv/calls/io_setup.s b/libc/sysv/calls/io_setup.s index b7ff2ee93..ce5937d0f 100644 --- a/libc/sysv/calls/io_setup.s +++ b/libc/sysv/calls/io_setup.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_setup 0xffffffffffff00ce globl +.scall io_setup 0xfffffffffffff0ce globl diff --git a/libc/sysv/calls/io_submit.s b/libc/sysv/calls/io_submit.s index 60f41b1e5..38c908d9c 100644 --- a/libc/sysv/calls/io_submit.s +++ b/libc/sysv/calls/io_submit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_submit 0xffffffffffff00d1 globl +.scall io_submit 0xfffffffffffff0d1 globl diff --git a/libc/sysv/calls/io_uring_enter.s b/libc/sysv/calls/io_uring_enter.s index 3e84853aa..139f8ce5c 100644 --- a/libc/sysv/calls/io_uring_enter.s +++ b/libc/sysv/calls/io_uring_enter.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_uring_enter 0xffffffffffff01aa globl +.scall io_uring_enter 0xfffffffffffff1aa globl diff --git a/libc/sysv/calls/io_uring_register.s b/libc/sysv/calls/io_uring_register.s index f45042451..c02d4d375 100644 --- a/libc/sysv/calls/io_uring_register.s +++ b/libc/sysv/calls/io_uring_register.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_uring_register 0xffffffffffff01ab globl +.scall io_uring_register 0xfffffffffffff1ab globl diff --git a/libc/sysv/calls/io_uring_setup.s b/libc/sysv/calls/io_uring_setup.s index 19de140f2..aa360f5be 100644 --- a/libc/sysv/calls/io_uring_setup.s +++ b/libc/sysv/calls/io_uring_setup.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall io_uring_setup 0xffffffffffff01a9 globl +.scall io_uring_setup 0xfffffffffffff1a9 globl diff --git a/libc/sysv/calls/ioperm.s b/libc/sysv/calls/ioperm.s index 4ac622bf4..461f129e0 100644 --- a/libc/sysv/calls/ioperm.s +++ b/libc/sysv/calls/ioperm.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ioperm 0xffffffffffff00ad globl +.scall ioperm 0xfffffffffffff0ad globl diff --git a/libc/sysv/calls/iopl.s b/libc/sysv/calls/iopl.s index b857b74c4..8fe9d16d9 100644 --- a/libc/sysv/calls/iopl.s +++ b/libc/sysv/calls/iopl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall iopl 0xffffffffffff00ac globl +.scall iopl 0xfffffffffffff0ac globl diff --git a/libc/sysv/calls/iopolicysys.s b/libc/sysv/calls/iopolicysys.s index 1379678bf..d0e22515c 100644 --- a/libc/sysv/calls/iopolicysys.s +++ b/libc/sysv/calls/iopolicysys.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall iopolicysys 0xffffffff2142ffff globl +.scall iopolicysys 0xfffffffff2142fff globl diff --git a/libc/sysv/calls/ioprio_get.s b/libc/sysv/calls/ioprio_get.s index 40f29cf34..9943bfdbc 100644 --- a/libc/sysv/calls/ioprio_get.s +++ b/libc/sysv/calls/ioprio_get.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ioprio_get 0xffffffffffff00fc globl +.scall ioprio_get 0xfffffffffffff0fc globl diff --git a/libc/sysv/calls/ioprio_set.s b/libc/sysv/calls/ioprio_set.s index 70cfa243d..f020ac3c9 100644 --- a/libc/sysv/calls/ioprio_set.s +++ b/libc/sysv/calls/ioprio_set.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ioprio_set 0xffffffffffff00fb globl +.scall ioprio_set 0xfffffffffffff0fb globl diff --git a/libc/sysv/calls/issetugid.s b/libc/sysv/calls/issetugid.s index f05cab394..226a7cf86 100644 --- a/libc/sysv/calls/issetugid.s +++ b/libc/sysv/calls/issetugid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall issetugid 0x00fd00fd2147ffff globl +.scall issetugid 0xfff0fd0fd2147fff globl diff --git a/libc/sysv/calls/jail.s b/libc/sysv/calls/jail.s index 48d2cd7d6..b0f14153c 100644 --- a/libc/sysv/calls/jail.s +++ b/libc/sysv/calls/jail.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall jail 0xffff0152ffffffff globl +.scall jail 0xffffff152fffffff globl diff --git a/libc/sysv/calls/jail_attach.s b/libc/sysv/calls/jail_attach.s index 8633f725e..33cb1fa3a 100644 --- a/libc/sysv/calls/jail_attach.s +++ b/libc/sysv/calls/jail_attach.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall jail_attach 0xffff01b4ffffffff globl +.scall jail_attach 0xffffff1b4fffffff globl diff --git a/libc/sysv/calls/jail_get.s b/libc/sysv/calls/jail_get.s index 48dac1e78..f2926c25a 100644 --- a/libc/sysv/calls/jail_get.s +++ b/libc/sysv/calls/jail_get.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall jail_get 0xffff01faffffffff globl +.scall jail_get 0xffffff1fafffffff globl diff --git a/libc/sysv/calls/jail_remove.s b/libc/sysv/calls/jail_remove.s index 02c67dee5..d2a4d3afa 100644 --- a/libc/sysv/calls/jail_remove.s +++ b/libc/sysv/calls/jail_remove.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall jail_remove 0xffff01fcffffffff globl +.scall jail_remove 0xffffff1fcfffffff globl diff --git a/libc/sysv/calls/jail_set.s b/libc/sysv/calls/jail_set.s index 709a0cea4..541fe1a08 100644 --- a/libc/sysv/calls/jail_set.s +++ b/libc/sysv/calls/jail_set.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall jail_set 0xffff01fbffffffff globl +.scall jail_set 0xffffff1fbfffffff globl diff --git a/libc/sysv/calls/kas_info.s b/libc/sysv/calls/kas_info.s index 90e3adf10..0bbbb70d9 100644 --- a/libc/sysv/calls/kas_info.s +++ b/libc/sysv/calls/kas_info.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kas_info 0xffffffff21b7ffff globl +.scall kas_info 0xfffffffff21b7fff globl diff --git a/libc/sysv/calls/kbind.s b/libc/sysv/calls/kbind.s index fa00a9999..da271206c 100644 --- a/libc/sysv/calls/kbind.s +++ b/libc/sysv/calls/kbind.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kbind 0x0056ffffffffffff globl +.scall kbind 0xfff056ffffffffff globl diff --git a/libc/sysv/calls/kcmp.s b/libc/sysv/calls/kcmp.s index 246f00dcf..8473bea52 100644 --- a/libc/sysv/calls/kcmp.s +++ b/libc/sysv/calls/kcmp.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kcmp 0xffffffffffff0138 globl +.scall kcmp 0xfffffffffffff138 globl diff --git a/libc/sysv/calls/kdebug_trace.s b/libc/sysv/calls/kdebug_trace.s index 8da324e62..b575e9d37 100644 --- a/libc/sysv/calls/kdebug_trace.s +++ b/libc/sysv/calls/kdebug_trace.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kdebug_trace 0xffffffff20b3ffff globl +.scall kdebug_trace 0xfffffffff20b3fff globl diff --git a/libc/sysv/calls/kdebug_trace_string.s b/libc/sysv/calls/kdebug_trace_string.s index 3e5452e9a..8d883ca99 100644 --- a/libc/sysv/calls/kdebug_trace_string.s +++ b/libc/sysv/calls/kdebug_trace_string.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kdebug_trace_string 0xffffffff20b2ffff globl +.scall kdebug_trace_string 0xfffffffff20b2fff globl diff --git a/libc/sysv/calls/kdebug_typefilter.s b/libc/sysv/calls/kdebug_typefilter.s index 5b01057e6..7ba4d612e 100644 --- a/libc/sysv/calls/kdebug_typefilter.s +++ b/libc/sysv/calls/kdebug_typefilter.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kdebug_typefilter 0xffffffff20b1ffff globl +.scall kdebug_typefilter 0xfffffffff20b1fff globl diff --git a/libc/sysv/calls/kenv.s b/libc/sysv/calls/kenv.s index 068c9adab..aa7e91386 100644 --- a/libc/sysv/calls/kenv.s +++ b/libc/sysv/calls/kenv.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kenv 0xffff0186ffffffff globl +.scall kenv 0xffffff186fffffff globl diff --git a/libc/sysv/calls/kevent.s b/libc/sysv/calls/kevent.s index 45fe5dafb..c160f3a6e 100644 --- a/libc/sysv/calls/kevent.s +++ b/libc/sysv/calls/kevent.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kevent 0x004802302171ffff globl +.scall kevent 0x1b30482302171fff globl diff --git a/libc/sysv/calls/kevent_id.s b/libc/sysv/calls/kevent_id.s index e0284fadb..2fc372dd5 100644 --- a/libc/sysv/calls/kevent_id.s +++ b/libc/sysv/calls/kevent_id.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kevent_id 0xffffffff2177ffff globl +.scall kevent_id 0xfffffffff2177fff globl diff --git a/libc/sysv/calls/kevent_qos.s b/libc/sysv/calls/kevent_qos.s index 3c63ab8ec..ed43d4d60 100644 --- a/libc/sysv/calls/kevent_qos.s +++ b/libc/sysv/calls/kevent_qos.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kevent_qos 0xffffffff2176ffff globl +.scall kevent_qos 0xfffffffff2176fff globl diff --git a/libc/sysv/calls/kexec_file_load.s b/libc/sysv/calls/kexec_file_load.s index a5e7fc2eb..45d22659b 100644 --- a/libc/sysv/calls/kexec_file_load.s +++ b/libc/sysv/calls/kexec_file_load.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kexec_file_load 0xffffffffffff0140 globl +.scall kexec_file_load 0xfffffffffffff140 globl diff --git a/libc/sysv/calls/kexec_load.s b/libc/sysv/calls/kexec_load.s index 6452d04e8..81570f8fc 100644 --- a/libc/sysv/calls/kexec_load.s +++ b/libc/sysv/calls/kexec_load.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kexec_load 0xffffffffffff00f6 globl +.scall kexec_load 0xfffffffffffff0f6 globl diff --git a/libc/sysv/calls/keyctl.s b/libc/sysv/calls/keyctl.s index b8f35f8bb..94b1447d7 100644 --- a/libc/sysv/calls/keyctl.s +++ b/libc/sysv/calls/keyctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall keyctl 0xffffffffffff00fa globl +.scall keyctl 0xfffffffffffff0fa globl diff --git a/libc/sysv/calls/kldfind.s b/libc/sysv/calls/kldfind.s index 67942b9ce..2bbf4ede6 100644 --- a/libc/sysv/calls/kldfind.s +++ b/libc/sysv/calls/kldfind.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldfind 0xffff0132ffffffff globl +.scall kldfind 0xffffff132fffffff globl diff --git a/libc/sysv/calls/kldfirstmod.s b/libc/sysv/calls/kldfirstmod.s index 5d3a1b07d..ae045ede2 100644 --- a/libc/sysv/calls/kldfirstmod.s +++ b/libc/sysv/calls/kldfirstmod.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldfirstmod 0xffff0135ffffffff globl +.scall kldfirstmod 0xffffff135fffffff globl diff --git a/libc/sysv/calls/kldload.s b/libc/sysv/calls/kldload.s index 830d00841..09da77c55 100644 --- a/libc/sysv/calls/kldload.s +++ b/libc/sysv/calls/kldload.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldload 0xffff0130ffffffff globl +.scall kldload 0xffffff130fffffff globl diff --git a/libc/sysv/calls/kldnext.s b/libc/sysv/calls/kldnext.s index 1663b6c9d..35f1bfd59 100644 --- a/libc/sysv/calls/kldnext.s +++ b/libc/sysv/calls/kldnext.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldnext 0xffff0133ffffffff globl +.scall kldnext 0xffffff133fffffff globl diff --git a/libc/sysv/calls/kldstat.s b/libc/sysv/calls/kldstat.s index 3b5748271..a103497b8 100644 --- a/libc/sysv/calls/kldstat.s +++ b/libc/sysv/calls/kldstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldstat 0xffff0134ffffffff globl +.scall kldstat 0xffffff134fffffff globl diff --git a/libc/sysv/calls/kldsym.s b/libc/sysv/calls/kldsym.s index 33740d297..24b26b129 100644 --- a/libc/sysv/calls/kldsym.s +++ b/libc/sysv/calls/kldsym.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldsym 0xffff0151ffffffff globl +.scall kldsym 0xffffff151fffffff globl diff --git a/libc/sysv/calls/kldunload.s b/libc/sysv/calls/kldunload.s index afcf8a24f..51112a4b6 100644 --- a/libc/sysv/calls/kldunload.s +++ b/libc/sysv/calls/kldunload.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldunload 0xffff0131ffffffff globl +.scall kldunload 0xffffff131fffffff globl diff --git a/libc/sysv/calls/kldunloadf.s b/libc/sysv/calls/kldunloadf.s index eb9b64886..310d25dc9 100644 --- a/libc/sysv/calls/kldunloadf.s +++ b/libc/sysv/calls/kldunloadf.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kldunloadf 0xffff01bcffffffff globl +.scall kldunloadf 0xffffff1bcfffffff globl diff --git a/libc/sysv/calls/kmq_notify.s b/libc/sysv/calls/kmq_notify.s index 2a34b03f8..2311c1d32 100644 --- a/libc/sysv/calls/kmq_notify.s +++ b/libc/sysv/calls/kmq_notify.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kmq_notify 0xffff01cdffffffff globl +.scall kmq_notify 0xffffff1cdfffffff globl diff --git a/libc/sysv/calls/kmq_setattr.s b/libc/sysv/calls/kmq_setattr.s index e50f40e68..8b30a9520 100644 --- a/libc/sysv/calls/kmq_setattr.s +++ b/libc/sysv/calls/kmq_setattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kmq_setattr 0xffff01caffffffff globl +.scall kmq_setattr 0xffffff1cafffffff globl diff --git a/libc/sysv/calls/kmq_timedreceive.s b/libc/sysv/calls/kmq_timedreceive.s index 2f521fd7f..96cb00e8b 100644 --- a/libc/sysv/calls/kmq_timedreceive.s +++ b/libc/sysv/calls/kmq_timedreceive.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kmq_timedreceive 0xffff01cbffffffff globl +.scall kmq_timedreceive 0xffffff1cbfffffff globl diff --git a/libc/sysv/calls/kmq_timedsend.s b/libc/sysv/calls/kmq_timedsend.s index e86b68d38..eddd7c511 100644 --- a/libc/sysv/calls/kmq_timedsend.s +++ b/libc/sysv/calls/kmq_timedsend.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kmq_timedsend 0xffff01ccffffffff globl +.scall kmq_timedsend 0xffffff1ccfffffff globl diff --git a/libc/sysv/calls/kmq_unlink.s b/libc/sysv/calls/kmq_unlink.s index 658cf3cff..154f61c41 100644 --- a/libc/sysv/calls/kmq_unlink.s +++ b/libc/sysv/calls/kmq_unlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kmq_unlink 0xffff01ceffffffff globl +.scall kmq_unlink 0xffffff1cefffffff globl diff --git a/libc/sysv/calls/kqueue.s b/libc/sysv/calls/kqueue.s index cb782a5ad..6662c20a5 100644 --- a/libc/sysv/calls/kqueue.s +++ b/libc/sysv/calls/kqueue.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall kqueue 0x010d016a216affff globl +.scall kqueue 0x15810d16a216afff globl diff --git a/libc/sysv/calls/ksem_close.s b/libc/sysv/calls/ksem_close.s index f3e9bec07..22edc2b66 100644 --- a/libc/sysv/calls/ksem_close.s +++ b/libc/sysv/calls/ksem_close.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_close 0xffff0190ffffffff globl +.scall ksem_close 0xffffff190fffffff globl diff --git a/libc/sysv/calls/ksem_destroy.s b/libc/sysv/calls/ksem_destroy.s index f99d520b5..d0e6d9cdd 100644 --- a/libc/sysv/calls/ksem_destroy.s +++ b/libc/sysv/calls/ksem_destroy.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_destroy 0xffff0198ffffffff globl +.scall ksem_destroy 0xffffff198fffffff globl diff --git a/libc/sysv/calls/ksem_getvalue.s b/libc/sysv/calls/ksem_getvalue.s index 3fbe85eb5..f0f4ad690 100644 --- a/libc/sysv/calls/ksem_getvalue.s +++ b/libc/sysv/calls/ksem_getvalue.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_getvalue 0xffff0197ffffffff globl +.scall ksem_getvalue 0xffffff197fffffff globl diff --git a/libc/sysv/calls/ksem_init.s b/libc/sysv/calls/ksem_init.s index a7aa75fca..f141545e5 100644 --- a/libc/sysv/calls/ksem_init.s +++ b/libc/sysv/calls/ksem_init.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_init 0xffff0194ffffffff globl +.scall ksem_init 0xffffff194fffffff globl diff --git a/libc/sysv/calls/ksem_open.s b/libc/sysv/calls/ksem_open.s index 25031535d..c25fb3fbe 100644 --- a/libc/sysv/calls/ksem_open.s +++ b/libc/sysv/calls/ksem_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_open 0xffff0195ffffffff globl +.scall ksem_open 0xffffff195fffffff globl diff --git a/libc/sysv/calls/ksem_post.s b/libc/sysv/calls/ksem_post.s index a0191c728..ca087ec76 100644 --- a/libc/sysv/calls/ksem_post.s +++ b/libc/sysv/calls/ksem_post.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_post 0xffff0191ffffffff globl +.scall ksem_post 0xffffff191fffffff globl diff --git a/libc/sysv/calls/ksem_timedwait.s b/libc/sysv/calls/ksem_timedwait.s index 0c327d69f..f49e005f4 100644 --- a/libc/sysv/calls/ksem_timedwait.s +++ b/libc/sysv/calls/ksem_timedwait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_timedwait 0xffff01b9ffffffff globl +.scall ksem_timedwait 0xffffff1b9fffffff globl diff --git a/libc/sysv/calls/ksem_trywait.s b/libc/sysv/calls/ksem_trywait.s index efce4bb47..014b8e36e 100644 --- a/libc/sysv/calls/ksem_trywait.s +++ b/libc/sysv/calls/ksem_trywait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_trywait 0xffff0193ffffffff globl +.scall ksem_trywait 0xffffff193fffffff globl diff --git a/libc/sysv/calls/ksem_unlink.s b/libc/sysv/calls/ksem_unlink.s index 67fa3d957..0c8717b48 100644 --- a/libc/sysv/calls/ksem_unlink.s +++ b/libc/sysv/calls/ksem_unlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_unlink 0xffff0196ffffffff globl +.scall ksem_unlink 0xffffff196fffffff globl diff --git a/libc/sysv/calls/ksem_wait.s b/libc/sysv/calls/ksem_wait.s index 288230508..9a1c164d9 100644 --- a/libc/sysv/calls/ksem_wait.s +++ b/libc/sysv/calls/ksem_wait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ksem_wait 0xffff0192ffffffff globl +.scall ksem_wait 0xffffff192fffffff globl diff --git a/libc/sysv/calls/ktimer_create.s b/libc/sysv/calls/ktimer_create.s index 8bddd920f..781837e70 100644 --- a/libc/sysv/calls/ktimer_create.s +++ b/libc/sysv/calls/ktimer_create.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ktimer_create 0xffff00ebffffffff globl +.scall ktimer_create 0xffffff0ebfffffff globl diff --git a/libc/sysv/calls/ktimer_delete.s b/libc/sysv/calls/ktimer_delete.s index 74a1d7d29..c177f5d02 100644 --- a/libc/sysv/calls/ktimer_delete.s +++ b/libc/sysv/calls/ktimer_delete.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ktimer_delete 0xffff00ecffffffff globl +.scall ktimer_delete 0xffffff0ecfffffff globl diff --git a/libc/sysv/calls/ktimer_getoverrun.s b/libc/sysv/calls/ktimer_getoverrun.s index 6403962a7..10b62c492 100644 --- a/libc/sysv/calls/ktimer_getoverrun.s +++ b/libc/sysv/calls/ktimer_getoverrun.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ktimer_getoverrun 0xffff00efffffffff globl +.scall ktimer_getoverrun 0xffffff0effffffff globl diff --git a/libc/sysv/calls/ktimer_gettime.s b/libc/sysv/calls/ktimer_gettime.s index 24ff5ef9e..8e4db214e 100644 --- a/libc/sysv/calls/ktimer_gettime.s +++ b/libc/sysv/calls/ktimer_gettime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ktimer_gettime 0xffff00eeffffffff globl +.scall ktimer_gettime 0xffffff0eefffffff globl diff --git a/libc/sysv/calls/ktimer_settime.s b/libc/sysv/calls/ktimer_settime.s index 7be01a324..a9178b2ef 100644 --- a/libc/sysv/calls/ktimer_settime.s +++ b/libc/sysv/calls/ktimer_settime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ktimer_settime 0xffff00edffffffff globl +.scall ktimer_settime 0xffffff0edfffffff globl diff --git a/libc/sysv/calls/ktrace.s b/libc/sysv/calls/ktrace.s index bb2b566f4..1c9d13329 100644 --- a/libc/sysv/calls/ktrace.s +++ b/libc/sysv/calls/ktrace.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ktrace 0x002d002dffffffff globl +.scall ktrace 0x02d02d02dfffffff globl diff --git a/libc/sysv/calls/lchflags.s b/libc/sysv/calls/lchflags.s index 6675490e6..ae0b2795e 100644 --- a/libc/sysv/calls/lchflags.s +++ b/libc/sysv/calls/lchflags.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lchflags 0xffff0187ffffffff globl +.scall lchflags 0x130fff187fffffff globl diff --git a/libc/sysv/calls/lchmod.s b/libc/sysv/calls/lchmod.s index f4f3eeb2d..f56402f85 100644 --- a/libc/sysv/calls/lchmod.s +++ b/libc/sysv/calls/lchmod.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lchmod 0xffff0112ffffffff globl +.scall lchmod 0x112fff112fffffff globl diff --git a/libc/sysv/calls/ledger.s b/libc/sysv/calls/ledger.s index 76c76d310..117536a37 100644 --- a/libc/sysv/calls/ledger.s +++ b/libc/sysv/calls/ledger.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ledger 0xffffffff2175ffff globl +.scall ledger 0xfffffffff2175fff globl diff --git a/libc/sysv/calls/lgetfh.s b/libc/sysv/calls/lgetfh.s index be803d57f..347978986 100644 --- a/libc/sysv/calls/lgetfh.s +++ b/libc/sysv/calls/lgetfh.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lgetfh 0xffff00a0ffffffff globl +.scall lgetfh 0xffffff0a0fffffff globl diff --git a/libc/sysv/calls/lgetxattr.s b/libc/sysv/calls/lgetxattr.s index d5211005e..fe547cace 100644 --- a/libc/sysv/calls/lgetxattr.s +++ b/libc/sysv/calls/lgetxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lgetxattr 0xffffffffffff00c0 globl +.scall lgetxattr 0x17bffffffffff0c0 globl diff --git a/libc/sysv/calls/lio_listio.s b/libc/sysv/calls/lio_listio.s index 1eac67fc6..aea9a4691 100644 --- a/libc/sysv/calls/lio_listio.s +++ b/libc/sysv/calls/lio_listio.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lio_listio 0xffff01402140ffff globl +.scall lio_listio 0x196fff1402140fff globl diff --git a/libc/sysv/calls/listxattr.s b/libc/sysv/calls/listxattr.s index 2ebc212c5..ec8082aa9 100644 --- a/libc/sysv/calls/listxattr.s +++ b/libc/sysv/calls/listxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall listxattr 0xffffffff20f000c2 globl +.scall listxattr 0x17dffffff20f00c2 globl diff --git a/libc/sysv/calls/llistxattr.s b/libc/sysv/calls/llistxattr.s index 126f8cfd9..1251a72f3 100644 --- a/libc/sysv/calls/llistxattr.s +++ b/libc/sysv/calls/llistxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall llistxattr 0xffffffffffff00c3 globl +.scall llistxattr 0x17effffffffff0c3 globl diff --git a/libc/sysv/calls/lookup_dcookie.s b/libc/sysv/calls/lookup_dcookie.s index 41fd64e0f..c1362a5d6 100644 --- a/libc/sysv/calls/lookup_dcookie.s +++ b/libc/sysv/calls/lookup_dcookie.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lookup_dcookie 0xffffffffffff00d4 globl +.scall lookup_dcookie 0xfffffffffffff0d4 globl diff --git a/libc/sysv/calls/lpathconf.s b/libc/sysv/calls/lpathconf.s index 39e321b0a..1f9ef9e4c 100644 --- a/libc/sysv/calls/lpathconf.s +++ b/libc/sysv/calls/lpathconf.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lpathconf 0xffff0201ffffffff globl +.scall lpathconf 0x1f3fff201fffffff globl diff --git a/libc/sysv/calls/lremovexattr.s b/libc/sysv/calls/lremovexattr.s index 16e5f91ff..fe91618de 100644 --- a/libc/sysv/calls/lremovexattr.s +++ b/libc/sysv/calls/lremovexattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lremovexattr 0xffffffffffff00c6 globl +.scall lremovexattr 0x181ffffffffff0c6 globl diff --git a/libc/sysv/calls/lsetxattr.s b/libc/sysv/calls/lsetxattr.s index ebaf65b88..1b66c9b05 100644 --- a/libc/sysv/calls/lsetxattr.s +++ b/libc/sysv/calls/lsetxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lsetxattr 0xffffffffffff00bd globl +.scall lsetxattr 0x178ffffffffff0bd globl diff --git a/libc/sysv/calls/lstat_extended.s b/libc/sysv/calls/lstat_extended.s index d8da86ca9..3e408109f 100644 --- a/libc/sysv/calls/lstat_extended.s +++ b/libc/sysv/calls/lstat_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lstat_extended 0xffffffff2156ffff globl +.scall lstat_extended 0xfffffffff2156fff globl diff --git a/libc/sysv/calls/lutimes.s b/libc/sysv/calls/lutimes.s index bed9734bb..d9799e0d7 100644 --- a/libc/sysv/calls/lutimes.s +++ b/libc/sysv/calls/lutimes.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall lutimes 0xffff0114ffffffff globl +.scall lutimes 0x1a8fff114fffffff globl diff --git a/libc/sysv/calls/mac_syscall.s b/libc/sysv/calls/mac_syscall.s index 435e70fc0..4011bafe6 100644 --- a/libc/sysv/calls/mac_syscall.s +++ b/libc/sysv/calls/mac_syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mac_syscall 0xffff018affffffff globl +.scall mac_syscall 0xffffff18afffffff globl diff --git a/libc/sysv/calls/mbind.s b/libc/sysv/calls/mbind.s index 9682114c5..9dad8c9d7 100644 --- a/libc/sysv/calls/mbind.s +++ b/libc/sysv/calls/mbind.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mbind 0xffffffffffff00ed globl +.scall mbind 0xfffffffffffff0ed globl diff --git a/libc/sysv/calls/membarrier.s b/libc/sysv/calls/membarrier.s index 1c4e1bc43..47534769d 100644 --- a/libc/sysv/calls/membarrier.s +++ b/libc/sysv/calls/membarrier.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall membarrier 0xffffffffffff0144 globl +.scall membarrier 0xfffffffffffff144 globl diff --git a/libc/sysv/calls/memfd_create.s b/libc/sysv/calls/memfd_create.s index 56ff707b8..8b7637ea7 100644 --- a/libc/sysv/calls/memfd_create.s +++ b/libc/sysv/calls/memfd_create.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall memfd_create 0xffffffffffff013f globl +.scall memfd_create 0xfffffffffffff13f globl diff --git a/libc/sysv/calls/memorystatus_control.s b/libc/sysv/calls/memorystatus_control.s index c9bc5203d..bfcd80d40 100644 --- a/libc/sysv/calls/memorystatus_control.s +++ b/libc/sysv/calls/memorystatus_control.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall memorystatus_control 0xffffffff21b8ffff globl +.scall memorystatus_control 0xfffffffff21b8fff globl diff --git a/libc/sysv/calls/memorystatus_get_level.s b/libc/sysv/calls/memorystatus_get_level.s index e8e21d1a0..b8c05e32e 100644 --- a/libc/sysv/calls/memorystatus_get_level.s +++ b/libc/sysv/calls/memorystatus_get_level.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall memorystatus_get_level 0xffffffff21c5ffff globl +.scall memorystatus_get_level 0xfffffffff21c5fff globl diff --git a/libc/sysv/calls/microstackshot.s b/libc/sysv/calls/microstackshot.s index 5b7c11d4c..89278130e 100644 --- a/libc/sysv/calls/microstackshot.s +++ b/libc/sysv/calls/microstackshot.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall microstackshot 0xffffffff21ecffff globl +.scall microstackshot 0xfffffffff21ecfff globl diff --git a/libc/sysv/calls/migrate_pages.s b/libc/sysv/calls/migrate_pages.s index 1642155ee..0447d85b7 100644 --- a/libc/sysv/calls/migrate_pages.s +++ b/libc/sysv/calls/migrate_pages.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall migrate_pages 0xffffffffffff0100 globl +.scall migrate_pages 0xfffffffffffff100 globl diff --git a/libc/sysv/calls/mincore.s b/libc/sysv/calls/mincore.s index 7913bd9f5..e36f2f267 100644 --- a/libc/sysv/calls/mincore.s +++ b/libc/sysv/calls/mincore.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mincore 0x004e004e204e001b globl +.scall mincore 0x04e04e04e204e01b globl diff --git a/libc/sysv/calls/minherit.s b/libc/sysv/calls/minherit.s index f631b4560..f552e82f7 100644 --- a/libc/sysv/calls/minherit.s +++ b/libc/sysv/calls/minherit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall minherit 0x00fa00fa20faffff globl +.scall minherit 0x1110fa0fa20fafff globl diff --git a/libc/sysv/calls/mkdir_extended.s b/libc/sysv/calls/mkdir_extended.s index 7ca208b0b..4e5e14443 100644 --- a/libc/sysv/calls/mkdir_extended.s +++ b/libc/sysv/calls/mkdir_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mkdir_extended 0xffffffff2124ffff globl +.scall mkdir_extended 0xfffffffff2124fff globl diff --git a/libc/sysv/calls/mkfifo_extended.s b/libc/sysv/calls/mkfifo_extended.s index 9d9d28871..553f2b2c3 100644 --- a/libc/sysv/calls/mkfifo_extended.s +++ b/libc/sysv/calls/mkfifo_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mkfifo_extended 0xffffffff2123ffff globl +.scall mkfifo_extended 0xfffffffff2123fff globl diff --git a/libc/sysv/calls/mkfifoat.s b/libc/sysv/calls/mkfifoat.s index 44ed0d5be..eba1fe7da 100644 --- a/libc/sysv/calls/mkfifoat.s +++ b/libc/sysv/calls/mkfifoat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mkfifoat 0x013f01f1ffffffff globl +.scall mkfifoat 0x1cb13f1f1fffffff globl diff --git a/libc/sysv/calls/mknodat.s b/libc/sysv/calls/mknodat.s index 22bb155b3..12bea54ed 100644 --- a/libc/sysv/calls/mknodat.s +++ b/libc/sysv/calls/mknodat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mknodat 0x0140022fffff0103 globl +.scall mknodat 0x1cc14022fffff103 globl diff --git a/libc/sysv/calls/mlock.s b/libc/sysv/calls/mlock.s index 9ca7bc617..150979f9c 100644 --- a/libc/sysv/calls/mlock.s +++ b/libc/sysv/calls/mlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mlock 0x00cb00cb20cb0095 globl +.scall mlock 0x0cb0cb0cb20cb095 globl diff --git a/libc/sysv/calls/mlock2.s b/libc/sysv/calls/mlock2.s index f81707590..7a697945f 100644 --- a/libc/sysv/calls/mlock2.s +++ b/libc/sysv/calls/mlock2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mlock2 0xffffffffffff0145 globl +.scall mlock2 0xfffffffffffff145 globl diff --git a/libc/sysv/calls/mlockall.s b/libc/sysv/calls/mlockall.s index 994eefe39..572deda38 100644 --- a/libc/sysv/calls/mlockall.s +++ b/libc/sysv/calls/mlockall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mlockall 0x010f014421440097 globl +.scall mlockall 0x0f210f1442144097 globl diff --git a/libc/sysv/calls/modfind.s b/libc/sysv/calls/modfind.s index e5d32f631..7725d6299 100644 --- a/libc/sysv/calls/modfind.s +++ b/libc/sysv/calls/modfind.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall modfind 0xffff012fffffffff globl +.scall modfind 0xffffff12ffffffff globl diff --git a/libc/sysv/calls/modfnext.s b/libc/sysv/calls/modfnext.s index ba0559c22..2c1133139 100644 --- a/libc/sysv/calls/modfnext.s +++ b/libc/sysv/calls/modfnext.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall modfnext 0xffff012effffffff globl +.scall modfnext 0xffffff12efffffff globl diff --git a/libc/sysv/calls/modify_ldt.s b/libc/sysv/calls/modify_ldt.s index acb39c794..a77e42469 100644 --- a/libc/sysv/calls/modify_ldt.s +++ b/libc/sysv/calls/modify_ldt.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall modify_ldt 0xffffffffffff009a globl +.scall modify_ldt 0xfffffffffffff09a globl diff --git a/libc/sysv/calls/modnext.s b/libc/sysv/calls/modnext.s index 614e06378..72d0c77b5 100644 --- a/libc/sysv/calls/modnext.s +++ b/libc/sysv/calls/modnext.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall modnext 0xffff012cffffffff globl +.scall modnext 0xffffff12cfffffff globl diff --git a/libc/sysv/calls/modstat.s b/libc/sysv/calls/modstat.s index 894762a14..a292f76a3 100644 --- a/libc/sysv/calls/modstat.s +++ b/libc/sysv/calls/modstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall modstat 0xffff012dffffffff globl +.scall modstat 0xffffff12dfffffff globl diff --git a/libc/sysv/calls/modwatch.s b/libc/sysv/calls/modwatch.s index 3cfcc6f9e..ac36d4418 100644 --- a/libc/sysv/calls/modwatch.s +++ b/libc/sysv/calls/modwatch.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall modwatch 0xffffffff20e9ffff globl +.scall modwatch 0xfffffffff20e9fff globl diff --git a/libc/sysv/calls/mount.s b/libc/sysv/calls/mount.s index 1f7e8a10e..6b1031367 100644 --- a/libc/sysv/calls/mount.s +++ b/libc/sysv/calls/mount.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mount 0x0015001520a700a5 globl +.scall mount 0x19a01501520a70a5 globl diff --git a/libc/sysv/calls/move_pages.s b/libc/sysv/calls/move_pages.s index 77332a761..3083d504f 100644 --- a/libc/sysv/calls/move_pages.s +++ b/libc/sysv/calls/move_pages.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall move_pages 0xffffffffffff0117 globl +.scall move_pages 0xfffffffffffff117 globl diff --git a/libc/sysv/calls/mq_getsetattr.s b/libc/sysv/calls/mq_getsetattr.s index f667f01bf..9b9b75d56 100644 --- a/libc/sysv/calls/mq_getsetattr.s +++ b/libc/sysv/calls/mq_getsetattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mq_getsetattr 0xffffffffffff00f5 globl +.scall mq_getsetattr 0xfffffffffffff0f5 globl diff --git a/libc/sysv/calls/mq_notify.s b/libc/sysv/calls/mq_notify.s index c4248f581..2c32bd205 100644 --- a/libc/sysv/calls/mq_notify.s +++ b/libc/sysv/calls/mq_notify.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mq_notify 0xffffffffffff00f4 globl +.scall mq_notify 0x106ffffffffff0f4 globl diff --git a/libc/sysv/calls/mq_open.s b/libc/sysv/calls/mq_open.s index 5523ce30f..7190a4e3f 100644 --- a/libc/sysv/calls/mq_open.s +++ b/libc/sysv/calls/mq_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mq_open 0xffffffffffff00f0 globl +.scall mq_open 0x101ffffffffff0f0 globl diff --git a/libc/sysv/calls/mq_timedreceive.s b/libc/sysv/calls/mq_timedreceive.s index c5189cdea..fdcca92a7 100644 --- a/libc/sysv/calls/mq_timedreceive.s +++ b/libc/sysv/calls/mq_timedreceive.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mq_timedreceive 0xffffffffffff00f3 globl +.scall mq_timedreceive 0x1b1ffffffffff0f3 globl diff --git a/libc/sysv/calls/mq_timedsend.s b/libc/sysv/calls/mq_timedsend.s index 4747a5a05..8731112f6 100644 --- a/libc/sysv/calls/mq_timedsend.s +++ b/libc/sysv/calls/mq_timedsend.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mq_timedsend 0xffffffffffff00f2 globl +.scall mq_timedsend 0x1b0ffffffffff0f2 globl diff --git a/libc/sysv/calls/mq_unlink.s b/libc/sysv/calls/mq_unlink.s index 9f3e7412b..844003ce0 100644 --- a/libc/sysv/calls/mq_unlink.s +++ b/libc/sysv/calls/mq_unlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mq_unlink 0xffffffffffff00f1 globl +.scall mq_unlink 0x103ffffffffff0f1 globl diff --git a/libc/sysv/calls/mquery.s b/libc/sysv/calls/mquery.s index cc6fa8916..e29d303f1 100644 --- a/libc/sysv/calls/mquery.s +++ b/libc/sysv/calls/mquery.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mquery 0x011effffffffffff globl +.scall mquery 0xfff11effffffffff globl diff --git a/libc/sysv/calls/mremap_encrypted.s b/libc/sysv/calls/mremap_encrypted.s index 427fafb3e..eb50102dd 100644 --- a/libc/sysv/calls/mremap_encrypted.s +++ b/libc/sysv/calls/mremap_encrypted.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall mremap_encrypted 0xffffffff21e9ffff globl +.scall mremap_encrypted 0xfffffffff21e9fff globl diff --git a/libc/sysv/calls/msgctl.s b/libc/sysv/calls/msgctl.s index 40d201c29..7878260d6 100644 --- a/libc/sysv/calls/msgctl.s +++ b/libc/sysv/calls/msgctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msgctl 0x012901ff21020047 globl +.scall msgctl 0x1bc1291ff2102047 globl diff --git a/libc/sysv/calls/msgget.s b/libc/sysv/calls/msgget.s index e04983595..d32750484 100644 --- a/libc/sysv/calls/msgget.s +++ b/libc/sysv/calls/msgget.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msgget 0x00e100e121030044 globl +.scall msgget 0x0e10e10e12103044 globl diff --git a/libc/sysv/calls/msgrcv.s b/libc/sysv/calls/msgrcv.s index 49986c4c8..1ff749c88 100644 --- a/libc/sysv/calls/msgrcv.s +++ b/libc/sysv/calls/msgrcv.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msgrcv 0x00e300e321050046 globl +.scall msgrcv 0x0e30e30e32105046 globl diff --git a/libc/sysv/calls/msgrcv_nocancel.s b/libc/sysv/calls/msgrcv_nocancel.s index c02566820..b80da979c 100644 --- a/libc/sysv/calls/msgrcv_nocancel.s +++ b/libc/sysv/calls/msgrcv_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msgrcv_nocancel 0xffffffff21a3ffff globl +.scall msgrcv_nocancel 0xfffffffff21a3fff globl diff --git a/libc/sysv/calls/msgsnd.s b/libc/sysv/calls/msgsnd.s index 4632da7d2..29dd860a3 100644 --- a/libc/sysv/calls/msgsnd.s +++ b/libc/sysv/calls/msgsnd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msgsnd 0x00e200e221040045 globl +.scall msgsnd 0x0e20e20e22104045 globl diff --git a/libc/sysv/calls/msgsnd_nocancel.s b/libc/sysv/calls/msgsnd_nocancel.s index 59ec4dc25..9d807d33b 100644 --- a/libc/sysv/calls/msgsnd_nocancel.s +++ b/libc/sysv/calls/msgsnd_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msgsnd_nocancel 0xffffffff21a2ffff globl +.scall msgsnd_nocancel 0xfffffffff21a2fff globl diff --git a/libc/sysv/calls/msgsys.s b/libc/sysv/calls/msgsys.s index 30f13e146..644a2a0e4 100644 --- a/libc/sysv/calls/msgsys.s +++ b/libc/sysv/calls/msgsys.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msgsys 0xffff00aa20fcffff globl +.scall msgsys 0xffffff0aa20fcfff globl diff --git a/libc/sysv/calls/msync_nocancel.s b/libc/sysv/calls/msync_nocancel.s index d88d3a197..018bc9c6e 100644 --- a/libc/sysv/calls/msync_nocancel.s +++ b/libc/sysv/calls/msync_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msync_nocancel 0xffffffff2195ffff globl +.scall msync_nocancel 0xfffffffff2195fff globl diff --git a/libc/sysv/calls/msyscall.s b/libc/sysv/calls/msyscall.s index 1eb00f37d..736e8f47e 100644 --- a/libc/sysv/calls/msyscall.s +++ b/libc/sysv/calls/msyscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall msyscall 0x0025ffffffffffff globl +.scall msyscall 0xfff025ffffffffff globl diff --git a/libc/sysv/calls/munlock.s b/libc/sysv/calls/munlock.s index 15b51d419..d2157b3c8 100644 --- a/libc/sysv/calls/munlock.s +++ b/libc/sysv/calls/munlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall munlock 0x00cc00cc20cc0096 globl +.scall munlock 0x0cc0cc0cc20cc096 globl diff --git a/libc/sysv/calls/munlockall.s b/libc/sysv/calls/munlockall.s index afc3f9cf8..adb50985a 100644 --- a/libc/sysv/calls/munlockall.s +++ b/libc/sysv/calls/munlockall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall munlockall 0x0110014521450098 globl +.scall munlockall 0x0f31101452145098 globl diff --git a/libc/sysv/calls/name_to_handle_at.s b/libc/sysv/calls/name_to_handle_at.s index 6657f68cd..0e7dc464a 100644 --- a/libc/sysv/calls/name_to_handle_at.s +++ b/libc/sysv/calls/name_to_handle_at.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall name_to_handle_at 0xffffffffffff012f globl +.scall name_to_handle_at 0xfffffffffffff12f globl diff --git a/libc/sysv/calls/necp_client_action.s b/libc/sysv/calls/necp_client_action.s index 22531db65..412f8a106 100644 --- a/libc/sysv/calls/necp_client_action.s +++ b/libc/sysv/calls/necp_client_action.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall necp_client_action 0xffffffff21f6ffff globl +.scall necp_client_action 0xfffffffff21f6fff globl diff --git a/libc/sysv/calls/necp_match_policy.s b/libc/sysv/calls/necp_match_policy.s index 4b4c47ab0..74bbe04a3 100644 --- a/libc/sysv/calls/necp_match_policy.s +++ b/libc/sysv/calls/necp_match_policy.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall necp_match_policy 0xffffffff21ccffff globl +.scall necp_match_policy 0xfffffffff21ccfff globl diff --git a/libc/sysv/calls/necp_open.s b/libc/sysv/calls/necp_open.s index b4cfd8b79..107bc91c3 100644 --- a/libc/sysv/calls/necp_open.s +++ b/libc/sysv/calls/necp_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall necp_open 0xffffffff21f5ffff globl +.scall necp_open 0xfffffffff21f5fff globl diff --git a/libc/sysv/calls/necp_session_action.s b/libc/sysv/calls/necp_session_action.s index 5fb7fe867..fb70ecdc1 100644 --- a/libc/sysv/calls/necp_session_action.s +++ b/libc/sysv/calls/necp_session_action.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall necp_session_action 0xffffffff220bffff globl +.scall necp_session_action 0xfffffffff220bfff globl diff --git a/libc/sysv/calls/necp_session_open.s b/libc/sysv/calls/necp_session_open.s index af27cf56d..99f6cea98 100644 --- a/libc/sysv/calls/necp_session_open.s +++ b/libc/sysv/calls/necp_session_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall necp_session_open 0xffffffff220affff globl +.scall necp_session_open 0xfffffffff220afff globl diff --git a/libc/sysv/calls/net_qos_guideline.s b/libc/sysv/calls/net_qos_guideline.s index 40ad87842..e374524d5 100644 --- a/libc/sysv/calls/net_qos_guideline.s +++ b/libc/sysv/calls/net_qos_guideline.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall net_qos_guideline 0xffffffff220dffff globl +.scall net_qos_guideline 0xfffffffff220dfff globl diff --git a/libc/sysv/calls/netagent_trigger.s b/libc/sysv/calls/netagent_trigger.s index 367c0eb03..63e2a610b 100644 --- a/libc/sysv/calls/netagent_trigger.s +++ b/libc/sysv/calls/netagent_trigger.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall netagent_trigger 0xffffffff21eaffff globl +.scall netagent_trigger 0xfffffffff21eafff globl diff --git a/libc/sysv/calls/nfsclnt.s b/libc/sysv/calls/nfsclnt.s index e1d4d3edb..1a2bce3ae 100644 --- a/libc/sysv/calls/nfsclnt.s +++ b/libc/sysv/calls/nfsclnt.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nfsclnt 0xffffffff20f7ffff globl +.scall nfsclnt 0xfffffffff20f7fff globl diff --git a/libc/sysv/calls/nfssvc.s b/libc/sysv/calls/nfssvc.s index c79e3eaf9..087563dcb 100644 --- a/libc/sysv/calls/nfssvc.s +++ b/libc/sysv/calls/nfssvc.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nfssvc 0x009b009b209bffff globl +.scall nfssvc 0x09b09b09b209bfff globl diff --git a/libc/sysv/calls/nfstat.s b/libc/sysv/calls/nfstat.s index fa888e550..46eb75f45 100644 --- a/libc/sysv/calls/nfstat.s +++ b/libc/sysv/calls/nfstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nfstat 0xffff0117ffffffff globl +.scall nfstat 0xffffff117fffffff globl diff --git a/libc/sysv/calls/nlm_syscall.s b/libc/sysv/calls/nlm_syscall.s index dbe5eec37..a4567f870 100644 --- a/libc/sysv/calls/nlm_syscall.s +++ b/libc/sysv/calls/nlm_syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nlm_syscall 0xffff009affffffff globl +.scall nlm_syscall 0xffffff09afffffff globl diff --git a/libc/sysv/calls/nlstat.s b/libc/sysv/calls/nlstat.s index e9efe7e9e..424c8c1a5 100644 --- a/libc/sysv/calls/nlstat.s +++ b/libc/sysv/calls/nlstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nlstat 0xffff0118ffffffff globl +.scall nlstat 0xffffff118fffffff globl diff --git a/libc/sysv/calls/nmount.s b/libc/sysv/calls/nmount.s index f57dc079c..62603c033 100644 --- a/libc/sysv/calls/nmount.s +++ b/libc/sysv/calls/nmount.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nmount 0xffff017affffffff globl +.scall nmount 0xffffff17afffffff globl diff --git a/libc/sysv/calls/nnpfs_syscall.s b/libc/sysv/calls/nnpfs_syscall.s index 743581e46..642887787 100644 --- a/libc/sysv/calls/nnpfs_syscall.s +++ b/libc/sysv/calls/nnpfs_syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nnpfs_syscall 0xffff0153ffffffff globl +.scall nnpfs_syscall 0xffffff153fffffff globl diff --git a/libc/sysv/calls/nstat.s b/libc/sysv/calls/nstat.s index 897cc3e2e..08180ad44 100644 --- a/libc/sysv/calls/nstat.s +++ b/libc/sysv/calls/nstat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall nstat 0xffff0116ffffffff globl +.scall nstat 0xffffff116fffffff globl diff --git a/libc/sysv/calls/ntp_adjtime.s b/libc/sysv/calls/ntp_adjtime.s index d697e2379..004c04aea 100644 --- a/libc/sysv/calls/ntp_adjtime.s +++ b/libc/sysv/calls/ntp_adjtime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ntp_adjtime 0xffff00b0220fffff globl +.scall ntp_adjtime 0x0b0fff0b0220ffff globl diff --git a/libc/sysv/calls/ntp_gettime.s b/libc/sysv/calls/ntp_gettime.s index a453c92c6..0ed6ca36e 100644 --- a/libc/sysv/calls/ntp_gettime.s +++ b/libc/sysv/calls/ntp_gettime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ntp_gettime 0xffff00f82210ffff globl +.scall ntp_gettime 0x1c0fff0f82210fff globl diff --git a/libc/sysv/calls/obreak.s b/libc/sysv/calls/obreak.s index 775b68e6b..d9d318a58 100644 --- a/libc/sysv/calls/obreak.s +++ b/libc/sysv/calls/obreak.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall obreak 0x0011ffffffffffff globl +.scall obreak 0x011011ffffffffff globl diff --git a/libc/sysv/calls/open_by_handle_at.s b/libc/sysv/calls/open_by_handle_at.s index 89a126bed..41f3b4f43 100644 --- a/libc/sysv/calls/open_by_handle_at.s +++ b/libc/sysv/calls/open_by_handle_at.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall open_by_handle_at 0xffffffffffff0130 globl +.scall open_by_handle_at 0xfffffffffffff130 globl diff --git a/libc/sysv/calls/open_dprotected_np.s b/libc/sysv/calls/open_dprotected_np.s index decd3500f..f397c253e 100644 --- a/libc/sysv/calls/open_dprotected_np.s +++ b/libc/sysv/calls/open_dprotected_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall open_dprotected_np 0xffffffff20d8ffff globl +.scall open_dprotected_np 0xfffffffff20d8fff globl diff --git a/libc/sysv/calls/open_extended.s b/libc/sysv/calls/open_extended.s index caff06bd4..2c53369d1 100644 --- a/libc/sysv/calls/open_extended.s +++ b/libc/sysv/calls/open_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall open_extended 0xffffffff2115ffff globl +.scall open_extended 0xfffffffff2115fff globl diff --git a/libc/sysv/calls/open_nocancel.s b/libc/sysv/calls/open_nocancel.s index 5fa96d410..1be8c06a3 100644 --- a/libc/sysv/calls/open_nocancel.s +++ b/libc/sysv/calls/open_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall open_nocancel 0xffffffff218effff globl +.scall open_nocancel 0xfffffffff218efff globl diff --git a/libc/sysv/calls/openat_nocancel.s b/libc/sysv/calls/openat_nocancel.s index 7c2493616..e5e3aa199 100644 --- a/libc/sysv/calls/openat_nocancel.s +++ b/libc/sysv/calls/openat_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall openat_nocancel 0xffffffff21d0ffff globl +.scall openat_nocancel 0xfffffffff21d0fff globl diff --git a/libc/sysv/calls/openbyid_np.s b/libc/sysv/calls/openbyid_np.s index 1c2111f0d..c7c6eb2c0 100644 --- a/libc/sysv/calls/openbyid_np.s +++ b/libc/sysv/calls/openbyid_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall openbyid_np 0xffffffff21dfffff globl +.scall openbyid_np 0xfffffffff21dffff globl diff --git a/libc/sysv/calls/os_fault_with_payload.s b/libc/sysv/calls/os_fault_with_payload.s index 6b26fcef3..54e3cfa62 100644 --- a/libc/sysv/calls/os_fault_with_payload.s +++ b/libc/sysv/calls/os_fault_with_payload.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall os_fault_with_payload 0xffffffff2211ffff globl +.scall os_fault_with_payload 0xfffffffff2211fff globl diff --git a/libc/sysv/calls/pathconf.s b/libc/sysv/calls/pathconf.s index 31a606906..cea6c75a0 100644 --- a/libc/sysv/calls/pathconf.s +++ b/libc/sysv/calls/pathconf.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pathconf 0x00bf00bf20bfffff globl +.scall pathconf 0x0bf0bf0bf20bffff globl diff --git a/libc/sysv/calls/pdfork.s b/libc/sysv/calls/pdfork.s index c45681f05..c8f89a966 100644 --- a/libc/sysv/calls/pdfork.s +++ b/libc/sysv/calls/pdfork.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pdfork 0xffff0206ffffffff globl +.scall pdfork 0xffffff206fffffff globl diff --git a/libc/sysv/calls/pdgetpid.s b/libc/sysv/calls/pdgetpid.s index f1c1c365d..c284bcfb5 100644 --- a/libc/sysv/calls/pdgetpid.s +++ b/libc/sysv/calls/pdgetpid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pdgetpid 0xffff0208ffffffff globl +.scall pdgetpid 0xffffff208fffffff globl diff --git a/libc/sysv/calls/pdkill.s b/libc/sysv/calls/pdkill.s index 5eb7e0e63..4cde9fe30 100644 --- a/libc/sysv/calls/pdkill.s +++ b/libc/sysv/calls/pdkill.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pdkill 0xffff0207ffffffff globl +.scall pdkill 0xffffff207fffffff globl diff --git a/libc/sysv/calls/peeloff.s b/libc/sysv/calls/peeloff.s index cfe595479..da8e656a6 100644 --- a/libc/sysv/calls/peeloff.s +++ b/libc/sysv/calls/peeloff.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall peeloff 0xffffffff21c1ffff globl +.scall peeloff 0xfffffffff21c1fff globl diff --git a/libc/sysv/calls/perf_event_open.s b/libc/sysv/calls/perf_event_open.s index 114a96012..b93e0c82e 100644 --- a/libc/sysv/calls/perf_event_open.s +++ b/libc/sysv/calls/perf_event_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall perf_event_open 0xffffffffffff012a globl +.scall perf_event_open 0xfffffffffffff12a globl diff --git a/libc/sysv/calls/persona.s b/libc/sysv/calls/persona.s index 9cc3a3073..17a28babf 100644 --- a/libc/sysv/calls/persona.s +++ b/libc/sysv/calls/persona.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall persona 0xffffffff21eeffff globl +.scall persona 0xfffffffff21eefff globl diff --git a/libc/sysv/calls/personality.s b/libc/sysv/calls/personality.s index 61433369b..af5ba5e47 100644 --- a/libc/sysv/calls/personality.s +++ b/libc/sysv/calls/personality.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall personality 0xffffffffffff0087 globl +.scall personality 0xfffffffffffff087 globl diff --git a/libc/sysv/calls/pid_hibernate.s b/libc/sysv/calls/pid_hibernate.s index a7e651f4e..ae145202e 100644 --- a/libc/sysv/calls/pid_hibernate.s +++ b/libc/sysv/calls/pid_hibernate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pid_hibernate 0xffffffff21b3ffff globl +.scall pid_hibernate 0xfffffffff21b3fff globl diff --git a/libc/sysv/calls/pid_resume.s b/libc/sysv/calls/pid_resume.s index 33fa89d9d..ae30614cc 100644 --- a/libc/sysv/calls/pid_resume.s +++ b/libc/sysv/calls/pid_resume.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pid_resume 0xffffffff21b2ffff globl +.scall pid_resume 0xfffffffff21b2fff globl diff --git a/libc/sysv/calls/pid_shutdown_sockets.s b/libc/sysv/calls/pid_shutdown_sockets.s index ee66da9e4..bac4d5b51 100644 --- a/libc/sysv/calls/pid_shutdown_sockets.s +++ b/libc/sysv/calls/pid_shutdown_sockets.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pid_shutdown_sockets 0xffffffff21b4ffff globl +.scall pid_shutdown_sockets 0xfffffffff21b4fff globl diff --git a/libc/sysv/calls/pid_suspend.s b/libc/sysv/calls/pid_suspend.s index bea3ec964..208d10244 100644 --- a/libc/sysv/calls/pid_suspend.s +++ b/libc/sysv/calls/pid_suspend.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pid_suspend 0xffffffff21b1ffff globl +.scall pid_suspend 0xfffffffff21b1fff globl diff --git a/libc/sysv/calls/pidfd_send_signal.s b/libc/sysv/calls/pidfd_send_signal.s index ee41b42ab..826fb522c 100644 --- a/libc/sysv/calls/pidfd_send_signal.s +++ b/libc/sysv/calls/pidfd_send_signal.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pidfd_send_signal 0xffffffffffff01a8 globl +.scall pidfd_send_signal 0xfffffffffffff1a8 globl diff --git a/libc/sysv/calls/pivot_root.s b/libc/sysv/calls/pivot_root.s index 46f4f6d5a..af62dc86f 100644 --- a/libc/sysv/calls/pivot_root.s +++ b/libc/sysv/calls/pivot_root.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pivot_root 0xffffffffffff009b globl +.scall pivot_root 0xfffffffffffff09b globl diff --git a/libc/sysv/calls/pkey_alloc.s b/libc/sysv/calls/pkey_alloc.s index 42ec9a6a0..6bb6278d3 100644 --- a/libc/sysv/calls/pkey_alloc.s +++ b/libc/sysv/calls/pkey_alloc.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pkey_alloc 0xffffffffffff014a globl +.scall pkey_alloc 0xfffffffffffff14a globl diff --git a/libc/sysv/calls/pkey_free.s b/libc/sysv/calls/pkey_free.s index dba167f63..122616d63 100644 --- a/libc/sysv/calls/pkey_free.s +++ b/libc/sysv/calls/pkey_free.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pkey_free 0xffffffffffff014b globl +.scall pkey_free 0xfffffffffffff14b globl diff --git a/libc/sysv/calls/pkey_mprotect.s b/libc/sysv/calls/pkey_mprotect.s index 02b1cda10..609340081 100644 --- a/libc/sysv/calls/pkey_mprotect.s +++ b/libc/sysv/calls/pkey_mprotect.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pkey_mprotect 0xffffffffffff0149 globl +.scall pkey_mprotect 0xfffffffffffff149 globl diff --git a/libc/sysv/calls/pledge.s b/libc/sysv/calls/pledge.s index 050c6dc97..9d913f0b4 100644 --- a/libc/sysv/calls/pledge.s +++ b/libc/sysv/calls/pledge.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pledge 0x006cffffffffffff globl +.scall pledge 0xfff06cffffffffff globl diff --git a/libc/sysv/calls/poll_nocancel.s b/libc/sysv/calls/poll_nocancel.s index db82471f2..8653555a7 100644 --- a/libc/sysv/calls/poll_nocancel.s +++ b/libc/sysv/calls/poll_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall poll_nocancel 0xffffffff21a1ffff globl +.scall poll_nocancel 0xfffffffff21a1fff globl diff --git a/libc/sysv/calls/prctl.s b/libc/sysv/calls/prctl.s index 4962f8aa4..cf114659e 100644 --- a/libc/sysv/calls/prctl.s +++ b/libc/sysv/calls/prctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall prctl 0xffffffffffff009d globl +.scall prctl 0xfffffffffffff09d globl diff --git a/libc/sysv/calls/pread_nocancel.s b/libc/sysv/calls/pread_nocancel.s index 75d391d28..53c35aad3 100644 --- a/libc/sysv/calls/pread_nocancel.s +++ b/libc/sysv/calls/pread_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pread_nocancel 0xffffffff219effff globl +.scall pread_nocancel 0xfffffffff219efff globl diff --git a/libc/sysv/calls/preadv2.s b/libc/sysv/calls/preadv2.s index 98cbe63c1..f3cdf48a8 100644 --- a/libc/sysv/calls/preadv2.s +++ b/libc/sysv/calls/preadv2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall preadv2 0xffffffffffff0147 globl +.scall preadv2 0xfffffffffffff147 globl diff --git a/libc/sysv/calls/prlimit.s b/libc/sysv/calls/prlimit.s index c6ccf2ac0..73e178147 100644 --- a/libc/sysv/calls/prlimit.s +++ b/libc/sysv/calls/prlimit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall prlimit 0xffffffffffff012e globl +.scall prlimit 0xfffffffffffff12e globl diff --git a/libc/sysv/calls/proc_info.s b/libc/sysv/calls/proc_info.s index 932073d1d..4e35476d8 100644 --- a/libc/sysv/calls/proc_info.s +++ b/libc/sysv/calls/proc_info.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall proc_info 0xffffffff2150ffff globl +.scall proc_info 0xfffffffff2150fff globl diff --git a/libc/sysv/calls/proc_rlimit_control.s b/libc/sysv/calls/proc_rlimit_control.s index 9476d32ca..d9d5b4c61 100644 --- a/libc/sysv/calls/proc_rlimit_control.s +++ b/libc/sysv/calls/proc_rlimit_control.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall proc_rlimit_control 0xffffffff21beffff globl +.scall proc_rlimit_control 0xfffffffff21befff globl diff --git a/libc/sysv/calls/proc_trace_log.s b/libc/sysv/calls/proc_trace_log.s index ddd902441..fc36c4dd1 100644 --- a/libc/sysv/calls/proc_trace_log.s +++ b/libc/sysv/calls/proc_trace_log.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall proc_trace_log 0xffffffff21ddffff globl +.scall proc_trace_log 0xfffffffff21ddfff globl diff --git a/libc/sysv/calls/proc_uuid_policy.s b/libc/sysv/calls/proc_uuid_policy.s index 05ac39b40..fa0d07fa1 100644 --- a/libc/sysv/calls/proc_uuid_policy.s +++ b/libc/sysv/calls/proc_uuid_policy.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall proc_uuid_policy 0xffffffff21c4ffff globl +.scall proc_uuid_policy 0xfffffffff21c4fff globl diff --git a/libc/sysv/calls/procctl.s b/libc/sysv/calls/procctl.s index 22acce464..0f9400080 100644 --- a/libc/sysv/calls/procctl.s +++ b/libc/sysv/calls/procctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall procctl 0xffff0220ffffffff globl +.scall procctl 0xffffff220fffffff globl diff --git a/libc/sysv/calls/process_policy.s b/libc/sysv/calls/process_policy.s index b88bc897c..8a2aca818 100644 --- a/libc/sysv/calls/process_policy.s +++ b/libc/sysv/calls/process_policy.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall process_policy 0xffffffff2143ffff globl +.scall process_policy 0xfffffffff2143fff globl diff --git a/libc/sysv/calls/process_vm_readv.s b/libc/sysv/calls/process_vm_readv.s index 1cf173ea2..dded35088 100644 --- a/libc/sysv/calls/process_vm_readv.s +++ b/libc/sysv/calls/process_vm_readv.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall process_vm_readv 0xffffffffffff0136 globl +.scall process_vm_readv 0xfffffffffffff136 globl diff --git a/libc/sysv/calls/process_vm_writev.s b/libc/sysv/calls/process_vm_writev.s index a70d6bafd..7c1482d71 100644 --- a/libc/sysv/calls/process_vm_writev.s +++ b/libc/sysv/calls/process_vm_writev.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall process_vm_writev 0xffffffffffff0137 globl +.scall process_vm_writev 0xfffffffffffff137 globl diff --git a/libc/sysv/calls/profil.s b/libc/sysv/calls/profil.s index 8f6922270..a9916317d 100644 --- a/libc/sysv/calls/profil.s +++ b/libc/sysv/calls/profil.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall profil 0x002c002cffffffff globl +.scall profil 0x02c02c02cfffffff globl diff --git a/libc/sysv/calls/pselect.s b/libc/sysv/calls/pselect.s index cc4b4604d..7bd523146 100644 --- a/libc/sysv/calls/pselect.s +++ b/libc/sysv/calls/pselect.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pselect 0x006e020a218affff globl +.scall pselect 0x1b406e20a218afff globl diff --git a/libc/sysv/calls/pselect6.s b/libc/sysv/calls/pselect6.s index f7d2efe50..bee91e28f 100644 --- a/libc/sysv/calls/pselect6.s +++ b/libc/sysv/calls/pselect6.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pselect6 0xffffffffffff010e globl +.scall pselect6 0xfffffffffffff10e globl diff --git a/libc/sysv/calls/pselect_nocancel.s b/libc/sysv/calls/pselect_nocancel.s index a8ee7d04a..ceed74034 100644 --- a/libc/sysv/calls/pselect_nocancel.s +++ b/libc/sysv/calls/pselect_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pselect_nocancel 0xffffffff218bffff globl +.scall pselect_nocancel 0xfffffffff218bfff globl diff --git a/libc/sysv/calls/psynch_cvbroad.s b/libc/sysv/calls/psynch_cvbroad.s index 46f5f4577..9cdeacbcc 100644 --- a/libc/sysv/calls/psynch_cvbroad.s +++ b/libc/sysv/calls/psynch_cvbroad.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_cvbroad 0xffffffff212fffff globl +.scall psynch_cvbroad 0xfffffffff212ffff globl diff --git a/libc/sysv/calls/psynch_cvclrprepost.s b/libc/sysv/calls/psynch_cvclrprepost.s index bf4ab8d45..be5c92b8c 100644 --- a/libc/sysv/calls/psynch_cvclrprepost.s +++ b/libc/sysv/calls/psynch_cvclrprepost.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_cvclrprepost 0xffffffff2138ffff globl +.scall psynch_cvclrprepost 0xfffffffff2138fff globl diff --git a/libc/sysv/calls/psynch_cvsignal.s b/libc/sysv/calls/psynch_cvsignal.s index 5ca1664a3..84a3f082f 100644 --- a/libc/sysv/calls/psynch_cvsignal.s +++ b/libc/sysv/calls/psynch_cvsignal.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_cvsignal 0xffffffff2130ffff globl +.scall psynch_cvsignal 0xfffffffff2130fff globl diff --git a/libc/sysv/calls/psynch_cvwait.s b/libc/sysv/calls/psynch_cvwait.s index 326f145c5..3e717ea11 100644 --- a/libc/sysv/calls/psynch_cvwait.s +++ b/libc/sysv/calls/psynch_cvwait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_cvwait 0xffffffff2131ffff globl +.scall psynch_cvwait 0xfffffffff2131fff globl diff --git a/libc/sysv/calls/psynch_mutexdrop.s b/libc/sysv/calls/psynch_mutexdrop.s index 07e86eed7..65d162fc6 100644 --- a/libc/sysv/calls/psynch_mutexdrop.s +++ b/libc/sysv/calls/psynch_mutexdrop.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_mutexdrop 0xffffffff212effff globl +.scall psynch_mutexdrop 0xfffffffff212efff globl diff --git a/libc/sysv/calls/psynch_mutexwait.s b/libc/sysv/calls/psynch_mutexwait.s index c33be154f..de88b0546 100644 --- a/libc/sysv/calls/psynch_mutexwait.s +++ b/libc/sysv/calls/psynch_mutexwait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_mutexwait 0xffffffff212dffff globl +.scall psynch_mutexwait 0xfffffffff212dfff globl diff --git a/libc/sysv/calls/psynch_rw_downgrade.s b/libc/sysv/calls/psynch_rw_downgrade.s index 9ce1ad12e..8f891033f 100644 --- a/libc/sysv/calls/psynch_rw_downgrade.s +++ b/libc/sysv/calls/psynch_rw_downgrade.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_downgrade 0xffffffff212bffff globl +.scall psynch_rw_downgrade 0xfffffffff212bfff globl diff --git a/libc/sysv/calls/psynch_rw_longrdlock.s b/libc/sysv/calls/psynch_rw_longrdlock.s index 0c6ed7899..9d4a8b116 100644 --- a/libc/sysv/calls/psynch_rw_longrdlock.s +++ b/libc/sysv/calls/psynch_rw_longrdlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_longrdlock 0xffffffff2129ffff globl +.scall psynch_rw_longrdlock 0xfffffffff2129fff globl diff --git a/libc/sysv/calls/psynch_rw_rdlock.s b/libc/sysv/calls/psynch_rw_rdlock.s index 5c206ee70..db781e2fc 100644 --- a/libc/sysv/calls/psynch_rw_rdlock.s +++ b/libc/sysv/calls/psynch_rw_rdlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_rdlock 0xffffffff2132ffff globl +.scall psynch_rw_rdlock 0xfffffffff2132fff globl diff --git a/libc/sysv/calls/psynch_rw_unlock.s b/libc/sysv/calls/psynch_rw_unlock.s index a2127b97d..078c4be0b 100644 --- a/libc/sysv/calls/psynch_rw_unlock.s +++ b/libc/sysv/calls/psynch_rw_unlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_unlock 0xffffffff2134ffff globl +.scall psynch_rw_unlock 0xfffffffff2134fff globl diff --git a/libc/sysv/calls/psynch_rw_unlock2.s b/libc/sysv/calls/psynch_rw_unlock2.s index f4ba2a188..e328a06ae 100644 --- a/libc/sysv/calls/psynch_rw_unlock2.s +++ b/libc/sysv/calls/psynch_rw_unlock2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_unlock2 0xffffffff2135ffff globl +.scall psynch_rw_unlock2 0xfffffffff2135fff globl diff --git a/libc/sysv/calls/psynch_rw_upgrade.s b/libc/sysv/calls/psynch_rw_upgrade.s index 8e50503a4..9823e4d21 100644 --- a/libc/sysv/calls/psynch_rw_upgrade.s +++ b/libc/sysv/calls/psynch_rw_upgrade.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_upgrade 0xffffffff212cffff globl +.scall psynch_rw_upgrade 0xfffffffff212cfff globl diff --git a/libc/sysv/calls/psynch_rw_wrlock.s b/libc/sysv/calls/psynch_rw_wrlock.s index 82e353e44..81f50cfe3 100644 --- a/libc/sysv/calls/psynch_rw_wrlock.s +++ b/libc/sysv/calls/psynch_rw_wrlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_wrlock 0xffffffff2133ffff globl +.scall psynch_rw_wrlock 0xfffffffff2133fff globl diff --git a/libc/sysv/calls/psynch_rw_yieldwrlock.s b/libc/sysv/calls/psynch_rw_yieldwrlock.s index ed86ff0a1..a26004871 100644 --- a/libc/sysv/calls/psynch_rw_yieldwrlock.s +++ b/libc/sysv/calls/psynch_rw_yieldwrlock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall psynch_rw_yieldwrlock 0xffffffff212affff globl +.scall psynch_rw_yieldwrlock 0xfffffffff212afff globl diff --git a/libc/sysv/calls/pwrite_nocancel.s b/libc/sysv/calls/pwrite_nocancel.s index 7a1c442d4..2c5c2e49c 100644 --- a/libc/sysv/calls/pwrite_nocancel.s +++ b/libc/sysv/calls/pwrite_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pwrite_nocancel 0xffffffff219fffff globl +.scall pwrite_nocancel 0xfffffffff219ffff globl diff --git a/libc/sysv/calls/pwritev2.s b/libc/sysv/calls/pwritev2.s index 06f93e5e6..d8e1ff5d4 100644 --- a/libc/sysv/calls/pwritev2.s +++ b/libc/sysv/calls/pwritev2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall pwritev2 0xffffffffffff0148 globl +.scall pwritev2 0xfffffffffffff148 globl diff --git a/libc/sysv/calls/quota.s b/libc/sysv/calls/quota.s index 185eaee79..7adca4793 100644 --- a/libc/sysv/calls/quota.s +++ b/libc/sysv/calls/quota.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall quota 0xffff0095ffffffff globl +.scall quota 0xffffff095fffffff globl diff --git a/libc/sysv/calls/quotactl.s b/libc/sysv/calls/quotactl.s index 11c59b21a..cb76da195 100644 --- a/libc/sysv/calls/quotactl.s +++ b/libc/sysv/calls/quotactl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall quotactl 0x0094009420a500b3 globl +.scall quotactl 0xfff09409420a50b3 globl diff --git a/libc/sysv/calls/rctl_add_rule.s b/libc/sysv/calls/rctl_add_rule.s index 01cdca12d..c5e667c06 100644 --- a/libc/sysv/calls/rctl_add_rule.s +++ b/libc/sysv/calls/rctl_add_rule.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rctl_add_rule 0xffff0210ffffffff globl +.scall rctl_add_rule 0xffffff210fffffff globl diff --git a/libc/sysv/calls/rctl_get_limits.s b/libc/sysv/calls/rctl_get_limits.s index e2a9d1582..84bbb4cfc 100644 --- a/libc/sysv/calls/rctl_get_limits.s +++ b/libc/sysv/calls/rctl_get_limits.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rctl_get_limits 0xffff020fffffffff globl +.scall rctl_get_limits 0xffffff20ffffffff globl diff --git a/libc/sysv/calls/rctl_get_racct.s b/libc/sysv/calls/rctl_get_racct.s index 59c174ea4..c252d69bf 100644 --- a/libc/sysv/calls/rctl_get_racct.s +++ b/libc/sysv/calls/rctl_get_racct.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rctl_get_racct 0xffff020dffffffff globl +.scall rctl_get_racct 0xffffff20dfffffff globl diff --git a/libc/sysv/calls/rctl_get_rules.s b/libc/sysv/calls/rctl_get_rules.s index 3e9c799a7..0cba037ae 100644 --- a/libc/sysv/calls/rctl_get_rules.s +++ b/libc/sysv/calls/rctl_get_rules.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rctl_get_rules 0xffff020effffffff globl +.scall rctl_get_rules 0xffffff20efffffff globl diff --git a/libc/sysv/calls/rctl_remove_rule.s b/libc/sysv/calls/rctl_remove_rule.s index edc220a2d..1106dfaa9 100644 --- a/libc/sysv/calls/rctl_remove_rule.s +++ b/libc/sysv/calls/rctl_remove_rule.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rctl_remove_rule 0xffff0211ffffffff globl +.scall rctl_remove_rule 0xffffff211fffffff globl diff --git a/libc/sysv/calls/read_nocancel.s b/libc/sysv/calls/read_nocancel.s index b0e51503e..6e9104fb3 100644 --- a/libc/sysv/calls/read_nocancel.s +++ b/libc/sysv/calls/read_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall read_nocancel 0xffffffff218cffff globl +.scall read_nocancel 0xfffffffff218cfff globl diff --git a/libc/sysv/calls/readahead.s b/libc/sysv/calls/readahead.s index 24dd61b6b..c925604e8 100644 --- a/libc/sysv/calls/readahead.s +++ b/libc/sysv/calls/readahead.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall readahead 0xffffffffffff00bb globl +.scall readahead 0xfffffffffffff0bb globl diff --git a/libc/sysv/calls/readlink.s b/libc/sysv/calls/readlink.s index c8ff7daff..0e9206190 100644 --- a/libc/sysv/calls/readlink.s +++ b/libc/sysv/calls/readlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall readlink 0x003a003a203a0059 globl +.scall readlink 0x03a03a03a203a059 globl diff --git a/libc/sysv/calls/readv_nocancel.s b/libc/sysv/calls/readv_nocancel.s index 7fe7b8a4c..28e3770fe 100644 --- a/libc/sysv/calls/readv_nocancel.s +++ b/libc/sysv/calls/readv_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall readv_nocancel 0xffffffff219bffff globl +.scall readv_nocancel 0xfffffffff219bfff globl diff --git a/libc/sysv/calls/reboot.s b/libc/sysv/calls/reboot.s index d9dc1d79a..d2aee569f 100644 --- a/libc/sysv/calls/reboot.s +++ b/libc/sysv/calls/reboot.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall reboot 0x00370037203700a9 globl +.scall reboot 0x0d003703720370a9 globl diff --git a/libc/sysv/calls/recv.s b/libc/sysv/calls/recv.s index 3f1d49729..20d658b43 100644 --- a/libc/sysv/calls/recv.s +++ b/libc/sysv/calls/recv.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall recv 0xffff0066ffffffff globl +.scall recv 0xffffff066fffffff globl diff --git a/libc/sysv/calls/recvfrom_nocancel.s b/libc/sysv/calls/recvfrom_nocancel.s index fb62f072c..0178bd22a 100644 --- a/libc/sysv/calls/recvfrom_nocancel.s +++ b/libc/sysv/calls/recvfrom_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall recvfrom_nocancel 0xffffffff2193ffff globl +.scall recvfrom_nocancel 0xfffffffff2193fff globl diff --git a/libc/sysv/calls/recvmmsg.s b/libc/sysv/calls/recvmmsg.s index ecc40135f..40406bb08 100644 --- a/libc/sysv/calls/recvmmsg.s +++ b/libc/sysv/calls/recvmmsg.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall recvmmsg 0xffffffffffff012b globl +.scall recvmmsg 0x1dbffffffffff12b globl diff --git a/libc/sysv/calls/recvmsg_nocancel.s b/libc/sysv/calls/recvmsg_nocancel.s index 4d2fb1a10..bb153309a 100644 --- a/libc/sysv/calls/recvmsg_nocancel.s +++ b/libc/sysv/calls/recvmsg_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall recvmsg_nocancel 0xffffffff2191ffff globl +.scall recvmsg_nocancel 0xfffffffff2191fff globl diff --git a/libc/sysv/calls/recvmsg_x.s b/libc/sysv/calls/recvmsg_x.s index b06c08da7..627a32f45 100644 --- a/libc/sysv/calls/recvmsg_x.s +++ b/libc/sysv/calls/recvmsg_x.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall recvmsg_x 0xffffffff21e0ffff globl +.scall recvmsg_x 0xfffffffff21e0fff globl diff --git a/libc/sysv/calls/removexattr.s b/libc/sysv/calls/removexattr.s index a95658c90..d906e0ebd 100644 --- a/libc/sysv/calls/removexattr.s +++ b/libc/sysv/calls/removexattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall removexattr 0xffffffff20ee00c5 globl +.scall removexattr 0x180ffffff20ee0c5 globl diff --git a/libc/sysv/calls/renameat2.s b/libc/sysv/calls/renameat2.s index 3c2a20dd5..4719af84a 100644 --- a/libc/sysv/calls/renameat2.s +++ b/libc/sysv/calls/renameat2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall renameat2 0xffffffffffff013c globl +.scall renameat2 0xfffffffffffff13c globl diff --git a/libc/sysv/calls/renameatx_np.s b/libc/sysv/calls/renameatx_np.s index f38cad902..aa4f1b570 100644 --- a/libc/sysv/calls/renameatx_np.s +++ b/libc/sysv/calls/renameatx_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall renameatx_np 0xffffffff21e8ffff globl +.scall renameatx_np 0xfffffffff21e8fff globl diff --git a/libc/sysv/calls/request_key.s b/libc/sysv/calls/request_key.s index 168698e9c..abd676b03 100644 --- a/libc/sysv/calls/request_key.s +++ b/libc/sysv/calls/request_key.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall request_key 0xffffffffffff00f9 globl +.scall request_key 0xfffffffffffff0f9 globl diff --git a/libc/sysv/calls/restart_syscall.s b/libc/sysv/calls/restart_syscall.s index 1520f20d9..1d717f580 100644 --- a/libc/sysv/calls/restart_syscall.s +++ b/libc/sysv/calls/restart_syscall.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall restart_syscall 0xffffffffffff00db globl +.scall restart_syscall 0xfffffffffffff0db globl diff --git a/libc/sysv/calls/revoke.s b/libc/sysv/calls/revoke.s index 0ce189307..bc70cf9d1 100644 --- a/libc/sysv/calls/revoke.s +++ b/libc/sysv/calls/revoke.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall revoke 0x003800382038ffff globl +.scall revoke 0x0380380382038fff globl diff --git a/libc/sysv/calls/rfork.s b/libc/sysv/calls/rfork.s index 101bdc17e..fe357a9d8 100644 --- a/libc/sysv/calls/rfork.s +++ b/libc/sysv/calls/rfork.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rfork 0xffff00fbffffffff globl +.scall rfork 0xffffff0fbfffffff globl diff --git a/libc/sysv/calls/rseq.s b/libc/sysv/calls/rseq.s index 9a515e345..8c8260dfb 100644 --- a/libc/sysv/calls/rseq.s +++ b/libc/sysv/calls/rseq.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rseq 0xffffffffffff014e globl +.scall rseq 0xfffffffffffff14e globl diff --git a/libc/sysv/calls/rt_sigqueueinfo.s b/libc/sysv/calls/rt_sigqueueinfo.s index ead06df3a..20d9f1ef1 100644 --- a/libc/sysv/calls/rt_sigqueueinfo.s +++ b/libc/sysv/calls/rt_sigqueueinfo.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rt_sigqueueinfo 0xffffffffffff0081 globl +.scall rt_sigqueueinfo 0xfffffffffffff081 globl diff --git a/libc/sysv/calls/rt_tgsigqueueinfo.s b/libc/sysv/calls/rt_tgsigqueueinfo.s index 4bbea9f7a..8f28ff744 100644 --- a/libc/sysv/calls/rt_tgsigqueueinfo.s +++ b/libc/sysv/calls/rt_tgsigqueueinfo.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rt_tgsigqueueinfo 0xffffffffffff0129 globl +.scall rt_tgsigqueueinfo 0xfffffffffffff129 globl diff --git a/libc/sysv/calls/rtprio.s b/libc/sysv/calls/rtprio.s index 94252bef1..cb7cdbb41 100644 --- a/libc/sysv/calls/rtprio.s +++ b/libc/sysv/calls/rtprio.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rtprio 0xffff00a6ffffffff globl +.scall rtprio 0xffffff0a6fffffff globl diff --git a/libc/sysv/calls/rtprio_thread.s b/libc/sysv/calls/rtprio_thread.s index 2c5658fd7..d4e165d99 100644 --- a/libc/sysv/calls/rtprio_thread.s +++ b/libc/sysv/calls/rtprio_thread.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall rtprio_thread 0xffff01d2ffffffff globl +.scall rtprio_thread 0xffffff1d2fffffff globl diff --git a/libc/sysv/calls/sched_get_priority_max.s b/libc/sysv/calls/sched_get_priority_max.s index 37d6d60d0..bf3bbf8e9 100644 --- a/libc/sysv/calls/sched_get_priority_max.s +++ b/libc/sysv/calls/sched_get_priority_max.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_get_priority_max 0xffff014cffff0092 globl +.scall sched_get_priority_max 0xffffff14cffff092 globl diff --git a/libc/sysv/calls/sched_get_priority_min.s b/libc/sysv/calls/sched_get_priority_min.s index caaf2a6b8..f84924ed3 100644 --- a/libc/sysv/calls/sched_get_priority_min.s +++ b/libc/sysv/calls/sched_get_priority_min.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_get_priority_min 0xffff014dffff0093 globl +.scall sched_get_priority_min 0xffffff14dffff093 globl diff --git a/libc/sysv/calls/sched_getaffinity.s b/libc/sysv/calls/sched_getaffinity.s index 16234b505..bebd3af0e 100644 --- a/libc/sysv/calls/sched_getaffinity.s +++ b/libc/sysv/calls/sched_getaffinity.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_getaffinity 0xffffffffffff00cc globl +.scall sched_getaffinity 0xfffffffffffff0cc globl diff --git a/libc/sysv/calls/sched_getattr.s b/libc/sysv/calls/sched_getattr.s index 6d409fa94..d3b56f1ce 100644 --- a/libc/sysv/calls/sched_getattr.s +++ b/libc/sysv/calls/sched_getattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_getattr 0xffffffffffff013b globl +.scall sched_getattr 0xfffffffffffff13b globl diff --git a/libc/sysv/calls/sched_getparam.s b/libc/sysv/calls/sched_getparam.s index 6bb6894d7..148fa9e83 100644 --- a/libc/sysv/calls/sched_getparam.s +++ b/libc/sysv/calls/sched_getparam.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_getparam 0xffff0148ffff008f globl +.scall sched_getparam 0xffffff148ffff08f globl diff --git a/libc/sysv/calls/sched_getscheduler.s b/libc/sysv/calls/sched_getscheduler.s index 1f4a8c201..a32542cc8 100644 --- a/libc/sysv/calls/sched_getscheduler.s +++ b/libc/sysv/calls/sched_getscheduler.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_getscheduler 0xffff014affff0091 globl +.scall sched_getscheduler 0xffffff14affff091 globl diff --git a/libc/sysv/calls/sched_rr_get_interval.s b/libc/sysv/calls/sched_rr_get_interval.s index 939ad6b68..c2df366d2 100644 --- a/libc/sysv/calls/sched_rr_get_interval.s +++ b/libc/sysv/calls/sched_rr_get_interval.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_rr_get_interval 0xffff014effff0094 globl +.scall sched_rr_get_interval 0xffffff14effff094 globl diff --git a/libc/sysv/calls/sched_setattr.s b/libc/sysv/calls/sched_setattr.s index fa478238b..b182293be 100644 --- a/libc/sysv/calls/sched_setattr.s +++ b/libc/sysv/calls/sched_setattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_setattr 0xffffffffffff013a globl +.scall sched_setattr 0xfffffffffffff13a globl diff --git a/libc/sysv/calls/sched_setparam.s b/libc/sysv/calls/sched_setparam.s index 374887f29..555e9ef0b 100644 --- a/libc/sysv/calls/sched_setparam.s +++ b/libc/sysv/calls/sched_setparam.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_setparam 0xffff0147ffff008e globl +.scall sched_setparam 0xffffff147ffff08e globl diff --git a/libc/sysv/calls/sched_setscheduler.s b/libc/sysv/calls/sched_setscheduler.s index 7b2a3d8e9..5d6c60fc8 100644 --- a/libc/sysv/calls/sched_setscheduler.s +++ b/libc/sysv/calls/sched_setscheduler.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sched_setscheduler 0xffff0149ffff0090 globl +.scall sched_setscheduler 0xffffff149ffff090 globl diff --git a/libc/sysv/calls/sctp_generic_recvmsg.s b/libc/sysv/calls/sctp_generic_recvmsg.s index 95eb0b5a8..33d86398d 100644 --- a/libc/sysv/calls/sctp_generic_recvmsg.s +++ b/libc/sysv/calls/sctp_generic_recvmsg.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sctp_generic_recvmsg 0xffff01daffffffff globl +.scall sctp_generic_recvmsg 0xffffff1dafffffff globl diff --git a/libc/sysv/calls/sctp_generic_sendmsg.s b/libc/sysv/calls/sctp_generic_sendmsg.s index 32b30f92f..40c6aa27b 100644 --- a/libc/sysv/calls/sctp_generic_sendmsg.s +++ b/libc/sysv/calls/sctp_generic_sendmsg.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sctp_generic_sendmsg 0xffff01d8ffffffff globl +.scall sctp_generic_sendmsg 0xffffff1d8fffffff globl diff --git a/libc/sysv/calls/sctp_generic_sendmsg_iov.s b/libc/sysv/calls/sctp_generic_sendmsg_iov.s index a3e585c58..e4e544792 100644 --- a/libc/sysv/calls/sctp_generic_sendmsg_iov.s +++ b/libc/sysv/calls/sctp_generic_sendmsg_iov.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sctp_generic_sendmsg_iov 0xffff01d9ffffffff globl +.scall sctp_generic_sendmsg_iov 0xffffff1d9fffffff globl diff --git a/libc/sysv/calls/sctp_peeloff.s b/libc/sysv/calls/sctp_peeloff.s index 6aa154533..b4aa2e43e 100644 --- a/libc/sysv/calls/sctp_peeloff.s +++ b/libc/sysv/calls/sctp_peeloff.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sctp_peeloff 0xffff01d7ffffffff globl +.scall sctp_peeloff 0xffffff1d7fffffff globl diff --git a/libc/sysv/calls/searchfs.s b/libc/sysv/calls/searchfs.s index 512953d6c..e445fcb78 100644 --- a/libc/sysv/calls/searchfs.s +++ b/libc/sysv/calls/searchfs.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall searchfs 0xffffffff20e1ffff globl +.scall searchfs 0xfffffffff20e1fff globl diff --git a/libc/sysv/calls/seccomp.s b/libc/sysv/calls/seccomp.s index 345aab3f0..750247c51 100644 --- a/libc/sysv/calls/seccomp.s +++ b/libc/sysv/calls/seccomp.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall seccomp 0xffffffffffff013d globl +.scall seccomp 0xfffffffffffff13d globl diff --git a/libc/sysv/calls/select_nocancel.s b/libc/sysv/calls/select_nocancel.s index 0f95ba32f..1964ed85c 100644 --- a/libc/sysv/calls/select_nocancel.s +++ b/libc/sysv/calls/select_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall select_nocancel 0xffffffff2197ffff globl +.scall select_nocancel 0xfffffffff2197fff globl diff --git a/libc/sysv/calls/sem_close.s b/libc/sysv/calls/sem_close.s index b6c558977..581b9f73a 100644 --- a/libc/sysv/calls/sem_close.s +++ b/libc/sysv/calls/sem_close.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sem_close 0xffffffff210dffff globl +.scall sem_close 0xfffffffff210dfff globl diff --git a/libc/sysv/calls/sem_open.s b/libc/sysv/calls/sem_open.s index 6dbbe30c4..b88f25e1c 100644 --- a/libc/sysv/calls/sem_open.s +++ b/libc/sysv/calls/sem_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sem_open 0xffffffff210cffff globl +.scall sem_open 0xfffffffff210cfff globl diff --git a/libc/sysv/calls/sem_post.s b/libc/sysv/calls/sem_post.s index 42a0c476c..449ad931f 100644 --- a/libc/sysv/calls/sem_post.s +++ b/libc/sysv/calls/sem_post.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sem_post 0xffffffff2111ffff globl +.scall sem_post 0xfffffffff2111fff globl diff --git a/libc/sysv/calls/sem_trywait.s b/libc/sysv/calls/sem_trywait.s index fe4f13bea..4e3c20d20 100644 --- a/libc/sysv/calls/sem_trywait.s +++ b/libc/sysv/calls/sem_trywait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sem_trywait 0xffffffff2110ffff globl +.scall sem_trywait 0xfffffffff2110fff globl diff --git a/libc/sysv/calls/sem_unlink.s b/libc/sysv/calls/sem_unlink.s index 43266c38c..15a8f223c 100644 --- a/libc/sysv/calls/sem_unlink.s +++ b/libc/sysv/calls/sem_unlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sem_unlink 0xffffffff210effff globl +.scall sem_unlink 0xfffffffff210efff globl diff --git a/libc/sysv/calls/sem_wait.s b/libc/sysv/calls/sem_wait.s index 899ac2411..865d57a30 100644 --- a/libc/sysv/calls/sem_wait.s +++ b/libc/sysv/calls/sem_wait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sem_wait 0xffffffff210fffff globl +.scall sem_wait 0xfffffffff210ffff globl diff --git a/libc/sysv/calls/sem_wait_nocancel.s b/libc/sysv/calls/sem_wait_nocancel.s index 5b7ac9d36..ca1507c55 100644 --- a/libc/sysv/calls/sem_wait_nocancel.s +++ b/libc/sysv/calls/sem_wait_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sem_wait_nocancel 0xffffffff21a4ffff globl +.scall sem_wait_nocancel 0xfffffffff21a4fff globl diff --git a/libc/sysv/calls/semctl.s b/libc/sysv/calls/semctl.s index af68e825c..aac34431d 100644 --- a/libc/sysv/calls/semctl.s +++ b/libc/sysv/calls/semctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall semctl 0x012701fe20fe0042 globl +.scall semctl 0xfff1271fe20fe042 globl diff --git a/libc/sysv/calls/semget.s b/libc/sysv/calls/semget.s index a4a5bd7e5..746137084 100644 --- a/libc/sysv/calls/semget.s +++ b/libc/sysv/calls/semget.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall semget 0x00dd00dd20ff0040 globl +.scall semget 0x0dd0dd0dd20ff040 globl diff --git a/libc/sysv/calls/semop.s b/libc/sysv/calls/semop.s index 6a06d8a89..3d41833a8 100644 --- a/libc/sysv/calls/semop.s +++ b/libc/sysv/calls/semop.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall semop 0x012200de21000041 globl +.scall semop 0x0de1220de2100041 globl diff --git a/libc/sysv/calls/semsys.s b/libc/sysv/calls/semsys.s index 90bbeb128..3ff0a6cdf 100644 --- a/libc/sysv/calls/semsys.s +++ b/libc/sysv/calls/semsys.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall semsys 0xffff00a920fbffff globl +.scall semsys 0xffffff0a920fbfff globl diff --git a/libc/sysv/calls/semtimedop.s b/libc/sysv/calls/semtimedop.s index 7334d85b7..aac75006f 100644 --- a/libc/sysv/calls/semtimedop.s +++ b/libc/sysv/calls/semtimedop.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall semtimedop 0xffffffffffff00dc globl +.scall semtimedop 0xfffffffffffff0dc globl diff --git a/libc/sysv/calls/send.s b/libc/sysv/calls/send.s index 98c8d3afe..68ce28351 100644 --- a/libc/sysv/calls/send.s +++ b/libc/sysv/calls/send.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall send 0xffff0065ffffffff globl +.scall send 0xffffff065fffffff globl diff --git a/libc/sysv/calls/sendmmsg.s b/libc/sysv/calls/sendmmsg.s index 33474f4c5..d9763549a 100644 --- a/libc/sysv/calls/sendmmsg.s +++ b/libc/sysv/calls/sendmmsg.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sendmmsg 0xffffffffffff0133 globl +.scall sendmmsg 0x1dcffffffffff133 globl diff --git a/libc/sysv/calls/sendmsg_nocancel.s b/libc/sysv/calls/sendmsg_nocancel.s index ad79bbca9..6f9ff0e12 100644 --- a/libc/sysv/calls/sendmsg_nocancel.s +++ b/libc/sysv/calls/sendmsg_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sendmsg_nocancel 0xffffffff2192ffff globl +.scall sendmsg_nocancel 0xfffffffff2192fff globl diff --git a/libc/sysv/calls/sendmsg_x.s b/libc/sysv/calls/sendmsg_x.s index 631970f3b..de4519846 100644 --- a/libc/sysv/calls/sendmsg_x.s +++ b/libc/sysv/calls/sendmsg_x.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sendmsg_x 0xffffffff21e1ffff globl +.scall sendmsg_x 0xfffffffff21e1fff globl diff --git a/libc/sysv/calls/sendsyslog.s b/libc/sysv/calls/sendsyslog.s index 72696baa3..7d093c30a 100644 --- a/libc/sysv/calls/sendsyslog.s +++ b/libc/sysv/calls/sendsyslog.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sendsyslog 0x0070ffffffffffff globl +.scall sendsyslog 0xfff070ffffffffff globl diff --git a/libc/sysv/calls/sendto_nocancel.s b/libc/sysv/calls/sendto_nocancel.s index 95379ddab..cfae4ae34 100644 --- a/libc/sysv/calls/sendto_nocancel.s +++ b/libc/sysv/calls/sendto_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sendto_nocancel 0xffffffff219dffff globl +.scall sendto_nocancel 0xfffffffff219dfff globl diff --git a/libc/sysv/calls/set_mempolicy.s b/libc/sysv/calls/set_mempolicy.s index ff58ac627..38aa75570 100644 --- a/libc/sysv/calls/set_mempolicy.s +++ b/libc/sysv/calls/set_mempolicy.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall set_mempolicy 0xffffffffffff00ee globl +.scall set_mempolicy 0xfffffffffffff0ee globl diff --git a/libc/sysv/calls/set_robust_list.s b/libc/sysv/calls/set_robust_list.s index 54a4e002d..bb0cfbe3e 100644 --- a/libc/sysv/calls/set_robust_list.s +++ b/libc/sysv/calls/set_robust_list.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall set_robust_list 0xffffffffffff0111 globl +.scall set_robust_list 0xfffffffffffff111 globl diff --git a/libc/sysv/calls/set_tid_address.s b/libc/sysv/calls/set_tid_address.s index 161da1f3d..2d705b9ea 100644 --- a/libc/sysv/calls/set_tid_address.s +++ b/libc/sysv/calls/set_tid_address.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall set_tid_address 0xffffffffffff00da globl +.scall set_tid_address 0xfffffffffffff0da globl diff --git a/libc/sysv/calls/setattrlist.s b/libc/sysv/calls/setattrlist.s index 06a3e102c..11e4cec82 100644 --- a/libc/sysv/calls/setattrlist.s +++ b/libc/sysv/calls/setattrlist.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setattrlist 0xffffffff20ddffff globl +.scall setattrlist 0xfffffffff20ddfff globl diff --git a/libc/sysv/calls/setattrlistat.s b/libc/sysv/calls/setattrlistat.s index 933031c89..f55f23a98 100644 --- a/libc/sysv/calls/setattrlistat.s +++ b/libc/sysv/calls/setattrlistat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setattrlistat 0xffffffff220cffff globl +.scall setattrlistat 0xfffffffff220cfff globl diff --git a/libc/sysv/calls/setaudit.s b/libc/sysv/calls/setaudit.s index d45bdb595..ecdb3f86c 100644 --- a/libc/sysv/calls/setaudit.s +++ b/libc/sysv/calls/setaudit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setaudit 0xffff01c2ffffffff globl +.scall setaudit 0xffffff1c2fffffff globl diff --git a/libc/sysv/calls/setaudit_addr.s b/libc/sysv/calls/setaudit_addr.s index e264f2205..76636a896 100644 --- a/libc/sysv/calls/setaudit_addr.s +++ b/libc/sysv/calls/setaudit_addr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setaudit_addr 0xffff01c42166ffff globl +.scall setaudit_addr 0xffffff1c42166fff globl diff --git a/libc/sysv/calls/setauid.s b/libc/sysv/calls/setauid.s index f3fc7b100..b857e3154 100644 --- a/libc/sysv/calls/setauid.s +++ b/libc/sysv/calls/setauid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setauid 0xffff01c02162ffff globl +.scall setauid 0xffffff1c02162fff globl diff --git a/libc/sysv/calls/setcontext.s b/libc/sysv/calls/setcontext.s index b112860d7..460d26b46 100644 --- a/libc/sysv/calls/setcontext.s +++ b/libc/sysv/calls/setcontext.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setcontext 0xffff01a6ffffffff globl +.scall setcontext 0x134fff1a6fffffff globl diff --git a/libc/sysv/calls/setdomainname.s b/libc/sysv/calls/setdomainname.s index 0f0dd8935..7c04d6d14 100644 --- a/libc/sysv/calls/setdomainname.s +++ b/libc/sysv/calls/setdomainname.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setdomainname 0xffff00a3ffff00ab globl +.scall setdomainname 0xffffff0a3ffff0ab globl diff --git a/libc/sysv/calls/setfib.s b/libc/sysv/calls/setfib.s index e6eaa7c6e..449bd59d5 100644 --- a/libc/sysv/calls/setfib.s +++ b/libc/sysv/calls/setfib.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setfib 0xffff00afffffffff globl +.scall setfib 0xffffff0affffffff globl diff --git a/libc/sysv/calls/setfsgid.s b/libc/sysv/calls/setfsgid.s index 759abfe4c..e442f5b32 100644 --- a/libc/sysv/calls/setfsgid.s +++ b/libc/sysv/calls/setfsgid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setfsgid 0xffffffffffff007b globl +.scall setfsgid 0xfffffffffffff07b globl diff --git a/libc/sysv/calls/setfsuid.s b/libc/sysv/calls/setfsuid.s index 08f879c50..13ccbc867 100644 --- a/libc/sysv/calls/setfsuid.s +++ b/libc/sysv/calls/setfsuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setfsuid 0xffffffffffff007a globl +.scall setfsuid 0xfffffffffffff07a globl diff --git a/libc/sysv/calls/setgid.s b/libc/sysv/calls/setgid.s index 0de919364..9ba366f63 100644 --- a/libc/sysv/calls/setgid.s +++ b/libc/sysv/calls/setgid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setgid 0x00b500b520b5006a globl +.scall setgid 0x0b50b50b520b506a globl diff --git a/libc/sysv/calls/setgroups.s b/libc/sysv/calls/setgroups.s index b11a78c39..2cc2b8c02 100644 --- a/libc/sysv/calls/setgroups.s +++ b/libc/sysv/calls/setgroups.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setgroups 0x0050005020500074 globl +.scall setgroups 0x0500500502050074 globl diff --git a/libc/sysv/calls/sethostid.s b/libc/sysv/calls/sethostid.s index 98f1f33b7..7ec1fb2fa 100644 --- a/libc/sysv/calls/sethostid.s +++ b/libc/sysv/calls/sethostid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sethostid 0xffff008fffffffff globl +.scall sethostid 0xffffff08ffffffff globl diff --git a/libc/sysv/calls/sethostname.s b/libc/sysv/calls/sethostname.s index 23f41d1bf..a0bd98c97 100644 --- a/libc/sysv/calls/sethostname.s +++ b/libc/sysv/calls/sethostname.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sethostname 0xffff0058ffff00aa globl +.scall sethostname 0xffffff058ffff0aa globl diff --git a/libc/sysv/calls/setlogin.s b/libc/sysv/calls/setlogin.s index 653d77a0d..24da97e99 100644 --- a/libc/sysv/calls/setlogin.s +++ b/libc/sysv/calls/setlogin.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setlogin 0x003200322032ffff globl +.scall setlogin 0xfff0320322032fff globl diff --git a/libc/sysv/calls/setloginclass.s b/libc/sysv/calls/setloginclass.s index 323b437d4..5a96f215d 100644 --- a/libc/sysv/calls/setloginclass.s +++ b/libc/sysv/calls/setloginclass.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setloginclass 0xffff020cffffffff globl +.scall setloginclass 0xffffff20cfffffff globl diff --git a/libc/sysv/calls/setns.s b/libc/sysv/calls/setns.s index e99769a9e..08cf68adb 100644 --- a/libc/sysv/calls/setns.s +++ b/libc/sysv/calls/setns.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setns 0xffffffffffff0134 globl +.scall setns 0xfffffffffffff134 globl diff --git a/libc/sysv/calls/setpgid.s b/libc/sysv/calls/setpgid.s index 662cb6ab9..aadc0e122 100644 --- a/libc/sysv/calls/setpgid.s +++ b/libc/sysv/calls/setpgid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setpgid 0x005200522052006d globl +.scall setpgid 0x052052052205206d globl diff --git a/libc/sysv/calls/setprivexec.s b/libc/sysv/calls/setprivexec.s index 9b0b7ffca..8ef0b17de 100644 --- a/libc/sysv/calls/setprivexec.s +++ b/libc/sysv/calls/setprivexec.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setprivexec 0xffffffff2098ffff globl +.scall setprivexec 0xfffffffff2098fff globl diff --git a/libc/sysv/calls/setregid.s b/libc/sysv/calls/setregid.s index 018f0b86f..9441a6d58 100644 --- a/libc/sysv/calls/setregid.s +++ b/libc/sysv/calls/setregid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setregid 0x007f007f207f0072 globl +.scall setregid 0x07f07f07f207f072 globl diff --git a/libc/sysv/calls/setreuid.s b/libc/sysv/calls/setreuid.s index cdc71e8db..345f768c4 100644 --- a/libc/sysv/calls/setreuid.s +++ b/libc/sysv/calls/setreuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setreuid 0x007e007e207e0071 globl +.scall setreuid 0x07e07e07e207e071 globl diff --git a/libc/sysv/calls/setrtable.s b/libc/sysv/calls/setrtable.s index f31d9f1c1..6aef1c909 100644 --- a/libc/sysv/calls/setrtable.s +++ b/libc/sysv/calls/setrtable.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setrtable 0x0136ffffffffffff globl +.scall setrtable 0xfff136ffffffffff globl diff --git a/libc/sysv/calls/setsgroups.s b/libc/sysv/calls/setsgroups.s index 408a56e9e..7ecdce4cc 100644 --- a/libc/sysv/calls/setsgroups.s +++ b/libc/sysv/calls/setsgroups.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setsgroups 0xffffffff211fffff globl +.scall setsgroups 0xfffffffff211ffff globl diff --git a/libc/sysv/calls/settid.s b/libc/sysv/calls/settid.s index 3feddf354..82ace3a4d 100644 --- a/libc/sysv/calls/settid.s +++ b/libc/sysv/calls/settid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall settid 0xffffffff211dffff globl +.scall settid 0xfffffffff211dfff globl diff --git a/libc/sysv/calls/settid_with_pid.s b/libc/sysv/calls/settid_with_pid.s index c8b2635f0..9910edab8 100644 --- a/libc/sysv/calls/settid_with_pid.s +++ b/libc/sysv/calls/settid_with_pid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall settid_with_pid 0xffffffff2137ffff globl +.scall settid_with_pid 0xfffffffff2137fff globl diff --git a/libc/sysv/calls/settimeofday.s b/libc/sysv/calls/settimeofday.s index 479703850..ce7934784 100644 --- a/libc/sysv/calls/settimeofday.s +++ b/libc/sysv/calls/settimeofday.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall settimeofday 0x0044007a207a00a4 globl +.scall settimeofday 0x1a304407a207a0a4 globl diff --git a/libc/sysv/calls/setuid.s b/libc/sysv/calls/setuid.s index 4cb57fbe0..e68dc4786 100644 --- a/libc/sysv/calls/setuid.s +++ b/libc/sysv/calls/setuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setuid 0x0017001720170069 globl +.scall setuid 0x0170170172017069 globl diff --git a/libc/sysv/calls/setwgroups.s b/libc/sysv/calls/setwgroups.s index eb8afdf17..b6131d601 100644 --- a/libc/sysv/calls/setwgroups.s +++ b/libc/sysv/calls/setwgroups.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setwgroups 0xffffffff2121ffff globl +.scall setwgroups 0xfffffffff2121fff globl diff --git a/libc/sysv/calls/setxattr.s b/libc/sysv/calls/setxattr.s index de6326607..e8f87a40d 100644 --- a/libc/sysv/calls/setxattr.s +++ b/libc/sysv/calls/setxattr.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall setxattr 0xffffffff20ec00bc globl +.scall setxattr 0x177ffffff20ec0bc globl diff --git a/libc/sysv/calls/sfi_ctl.s b/libc/sysv/calls/sfi_ctl.s index e43259990..ca5aeae8c 100644 --- a/libc/sysv/calls/sfi_ctl.s +++ b/libc/sysv/calls/sfi_ctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sfi_ctl 0xffffffff21c8ffff globl +.scall sfi_ctl 0xfffffffff21c8fff globl diff --git a/libc/sysv/calls/sfi_pidctl.s b/libc/sysv/calls/sfi_pidctl.s index a7a078550..db2e5af79 100644 --- a/libc/sysv/calls/sfi_pidctl.s +++ b/libc/sysv/calls/sfi_pidctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sfi_pidctl 0xffffffff21c9ffff globl +.scall sfi_pidctl 0xfffffffff21c9fff globl diff --git a/libc/sysv/calls/shared_region_check_np.s b/libc/sysv/calls/shared_region_check_np.s index dd235e521..4ee6c468e 100644 --- a/libc/sysv/calls/shared_region_check_np.s +++ b/libc/sysv/calls/shared_region_check_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shared_region_check_np 0xffffffff2126ffff globl +.scall shared_region_check_np 0xfffffffff2126fff globl diff --git a/libc/sysv/calls/shared_region_map_and_slide_np.s b/libc/sysv/calls/shared_region_map_and_slide_np.s index c358449af..0f5017f7d 100644 --- a/libc/sysv/calls/shared_region_map_and_slide_np.s +++ b/libc/sysv/calls/shared_region_map_and_slide_np.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shared_region_map_and_slide_np 0xffffffff21b6ffff globl +.scall shared_region_map_and_slide_np 0xfffffffff21b6fff globl diff --git a/libc/sysv/calls/shm_open.s b/libc/sysv/calls/shm_open.s index 3604da57a..18533f38a 100644 --- a/libc/sysv/calls/shm_open.s +++ b/libc/sysv/calls/shm_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shm_open 0xffff01e2210affff globl +.scall shm_open 0xffffff1e2210afff globl diff --git a/libc/sysv/calls/shm_unlink.s b/libc/sysv/calls/shm_unlink.s index 3996231ec..d7fd4de7b 100644 --- a/libc/sysv/calls/shm_unlink.s +++ b/libc/sysv/calls/shm_unlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shm_unlink 0xffff01e3210bffff globl +.scall shm_unlink 0xffffff1e3210bfff globl diff --git a/libc/sysv/calls/shmat.s b/libc/sysv/calls/shmat.s index 792e6579d..0692a9116 100644 --- a/libc/sysv/calls/shmat.s +++ b/libc/sysv/calls/shmat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shmat 0x00e400e42106001e globl +.scall shmat 0x0e40e40e4210601e globl diff --git a/libc/sysv/calls/shmctl.s b/libc/sysv/calls/shmctl.s index 4f7a8983b..a123f5cc3 100644 --- a/libc/sysv/calls/shmctl.s +++ b/libc/sysv/calls/shmctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shmctl 0x012802002107001f globl +.scall shmctl 0x1bb128200210701f globl diff --git a/libc/sysv/calls/shmdt.s b/libc/sysv/calls/shmdt.s index 012d11e11..5088dc378 100644 --- a/libc/sysv/calls/shmdt.s +++ b/libc/sysv/calls/shmdt.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shmdt 0x00e600e621080043 globl +.scall shmdt 0x0e60e60e62108043 globl diff --git a/libc/sysv/calls/shmget.s b/libc/sysv/calls/shmget.s index 57db66c0f..bac184d87 100644 --- a/libc/sysv/calls/shmget.s +++ b/libc/sysv/calls/shmget.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shmget 0x012100e72109001d globl +.scall shmget 0x0e71210e7210901d globl diff --git a/libc/sysv/calls/shmsys.s b/libc/sysv/calls/shmsys.s index 6e43e806e..997064404 100644 --- a/libc/sysv/calls/shmsys.s +++ b/libc/sysv/calls/shmsys.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall shmsys 0xffff00ab20fdffff globl +.scall shmsys 0xffffff0ab20fdfff globl diff --git a/libc/sysv/calls/sigaltstack.s b/libc/sysv/calls/sigaltstack.s index 8a3e2eb2c..55a571197 100644 --- a/libc/sysv/calls/sigaltstack.s +++ b/libc/sysv/calls/sigaltstack.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigaltstack 0x0120003520350083 globl +.scall sigaltstack 0x1191200352035083 globl diff --git a/libc/sysv/calls/sigblock.s b/libc/sysv/calls/sigblock.s index 2b0cf1919..11a72ea81 100644 --- a/libc/sysv/calls/sigblock.s +++ b/libc/sysv/calls/sigblock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigblock 0xffff006dffffffff globl +.scall sigblock 0xffffff06dfffffff globl diff --git a/libc/sysv/calls/signalfd.s b/libc/sysv/calls/signalfd.s index b61b5018a..accce4849 100644 --- a/libc/sysv/calls/signalfd.s +++ b/libc/sysv/calls/signalfd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall signalfd 0xffffffffffff011a globl +.scall signalfd 0xfffffffffffff11a globl diff --git a/libc/sysv/calls/signalfd4.s b/libc/sysv/calls/signalfd4.s index 76303dd16..5408019cf 100644 --- a/libc/sysv/calls/signalfd4.s +++ b/libc/sysv/calls/signalfd4.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall signalfd4 0xffffffffffff0121 globl +.scall signalfd4 0xfffffffffffff121 globl diff --git a/libc/sysv/calls/sigpending.s b/libc/sysv/calls/sigpending.s index 5770268e4..77c5e32ef 100644 --- a/libc/sysv/calls/sigpending.s +++ b/libc/sysv/calls/sigpending.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigpending 0x003400342034007f globl +.scall sigpending 0x124034034203407f globl diff --git a/libc/sysv/calls/sigqueue.s b/libc/sysv/calls/sigqueue.s index dfacb65f4..ecb9104f3 100644 --- a/libc/sysv/calls/sigqueue.s +++ b/libc/sysv/calls/sigqueue.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigqueue 0xffff01c8ffffffff globl +.scall sigqueue 0xffffff1c8fffffff globl diff --git a/libc/sysv/calls/sigsetmask.s b/libc/sysv/calls/sigsetmask.s index f5b1a5cc3..0bbc4a6a3 100644 --- a/libc/sysv/calls/sigsetmask.s +++ b/libc/sysv/calls/sigsetmask.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigsetmask 0xffff006effffffff globl +.scall sigsetmask 0xffffff06efffffff globl diff --git a/libc/sysv/calls/sigstack.s b/libc/sysv/calls/sigstack.s index c38a48a69..e9d35e7f2 100644 --- a/libc/sysv/calls/sigstack.s +++ b/libc/sysv/calls/sigstack.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigstack 0xffff0070ffffffff globl +.scall sigstack 0xffffff070fffffff globl diff --git a/libc/sysv/calls/sigsuspend_nocancel.s b/libc/sysv/calls/sigsuspend_nocancel.s index 518be59dc..345925f96 100644 --- a/libc/sysv/calls/sigsuspend_nocancel.s +++ b/libc/sysv/calls/sigsuspend_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigsuspend_nocancel 0xffffffff219affff globl +.scall sigsuspend_nocancel 0xfffffffff219afff globl diff --git a/libc/sysv/calls/sigtimedwait.s b/libc/sysv/calls/sigtimedwait.s index 8e0d833eb..960f8e9a1 100644 --- a/libc/sysv/calls/sigtimedwait.s +++ b/libc/sysv/calls/sigtimedwait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigtimedwait 0xffff0159ffff0080 globl +.scall sigtimedwait 0xffffff159ffff080 globl diff --git a/libc/sysv/calls/sigvec.s b/libc/sysv/calls/sigvec.s index cfff6bc08..2e7fcb3f5 100644 --- a/libc/sysv/calls/sigvec.s +++ b/libc/sysv/calls/sigvec.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigvec 0xffff006cffffffff globl +.scall sigvec 0xffffff06cfffffff globl diff --git a/libc/sysv/calls/sigwait.s b/libc/sysv/calls/sigwait.s index d6d7fe266..953ffdb0d 100644 --- a/libc/sysv/calls/sigwait.s +++ b/libc/sysv/calls/sigwait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigwait 0xffff01ad214affff globl +.scall sigwait 0xffffff1ad214afff globl diff --git a/libc/sysv/calls/sigwaitinfo.s b/libc/sysv/calls/sigwaitinfo.s index 89fd3b348..72b6e9788 100644 --- a/libc/sysv/calls/sigwaitinfo.s +++ b/libc/sysv/calls/sigwaitinfo.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sigwaitinfo 0xffff015affffffff globl +.scall sigwaitinfo 0xffffff15afffffff globl diff --git a/libc/sysv/calls/socket_delegate.s b/libc/sysv/calls/socket_delegate.s index aa4ef9a80..d86ee8240 100644 --- a/libc/sysv/calls/socket_delegate.s +++ b/libc/sysv/calls/socket_delegate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall socket_delegate 0xffffffff21c2ffff globl +.scall socket_delegate 0xfffffffff21c2fff globl diff --git a/libc/sysv/calls/sstk.s b/libc/sysv/calls/sstk.s index 5a1a57ed3..6e438bf44 100644 --- a/libc/sysv/calls/sstk.s +++ b/libc/sysv/calls/sstk.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sstk 0xffff0046ffffffff globl +.scall sstk 0xffffff046fffffff globl diff --git a/libc/sysv/calls/stack_snapshot_with_config.s b/libc/sysv/calls/stack_snapshot_with_config.s index d4594e0db..ae417d5c2 100644 --- a/libc/sysv/calls/stack_snapshot_with_config.s +++ b/libc/sysv/calls/stack_snapshot_with_config.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall stack_snapshot_with_config 0xffffffff21ebffff globl +.scall stack_snapshot_with_config 0xfffffffff21ebfff globl diff --git a/libc/sysv/calls/stat_extended.s b/libc/sysv/calls/stat_extended.s index b2e633579..f5e61eeca 100644 --- a/libc/sysv/calls/stat_extended.s +++ b/libc/sysv/calls/stat_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall stat_extended 0xffffffff2155ffff globl +.scall stat_extended 0xfffffffff2155fff globl diff --git a/libc/sysv/calls/statfs.s b/libc/sysv/calls/statfs.s index 5cb323060..afe31631f 100644 --- a/libc/sysv/calls/statfs.s +++ b/libc/sysv/calls/statfs.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall statfs 0x003f022b21590089 globl +.scall statfs 0xfff03f22b2159089 globl diff --git a/libc/sysv/calls/statx.s b/libc/sysv/calls/statx.s index edb23c6d5..2f01646a2 100644 --- a/libc/sysv/calls/statx.s +++ b/libc/sysv/calls/statx.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall statx 0xffffffffffff014c globl +.scall statx 0xfffffffffffff14c globl diff --git a/libc/sysv/calls/swapcontext.s b/libc/sysv/calls/swapcontext.s index ec9e499a4..8ceccdccc 100644 --- a/libc/sysv/calls/swapcontext.s +++ b/libc/sysv/calls/swapcontext.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall swapcontext 0xffff01a7ffffffff globl +.scall swapcontext 0xffffff1a7fffffff globl diff --git a/libc/sysv/calls/swapctl.s b/libc/sysv/calls/swapctl.s index a39a050e3..0fc7483de 100644 --- a/libc/sysv/calls/swapctl.s +++ b/libc/sysv/calls/swapctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall swapctl 0x00c1ffffffffffff globl +.scall swapctl 0x10f0c1ffffffffff globl diff --git a/libc/sysv/calls/swapoff.s b/libc/sysv/calls/swapoff.s index 98027f376..7b0e2e944 100644 --- a/libc/sysv/calls/swapoff.s +++ b/libc/sysv/calls/swapoff.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall swapoff 0xffff01a8ffff00a8 globl +.scall swapoff 0xffffff1a8ffff0a8 globl diff --git a/libc/sysv/calls/swapon.s b/libc/sysv/calls/swapon.s index 8e1d08cf2..df68abf6c 100644 --- a/libc/sysv/calls/swapon.s +++ b/libc/sysv/calls/swapon.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall swapon 0xffff0055205500a7 globl +.scall swapon 0xffffff05520550a7 globl diff --git a/libc/sysv/calls/syncfs.s b/libc/sysv/calls/syncfs.s index ef3913184..2d54df8cb 100644 --- a/libc/sysv/calls/syncfs.s +++ b/libc/sysv/calls/syncfs.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall syncfs 0xffffffffffff0132 globl +.scall syncfs 0xfffffffffffff132 globl diff --git a/libc/sysv/calls/sys_access.s b/libc/sysv/calls/sys_access.s index bd683c194..aa7fca2da 100644 --- a/libc/sysv/calls/sys_access.s +++ b/libc/sysv/calls/sys_access.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_access 0x0021002120210015 globl hidden +.scall sys_access 0x0210210212021015 globl hidden diff --git a/libc/sysv/calls/sys_alarm.s b/libc/sysv/calls/sys_alarm.s index 5b1db11d9..ce9219ef3 100644 --- a/libc/sysv/calls/sys_alarm.s +++ b/libc/sysv/calls/sys_alarm.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_alarm 0xffffffffffff0025 globl hidden +.scall sys_alarm 0xfffffffffffff025 globl hidden diff --git a/libc/sysv/calls/sys_arch_prctl.s b/libc/sysv/calls/sys_arch_prctl.s index 47d1d7a6a..36804cc28 100644 --- a/libc/sysv/calls/sys_arch_prctl.s +++ b/libc/sysv/calls/sys_arch_prctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_arch_prctl 0x00a500a5ffff009e globl hidden +.scall sys_arch_prctl 0xfff0a50a5ffff09e globl hidden diff --git a/libc/sysv/calls/sys_bind.s b/libc/sysv/calls/sys_bind.s index 8159cf61f..9cdf85e4a 100644 --- a/libc/sysv/calls/sys_bind.s +++ b/libc/sysv/calls/sys_bind.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_bind 0x0068006820680031 globl hidden +.scall sys_bind 0x0680680682068031 globl hidden diff --git a/libc/sysv/calls/sys_chdir.s b/libc/sysv/calls/sys_chdir.s index db34d1ae9..55e2f4f5f 100644 --- a/libc/sysv/calls/sys_chdir.s +++ b/libc/sysv/calls/sys_chdir.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_chdir 0x000c000c200c0050 globl hidden +.scall sys_chdir 0x00c00c00c200c050 globl hidden diff --git a/libc/sysv/calls/sys_chmod.s b/libc/sysv/calls/sys_chmod.s index 9d59d5a55..7ebe0c5a9 100644 --- a/libc/sysv/calls/sys_chmod.s +++ b/libc/sysv/calls/sys_chmod.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_chmod 0x000f000f200f005a globl hidden +.scall sys_chmod 0x00f00f00f200f05a globl hidden diff --git a/libc/sysv/calls/sys_chown.s b/libc/sysv/calls/sys_chown.s index 66ed272b3..533de8e31 100644 --- a/libc/sysv/calls/sys_chown.s +++ b/libc/sysv/calls/sys_chown.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_chown 0x001000102010005c globl hidden +.scall sys_chown 0x010010010201005c globl hidden diff --git a/libc/sysv/calls/sys_clock_gettime.s b/libc/sysv/calls/sys_clock_gettime.s index 31bf45d10..2203bf41a 100644 --- a/libc/sysv/calls/sys_clock_gettime.s +++ b/libc/sysv/calls/sys_clock_gettime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_clock_gettime 0x005700e8ffff00e4 globl hidden +.scall sys_clock_gettime 0x1ab0570e8ffff0e4 globl hidden diff --git a/libc/sysv/calls/sys_close.s b/libc/sysv/calls/sys_close.s index d805a11c4..88eb697d7 100644 --- a/libc/sysv/calls/sys_close.s +++ b/libc/sysv/calls/sys_close.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_close 0x0006000620060003 globl hidden +.scall sys_close 0x0060060062006003 globl hidden diff --git a/libc/sysv/calls/sys_copy_file_range.s b/libc/sysv/calls/sys_copy_file_range.s index a91148dd1..b9f22a9d4 100644 --- a/libc/sysv/calls/sys_copy_file_range.s +++ b/libc/sysv/calls/sys_copy_file_range.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_copy_file_range 0xffff0239ffff0146 globl hidden +.scall sys_copy_file_range 0xffffff239ffff146 globl hidden diff --git a/libc/sysv/calls/sys_creat.s b/libc/sysv/calls/sys_creat.s index 7f1158015..a903f73fb 100644 --- a/libc/sysv/calls/sys_creat.s +++ b/libc/sysv/calls/sys_creat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_creat 0xffff0008ffff0055 globl hidden +.scall sys_creat 0xffffff008ffff055 globl hidden diff --git a/libc/sysv/calls/sys_dup.s b/libc/sysv/calls/sys_dup.s index 98bfff00f..a8f60a134 100644 --- a/libc/sysv/calls/sys_dup.s +++ b/libc/sysv/calls/sys_dup.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_dup 0x0029002920290020 globl hidden +.scall sys_dup 0x0290290292029020 globl hidden diff --git a/libc/sysv/calls/sys_dup2.s b/libc/sysv/calls/sys_dup2.s index 236d02371..75ef0d0f2 100644 --- a/libc/sysv/calls/sys_dup2.s +++ b/libc/sysv/calls/sys_dup2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_dup2 0x005a005a205a0021 globl hidden +.scall sys_dup2 0x05a05a05a205a021 globl hidden diff --git a/libc/sysv/calls/sys_epoll_create.s b/libc/sysv/calls/sys_epoll_create.s index 842e29961..c842fb561 100644 --- a/libc/sysv/calls/sys_epoll_create.s +++ b/libc/sysv/calls/sys_epoll_create.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_epoll_create 0xffffffffffff00d5 globl +.scall sys_epoll_create 0xfffffffffffff0d5 globl diff --git a/libc/sysv/calls/sys_epoll_create1.s b/libc/sysv/calls/sys_epoll_create1.s index 6a00b574f..b18b464df 100644 --- a/libc/sysv/calls/sys_epoll_create1.s +++ b/libc/sysv/calls/sys_epoll_create1.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_epoll_create1 0xffffffffffff0123 globl +.scall sys_epoll_create1 0xfffffffffffff123 globl diff --git a/libc/sysv/calls/sys_epoll_ctl.s b/libc/sysv/calls/sys_epoll_ctl.s index 8bf800787..66c4e207d 100644 --- a/libc/sysv/calls/sys_epoll_ctl.s +++ b/libc/sysv/calls/sys_epoll_ctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_epoll_ctl 0xffffffffffff00e9 globl +.scall sys_epoll_ctl 0xfffffffffffff0e9 globl diff --git a/libc/sysv/calls/sys_epoll_wait.s b/libc/sysv/calls/sys_epoll_wait.s index d05bd0ab4..fe0f66479 100644 --- a/libc/sysv/calls/sys_epoll_wait.s +++ b/libc/sysv/calls/sys_epoll_wait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_epoll_wait 0xffffffffffff00e8 globl +.scall sys_epoll_wait 0xfffffffffffff0e8 globl diff --git a/libc/sysv/calls/sys_exit.s b/libc/sysv/calls/sys_exit.s index 5b83eb6ac..dcddfdfc2 100644 --- a/libc/sysv/calls/sys_exit.s +++ b/libc/sysv/calls/sys_exit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_exit 0x00010001200100e7 globl hidden +.scall sys_exit 0x00100100120010e7 globl hidden diff --git a/libc/sysv/calls/sys_faccessat.s b/libc/sysv/calls/sys_faccessat.s index 600cde9e4..995d27a95 100644 --- a/libc/sysv/calls/sys_faccessat.s +++ b/libc/sysv/calls/sys_faccessat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_faccessat 0x013901e921d2010d globl hidden +.scall sys_faccessat 0x1ce1391e921d210d globl hidden diff --git a/libc/sysv/calls/sys_fadvise.s b/libc/sysv/calls/sys_fadvise.s index 063582532..663f02968 100644 --- a/libc/sysv/calls/sys_fadvise.s +++ b/libc/sysv/calls/sys_fadvise.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fadvise 0xffff0213ffff00dd globl hidden +.scall sys_fadvise 0xffffff213ffff0dd globl hidden diff --git a/libc/sysv/calls/sys_fallocate.s b/libc/sysv/calls/sys_fallocate.s index 80dc0589d..7cd0654b6 100644 --- a/libc/sysv/calls/sys_fallocate.s +++ b/libc/sysv/calls/sys_fallocate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fallocate 0xffffffffffff011d globl hidden +.scall sys_fallocate 0xfffffffffffff11d globl hidden diff --git a/libc/sysv/calls/sys_fchdir.s b/libc/sysv/calls/sys_fchdir.s index 3b627c435..0a50cb500 100644 --- a/libc/sysv/calls/sys_fchdir.s +++ b/libc/sysv/calls/sys_fchdir.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fchdir 0x000d000d200d0051 globl hidden +.scall sys_fchdir 0x00d00d00d200d051 globl hidden diff --git a/libc/sysv/calls/sys_fchmod.s b/libc/sysv/calls/sys_fchmod.s index f54357760..370a2588a 100644 --- a/libc/sysv/calls/sys_fchmod.s +++ b/libc/sysv/calls/sys_fchmod.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fchmod 0x007c007c207c005b globl hidden +.scall sys_fchmod 0x07c07c07c207c05b globl hidden diff --git a/libc/sysv/calls/sys_fchmodat.s b/libc/sysv/calls/sys_fchmodat.s index ddfcf236c..69e1005fe 100644 --- a/libc/sysv/calls/sys_fchmodat.s +++ b/libc/sysv/calls/sys_fchmodat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fchmodat 0x013a01ea21d3010c globl hidden +.scall sys_fchmodat 0x1cf13a1ea21d310c globl hidden diff --git a/libc/sysv/calls/sys_fchown.s b/libc/sysv/calls/sys_fchown.s index ad99e3162..032d7e26b 100644 --- a/libc/sysv/calls/sys_fchown.s +++ b/libc/sysv/calls/sys_fchown.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fchown 0x007b007b207b005d globl hidden +.scall sys_fchown 0x07b07b07b207b05d globl hidden diff --git a/libc/sysv/calls/sys_fchownat.s b/libc/sysv/calls/sys_fchownat.s index ab2b77222..05cd7648e 100644 --- a/libc/sysv/calls/sys_fchownat.s +++ b/libc/sysv/calls/sys_fchownat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fchownat 0x013b01eb21d40104 globl hidden +.scall sys_fchownat 0x1d013b1eb21d4104 globl hidden diff --git a/libc/sysv/calls/sys_fcntl.s b/libc/sysv/calls/sys_fcntl.s index f273388a9..84b7b446e 100644 --- a/libc/sysv/calls/sys_fcntl.s +++ b/libc/sysv/calls/sys_fcntl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fcntl 0x005c005c205c0048 globl hidden +.scall sys_fcntl 0x05c05c05c205c048 globl hidden diff --git a/libc/sysv/calls/sys_fdatasync.s b/libc/sysv/calls/sys_fdatasync.s index 17c7f2965..d669052da 100644 --- a/libc/sysv/calls/sys_fdatasync.s +++ b/libc/sysv/calls/sys_fdatasync.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fdatasync 0x005f022620bb004b globl hidden +.scall sys_fdatasync 0x0f105f22620bb04b globl hidden diff --git a/libc/sysv/calls/sys_flock.s b/libc/sysv/calls/sys_flock.s index 26ff2a8b0..08c983771 100644 --- a/libc/sysv/calls/sys_flock.s +++ b/libc/sysv/calls/sys_flock.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_flock 0x0083008320830049 globl hidden +.scall sys_flock 0x0830830832083049 globl hidden diff --git a/libc/sysv/calls/sys_fsync.s b/libc/sysv/calls/sys_fsync.s index 6882d4801..076991852 100644 --- a/libc/sysv/calls/sys_fsync.s +++ b/libc/sysv/calls/sys_fsync.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_fsync 0x005f005f205f004a globl hidden +.scall sys_fsync 0x05f05f05f205f04a globl hidden diff --git a/libc/sysv/calls/sys_futimens.s b/libc/sysv/calls/sys_futimens.s index 6004436cc..d331c433d 100644 --- a/libc/sysv/calls/sys_futimens.s +++ b/libc/sysv/calls/sys_futimens.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_futimens 0x00550222ffffffff globl hidden +.scall sys_futimens 0x1d8055222fffffff globl hidden diff --git a/libc/sysv/calls/sys_futimes.s b/libc/sysv/calls/sys_futimes.s index 66d38d5cf..552b964cf 100644 --- a/libc/sysv/calls/sys_futimes.s +++ b/libc/sysv/calls/sys_futimes.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_futimes 0x004d00ce208bffff globl hidden +.scall sys_futimes 0x1a704d0ce208bfff globl hidden diff --git a/libc/sysv/calls/sys_futimesat.s b/libc/sysv/calls/sys_futimesat.s index b3a1ed18b..ffba4cce8 100644 --- a/libc/sysv/calls/sys_futimesat.s +++ b/libc/sysv/calls/sys_futimesat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_futimesat 0xffff01eeffff0105 globl hidden +.scall sys_futimesat 0xffffff1eeffff105 globl hidden diff --git a/libc/sysv/calls/sys_getcwd.s b/libc/sysv/calls/sys_getcwd.s index cc7f22e27..ba8b4e315 100644 --- a/libc/sysv/calls/sys_getcwd.s +++ b/libc/sysv/calls/sys_getcwd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getcwd 0x01300146ffff004f globl hidden +.scall sys_getcwd 0xfff130146ffff04f globl hidden diff --git a/libc/sysv/calls/sys_getgid.s b/libc/sysv/calls/sys_getgid.s index b8aff476c..ad87b86cd 100644 --- a/libc/sysv/calls/sys_getgid.s +++ b/libc/sysv/calls/sys_getgid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getgid 0x002f002f202f0068 globl hidden +.scall sys_getgid 0xfff02f02f202f068 globl hidden diff --git a/libc/sysv/calls/sys_getitimer.s b/libc/sysv/calls/sys_getitimer.s index 9b2d6080b..3176012fe 100644 --- a/libc/sysv/calls/sys_getitimer.s +++ b/libc/sysv/calls/sys_getitimer.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getitimer 0x0046005620560024 globl hidden +.scall sys_getitimer 0x1aa0460562056024 globl hidden diff --git a/libc/sysv/calls/sys_getpid.s b/libc/sysv/calls/sys_getpid.s index f4f5139ad..527e134f0 100644 --- a/libc/sysv/calls/sys_getpid.s +++ b/libc/sysv/calls/sys_getpid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getpid 0x0014001420140027 globl hidden +.scall sys_getpid 0xfff0140142014027 globl hidden diff --git a/libc/sysv/calls/sys_getppid.s b/libc/sysv/calls/sys_getppid.s index 2af623220..d01c01463 100644 --- a/libc/sysv/calls/sys_getppid.s +++ b/libc/sysv/calls/sys_getppid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getppid 0x002700272027006e globl hidden +.scall sys_getppid 0xfff027027202706e globl hidden diff --git a/libc/sysv/calls/sys_getpriority.s b/libc/sysv/calls/sys_getpriority.s index f7625d030..f15adb0cd 100644 --- a/libc/sysv/calls/sys_getpriority.s +++ b/libc/sysv/calls/sys_getpriority.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getpriority 0x006400642064008c globl hidden +.scall sys_getpriority 0x064064064206408c globl hidden diff --git a/libc/sysv/calls/sys_getrandom.s b/libc/sysv/calls/sys_getrandom.s index ae490dbf6..efa09fe35 100644 --- a/libc/sysv/calls/sys_getrandom.s +++ b/libc/sysv/calls/sys_getrandom.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getrandom 0x0007023321f4013e globl hidden +.scall sys_getrandom 0x05b00723321f413e globl hidden diff --git a/libc/sysv/calls/sys_getrlimit.s b/libc/sysv/calls/sys_getrlimit.s index 2e990f6d2..fbade4dbd 100644 --- a/libc/sysv/calls/sys_getrlimit.s +++ b/libc/sysv/calls/sys_getrlimit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getrlimit 0x00c200c220c20061 globl hidden +.scall sys_getrlimit 0x0c20c20c220c2061 globl hidden diff --git a/libc/sysv/calls/sys_getrusage.s b/libc/sysv/calls/sys_getrusage.s index 82059f39f..2d7715fc8 100644 --- a/libc/sysv/calls/sys_getrusage.s +++ b/libc/sysv/calls/sys_getrusage.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getrusage 0x0013007520750062 globl hidden +.scall sys_getrusage 0x1bd0130752075062 globl hidden diff --git a/libc/sysv/calls/sys_getsid.s b/libc/sysv/calls/sys_getsid.s index 9238c4e19..c59c03289 100644 --- a/libc/sysv/calls/sys_getsid.s +++ b/libc/sysv/calls/sys_getsid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getsid 0x00ff01362136007c globl hidden +.scall sys_getsid 0x11e0ff136213607c globl hidden diff --git a/libc/sysv/calls/sys_getsockopt.s b/libc/sysv/calls/sys_getsockopt.s index 9b895c4b2..1c052bebf 100644 --- a/libc/sysv/calls/sys_getsockopt.s +++ b/libc/sysv/calls/sys_getsockopt.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getsockopt 0x0076007620760037 globl hidden +.scall sys_getsockopt 0x0760760762076037 globl hidden diff --git a/libc/sysv/calls/sys_gettid.s b/libc/sysv/calls/sys_gettid.s index bb32d96d1..96188f6a3 100644 --- a/libc/sysv/calls/sys_gettid.s +++ b/libc/sysv/calls/sys_gettid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_gettid 0xffffffff211e00ba globl hidden +.scall sys_gettid 0xfffffffff211e0ba globl hidden diff --git a/libc/sysv/calls/sys_getuid.s b/libc/sysv/calls/sys_getuid.s index 3143e3c3b..6009e1b0c 100644 --- a/libc/sysv/calls/sys_getuid.s +++ b/libc/sysv/calls/sys_getuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_getuid 0x0018001820180066 globl hidden +.scall sys_getuid 0xfff0180182018066 globl hidden diff --git a/libc/sysv/calls/sys_ioctl.s b/libc/sysv/calls/sys_ioctl.s index c5f0a8d54..e2aaaec68 100644 --- a/libc/sysv/calls/sys_ioctl.s +++ b/libc/sysv/calls/sys_ioctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_ioctl 0x0036003620360010 globl hidden +.scall sys_ioctl 0x0360360362036010 globl hidden diff --git a/libc/sysv/calls/sys_kill.s b/libc/sysv/calls/sys_kill.s index 107c91b08..92fa3bbdf 100644 --- a/libc/sysv/calls/sys_kill.s +++ b/libc/sysv/calls/sys_kill.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_kill 0x007a00252025003e globl hidden +.scall sys_kill 0x02507a025202503e globl hidden diff --git a/libc/sysv/calls/sys_killpg.s b/libc/sysv/calls/sys_killpg.s index 89e71a7d6..977e234f5 100644 --- a/libc/sysv/calls/sys_killpg.s +++ b/libc/sysv/calls/sys_killpg.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_killpg 0xffff0092ffffffff globl hidden +.scall sys_killpg 0xffffff092fffffff globl hidden diff --git a/libc/sysv/calls/sys_lchown.s b/libc/sysv/calls/sys_lchown.s index bab85a1b9..1980ab144 100644 --- a/libc/sysv/calls/sys_lchown.s +++ b/libc/sysv/calls/sys_lchown.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_lchown 0x00fe00fe216c005e globl hidden +.scall sys_lchown 0x1130fe0fe216c05e globl hidden diff --git a/libc/sysv/calls/sys_link.s b/libc/sysv/calls/sys_link.s index a6be7aba6..b3bb1e2fc 100644 --- a/libc/sysv/calls/sys_link.s +++ b/libc/sysv/calls/sys_link.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_link 0x0009000920090056 globl hidden +.scall sys_link 0x0090090092009056 globl hidden diff --git a/libc/sysv/calls/sys_linkat.s b/libc/sysv/calls/sys_linkat.s index 6cc4c1229..864338171 100644 --- a/libc/sysv/calls/sys_linkat.s +++ b/libc/sysv/calls/sys_linkat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_linkat 0x013d01ef21d70109 globl hidden +.scall sys_linkat 0x1c913d1ef21d7109 globl hidden diff --git a/libc/sysv/calls/sys_listen.s b/libc/sysv/calls/sys_listen.s index a6b02da53..540353bba 100644 --- a/libc/sysv/calls/sys_listen.s +++ b/libc/sysv/calls/sys_listen.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_listen 0x006a006a206a0032 globl hidden +.scall sys_listen 0x06a06a06a206a032 globl hidden diff --git a/libc/sysv/calls/sys_madvise.s b/libc/sysv/calls/sys_madvise.s index 89d0c633f..9b3660a22 100644 --- a/libc/sysv/calls/sys_madvise.s +++ b/libc/sysv/calls/sys_madvise.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_madvise 0x004b004b204b001c globl hidden +.scall sys_madvise 0x04b04b04b204b01c globl hidden diff --git a/libc/sysv/calls/sys_mkdir.s b/libc/sysv/calls/sys_mkdir.s index 95d9a8d16..267b69744 100644 --- a/libc/sysv/calls/sys_mkdir.s +++ b/libc/sysv/calls/sys_mkdir.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_mkdir 0x0088008820880053 globl hidden +.scall sys_mkdir 0x0880880882088053 globl hidden diff --git a/libc/sysv/calls/sys_mkdirat.s b/libc/sysv/calls/sys_mkdirat.s index 657149b79..5e1145cff 100644 --- a/libc/sysv/calls/sys_mkdirat.s +++ b/libc/sysv/calls/sys_mkdirat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_mkdirat 0x013e01f021db0102 globl hidden +.scall sys_mkdirat 0x1cd13e1f021db102 globl hidden diff --git a/libc/sysv/calls/sys_mkfifo.s b/libc/sysv/calls/sys_mkfifo.s index 2c85eae43..63fe0343c 100644 --- a/libc/sysv/calls/sys_mkfifo.s +++ b/libc/sysv/calls/sys_mkfifo.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_mkfifo 0x008400842084ffff globl hidden +.scall sys_mkfifo 0x0840840842084fff globl hidden diff --git a/libc/sysv/calls/sys_mknod.s b/libc/sysv/calls/sys_mknod.s index a9e823535..660798a53 100644 --- a/libc/sysv/calls/sys_mknod.s +++ b/libc/sysv/calls/sys_mknod.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_mknod 0x000e000e200e0085 globl hidden +.scall sys_mknod 0x1c200e00e200e085 globl hidden diff --git a/libc/sysv/calls/sys_mprotect.s b/libc/sysv/calls/sys_mprotect.s index eaca0f50e..da2fbba1e 100644 --- a/libc/sysv/calls/sys_mprotect.s +++ b/libc/sysv/calls/sys_mprotect.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_mprotect 0x004a004a204a000a globl hidden +.scall sys_mprotect 0x04a04a04a204a00a globl hidden diff --git a/libc/sysv/calls/sys_mremap.s b/libc/sysv/calls/sys_mremap.s index 1f0bad1e5..69031a20c 100644 --- a/libc/sysv/calls/sys_mremap.s +++ b/libc/sysv/calls/sys_mremap.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_mremap 0xffffffffffff0019 globl hidden +.scall sys_mremap 0x19bffffffffff019 globl hidden diff --git a/libc/sysv/calls/sys_msync.s b/libc/sysv/calls/sys_msync.s index 29ade6246..8cbbf7cd1 100644 --- a/libc/sysv/calls/sys_msync.s +++ b/libc/sysv/calls/sys_msync.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_msync 0x010000412041001a globl hidden +.scall sys_msync 0x115100041204101a globl hidden diff --git a/libc/sysv/calls/sys_munmap.s b/libc/sysv/calls/sys_munmap.s index f5eba48e5..fe3d3b6a6 100644 --- a/libc/sysv/calls/sys_munmap.s +++ b/libc/sysv/calls/sys_munmap.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_munmap 0x004900492049000b globl hidden +.scall sys_munmap 0x049049049204900b globl hidden diff --git a/libc/sysv/calls/sys_nanosleep.s b/libc/sysv/calls/sys_nanosleep.s index a1de7da5b..011800bed 100644 --- a/libc/sysv/calls/sys_nanosleep.s +++ b/libc/sysv/calls/sys_nanosleep.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_nanosleep 0x005b00f0ffff0023 globl hidden +.scall sys_nanosleep 0x1ae05b0f0ffff023 globl hidden diff --git a/libc/sysv/calls/sys_open.s b/libc/sysv/calls/sys_open.s index 01a54065e..106601439 100644 --- a/libc/sysv/calls/sys_open.s +++ b/libc/sysv/calls/sys_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_open 0x0005000520050002 globl hidden +.scall sys_open 0x0050050052005002 globl hidden diff --git a/libc/sysv/calls/sys_openat.s b/libc/sysv/calls/sys_openat.s index 571cfb9c1..66659a217 100644 --- a/libc/sysv/calls/sys_openat.s +++ b/libc/sysv/calls/sys_openat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_openat 0x014101f321cf0101 globl hidden +.scall sys_openat 0x1d41411f321cf101 globl hidden diff --git a/libc/sysv/calls/sys_pause.s b/libc/sysv/calls/sys_pause.s index f59f8ef1f..05c3007b5 100644 --- a/libc/sysv/calls/sys_pause.s +++ b/libc/sysv/calls/sys_pause.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_pause 0xffffffffffff0022 globl hidden +.scall sys_pause 0xfffffffffffff022 globl hidden diff --git a/libc/sysv/calls/sys_poll.s b/libc/sysv/calls/sys_poll.s index 483a275aa..dd77323b1 100644 --- a/libc/sysv/calls/sys_poll.s +++ b/libc/sysv/calls/sys_poll.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_poll 0x00fc00d120e60007 globl hidden +.scall sys_poll 0x0d10fc0d120e6007 globl hidden diff --git a/libc/sysv/calls/sys_posix_fallocate.s b/libc/sysv/calls/sys_posix_fallocate.s index 401454e25..9ac07132a 100644 --- a/libc/sysv/calls/sys_posix_fallocate.s +++ b/libc/sysv/calls/sys_posix_fallocate.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_posix_fallocate 0xffff0212ffffffff globl hidden +.scall sys_posix_fallocate 0xffffff212fffffff globl hidden diff --git a/libc/sysv/calls/sys_posix_openpt.s b/libc/sysv/calls/sys_posix_openpt.s index 37ecabd07..8f08c7730 100644 --- a/libc/sysv/calls/sys_posix_openpt.s +++ b/libc/sysv/calls/sys_posix_openpt.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_posix_openpt 0xffff01f8ffffffff globl hidden +.scall sys_posix_openpt 0xffffff1f8fffffff globl hidden diff --git a/libc/sysv/calls/sys_posix_spawn.s b/libc/sysv/calls/sys_posix_spawn.s index 0012ba62c..66d9e8f48 100644 --- a/libc/sysv/calls/sys_posix_spawn.s +++ b/libc/sysv/calls/sys_posix_spawn.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_posix_spawn 0xffffffff20f4ffff globl hidden +.scall sys_posix_spawn 0xfffffffff20f4fff globl hidden diff --git a/libc/sysv/calls/sys_ppoll.s b/libc/sysv/calls/sys_ppoll.s index a39263971..9da627aec 100644 --- a/libc/sysv/calls/sys_ppoll.s +++ b/libc/sysv/calls/sys_ppoll.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_ppoll 0x006d0221ffff010f globl hidden +.scall sys_ppoll 0xfff06d221ffff10f globl hidden diff --git a/libc/sysv/calls/sys_ptrace.s b/libc/sysv/calls/sys_ptrace.s index ac50394f3..ea812cdd0 100644 --- a/libc/sysv/calls/sys_ptrace.s +++ b/libc/sysv/calls/sys_ptrace.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_ptrace 0x001a001a201a0065 globl hidden +.scall sys_ptrace 0x01a01a01a201a065 globl hidden diff --git a/libc/sysv/calls/sys_read.s b/libc/sysv/calls/sys_read.s index 450ba018a..7ea6e9f08 100644 --- a/libc/sysv/calls/sys_read.s +++ b/libc/sysv/calls/sys_read.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_read 0x0003000320030000 globl hidden +.scall sys_read 0x0030030032003000 globl hidden diff --git a/libc/sysv/calls/sys_readlinkat.s b/libc/sysv/calls/sys_readlinkat.s index 0a22b6956..affb69c1a 100644 --- a/libc/sysv/calls/sys_readlinkat.s +++ b/libc/sysv/calls/sys_readlinkat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_readlinkat 0x014201f421d9010b globl hidden +.scall sys_readlinkat 0x1d51421f421d910b globl hidden diff --git a/libc/sysv/calls/sys_readv.s b/libc/sysv/calls/sys_readv.s index 8986a6dcd..a3a3518be 100644 --- a/libc/sysv/calls/sys_readv.s +++ b/libc/sysv/calls/sys_readv.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_readv 0x0078007820780013 globl hidden +.scall sys_readv 0x0780780782078013 globl hidden diff --git a/libc/sysv/calls/sys_recvfrom.s b/libc/sysv/calls/sys_recvfrom.s index f7601691d..80796e2b8 100644 --- a/libc/sysv/calls/sys_recvfrom.s +++ b/libc/sysv/calls/sys_recvfrom.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_recvfrom 0x001d001d201d002d globl hidden +.scall sys_recvfrom 0x01d01d01d201d02d globl hidden diff --git a/libc/sysv/calls/sys_recvmsg.s b/libc/sysv/calls/sys_recvmsg.s index 64f2a7954..02066af99 100644 --- a/libc/sysv/calls/sys_recvmsg.s +++ b/libc/sysv/calls/sys_recvmsg.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_recvmsg 0x001b001b201b002f globl hidden +.scall sys_recvmsg 0x01b01b01b201b02f globl hidden diff --git a/libc/sysv/calls/sys_rename.s b/libc/sysv/calls/sys_rename.s index 51c737369..f2ec58c8c 100644 --- a/libc/sysv/calls/sys_rename.s +++ b/libc/sysv/calls/sys_rename.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_rename 0x0080008020800052 globl hidden +.scall sys_rename 0x0800800802080052 globl hidden diff --git a/libc/sysv/calls/sys_renameat.s b/libc/sysv/calls/sys_renameat.s index ccc3b08de..94ed424db 100644 --- a/libc/sysv/calls/sys_renameat.s +++ b/libc/sysv/calls/sys_renameat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_renameat 0x014301f521d10108 globl hidden +.scall sys_renameat 0x1ca1431f521d1108 globl hidden diff --git a/libc/sysv/calls/sys_rmdir.s b/libc/sysv/calls/sys_rmdir.s index 5023afcc5..d5e97afe8 100644 --- a/libc/sysv/calls/sys_rmdir.s +++ b/libc/sysv/calls/sys_rmdir.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_rmdir 0x0089008920890054 globl hidden +.scall sys_rmdir 0x0890890892089054 globl hidden diff --git a/libc/sysv/calls/sys_sched_setaffinity.s b/libc/sysv/calls/sys_sched_setaffinity.s index 21741a7a3..8e9e4c0bb 100644 --- a/libc/sysv/calls/sys_sched_setaffinity.s +++ b/libc/sysv/calls/sys_sched_setaffinity.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sched_setaffinity 0xffffffffffff00cb globl hidden +.scall sys_sched_setaffinity 0xfffffffffffff0cb globl hidden diff --git a/libc/sysv/calls/sys_sched_yield.s b/libc/sysv/calls/sys_sched_yield.s index fc5fc4ac8..da8464e49 100644 --- a/libc/sysv/calls/sys_sched_yield.s +++ b/libc/sysv/calls/sys_sched_yield.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sched_yield 0x012a014b103c0018 globl hidden +.scall sys_sched_yield 0x15e12a14b103c018 globl hidden diff --git a/libc/sysv/calls/sys_select.s b/libc/sysv/calls/sys_select.s index fd314c44f..f4ed0c386 100644 --- a/libc/sysv/calls/sys_select.s +++ b/libc/sysv/calls/sys_select.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_select 0x0047005d205d0017 globl hidden +.scall sys_select 0x1a104705d205d017 globl hidden diff --git a/libc/sysv/calls/sys_sendfile.s b/libc/sysv/calls/sys_sendfile.s index 01baf4c50..c5c94ad52 100644 --- a/libc/sysv/calls/sys_sendfile.s +++ b/libc/sysv/calls/sys_sendfile.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sendfile 0xffff018921510028 globl hidden +.scall sys_sendfile 0xffffff1892151028 globl hidden diff --git a/libc/sysv/calls/sys_sendmsg.s b/libc/sysv/calls/sys_sendmsg.s index cc8a877ac..c6317955a 100644 --- a/libc/sysv/calls/sys_sendmsg.s +++ b/libc/sysv/calls/sys_sendmsg.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sendmsg 0x001c001c201c002e globl hidden +.scall sys_sendmsg 0x01c01c01c201c02e globl hidden diff --git a/libc/sysv/calls/sys_sendto.s b/libc/sysv/calls/sys_sendto.s index 405896b6e..65f7881de 100644 --- a/libc/sysv/calls/sys_sendto.s +++ b/libc/sysv/calls/sys_sendto.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sendto 0x008500852085002c globl hidden +.scall sys_sendto 0x085085085208502c globl hidden diff --git a/libc/sysv/calls/sys_setitimer.s b/libc/sysv/calls/sys_setitimer.s index ea979d80a..24bb9042a 100644 --- a/libc/sysv/calls/sys_setitimer.s +++ b/libc/sysv/calls/sys_setitimer.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_setitimer 0x0045005320530026 globl hidden +.scall sys_setitimer 0x1a90450532053026 globl hidden diff --git a/libc/sysv/calls/sys_setpriority.s b/libc/sysv/calls/sys_setpriority.s index c91840a73..74a22e10c 100644 --- a/libc/sysv/calls/sys_setpriority.s +++ b/libc/sysv/calls/sys_setpriority.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_setpriority 0x006000602060008d globl hidden +.scall sys_setpriority 0x060060060206008d globl hidden diff --git a/libc/sysv/calls/sys_setresgid.s b/libc/sysv/calls/sys_setresgid.s index 244f1c025..7dd1f3716 100644 --- a/libc/sysv/calls/sys_setresgid.s +++ b/libc/sysv/calls/sys_setresgid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_setresgid 0x011c0138ffff0077 globl hidden +.scall sys_setresgid 0xfff11c138ffff077 globl hidden diff --git a/libc/sysv/calls/sys_setresuid.s b/libc/sysv/calls/sys_setresuid.s index f7df8191a..eee4ba76d 100644 --- a/libc/sysv/calls/sys_setresuid.s +++ b/libc/sysv/calls/sys_setresuid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_setresuid 0x011a0137ffff0075 globl hidden +.scall sys_setresuid 0xfff11a137ffff075 globl hidden diff --git a/libc/sysv/calls/sys_setrlimit.s b/libc/sysv/calls/sys_setrlimit.s index 9d5e361d1..d00f70bae 100644 --- a/libc/sysv/calls/sys_setrlimit.s +++ b/libc/sysv/calls/sys_setrlimit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_setrlimit 0x00c300c320c300a0 globl hidden +.scall sys_setrlimit 0x0c30c30c320c30a0 globl hidden diff --git a/libc/sysv/calls/sys_setsid.s b/libc/sysv/calls/sys_setsid.s index 576237073..c91bd587f 100644 --- a/libc/sysv/calls/sys_setsid.s +++ b/libc/sysv/calls/sys_setsid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_setsid 0x0093009320930070 globl hidden +.scall sys_setsid 0x0930930932093070 globl hidden diff --git a/libc/sysv/calls/sys_setsockopt.s b/libc/sysv/calls/sys_setsockopt.s index e67c9040e..dc3f94268 100644 --- a/libc/sysv/calls/sys_setsockopt.s +++ b/libc/sysv/calls/sys_setsockopt.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_setsockopt 0x0069006920690036 globl hidden +.scall sys_setsockopt 0x0690690692069036 globl hidden diff --git a/libc/sysv/calls/sys_shutdown.s b/libc/sysv/calls/sys_shutdown.s index 57a83e083..b793667b7 100644 --- a/libc/sysv/calls/sys_shutdown.s +++ b/libc/sysv/calls/sys_shutdown.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_shutdown 0x0086008620860030 globl hidden +.scall sys_shutdown 0x0860860862086030 globl hidden diff --git a/libc/sysv/calls/sys_sigaction.s b/libc/sysv/calls/sys_sigaction.s index 9f57594e1..30a5b1490 100644 --- a/libc/sysv/calls/sys_sigaction.s +++ b/libc/sysv/calls/sys_sigaction.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sigaction 0x002e01a0202e000d globl hidden +.scall sys_sigaction 0xfff02e1a0202e00d globl hidden diff --git a/libc/sysv/calls/sys_sigprocmask.s b/libc/sysv/calls/sys_sigprocmask.s index 4187a59ea..4603afba1 100644 --- a/libc/sysv/calls/sys_sigprocmask.s +++ b/libc/sysv/calls/sys_sigprocmask.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sigprocmask 0x003001542030000e globl hidden +.scall sys_sigprocmask 0x125030154203000e globl hidden diff --git a/libc/sysv/calls/sys_sigsuspend.s b/libc/sysv/calls/sys_sigsuspend.s index 7d66ac4bc..a0750958f 100644 --- a/libc/sysv/calls/sys_sigsuspend.s +++ b/libc/sysv/calls/sys_sigsuspend.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sigsuspend 0x006f0155206f0082 globl hidden +.scall sys_sigsuspend 0x12606f155206f082 globl hidden diff --git a/libc/sysv/calls/sys_socketpair.s b/libc/sysv/calls/sys_socketpair.s index d881b2560..6cb889c37 100644 --- a/libc/sysv/calls/sys_socketpair.s +++ b/libc/sysv/calls/sys_socketpair.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_socketpair 0x0087008720870035 globl hidden +.scall sys_socketpair 0x0870870872087035 globl hidden diff --git a/libc/sysv/calls/sys_splice.s b/libc/sysv/calls/sys_splice.s index baf3c82a3..28f4c13fd 100644 --- a/libc/sysv/calls/sys_splice.s +++ b/libc/sysv/calls/sys_splice.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_splice 0xffffffffffff0113 globl hidden +.scall sys_splice 0xfffffffffffff113 globl hidden diff --git a/libc/sysv/calls/sys_symlink.s b/libc/sysv/calls/sys_symlink.s index dbb57a713..a4d30eaae 100644 --- a/libc/sysv/calls/sys_symlink.s +++ b/libc/sysv/calls/sys_symlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_symlink 0x0039003920390058 globl hidden +.scall sys_symlink 0x0390390392039058 globl hidden diff --git a/libc/sysv/calls/sys_symlinkat.s b/libc/sysv/calls/sys_symlinkat.s index 98ffff630..19ddda751 100644 --- a/libc/sysv/calls/sys_symlinkat.s +++ b/libc/sysv/calls/sys_symlinkat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_symlinkat 0x014401f621da010a globl hidden +.scall sys_symlinkat 0x1d61441f621da10a globl hidden diff --git a/libc/sysv/calls/sys_sync.s b/libc/sysv/calls/sys_sync.s index 5ef92433e..9813b8397 100644 --- a/libc/sysv/calls/sys_sync.s +++ b/libc/sysv/calls/sys_sync.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sync 0x00240024202400a2 globl hidden +.scall sys_sync 0xfff02402420240a2 globl hidden diff --git a/libc/sysv/calls/sys_sync_file_range.s b/libc/sysv/calls/sys_sync_file_range.s index 46c7aa946..bffda8719 100644 --- a/libc/sysv/calls/sys_sync_file_range.s +++ b/libc/sysv/calls/sys_sync_file_range.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sync_file_range 0xffffffffffff0115 globl hidden +.scall sys_sync_file_range 0xfffffffffffff115 globl hidden diff --git a/libc/sysv/calls/sys_sysinfo.s b/libc/sysv/calls/sys_sysinfo.s index 13dcc93ce..aeca3e99c 100644 --- a/libc/sysv/calls/sys_sysinfo.s +++ b/libc/sysv/calls/sys_sysinfo.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_sysinfo 0xffffffffffff0063 globl hidden +.scall sys_sysinfo 0xfffffffffffff063 globl hidden diff --git a/libc/sysv/calls/sys_times.s b/libc/sysv/calls/sys_times.s index 3af59a5aa..b17b8d7ea 100644 --- a/libc/sysv/calls/sys_times.s +++ b/libc/sysv/calls/sys_times.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_times 0xffffffffffff0064 globl hidden +.scall sys_times 0xfffffffffffff064 globl hidden diff --git a/libc/sysv/calls/sys_uname.s b/libc/sysv/calls/sys_uname.s index d1ae2799d..af626ce42 100644 --- a/libc/sysv/calls/sys_uname.s +++ b/libc/sysv/calls/sys_uname.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_uname 0xffff00a4ffff003f globl hidden +.scall sys_uname 0xffffff0a4ffff03f globl hidden diff --git a/libc/sysv/calls/sys_unlink.s b/libc/sysv/calls/sys_unlink.s index 3a68345ef..a96173267 100644 --- a/libc/sysv/calls/sys_unlink.s +++ b/libc/sysv/calls/sys_unlink.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_unlink 0x000a000a200a0057 globl hidden +.scall sys_unlink 0x00a00a00a200a057 globl hidden diff --git a/libc/sysv/calls/sys_unlinkat.s b/libc/sysv/calls/sys_unlinkat.s index 480d6637f..2570d83fd 100644 --- a/libc/sysv/calls/sys_unlinkat.s +++ b/libc/sysv/calls/sys_unlinkat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_unlinkat 0x014501f721d80107 globl hidden +.scall sys_unlinkat 0x1d71451f721d8107 globl hidden diff --git a/libc/sysv/calls/sys_utime.s b/libc/sysv/calls/sys_utime.s index 9f234ba2a..f2f42460d 100644 --- a/libc/sysv/calls/sys_utime.s +++ b/libc/sysv/calls/sys_utime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_utime 0xffffffffffff0084 globl hidden +.scall sys_utime 0xfffffffffffff084 globl hidden diff --git a/libc/sysv/calls/sys_utimes.s b/libc/sysv/calls/sys_utimes.s index 17525b26e..def558b89 100644 --- a/libc/sysv/calls/sys_utimes.s +++ b/libc/sysv/calls/sys_utimes.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_utimes 0x004c008a208a00eb globl hidden +.scall sys_utimes 0x1a404c08a208a0eb globl hidden diff --git a/libc/sysv/calls/sys_vmsplice.s b/libc/sysv/calls/sys_vmsplice.s index 8b18cb3be..125c0eca7 100644 --- a/libc/sysv/calls/sys_vmsplice.s +++ b/libc/sysv/calls/sys_vmsplice.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_vmsplice 0xffffffffffff0116 globl hidden +.scall sys_vmsplice 0xfffffffffffff116 globl hidden diff --git a/libc/sysv/calls/sys_wait4.s b/libc/sysv/calls/sys_wait4.s index 9a7230618..f38ac3f97 100644 --- a/libc/sysv/calls/sys_wait4.s +++ b/libc/sysv/calls/sys_wait4.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_wait4 0x000b00072007003d globl hidden +.scall sys_wait4 0x1c100b007200703d globl hidden diff --git a/libc/sysv/calls/sys_write.s b/libc/sysv/calls/sys_write.s index bfea8884d..f787db890 100644 --- a/libc/sysv/calls/sys_write.s +++ b/libc/sysv/calls/sys_write.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_write 0x0004000420040001 globl hidden +.scall sys_write 0x0040040042004001 globl hidden diff --git a/libc/sysv/calls/sys_writev.s b/libc/sysv/calls/sys_writev.s index c4c3af777..445ccdbf0 100644 --- a/libc/sysv/calls/sys_writev.s +++ b/libc/sysv/calls/sys_writev.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sys_writev 0x0079007920790014 globl hidden +.scall sys_writev 0x0790790792079014 globl hidden diff --git a/libc/sysv/calls/sysctl.s b/libc/sysv/calls/sysctl.s index de22523cd..e10c6eb59 100644 --- a/libc/sysv/calls/sysctl.s +++ b/libc/sysv/calls/sysctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sysctl 0x00ca00ca20caffff globl +.scall sysctl 0xfff0ca0ca20cafff globl diff --git a/libc/sysv/calls/sysctlbyname.s b/libc/sysv/calls/sysctlbyname.s index 3fec1ce25..b5881d439 100644 --- a/libc/sysv/calls/sysctlbyname.s +++ b/libc/sysv/calls/sysctlbyname.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sysctlbyname 0xffffffff2112ffff globl +.scall sysctlbyname 0xfffffffff2112fff globl diff --git a/libc/sysv/calls/sysfs.s b/libc/sysv/calls/sysfs.s index 20b8b7a1e..8776e515e 100644 --- a/libc/sysv/calls/sysfs.s +++ b/libc/sysv/calls/sysfs.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall sysfs 0xffffffffffff008b globl +.scall sysfs 0xfffffffffffff08b globl diff --git a/libc/sysv/calls/syslog.s b/libc/sysv/calls/syslog.s index 6f726d1b7..85ebae462 100644 --- a/libc/sysv/calls/syslog.s +++ b/libc/sysv/calls/syslog.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall syslog 0xffffffffffff0067 globl +.scall syslog 0xfffffffffffff067 globl diff --git a/libc/sysv/calls/system_override.s b/libc/sysv/calls/system_override.s index 75bb37b6c..4580e3ad8 100644 --- a/libc/sysv/calls/system_override.s +++ b/libc/sysv/calls/system_override.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall system_override 0xffffffff21c6ffff globl +.scall system_override 0xfffffffff21c6fff globl diff --git a/libc/sysv/calls/tee.s b/libc/sysv/calls/tee.s index 91af23f35..a26fbf3d6 100644 --- a/libc/sysv/calls/tee.s +++ b/libc/sysv/calls/tee.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall tee 0xffffffffffff0114 globl +.scall tee 0xfffffffffffff114 globl diff --git a/libc/sysv/calls/telemetry.s b/libc/sysv/calls/telemetry.s index ba0c80c90..5570061a4 100644 --- a/libc/sysv/calls/telemetry.s +++ b/libc/sysv/calls/telemetry.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall telemetry 0xffffffff21c3ffff globl +.scall telemetry 0xfffffffff21c3fff globl diff --git a/libc/sysv/calls/terminate_with_payload.s b/libc/sysv/calls/terminate_with_payload.s index 10576175d..9526c00d6 100644 --- a/libc/sysv/calls/terminate_with_payload.s +++ b/libc/sysv/calls/terminate_with_payload.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall terminate_with_payload 0xffffffff2208ffff globl +.scall terminate_with_payload 0xfffffffff2208fff globl diff --git a/libc/sysv/calls/tgkill.s b/libc/sysv/calls/tgkill.s index bb37d4352..b26d25dd5 100644 --- a/libc/sysv/calls/tgkill.s +++ b/libc/sysv/calls/tgkill.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall tgkill 0xffffffffffff00ea globl +.scall tgkill 0xfffffffffffff0ea globl diff --git a/libc/sysv/calls/thr_create.s b/libc/sysv/calls/thr_create.s index eb310d3fc..f07406269 100644 --- a/libc/sysv/calls/thr_create.s +++ b/libc/sysv/calls/thr_create.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_create 0xffff01aeffffffff globl +.scall thr_create 0xffffff1aefffffff globl diff --git a/libc/sysv/calls/thr_exit.s b/libc/sysv/calls/thr_exit.s index a8589e051..8c56a6e85 100644 --- a/libc/sysv/calls/thr_exit.s +++ b/libc/sysv/calls/thr_exit.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_exit 0xffff01afffffffff globl +.scall thr_exit 0xffffff1affffffff globl diff --git a/libc/sysv/calls/thr_kill.s b/libc/sysv/calls/thr_kill.s index a3dc1c996..f50a34345 100644 --- a/libc/sysv/calls/thr_kill.s +++ b/libc/sysv/calls/thr_kill.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_kill 0xffff01b1ffffffff globl +.scall thr_kill 0xffffff1b1fffffff globl diff --git a/libc/sysv/calls/thr_kill2.s b/libc/sysv/calls/thr_kill2.s index 538522318..9dcf3d352 100644 --- a/libc/sysv/calls/thr_kill2.s +++ b/libc/sysv/calls/thr_kill2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_kill2 0xffff01e1ffffffff globl +.scall thr_kill2 0xffffff1e1fffffff globl diff --git a/libc/sysv/calls/thr_new.s b/libc/sysv/calls/thr_new.s index 802911370..703a06dc2 100644 --- a/libc/sysv/calls/thr_new.s +++ b/libc/sysv/calls/thr_new.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_new 0xffff01c7ffffffff globl +.scall thr_new 0xffffff1c7fffffff globl diff --git a/libc/sysv/calls/thr_self.s b/libc/sysv/calls/thr_self.s index f5dd355a3..2aa589f89 100644 --- a/libc/sysv/calls/thr_self.s +++ b/libc/sysv/calls/thr_self.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_self 0xffff01b0ffffffff globl +.scall thr_self 0xffffff1b0fffffff globl diff --git a/libc/sysv/calls/thr_set_name.s b/libc/sysv/calls/thr_set_name.s index 6da18d9fc..492e73079 100644 --- a/libc/sysv/calls/thr_set_name.s +++ b/libc/sysv/calls/thr_set_name.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_set_name 0xffff01d0ffffffff globl +.scall thr_set_name 0xffffff1d0fffffff globl diff --git a/libc/sysv/calls/thr_suspend.s b/libc/sysv/calls/thr_suspend.s index 3744b5c50..571e12a0c 100644 --- a/libc/sysv/calls/thr_suspend.s +++ b/libc/sysv/calls/thr_suspend.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_suspend 0xffff01baffffffff globl +.scall thr_suspend 0xffffff1bafffffff globl diff --git a/libc/sysv/calls/thr_wake.s b/libc/sysv/calls/thr_wake.s index 37ce32458..becc3ded5 100644 --- a/libc/sysv/calls/thr_wake.s +++ b/libc/sysv/calls/thr_wake.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thr_wake 0xffff01bbffffffff globl +.scall thr_wake 0xffffff1bbfffffff globl diff --git a/libc/sysv/calls/thread_selfcounts.s b/libc/sysv/calls/thread_selfcounts.s index 1756a17ae..959163e31 100644 --- a/libc/sysv/calls/thread_selfcounts.s +++ b/libc/sysv/calls/thread_selfcounts.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thread_selfcounts 0xffffffff20baffff globl +.scall thread_selfcounts 0xfffffffff20bafff globl diff --git a/libc/sysv/calls/thread_selfid.s b/libc/sysv/calls/thread_selfid.s index eebf2eb3e..d167df584 100644 --- a/libc/sysv/calls/thread_selfid.s +++ b/libc/sysv/calls/thread_selfid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thread_selfid 0xffffffff2174ffff globl +.scall thread_selfid 0xfffffffff2174fff globl diff --git a/libc/sysv/calls/thread_selfusage.s b/libc/sysv/calls/thread_selfusage.s index 581f744d0..07188db1f 100644 --- a/libc/sysv/calls/thread_selfusage.s +++ b/libc/sysv/calls/thread_selfusage.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thread_selfusage 0xffffffff21e2ffff globl +.scall thread_selfusage 0xfffffffff21e2fff globl diff --git a/libc/sysv/calls/thrkill.s b/libc/sysv/calls/thrkill.s index 0b2c9a6bf..94c6f2c8c 100644 --- a/libc/sysv/calls/thrkill.s +++ b/libc/sysv/calls/thrkill.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall thrkill 0x0077ffffffffffff globl +.scall thrkill 0xfff077ffffffffff globl diff --git a/libc/sysv/calls/timer_create.s b/libc/sysv/calls/timer_create.s index 942b747b8..fc21080d9 100644 --- a/libc/sysv/calls/timer_create.s +++ b/libc/sysv/calls/timer_create.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timer_create 0xffffffffffff00de globl +.scall timer_create 0x0ebffffffffff0de globl diff --git a/libc/sysv/calls/timer_delete.s b/libc/sysv/calls/timer_delete.s index 009475239..f235f4fa2 100644 --- a/libc/sysv/calls/timer_delete.s +++ b/libc/sysv/calls/timer_delete.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timer_delete 0xffffffffffff00e2 globl +.scall timer_delete 0x0ecffffffffff0e2 globl diff --git a/libc/sysv/calls/timer_getoverrun.s b/libc/sysv/calls/timer_getoverrun.s index eba683b54..8f12eb14e 100644 --- a/libc/sysv/calls/timer_getoverrun.s +++ b/libc/sysv/calls/timer_getoverrun.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timer_getoverrun 0xffffffffffff00e1 globl +.scall timer_getoverrun 0x0efffffffffff0e1 globl diff --git a/libc/sysv/calls/timer_gettime.s b/libc/sysv/calls/timer_gettime.s index 1b2ef7647..01def69d7 100644 --- a/libc/sysv/calls/timer_gettime.s +++ b/libc/sysv/calls/timer_gettime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timer_gettime 0xffffffffffff00e0 globl +.scall timer_gettime 0x1bfffffffffff0e0 globl diff --git a/libc/sysv/calls/timer_settime.s b/libc/sysv/calls/timer_settime.s index eeef5f921..d5f5d28bc 100644 --- a/libc/sysv/calls/timer_settime.s +++ b/libc/sysv/calls/timer_settime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timer_settime 0xffffffffffff00df globl +.scall timer_settime 0x1beffffffffff0df globl diff --git a/libc/sysv/calls/timerfd_create.s b/libc/sysv/calls/timerfd_create.s index 341ae51f0..3b93f6e94 100644 --- a/libc/sysv/calls/timerfd_create.s +++ b/libc/sysv/calls/timerfd_create.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timerfd_create 0xffffffffffff011b globl +.scall timerfd_create 0xfffffffffffff11b globl diff --git a/libc/sysv/calls/timerfd_gettime.s b/libc/sysv/calls/timerfd_gettime.s index 6cfe65517..eee712212 100644 --- a/libc/sysv/calls/timerfd_gettime.s +++ b/libc/sysv/calls/timerfd_gettime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timerfd_gettime 0xffffffffffff011f globl +.scall timerfd_gettime 0xfffffffffffff11f globl diff --git a/libc/sysv/calls/timerfd_settime.s b/libc/sysv/calls/timerfd_settime.s index a4657fd26..7ea95ec95 100644 --- a/libc/sysv/calls/timerfd_settime.s +++ b/libc/sysv/calls/timerfd_settime.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall timerfd_settime 0xffffffffffff011e globl +.scall timerfd_settime 0xfffffffffffff11e globl diff --git a/libc/sysv/calls/tkill.s b/libc/sysv/calls/tkill.s index 59bd5f631..2aaf52faf 100644 --- a/libc/sysv/calls/tkill.s +++ b/libc/sysv/calls/tkill.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall tkill 0xffffffffffff00c8 globl +.scall tkill 0xfffffffffffff0c8 globl diff --git a/libc/sysv/calls/ulock_wait.s b/libc/sysv/calls/ulock_wait.s index 292eb295e..ca431e293 100644 --- a/libc/sysv/calls/ulock_wait.s +++ b/libc/sysv/calls/ulock_wait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ulock_wait 0xffffffff2203ffff globl +.scall ulock_wait 0xfffffffff2203fff globl diff --git a/libc/sysv/calls/ulock_wake.s b/libc/sysv/calls/ulock_wake.s index 3c27d9cfb..1dc9c13c2 100644 --- a/libc/sysv/calls/ulock_wake.s +++ b/libc/sysv/calls/ulock_wake.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ulock_wake 0xffffffff2204ffff globl +.scall ulock_wake 0xfffffffff2204fff globl diff --git a/libc/sysv/calls/umask.s b/libc/sysv/calls/umask.s index 4e98d672e..03006a0a8 100644 --- a/libc/sysv/calls/umask.s +++ b/libc/sysv/calls/umask.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall umask 0x003c003c203c005f globl +.scall umask 0x03c03c03c203c05f globl diff --git a/libc/sysv/calls/umask_extended.s b/libc/sysv/calls/umask_extended.s index fc0252201..002d39a96 100644 --- a/libc/sysv/calls/umask_extended.s +++ b/libc/sysv/calls/umask_extended.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall umask_extended 0xffffffff2116ffff globl +.scall umask_extended 0xfffffffff2116fff globl diff --git a/libc/sysv/calls/umount2.s b/libc/sysv/calls/umount2.s index e619ecafa..6058ba3b3 100644 --- a/libc/sysv/calls/umount2.s +++ b/libc/sysv/calls/umount2.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall umount2 0xffffffffffff00a6 globl +.scall umount2 0xfffffffffffff0a6 globl diff --git a/libc/sysv/calls/undelete.s b/libc/sysv/calls/undelete.s index 4f348e4ab..58df65bbc 100644 --- a/libc/sysv/calls/undelete.s +++ b/libc/sysv/calls/undelete.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall undelete 0xffff00cd20cdffff globl +.scall undelete 0x0cdfff0cd20cdfff globl diff --git a/libc/sysv/calls/unmount.s b/libc/sysv/calls/unmount.s index cc51c02bb..6decf4aca 100644 --- a/libc/sysv/calls/unmount.s +++ b/libc/sysv/calls/unmount.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall unmount 0x00160016209fffff globl +.scall unmount 0x016016016209ffff globl diff --git a/libc/sysv/calls/unshare.s b/libc/sysv/calls/unshare.s index 9492a8574..468b4a553 100644 --- a/libc/sysv/calls/unshare.s +++ b/libc/sysv/calls/unshare.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall unshare 0xffffffffffff0110 globl +.scall unshare 0xfffffffffffff110 globl diff --git a/libc/sysv/calls/unveil.s b/libc/sysv/calls/unveil.s index 86d3221dc..4c74271f3 100644 --- a/libc/sysv/calls/unveil.s +++ b/libc/sysv/calls/unveil.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall unveil 0x0072ffffffffffff globl +.scall unveil 0xfff072ffffffffff globl diff --git a/libc/sysv/calls/userfaultfd.s b/libc/sysv/calls/userfaultfd.s index 0d94a341c..0938aeb94 100644 --- a/libc/sysv/calls/userfaultfd.s +++ b/libc/sysv/calls/userfaultfd.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall userfaultfd 0xffffffffffff0143 globl +.scall userfaultfd 0xfffffffffffff143 globl diff --git a/libc/sysv/calls/usrctl.s b/libc/sysv/calls/usrctl.s index 1716bf436..8b925e21a 100644 --- a/libc/sysv/calls/usrctl.s +++ b/libc/sysv/calls/usrctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall usrctl 0xffffffff21bdffff globl +.scall usrctl 0xfffffffff21bdfff globl diff --git a/libc/sysv/calls/ustat.s b/libc/sysv/calls/ustat.s index 8b3dba5e1..281e4a853 100644 --- a/libc/sysv/calls/ustat.s +++ b/libc/sysv/calls/ustat.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall ustat 0xffffffffffff0088 globl +.scall ustat 0xfffffffffffff088 globl diff --git a/libc/sysv/calls/utrace.s b/libc/sysv/calls/utrace.s index e000c79d9..e8a0305a8 100644 --- a/libc/sysv/calls/utrace.s +++ b/libc/sysv/calls/utrace.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall utrace 0x00d1014fffffffff globl +.scall utrace 0x1320d114ffffffff globl diff --git a/libc/sysv/calls/uuidgen.s b/libc/sysv/calls/uuidgen.s index 0fedd9c42..fc4d9b86d 100644 --- a/libc/sysv/calls/uuidgen.s +++ b/libc/sysv/calls/uuidgen.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall uuidgen 0xffff0188ffffffff globl +.scall uuidgen 0x163fff188fffffff globl diff --git a/libc/sysv/calls/vadvise.s b/libc/sysv/calls/vadvise.s index cbebf4bd0..0fe3daa4e 100644 --- a/libc/sysv/calls/vadvise.s +++ b/libc/sysv/calls/vadvise.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall vadvise 0xffff0048ffffffff globl +.scall vadvise 0xffffff048fffffff globl diff --git a/libc/sysv/calls/vfs_purge.s b/libc/sysv/calls/vfs_purge.s index da40a2ce1..d343fe9e1 100644 --- a/libc/sysv/calls/vfs_purge.s +++ b/libc/sysv/calls/vfs_purge.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall vfs_purge 0xffffffff21c7ffff globl +.scall vfs_purge 0xfffffffff21c7fff globl diff --git a/libc/sysv/calls/vhangup.s b/libc/sysv/calls/vhangup.s index 01e539158..20472a169 100644 --- a/libc/sysv/calls/vhangup.s +++ b/libc/sysv/calls/vhangup.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall vhangup 0xffffffffffff0099 globl +.scall vhangup 0xfffffffffffff099 globl diff --git a/libc/sysv/calls/vm_pressure_monitor.s b/libc/sysv/calls/vm_pressure_monitor.s index a75566ef1..a3f3f1d6f 100644 --- a/libc/sysv/calls/vm_pressure_monitor.s +++ b/libc/sysv/calls/vm_pressure_monitor.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall vm_pressure_monitor 0xffffffff2128ffff globl +.scall vm_pressure_monitor 0xfffffffff2128fff globl diff --git a/libc/sysv/calls/wait.s b/libc/sysv/calls/wait.s index d6c07e4de..19b2a09ae 100644 --- a/libc/sysv/calls/wait.s +++ b/libc/sysv/calls/wait.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall wait 0xffff0054ffffffff globl +.scall wait 0xffffff054fffffff globl diff --git a/libc/sysv/calls/wait4_nocancel.s b/libc/sysv/calls/wait4_nocancel.s index e7d20db55..41a06d4ab 100644 --- a/libc/sysv/calls/wait4_nocancel.s +++ b/libc/sysv/calls/wait4_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall wait4_nocancel 0xffffffff2190ffff globl +.scall wait4_nocancel 0xfffffffff2190fff globl diff --git a/libc/sysv/calls/wait6.s b/libc/sysv/calls/wait6.s index c629f30dd..76034af35 100644 --- a/libc/sysv/calls/wait6.s +++ b/libc/sysv/calls/wait6.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall wait6 0xffff0214ffffffff globl +.scall wait6 0x1e1fff214fffffff globl diff --git a/libc/sysv/calls/waitevent.s b/libc/sysv/calls/waitevent.s index e3eccd828..964fe2fb7 100644 --- a/libc/sysv/calls/waitevent.s +++ b/libc/sysv/calls/waitevent.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall waitevent 0xffffffff20e8ffff globl +.scall waitevent 0xfffffffff20e8fff globl diff --git a/libc/sysv/calls/waitid.s b/libc/sysv/calls/waitid.s index 856e42d8b..75619d955 100644 --- a/libc/sysv/calls/waitid.s +++ b/libc/sysv/calls/waitid.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall waitid 0xffffffff20ad00f7 globl +.scall waitid 0xfffffffff20ad0f7 globl diff --git a/libc/sysv/calls/waitid_nocancel.s b/libc/sysv/calls/waitid_nocancel.s index 6ca541539..3009e8cca 100644 --- a/libc/sysv/calls/waitid_nocancel.s +++ b/libc/sysv/calls/waitid_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall waitid_nocancel 0xffffffff21a0ffff globl +.scall waitid_nocancel 0xfffffffff21a0fff globl diff --git a/libc/sysv/calls/watchevent.s b/libc/sysv/calls/watchevent.s index 81b5c9daf..67bbc5ef9 100644 --- a/libc/sysv/calls/watchevent.s +++ b/libc/sysv/calls/watchevent.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall watchevent 0xffffffff20e7ffff globl +.scall watchevent 0xfffffffff20e7fff globl diff --git a/libc/sysv/calls/work_interval_ctl.s b/libc/sysv/calls/work_interval_ctl.s index 379948131..d3a5ba7cf 100644 --- a/libc/sysv/calls/work_interval_ctl.s +++ b/libc/sysv/calls/work_interval_ctl.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall work_interval_ctl 0xffffffff21f3ffff globl +.scall work_interval_ctl 0xfffffffff21f3fff globl diff --git a/libc/sysv/calls/workq_kernreturn.s b/libc/sysv/calls/workq_kernreturn.s index 2c15e2279..5ef08470f 100644 --- a/libc/sysv/calls/workq_kernreturn.s +++ b/libc/sysv/calls/workq_kernreturn.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall workq_kernreturn 0xffffffff2170ffff globl +.scall workq_kernreturn 0xfffffffff2170fff globl diff --git a/libc/sysv/calls/workq_open.s b/libc/sysv/calls/workq_open.s index 84028ed39..4920ff038 100644 --- a/libc/sysv/calls/workq_open.s +++ b/libc/sysv/calls/workq_open.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall workq_open 0xffffffff216fffff globl +.scall workq_open 0xfffffffff216ffff globl diff --git a/libc/sysv/calls/write_nocancel.s b/libc/sysv/calls/write_nocancel.s index e0be6cc6e..0047bd3b8 100644 --- a/libc/sysv/calls/write_nocancel.s +++ b/libc/sysv/calls/write_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall write_nocancel 0xffffffff218dffff globl +.scall write_nocancel 0xfffffffff218dfff globl diff --git a/libc/sysv/calls/writev_nocancel.s b/libc/sysv/calls/writev_nocancel.s index 851b88750..e2304fe37 100644 --- a/libc/sysv/calls/writev_nocancel.s +++ b/libc/sysv/calls/writev_nocancel.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall writev_nocancel 0xffffffff219cffff globl +.scall writev_nocancel 0xfffffffff219cfff globl diff --git a/libc/sysv/calls/yield.s b/libc/sysv/calls/yield.s index f0629ab68..3ce5b27df 100644 --- a/libc/sysv/calls/yield.s +++ b/libc/sysv/calls/yield.s @@ -1,2 +1,2 @@ .include "o/libc/sysv/macros.internal.inc" -.scall yield 0xffff0141ffffffff globl +.scall yield 0xffffff141fffffff globl diff --git a/libc/sysv/consts.sh b/libc/sysv/consts.sh index a8d798b50..52e65a08d 100755 --- a/libc/sysv/consts.sh +++ b/libc/sysv/consts.sh @@ -22,636 +22,639 @@ dir=libc/sysv/consts # The Fifth Bell System, Community Edition # » catalogue of carnage # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon errno ENOSYS 38 78 78 78 1 # bsd consensus & kNtErrorInvalidFunction -syscon errno EPERM 1 1 1 1 12 # unix consensus & kNtErrorInvalidAccess (should be kNtErrorNotOwner but is that mutex only??) -syscon errno ENOENT 2 2 2 2 2 # unix consensus & kNtErrorFileNotFound -syscon errno ESRCH 3 3 3 3 566 # "no such process" & kNtErrorThreadNotInProcess (cf. kNtErrorInvalidHandle) -syscon errno EINTR 4 4 4 4 10004 # unix consensus & WSAEINTR -syscon errno EIO 5 5 5 5 1117 # unix consensus & kNtErrorIoDevice -syscon errno ENXIO 6 6 6 6 1112 # unix consensus & kNtErrorNoMediaInDrive -syscon errno E2BIG 7 7 7 7 1639 # unix consensus & kNtErrorInvalidCommandLine -syscon errno ENOEXEC 8 8 8 8 193 # unix consensus & kNtErrorBadExeFormat -syscon errno EBADF 9 9 9 9 6 # bad file descriptor; cf. EBADFD; unix consensus & kNtErrorInvalidHandle -syscon errno ECHILD 10 10 10 10 128 # unix consensus & kNtErrorWaitNoChildren -syscon errno EAGAIN 11 35 35 35 0x2733 # bsd consensus & WSAEWOULDBLOCK -syscon errno EWOULDBLOCK 11 35 35 35 0x2733 # bsd consensus & WSAEWOULDBLOCK -syscon errno ENOMEM 12 12 12 12 14 # unix consensus & kNtErrorOutofmemory -syscon errno EACCES 13 13 13 13 5 # unix consensus & kNtErrorAccessDenied -syscon errno EFAULT 14 14 14 14 487 # unix consensus & kNtErrorInvalidAddress -syscon errno ENOTBLK 15 15 15 15 26 # unix consensus & kNtErrorNotDosDisk -syscon errno EBUSY 16 16 16 16 170 # unix consensus & kNtErrorBusy -syscon errno EEXIST 17 17 17 17 183 # unix consensus & kNtErrorAlreadyExists (should be kNtErrorFileExists too) -syscon errno EXDEV 18 18 18 18 17 # unix consensus & kNtErrorNotSameDevice -syscon errno ENODEV 19 19 19 19 1200 # unix consensus & kNtErrorBadDevice -syscon errno ENOTDIR 20 20 20 20 3 # unix consensus & kNtErrorPathNotFound -syscon errno EISDIR 21 21 21 21 267 # unix consensus & kNtErrorDirectoryNotSupported -syscon errno EINVAL 22 22 22 22 87 # unix consensus & kNtErrorInvalidParameter -syscon errno ENFILE 23 23 23 23 331 # unix consensus & kNtErrorTooManyDescriptors -syscon errno EMFILE 24 24 24 24 336 # unix consensus & kNtErrorTooManyOpenFiles -syscon errno ENOTTY 25 25 25 25 1118 # unix consensus & kNtErrorSerialNoDevice -syscon errno ETXTBSY 26 26 26 26 148 # unix consensus & kNtErrorPathBusy -syscon errno EFBIG 27 27 27 27 223 # unix consensus & kNtErrorFileTooLarge -syscon errno ENOSPC 28 28 28 28 39 # unix consensus & kNtErrorDiskFull -syscon errno EDQUOT 122 69 69 69 0x2755 # bsd consensus -syscon errno ESPIPE 29 29 29 29 25 # unix consensus & kNtErrorSeek -syscon errno EROFS 30 30 30 30 6009 # unix consensus & kNtErrorFileReadOnly -syscon errno EMLINK 31 31 31 31 4 # unix consensus & kNtErrorTooManyLinks -syscon errno EPIPE 32 32 32 32 109 # unix consensus & kNtErrorBrokenPipe -syscon errno EDOM 33 33 33 33 -1 # bsd consensus -syscon errno ERANGE 34 34 34 34 -1 # bsd consensus -syscon errno EDEADLK 35 11 11 11 1131 # bsd consensus & kNtErrorPossibleDeadlock -syscon errno ENAMETOOLONG 36 63 63 63 0x274f # bsd consensus & WSAENAMETOOLONG -syscon errno ENOLCK 37 77 77 77 -1 # bsd consensus -syscon errno ENOTEMPTY 39 66 66 66 145 # bsd consensus & kNtErrorDirNotEmpty (TODO: What is WSAENOTEMPTY? 0x2752) -syscon errno ELOOP 40 62 62 62 0x274e # bsd consensus & WSAELOOP -syscon errno ENOMSG 42 91 83 90 -1 -syscon errno EIDRM 43 90 82 89 -1 -syscon errno EUSERS 87 68 68 68 0x2754 # bsd consensus & WSAEUSERS -syscon errno ENOTSOCK 88 38 38 38 0x2736 # bsd consensus & WSAENOTSOCK -syscon errno EDESTADDRREQ 89 39 39 39 0x2737 # bsd consensus & WSAEDESTADDRREQ -syscon errno EMSGSIZE 90 40 40 40 0x2738 # bsd consensus & WSAEMSGSIZE -syscon errno EPROTOTYPE 91 41 41 41 0x2739 # bsd consensus & WSAEPROTOTYPE -syscon errno ENOPROTOOPT 92 42 42 42 0x273a # bsd consensus & WSAENOPROTOOPT -syscon errno EPROTONOSUPPORT 93 43 43 43 0x273b # bsd consensus & WSAEPROTONOSUPPORT -syscon errno ESOCKTNOSUPPORT 94 44 44 44 0x273c # bsd consensus & WSAESOCKTNOSUPPORT -syscon errno ENOTSUP 95 45 45 91 0x273d -syscon errno EOPNOTSUPP 95 102 45 45 0x273d -syscon errno EPFNOSUPPORT 96 46 46 46 0x273e # bsd consensus & WSAEPFNOSUPPORT -syscon errno EAFNOSUPPORT 97 47 47 47 0x273f # bsd consensus & WSAEAFNOSUPPORT -syscon errno EADDRINUSE 98 48 48 48 0x2740 # bsd consensus & WSAEADDRINUSE -syscon errno EADDRNOTAVAIL 99 49 49 49 0x2741 # bsd consensus & WSAEADDRNOTAVAIL -syscon errno ENETDOWN 100 50 50 50 0x2742 # bsd consensus & WSAENETDOWN -syscon errno ENETUNREACH 101 51 51 51 0x2743 # bsd consensus & WSAENETUNREACH -syscon errno ENETRESET 102 52 52 52 0x2744 # bsd consensus & WSAENETRESET -syscon errno ECONNABORTED 103 53 53 53 0x2745 # bsd consensus & WSAECONNABORTED -syscon errno ECONNRESET 104 54 54 54 0x2746 # bsd consensus & WSAECONNRESET -syscon errno ENOBUFS 105 55 55 55 0x2747 # bsd consensus & WSAENOBUFS -syscon errno EISCONN 106 56 56 56 0x2748 # bsd consensus & WSAEISCONN -syscon errno ENOTCONN 107 57 57 57 0x2749 # bsd consensus & WSAENOTCONN -syscon errno ESHUTDOWN 108 58 58 58 0x274a # bsd consensus & WSAESHUTDOWN -syscon errno ETOOMANYREFS 109 59 59 59 0x274b # bsd consensus & WSAETOOMANYREFS -syscon errno ETIMEDOUT 110 60 60 60 0x274c # bsd consensus & WSAETIMEDOUT -syscon errno ECONNREFUSED 111 61 61 61 0x274d # bsd consensus & WSAECONNREFUSED -syscon errno EHOSTDOWN 112 64 64 64 0x2750 # bsd consensus & WSAEHOSTDOWN -syscon errno EHOSTUNREACH 113 65 65 65 0x2751 # bsd consensus & WSAEHOSTUNREACH -syscon errno EALREADY 114 37 37 37 0x2735 # bsd consensus & WSAEALREADY -syscon errno EINPROGRESS 115 36 36 36 0x2734 # bsd consensus & WSAEINPROGRESS -syscon errno ESTALE 116 70 70 70 0x2756 # bsd consensus & WSAESTALE -syscon errno ECHRNG 44 -1 -1 -1 -1 # bsd consensus -syscon errno EL2NSYNC 45 -1 -1 -1 -1 # bsd consensus -syscon errno EL3HLT 46 -1 -1 -1 -1 # bsd consensus -syscon errno EL3RST 47 -1 -1 -1 -1 # bsd consensus -syscon errno ELNRNG 48 -1 -1 -1 -1 # bsd consensus -syscon errno EUNATCH 49 -1 -1 -1 -1 # bsd consensus -syscon errno ENOCSI 50 -1 -1 -1 -1 # bsd consensus -syscon errno EL2HLT 51 -1 -1 -1 -1 # bsd consensus -syscon errno EBADE 52 -1 -1 -1 -1 # bsd consensus -syscon errno EBADR 53 -1 -1 -1 -1 # bsd consensus -syscon errno EXFULL 54 -1 -1 -1 -1 # bsd consensus -syscon errno ENOANO 55 -1 -1 -1 -1 # bsd consensus -syscon errno EBADRQC 56 -1 -1 -1 -1 # bsd consensus -syscon errno EBADSLT 57 -1 -1 -1 -1 # bsd consensus -syscon errno EBFONT 59 -1 -1 -1 -1 # bsd consensus -syscon errno ENOSTR 60 99 -1 -1 -1 -syscon errno ENODATA 61 96 -1 -1 -1 -syscon errno ETIME 62 101 -1 -1 -1 -syscon errno ENOSR 63 98 -1 -1 -1 -syscon errno ENONET 64 -1 -1 -1 -1 # bsd consensus -syscon errno ENOPKG 65 -1 -1 -1 -1 # bsd consensus -syscon errno EREMOTE 66 71 71 71 0x2757 # bsd consensus -syscon errno ENOLINK 67 97 91 -1 -1 -syscon errno EADV 68 -1 -1 -1 -1 # bsd consensus -syscon errno ESRMNT 69 -1 -1 -1 -1 # bsd consensus -syscon errno ECOMM 70 -1 -1 -1 -1 # bsd consensus -syscon errno EPROTO 71 100 92 95 -1 -syscon errno EMULTIHOP 72 95 90 -1 -1 -syscon errno EDOTDOT 73 -1 -1 -1 -1 # bsd consensus -syscon errno EBADMSG 74 94 89 92 -1 -syscon errno EOVERFLOW 75 84 84 87 -1 -syscon errno ENOTUNIQ 76 -1 -1 -1 -1 # bsd consensus -syscon errno EBADFD 77 9 9 9 6 # file descriptor in bad state; cf. EBADF; fudged on non-Linux -syscon errno EREMCHG 78 -1 -1 -1 -1 # bsd consensus -syscon errno ELIBACC 79 -1 -1 -1 -1 # bsd consensus -syscon errno ELIBBAD 80 -1 -1 -1 -1 # bsd consensus -syscon errno ELIBSCN 81 -1 -1 -1 -1 # bsd consensus -syscon errno ELIBMAX 82 -1 -1 -1 -1 # bsd consensus -syscon errno ELIBEXEC 83 -1 -1 -1 -1 # bsd consensus -syscon errno EILSEQ 84 92 86 84 -1 -syscon errno ERESTART 85 -1 -1 -1 -1 # bsd consensus -syscon errno ESTRPIPE 86 -1 -1 -1 -1 # bsd consensus -syscon errno EUCLEAN 117 -1 -1 -1 -1 # bsd consensus -syscon errno ENOTNAM 118 -1 -1 -1 -1 # bsd consensus -syscon errno ENAVAIL 119 -1 -1 -1 -1 # bsd consensus -syscon errno EISNAM 120 -1 -1 -1 -1 # bsd consensus -syscon errno EREMOTEIO 121 -1 -1 -1 -1 # bsd consensus -syscon errno ENOMEDIUM 123 -1 -1 85 -1 -syscon errno EMEDIUMTYPE 124 -1 -1 86 -1 -syscon errno ECANCELED 125 89 85 88 -1 -syscon errno ENOKEY 126 -1 -1 -1 -1 # bsd consensus -syscon errno EKEYEXPIRED 127 -1 -1 -1 -1 # bsd consensus -syscon errno EKEYREVOKED 128 -1 -1 -1 -1 # bsd consensus -syscon errno EKEYREJECTED 129 -1 -1 -1 -1 # bsd consensus -syscon errno EOWNERDEAD 130 105 96 94 -1 -syscon errno ENOTRECOVERABLE 131 104 95 93 -1 -syscon errno ERFKILL 132 -1 -1 -1 -1 # bsd consensus -syscon errno EHWPOISON 133 -1 -1 -1 -1 # bsd consensus +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon errno ENOSYS 38 78 78 78 78 1 # bsd consensus & kNtErrorInvalidFunction +syscon errno EPERM 1 1 1 1 1 12 # unix consensus & kNtErrorInvalidAccess (should be kNtErrorNotOwner but is that mutex only??) +syscon errno ENOENT 2 2 2 2 2 2 # unix consensus & kNtErrorFileNotFound +syscon errno ESRCH 3 3 3 3 3 566 # "no such process" & kNtErrorThreadNotInProcess (cf. kNtErrorInvalidHandle) +syscon errno EINTR 4 4 4 4 4 10004 # unix consensus & WSAEINTR +syscon errno EIO 5 5 5 5 5 1117 # unix consensus & kNtErrorIoDevice +syscon errno ENXIO 6 6 6 6 6 1112 # unix consensus & kNtErrorNoMediaInDrive +syscon errno E2BIG 7 7 7 7 7 1639 # unix consensus & kNtErrorInvalidCommandLine +syscon errno ENOEXEC 8 8 8 8 8 193 # unix consensus & kNtErrorBadExeFormat +syscon errno EBADF 9 9 9 9 9 6 # bad file descriptor; cf. EBADFD; unix consensus & kNtErrorInvalidHandle +syscon errno ECHILD 10 10 10 10 10 128 # unix consensus & kNtErrorWaitNoChildren +syscon errno EAGAIN 11 35 35 35 35 0x2733 # bsd consensus & WSAEWOULDBLOCK +syscon errno EWOULDBLOCK 11 35 35 35 35 0x2733 # bsd consensus & WSAEWOULDBLOCK +syscon errno ENOMEM 12 12 12 12 12 14 # unix consensus & kNtErrorOutofmemory +syscon errno EACCES 13 13 13 13 13 5 # unix consensus & kNtErrorAccessDenied +syscon errno EFAULT 14 14 14 14 14 487 # unix consensus & kNtErrorInvalidAddress +syscon errno ENOTBLK 15 15 15 15 15 26 # unix consensus & kNtErrorNotDosDisk +syscon errno EBUSY 16 16 16 16 16 170 # unix consensus & kNtErrorBusy +syscon errno EEXIST 17 17 17 17 17 183 # unix consensus & kNtErrorAlreadyExists (should be kNtErrorFileExists too) +syscon errno EXDEV 18 18 18 18 18 17 # unix consensus & kNtErrorNotSameDevice +syscon errno ENODEV 19 19 19 19 19 1200 # unix consensus & kNtErrorBadDevice +syscon errno ENOTDIR 20 20 20 20 20 3 # unix consensus & kNtErrorPathNotFound +syscon errno EISDIR 21 21 21 21 21 267 # unix consensus & kNtErrorDirectoryNotSupported +syscon errno EINVAL 22 22 22 22 22 87 # unix consensus & kNtErrorInvalidParameter +syscon errno ENFILE 23 23 23 23 23 331 # unix consensus & kNtErrorTooManyDescriptors +syscon errno EMFILE 24 24 24 24 24 336 # unix consensus & kNtErrorTooManyOpenFiles +syscon errno ENOTTY 25 25 25 25 25 1118 # unix consensus & kNtErrorSerialNoDevice +syscon errno ETXTBSY 26 26 26 26 26 148 # unix consensus & kNtErrorPathBusy +syscon errno EFBIG 27 27 27 27 27 223 # unix consensus & kNtErrorFileTooLarge +syscon errno ENOSPC 28 28 28 28 28 39 # unix consensus & kNtErrorDiskFull +syscon errno EDQUOT 122 69 69 69 69 0x2755 # bsd consensus +syscon errno ESPIPE 29 29 29 29 29 25 # unix consensus & kNtErrorSeek +syscon errno EROFS 30 30 30 30 30 6009 # unix consensus & kNtErrorFileReadOnly +syscon errno EMLINK 31 31 31 31 31 4 # unix consensus & kNtErrorTooManyLinks +syscon errno EPIPE 32 32 32 32 32 109 # unix consensus & kNtErrorBrokenPipe +syscon errno EDOM 33 33 33 33 33 -1 # bsd consensus +syscon errno ERANGE 34 34 34 34 34 -1 # bsd consensus +syscon errno EDEADLK 35 11 11 11 11 1131 # bsd consensus & kNtErrorPossibleDeadlock +syscon errno ENAMETOOLONG 36 63 63 63 63 0x274f # bsd consensus & WSAENAMETOOLONG +syscon errno ENOLCK 37 77 77 77 77 -1 # bsd consensus +syscon errno ENOTEMPTY 39 66 66 66 66 145 # bsd consensus & kNtErrorDirNotEmpty (TODO: What is WSAENOTEMPTY? 0x2752) +syscon errno ELOOP 40 62 62 62 62 0x274e # bsd consensus & WSAELOOP +syscon errno ENOMSG 42 91 83 90 83 -1 +syscon errno EIDRM 43 90 82 89 82 -1 +syscon errno EUSERS 87 68 68 68 68 0x2754 # bsd consensus & WSAEUSERS +syscon errno ENOTSOCK 88 38 38 38 38 0x2736 # bsd consensus & WSAENOTSOCK +syscon errno EDESTADDRREQ 89 39 39 39 39 0x2737 # bsd consensus & WSAEDESTADDRREQ +syscon errno EMSGSIZE 90 40 40 40 40 0x2738 # bsd consensus & WSAEMSGSIZE +syscon errno EPROTOTYPE 91 41 41 41 41 0x2739 # bsd consensus & WSAEPROTOTYPE +syscon errno ENOPROTOOPT 92 42 42 42 42 0x273a # bsd consensus & WSAENOPROTOOPT +syscon errno EPROTONOSUPPORT 93 43 43 43 43 0x273b # bsd consensus & WSAEPROTONOSUPPORT +syscon errno ESOCKTNOSUPPORT 94 44 44 44 44 0x273c # bsd consensus & WSAESOCKTNOSUPPORT +syscon errno ENOTSUP 95 45 45 91 86 0x273d +syscon errno EOPNOTSUPP 95 102 45 45 45 0x273d +syscon errno EPFNOSUPPORT 96 46 46 46 46 0x273e # bsd consensus & WSAEPFNOSUPPORT +syscon errno EAFNOSUPPORT 97 47 47 47 47 0x273f # bsd consensus & WSAEAFNOSUPPORT +syscon errno EADDRINUSE 98 48 48 48 48 0x2740 # bsd consensus & WSAEADDRINUSE +syscon errno EADDRNOTAVAIL 99 49 49 49 49 0x2741 # bsd consensus & WSAEADDRNOTAVAIL +syscon errno ENETDOWN 100 50 50 50 50 0x2742 # bsd consensus & WSAENETDOWN +syscon errno ENETUNREACH 101 51 51 51 51 0x2743 # bsd consensus & WSAENETUNREACH +syscon errno ENETRESET 102 52 52 52 52 0x2744 # bsd consensus & WSAENETRESET +syscon errno ECONNABORTED 103 53 53 53 53 0x2745 # bsd consensus & WSAECONNABORTED +syscon errno ECONNRESET 104 54 54 54 54 0x2746 # bsd consensus & WSAECONNRESET +syscon errno ENOBUFS 105 55 55 55 55 0x2747 # bsd consensus & WSAENOBUFS +syscon errno EISCONN 106 56 56 56 56 0x2748 # bsd consensus & WSAEISCONN +syscon errno ENOTCONN 107 57 57 57 57 0x2749 # bsd consensus & WSAENOTCONN +syscon errno ESHUTDOWN 108 58 58 58 58 0x274a # bsd consensus & WSAESHUTDOWN +syscon errno ETOOMANYREFS 109 59 59 59 59 0x274b # bsd consensus & WSAETOOMANYREFS +syscon errno ETIMEDOUT 110 60 60 60 60 0x274c # bsd consensus & WSAETIMEDOUT +syscon errno ECONNREFUSED 111 61 61 61 61 0x274d # bsd consensus & WSAECONNREFUSED +syscon errno EHOSTDOWN 112 64 64 64 64 0x2750 # bsd consensus & WSAEHOSTDOWN +syscon errno EHOSTUNREACH 113 65 65 65 65 0x2751 # bsd consensus & WSAEHOSTUNREACH +syscon errno EALREADY 114 37 37 37 37 0x2735 # bsd consensus & WSAEALREADY +syscon errno EINPROGRESS 115 36 36 36 36 0x2734 # bsd consensus & WSAEINPROGRESS +syscon errno ESTALE 116 70 70 70 70 0x2756 # bsd consensus & WSAESTALE +syscon errno ECHRNG 44 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EL2NSYNC 45 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EL3HLT 46 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EL3RST 47 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ELNRNG 48 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EUNATCH 49 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ENOCSI 50 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EL2HLT 51 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EBADE 52 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EBADR 53 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EXFULL 54 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ENOANO 55 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EBADRQC 56 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EBADSLT 57 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EBFONT 59 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ENOSTR 60 99 -1 -1 91 -1 +syscon errno ENODATA 61 96 -1 -1 89 -1 +syscon errno ETIME 62 101 -1 -1 92 -1 +syscon errno ENOSR 63 98 -1 -1 90 -1 +syscon errno ENONET 64 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ENOPKG 65 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EREMOTE 66 71 71 71 71 0x2757 # bsd consensus +syscon errno ENOLINK 67 97 91 -1 95 -1 +syscon errno EADV 68 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ESRMNT 69 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ECOMM 70 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EPROTO 71 100 92 95 96 -1 +syscon errno EMULTIHOP 72 95 90 -1 94 -1 +syscon errno EDOTDOT 73 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EBADMSG 74 94 89 92 88 -1 +syscon errno EOVERFLOW 75 84 84 87 84 -1 +syscon errno ENOTUNIQ 76 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EBADFD 77 9 9 9 9 6 # file descriptor in bad state; cf. EBADF; fudged on non-Linux +syscon errno EREMCHG 78 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ELIBACC 79 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ELIBBAD 80 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ELIBSCN 81 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ELIBMAX 82 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ELIBEXEC 83 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EILSEQ 84 92 86 84 85 -1 +syscon errno ERESTART 85 -1 -1 -1 -3 -1 # bsd consensus +syscon errno ESTRPIPE 86 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EUCLEAN 117 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ENOTNAM 118 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ENAVAIL 119 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EISNAM 120 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EREMOTEIO 121 -1 -1 -1 -1 -1 # bsd consensus +syscon errno ENOMEDIUM 123 -1 -1 85 85 -1 +syscon errno EMEDIUMTYPE 124 -1 -1 86 86 -1 +syscon errno ECANCELED 125 89 85 88 87 -1 +syscon errno ENOKEY 126 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EKEYEXPIRED 127 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EKEYREVOKED 128 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EKEYREJECTED 129 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EOWNERDEAD 130 105 96 94 97 -1 +syscon errno ENOTRECOVERABLE 131 104 95 93 98 -1 +syscon errno ERFKILL 132 -1 -1 -1 -1 -1 # bsd consensus +syscon errno EHWPOISON 133 -1 -1 -1 -1 -1 # bsd consensus # signals # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon sig SIGHUP 1 1 1 1 1 # unix consensus & faked on nt -syscon sig SIGINT 2 2 2 2 2 # unix consensus & faked on nt -syscon sig SIGQUIT 3 3 3 3 3 # unix consensus & faked on nt -syscon sig SIGILL 4 4 4 4 4 # unix consensus & faked on nt -syscon sig SIGTRAP 5 5 5 5 5 # unix consensus & faked on nt -syscon sig SIGABRT 6 6 6 6 6 # unix consensus & faked on nt -syscon sig SIGIOT 6 6 6 6 6 # unix consensus & faked on nt -syscon sig SIGFPE 8 8 8 8 8 # unix consensus & faked on nt -syscon sig SIGKILL 9 9 9 9 9 # unix consensus & faked on nt -syscon sig SIGSEGV 11 11 11 11 11 # unix consensus & faked on nt -syscon sig SIGPIPE 13 13 13 13 13 # unix consensus & faked on nt -syscon sig SIGALRM 14 14 14 14 14 # unix consensus & faked on nt -syscon sig SIGTERM 15 15 15 15 15 # unix consensus & faked on nt -syscon sig SIGTTIN 21 21 21 21 21 # unix consensus & faked on nt -syscon sig SIGTTOU 22 22 22 22 22 # unix consensus & faked on nt -syscon sig SIGXCPU 24 24 24 24 24 # unix consensus & faked on nt -syscon sig SIGXFSZ 25 25 25 25 25 # unix consensus & faked on nt -syscon sig SIGVTALRM 26 26 26 26 26 # unix consensus & faked on nt -syscon sig SIGPROF 27 27 27 27 27 # unix consensus & faked on nt -syscon sig SIGWINCH 28 28 28 28 28 # unix consensus & faked on nt -syscon sig SIGBUS 7 10 10 10 7 # bsd consensus -syscon sig SIGUSR1 10 30 30 30 10 # bsd consensus -syscon sig SIGCHLD 17 20 20 20 17 # bsd consensus -syscon sig SIGCONT 18 19 19 19 18 # bsd consensus -syscon sig SIGIO 29 23 23 23 29 # bsd consensus -syscon sig SIGSTOP 19 17 17 17 19 # bsd consensus -syscon sig SIGSYS 31 12 12 12 31 # bsd consensus -syscon sig SIGTSTP 20 18 18 18 20 # bsd consensus -syscon sig SIGURG 23 0x10 0x10 0x10 23 # bsd consensus -syscon sig SIGUSR2 12 31 31 31 12 # bsd consensus -syscon sig SIGSTKSZ 0x2000 0x020000 0x8800 0x7000 0x2000 -syscon sig SIGPOLL 29 0 0 0 29 -syscon sig SIGPWR 30 0 0 0 30 -syscon sig SIGSTKFLT 0x10 0 0 0 0x10 -syscon sig SIGUNUSED 31 0 0 0 31 -syscon sig SIGRTMAX 0 0 126 0 0 -syscon sig SIGRTMIN 0 0 65 0 0 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon sig SIGHUP 1 1 1 1 1 1 # unix consensus & faked on nt +syscon sig SIGINT 2 2 2 2 2 2 # unix consensus & faked on nt +syscon sig SIGQUIT 3 3 3 3 3 3 # unix consensus & faked on nt +syscon sig SIGILL 4 4 4 4 4 4 # unix consensus & faked on nt +syscon sig SIGTRAP 5 5 5 5 5 5 # unix consensus & faked on nt +syscon sig SIGABRT 6 6 6 6 6 6 # unix consensus & faked on nt +syscon sig SIGIOT 6 6 6 6 6 6 # unix consensus & faked on nt +syscon sig SIGFPE 8 8 8 8 8 8 # unix consensus & faked on nt +syscon sig SIGKILL 9 9 9 9 9 9 # unix consensus & faked on nt +syscon sig SIGSEGV 11 11 11 11 11 11 # unix consensus & faked on nt +syscon sig SIGPIPE 13 13 13 13 13 13 # unix consensus & faked on nt +syscon sig SIGALRM 14 14 14 14 14 14 # unix consensus & faked on nt +syscon sig SIGTERM 15 15 15 15 15 15 # unix consensus & faked on nt +syscon sig SIGTTIN 21 21 21 21 21 21 # unix consensus & faked on nt +syscon sig SIGTTOU 22 22 22 22 22 22 # unix consensus & faked on nt +syscon sig SIGXCPU 24 24 24 24 24 24 # unix consensus & faked on nt +syscon sig SIGXFSZ 25 25 25 25 25 25 # unix consensus & faked on nt +syscon sig SIGVTALRM 26 26 26 26 26 26 # unix consensus & faked on nt +syscon sig SIGPROF 27 27 27 27 27 27 # unix consensus & faked on nt +syscon sig SIGWINCH 28 28 28 28 28 28 # unix consensus & faked on nt +syscon sig SIGBUS 7 10 10 10 10 7 # bsd consensus +syscon sig SIGUSR1 10 30 30 30 30 10 # bsd consensus +syscon sig SIGCHLD 17 20 20 20 20 17 # bsd consensus +syscon sig SIGCONT 18 19 19 19 19 18 # bsd consensus +syscon sig SIGIO 29 23 23 23 23 29 # bsd consensus +syscon sig SIGSTOP 19 17 17 17 17 19 # bsd consensus +syscon sig SIGSYS 31 12 12 12 12 31 # bsd consensus +syscon sig SIGTSTP 20 18 18 18 18 20 # bsd consensus +syscon sig SIGURG 23 0x10 0x10 0x10 0x10 23 # bsd consensus +syscon sig SIGUSR2 12 31 31 31 31 12 # bsd consensus +syscon sig SIGSTKSZ 0x2000 0x020000 0x8800 0x7000 0x7000 0x2000 +syscon sig SIGPOLL 29 0 0 0 0 29 +syscon sig SIGPWR 30 0 0 0 32 30 +syscon sig SIGSTKFLT 0x10 0 0 0 0 0x10 +syscon sig SIGUNUSED 31 0 0 0 0 31 +syscon sig SIGRTMAX 0 0 126 0 63 0 +syscon sig SIGRTMIN 0 0 65 0 33 0 -# open() flags ┌──────hoo boy -# ┌──────┐ -# │┌─<<8─┴───dwFlagsAndAttributes -# ┌││─────┐ -# │││ │ ┌┴───dwDesiredAccess -# N │││ │ │ -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD T │││┌─┴┐│ Commentary -syscon open O_RDONLY 0 0 0 0 0xA0000000 # unix consensus & kNtGenericRead|kNtGenericExecute -syscon open O_WRONLY 1 1 1 1 0x40000000 # unix consensus & kNtGenericWrite -syscon open O_RDWR 2 2 2 2 0xE0000000 # unix consensus & kNtGenericRead|kNtGenericWrite|kNtGenericExecute -syscon open O_ACCMODE 3 3 3 3 0xE0000000 # O_RDONLY|O_WRONLY|O_RDWR -syscon open O_APPEND 0x0400 8 8 8 0x00000004 # bsd consensus & kNtFileAppendData; won't pose issues w/ mknod(S_IFIFO) -syscon open O_CREAT 0x40 0x0200 0x0200 0x0200 0x00000040 # bsd consensus & NT faked as Linux -syscon open O_EXCL 0x80 0x0800 0x0800 0x0800 0x00000080 # bsd consensus & NT faked as Linux -syscon open O_TRUNC 0x0200 0x0400 0x0400 0x0400 0x00000200 # bsd consensus & NT faked as Linux -syscon open O_DIRECTORY 0x010000 0x100000 0x020000 0x020000 0x02000000 # kNtFileFlagBackupSemantics -syscon open O_DIRECT 0x4000 0 0x010000 0 0x00200000 # kNtFileFlagNoBuffering>>8 -syscon open O_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x00080000 # NT faked as Linux -syscon open O_TMPFILE 0x410000 0 0 0 0x04000100 # Linux 3.11+ (c. 2013) & kNtFileAttributeTemporary|kNtFileFlagDeleteOnClose -syscon open O_SPARSE 0 0 0 0 0x00040000 # we invented it -syscon open O_NDELAY 0x0800 4 4 4 0 # bsd consensus & kNtFileFlagWriteThrough>>8 → 0x00800000 (???) -syscon open O_NONBLOCK 0x0800 4 4 4 0x00000800 # bsd consensus & faked on nt to be same as linux -syscon open O_ASYNC 0x2000 0x40 0x40 0x40 0 # bsd consensus -syscon open O_NOFOLLOW 0x020000 0x0100 0x0100 0x0100 0 # bsd consensus -syscon open O_SYNC 0x101000 0x80 0x80 0x80 0 # bsd consensus -syscon open O_NOCTTY 0x0100 0x020000 0x8000 0x8000 0 # used for remote viewing (default behavior on freebsd) -syscon open O_DSYNC 0x1000 0x400000 0 0x80 0 -syscon open O_RSYNC 0x101000 0 0 0x80 0 -syscon open O_NOATIME 0x040000 0 0 0 0 -syscon open O_PATH 0x200000 0 0 0 0 -syscon open O_EXEC 0 0 0x040000 0 0 -syscon open O_TTY_INIT 0 0 0x080000 0 0 -syscon compat O_LARGEFILE 0 0 0 0 0 +# open() flags ┌──────hoo boy +# ┌──────┐ +# │┌─<<8─┴───dwFlagsAndAttributes +# ┌││─────┐ +# │││ │ ┌┴───dwDesiredAccess +# N │││ │ │ +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD T │││┌─┴┐│ Commentary +syscon open O_RDONLY 0 0 0 0 0 0xA0000000 # unix consensus & kNtGenericRead|kNtGenericExecute +syscon open O_WRONLY 1 1 1 1 1 0x40000000 # unix consensus & kNtGenericWrite +syscon open O_RDWR 2 2 2 2 2 0xE0000000 # unix consensus & kNtGenericRead|kNtGenericWrite|kNtGenericExecute +syscon open O_ACCMODE 3 3 3 3 3 0xE0000000 # O_RDONLY|O_WRONLY|O_RDWR +syscon open O_APPEND 0x0400 8 8 8 8 0x00000004 # bsd consensus & kNtFileAppendData; won't pose issues w/ mknod(S_IFIFO) +syscon open O_CREAT 0x40 0x0200 0x0200 0x0200 0x0200 0x00000040 # bsd consensus & NT faked as Linux +syscon open O_EXCL 0x80 0x0800 0x0800 0x0800 0x0800 0x00000080 # bsd consensus & NT faked as Linux +syscon open O_TRUNC 0x0200 0x0400 0x0400 0x0400 0x0400 0x00000200 # bsd consensus & NT faked as Linux +syscon open O_DIRECTORY 0x010000 0x100000 0x020000 0x020000 0x200000 0x02000000 # kNtFileFlagBackupSemantics +syscon open O_DIRECT 0x4000 0 0x010000 0 0x80000 0x00200000 # kNtFileFlagNoBuffering>>8 +syscon open O_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x400000 0x00080000 # NT faked as Linux +syscon open O_TMPFILE 0x410000 0 0 0 0 0x04000100 # Linux 3.11+ (c. 2013) & kNtFileAttributeTemporary|kNtFileFlagDeleteOnClose +syscon open O_SPARSE 0 0 0 0 0 0x00040000 # we invented it +syscon open O_NDELAY 0x0800 4 4 4 4 0 # bsd consensus & kNtFileFlagWriteThrough>>8 → 0x00800000 (???) +syscon open O_NONBLOCK 0x0800 4 4 4 4 0x00000800 # bsd consensus & faked on nt to be same as linux +syscon open O_ASYNC 0x2000 0x40 0x40 0x40 0x40 0 # bsd consensus +syscon open O_NOFOLLOW 0x020000 0x0100 0x0100 0x0100 0x0100 0 # bsd consensus +syscon open O_SYNC 0x101000 0x80 0x80 0x80 0x80 0 # bsd consensus +syscon open O_NOCTTY 0x0100 0x020000 0x8000 0x8000 0x8000 0 # used for remote viewing (default behavior on freebsd) +syscon open O_DSYNC 0x1000 0x400000 0 0x80 0x10000 0 +syscon open O_RSYNC 0x101000 0 0 0x80 0x20000 0 +syscon open O_NOATIME 0x040000 0 0 0 0 0 +syscon open O_PATH 0x200000 0 0 0 0 0 +syscon open O_EXEC 0 0 0x040000 0 0x4000000 0 +syscon open O_TTY_INIT 0 0 0x080000 0 0 0 +syscon compat O_LARGEFILE 0 0 0 0 0 0 -syscon compat MAP_FILE 0 0 0 0 0 # consensus -syscon mmap MAP_SHARED 1 1 1 1 1 # forced consensus & faked nt -syscon mmap MAP_PRIVATE 2 2 2 2 2 # forced consensus & faked nt -syscon mmap MAP_FIXED 0x10 0x10 0x10 0x10 0x10 # unix consensus; openbsd appears to forbid; faked nt -syscon mmap MAP_ANONYMOUS 0x20 0x1000 0x1000 0x1000 0x20 # bsd consensus; faked nt -syscon mmap MAP_GROWSDOWN 0x0100 0 0x0400 0x4000 0x100000 # mandatory for OpenBSD stacks; MAP_STACK on Free/OpenBSD; MEM_TOP_DOWN on NT -syscon mmap MAP_CONCEAL 0 0 0x20000 0x8000 0 # omit from core dumps; MAP_NOCORE on FreeBSD -syscon mmap MAP_NORESERVE 0x4000 0x40 0 0 0 # Linux calls it "reserve"; NT calls it "commit"? which is default? -syscon mmap MAP_HUGETLB 0x040000 0 0 0 0x80000000 # kNtSecLargePages -syscon mmap MAP_HUGE_MASK 63 0 0 0 0 -syscon mmap MAP_HUGE_SHIFT 26 0 0 0 0 -syscon mmap MAP_LOCKED 0x2000 0 0 0 0 -syscon mmap MAP_NONBLOCK 0x10000 0 0 0 0 -syscon mmap MAP_POPULATE 0x8000 0 0 0 0 # can avoid madvise(MADV_WILLNEED) on private file mapping -syscon mmap MAP_TYPE 15 0 0 0 0 # what is it -syscon compat MAP_STACK 0x0100 0 0x0400 0x4000 0x100000 # use MAP_GROWSDOWN -syscon compat MAP_NOCORE 0 0 0x20000 0x8000 0 # use MAP_CONCEAL -syscon compat MAP_ANON 0x20 0x1000 0x1000 0x1000 0x20 # bsd consensus; faked nt -syscon compat MAP_STACK 0x020000 0 0x0400 0x4000 0x100000 -syscon compat MAP_EXECUTABLE 0x1000 0 0 0 0 # ignored -syscon compat MAP_DENYWRITE 0x0800 0 0 0 0 -syscon compat MAP_32BIT 0x40 0 0x080000 0 0 # iffy +syscon compat MAP_FILE 0 0 0 0 0 0 # consensus +syscon mmap MAP_SHARED 1 1 1 1 1 1 # forced consensus & faked nt +syscon mmap MAP_PRIVATE 2 2 2 2 2 2 # forced consensus & faked nt +syscon mmap MAP_FIXED 0x10 0x10 0x10 0x10 0x10 0x10 # unix consensus; openbsd appears to forbid; faked nt +syscon mmap MAP_ANONYMOUS 0x20 0x1000 0x1000 0x1000 0x1000 0x20 # bsd consensus; faked nt +syscon mmap MAP_GROWSDOWN 0x0100 0 0x0400 0x4000 0x4000 0x100000 # mandatory for OpenBSD stacks; MAP_STACK on Free/OpenBSD; MEM_TOP_DOWN on NT +syscon mmap MAP_CONCEAL 0 0 0x20000 0x8000 0x8000 0 # omit from core dumps; MAP_NOCORE on FreeBSD +syscon mmap MAP_NORESERVE 0x4000 0x40 0 0 64 0 # Linux calls it "reserve"; NT calls it "commit"? which is default? +syscon mmap MAP_HUGETLB 0x040000 0 0 0 0 0x80000000 # kNtSecLargePages +syscon mmap MAP_HUGE_MASK 63 0 0 0 0 0 +syscon mmap MAP_HUGE_SHIFT 26 0 0 0 0 0 +syscon mmap MAP_LOCKED 0x2000 0 0 0 0 0 +syscon mmap MAP_NONBLOCK 0x10000 0 0 0 0 0 +syscon mmap MAP_POPULATE 0x8000 0 0 0 0 0 # can avoid madvise(MADV_WILLNEED) on private file mapping +syscon mmap MAP_TYPE 15 0 0 0 0 0 # what is it +syscon compat MAP_STACK 0x0100 0 0x0400 0x4000 0x2000 0x100000 # use MAP_GROWSDOWN +syscon compat MAP_NOCORE 0 0 0x20000 0x8000 0x8000 0 # use MAP_CONCEAL +syscon compat MAP_ANON 0x20 0x1000 0x1000 0x1000 0x1000 0x20 # bsd consensus; faked nt +syscon compat MAP_EXECUTABLE 0x1000 0 0 0 0 0 # ignored +syscon compat MAP_DENYWRITE 0x0800 0 0 0 0 0 +syscon compat MAP_32BIT 0x40 0 0x080000 0 0 0 # iffy -syscon madv MADV_NORMAL 0 0 0 0 0x00000080 # consensus & kNtFileAttributeNormal -syscon compat POSIX_FADV_NORMAL 0 0 0 0 0x00000080 # consensus & kNtFileAttributeNormal -syscon compat POSIX_MADV_NORMAL 0 0 0 0 0x00000080 # consensus & kNtFileAttributeNormal -syscon madv MADV_DONTNEED 4 4 4 4 0 # TODO(jart): weird nt decommit thing? -syscon compat POSIX_MADV_DONTNEED 4 4 4 4 0 # unix consensus -syscon compat POSIX_FADV_DONTNEED 4 0 4 4 0 # unix consensus -syscon madv MADV_RANDOM 1 1 1 1 0x10000000 # unix consensus & kNtFileFlagRandomAccess -syscon compat POSIX_MADV_RANDOM 1 1 1 1 0x10000000 # unix consensus & kNtFileFlagRandomAccess -syscon compat POSIX_FADV_RANDOM 1 0 1 1 0x10000000 # unix consensus & kNtFileFlagRandomAccess -syscon madv MADV_SEQUENTIAL 2 2 2 2 0x8000000 # unix consensus & kNtFileFlagSequentialScan -syscon compat POSIX_MADV_SEQUENTIAL 2 2 2 2 0x8000000 # unix consensus -syscon compat POSIX_FADV_SEQUENTIAL 2 0 2 2 0x8000000 # TODO(jart): double check xnu -syscon madv MADV_WILLNEED 3 3 3 3 3 # unix consensus (faked on NT) -syscon compat POSIX_MADV_WILLNEED 3 3 3 3 3 # unix consensus -syscon compat POSIX_FADV_WILLNEED 3 0 3 3 3 # TODO(jart): double check xnu -syscon madv MADV_MERGEABLE 12 0 0 0 0 # turns on (private anon range) page scanning and merging service (linux only) -syscon madv MADV_UNMERGEABLE 13 0 0 0 0 # turns off mergeable (linux only) -syscon madv MADV_FREE 8 5 5 6 8 # Linux 4.5+ (c. 2016) / NT Faked → VMOfferPriorityNormal (Win8+) -syscon madv MADV_HUGEPAGE 14 0 0 0 0 # TODO(jart): why would we need it? -syscon madv MADV_NOHUGEPAGE 15 0 0 0 0 # TODO(jart): why would we need it? -syscon madv MADV_DODUMP 17 0 0 0 0 # TODO(jart): what is it? -syscon madv MADV_DOFORK 11 0 0 0 0 # TODO(jart): what is it? -syscon madv MADV_DONTDUMP 0x10 0 0 0 0 # TODO(jart): what is it? -syscon madv MADV_DONTFORK 10 0 0 0 0 # TODO(jart): what is it? -syscon madv MADV_HWPOISON 100 0 0 0 0 # TODO(jart): what is it? -syscon madv MADV_REMOVE 9 0 0 0 0 # TODO(jart): what is it? -syscon fadv POSIX_FADV_NOREUSE 5 0 5 0 0 # wut +syscon madv MADV_NORMAL 0 0 0 0 0 0x00000080 # consensus & kNtFileAttributeNormal +syscon compat POSIX_FADV_NORMAL 0 0 0 0 0 0x00000080 # consensus & kNtFileAttributeNormal +syscon compat POSIX_MADV_NORMAL 0 0 0 0 0 0x00000080 # consensus & kNtFileAttributeNormal +syscon madv MADV_DONTNEED 4 4 4 4 4 0 # TODO(jart): weird nt decommit thing? +syscon compat POSIX_MADV_DONTNEED 4 4 4 4 4 0 # unix consensus +syscon compat POSIX_FADV_DONTNEED 4 0 4 4 4 0 # unix consensus +syscon madv MADV_RANDOM 1 1 1 1 1 0x10000000 # unix consensus & kNtFileFlagRandomAccess +syscon compat POSIX_MADV_RANDOM 1 1 1 1 1 0x10000000 # unix consensus & kNtFileFlagRandomAccess +syscon compat POSIX_FADV_RANDOM 1 0 1 1 1 0x10000000 # unix consensus & kNtFileFlagRandomAccess +syscon madv MADV_SEQUENTIAL 2 2 2 2 2 0x8000000 # unix consensus & kNtFileFlagSequentialScan +syscon compat POSIX_MADV_SEQUENTIAL 2 2 2 2 2 0x8000000 # unix consensus +syscon compat POSIX_FADV_SEQUENTIAL 2 0 2 2 2 0x8000000 # TODO(jart): double check xnu +syscon madv MADV_WILLNEED 3 3 3 3 3 3 # unix consensus (faked on NT) +syscon compat POSIX_MADV_WILLNEED 3 3 3 3 3 3 # unix consensus +syscon compat POSIX_FADV_WILLNEED 3 0 3 3 3 3 # TODO(jart): double check xnu +syscon madv MADV_MERGEABLE 12 0 0 0 0 0 # turns on (private anon range) page scanning and merging service (linux only) +syscon madv MADV_UNMERGEABLE 13 0 0 0 0 0 # turns off mergeable (linux only) +syscon madv MADV_FREE 8 5 5 6 6 8 # Linux 4.5+ (c. 2016) / NT Faked → VMOfferPriorityNormal (Win8+) +syscon madv MADV_HUGEPAGE 14 0 0 0 0 0 # TODO(jart): why would we need it? +syscon madv MADV_NOHUGEPAGE 15 0 0 0 0 0 # TODO(jart): why would we need it? +syscon madv MADV_DODUMP 17 0 0 0 0 0 # TODO(jart): what is it? +syscon madv MADV_DOFORK 11 0 0 0 0 0 # TODO(jart): what is it? +syscon madv MADV_DONTDUMP 0x10 0 0 0 0 0 # TODO(jart): what is it? +syscon madv MADV_DONTFORK 10 0 0 0 0 0 # TODO(jart): what is it? +syscon madv MADV_HWPOISON 100 0 0 0 0 0 # TODO(jart): what is it? +syscon madv MADV_REMOVE 9 0 0 0 0 0 # TODO(jart): what is it? +syscon fadv POSIX_FADV_NOREUSE 5 0 5 0 5 0 # wut # mmap(), mprotect(), etc. # digital restrictions management for the people # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon mprot PROT_NONE 0 0 0 0 0 # mmap, mprotect, unix consensus (nt needs special business logic here) -syscon mprot PROT_READ 1 1 1 1 1 # mmap, mprotect, unix consensus -syscon mprot PROT_WRITE 2 2 2 2 2 # mmap, mprotect, unix consensus -syscon mprot PROT_EXEC 4 4 4 4 4 # mmap, mprotect, unix consensus -syscon mprot PROT_GROWSDOWN 0x01000000 0 0 0 0 # intended for mprotect; see MAP_GROWSDOWN for mmap() (todo: what was 0x01000000 on nt) -syscon mprot PROT_GROWSUP 0x02000000 0 0 0 0 # intended for mprotect; see MAP_GROWSDOWN for mmap() +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon mprot PROT_NONE 0 0 0 0 0 0 # mmap, mprotect, unix consensus (nt needs special business logic here) +syscon mprot PROT_READ 1 1 1 1 1 1 # mmap, mprotect, unix consensus +syscon mprot PROT_WRITE 2 2 2 2 2 2 # mmap, mprotect, unix consensus +syscon mprot PROT_EXEC 4 4 4 4 4 4 # mmap, mprotect, unix consensus +syscon mprot PROT_GROWSDOWN 0x01000000 0 0 0 0 0 # intended for mprotect; see MAP_GROWSDOWN for mmap() (todo: what was 0x01000000 on nt) +syscon mprot PROT_GROWSUP 0x02000000 0 0 0 0 0 # intended for mprotect; see MAP_GROWSDOWN for mmap() -syscon mremap MREMAP_MAYMOVE 1 1 1 1 1 # faked non-linux (b/c linux only) -syscon mremap MREMAP_FIXED 2 2 2 2 2 # faked non-linux (b/c linux only) +syscon mremap MREMAP_MAYMOVE 1 1 1 1 1 1 # faked non-linux (b/c linux only) +syscon mremap MREMAP_FIXED 2 2 2 2 2 2 # faked non-linux (b/c linux only) -syscon splice SPLICE_F_MOVE 1 0 0 0 0 # can be safely ignored by polyfill; it's a hint -syscon splice SPLICE_F_NONBLOCK 2 0 0 0 0 # can be safely ignored by polyfill, since linux says it doesn't apply to underlying FDs -syscon splice SPLICE_F_MORE 4 0 0 0 0 # can be safely ignored by polyfill; it's a hint -syscon splice SPLICE_F_GIFT 8 0 0 0 0 # can probably be ignored by polyfill +syscon splice SPLICE_F_MOVE 1 0 0 0 0 0 # can be safely ignored by polyfill; it's a hint +syscon splice SPLICE_F_NONBLOCK 2 0 0 0 0 0 # can be safely ignored by polyfill, since linux says it doesn't apply to underlying FDs +syscon splice SPLICE_F_MORE 4 0 0 0 0 0 # can be safely ignored by polyfill; it's a hint +syscon splice SPLICE_F_GIFT 8 0 0 0 0 0 # can probably be ignored by polyfill # access() flags # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon access F_OK 0 0 0 0 0 # consensus -syscon access X_OK 1 1 1 1 0xa0000000 # unix consensus and kNtGenericExecute | kNtGenericRead -syscon access W_OK 2 2 2 2 0x40000000 # unix consensus and kNtGenericWrite -syscon access R_OK 4 4 4 4 0x80000000 # unix consensus and kNtGenericRead +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon access F_OK 0 0 0 0 0 0 # consensus +syscon access X_OK 1 1 1 1 1 0xa0000000 # unix consensus and kNtGenericExecute | kNtGenericRead +syscon access W_OK 2 2 2 2 2 0x40000000 # unix consensus and kNtGenericWrite +syscon access R_OK 4 4 4 4 4 0x80000000 # unix consensus and kNtGenericRead # flock() flags # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon lock LOCK_SH 1 1 1 1 0 # shared [unix consensus] -syscon lock LOCK_EX 2 2 2 2 2 # exclusive [consensus!] -syscon lock LOCK_NB 4 4 4 4 1 # non-blocking [unix consensus] -syscon lock LOCK_UN 8 8 8 8 8 # unlock [unix consensus & faked NT] +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon lock LOCK_SH 1 1 1 1 1 0 # shared [unix consensus] +syscon lock LOCK_EX 2 2 2 2 2 2 # exclusive [consensus!] +syscon lock LOCK_NB 4 4 4 4 4 1 # non-blocking [unix consensus] +syscon lock LOCK_UN 8 8 8 8 8 8 # unlock [unix consensus & faked NT] # waitpid() / wait4() options # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon waitpid WNOHANG 1 1 1 1 0 # unix consensus -syscon waitpid WUNTRACED 2 2 2 2 0 # unix consensus -syscon waitpid WCONTINUED 8 0x10 4 8 0 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon waitpid WNOHANG 1 1 1 1 1 0 # unix consensus +syscon waitpid WUNTRACED 2 2 2 2 2 0 # unix consensus +syscon waitpid WCONTINUED 8 0x10 4 8 16 0 # waitid() options # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon waitid WEXITED 4 4 0x10 0 0 -syscon waitid WSTOPPED 2 8 2 0 0 -syscon waitid WNOWAIT 0x01000000 0x20 8 0 0 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon waitid WEXITED 4 4 0x10 0 32 0 +syscon waitid WSTOPPED 2 8 2 0 2 0 +syscon waitid WNOWAIT 0x01000000 0x20 8 0 0x10000 0 # stat::st_mode constants # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon stat S_IFREG 0100000 0100000 0100000 0100000 0100000 -syscon stat S_IFBLK 0060000 0060000 0060000 0060000 0060000 -syscon stat S_IFCHR 0020000 0020000 0020000 0020000 0020000 -syscon stat S_IFDIR 0040000 0040000 0040000 0040000 0040000 -syscon stat S_IFIFO 0010000 0010000 0010000 0010000 0010000 -syscon stat S_IFMT 0170000 0170000 0170000 0170000 0170000 -syscon stat S_IFLNK 0120000 0120000 0120000 0120000 0120000 -syscon stat S_IFSOCK 0140000 0140000 0140000 0140000 0140000 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon stat S_IFREG 0100000 0100000 0100000 0100000 0100000 0100000 +syscon stat S_IFBLK 0060000 0060000 0060000 0060000 0060000 0060000 +syscon stat S_IFCHR 0020000 0020000 0020000 0020000 0020000 0020000 +syscon stat S_IFDIR 0040000 0040000 0040000 0040000 0040000 0040000 +syscon stat S_IFIFO 0010000 0010000 0010000 0010000 0010000 0010000 +syscon stat S_IFMT 0170000 0170000 0170000 0170000 0170000 0170000 +syscon stat S_IFLNK 0120000 0120000 0120000 0120000 0120000 0120000 +syscon stat S_IFSOCK 0140000 0140000 0140000 0140000 0140000 0140000 # chmod() permission flag constants # consider just typing the octal codes # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon stat S_ISVTX 01000 01000 01000 01000 01000 # unix consensus STICKY BIT -syscon stat S_ISGID 02000 02000 02000 02000 02000 # unix consensus a.k.a. setgid bit -syscon stat S_ISUID 04000 04000 04000 04000 04000 # unix consensus a.k.a. setuid bit +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon stat S_ISVTX 01000 01000 01000 01000 01000 01000 # unix consensus STICKY BIT +syscon stat S_ISGID 02000 02000 02000 02000 02000 02000 # unix consensus a.k.a. setgid bit +syscon stat S_ISUID 04000 04000 04000 04000 04000 04000 # unix consensus a.k.a. setuid bit -syscon stat S_IEXEC 00100 00100 00100 00100 00100 # unix consensus -syscon stat S_IWRITE 00200 00200 00200 00200 00200 # unix consensus -syscon stat S_IREAD 00400 00400 00400 00400 00400 # unix consensus +syscon stat S_IEXEC 00100 00100 00100 00100 00100 00100 # unix consensus +syscon stat S_IWRITE 00200 00200 00200 00200 00200 00200 # unix consensus +syscon stat S_IREAD 00400 00400 00400 00400 00400 00400 # unix consensus -syscon stat S_IXUSR 00100 00100 00100 00100 00100 # unix consensus -syscon stat S_IWUSR 00200 00200 00200 00200 00200 # unix consensus -syscon stat S_IRUSR 00400 00400 00400 00400 00400 # unix consensus -syscon stat S_IRWXU 00700 00700 00700 00700 00700 # unix consensus +syscon stat S_IXUSR 00100 00100 00100 00100 00100 00100 # unix consensus +syscon stat S_IWUSR 00200 00200 00200 00200 00200 00200 # unix consensus +syscon stat S_IRUSR 00400 00400 00400 00400 00400 00400 # unix consensus +syscon stat S_IRWXU 00700 00700 00700 00700 00700 00700 # unix consensus -syscon stat S_IXGRP 00010 00010 00010 00010 00010 # unix consensus -syscon stat S_IWGRP 00020 00020 00020 00020 00020 # unix consensus -syscon stat S_IRGRP 00040 00040 00040 00040 00040 # unix consensus -syscon stat S_IRWXG 00070 00070 00070 00070 00070 # unix consensus +syscon stat S_IXGRP 00010 00010 00010 00010 00010 00010 # unix consensus +syscon stat S_IWGRP 00020 00020 00020 00020 00020 00020 # unix consensus +syscon stat S_IRGRP 00040 00040 00040 00040 00040 00040 # unix consensus +syscon stat S_IRWXG 00070 00070 00070 00070 00070 00070 # unix consensus -syscon stat S_IXOTH 00001 00001 00001 00001 00001 # unix consensus -syscon stat S_IWOTH 00002 00002 00002 00002 00002 # unix consensus -syscon stat S_IROTH 00004 00004 00004 00004 00004 # unix consensus -syscon stat S_IRWXO 00007 00007 00007 00007 00007 # unix consensus +syscon stat S_IXOTH 00001 00001 00001 00001 00001 00001 # unix consensus +syscon stat S_IWOTH 00002 00002 00002 00002 00002 00002 # unix consensus +syscon stat S_IROTH 00004 00004 00004 00004 00004 00004 # unix consensus +syscon stat S_IRWXO 00007 00007 00007 00007 00007 00007 # unix consensus # fcntl() # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon fcntl2 F_DUPFD 0 0 0 0 0 # consensus +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon fcntl2 F_DUPFD 0 0 0 0 0 0 # consensus -syscon fcntl2 F_GETFD 1 1 1 1 1 # unix consensus & faked nt -syscon fcntl2 F_SETFD 2 2 2 2 2 # unix consensus & faked nt -syscon fcntl3 FD_CLOEXEC 1 1 1 1 1 # unix consensus & faked nt -syscon fcntl F_DUPFD_CLOEXEC 0x0406 67 17 10 0 +syscon fcntl2 F_GETFD 1 1 1 1 1 1 # unix consensus & faked nt +syscon fcntl2 F_SETFD 2 2 2 2 2 2 # unix consensus & faked nt +syscon fcntl3 FD_CLOEXEC 1 1 1 1 1 1 # unix consensus & faked nt +syscon fcntl F_DUPFD_CLOEXEC 0x0406 67 17 10 12 0 -syscon fcntl2 F_GETFL 3 3 3 3 3 # unix consensus & faked nt -syscon fcntl2 F_SETFL 4 4 4 4 4 # unix consensus & faked nt +syscon fcntl2 F_GETFL 3 3 3 3 3 3 # unix consensus & faked nt +syscon fcntl2 F_SETFL 4 4 4 4 4 4 # unix consensus & faked nt # fcntl3 O_NONBLOCK # fcntl3 O_APPEND # fcntl3 O_ASYNC # fcntl3 O_DIRECT # fcntl3 O_NOATIME -syscon fcntl2 F_SETOWN 8 6 6 6 0 # bsd consensus -syscon fcntl2 F_GETOWN 9 5 5 5 0 # bsd consensus +syscon fcntl2 F_SETOWN 8 6 6 6 6 0 # bsd consensus +syscon fcntl2 F_GETOWN 9 5 5 5 5 0 # bsd consensus -syscon fcntl F_ULOCK 0 0 0 0 0 # consensus -syscon fcntl F_RDLCK 0 1 1 1 0 # bsd consensus -syscon fcntl F_LOCK 1 1 1 1 0 # unix consensus -syscon fcntl F_WRLCK 1 3 3 3 0 # bsd consensus -syscon fcntl F_TLOCK 2 2 2 2 0 # unix consensus -syscon fcntl F_UNLCK 2 2 2 2 0 # unix consensus -syscon fcntl F_TEST 3 3 3 3 0 # unix consensus -syscon fcntl F_GETLK 5 7 11 7 0 -syscon fcntl F_SETLK 6 8 12 8 0 -syscon fcntl F_SETLKW 7 9 13 9 0 -syscon fcntl F_GETLK64 5 0 0 0 0 -syscon fcntl F_SETLK64 6 0 0 0 0 -syscon fcntl F_SETLKW64 7 0 0 0 0 -syscon fcntl F_SETSIG 10 0 0 0 0 -syscon fcntl F_GETSIG 11 0 0 0 0 -syscon fcntl F_SETOWN_EX 15 0 0 0 0 -syscon fcntl F_GETOWN_EX 0x10 0 0 0 0 -syscon fcntl F_OFD_GETLK 36 0 0 0 0 -syscon fcntl F_OFD_SETLK 37 0 0 0 0 -syscon fcntl F_OFD_SETLKW 38 0 0 0 0 -syscon fcntl F_SETLEASE 0x0400 0 0 0 0 -syscon fcntl F_GETLEASE 0x0401 0 0 0 0 -syscon fcntl F_NOTIFY 0x0402 0 0 0 0 -syscon fcntl F_SETPIPE_SZ 0x0407 0 0 0 0 -syscon fcntl F_GETPIPE_SZ 0x0408 0 0 0 0 +syscon fcntl F_ULOCK 0 0 0 0 0 0 # consensus +syscon fcntl F_RDLCK 0 1 1 1 1 0 # bsd consensus +syscon fcntl F_LOCK 1 1 1 1 1 0 # unix consensus +syscon fcntl F_WRLCK 1 3 3 3 3 0 # bsd consensus +syscon fcntl F_TLOCK 2 2 2 2 2 0 # unix consensus +syscon fcntl F_UNLCK 2 2 2 2 2 0 # unix consensus +syscon fcntl F_TEST 3 3 3 3 3 0 # unix consensus +syscon fcntl F_GETLK 5 7 11 7 7 0 +syscon fcntl F_SETLK 6 8 12 8 8 0 +syscon fcntl F_SETLKW 7 9 13 9 9 0 +syscon fcntl F_GETLK64 5 0 0 0 0 0 +syscon fcntl F_SETLK64 6 0 0 0 0 0 +syscon fcntl F_SETLKW64 7 0 0 0 0 0 +syscon fcntl F_SETSIG 10 0 0 0 0 0 +syscon fcntl F_GETSIG 11 0 0 0 0 0 +syscon fcntl F_SETOWN_EX 15 0 0 0 0 0 +syscon fcntl F_GETOWN_EX 0x10 0 0 0 0 0 +syscon fcntl F_OFD_GETLK 36 0 0 0 0 0 +syscon fcntl F_OFD_SETLK 37 0 0 0 0 0 +syscon fcntl F_OFD_SETLKW 38 0 0 0 0 0 +syscon fcntl F_SETLEASE 0x0400 0 0 0 0 0 +syscon fcntl F_GETLEASE 0x0401 0 0 0 0 0 +syscon fcntl F_NOTIFY 0x0402 0 0 0 0 0 +syscon fcntl F_SETPIPE_SZ 0x0407 0 0 0 0 0 +syscon fcntl F_GETPIPE_SZ 0x0408 0 0 0 0 0 # openat(), fstatat(), linkat(), etc. magnums # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon at AT_FDCWD -100 -2 -100 -100 -100 # faked nt -syscon at AT_SYMLINK_NOFOLLOW 0x0100 0x20 0x0200 2 0 # TODO(jart): What should NT do? -syscon at AT_REMOVEDIR 0x0200 0x80 0x0800 8 0x0200 # faked nt -syscon at AT_EACCESS 0x0200 0x10 0x0100 1 0 -syscon at AT_SYMLINK_FOLLOW 0x0400 0x40 0x0400 4 0 -syscon at AT_EMPTY_PATH 0x1000 0 0 0 0 # linux 2.6.39+; see unlink, O_TMPFILE, etc. +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon at AT_FDCWD -100 -2 -100 -100 -100 -100 # faked nt +syscon at AT_SYMLINK_FOLLOW 0x0400 0x40 0x0400 4 0x400 0 +syscon at AT_SYMLINK_NOFOLLOW 0x0100 0x20 0x0200 2 0x200 0 # TODO(jart): What should NT do? +syscon at AT_REMOVEDIR 0x0200 0x80 0x0800 8 0x800 0x0200 # faked nt +syscon at AT_EACCESS 0x0200 0x10 0x0100 1 0x100 0 +syscon at AT_SYMLINK_FOLLOW 0x0400 0x40 0x0400 4 4 0 +syscon at AT_EMPTY_PATH 0x1000 0 0 0 0 0 # linux 2.6.39+; see unlink, O_TMPFILE, etc. -syscon memfd MFD_CLOEXEC 1 0 0 0 0 -syscon memfd MFD_ALLOW_SEALING 2 0 0 0 0 +syscon memfd MFD_CLOEXEC 1 0 0 0 0 0 +syscon memfd MFD_ALLOW_SEALING 2 0 0 0 0 0 # utimensat() # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon utime UTIME_NOW 0x3fffffff 0x3fffffff -1 -2 0x3fffffff # polyfilled xnu/nt -syscon utime UTIME_OMIT 0x3ffffffe 0x3ffffffe -2 -1 0x3ffffffe # polyfilled xnu/nt +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon utime UTIME_NOW 0x3fffffff 0x3fffffff -1 -2 0x3fffffff -2 # polyfilled xnu/nt +syscon utime UTIME_OMIT 0x3ffffffe 0x3ffffffe -2 -1 0x3ffffffe -1 # polyfilled xnu/nt # getauxval() keys # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon auxv AT_EXECFD 2 0 2 0 0 # file descriptor of program -syscon auxv AT_PHDR 3 0 3 0 0 # address of program headers of executable -syscon auxv AT_PHENT 4 0 4 0 0 -syscon auxv AT_PHNUM 5 0 5 0 0 -syscon auxv AT_PAGESZ 6 0 6 0 0 -syscon auxv AT_BASE 7 0 7 0 0 # address of program interpreter -syscon auxv AT_ENTRY 9 0 9 0 0 # entry address of executable -syscon auxv AT_NOTELF 10 0 10 0 0 -syscon auxv AT_OSRELDATE 0 0 18 0 0 -syscon auxv AT_UID 11 0 0 0 0 -syscon auxv AT_EUID 12 0 0 0 0 -syscon auxv AT_GID 13 0 0 0 0 -syscon auxv AT_EGID 14 0 0 0 0 -syscon auxv AT_PLATFORM 15 0 0 0 0 # address of string with hardware platform for rpath interpretation [RHEL5.0 LIMIT] -syscon auxv AT_CLKTCK 17 0 0 0 0 -syscon auxv AT_DCACHEBSIZE 19 0 0 0 0 -syscon auxv AT_ICACHEBSIZE 20 0 0 0 0 -syscon auxv AT_UCACHEBSIZE 21 0 0 0 0 -syscon auxv AT_SECURE 23 0 0 0 0 -syscon auxv AT_BASE_PLATFORM 24 0 0 0 0 -syscon auxv AT_RANDOM 25 0 0 0 0 # address of sixteen bytes of random data -syscon auxv AT_EXECFN 31 31 999 999 999 # address of string containing first argument passed to execve() used when running program [faked on non-linux] -syscon auxv AT_SYSINFO_EHDR 33 0 0 0 0 -syscon auxv AT_NO_AUTOMOUNT 0x0800 0 0 0 0 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon auxv AT_EXECFD 2 0 2 0 2 0 # file descriptor of program +syscon auxv AT_PHDR 3 0 3 0 3 0 # address of program headers of executable +syscon auxv AT_PHENT 4 0 4 0 4 0 +syscon auxv AT_PHNUM 5 0 5 0 5 0 +syscon auxv AT_PAGESZ 6 0 6 0 6 0 +syscon auxv AT_BASE 7 0 7 0 7 0 # address of program interpreter +syscon auxv AT_ENTRY 9 0 9 0 9 0 # entry address of executable +syscon auxv AT_NOTELF 10 0 10 0 0 0 +syscon auxv AT_OSRELDATE 0 0 18 0 0 0 +syscon auxv AT_UID 11 0 0 0 2001 0 +syscon auxv AT_EUID 12 0 0 0 2000 0 +syscon auxv AT_GID 13 0 0 0 2003 0 +syscon auxv AT_EGID 14 0 0 0 2002 0 +syscon auxv AT_PLATFORM 15 0 0 0 0 0 # address of string with hardware platform for rpath interpretation [RHEL5.0 LIMIT] +syscon auxv AT_CLKTCK 17 0 0 0 0 0 +syscon auxv AT_DCACHEBSIZE 19 0 0 0 0 0 +syscon auxv AT_ICACHEBSIZE 20 0 0 0 0 0 +syscon auxv AT_UCACHEBSIZE 21 0 0 0 0 0 +syscon auxv AT_SECURE 23 0 0 0 0 0 +syscon auxv AT_BASE_PLATFORM 24 0 0 0 0 0 +syscon auxv AT_RANDOM 25 0 0 0 0 0 # address of sixteen bytes of random data +syscon auxv AT_EXECFN 31 31 999 999 2014 999 # address of string containing first argument passed to execve() used when running program [faked on non-linux] +syscon auxv AT_SYSINFO_EHDR 33 0 0 0 0 0 +syscon auxv AT_NO_AUTOMOUNT 0x0800 0 0 0 0 0 # ptrace() codes # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon ptrace PTRACE_TRACEME 0 0 0 0 -1 # unix consensus a.k.a. PT_TRACE_ME -syscon ptrace PTRACE_PEEKTEXT 1 1 1 1 -1 # unix consensus a.k.a. PT_READ_I -syscon ptrace PTRACE_PEEKDATA 2 2 2 2 -1 # unix consensus a.k.a. PT_READ_D -syscon ptrace PTRACE_PEEKUSER 3 3 -1 -1 -1 # a.k.a. PT_READ_U -syscon ptrace PTRACE_POKETEXT 4 4 4 4 -1 # unix consensus a.k.a. PT_WRITE_I -syscon ptrace PTRACE_POKEDATA 5 5 5 5 -1 # unix consensus a.k.a. PT_WRITE_D -syscon ptrace PTRACE_POKEUSER 6 6 -1 -1 -1 # a.k.a. PT_WRITE_U -syscon ptrace PTRACE_CONT 7 7 7 7 -1 # unix consensus a.k.a. PT_CONTINUE -syscon ptrace PTRACE_KILL 8 8 8 8 -1 # unix consensus a.k.a. PT_KILL -syscon ptrace PTRACE_SINGLESTEP 9 9 9 32 -1 # a.k.a. PT_STEP -syscon ptrace PTRACE_GETREGS 12 -1 33 33 -1 # a.k.a. PT_GETREGS -syscon ptrace PTRACE_SETREGS 13 -1 34 34 -1 # a.k.a. PT_SETREGS -syscon ptrace PTRACE_GETFPREGS 14 -1 35 35 -1 # a.k.a. PT_GETFPREGS -syscon ptrace PTRACE_SETFPREGS 15 -1 36 36 -1 # a.k.a. PT_SETFPREGS -syscon ptrace PTRACE_ATTACH 16 10 10 9 -1 # a.k.a. PT_ATTACH -syscon ptrace PTRACE_DETACH 17 11 11 10 -1 # a.k.a. PT_DETACH -syscon ptrace PTRACE_GETFPXREGS 18 -1 -1 -1 -1 # a.k.a. PT_GETFPXREGS -syscon ptrace PTRACE_SETFPXREGS 19 -1 -1 -1 -1 # a.k.a. PT_SETFPXREGS -syscon ptrace PTRACE_SYSCALL 24 -1 22 -1 -1 # a.k.a. PT_SYSCALL -syscon ptrace PTRACE_GETEVENTMSG 0x4201 -1 -1 -1 -1 -syscon ptrace PTRACE_GETSIGINFO 0x4202 -1 -1 -1 -1 -syscon ptrace PTRACE_SETOPTIONS 0x4200 -1 -1 -1 -1 -syscon ptrace PTRACE_SETSIGINFO 0x4203 -1 -1 -1 -1 -syscon ptrace PTRACE_GETREGSET 0x4204 -1 -1 -1 -1 -syscon ptrace PTRACE_GETSIGMASK 0x420a -1 -1 -1 -1 -syscon ptrace PTRACE_INTERRUPT 0x4207 -1 -1 -1 -1 -syscon ptrace PTRACE_LISTEN 0x4208 -1 -1 -1 -1 -syscon ptrace PTRACE_PEEKSIGINFO 0x4209 -1 -1 -1 -1 -syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c -1 -1 -1 -1 -syscon ptrace PTRACE_SEIZE 0x4206 -1 -1 -1 -1 -syscon ptrace PTRACE_SETREGSET 0x4205 -1 -1 -1 -1 -syscon ptrace PTRACE_SETSIGMASK 0x420b -1 -1 -1 -1 -syscon ptrace PTRACE_O_TRACESYSGOOD 0x0001 -1 -1 -1 -1 -syscon ptrace PTRACE_O_TRACEFORK 0x0002 -1 -1 -1 -1 -syscon ptrace PTRACE_O_TRACEVFORK 0x0004 -1 -1 -1 -1 -syscon ptrace PTRACE_O_TRACECLONE 0x0008 -1 -1 -1 -1 -syscon ptrace PTRACE_O_TRACEEXEC 0x0010 -1 -1 -1 -1 -syscon ptrace PTRACE_O_TRACEVFORKDONE 0x0020 -1 -1 -1 -1 -syscon ptrace PTRACE_O_TRACEEXIT 0x0040 -1 -1 -1 -1 -syscon ptrace PTRACE_O_MASK 0x007f -1 -1 -1 -1 -syscon ptrace PTRACE_EVENT_FORK 1 -1 -1 -1 -1 -syscon ptrace PTRACE_EVENT_VFORK 2 -1 -1 -1 -1 -syscon ptrace PTRACE_EVENT_CLONE 3 -1 -1 -1 -1 -syscon ptrace PTRACE_EVENT_EXEC 4 -1 -1 -1 -1 -syscon ptrace PTRACE_EVENT_VFORK_DONE 5 -1 -1 -1 -1 -syscon ptrace PTRACE_EVENT_EXIT 6 -1 -1 -1 -1 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon ptrace PTRACE_TRACEME 0 0 0 0 -1 -1 # unix consensus a.k.a. PT_TRACE_ME +syscon ptrace PTRACE_PEEKTEXT 1 1 1 1 -1 -1 # unix consensus a.k.a. PT_READ_I +syscon ptrace PTRACE_PEEKDATA 2 2 2 2 -1 -1 # unix consensus a.k.a. PT_READ_D +syscon ptrace PTRACE_PEEKUSER 3 3 -1 -1 -1 -1 # a.k.a. PT_READ_U +syscon ptrace PTRACE_POKETEXT 4 4 4 4 -1 -1 # unix consensus a.k.a. PT_WRITE_I +syscon ptrace PTRACE_POKEDATA 5 5 5 5 -1 -1 # unix consensus a.k.a. PT_WRITE_D +syscon ptrace PTRACE_POKEUSER 6 6 -1 -1 -1 -1 # a.k.a. PT_WRITE_U +syscon ptrace PTRACE_CONT 7 7 7 7 -1 -1 # unix consensus a.k.a. PT_CONTINUE +syscon ptrace PTRACE_KILL 8 8 8 8 -1 -1 # unix consensus a.k.a. PT_KILL +syscon ptrace PTRACE_SINGLESTEP 9 9 9 32 -1 -1 # a.k.a. PT_STEP +syscon ptrace PTRACE_GETREGS 12 -1 33 33 -1 -1 # a.k.a. PT_GETREGS +syscon ptrace PTRACE_SETREGS 13 -1 34 34 -1 -1 # a.k.a. PT_SETREGS +syscon ptrace PTRACE_GETFPREGS 14 -1 35 35 -1 -1 # a.k.a. PT_GETFPREGS +syscon ptrace PTRACE_SETFPREGS 15 -1 36 36 -1 -1 # a.k.a. PT_SETFPREGS +syscon ptrace PTRACE_ATTACH 16 10 10 9 -1 -1 # a.k.a. PT_ATTACH +syscon ptrace PTRACE_DETACH 17 11 11 10 -1 -1 # a.k.a. PT_DETACH +syscon ptrace PTRACE_GETFPXREGS 18 -1 -1 -1 -1 -1 # a.k.a. PT_GETFPXREGS +syscon ptrace PTRACE_SETFPXREGS 19 -1 -1 -1 -1 -1 # a.k.a. PT_SETFPXREGS +syscon ptrace PTRACE_SYSCALL 24 -1 22 -1 -1 -1 # a.k.a. PT_SYSCALL +syscon ptrace PTRACE_GETEVENTMSG 0x4201 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_GETSIGINFO 0x4202 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_SETOPTIONS 0x4200 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_SETSIGINFO 0x4203 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_GETREGSET 0x4204 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_GETSIGMASK 0x420a -1 -1 -1 -1 -1 +syscon ptrace PTRACE_INTERRUPT 0x4207 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_LISTEN 0x4208 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_PEEKSIGINFO 0x4209 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c -1 -1 -1 -1 -1 +syscon ptrace PTRACE_SEIZE 0x4206 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_SETREGSET 0x4205 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_SETSIGMASK 0x420b -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_TRACESYSGOOD 0x0001 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_TRACEFORK 0x0002 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_TRACEVFORK 0x0004 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_TRACECLONE 0x0008 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_TRACEEXEC 0x0010 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_TRACEVFORKDONE 0x0020 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_TRACEEXIT 0x0040 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_O_MASK 0x007f -1 -1 -1 -1 -1 +syscon ptrace PTRACE_EVENT_FORK 1 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_EVENT_VFORK 2 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_EVENT_CLONE 3 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_EVENT_EXEC 4 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_EVENT_VFORK_DONE 5 -1 -1 -1 -1 -1 +syscon ptrace PTRACE_EVENT_EXIT 6 -1 -1 -1 -1 -1 -syscon sigact SA_RESTORER 0x04000000 0 0 0 0 -syscon sigact SA_ONSTACK 0x08000000 1 1 1 0 # bsd consensus -syscon sigact SA_RESTART 0x10000000 2 2 2 0 # bsd consensus -syscon sigact SA_NOCLDSTOP 1 8 8 8 0 # bsd consensus -syscon sigact SA_NOCLDWAIT 2 0x20 0x20 0x20 0 # bsd consensus -syscon sigact SA_SIGINFO 4 0x40 0x40 0x40 0 # bsd consensus -syscon sigact SA_NODEFER 0x40000000 0x10 0x10 0x10 0 # bsd consensus -syscon sigact SA_NOMASK 0x40000000 0x10 0x10 0x10 0 # linux/obsolete -syscon sigact SA_RESETHAND 0x80000000 4 4 4 0 # bsd consensus -syscon sigact SA_ONESHOT 0x80000000 0 0 0 0 +# sigaction() codes +# +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon sigact SA_RESTORER 0x04000000 0 0 0 0 0 +syscon sigact SA_ONSTACK 0x08000000 1 1 1 1 0 # bsd consensus +syscon sigact SA_RESTART 0x10000000 2 2 2 2 0 # bsd consensus +syscon sigact SA_NOCLDSTOP 1 8 8 8 8 0 # bsd consensus +syscon sigact SA_NOCLDWAIT 2 0x20 0x20 0x20 0x20 0 # bsd consensus +syscon sigact SA_SIGINFO 4 0x40 0x40 0x40 0x40 0 # bsd consensus +syscon sigact SA_NODEFER 0x40000000 0x10 0x10 0x10 0x10 0 # bsd consensus +syscon sigact SA_NOMASK 0x40000000 0x10 0x10 0x10 0x10 0 # linux/obsolete +syscon sigact SA_RESETHAND 0x80000000 4 4 4 4 0 # bsd consensus +syscon sigact SA_ONESHOT 0x80000000 0 0 0 0 0 -syscon clock CLOCK_REALTIME 0 0 0 0 0 # consensus -syscon clock CLOCK_MONOTONIC 1 1 4 3 1 # XNU/NT faked -syscon clock CLOCK_PROCESS_CPUTIME_ID 2 -1 15 2 0 -syscon clock CLOCK_THREAD_CPUTIME_ID 3 -1 14 4 0 -syscon clock CLOCK_MONOTONIC_RAW 4 4 0x4000 0x4000 4 # XNU/NT/FreeBSD/OpenBSD faked, not available on RHEL5 -syscon clock CLOCK_REALTIME_COARSE 5 -1 0 0 0 # bsd consensus -syscon clock CLOCK_MONOTONIC_COARSE 6 -1 0 0 0 # bsd consensus -syscon clock CLOCK_BOOTTIME 7 -1 0 6 0 -syscon clock CLOCK_REALTIME_ALARM 8 -1 0 0 0 # bsd consensus -syscon clock CLOCK_BOOTTIME_ALARM 9 -1 0 0 0 # bsd consensus -syscon clock CLOCK_TAI 11 -1 0 0 0 # bsd consensus +syscon clock CLOCK_REALTIME 0 0 0 0 0 0 # consensus +syscon clock CLOCK_MONOTONIC 1 1 4 3 3 1 # XNU/NT faked +syscon clock CLOCK_PROCESS_CPUTIME_ID 2 -1 15 2 0x40000000 0 +syscon clock CLOCK_THREAD_CPUTIME_ID 3 -1 14 4 0x20000000 0 +syscon clock CLOCK_MONOTONIC_RAW 4 4 0x4000 0x4000 0x4000 4 # XNU/NT/FreeBSD/OpenBSD faked, not available on RHEL5 +syscon clock CLOCK_REALTIME_COARSE 5 -1 0 0 0 0 # bsd consensus +syscon clock CLOCK_MONOTONIC_COARSE 6 -1 0 0 0 0 # bsd consensus +syscon clock CLOCK_BOOTTIME 7 -1 0 6 6 0 +syscon clock CLOCK_REALTIME_ALARM 8 -1 0 0 0 0 # bsd consensus +syscon clock CLOCK_BOOTTIME_ALARM 9 -1 0 0 0 0 # bsd consensus +syscon clock CLOCK_TAI 11 -1 0 0 0 0 # bsd consensus # epoll # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon epoll EPOLL_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x80000 # O_CLOEXEC -syscon epoll EPOLL_CTL_ADD 1 1 1 1 1 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLL_CTL_DEL 2 2 2 2 2 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLL_CTL_MOD 3 3 3 3 3 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLIN 1 1 1 1 1 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLOUT 4 4 4 4 4 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLERR 8 8 8 8 8 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLPRI 2 2 2 2 2 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLHUP 0x10 0x10 0x10 0x10 0x10 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLRDNORM 0x40 0x40 0x40 0x40 0x40 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLRDBAND 0x80 0x80 0x80 0x80 0x80 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLWRNORM 0x0100 0x0100 0x0100 0x0100 0x0100 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLWRBAND 0x0200 0x0200 0x0200 0x0200 0x0200 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLMSG 0x0400 0x0400 0x0400 0x0400 0x0400 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLRDHUP 0x2000 0x2000 0x2000 0x2000 0x2000 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLEXCLUSIVE 0x10000000 0x10000000 0x10000000 0x10000000 0x10000000 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLWAKEUP 0x20000000 0x20000000 0x20000000 0x20000000 0x20000000 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLONESHOT 0x40000000 0x40000000 0x40000000 0x40000000 0x40000000 # forced consensus, linux only natively, polyfilled elsewhere -syscon epoll EPOLLET 0x80000000 0x80000000 0x80000000 0x80000000 0x80000000 # forced consensus, linux only natively, polyfilled elsewhere +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon epoll EPOLL_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x010000 0x80000 # O_CLOEXEC +syscon epoll EPOLL_CTL_ADD 1 1 1 1 1 1 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLL_CTL_DEL 2 2 2 2 2 2 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLL_CTL_MOD 3 3 3 3 3 3 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLIN 1 1 1 1 1 1 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLOUT 4 4 4 4 4 4 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLERR 8 8 8 8 8 8 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLPRI 2 2 2 2 2 2 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLHUP 0x10 0x10 0x10 0x10 0x10 0x10 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLRDNORM 0x40 0x40 0x40 0x40 0x40 0x40 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLRDBAND 0x80 0x80 0x80 0x80 0x80 0x80 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLWRNORM 0x0100 0x0100 0x0100 0x0100 0x0100 0x0100 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLWRBAND 0x0200 0x0200 0x0200 0x0200 0x0200 0x0200 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLMSG 0x0400 0x0400 0x0400 0x0400 0x0400 0x0400 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLRDHUP 0x2000 0x2000 0x2000 0x2000 0x2000 0x2000 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLEXCLUSIVE 0x10000000 0x10000000 0x10000000 0x10000000 0x10000000 0x10000000 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLWAKEUP 0x20000000 0x20000000 0x20000000 0x20000000 0x20000000 0x20000000 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLONESHOT 0x40000000 0x40000000 0x40000000 0x40000000 0x40000000 0x40000000 # forced consensus, linux only natively, polyfilled elsewhere +syscon epoll EPOLLET 0x80000000 0x80000000 0x80000000 0x80000000 0x80000000 0x80000000 # forced consensus, linux only natively, polyfilled elsewhere # {set,get}sockopt(fd, level=SOL_SOCKET, X, ...) # # * 0 we define as EINVAL # * -1 we define as no-op # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon so SO_REUSEPORT 15 0x0200 0x0200 0x0200 4 # bsd consensus (NT calls it SO_REUSEADDR) -syscon so SO_REUSEADDR 2 4 4 4 -1 # bsd consensus (default behavior on NT) -syscon so SO_KEEPALIVE 9 8 8 8 8 # bsd consensus -syscon so SO_DONTROUTE 5 0x10 0x10 0x10 0x10 # bsd consensus -syscon so SO_BROADCAST 6 0x20 0x20 0x20 0x20 # bsd consensus -syscon so SO_LINGER 13 0x80 0x80 0x80 0x80 # bsd consensus -syscon so SO_DEBUG 1 1 1 1 1 # consensus -syscon so SO_ACCEPTCONN 30 2 2 2 2 # bsd consensus -syscon so SO_ERROR 4 0x1007 0x1007 0x1007 0x1007 # bsd consensus -syscon so SO_OOBINLINE 10 0x0100 0x0100 0x0100 0x0100 # bsd consensus -syscon so SO_SNDBUF 7 0x1001 0x1001 0x1001 0x1001 # bsd consensus -syscon so SO_RCVBUF 8 0x1002 0x1002 0x1002 0x1002 # bsd consensus -syscon so SO_RCVLOWAT 18 0x1004 0x1004 0x1004 0x1004 # bsd consensus -syscon so SO_RCVTIMEO 20 0x1006 0x1006 0x1006 0x1006 # bsd consensus -syscon so SO_EXCLUSIVEADDRUSE -1 -1 -1 -1 0xfffffffb # hoo boy -syscon so SO_SNDLOWAT 19 0x1003 0x1003 0x1003 0x1003 # bsd consensus -syscon so SO_SNDTIMEO 21 0x1005 0x1005 0x1005 0x1005 # bsd consensus -syscon so SO_TYPE 3 0x1008 0x1008 0x1008 0x1008 # bsd consensus -syscon so SO_TIMESTAMP 29 0x0400 0x0400 0x0800 0 -syscon so SO_DOMAIN 39 0 0x1019 0 0 -syscon so SO_MAX_PACING_RATE 47 0 0x1018 0 0 -syscon so SO_PEERCRED 17 0 0 0x1022 0 -syscon so SO_PROTOCOL 38 0 0x1016 0 0 -syscon so SO_ATTACH_BPF 50 0 0 0 0 -syscon so SO_ATTACH_FILTER 26 0 0 0 0 -syscon so SO_ATTACH_REUSEPORT_CBPF 51 0 0 0 0 -syscon so SO_ATTACH_REUSEPORT_EBPF 52 0 0 0 0 -syscon so SO_BINDTODEVICE 25 0 0 0 0 -syscon so SO_BPF_EXTENSIONS 48 0 0 0 0 -syscon so SO_BSDCOMPAT 14 0 0 0 0 -syscon so SO_BUSY_POLL 46 0 0 0 0 -syscon so SO_CNX_ADVICE 53 0 0 0 0 -syscon so SO_DETACH_BPF 27 0 0 0 0 -syscon so SO_DETACH_FILTER 27 0 0 0 0 -syscon so SO_GET_FILTER 26 0 0 0 0 -syscon so SO_INCOMING_CPU 49 0 0 0 0 -syscon so SO_LOCK_FILTER 44 0 0 0 0 -syscon so SO_MARK 36 0 0 0 0 -syscon so SO_NOFCS 43 0 0 0 0 -syscon so SO_NO_CHECK 11 0 0 0 0 -syscon so SO_PASSCRED 0x10 0 0 0 0 -syscon so SO_PASSSEC 34 0 0 0 0 -syscon so SO_PEEK_OFF 42 0 0 0 0 -syscon so SO_PEERNAME 28 0 0 0 0 -syscon so SO_PEERSEC 31 0 0 0 0 -syscon so SO_PRIORITY 12 0 0 0 0 -syscon so SO_RCVBUFFORCE 33 0 0 0 0 -syscon so SO_RXQ_OVFL 40 0 0 0 0 -syscon so SO_SECURITY_AUTHENTICATION 22 0 0 0 0 -syscon so SO_SECURITY_ENCRYPTION_NETWORK 24 0 0 0 0 -syscon so SO_SECURITY_ENCRYPTION_TRANSPORT 23 0 0 0 0 -syscon so SO_SELECT_ERR_QUEUE 45 0 0 0 0 -syscon so SO_SNDBUFFORCE 0x20 0 0 0 0 -syscon so SO_TIMESTAMPING 37 0 0 0 0 -syscon so SO_TIMESTAMPNS 35 0 0 0 0 -syscon so SO_WIFI_STATUS 41 0 0 0 0 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon so SO_REUSEPORT 15 0x0200 0x0200 0x0200 0x0200 4 # bsd consensus (NT calls it SO_REUSEADDR) +syscon so SO_REUSEADDR 2 4 4 4 4 -1 # bsd consensus (default behavior on NT) +syscon so SO_KEEPALIVE 9 8 8 8 8 8 # bsd consensus +syscon so SO_DONTROUTE 5 0x10 0x10 0x10 0x10 0x10 # bsd consensus +syscon so SO_BROADCAST 6 0x20 0x20 0x20 0x20 0x20 # bsd consensus +syscon so SO_LINGER 13 0x80 0x80 0x80 0x80 0x80 # bsd consensus +syscon so SO_DEBUG 1 1 1 1 1 1 # consensus +syscon so SO_ACCEPTCONN 30 2 2 2 2 2 # bsd consensus +syscon so SO_ERROR 4 0x1007 0x1007 0x1007 0x1007 0x1007 # bsd consensus +syscon so SO_OOBINLINE 10 0x0100 0x0100 0x0100 0x0100 0x0100 # bsd consensus +syscon so SO_SNDBUF 7 0x1001 0x1001 0x1001 0x1001 0x1001 # bsd consensus +syscon so SO_RCVBUF 8 0x1002 0x1002 0x1002 0x1002 0x1002 # bsd consensus +syscon so SO_RCVLOWAT 18 0x1004 0x1004 0x1004 0x1004 0x1004 # bsd consensus +syscon so SO_RCVTIMEO 20 0x1006 0x1006 0x1006 0x100c 0x1006 # bsd consensus +syscon so SO_EXCLUSIVEADDRUSE -1 -1 -1 -1 -1 0xfffffffb # hoo boy +syscon so SO_SNDLOWAT 19 0x1003 0x1003 0x1003 0x1003 0x1003 # bsd consensus +syscon so SO_SNDTIMEO 21 0x1005 0x1005 0x1005 0x100b 0x1005 # bsd consensus +syscon so SO_TYPE 3 0x1008 0x1008 0x1008 0x1008 0x1008 # bsd consensus +syscon so SO_TIMESTAMP 29 0x0400 0x0400 0x0800 0x2000 0 +syscon so SO_DOMAIN 39 0 0x1019 0 0 0 +syscon so SO_MAX_PACING_RATE 47 0 0x1018 0 0 0 +syscon so SO_PEERCRED 17 0 0 0x1022 0x1022 0 +syscon so SO_PROTOCOL 38 0 0x1016 0 0 0 +syscon so SO_ATTACH_BPF 50 0 0 0 0 0 +syscon so SO_ATTACH_FILTER 26 0 0 0 0 0 +syscon so SO_ATTACH_REUSEPORT_CBPF 51 0 0 0 0 0 +syscon so SO_ATTACH_REUSEPORT_EBPF 52 0 0 0 0 0 +syscon so SO_BINDTODEVICE 25 0 0 0 0 0 +syscon so SO_BPF_EXTENSIONS 48 0 0 0 0 0 +syscon so SO_BSDCOMPAT 14 0 0 0 0 0 +syscon so SO_BUSY_POLL 46 0 0 0 0 0 +syscon so SO_CNX_ADVICE 53 0 0 0 0 0 +syscon so SO_DETACH_BPF 27 0 0 0 0 0 +syscon so SO_DETACH_FILTER 27 0 0 0 0 0 +syscon so SO_GET_FILTER 26 0 0 0 0 0 +syscon so SO_INCOMING_CPU 49 0 0 0 0 0 +syscon so SO_LOCK_FILTER 44 0 0 0 0 0 +syscon so SO_MARK 36 0 0 0 0 0 +syscon so SO_NOFCS 43 0 0 0 0 0 +syscon so SO_NO_CHECK 11 0 0 0 0 0 +syscon so SO_PASSCRED 0x10 0 0 0 0 0 +syscon so SO_PASSSEC 34 0 0 0 0 0 +syscon so SO_PEEK_OFF 42 0 0 0 0 0 +syscon so SO_PEERNAME 28 0 0 0 0 0 +syscon so SO_PEERSEC 31 0 0 0 0 0 +syscon so SO_PRIORITY 12 0 0 0 0 0 +syscon so SO_RCVBUFFORCE 33 0 0 0 0 0 +syscon so SO_RXQ_OVFL 40 0 0 0 0 0 +syscon so SO_SECURITY_AUTHENTICATION 22 0 0 0 0 0 +syscon so SO_SECURITY_ENCRYPTION_NETWORK 24 0 0 0 0 0 +syscon so SO_SECURITY_ENCRYPTION_TRANSPORT 23 0 0 0 0 0 +syscon so SO_SELECT_ERR_QUEUE 45 0 0 0 0 0 +syscon so SO_SNDBUFFORCE 0x20 0 0 0 0 0 +syscon so SO_TIMESTAMPING 37 0 0 0 0 0 +syscon so SO_TIMESTAMPNS 35 0 0 0 0 0 +syscon so SO_WIFI_STATUS 41 0 0 0 0 0 -syscon sol SOL_IP 0 0 0 0 0 # consensus -syscon sol SOL_SOCKET 1 0xffff 0xffff 0xffff 0xffff # bsd+nt consensus (todo: what's up with ipproto_icmp overlap) -syscon sol SOL_TCP 6 6 6 6 6 # consensus -syscon sol SOL_UDP 17 17 17 17 17 # consensus -syscon sol SOL_IPV6 41 41 41 41 41 -syscon sol SOL_ICMPV6 58 58 58 58 0 -syscon sol SOL_AAL 265 0 0 0 0 -syscon sol SOL_ALG 279 0 0 0 0 -syscon sol SOL_ATM 264 0 0 0 0 -syscon sol SOL_BLUETOOTH 274 0 0 0 0 -syscon sol SOL_CAIF 278 0 0 0 0 -syscon sol SOL_DCCP 269 0 0 0 0 -syscon sol SOL_DECNET 261 0 0 0 0 -syscon sol SOL_IRDA 266 0 0 0 0 -syscon sol SOL_IUCV 277 0 0 0 0 -syscon sol SOL_KCM 281 0 0 0 0 -syscon sol SOL_LLC 268 0 0 0 0 -syscon sol SOL_NETBEUI 267 0 0 0 0 -syscon sol SOL_NETLINK 270 0 0 0 0 -syscon sol SOL_NFC 280 0 0 0 0 -syscon sol SOL_PACKET 263 0 0 0 0 -syscon sol SOL_PNPIPE 275 0 0 0 0 -syscon sol SOL_PPPOL2TP 273 0 0 0 0 -syscon sol SOL_RAW 255 0 0 0 0 -syscon sol SOL_RDS 276 0 0 0 0 -syscon sol SOL_RXRPC 272 0 0 0 0 -syscon sol SOL_TIPC 271 0 0 0 0 -syscon sol SOL_X25 262 0 0 0 0 +syscon sol SOL_IP 0 0 0 0 0 0 # consensus +syscon sol SOL_SOCKET 1 0xffff 0xffff 0xffff 0xffff 0xffff # bsd+nt consensus (todo: what's up with ipproto_icmp overlap) +syscon sol SOL_TCP 6 6 6 6 6 6 # consensus +syscon sol SOL_UDP 17 17 17 17 17 17 # consensus +syscon sol SOL_IPV6 41 41 41 41 41 41 +syscon sol SOL_ICMPV6 58 58 58 58 58 0 +syscon sol SOL_AAL 265 0 0 0 0 0 +syscon sol SOL_ALG 279 0 0 0 0 0 +syscon sol SOL_ATM 264 0 0 0 0 0 +syscon sol SOL_BLUETOOTH 274 0 0 0 0 0 +syscon sol SOL_CAIF 278 0 0 0 0 0 +syscon sol SOL_DCCP 269 0 0 0 0 0 +syscon sol SOL_DECNET 261 0 0 0 0 0 +syscon sol SOL_IRDA 266 0 0 0 0 0 +syscon sol SOL_IUCV 277 0 0 0 0 0 +syscon sol SOL_KCM 281 0 0 0 0 0 +syscon sol SOL_LLC 268 0 0 0 0 0 +syscon sol SOL_NETBEUI 267 0 0 0 0 0 +syscon sol SOL_NETLINK 270 0 0 0 0 0 +syscon sol SOL_NFC 280 0 0 0 0 0 +syscon sol SOL_PACKET 263 0 0 0 0 0 +syscon sol SOL_PNPIPE 275 0 0 0 0 0 +syscon sol SOL_PPPOL2TP 273 0 0 0 0 0 +syscon sol SOL_RAW 255 0 0 0 0 0 +syscon sol SOL_RDS 276 0 0 0 0 0 +syscon sol SOL_RXRPC 272 0 0 0 0 0 +syscon sol SOL_TIPC 271 0 0 0 0 0 +syscon sol SOL_X25 262 0 0 0 0 0 # {set,get}sockopt(fd, level=IPPROTO_TCP, X, ...) # » most elite of all tuning groups @@ -662,723 +665,723 @@ syscon sol SOL_X25 262 0 0 0 0 # @see https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt # @see https://www.iana.org/assignments/tcp-parameters/tcp-parameters.txt # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon tcp TCP_NODELAY 1 1 1 1 1 # strong consensus for disabling nagle's algorithm -syscon tcp TCP_MAXSEG 2 2 2 2 0 # reduces tcp segment size; see also tcp offloading -syscon tcp TCP_FASTOPEN 23 261 0x0401 0 15 # reduces roundtrips; for listener; Linux 3.7+ (c. 2012) / or is windows it 0x22? /proc/sys/net/ipv4/tcp_fastopen TODO(jart): MSG_FASTOPEN -syscon tcp TCP_KEEPIDLE 4 0 0x100 0 0 # keepalives -syscon tcp TCP_KEEPINTVL 5 0x101 0x200 0 0 # keepalives -syscon tcp TCP_KEEPCNT 6 0x102 0x400 0 0 # keepalives -syscon tcp TCP_SYNCNT 7 0 0 0 0 # how hard to syn packet the enemy -syscon tcp TCP_COOKIE_TRANSACTIONS 15 0 0 0 0 # defense against the syn packets -syscon tcp TCP_LINGER2 8 0 0 0 0 # orphaned fin-wait-2 lifetime cf. net.ipv4.tcp_fin_timeout see cloudflare blog -syscon tcp TCP_CORK 3 0 0 0 0 # linux tries to automate iovec -syscon tcp TCP_NOTSENT_LOWAT 25 513 0 0 0 # limit unset byte queue -syscon tcp TCP_INFO 11 0 0x20 0 0 # get connection info -syscon tcp TCP_CC_INFO 26 0 0 0 0 # get congestion control info -syscon tcp TCP_CONGESTION 13 0 0x40 0 0 # set traffic control -syscon tcp TCP_MD5SIG 14 0 0x10 4 0 # what is it (rfc2385) -syscon tcp TCP_MD5SIG_MAXKEYLEN 80 0 0 0 0 # what is it -syscon tcp TCP_TIMESTAMP 24 0 0 0 0 # what is it -syscon tcp TCP_USER_TIMEOUT 18 0 0 0 0 # what is it -syscon tcp TCP_QUICKACK 12 0 0 0 0 # what is it -syscon tcp TCP_SAVE_SYN 27 0 0 0 0 # record syn packets -syscon tcp TCP_SAVED_SYN 28 0 0 0 0 # get recorded syn packets -syscon tcp TCP_THIN_DUPACK 17 0 0 0 0 # what is it -syscon tcp TCP_QUEUE_SEQ 21 0 0 0 0 # what is it -syscon tcp TCP_WINDOW_CLAMP 10 0 0 0 0 # what is it -syscon tcp TCP_DEFER_ACCEPT 9 0 0 0 0 # what is it -syscon tcp TCP_REPAIR 19 0 0 0 0 # what is it -syscon tcp TCP_REPAIR_OPTIONS 22 0 0 0 0 # what is it -syscon tcp TCP_REPAIR_QUEUE 20 0 0 0 0 # what is it -syscon tcp TCP_THIN_LINEAR_TIMEOUTS 16 0 0 0 0 # what is it +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon tcp TCP_NODELAY 1 1 1 1 1 1 # strong consensus for disabling nagle's algorithm +syscon tcp TCP_MAXSEG 2 2 2 2 2 0 # reduces tcp segment size; see also tcp offloading +syscon tcp TCP_FASTOPEN 23 261 0x0401 0 0 15 # reduces roundtrips; for listener; Linux 3.7+ (c. 2012) / or is windows it 0x22? /proc/sys/net/ipv4/tcp_fastopen TODO(jart): MSG_FASTOPEN +syscon tcp TCP_KEEPIDLE 4 0 0x100 0 0 0 # keepalives +syscon tcp TCP_KEEPINTVL 5 0x101 0x200 0 0 0 # keepalives +syscon tcp TCP_KEEPCNT 6 0x102 0x400 0 0 0 # keepalives +syscon tcp TCP_SYNCNT 7 0 0 0 0 0 # how hard to syn packet the enemy +syscon tcp TCP_COOKIE_TRANSACTIONS 15 0 0 0 0 0 # defense against the syn packets +syscon tcp TCP_LINGER2 8 0 0 0 0 0 # orphaned fin-wait-2 lifetime cf. net.ipv4.tcp_fin_timeout see cloudflare blog +syscon tcp TCP_CORK 3 0 0 0 0 0 # linux tries to automate iovec +syscon tcp TCP_NOTSENT_LOWAT 25 513 0 0 0 0 # limit unset byte queue +syscon tcp TCP_INFO 11 0 0x20 0 0 0 # get connection info +syscon tcp TCP_CC_INFO 26 0 0 0 0 0 # get congestion control info +syscon tcp TCP_CONGESTION 13 0 0x40 0 0 0 # set traffic control +syscon tcp TCP_MD5SIG 14 0 0x10 4 4 0 # what is it (rfc2385) +syscon tcp TCP_MD5SIG_MAXKEYLEN 80 0 0 0 0 0 # what is it +syscon tcp TCP_TIMESTAMP 24 0 0 0 0 0 # what is it +syscon tcp TCP_USER_TIMEOUT 18 0 0 0 0 0 # what is it +syscon tcp TCP_QUICKACK 12 0 0 0 0 0 # what is it +syscon tcp TCP_SAVE_SYN 27 0 0 0 0 0 # record syn packets +syscon tcp TCP_SAVED_SYN 28 0 0 0 0 0 # get recorded syn packets +syscon tcp TCP_THIN_DUPACK 17 0 0 0 0 0 # what is it +syscon tcp TCP_QUEUE_SEQ 21 0 0 0 0 0 # what is it +syscon tcp TCP_WINDOW_CLAMP 10 0 0 0 0 0 # what is it +syscon tcp TCP_DEFER_ACCEPT 9 0 0 0 0 0 # what is it +syscon tcp TCP_REPAIR 19 0 0 0 0 0 # what is it +syscon tcp TCP_REPAIR_OPTIONS 22 0 0 0 0 0 # what is it +syscon tcp TCP_REPAIR_QUEUE 20 0 0 0 0 0 # what is it +syscon tcp TCP_THIN_LINEAR_TIMEOUTS 16 0 0 0 0 0 # what is it -syscon iproto IPPROTO_IP 0 0 0 0 0 # consensus -syscon iproto IPPROTO_ICMP 1 1 1 1 1 # consensus -syscon iproto IPPROTO_TCP 6 6 6 6 6 # consensus -syscon iproto IPPROTO_UDP 17 17 17 17 17 # consensus -syscon iproto IPPROTO_RAW 255 255 255 255 255 # consensus -syscon iproto IPPROTO_HOPOPTS 0 0 0 0 0 # consensus -syscon iproto IPPROTO_IDP 22 22 22 22 22 # consensus -syscon iproto IPPROTO_IGMP 2 2 2 2 2 # consensus -syscon iproto IPPROTO_PUP 12 12 12 12 12 # consensus -syscon iproto IPPROTO_AH 51 51 51 51 0 # unix consensus -syscon iproto IPPROTO_DSTOPTS 60 60 60 60 0 # unix consensus -syscon iproto IPPROTO_EGP 8 8 8 8 0 # unix consensus -syscon iproto IPPROTO_ENCAP 98 98 98 98 0 # unix consensus -syscon iproto IPPROTO_ESP 50 50 50 50 0 # unix consensus -syscon iproto IPPROTO_FRAGMENT 44 44 44 44 0 # unix consensus -syscon iproto IPPROTO_GRE 47 47 47 47 0 # unix consensus -syscon iproto IPPROTO_ICMPV6 58 58 58 58 0 # unix consensus -syscon iproto IPPROTO_IPIP 4 4 4 4 0 # unix consensus -syscon iproto IPPROTO_IPV6 41 41 41 41 0 # unix consensus -syscon iproto IPPROTO_NONE 59 59 59 59 0 # unix consensus -syscon iproto IPPROTO_PIM 103 103 103 103 0 # unix consensus -syscon iproto IPPROTO_ROUTING 43 43 43 43 0 # unix consensus -syscon iproto IPPROTO_RSVP 46 46 46 46 0 # unix consensus -syscon iproto IPPROTO_TP 29 29 29 29 0 # unix consensus -syscon iproto IPPROTO_MPLS 137 0 137 137 0 -syscon iproto IPPROTO_MTP 92 92 92 0 0 -syscon iproto IPPROTO_SCTP 132 132 132 0 0 -syscon iproto IPPROTO_MH 135 0 135 0 0 -syscon iproto IPPROTO_UDPLITE 136 0 136 0 0 -syscon iproto IPPROTO_BEETPH 94 0 0 0 0 -syscon iproto IPPROTO_COMP 108 0 0 0 0 -syscon iproto IPPROTO_DCCP 33 0 0 0 0 +syscon iproto IPPROTO_IP 0 0 0 0 0 0 # consensus +syscon iproto IPPROTO_ICMP 1 1 1 1 1 1 # consensus +syscon iproto IPPROTO_TCP 6 6 6 6 6 6 # consensus +syscon iproto IPPROTO_UDP 17 17 17 17 17 17 # consensus +syscon iproto IPPROTO_RAW 255 255 255 255 255 255 # consensus +syscon iproto IPPROTO_HOPOPTS 0 0 0 0 0 0 # consensus +syscon iproto IPPROTO_IDP 22 22 22 22 22 22 # consensus +syscon iproto IPPROTO_IGMP 2 2 2 2 2 2 # consensus +syscon iproto IPPROTO_PUP 12 12 12 12 12 12 # consensus +syscon iproto IPPROTO_AH 51 51 51 51 51 0 # unix consensus +syscon iproto IPPROTO_DSTOPTS 60 60 60 60 60 0 # unix consensus +syscon iproto IPPROTO_EGP 8 8 8 8 8 0 # unix consensus +syscon iproto IPPROTO_ENCAP 98 98 98 98 98 0 # unix consensus +syscon iproto IPPROTO_ESP 50 50 50 50 50 0 # unix consensus +syscon iproto IPPROTO_FRAGMENT 44 44 44 44 44 0 # unix consensus +syscon iproto IPPROTO_GRE 47 47 47 47 47 0 # unix consensus +syscon iproto IPPROTO_ICMPV6 58 58 58 58 58 0 # unix consensus +syscon iproto IPPROTO_IPIP 4 4 4 4 4 0 # unix consensus +syscon iproto IPPROTO_IPV6 41 41 41 41 41 0 # unix consensus +syscon iproto IPPROTO_NONE 59 59 59 59 59 0 # unix consensus +syscon iproto IPPROTO_PIM 103 103 103 103 103 0 # unix consensus +syscon iproto IPPROTO_ROUTING 43 43 43 43 43 0 # unix consensus +syscon iproto IPPROTO_RSVP 46 46 46 46 46 0 # unix consensus +syscon iproto IPPROTO_TP 29 29 29 29 29 0 # unix consensus +syscon iproto IPPROTO_MPLS 137 0 137 137 137 0 +syscon iproto IPPROTO_MTP 92 92 92 0 0 0 +syscon iproto IPPROTO_SCTP 132 132 132 0 0 0 +syscon iproto IPPROTO_MH 135 0 135 0 0 0 +syscon iproto IPPROTO_UDPLITE 136 0 136 0 0 0 +syscon iproto IPPROTO_BEETPH 94 0 0 0 0 0 +syscon iproto IPPROTO_COMP 108 0 0 0 0 0 +syscon iproto IPPROTO_DCCP 33 0 0 0 0 0 -syscon misc EXTA 14 0x4b00 0x4b00 0x4b00 0 # bsd consensus -syscon misc EXTB 15 0x9600 0x9600 0x9600 0 # bsd consensus -syscon misc ERA 0x02002c 45 45 0 0 -syscon misc EMPTY 0 0 0 0 0 # consensus +syscon misc EXTA 14 0x4b00 0x4b00 0x4b00 0x4b00 0 # bsd consensus +syscon misc EXTB 15 0x9600 0x9600 0x9600 0x9600 0 # bsd consensus +syscon misc ERA 0x02002c 45 45 0 0 0 +syscon misc EMPTY 0 0 0 0 0 0 # consensus -syscon pr PR_SET_PTRACER_ANY -1 0 0 0 0 -syscon pr PR_ENDIAN_BIG 0 0 0 0 0 # consensus -syscon pr PR_FP_EXC_DISABLED 0 0 0 0 0 # consensus -syscon pr PR_MCE_KILL_CLEAR 0 0 0 0 0 # consensus -syscon pr PR_MCE_KILL_LATE 0 0 0 0 0 # consensus -syscon pr PR_SPEC_NOT_AFFECTED 0 0 0 0 0 # consensus -syscon pr PR_SPEC_STORE_BYPASS 0 0 0 0 0 # consensus -syscon pr PR_TIMING_STATISTICAL 0 0 0 0 0 # consensus -syscon pr PR_CAP_AMBIENT_IS_SET 1 0 0 0 0 -syscon pr PR_ENDIAN_LITTLE 1 0 0 0 0 -syscon pr PR_FPEMU_NOPRINT 1 0 0 0 0 -syscon pr PR_FP_EXC_NONRECOV 1 0 0 0 0 -syscon pr PR_FP_MODE_FR 1 0 0 0 0 -syscon pr PR_MCE_KILL_EARLY 1 0 0 0 0 -syscon pr PR_MCE_KILL_SET 1 0 0 0 0 -syscon pr PR_SET_MM_START_CODE 1 0 0 0 0 -syscon pr PR_SET_PDEATHSIG 1 0 0 0 0 -syscon pr PR_SPEC_PRCTL 1 0 0 0 0 -syscon pr PR_TIMING_TIMESTAMP 1 0 0 0 0 -syscon pr PR_TSC_ENABLE 1 0 0 0 0 -syscon pr PR_UNALIGN_NOPRINT 1 0 0 0 0 -syscon pr PR_CAP_AMBIENT_RAISE 2 0 0 0 0 -syscon pr PR_ENDIAN_PPC_LITTLE 2 0 0 0 0 -syscon pr PR_FPEMU_SIGFPE 2 0 0 0 0 -syscon pr PR_FP_EXC_ASYNC 2 0 0 0 0 -syscon pr PR_FP_MODE_FRE 2 0 0 0 0 -syscon pr PR_GET_PDEATHSIG 2 0 0 0 0 -syscon pr PR_MCE_KILL_DEFAULT 2 0 0 0 0 -syscon pr PR_SET_MM_END_CODE 2 0 0 0 0 -syscon pr PR_SPEC_ENABLE 2 0 0 0 0 -syscon pr PR_TSC_SIGSEGV 2 0 0 0 0 -syscon pr PR_UNALIGN_SIGBUS 2 0 0 0 0 -syscon pr PR_CAP_AMBIENT_LOWER 3 0 0 0 0 -syscon pr PR_FP_EXC_PRECISE 3 0 0 0 0 -syscon pr PR_GET_DUMPABLE 3 0 0 0 0 -syscon pr PR_SET_MM_START_DATA 3 0 0 0 0 -syscon pr PR_CAP_AMBIENT_CLEAR_ALL 4 0 0 0 0 -syscon pr PR_SET_DUMPABLE 4 0 0 0 0 -syscon pr PR_SET_MM_END_DATA 4 0 0 0 0 -syscon pr PR_SPEC_DISABLE 4 0 0 0 0 -syscon pr PR_GET_UNALIGN 5 0 0 0 0 -syscon pr PR_SET_MM_START_STACK 5 0 0 0 0 -syscon pr PR_SET_MM_START_BRK 6 0 0 0 0 -syscon pr PR_SET_UNALIGN 6 0 0 0 0 -syscon pr PR_GET_KEEPCAPS 7 0 0 0 0 -syscon pr PR_SET_MM_BRK 7 0 0 0 0 -syscon pr PR_SET_KEEPCAPS 8 0 0 0 0 -syscon pr PR_SET_MM_ARG_START 8 0 0 0 0 -syscon pr PR_SPEC_FORCE_DISABLE 8 0 0 0 0 -syscon pr PR_GET_FPEMU 9 0 0 0 0 -syscon pr PR_SET_MM_ARG_END 9 0 0 0 0 -syscon pr PR_SET_FPEMU 10 0 0 0 0 -syscon pr PR_SET_MM_ENV_START 10 0 0 0 0 -syscon pr PR_GET_FPEXC 11 0 0 0 0 -syscon pr PR_SET_MM_ENV_END 11 0 0 0 0 -syscon pr PR_SET_FPEXC 12 0 0 0 0 -syscon pr PR_SET_MM_AUXV 12 0 0 0 0 -syscon pr PR_GET_TIMING 13 0 0 0 0 -syscon pr PR_SET_MM_EXE_FILE 13 0 0 0 0 -syscon pr PR_SET_MM_MAP 14 0 0 0 0 -syscon pr PR_SET_TIMING 14 0 0 0 0 -syscon pr PR_SET_MM_MAP_SIZE 15 0 0 0 0 -syscon pr PR_SET_NAME 15 0 0 0 0 -syscon pr PR_GET_NAME 0x10 0 0 0 0 -syscon pr PR_GET_ENDIAN 19 0 0 0 0 -syscon pr PR_SET_ENDIAN 20 0 0 0 0 -syscon pr PR_GET_SECCOMP 21 0 0 0 0 -syscon pr PR_SET_SECCOMP 22 0 0 0 0 -syscon pr PR_CAPBSET_READ 23 0 0 0 0 -syscon pr PR_CAPBSET_DROP 24 0 0 0 0 -syscon pr PR_GET_TSC 25 0 0 0 0 -syscon pr PR_SET_TSC 26 0 0 0 0 -syscon pr PR_GET_SECUREBITS 27 0 0 0 0 -syscon pr PR_SET_SECUREBITS 28 0 0 0 0 -syscon pr PR_SET_TIMERSLACK 29 0 0 0 0 -syscon pr PR_GET_TIMERSLACK 30 0 0 0 0 -syscon pr PR_TASK_PERF_EVENTS_DISABLE 31 0 0 0 0 -syscon pr PR_TASK_PERF_EVENTS_ENABLE 0x20 0 0 0 0 -syscon pr PR_MCE_KILL 33 0 0 0 0 -syscon pr PR_MCE_KILL_GET 34 0 0 0 0 -syscon pr PR_SET_MM 35 0 0 0 0 -syscon pr PR_SET_CHILD_SUBREAPER 36 0 0 0 0 -syscon pr PR_GET_CHILD_SUBREAPER 37 0 0 0 0 -syscon pr PR_SET_NO_NEW_PRIVS 38 0 0 0 0 -syscon pr PR_GET_NO_NEW_PRIVS 39 0 0 0 0 -syscon pr PR_GET_TID_ADDRESS 40 0 0 0 0 -syscon pr PR_SET_THP_DISABLE 41 0 0 0 0 -syscon pr PR_GET_THP_DISABLE 42 0 0 0 0 -syscon pr PR_MPX_ENABLE_MANAGEMENT 43 0 0 0 0 -syscon pr PR_MPX_DISABLE_MANAGEMENT 44 0 0 0 0 -syscon pr PR_SET_FP_MODE 45 0 0 0 0 -syscon pr PR_GET_FP_MODE 46 0 0 0 0 -syscon pr PR_CAP_AMBIENT 47 0 0 0 0 -syscon pr PR_GET_SPECULATION_CTRL 52 0 0 0 0 -syscon pr PR_SET_SPECULATION_CTRL 53 0 0 0 0 -syscon pr PR_FP_EXC_SW_ENABLE 0x80 0 0 0 0 -syscon pr PR_FP_EXC_DIV 0x010000 0 0 0 0 -syscon pr PR_FP_EXC_OVF 0x020000 0 0 0 0 -syscon pr PR_FP_EXC_UND 0x040000 0 0 0 0 -syscon pr PR_FP_EXC_RES 0x080000 0 0 0 0 -syscon pr PR_FP_EXC_INV 0x100000 0 0 0 0 -syscon pr PR_SET_PTRACER 0x59616d61 0 0 0 0 +syscon pr PR_SET_PTRACER_ANY -1 0 0 0 0 0 +syscon pr PR_ENDIAN_BIG 0 0 0 0 0 0 # consensus +syscon pr PR_FP_EXC_DISABLED 0 0 0 0 0 0 # consensus +syscon pr PR_MCE_KILL_CLEAR 0 0 0 0 0 0 # consensus +syscon pr PR_MCE_KILL_LATE 0 0 0 0 0 0 # consensus +syscon pr PR_SPEC_NOT_AFFECTED 0 0 0 0 0 0 # consensus +syscon pr PR_SPEC_STORE_BYPASS 0 0 0 0 0 0 # consensus +syscon pr PR_TIMING_STATISTICAL 0 0 0 0 0 0 # consensus +syscon pr PR_CAP_AMBIENT_IS_SET 1 0 0 0 0 0 +syscon pr PR_ENDIAN_LITTLE 1 0 0 0 0 0 +syscon pr PR_FPEMU_NOPRINT 1 0 0 0 0 0 +syscon pr PR_FP_EXC_NONRECOV 1 0 0 0 0 0 +syscon pr PR_FP_MODE_FR 1 0 0 0 0 0 +syscon pr PR_MCE_KILL_EARLY 1 0 0 0 0 0 +syscon pr PR_MCE_KILL_SET 1 0 0 0 0 0 +syscon pr PR_SET_MM_START_CODE 1 0 0 0 0 0 +syscon pr PR_SET_PDEATHSIG 1 0 0 0 0 0 +syscon pr PR_SPEC_PRCTL 1 0 0 0 0 0 +syscon pr PR_TIMING_TIMESTAMP 1 0 0 0 0 0 +syscon pr PR_TSC_ENABLE 1 0 0 0 0 0 +syscon pr PR_UNALIGN_NOPRINT 1 0 0 0 0 0 +syscon pr PR_CAP_AMBIENT_RAISE 2 0 0 0 0 0 +syscon pr PR_ENDIAN_PPC_LITTLE 2 0 0 0 0 0 +syscon pr PR_FPEMU_SIGFPE 2 0 0 0 0 0 +syscon pr PR_FP_EXC_ASYNC 2 0 0 0 0 0 +syscon pr PR_FP_MODE_FRE 2 0 0 0 0 0 +syscon pr PR_GET_PDEATHSIG 2 0 0 0 0 0 +syscon pr PR_MCE_KILL_DEFAULT 2 0 0 0 0 0 +syscon pr PR_SET_MM_END_CODE 2 0 0 0 0 0 +syscon pr PR_SPEC_ENABLE 2 0 0 0 0 0 +syscon pr PR_TSC_SIGSEGV 2 0 0 0 0 0 +syscon pr PR_UNALIGN_SIGBUS 2 0 0 0 0 0 +syscon pr PR_CAP_AMBIENT_LOWER 3 0 0 0 0 0 +syscon pr PR_FP_EXC_PRECISE 3 0 0 0 0 0 +syscon pr PR_GET_DUMPABLE 3 0 0 0 0 0 +syscon pr PR_SET_MM_START_DATA 3 0 0 0 0 0 +syscon pr PR_CAP_AMBIENT_CLEAR_ALL 4 0 0 0 0 0 +syscon pr PR_SET_DUMPABLE 4 0 0 0 0 0 +syscon pr PR_SET_MM_END_DATA 4 0 0 0 0 0 +syscon pr PR_SPEC_DISABLE 4 0 0 0 0 0 +syscon pr PR_GET_UNALIGN 5 0 0 0 0 0 +syscon pr PR_SET_MM_START_STACK 5 0 0 0 0 0 +syscon pr PR_SET_MM_START_BRK 6 0 0 0 0 0 +syscon pr PR_SET_UNALIGN 6 0 0 0 0 0 +syscon pr PR_GET_KEEPCAPS 7 0 0 0 0 0 +syscon pr PR_SET_MM_BRK 7 0 0 0 0 0 +syscon pr PR_SET_KEEPCAPS 8 0 0 0 0 0 +syscon pr PR_SET_MM_ARG_START 8 0 0 0 0 0 +syscon pr PR_SPEC_FORCE_DISABLE 8 0 0 0 0 0 +syscon pr PR_GET_FPEMU 9 0 0 0 0 0 +syscon pr PR_SET_MM_ARG_END 9 0 0 0 0 0 +syscon pr PR_SET_FPEMU 10 0 0 0 0 0 +syscon pr PR_SET_MM_ENV_START 10 0 0 0 0 0 +syscon pr PR_GET_FPEXC 11 0 0 0 0 0 +syscon pr PR_SET_MM_ENV_END 11 0 0 0 0 0 +syscon pr PR_SET_FPEXC 12 0 0 0 0 0 +syscon pr PR_SET_MM_AUXV 12 0 0 0 0 0 +syscon pr PR_GET_TIMING 13 0 0 0 0 0 +syscon pr PR_SET_MM_EXE_FILE 13 0 0 0 0 0 +syscon pr PR_SET_MM_MAP 14 0 0 0 0 0 +syscon pr PR_SET_TIMING 14 0 0 0 0 0 +syscon pr PR_SET_MM_MAP_SIZE 15 0 0 0 0 0 +syscon pr PR_SET_NAME 15 0 0 0 0 0 +syscon pr PR_GET_NAME 0x10 0 0 0 0 0 +syscon pr PR_GET_ENDIAN 19 0 0 0 0 0 +syscon pr PR_SET_ENDIAN 20 0 0 0 0 0 +syscon pr PR_GET_SECCOMP 21 0 0 0 0 0 +syscon pr PR_SET_SECCOMP 22 0 0 0 0 0 +syscon pr PR_CAPBSET_READ 23 0 0 0 0 0 +syscon pr PR_CAPBSET_DROP 24 0 0 0 0 0 +syscon pr PR_GET_TSC 25 0 0 0 0 0 +syscon pr PR_SET_TSC 26 0 0 0 0 0 +syscon pr PR_GET_SECUREBITS 27 0 0 0 0 0 +syscon pr PR_SET_SECUREBITS 28 0 0 0 0 0 +syscon pr PR_SET_TIMERSLACK 29 0 0 0 0 0 +syscon pr PR_GET_TIMERSLACK 30 0 0 0 0 0 +syscon pr PR_TASK_PERF_EVENTS_DISABLE 31 0 0 0 0 0 +syscon pr PR_TASK_PERF_EVENTS_ENABLE 0x20 0 0 0 0 0 +syscon pr PR_MCE_KILL 33 0 0 0 0 0 +syscon pr PR_MCE_KILL_GET 34 0 0 0 0 0 +syscon pr PR_SET_MM 35 0 0 0 0 0 +syscon pr PR_SET_CHILD_SUBREAPER 36 0 0 0 0 0 +syscon pr PR_GET_CHILD_SUBREAPER 37 0 0 0 0 0 +syscon pr PR_SET_NO_NEW_PRIVS 38 0 0 0 0 0 +syscon pr PR_GET_NO_NEW_PRIVS 39 0 0 0 0 0 +syscon pr PR_GET_TID_ADDRESS 40 0 0 0 0 0 +syscon pr PR_SET_THP_DISABLE 41 0 0 0 0 0 +syscon pr PR_GET_THP_DISABLE 42 0 0 0 0 0 +syscon pr PR_MPX_ENABLE_MANAGEMENT 43 0 0 0 0 0 +syscon pr PR_MPX_DISABLE_MANAGEMENT 44 0 0 0 0 0 +syscon pr PR_SET_FP_MODE 45 0 0 0 0 0 +syscon pr PR_GET_FP_MODE 46 0 0 0 0 0 +syscon pr PR_CAP_AMBIENT 47 0 0 0 0 0 +syscon pr PR_GET_SPECULATION_CTRL 52 0 0 0 0 0 +syscon pr PR_SET_SPECULATION_CTRL 53 0 0 0 0 0 +syscon pr PR_FP_EXC_SW_ENABLE 0x80 0 0 0 0 0 +syscon pr PR_FP_EXC_DIV 0x010000 0 0 0 0 0 +syscon pr PR_FP_EXC_OVF 0x020000 0 0 0 0 0 +syscon pr PR_FP_EXC_UND 0x040000 0 0 0 0 0 +syscon pr PR_FP_EXC_RES 0x080000 0 0 0 0 0 +syscon pr PR_FP_EXC_INV 0x100000 0 0 0 0 0 +syscon pr PR_SET_PTRACER 0x59616d61 0 0 0 0 0 -syscon log LOG_EMERG 0 0 0 0 0 # consensus -syscon log LOG_KERN 0 0 0 0 0 # consensus -syscon log LOG_ALERT 1 1 1 1 0 # unix consensus -syscon log LOG_PID 1 1 1 1 0 # unix consensus -syscon log LOG_CONS 2 2 2 2 0 # unix consensus -syscon log LOG_CRIT 2 2 2 2 0 # unix consensus -syscon log LOG_ERR 3 3 3 3 0 # unix consensus -syscon log LOG_ODELAY 4 4 4 4 0 # unix consensus -syscon log LOG_WARNING 4 4 4 4 0 # unix consensus -syscon log LOG_NOTICE 5 5 5 5 0 # unix consensus -syscon log LOG_INFO 6 6 6 6 0 # unix consensus -syscon log LOG_DEBUG 7 7 7 7 0 # unix consensus -syscon log LOG_PRIMASK 7 7 7 7 0 # unix consensus -syscon log LOG_NDELAY 8 8 8 8 0 # unix consensus -syscon log LOG_USER 8 8 8 8 0 # unix consensus -syscon log LOG_MAIL 0x10 0x10 0x10 0x10 0 # unix consensus -syscon log LOG_NOWAIT 0x10 0x10 0x10 0x10 0 # unix consensus -syscon log LOG_DAEMON 24 24 24 24 0 # unix consensus -syscon log LOG_NFACILITIES 24 25 24 24 0 -syscon log LOG_AUTH 0x20 0x20 0x20 0x20 0 # unix consensus -syscon log LOG_PERROR 0x20 0x20 0x20 0x20 0 # unix consensus -syscon log LOG_SYSLOG 40 40 40 40 0 # unix consensus -syscon log LOG_LPR 48 48 48 48 0 # unix consensus -syscon log LOG_NEWS 56 56 56 56 0 # unix consensus -syscon log LOG_UUCP 0x40 0x40 0x40 0x40 0 # unix consensus -syscon log LOG_CRON 72 72 72 72 0 # unix consensus -syscon log LOG_SELECT 76 0 0 0 0 -syscon log LOG_SENSE 77 0 0 0 0 -syscon log LOG_LOCAL0 0x80 0x80 0x80 0x80 0 # unix consensus -syscon log LOG_LOCAL1 136 136 136 136 0 # unix consensus -syscon log LOG_LOCAL2 144 144 144 144 0 # unix consensus -syscon log LOG_LOCAL3 152 152 152 152 0 # unix consensus -syscon log LOG_LOCAL4 160 160 160 160 0 # unix consensus -syscon log LOG_LOCAL5 168 168 168 168 0 # unix consensus -syscon log LOG_LOCAL6 176 176 176 176 0 # unix consensus -syscon log LOG_LOCAL7 184 184 184 184 0 # unix consensus -syscon log LOG_FACMASK 0x03f8 0x03f8 0x03f8 0x03f8 0 # unix consensus +syscon log LOG_EMERG 0 0 0 0 0 0 # consensus +syscon log LOG_KERN 0 0 0 0 0 0 # consensus +syscon log LOG_ALERT 1 1 1 1 1 0 # unix consensus +syscon log LOG_PID 1 1 1 1 1 0 # unix consensus +syscon log LOG_CONS 2 2 2 2 2 0 # unix consensus +syscon log LOG_CRIT 2 2 2 2 2 0 # unix consensus +syscon log LOG_ERR 3 3 3 3 3 0 # unix consensus +syscon log LOG_ODELAY 4 4 4 4 4 0 # unix consensus +syscon log LOG_WARNING 4 4 4 4 4 0 # unix consensus +syscon log LOG_NOTICE 5 5 5 5 5 0 # unix consensus +syscon log LOG_INFO 6 6 6 6 6 0 # unix consensus +syscon log LOG_DEBUG 7 7 7 7 7 0 # unix consensus +syscon log LOG_PRIMASK 7 7 7 7 7 0 # unix consensus +syscon log LOG_NDELAY 8 8 8 8 8 0 # unix consensus +syscon log LOG_USER 8 8 8 8 8 0 # unix consensus +syscon log LOG_MAIL 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon log LOG_NOWAIT 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon log LOG_DAEMON 24 24 24 24 24 0 # unix consensus +syscon log LOG_NFACILITIES 24 25 24 24 24 0 +syscon log LOG_AUTH 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon log LOG_PERROR 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon log LOG_SYSLOG 40 40 40 40 40 0 # unix consensus +syscon log LOG_LPR 48 48 48 48 48 0 # unix consensus +syscon log LOG_NEWS 56 56 56 56 56 0 # unix consensus +syscon log LOG_UUCP 0x40 0x40 0x40 0x40 0x40 0 # unix consensus +syscon log LOG_CRON 72 72 72 72 72 0 # unix consensus +syscon log LOG_SELECT 76 0 0 0 0 0 +syscon log LOG_SENSE 77 0 0 0 0 0 +syscon log LOG_LOCAL0 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon log LOG_LOCAL1 136 136 136 136 136 0 # unix consensus +syscon log LOG_LOCAL2 144 144 144 144 144 0 # unix consensus +syscon log LOG_LOCAL3 152 152 152 152 152 0 # unix consensus +syscon log LOG_LOCAL4 160 160 160 160 160 0 # unix consensus +syscon log LOG_LOCAL5 168 168 168 168 168 0 # unix consensus +syscon log LOG_LOCAL6 176 176 176 176 176 0 # unix consensus +syscon log LOG_LOCAL7 184 184 184 184 184 0 # unix consensus +syscon log LOG_FACMASK 0x03f8 0x03f8 0x03f8 0x03f8 0x03f8 0 # unix consensus -syscon sg SG_DXFER_TO_FROM_DEV -4 0 0 0 0 -syscon sg SG_DXFER_FROM_DEV -3 0 0 0 0 -syscon sg SG_DXFER_TO_DEV -2 0 0 0 0 -syscon sg SG_DXFER_NONE -1 0 0 0 0 -syscon sg SG_DEF_COMMAND_Q 0 0 0 0 0 # consensus -syscon sg SG_DEF_FORCE_LOW_DMA 0 0 0 0 0 # consensus -syscon sg SG_DEF_FORCE_PACK_ID 0 0 0 0 0 # consensus -syscon sg SG_DEF_KEEP_ORPHAN 0 0 0 0 0 # consensus -syscon sg SG_DEF_UNDERRUN_FLAG 0 0 0 0 0 # consensus -syscon sg SG_INFO_INDIRECT_IO 0 0 0 0 0 # consensus -syscon sg SG_INFO_OK 0 0 0 0 0 # consensus -syscon sg SG_SCSI_RESET_NOTHING 0 0 0 0 0 # consensus -syscon sg SG_DEFAULT_RETRIES 1 0 0 0 0 -syscon sg SG_FLAG_DIRECT_IO 1 0 0 0 0 -syscon sg SG_INFO_CHECK 1 0 0 0 0 -syscon sg SG_INFO_OK_MASK 1 0 0 0 0 -syscon sg SG_SCSI_RESET_DEVICE 1 0 0 0 0 -syscon sg SG_FLAG_LUN_INHIBIT 2 0 0 0 0 -syscon sg SG_INFO_DIRECT_IO 2 0 0 0 0 -syscon sg SG_SCSI_RESET_BUS 2 0 0 0 0 -syscon sg SG_SCSI_RESET_HOST 3 0 0 0 0 -syscon sg SG_INFO_MIXED_IO 4 0 0 0 0 -syscon sg SG_INFO_DIRECT_IO_MASK 6 0 0 0 0 -syscon misc VOLUME_OVERFLOW 13 0 0 0 0 -syscon sg SG_MAX_QUEUE 0x10 0 0 0 0 -syscon sg SG_MAX_SENSE 0x10 0 0 0 0 -syscon sg SG_DEFAULT_TIMEOUT 0x1770 0 0 0 0 -syscon sg SG_SET_TIMEOUT 0x2201 0 0 0 0 -syscon sg SG_GET_TIMEOUT 0x2202 0 0 0 0 -syscon sg SG_EMULATED_HOST 0x2203 0 0 0 0 -syscon sg SG_SET_TRANSFORM 0x2204 0 0 0 0 -syscon sg SG_GET_TRANSFORM 0x2205 0 0 0 0 -syscon sg SG_GET_COMMAND_Q 0x2270 0 0 0 0 -syscon sg SG_SET_COMMAND_Q 0x2271 0 0 0 0 -syscon sg SG_GET_RESERVED_SIZE 0x2272 0 0 0 0 -syscon sg SG_SET_RESERVED_SIZE 0x2275 0 0 0 0 -syscon sg SG_GET_SCSI_ID 0x2276 0 0 0 0 -syscon sg SG_SET_FORCE_LOW_DMA 0x2279 0 0 0 0 -syscon sg SG_GET_LOW_DMA 0x227a 0 0 0 0 -syscon sg SG_SET_FORCE_PACK_ID 0x227b 0 0 0 0 -syscon sg SG_GET_PACK_ID 0x227c 0 0 0 0 -syscon sg SG_GET_NUM_WAITING 0x227d 0 0 0 0 -syscon sg SG_SET_DEBUG 0x227e 0 0 0 0 -syscon sg SG_GET_SG_TABLESIZE 0x227f 0 0 0 0 -syscon sg SG_GET_VERSION_NUM 0x2282 0 0 0 0 -syscon sg SG_NEXT_CMD_LEN 0x2283 0 0 0 0 -syscon sg SG_SCSI_RESET 0x2284 0 0 0 0 -syscon sg SG_IO 0x2285 0 0 0 0 -syscon sg SG_GET_REQUEST_TABLE 0x2286 0 0 0 0 -syscon sg SG_SET_KEEP_ORPHAN 0x2287 0 0 0 0 -syscon sg SG_GET_KEEP_ORPHAN 0x2288 0 0 0 0 -syscon sg SG_BIG_BUFF 0x8000 0 0 0 0 -syscon sg SG_DEF_RESERVED_SIZE 0x8000 0 0 0 0 -syscon sg SG_SCATTER_SZ 0x8000 0 0 0 0 -syscon sg SG_FLAG_NO_DXFER 0x010000 0 0 0 0 +syscon sg SG_DXFER_TO_FROM_DEV -4 0 0 0 0 0 +syscon sg SG_DXFER_FROM_DEV -3 0 0 0 0 0 +syscon sg SG_DXFER_TO_DEV -2 0 0 0 0 0 +syscon sg SG_DXFER_NONE -1 0 0 0 0 0 +syscon sg SG_DEF_COMMAND_Q 0 0 0 0 0 0 # consensus +syscon sg SG_DEF_FORCE_LOW_DMA 0 0 0 0 0 0 # consensus +syscon sg SG_DEF_FORCE_PACK_ID 0 0 0 0 0 0 # consensus +syscon sg SG_DEF_KEEP_ORPHAN 0 0 0 0 0 0 # consensus +syscon sg SG_DEF_UNDERRUN_FLAG 0 0 0 0 0 0 # consensus +syscon sg SG_INFO_INDIRECT_IO 0 0 0 0 0 0 # consensus +syscon sg SG_INFO_OK 0 0 0 0 0 0 # consensus +syscon sg SG_SCSI_RESET_NOTHING 0 0 0 0 0 0 # consensus +syscon sg SG_DEFAULT_RETRIES 1 0 0 0 0 0 +syscon sg SG_FLAG_DIRECT_IO 1 0 0 0 0 0 +syscon sg SG_INFO_CHECK 1 0 0 0 0 0 +syscon sg SG_INFO_OK_MASK 1 0 0 0 0 0 +syscon sg SG_SCSI_RESET_DEVICE 1 0 0 0 0 0 +syscon sg SG_FLAG_LUN_INHIBIT 2 0 0 0 0 0 +syscon sg SG_INFO_DIRECT_IO 2 0 0 0 0 0 +syscon sg SG_SCSI_RESET_BUS 2 0 0 0 0 0 +syscon sg SG_SCSI_RESET_HOST 3 0 0 0 0 0 +syscon sg SG_INFO_MIXED_IO 4 0 0 0 0 0 +syscon sg SG_INFO_DIRECT_IO_MASK 6 0 0 0 0 0 +syscon misc VOLUME_OVERFLOW 13 0 0 0 0 0 +syscon sg SG_MAX_QUEUE 0x10 0 0 0 0 0 +syscon sg SG_MAX_SENSE 0x10 0 0 0 0 0 +syscon sg SG_DEFAULT_TIMEOUT 0x1770 0 0 0 0 0 +syscon sg SG_SET_TIMEOUT 0x2201 0 0 0 0 0 +syscon sg SG_GET_TIMEOUT 0x2202 0 0 0 0 0 +syscon sg SG_EMULATED_HOST 0x2203 0 0 0 0 0 +syscon sg SG_SET_TRANSFORM 0x2204 0 0 0 0 0 +syscon sg SG_GET_TRANSFORM 0x2205 0 0 0 0 0 +syscon sg SG_GET_COMMAND_Q 0x2270 0 0 0 0 0 +syscon sg SG_SET_COMMAND_Q 0x2271 0 0 0 0 0 +syscon sg SG_GET_RESERVED_SIZE 0x2272 0 0 0 0 0 +syscon sg SG_SET_RESERVED_SIZE 0x2275 0 0 0 0 0 +syscon sg SG_GET_SCSI_ID 0x2276 0 0 0 0 0 +syscon sg SG_SET_FORCE_LOW_DMA 0x2279 0 0 0 0 0 +syscon sg SG_GET_LOW_DMA 0x227a 0 0 0 0 0 +syscon sg SG_SET_FORCE_PACK_ID 0x227b 0 0 0 0 0 +syscon sg SG_GET_PACK_ID 0x227c 0 0 0 0 0 +syscon sg SG_GET_NUM_WAITING 0x227d 0 0 0 0 0 +syscon sg SG_SET_DEBUG 0x227e 0 0 0 0 0 +syscon sg SG_GET_SG_TABLESIZE 0x227f 0 0 0 0 0 +syscon sg SG_GET_VERSION_NUM 0x2282 0 0 0 0 0 +syscon sg SG_NEXT_CMD_LEN 0x2283 0 0 0 0 0 +syscon sg SG_SCSI_RESET 0x2284 0 0 0 0 0 +syscon sg SG_IO 0x2285 0 0 0 0 0 +syscon sg SG_GET_REQUEST_TABLE 0x2286 0 0 0 0 0 +syscon sg SG_SET_KEEP_ORPHAN 0x2287 0 0 0 0 0 +syscon sg SG_GET_KEEP_ORPHAN 0x2288 0 0 0 0 0 +syscon sg SG_BIG_BUFF 0x8000 0 0 0 0 0 +syscon sg SG_DEF_RESERVED_SIZE 0x8000 0 0 0 0 0 +syscon sg SG_SCATTER_SZ 0x8000 0 0 0 0 0 +syscon sg SG_FLAG_NO_DXFER 0x010000 0 0 0 0 0 -syscon posix _POSIX_ARG_MAX 0x1000 0x1000 0x1000 0x1000 0 # unix consensus -syscon posix _POSIX_CHILD_MAX 25 25 25 25 0 # unix consensus -syscon posix _POSIX_HOST_NAME_MAX 255 255 255 255 0 # unix consensus -syscon posix _POSIX_LINK_MAX 8 8 8 8 0 # unix consensus -syscon posix _POSIX_LOGIN_NAME_MAX 9 9 9 9 0 # unix consensus -syscon posix _POSIX_MAX_CANON 255 255 255 255 0 # unix consensus -syscon posix _POSIX_MAX_INPUT 255 255 255 255 0 # unix consensus -syscon posix _POSIX_NAME_MAX 14 14 14 14 14 # forced consensus -syscon posix _POSIX_NGROUPS_MAX 8 8 8 8 0 # unix consensus -syscon posix _POSIX_OPEN_MAX 20 20 20 20 20 # forced consensus -syscon posix _POSIX_PATH_MAX 255 255 255 255 255 # forced consensus -syscon posix _POSIX_PIPE_BUF 0x0200 0x0200 0x0200 0x0200 0 # unix consensus -syscon posix _POSIX_RE_DUP_MAX 255 255 255 255 0 # unix consensus -syscon posix _POSIX_SEM_NSEMS_MAX 0x0100 0x0100 0x0100 0x0100 0 # unix consensus -syscon posix _POSIX_SEM_VALUE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0 # unix consensus -syscon posix _POSIX_SSIZE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0 # unix consensus -syscon posix _POSIX_STREAM_MAX 8 8 8 8 0 # unix consensus -syscon posix _POSIX_SYMLINK_MAX 255 255 255 255 0 # unix consensus -syscon posix _POSIX_SYMLOOP_MAX 8 8 8 8 0 # unix consensus -syscon posix _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 0 # unix consensus -syscon posix _POSIX_THREAD_KEYS_MAX 0x80 0x80 0x80 0x80 0 # unix consensus -syscon posix _POSIX_TTY_NAME_MAX 9 9 9 9 0 # unix consensus -syscon posix _POSIX_TZNAME_MAX 6 6 6 6 0 # unix consensus -syscon posix _POSIX_CLOCK_SELECTION 0x031069 -1 -1 -1 0 # bsd consensus -syscon posix _POSIX_FSYNC 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon posix _POSIX_MAPPED_FILES 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon posix _POSIX_MEMORY_PROTECTION 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon posix _POSIX_READER_WRITER_LOCKS 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon posix _POSIX_THREADS 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon posix _POSIX_THREAD_ATTR_STACKADDR 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon posix _POSIX_THREAD_ATTR_STACKSIZE 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon posix _POSIX_ADVISORY_INFO 0x031069 -1 0x030db0 -1 0 -syscon posix _POSIX_ASYNCHRONOUS_IO 0x031069 -1 0x030db0 -1 0 -syscon posix _POSIX_BARRIERS 0x031069 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_JOB_CONTROL 1 0x030db0 1 1 0 -syscon posix _POSIX_MEMLOCK 0x031069 -1 -1 0x030db0 0 -syscon posix _POSIX_MEMLOCK_RANGE 0x031069 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_MESSAGE_PASSING 0x031069 -1 0x030db0 -1 0 -syscon posix _POSIX_NO_TRUNC 1 0x030db0 1 1 0 -syscon posix _POSIX_RAW_SOCKETS 0x031069 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_REALTIME_SIGNALS 0x031069 -1 0x030db0 -1 0 -syscon posix _POSIX_REGEXP 1 0x030db0 1 1 0 -syscon posix _POSIX_SEMAPHORES 0x031069 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_SHARED_MEMORY_OBJECTS 0x031069 -1 0x030db0 0x031069 0 -syscon posix _POSIX_SHELL 1 0x030db0 1 1 0 -syscon posix _POSIX_SPAWN 0x031069 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_SPIN_LOCKS 0x031069 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_THREAD_PRIORITY_SCHEDULING 0x031069 -1 0x030db0 -1 0 -syscon posix _POSIX_THREAD_PROCESS_SHARED 0x031069 0x030db0 0x030db0 -1 0 -syscon posix _POSIX_THREAD_SAFE_FUNCTIONS 0x031069 0x030db0 -1 0x030db0 0 -syscon posix _POSIX_THREAD_THREADS_MAX 0x40 0x40 0x40 4 0 -syscon posix _POSIX_TIMEOUTS 0x031069 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_TIMERS 0x031069 -1 0x030db0 -1 0 -syscon posix _POSIX_VERSION 0x031069 0x030db0 0x030db0 0x031069 0 -syscon posix _POSIX_VDISABLE 0 255 255 255 0 # bsd consensus -syscon posix _POSIX_AIO_LISTIO_MAX 2 2 2 0 0 -syscon posix _POSIX_AIO_MAX 1 1 1 0 0 -syscon posix _POSIX_CHOWN_RESTRICTED 0 0x030db0 1 1 0 -syscon posix _POSIX_CLOCKRES_MIN 0x01312d00 0 0x01312d00 0x01312d00 0 -syscon posix _POSIX_CPUTIME 0 -1 0x030db0 0x031069 0 -syscon posix _POSIX_DELAYTIMER_MAX 0x20 0x20 0x20 0 0 -syscon posix _POSIX_MONOTONIC_CLOCK 0 -1 0x030db0 0x030db0 0 -syscon posix _POSIX_MQ_OPEN_MAX 8 8 8 0 0 -syscon posix _POSIX_MQ_PRIO_MAX 0x20 0x20 0x20 0 0 -syscon posix _POSIX_RTSIG_MAX 8 8 8 0 0 -syscon posix _POSIX_SAVED_IDS 1 0x030db0 0 1 0 -syscon posix _POSIX_SIGQUEUE_MAX 0x20 0x20 0x20 0 0 -syscon posix _POSIX_THREAD_CPUTIME 0 -1 0x030db0 0x031069 0 -syscon posix _POSIX_TIMER_MAX 0x20 0x20 0x20 0 0 -syscon posix _POSIX_IPV6 0x031069 0x030db0 0 0 0 -syscon posix _POSIX_SS_REPL_MAX 0 4 4 0 0 -syscon posix _POSIX_TRACE_EVENT_NAME_MAX 0 30 30 0 0 -syscon posix _POSIX_TRACE_NAME_MAX 0 8 8 0 0 -syscon posix _POSIX_TRACE_SYS_MAX 0 8 8 0 0 -syscon posix _POSIX_TRACE_USER_EVENT_MAX 0 0x20 0x20 0 0 -syscon posix _POSIX_V6_LP64_OFF64 1 1 0 0 0 -syscon posix _POSIX_V7_LP64_OFF64 1 1 0 0 0 +syscon posix _POSIX_ARG_MAX 0x1000 0x1000 0x1000 0x1000 0x1000 0 # unix consensus +syscon posix _POSIX_CHILD_MAX 25 25 25 25 25 0 # unix consensus +syscon posix _POSIX_HOST_NAME_MAX 255 255 255 255 255 0 # unix consensus +syscon posix _POSIX_LINK_MAX 8 8 8 8 8 0 # unix consensus +syscon posix _POSIX_LOGIN_NAME_MAX 9 9 9 9 9 0 # unix consensus +syscon posix _POSIX_MAX_CANON 255 255 255 255 255 0 # unix consensus +syscon posix _POSIX_MAX_INPUT 255 255 255 255 255 0 # unix consensus +syscon posix _POSIX_NAME_MAX 14 14 14 14 14 14 # forced consensus +syscon posix _POSIX_NGROUPS_MAX 8 8 8 8 8 0 # unix consensus +syscon posix _POSIX_OPEN_MAX 20 20 20 20 20 20 # forced consensus +syscon posix _POSIX_PATH_MAX 255 255 255 255 255 255 # forced consensus +syscon posix _POSIX_PIPE_BUF 0x0200 0x0200 0x0200 0x0200 0x0200 0 # unix consensus +syscon posix _POSIX_RE_DUP_MAX 255 255 255 255 255 0 # unix consensus +syscon posix _POSIX_SEM_NSEMS_MAX 0x0100 0x0100 0x0100 0x0100 0x0100 0 # unix consensus +syscon posix _POSIX_SEM_VALUE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0x7fff 0 # unix consensus +syscon posix _POSIX_SSIZE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0x7fff 0 # unix consensus +syscon posix _POSIX_STREAM_MAX 8 8 8 8 8 0 # unix consensus +syscon posix _POSIX_SYMLINK_MAX 255 255 255 255 255 0 # unix consensus +syscon posix _POSIX_SYMLOOP_MAX 8 8 8 8 8 0 # unix consensus +syscon posix _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 4 0 # unix consensus +syscon posix _POSIX_THREAD_KEYS_MAX 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon posix _POSIX_TTY_NAME_MAX 9 9 9 9 9 0 # unix consensus +syscon posix _POSIX_TZNAME_MAX 6 6 6 6 6 0 # unix consensus +syscon posix _POSIX_CLOCK_SELECTION 0x031069 -1 -1 -1 -1 0 # bsd consensus +syscon posix _POSIX_FSYNC 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon posix _POSIX_MAPPED_FILES 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon posix _POSIX_MEMORY_PROTECTION 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon posix _POSIX_READER_WRITER_LOCKS 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon posix _POSIX_THREADS 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon posix _POSIX_THREAD_ATTR_STACKADDR 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon posix _POSIX_THREAD_ATTR_STACKSIZE 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon posix _POSIX_ADVISORY_INFO 0x031069 -1 0x030db0 -1 -1 0 +syscon posix _POSIX_ASYNCHRONOUS_IO 0x031069 -1 0x030db0 -1 -1 0 +syscon posix _POSIX_BARRIERS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_JOB_CONTROL 1 0x030db0 1 1 1 0 +syscon posix _POSIX_MEMLOCK 0x031069 -1 -1 0x030db0 0x030db0 0 +syscon posix _POSIX_MEMLOCK_RANGE 0x031069 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_MESSAGE_PASSING 0x031069 -1 0x030db0 -1 -1 0 +syscon posix _POSIX_NO_TRUNC 1 0x030db0 1 1 1 0 +syscon posix _POSIX_RAW_SOCKETS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_REALTIME_SIGNALS 0x031069 -1 0x030db0 -1 -1 0 +syscon posix _POSIX_REGEXP 1 0x030db0 1 1 1 0 +syscon posix _POSIX_SEMAPHORES 0x031069 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_SHARED_MEMORY_OBJECTS 0x031069 -1 0x030db0 0x031069 0x031069 0 +syscon posix _POSIX_SHELL 1 0x030db0 1 1 1 0 +syscon posix _POSIX_SPAWN 0x031069 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_SPIN_LOCKS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_THREAD_PRIORITY_SCHEDULING 0x031069 -1 0x030db0 -1 -1 0 +syscon posix _POSIX_THREAD_PROCESS_SHARED 0x031069 0x030db0 0x030db0 -1 -1 0 +syscon posix _POSIX_THREAD_SAFE_FUNCTIONS 0x031069 0x030db0 -1 0x030db0 0x030db0 0 +syscon posix _POSIX_THREAD_THREADS_MAX 0x40 0x40 0x40 4 4 0 +syscon posix _POSIX_TIMEOUTS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_TIMERS 0x031069 -1 0x030db0 -1 -1 0 +syscon posix _POSIX_VERSION 0x031069 0x030db0 0x030db0 0x031069 0x031069 0 +syscon posix _POSIX_VDISABLE 0 255 255 255 255 0 # bsd consensus +syscon posix _POSIX_AIO_LISTIO_MAX 2 2 2 0 0 0 +syscon posix _POSIX_AIO_MAX 1 1 1 0 0 0 +syscon posix _POSIX_CHOWN_RESTRICTED 0 0x030db0 1 1 1 0 +syscon posix _POSIX_CLOCKRES_MIN 0x01312d00 0 0x01312d00 0x01312d00 0x01312d00 0 +syscon posix _POSIX_CPUTIME 0 -1 0x030db0 0x031069 0x031069 0 +syscon posix _POSIX_DELAYTIMER_MAX 0x20 0x20 0x20 0 0 0 +syscon posix _POSIX_MONOTONIC_CLOCK 0 -1 0x030db0 0x030db0 0x030db0 0 +syscon posix _POSIX_MQ_OPEN_MAX 8 8 8 0 0 0 +syscon posix _POSIX_MQ_PRIO_MAX 0x20 0x20 0x20 0 0 0 +syscon posix _POSIX_RTSIG_MAX 8 8 8 0 0 0 +syscon posix _POSIX_SAVED_IDS 1 0x030db0 0 1 1 0 +syscon posix _POSIX_SIGQUEUE_MAX 0x20 0x20 0x20 0 0 0 +syscon posix _POSIX_THREAD_CPUTIME 0 -1 0x030db0 0x031069 0x031069 0 +syscon posix _POSIX_TIMER_MAX 0x20 0x20 0x20 0 0 0 +syscon posix _POSIX_IPV6 0x031069 0x030db0 0 0 0 0 +syscon posix _POSIX_SS_REPL_MAX 0 4 4 0 0 0 +syscon posix _POSIX_TRACE_EVENT_NAME_MAX 0 30 30 0 0 0 +syscon posix _POSIX_TRACE_NAME_MAX 0 8 8 0 0 0 +syscon posix _POSIX_TRACE_SYS_MAX 0 8 8 0 0 0 +syscon posix _POSIX_TRACE_USER_EVENT_MAX 0 0x20 0x20 0 0 0 +syscon posix _POSIX_V6_LP64_OFF64 1 1 0 0 0 0 +syscon posix _POSIX_V7_LP64_OFF64 1 1 0 0 0 0 -syscon icmp6 ICMP6_DST_UNREACH_NOROUTE 0 0 0 0 0 # consensus -syscon icmp6 ICMP6_PARAMPROB_HEADER 0 0 0 0 0 # consensus -syscon icmp6 ICMP6_TIME_EXCEED_TRANSIT 0 0 0 0 0 # consensus -syscon icmp6 ICMP6_DST_UNREACH_ADMIN 1 1 1 1 1 # consensus -syscon icmp6 ICMP6_PARAMPROB_NEXTHEADER 1 1 1 1 1 # consensus -syscon icmp6 ICMP6_TIME_EXCEED_REASSEMBLY 1 1 1 1 1 # consensus -syscon icmp6 ICMP6_DST_UNREACH 1 1 1 1 0 # unix consensus -syscon icmp6 ICMP6_FILTER 1 18 18 18 0 # bsd consensus -syscon icmp6 ICMP6_DST_UNREACH_BEYONDSCOPE 2 2 2 2 2 # consensus -syscon icmp6 ICMP6_PARAMPROB_OPTION 2 2 2 2 2 # consensus -syscon icmp6 ICMP6_PACKET_TOO_BIG 2 2 2 2 0 # unix consensus -syscon icmp6 ICMP6_DST_UNREACH_ADDR 3 3 3 3 3 # consensus -syscon icmp6 ICMP6_TIME_EXCEEDED 3 3 3 3 0 # unix consensus -syscon icmp6 ICMP6_DST_UNREACH_NOPORT 4 4 4 4 4 # consensus -syscon icmp6 ICMP6_PARAM_PROB 4 4 4 4 0 # unix consensus -syscon icmp6 ICMP6_RR_FLAGS_PREVDONE 8 8 8 8 0 # unix consensus -syscon icmp6 ICMP6_RR_FLAGS_SPECSITE 0x10 0x10 0x10 0x10 0 # unix consensus -syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x10 0x40 0x40 0x40 0 # bsd consensus -syscon icmp6 ICMP6_RR_FLAGS_FORCEAPPLY 0x20 0x20 0x20 0x20 0 # unix consensus -syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x20 0x80 0x80 0x80 0 # bsd consensus -syscon icmp6 ICMP6_RR_FLAGS_REQRESULT 0x40 0x40 0x40 0x40 0 # unix consensus -syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME 0x40 0x40 0x40 0x40 0 # unix consensus -syscon icmp6 ICMP6_INFOMSG_MASK 0x80 0x80 0x80 0x80 0x80 # consensus -syscon icmp6 ICMP6_ECHO_REQUEST 0x80 0x80 0x80 0x80 0 # unix consensus -syscon icmp6 ICMP6_RR_FLAGS_TEST 0x80 0x80 0x80 0x80 0 # unix consensus -syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME 0x80 0x80 0x80 0x80 0 # unix consensus -syscon icmp6 ICMP6_ECHO_REPLY 129 129 129 129 0 # unix consensus -syscon icmp6 ICMP6_ROUTER_RENUMBERING 138 138 138 138 0 # unix consensus -syscon icmp6 ICMP6_RR_RESULT_FLAGS_FORBIDDEN 0x0100 0x0100 0x0100 0x0100 0 # unix consensus -syscon icmp6 ICMP6_RR_RESULT_FLAGS_OOB 0x0200 0x0200 0x0200 0x0200 0 # unix consensus +syscon icmp6 ICMP6_DST_UNREACH_NOROUTE 0 0 0 0 0 0 # consensus +syscon icmp6 ICMP6_PARAMPROB_HEADER 0 0 0 0 0 0 # consensus +syscon icmp6 ICMP6_TIME_EXCEED_TRANSIT 0 0 0 0 0 0 # consensus +syscon icmp6 ICMP6_DST_UNREACH_ADMIN 1 1 1 1 1 1 # consensus +syscon icmp6 ICMP6_PARAMPROB_NEXTHEADER 1 1 1 1 1 1 # consensus +syscon icmp6 ICMP6_TIME_EXCEED_REASSEMBLY 1 1 1 1 1 1 # consensus +syscon icmp6 ICMP6_DST_UNREACH 1 1 1 1 1 0 # unix consensus +syscon icmp6 ICMP6_FILTER 1 18 18 18 18 0 # bsd consensus +syscon icmp6 ICMP6_DST_UNREACH_BEYONDSCOPE 2 2 2 2 2 2 # consensus +syscon icmp6 ICMP6_PARAMPROB_OPTION 2 2 2 2 2 2 # consensus +syscon icmp6 ICMP6_PACKET_TOO_BIG 2 2 2 2 2 0 # unix consensus +syscon icmp6 ICMP6_DST_UNREACH_ADDR 3 3 3 3 3 3 # consensus +syscon icmp6 ICMP6_TIME_EXCEEDED 3 3 3 3 3 0 # unix consensus +syscon icmp6 ICMP6_DST_UNREACH_NOPORT 4 4 4 4 4 4 # consensus +syscon icmp6 ICMP6_PARAM_PROB 4 4 4 4 4 0 # unix consensus +syscon icmp6 ICMP6_RR_FLAGS_PREVDONE 8 8 8 8 8 0 # unix consensus +syscon icmp6 ICMP6_RR_FLAGS_SPECSITE 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x10 0x40 0x40 0x40 0x40 0 # bsd consensus +syscon icmp6 ICMP6_RR_FLAGS_FORCEAPPLY 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x20 0x80 0x80 0x80 0x80 0 # bsd consensus +syscon icmp6 ICMP6_RR_FLAGS_REQRESULT 0x40 0x40 0x40 0x40 0x40 0 # unix consensus +syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME 0x40 0x40 0x40 0x40 0x40 0 # unix consensus +syscon icmp6 ICMP6_INFOMSG_MASK 0x80 0x80 0x80 0x80 0x80 0x80 # consensus +syscon icmp6 ICMP6_ECHO_REQUEST 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon icmp6 ICMP6_RR_FLAGS_TEST 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon icmp6 ICMP6_ECHO_REPLY 129 129 129 129 129 0 # unix consensus +syscon icmp6 ICMP6_ROUTER_RENUMBERING 138 138 138 138 138 0 # unix consensus +syscon icmp6 ICMP6_RR_RESULT_FLAGS_FORBIDDEN 0x0100 0x0100 0x0100 0x0100 0x0100 0 # unix consensus +syscon icmp6 ICMP6_RR_RESULT_FLAGS_OOB 0x0200 0x0200 0x0200 0x0200 0x0200 0 # unix consensus -syscon sio SIOCADDMULTI 0x8931 0x80206931 0x80206931 0x80206931 0 # bsd consensus -syscon sio SIOCATMARK 0x8905 0x40047307 0x40047307 0x40047307 0 # bsd consensus -syscon sio SIOCDELMULTI 0x8932 0x80206932 0x80206932 0x80206932 0 # bsd consensus -syscon sio SIOCDIFADDR 0x8936 0x80206919 0x80206919 0x80206919 0 # bsd consensus -syscon sio SIOCGIFADDR 0x8915 0xc0206921 0xc0206921 0xc0206921 0 # bsd consensus -syscon sio SIOCGIFBRDADDR 0x8919 0xc0206923 0xc0206923 0xc0206923 0 # bsd consensus -syscon sio SIOCGIFDSTADDR 0x8917 0xc0206922 0xc0206922 0xc0206922 0 # bsd consensus -syscon sio SIOCGIFFLAGS 0x8913 0xc0206911 0xc0206911 0xc0206911 0 # bsd consensus -syscon sio SIOCGIFMETRIC 0x891d 0xc0206917 0xc0206917 0xc0206917 0 # bsd consensus -syscon sio SIOCGIFNETMASK 0x891b 0xc0206925 0xc0206925 0xc0206925 0 # bsd consensus -syscon sio SIOCGPGRP 0x8904 0x40047309 0x40047309 0x40047309 0 # bsd consensus -syscon sio SIOCSIFADDR 0x8916 0x8020690c 0x8020690c 0x8020690c 0 # bsd consensus -syscon sio SIOCSIFBRDADDR 0x891a 0x80206913 0x80206913 0x80206913 0 # bsd consensus -syscon sio SIOCSIFDSTADDR 0x8918 0x8020690e 0x8020690e 0x8020690e 0 # bsd consensus -syscon sio SIOCSIFFLAGS 0x8914 0x80206910 0x80206910 0x80206910 0 # bsd consensus -syscon sio SIOCSIFMETRIC 0x891e 0x80206918 0x80206918 0x80206918 0 # bsd consensus -syscon sio SIOCSIFNETMASK 0x891c 0x80206916 0x80206916 0x80206916 0 # bsd consensus -syscon sio SIOCSPGRP 0x8902 0x80047308 0x80047308 0x80047308 0 # bsd consensus -syscon sio SIOCGIFCONF 0x8912 0xc00c6924 0xc0106924 0xc0106924 0 -syscon sio SIOCGIFMTU 0x8921 0xc0206933 0xc0206933 0xc020697e 0 -syscon sio SIOCSIFMTU 0x8922 0x80206934 0x80206934 0x8020697f 0 -syscon sio SIOCGIFINDEX 0x8933 0 0xc0206920 0 0 -syscon sio SIOCSIFNAME 0x8923 0 0x80206928 0 0 -syscon sio SIOCADDDLCI 0x8980 0 0 0 0 -syscon sio SIOCADDRT 0x890b 0 0 0 0 -syscon sio SIOCDARP 0x8953 0 0 0 0 -syscon sio SIOCDELDLCI 0x8981 0 0 0 0 -syscon sio SIOCDELRT 0x890c 0 0 0 0 -syscon sio SIOCDEVPRIVATE 0x89f0 0 0 0 0 -syscon sio SIOCDRARP 0x8960 0 0 0 0 -syscon sio SIOCGARP 0x8954 0 0 0 0 -syscon sio SIOCGIFBR 0x8940 0 0 0 0 -syscon sio SIOCGIFCOUNT 0x8938 0 0 0 0 -syscon sio SIOCGIFENCAP 0x8925 0 0 0 0 -syscon sio SIOCGIFHWADDR 0x8927 0 0 0 0 -syscon sio SIOCGIFMAP 0x8970 0 0 0 0 -syscon sio SIOCGIFMEM 0x891f 0 0 0 0 -syscon sio SIOCGIFNAME 0x8910 0 0 0 0 -syscon sio SIOCGIFPFLAGS 0x8935 0 0 0 0 -syscon sio SIOCGIFSLAVE 0x8929 0 0 0 0 -syscon sio SIOCGIFTXQLEN 0x8942 0 0 0 0 -syscon sio SIOCGRARP 0x8961 0 0 0 0 -syscon sio SIOCGSTAMP 0x8906 0 0 0 0 -syscon sio SIOCGSTAMPNS 0x8907 0 0 0 0 -syscon sio SIOCPROTOPRIVATE 0x89e0 0 0 0 0 -syscon sio SIOCRTMSG 0x890d 0 0 0 0 -syscon sio SIOCSARP 0x8955 0 0 0 0 -syscon sio SIOCSIFBR 0x8941 0 0 0 0 -syscon sio SIOCSIFENCAP 0x8926 0 0 0 0 -syscon sio SIOCSIFHWADDR 0x8924 0 0 0 0 -syscon sio SIOCSIFHWBROADCAST 0x8937 0 0 0 0 -syscon sio SIOCSIFLINK 0x8911 0 0 0 0 -syscon sio SIOCSIFMAP 0x8971 0 0 0 0 -syscon sio SIOCSIFMEM 0x8920 0 0 0 0 -syscon sio SIOCSIFPFLAGS 0x8934 0 0 0 0 -syscon sio SIOCSIFSLAVE 0x8930 0 0 0 0 -syscon sio SIOCSIFTXQLEN 0x8943 0 0 0 0 -syscon sio SIOCSRARP 0x8962 0 0 0 0 -syscon sio SIOGIFINDEX 0x8933 0 0 0 0 +syscon sio SIOCADDMULTI 0x8931 0x80206931 0x80206931 0x80206931 0x80206931 0 # bsd consensus +syscon sio SIOCATMARK 0x8905 0x40047307 0x40047307 0x40047307 0x40047307 0 # bsd consensus +syscon sio SIOCDELMULTI 0x8932 0x80206932 0x80206932 0x80206932 0x80206932 0 # bsd consensus +syscon sio SIOCDIFADDR 0x8936 0x80206919 0x80206919 0x80206919 0x80206919 0 # bsd consensus +syscon sio SIOCGIFADDR 0x8915 0xc0206921 0xc0206921 0xc0206921 0xc0206921 0 # bsd consensus +syscon sio SIOCGIFBRDADDR 0x8919 0xc0206923 0xc0206923 0xc0206923 0xc0206923 0 # bsd consensus +syscon sio SIOCGIFDSTADDR 0x8917 0xc0206922 0xc0206922 0xc0206922 0xc0206922 0 # bsd consensus +syscon sio SIOCGIFFLAGS 0x8913 0xc0206911 0xc0206911 0xc0206911 0xc0206911 0 # bsd consensus +syscon sio SIOCGIFMETRIC 0x891d 0xc0206917 0xc0206917 0xc0206917 0xc0206917 0 # bsd consensus +syscon sio SIOCGIFNETMASK 0x891b 0xc0206925 0xc0206925 0xc0206925 0xc0206925 0 # bsd consensus +syscon sio SIOCGPGRP 0x8904 0x40047309 0x40047309 0x40047309 0x40047309 0 # bsd consensus +syscon sio SIOCSIFADDR 0x8916 0x8020690c 0x8020690c 0x8020690c 0x8020690c 0 # bsd consensus +syscon sio SIOCSIFBRDADDR 0x891a 0x80206913 0x80206913 0x80206913 0x80206913 0 # bsd consensus +syscon sio SIOCSIFDSTADDR 0x8918 0x8020690e 0x8020690e 0x8020690e 0x8020690e 0 # bsd consensus +syscon sio SIOCSIFFLAGS 0x8914 0x80206910 0x80206910 0x80206910 0x80206910 0 # bsd consensus +syscon sio SIOCSIFMETRIC 0x891e 0x80206918 0x80206918 0x80206918 0x80206918 0 # bsd consensus +syscon sio SIOCSIFNETMASK 0x891c 0x80206916 0x80206916 0x80206916 0x80206916 0 # bsd consensus +syscon sio SIOCSPGRP 0x8902 0x80047308 0x80047308 0x80047308 0x80047308 0 # bsd consensus +syscon sio SIOCGIFCONF 0x8912 0xc00c6924 0xc0106924 0xc0106924 0xc0106924 0 +syscon sio SIOCGIFMTU 0x8921 0xc0206933 0xc0206933 0xc020697e 0xc020697e 0 +syscon sio SIOCSIFMTU 0x8922 0x80206934 0x80206934 0x8020697f 0x8020697f 0 +syscon sio SIOCGIFINDEX 0x8933 0 0xc0206920 0 0 0 +syscon sio SIOCSIFNAME 0x8923 0 0x80206928 0 0 0 +syscon sio SIOCADDDLCI 0x8980 0 0 0 0 0 +syscon sio SIOCADDRT 0x890b 0 0 0 0 0 +syscon sio SIOCDARP 0x8953 0 0 0 0 0 +syscon sio SIOCDELDLCI 0x8981 0 0 0 0 0 +syscon sio SIOCDELRT 0x890c 0 0 0 0 0 +syscon sio SIOCDEVPRIVATE 0x89f0 0 0 0 0 0 +syscon sio SIOCDRARP 0x8960 0 0 0 0 0 +syscon sio SIOCGARP 0x8954 0 0 0 0 0 +syscon sio SIOCGIFBR 0x8940 0 0 0 0 0 +syscon sio SIOCGIFCOUNT 0x8938 0 0 0 0 0 +syscon sio SIOCGIFENCAP 0x8925 0 0 0 0 0 +syscon sio SIOCGIFHWADDR 0x8927 0 0 0 0 0 +syscon sio SIOCGIFMAP 0x8970 0 0 0 0 0 +syscon sio SIOCGIFMEM 0x891f 0 0 0 0 0 +syscon sio SIOCGIFNAME 0x8910 0 0 0 0 0 +syscon sio SIOCGIFPFLAGS 0x8935 0 0 0 0 0 +syscon sio SIOCGIFSLAVE 0x8929 0 0 0 0 0 +syscon sio SIOCGIFTXQLEN 0x8942 0 0 0 0 0 +syscon sio SIOCGRARP 0x8961 0 0 0 0 0 +syscon sio SIOCGSTAMP 0x8906 0 0 0 0 0 +syscon sio SIOCGSTAMPNS 0x8907 0 0 0 0 0 +syscon sio SIOCPROTOPRIVATE 0x89e0 0 0 0 0 0 +syscon sio SIOCRTMSG 0x890d 0 0 0 0 0 +syscon sio SIOCSARP 0x8955 0 0 0 0 0 +syscon sio SIOCSIFBR 0x8941 0 0 0 0 0 +syscon sio SIOCSIFENCAP 0x8926 0 0 0 0 0 +syscon sio SIOCSIFHWADDR 0x8924 0 0 0 0 0 +syscon sio SIOCSIFHWBROADCAST 0x8937 0 0 0 0 0 +syscon sio SIOCSIFLINK 0x8911 0 0 0 0 0 +syscon sio SIOCSIFMAP 0x8971 0 0 0 0 0 +syscon sio SIOCSIFMEM 0x8920 0 0 0 0 0 +syscon sio SIOCSIFPFLAGS 0x8934 0 0 0 0 0 +syscon sio SIOCSIFSLAVE 0x8930 0 0 0 0 0 +syscon sio SIOCSIFTXQLEN 0x8943 0 0 0 0 0 +syscon sio SIOCSRARP 0x8962 0 0 0 0 0 +syscon sio SIOGIFINDEX 0x8933 0 0 0 0 0 -syscon af AF_UNSPEC 0 0 0 0 0 # consensus -syscon af AF_UNIX 1 1 1 1 1 # consensus -syscon af AF_LOCAL 1 1 1 1 0 # unix consensus -syscon af AF_FILE 1 0 0 0 0 -syscon af AF_INET 2 2 2 2 2 # consensus -syscon af AF_AX25 3 0 0 0 0 -syscon af AF_IPX 4 23 23 23 0 # bsd consensus -syscon af AF_APPLETALK 5 0x10 0x10 0x10 0x10 # bsd consensus -syscon af AF_NETROM 6 0 0 0 0 -syscon af AF_BRIDGE 7 0 0 0 0 -syscon af AF_ATMPVC 8 0 0 0 0 -syscon af AF_X25 9 0 0 0 0 -syscon af AF_INET6 10 30 28 24 23 -syscon af AF_ROSE 11 0 0 0 0 -syscon af AF_NETBEUI 13 0 0 0 0 -syscon af AF_SECURITY 14 0 0 0 0 -syscon af AF_KEY 15 0 0 30 0 -syscon af AF_ROUTE 16 17 17 17 0 # bsd consensus -syscon af AF_NETLINK 16 0 0 0 0 -syscon af AF_PACKET 17 0 0 0 0 -syscon af AF_ASH 18 0 0 0 0 -syscon af AF_ECONET 19 0 0 0 0 -syscon af AF_ATMSVC 20 0 0 0 0 -syscon af AF_RDS 21 0 0 0 0 -syscon af AF_SNA 22 11 11 11 11 # bsd consensus -syscon af AF_IRDA 23 0 0 0 0 -syscon af AF_PPPOX 24 0 0 0 0 -syscon af AF_WANPIPE 25 0 0 0 0 -syscon af AF_LLC 26 0 0 0 0 -syscon af AF_IB 27 0 0 0 0 -syscon af AF_MPLS 28 0 0 33 0 -syscon af AF_CAN 29 0 0 0 0 -syscon af AF_TIPC 30 0 0 0 0 -syscon af AF_BLUETOOTH 31 0 36 0x20 0 -syscon af AF_IUCV 0x20 0 0 0 0 -syscon af AF_RXRPC 33 0 0 0 0 -syscon af AF_ISDN 34 28 26 26 0 -syscon af AF_PHONET 35 0 0 0 0 -syscon af AF_IEEE802154 36 0 0 0 0 -syscon af AF_CAIF 37 0 0 0 0 -syscon af AF_ALG 38 0 0 0 0 -syscon af AF_NFC 39 0 0 0 0 -syscon af AF_VSOCK 40 0 0 0 0 -syscon af AF_KCM 41 0 0 0 0 -syscon af AF_MAX 42 40 42 36 35 +syscon af AF_UNSPEC 0 0 0 0 0 0 # consensus +syscon af AF_UNIX 1 1 1 1 1 1 # consensus +syscon af AF_LOCAL 1 1 1 1 1 0 # unix consensus +syscon af AF_FILE 1 0 0 0 0 0 +syscon af AF_INET 2 2 2 2 2 2 # consensus +syscon af AF_AX25 3 0 0 0 0 0 +syscon af AF_IPX 4 23 23 23 23 0 # bsd consensus +syscon af AF_APPLETALK 5 0x10 0x10 0x10 0x10 0x10 # bsd consensus +syscon af AF_NETROM 6 0 0 0 0 0 +syscon af AF_BRIDGE 7 0 0 0 0 0 +syscon af AF_ATMPVC 8 0 0 0 0 0 +syscon af AF_X25 9 0 0 0 0 0 +syscon af AF_INET6 10 30 28 24 24 23 +syscon af AF_ROSE 11 0 0 0 0 0 +syscon af AF_NETBEUI 13 0 0 0 0 0 +syscon af AF_SECURITY 14 0 0 0 0 0 +syscon af AF_KEY 15 0 0 30 30 0 +syscon af AF_ROUTE 16 17 17 17 34 0 # bsd consensus +syscon af AF_NETLINK 16 0 0 0 0 0 +syscon af AF_PACKET 17 0 0 0 0 0 +syscon af AF_ASH 18 0 0 0 0 0 +syscon af AF_ECONET 19 0 0 0 0 0 +syscon af AF_ATMSVC 20 0 0 0 0 0 +syscon af AF_RDS 21 0 0 0 0 0 +syscon af AF_SNA 22 11 11 11 11 11 # bsd consensus +syscon af AF_IRDA 23 0 0 0 0 0 +syscon af AF_PPPOX 24 0 0 0 0 0 +syscon af AF_WANPIPE 25 0 0 0 0 0 +syscon af AF_LLC 26 0 0 0 0 0 +syscon af AF_IB 27 0 0 0 0 0 +syscon af AF_MPLS 28 0 0 33 33 0 +syscon af AF_CAN 29 0 0 0 35 0 +syscon af AF_TIPC 30 0 0 0 0 0 +syscon af AF_BLUETOOTH 31 0 36 0x20 31 0 +syscon af AF_IUCV 0x20 0 0 0 0 0 +syscon af AF_RXRPC 33 0 0 0 0 0 +syscon af AF_ISDN 34 28 26 26 26 0 +syscon af AF_PHONET 35 0 0 0 0 0 +syscon af AF_IEEE802154 36 0 0 0 0 0 +syscon af AF_CAIF 37 0 0 0 0 0 +syscon af AF_ALG 38 0 0 0 0 0 +syscon af AF_NFC 39 0 0 0 0 0 +syscon af AF_VSOCK 40 0 0 0 0 0 +syscon af AF_KCM 41 0 0 0 0 0 +syscon af AF_MAX 42 40 42 36 37 35 -syscon pf PF_UNIX 1 1 1 1 1 # consensus -syscon pf PF_UNSPEC 0 0 0 0 0 # consensus -syscon pf PF_APPLETALK 5 0x10 0x10 0x10 0x10 # bsd consensus -syscon pf PF_SNA 22 11 11 11 11 # bsd consensus -syscon pf PF_INET6 10 30 28 24 23 -syscon pf PF_MAX 42 40 42 36 35 -syscon pf PF_INET 2 2 2 2 0 # unix consensus -syscon pf PF_LOCAL 1 1 1 1 0 # unix consensus -syscon pf PF_IPX 4 23 23 23 0 # bsd consensus -syscon pf PF_ROUTE 0x10 17 17 17 0 # bsd consensus -syscon pf PF_ISDN 34 28 26 26 0 -syscon pf PF_KEY 15 29 27 30 0 -syscon pf PF_BLUETOOTH 31 0 36 0x20 0 -syscon pf PF_MPLS 28 0 0 33 0 -syscon pf PF_ALG 38 0 0 0 0 -syscon pf PF_ASH 18 0 0 0 0 -syscon pf PF_ATMPVC 8 0 0 0 0 -syscon pf PF_ATMSVC 20 0 0 0 0 -syscon pf PF_AX25 3 0 0 0 0 -syscon pf PF_BRIDGE 7 0 0 0 0 -syscon pf PF_CAIF 37 0 0 0 0 -syscon pf PF_CAN 29 0 0 0 0 -syscon pf PF_ECONET 19 0 0 0 0 -syscon pf PF_FILE 1 0 0 0 0 -syscon pf PF_IB 27 0 0 0 0 -syscon pf PF_IEEE802154 36 0 0 0 0 -syscon pf PF_IRDA 23 0 0 0 0 -syscon pf PF_IUCV 0x20 0 0 0 0 -syscon pf PF_KCM 41 0 0 0 0 -syscon pf PF_LLC 26 0 0 0 0 -syscon pf PF_NETBEUI 13 0 0 0 0 -syscon pf PF_NETLINK 0x10 0 0 0 0 -syscon pf PF_NETROM 6 0 0 0 0 -syscon pf PF_NFC 39 0 0 0 0 -syscon pf PF_PACKET 17 0 0 0 0 -syscon pf PF_PHONET 35 0 0 0 0 -syscon pf PF_PPPOX 24 0 0 0 0 -syscon pf PF_RDS 21 0 0 0 0 -syscon pf PF_ROSE 11 0 0 0 0 -syscon pf PF_RXRPC 33 0 0 0 0 -syscon pf PF_SECURITY 14 0 0 0 0 -syscon pf PF_TIPC 30 0 0 0 0 -syscon pf PF_VSOCK 40 0 0 0 0 -syscon pf PF_WANPIPE 25 0 0 0 0 -syscon pf PF_X25 9 0 0 0 0 +syscon pf PF_UNIX 1 1 1 1 1 1 # consensus +syscon pf PF_UNSPEC 0 0 0 0 0 0 # consensus +syscon pf PF_APPLETALK 5 0x10 0x10 0x10 0x10 0x10 # bsd consensus +syscon pf PF_SNA 22 11 11 11 11 11 # bsd consensus +syscon pf PF_INET6 10 30 28 24 24 23 +syscon pf PF_MAX 42 40 42 36 36 35 +syscon pf PF_INET 2 2 2 2 2 0 # unix consensus +syscon pf PF_LOCAL 1 1 1 1 1 0 # unix consensus +syscon pf PF_IPX 4 23 23 23 23 0 # bsd consensus +syscon pf PF_ROUTE 0x10 17 17 17 17 0 # bsd consensus +syscon pf PF_ISDN 34 28 26 26 26 0 +syscon pf PF_KEY 15 29 27 30 30 0 +syscon pf PF_BLUETOOTH 31 0 36 0x20 0x20 0 +syscon pf PF_MPLS 28 0 0 33 33 0 +syscon pf PF_ALG 38 0 0 0 0 0 +syscon pf PF_ASH 18 0 0 0 0 0 +syscon pf PF_ATMPVC 8 0 0 0 0 0 +syscon pf PF_ATMSVC 20 0 0 0 0 0 +syscon pf PF_AX25 3 0 0 0 0 0 +syscon pf PF_BRIDGE 7 0 0 0 0 0 +syscon pf PF_CAIF 37 0 0 0 0 0 +syscon pf PF_CAN 29 0 0 0 0 0 +syscon pf PF_ECONET 19 0 0 0 0 0 +syscon pf PF_FILE 1 0 0 0 0 0 +syscon pf PF_IB 27 0 0 0 0 0 +syscon pf PF_IEEE802154 36 0 0 0 0 0 +syscon pf PF_IRDA 23 0 0 0 0 0 +syscon pf PF_IUCV 0x20 0 0 0 0 0 +syscon pf PF_KCM 41 0 0 0 0 0 +syscon pf PF_LLC 26 0 0 0 0 0 +syscon pf PF_NETBEUI 13 0 0 0 0 0 +syscon pf PF_NETLINK 0x10 0 0 0 0 0 +syscon pf PF_NETROM 6 0 0 0 0 0 +syscon pf PF_NFC 39 0 0 0 0 0 +syscon pf PF_PACKET 17 0 0 0 0 0 +syscon pf PF_PHONET 35 0 0 0 0 0 +syscon pf PF_PPPOX 24 0 0 0 0 0 +syscon pf PF_RDS 21 0 0 0 0 0 +syscon pf PF_ROSE 11 0 0 0 0 0 +syscon pf PF_RXRPC 33 0 0 0 0 0 +syscon pf PF_SECURITY 14 0 0 0 0 0 +syscon pf PF_TIPC 30 0 0 0 0 0 +syscon pf PF_VSOCK 40 0 0 0 0 0 +syscon pf PF_WANPIPE 25 0 0 0 0 0 +syscon pf PF_X25 9 0 0 0 0 0 -syscon ip IP_DEFAULT_MULTICAST_LOOP 1 1 1 1 1 # consensus -syscon ip IP_DEFAULT_MULTICAST_TTL 1 1 1 1 1 # consensus -syscon ip IP_PMTUDISC_DONT 0 0 0 0 0 # consensus -syscon ip IP_HDRINCL 3 2 2 2 2 # bsd consensus -syscon ip IP_MAX_MEMBERSHIPS 20 0x0fff 0x0fff 0x0fff 20 # bsd consensus -syscon ip IP_OPTIONS 4 1 1 1 1 # bsd consensus -syscon ip IP_TOS 1 3 3 3 8 # bsd consensus -syscon ip IP_RECVTTL 12 24 65 31 21 -syscon ip IP_ADD_MEMBERSHIP 35 12 12 12 0 # bsd consensus -syscon ip IP_DROP_MEMBERSHIP 36 13 13 13 0 # bsd consensus -syscon ip IP_MULTICAST_IF 0x20 9 9 9 0 # bsd consensus -syscon ip IP_MULTICAST_LOOP 34 11 11 11 0 # bsd consensus -syscon ip IP_MULTICAST_TTL 33 10 10 10 0 # bsd consensus -syscon ip IP_RECVOPTS 6 5 5 5 0 # bsd consensus -syscon ip IP_RECVRETOPTS 7 6 6 6 0 # bsd consensus -syscon ip IP_RETOPTS 7 8 8 8 0 # bsd consensus -syscon ip IP_TTL 2 4 4 4 0 # bsd consensus -syscon ip IP_ADD_SOURCE_MEMBERSHIP 39 70 70 0 15 -syscon ip IP_BLOCK_SOURCE 38 72 72 0 17 -syscon ip IP_DROP_SOURCE_MEMBERSHIP 40 71 71 0 0x10 -syscon ip IP_UNBLOCK_SOURCE 37 73 73 0 18 -syscon ip IP_IPSEC_POLICY 0x10 21 21 0 0 -syscon ip IP_MINTTL 21 0 66 0x20 0 -syscon ip IP_MSFILTER 41 74 74 0 0 -syscon ip IP_PKTINFO 8 26 0 0 19 -syscon ip IP_RECVTOS 13 0 68 0 40 -syscon ip IP_MTU 14 0 0 0 73 # bsd consensus -syscon ip IP_MTU_DISCOVER 10 0 0 0 71 # bsd consensus -syscon ip IP_RECVERR 11 0 0 0 75 # bsd consensus -syscon ip IP_UNICAST_IF 50 0 0 0 31 # bsd consensus -syscon ip IP_ORIGDSTADDR 20 0 27 0 0 -syscon ip IP_RECVORIGDSTADDR 20 0 27 0 0 -syscon ip IP_BIND_ADDRESS_NO_PORT 24 0 0 0 0 -syscon ip IP_CHECKSUM 23 0 0 0 0 -syscon ip IP_FREEBIND 15 0 0 0 0 -syscon ip IP_MULTICAST_ALL 49 0 0 0 0 -syscon ip IP_NODEFRAG 22 0 0 0 0 -syscon ip IP_PASSSEC 18 0 0 0 0 -syscon ip IP_PKTOPTIONS 9 0 0 0 0 -syscon ip IP_PMTUDISC 10 0 0 0 0 -syscon ip IP_PMTUDISC_DO 2 0 0 0 0 -syscon ip IP_PMTUDISC_INTERFACE 4 0 0 0 0 -syscon ip IP_PMTUDISC_OMIT 5 0 0 0 0 -syscon ip IP_PMTUDISC_PROBE 3 0 0 0 0 -syscon ip IP_PMTUDISC_WANT 1 0 0 0 0 -syscon ip IP_ROUTER_ALERT 5 0 0 0 0 -syscon ip IP_TRANSPARENT 19 0 0 0 0 -syscon ip IP_XFRM_POLICY 17 0 0 0 0 -syscon ip INET_ADDRSTRLEN 0x10 0x10 0x10 0x10 22 # unix consensus +syscon ip IP_DEFAULT_MULTICAST_LOOP 1 1 1 1 1 1 # consensus +syscon ip IP_DEFAULT_MULTICAST_TTL 1 1 1 1 1 1 # consensus +syscon ip IP_PMTUDISC_DONT 0 0 0 0 0 0 # consensus +syscon ip IP_HDRINCL 3 2 2 2 2 2 # bsd consensus +syscon ip IP_MAX_MEMBERSHIPS 20 0x0fff 0x0fff 0x0fff 0x0fff 20 # bsd consensus +syscon ip IP_OPTIONS 4 1 1 1 1 1 # bsd consensus +syscon ip IP_TOS 1 3 3 3 3 8 # bsd consensus +syscon ip IP_RECVTTL 12 24 65 31 31 21 +syscon ip IP_ADD_MEMBERSHIP 35 12 12 12 12 0 # bsd consensus +syscon ip IP_DROP_MEMBERSHIP 36 13 13 13 13 0 # bsd consensus +syscon ip IP_MULTICAST_IF 0x20 9 9 9 9 0 # bsd consensus +syscon ip IP_MULTICAST_LOOP 34 11 11 11 11 0 # bsd consensus +syscon ip IP_MULTICAST_TTL 33 10 10 10 10 0 # bsd consensus +syscon ip IP_RECVOPTS 6 5 5 5 5 0 # bsd consensus +syscon ip IP_RECVRETOPTS 7 6 6 6 6 0 # bsd consensus +syscon ip IP_RETOPTS 7 8 8 8 8 0 # bsd consensus +syscon ip IP_TTL 2 4 4 4 4 0 # bsd consensus +syscon ip IP_ADD_SOURCE_MEMBERSHIP 39 70 70 0 0 15 +syscon ip IP_BLOCK_SOURCE 38 72 72 0 0 17 +syscon ip IP_DROP_SOURCE_MEMBERSHIP 40 71 71 0 0 0x10 +syscon ip IP_UNBLOCK_SOURCE 37 73 73 0 0 18 +syscon ip IP_IPSEC_POLICY 0x10 21 21 0 0 0 +syscon ip IP_MINTTL 21 0 66 0x20 0x20 0 +syscon ip IP_MSFILTER 41 74 74 0 0 0 +syscon ip IP_PKTINFO 8 26 0 0 0 19 +syscon ip IP_RECVTOS 13 0 68 0 0 40 +syscon ip IP_MTU 14 0 0 0 0 73 # bsd consensus +syscon ip IP_MTU_DISCOVER 10 0 0 0 0 71 # bsd consensus +syscon ip IP_RECVERR 11 0 0 0 0 75 # bsd consensus +syscon ip IP_UNICAST_IF 50 0 0 0 0 31 # bsd consensus +syscon ip IP_ORIGDSTADDR 20 0 27 0 0 0 +syscon ip IP_RECVORIGDSTADDR 20 0 27 0 0 0 +syscon ip IP_BIND_ADDRESS_NO_PORT 24 0 0 0 0 0 +syscon ip IP_CHECKSUM 23 0 0 0 0 0 +syscon ip IP_FREEBIND 15 0 0 0 0 0 +syscon ip IP_MULTICAST_ALL 49 0 0 0 0 0 +syscon ip IP_NODEFRAG 22 0 0 0 0 0 +syscon ip IP_PASSSEC 18 0 0 0 0 0 +syscon ip IP_PKTOPTIONS 9 0 0 0 0 0 +syscon ip IP_PMTUDISC 10 0 0 0 0 0 +syscon ip IP_PMTUDISC_DO 2 0 0 0 0 0 +syscon ip IP_PMTUDISC_INTERFACE 4 0 0 0 0 0 +syscon ip IP_PMTUDISC_OMIT 5 0 0 0 0 0 +syscon ip IP_PMTUDISC_PROBE 3 0 0 0 0 0 +syscon ip IP_PMTUDISC_WANT 1 0 0 0 0 0 +syscon ip IP_ROUTER_ALERT 5 0 0 0 0 0 +syscon ip IP_TRANSPARENT 19 0 0 0 0 0 +syscon ip IP_XFRM_POLICY 17 0 0 0 0 0 +syscon ip INET_ADDRSTRLEN 0x10 0x10 0x10 0x10 0x10 22 # unix consensus -syscon ipv6 IPV6_PMTUDISC_DONT 0 0 0 0 0 # consensus -syscon ipv6 IPV6_RTHDR_LOOSE 0 0 0 0 0 # consensus -syscon ipv6 IPV6_RTHDR_TYPE_0 0 0 0 0 0 # consensus -syscon ipv6 IPV6_CHECKSUM 7 26 26 26 26 # bsd consensus -syscon ipv6 IPV6_JOIN_GROUP 20 12 12 12 12 # bsd consensus -syscon ipv6 IPV6_LEAVE_GROUP 21 13 13 13 13 # bsd consensus -syscon ipv6 IPV6_MULTICAST_HOPS 18 10 10 10 10 # bsd consensus -syscon ipv6 IPV6_MULTICAST_IF 17 9 9 9 9 # bsd consensus -syscon ipv6 IPV6_MULTICAST_LOOP 19 11 11 11 11 # bsd consensus -syscon ipv6 IPV6_UNICAST_HOPS 0x10 4 4 4 4 # bsd consensus -syscon ipv6 IPV6_V6ONLY 26 27 27 27 27 # bsd consensus -syscon ipv6 IPV6_RECVTCLASS 66 35 57 57 40 -syscon ipv6 IPV6_TCLASS 67 36 61 61 39 -syscon ipv6 IPV6_DONTFRAG 62 0 62 62 14 -syscon ipv6 IPV6_HOPLIMIT 52 0 47 47 21 -syscon ipv6 IPV6_HOPOPTS 54 0 49 49 1 -syscon ipv6 IPV6_PKTINFO 50 0 46 46 19 -syscon ipv6 IPV6_RECVRTHDR 56 0 38 38 38 -syscon ipv6 IPV6_RTHDR 57 0 51 51 0x20 -syscon ipv6 IPV6_DSTOPTS 59 0 50 50 0 -syscon ipv6 IPV6_IPSEC_POLICY 34 28 28 0 0 -syscon ipv6 IPV6_NEXTHOP 9 0 48 48 0 -syscon ipv6 IPV6_PATHMTU 61 0 44 44 0 -syscon ipv6 IPV6_RECVDSTOPTS 58 0 40 40 0 -syscon ipv6 IPV6_RECVHOPLIMIT 51 0 37 37 0 -syscon ipv6 IPV6_RECVHOPOPTS 53 0 39 39 0 -syscon ipv6 IPV6_RECVPATHMTU 60 0 43 43 0 -syscon ipv6 IPV6_RECVPKTINFO 49 0 36 36 0 -syscon ipv6 IPV6_RTHDRDSTOPTS 55 0 35 35 0 -syscon ipv6 IPV6_RTHDR_STRICT 1 1 1 0 0 -syscon ipv6 IPV6_ADD_MEMBERSHIP 20 0 0 0 12 # bsd consensus -syscon ipv6 IPV6_DROP_MEMBERSHIP 21 0 0 0 13 # bsd consensus -syscon ipv6 IPV6_HDRINCL 36 0 0 0 2 # bsd consensus -syscon ipv6 IPV6_MTU 24 0 0 0 72 # bsd consensus -syscon ipv6 IPV6_MTU_DISCOVER 23 0 0 0 71 # bsd consensus -syscon ipv6 IPV6_RECVERR 25 0 0 0 75 # bsd consensus -syscon ipv6 IPV6_2292DSTOPTS 4 23 0 0 0 -syscon ipv6 IPV6_2292HOPLIMIT 8 20 0 0 0 -syscon ipv6 IPV6_2292HOPOPTS 3 22 0 0 0 -syscon ipv6 IPV6_2292PKTINFO 2 19 0 0 0 -syscon ipv6 IPV6_2292PKTOPTIONS 6 25 0 0 0 -syscon ipv6 IPV6_2292RTHDR 5 24 0 0 0 -syscon ipv6 IPV6_AUTOFLOWLABEL 0 0 59 59 0 -syscon ipv6 IPV6_ADDRFORM 1 0 0 0 0 -syscon ipv6 IPV6_AUTHHDR 10 0 0 0 0 -syscon ipv6 IPV6_JOIN_ANYCAST 27 0 0 0 0 -syscon ipv6 IPV6_LEAVE_ANYCAST 28 0 0 0 0 -syscon ipv6 IPV6_PMTUDISC_DO 2 0 0 0 0 -syscon ipv6 IPV6_PMTUDISC_INTERFACE 4 0 0 0 0 -syscon ipv6 IPV6_PMTUDISC_OMIT 5 0 0 0 0 -syscon ipv6 IPV6_PMTUDISC_PROBE 3 0 0 0 0 -syscon ipv6 IPV6_PMTUDISC_WANT 1 0 0 0 0 -syscon ipv6 IPV6_ROUTER_ALERT 22 0 0 0 0 -syscon ipv6 IPV6_RXDSTOPTS 59 0 0 0 0 -syscon ipv6 IPV6_RXHOPOPTS 54 0 0 0 0 -syscon ipv6 IPV6_XFRM_POLICY 35 0 0 0 0 -syscon ipv6 IPV6_MINHOPCOUNT 0 0 0 65 0 -syscon ipv6 IPV6_ORIGDSTADDR 0 0 72 0 0 -syscon ipv6 IPV6_RECVORIGDSTADDR 0 0 72 0 0 -syscon ipv6 INET6_ADDRSTRLEN 46 46 46 46 65 # unix consensus +syscon ipv6 IPV6_PMTUDISC_DONT 0 0 0 0 0 0 # consensus +syscon ipv6 IPV6_RTHDR_LOOSE 0 0 0 0 0 0 # consensus +syscon ipv6 IPV6_RTHDR_TYPE_0 0 0 0 0 0 0 # consensus +syscon ipv6 IPV6_CHECKSUM 7 26 26 26 26 26 # bsd consensus +syscon ipv6 IPV6_JOIN_GROUP 20 12 12 12 12 12 # bsd consensus +syscon ipv6 IPV6_LEAVE_GROUP 21 13 13 13 13 13 # bsd consensus +syscon ipv6 IPV6_MULTICAST_HOPS 18 10 10 10 10 10 # bsd consensus +syscon ipv6 IPV6_MULTICAST_IF 17 9 9 9 9 9 # bsd consensus +syscon ipv6 IPV6_MULTICAST_LOOP 19 11 11 11 11 11 # bsd consensus +syscon ipv6 IPV6_UNICAST_HOPS 0x10 4 4 4 4 4 # bsd consensus +syscon ipv6 IPV6_V6ONLY 26 27 27 27 27 27 # bsd consensus +syscon ipv6 IPV6_RECVTCLASS 66 35 57 57 57 40 +syscon ipv6 IPV6_TCLASS 67 36 61 61 61 39 +syscon ipv6 IPV6_DONTFRAG 62 0 62 62 62 14 +syscon ipv6 IPV6_HOPLIMIT 52 0 47 47 47 21 +syscon ipv6 IPV6_HOPOPTS 54 0 49 49 49 1 +syscon ipv6 IPV6_PKTINFO 50 0 46 46 46 19 +syscon ipv6 IPV6_RECVRTHDR 56 0 38 38 38 38 +syscon ipv6 IPV6_RTHDR 57 0 51 51 51 0x20 +syscon ipv6 IPV6_DSTOPTS 59 0 50 50 50 0 +syscon ipv6 IPV6_IPSEC_POLICY 34 28 28 0 0 0 +syscon ipv6 IPV6_NEXTHOP 9 0 48 48 48 0 +syscon ipv6 IPV6_PATHMTU 61 0 44 44 44 0 +syscon ipv6 IPV6_RECVDSTOPTS 58 0 40 40 40 0 +syscon ipv6 IPV6_RECVHOPLIMIT 51 0 37 37 37 0 +syscon ipv6 IPV6_RECVHOPOPTS 53 0 39 39 39 0 +syscon ipv6 IPV6_RECVPATHMTU 60 0 43 43 43 0 +syscon ipv6 IPV6_RECVPKTINFO 49 0 36 36 36 0 +syscon ipv6 IPV6_RTHDRDSTOPTS 55 0 35 35 35 0 +syscon ipv6 IPV6_RTHDR_STRICT 1 1 1 0 0 0 +syscon ipv6 IPV6_ADD_MEMBERSHIP 20 0 0 0 0 12 # bsd consensus +syscon ipv6 IPV6_DROP_MEMBERSHIP 21 0 0 0 0 13 # bsd consensus +syscon ipv6 IPV6_HDRINCL 36 0 0 0 0 2 # bsd consensus +syscon ipv6 IPV6_MTU 24 0 0 0 0 72 # bsd consensus +syscon ipv6 IPV6_MTU_DISCOVER 23 0 0 0 0 71 # bsd consensus +syscon ipv6 IPV6_RECVERR 25 0 0 0 0 75 # bsd consensus +syscon ipv6 IPV6_2292DSTOPTS 4 23 0 0 0 0 +syscon ipv6 IPV6_2292HOPLIMIT 8 20 0 0 0 0 +syscon ipv6 IPV6_2292HOPOPTS 3 22 0 0 0 0 +syscon ipv6 IPV6_2292PKTINFO 2 19 0 0 0 0 +syscon ipv6 IPV6_2292PKTOPTIONS 6 25 0 0 0 0 +syscon ipv6 IPV6_2292RTHDR 5 24 0 0 0 0 +syscon ipv6 IPV6_AUTOFLOWLABEL 0 0 59 59 59 0 +syscon ipv6 IPV6_ADDRFORM 1 0 0 0 0 0 +syscon ipv6 IPV6_AUTHHDR 10 0 0 0 0 0 +syscon ipv6 IPV6_JOIN_ANYCAST 27 0 0 0 0 0 +syscon ipv6 IPV6_LEAVE_ANYCAST 28 0 0 0 0 0 +syscon ipv6 IPV6_PMTUDISC_DO 2 0 0 0 0 0 +syscon ipv6 IPV6_PMTUDISC_INTERFACE 4 0 0 0 0 0 +syscon ipv6 IPV6_PMTUDISC_OMIT 5 0 0 0 0 0 +syscon ipv6 IPV6_PMTUDISC_PROBE 3 0 0 0 0 0 +syscon ipv6 IPV6_PMTUDISC_WANT 1 0 0 0 0 0 +syscon ipv6 IPV6_ROUTER_ALERT 22 0 0 0 0 0 +syscon ipv6 IPV6_RXDSTOPTS 59 0 0 0 0 0 +syscon ipv6 IPV6_RXHOPOPTS 54 0 0 0 0 0 +syscon ipv6 IPV6_XFRM_POLICY 35 0 0 0 0 0 +syscon ipv6 IPV6_MINHOPCOUNT 0 0 0 65 65 0 +syscon ipv6 IPV6_ORIGDSTADDR 0 0 72 0 0 0 +syscon ipv6 IPV6_RECVORIGDSTADDR 0 0 72 0 0 0 +syscon ipv6 INET6_ADDRSTRLEN 46 46 46 46 46 65 # unix consensus -syscon poll POLLIN 1 1 1 1 0x300 # unix consensus -syscon poll POLLPRI 2 2 2 2 0x0400 # unix consensus -syscon poll POLLOUT 4 4 4 4 0x10 # unix consensus -syscon poll POLLERR 8 8 8 8 1 # unix consensus -syscon poll POLLHUP 0x10 0x10 0x10 0x10 2 # unix consensus -syscon poll POLLNVAL 0x20 0x20 0x20 0x20 4 # unix consensus -syscon poll POLLRDBAND 0x80 0x80 0x80 0x80 0x0200 # unix consensus -syscon poll POLLRDNORM 0x40 0x40 0x40 0x40 0x0100 # unix consensus -syscon poll POLLWRBAND 0x0200 0x0100 0x0100 0x0100 0x20 # bsd consensus -syscon poll POLLWRNORM 0x0100 4 4 4 0x10 # bsd consensus -syscon poll POLLRDHUP 0x2000 0x10 0x10 0x10 2 # bsd consensus (POLLHUP on non-Linux) +syscon poll POLLIN 1 1 1 1 1 0x300 # unix consensus +syscon poll POLLPRI 2 2 2 2 2 0x0400 # unix consensus +syscon poll POLLOUT 4 4 4 4 4 0x10 # unix consensus +syscon poll POLLERR 8 8 8 8 8 1 # unix consensus +syscon poll POLLHUP 0x10 0x10 0x10 0x10 0x10 2 # unix consensus +syscon poll POLLNVAL 0x20 0x20 0x20 0x20 0x20 4 # unix consensus +syscon poll POLLRDBAND 0x80 0x80 0x80 0x80 0x80 0x0200 # unix consensus +syscon poll POLLRDNORM 0x40 0x40 0x40 0x40 0x40 0x0100 # unix consensus +syscon poll POLLWRBAND 0x0200 0x0100 0x0100 0x0100 0x0100 0x20 # bsd consensus +syscon poll POLLWRNORM 0x0100 4 4 4 4 0x10 # bsd consensus +syscon poll POLLRDHUP 0x2000 0x10 0x10 0x10 0x10 2 # bsd consensus (POLLHUP on non-Linux) -syscon sigpoll POLL_ERR 4 4 4 0 0 -syscon sigpoll POLL_HUP 6 6 6 0 0 -syscon sigpoll POLL_IN 1 1 1 0 0 -syscon sigpoll POLL_MSG 3 3 3 0 0 -syscon sigpoll POLL_OUT 2 2 2 0 0 -syscon sigpoll POLL_PRI 5 5 5 0 0 +syscon sigpoll POLL_ERR 4 4 4 0 0 0 +syscon sigpoll POLL_HUP 6 6 6 0 0 0 +syscon sigpoll POLL_IN 1 1 1 0 0 0 +syscon sigpoll POLL_MSG 3 3 3 0 0 0 +syscon sigpoll POLL_OUT 2 2 2 0 0 0 +syscon sigpoll POLL_PRI 5 5 5 0 0 0 -syscon c C_IXOTH 0000001 0000001 0000001 0000001 0 # unix consensus -syscon c C_IWOTH 0000002 0000002 0000002 0000002 0 # unix consensus -syscon c C_IROTH 0000004 0000004 0000004 0000004 0 # unix consensus -syscon c C_IXGRP 0000010 0000010 0000010 0000010 0 # unix consensus -syscon c C_IWGRP 0000020 0000020 0000020 0000020 0 # unix consensus -syscon c C_IRGRP 0000040 0000040 0000040 0000040 0 # unix consensus -syscon c C_IXUSR 0000100 0000100 0000100 0000100 0 # unix consensus -syscon c C_IWUSR 0000200 0000200 0000200 0000200 0 # unix consensus -syscon c C_IRUSR 0000400 0000400 0000400 0000400 0 # unix consensus -syscon c C_ISVTX 0001000 0001000 0001000 0001000 0 # unix consensus -syscon c C_ISGID 0002000 0002000 0002000 0002000 0 # unix consensus -syscon c C_ISUID 0004000 0004000 0004000 0004000 0 # unix consensus -syscon c C_ISFIFO 0010000 0010000 0010000 0010000 0 # unix consensus -syscon c C_ISCHR 0020000 0020000 0020000 0020000 0 # unix consensus -syscon c C_ISDIR 0040000 0040000 0040000 0040000 0 # unix consensus -syscon c C_ISBLK 0060000 0060000 0060000 0060000 0 # unix consensus -syscon c C_ISREG 0100000 0100000 0100000 0100000 0 # unix consensus -syscon c C_ISCTG 0110000 0110000 0110000 0110000 0 # unix consensus -syscon c C_ISLNK 0120000 0120000 0120000 0120000 0 # unix consensus -syscon c C_ISSOCK 0140000 0140000 0140000 0140000 0 # unix consensus +syscon c C_IXOTH 0000001 0000001 0000001 0000001 0000001 0 # unix consensus +syscon c C_IWOTH 0000002 0000002 0000002 0000002 0000002 0 # unix consensus +syscon c C_IROTH 0000004 0000004 0000004 0000004 0000004 0 # unix consensus +syscon c C_IXGRP 0000010 0000010 0000010 0000010 0000010 0 # unix consensus +syscon c C_IWGRP 0000020 0000020 0000020 0000020 0000020 0 # unix consensus +syscon c C_IRGRP 0000040 0000040 0000040 0000040 0000040 0 # unix consensus +syscon c C_IXUSR 0000100 0000100 0000100 0000100 0000100 0 # unix consensus +syscon c C_IWUSR 0000200 0000200 0000200 0000200 0000200 0 # unix consensus +syscon c C_IRUSR 0000400 0000400 0000400 0000400 0000400 0 # unix consensus +syscon c C_ISVTX 0001000 0001000 0001000 0001000 0001000 0 # unix consensus +syscon c C_ISGID 0002000 0002000 0002000 0002000 0002000 0 # unix consensus +syscon c C_ISUID 0004000 0004000 0004000 0004000 0004000 0 # unix consensus +syscon c C_ISFIFO 0010000 0010000 0010000 0010000 0010000 0 # unix consensus +syscon c C_ISCHR 0020000 0020000 0020000 0020000 0020000 0 # unix consensus +syscon c C_ISDIR 0040000 0040000 0040000 0040000 0040000 0 # unix consensus +syscon c C_ISBLK 0060000 0060000 0060000 0060000 0060000 0 # unix consensus +syscon c C_ISREG 0100000 0100000 0100000 0100000 0100000 0 # unix consensus +syscon c C_ISCTG 0110000 0110000 0110000 0110000 0110000 0 # unix consensus +syscon c C_ISLNK 0120000 0120000 0120000 0120000 0120000 0 # unix consensus +syscon c C_ISSOCK 0140000 0140000 0140000 0140000 0140000 0 # unix consensus -syscon fan FAN_CLASS_NOTIF 0 0 0 0 0 # consensus -syscon fan FAN_ACCESS 1 0 0 0 0 -syscon fan FAN_ACCESS_PERM 0x020000 0 0 0 0 -syscon fan FAN_ALLOW 1 0 0 0 0 -syscon fan FAN_ALL_CLASS_BITS 12 0 0 0 0 -syscon fan FAN_ALL_EVENTS 59 0 0 0 0 -syscon fan FAN_ALL_INIT_FLAGS 63 0 0 0 0 -syscon fan FAN_ALL_MARK_FLAGS 255 0 0 0 0 -syscon fan FAN_ALL_OUTGOING_EVENTS 0x03403b 0 0 0 0 -syscon fan FAN_ALL_PERM_EVENTS 0x030000 0 0 0 0 -syscon fan FAN_CLASS_CONTENT 4 0 0 0 0 -syscon fan FAN_CLASS_PRE_CONTENT 8 0 0 0 0 -syscon fan FAN_CLOEXEC 1 0 0 0 0 -syscon fan FAN_CLOSE 24 0 0 0 0 -syscon fan FAN_CLOSE_NOWRITE 0x10 0 0 0 0 -syscon fan FAN_CLOSE_WRITE 8 0 0 0 0 -syscon fan FAN_DENY 2 0 0 0 0 -syscon fan FAN_EVENT_METADATA_LEN 24 0 0 0 0 -syscon fan FAN_EVENT_ON_CHILD 0x08000000 0 0 0 0 -syscon fan FAN_MARK_ADD 1 0 0 0 0 -syscon fan FAN_MARK_DONT_FOLLOW 4 0 0 0 0 -syscon fan FAN_MARK_FLUSH 0x80 0 0 0 0 -syscon fan FAN_MARK_IGNORED_MASK 0x20 0 0 0 0 -syscon fan FAN_MARK_IGNORED_SURV_MODIFY 0x40 0 0 0 0 -syscon fan FAN_MARK_MOUNT 0x10 0 0 0 0 -syscon fan FAN_MARK_ONLYDIR 8 0 0 0 0 -syscon fan FAN_MARK_REMOVE 2 0 0 0 0 -syscon fan FAN_MODIFY 2 0 0 0 0 -syscon fan FAN_NOFD -1 0 0 0 0 -syscon fan FAN_NONBLOCK 2 0 0 0 0 -syscon fan FAN_ONDIR 0x40000000 0 0 0 0 -syscon fan FAN_OPEN 0x20 0 0 0 0 -syscon fan FAN_OPEN_PERM 0x010000 0 0 0 0 -syscon fan FAN_Q_OVERFLOW 0x4000 0 0 0 0 -syscon fan FAN_UNLIMITED_MARKS 0x20 0 0 0 0 -syscon fan FAN_UNLIMITED_QUEUE 0x10 0 0 0 0 +syscon fan FAN_CLASS_NOTIF 0 0 0 0 0 0 # consensus +syscon fan FAN_ACCESS 1 0 0 0 0 0 +syscon fan FAN_ACCESS_PERM 0x020000 0 0 0 0 0 +syscon fan FAN_ALLOW 1 0 0 0 0 0 +syscon fan FAN_ALL_CLASS_BITS 12 0 0 0 0 0 +syscon fan FAN_ALL_EVENTS 59 0 0 0 0 0 +syscon fan FAN_ALL_INIT_FLAGS 63 0 0 0 0 0 +syscon fan FAN_ALL_MARK_FLAGS 255 0 0 0 0 0 +syscon fan FAN_ALL_OUTGOING_EVENTS 0x03403b 0 0 0 0 0 +syscon fan FAN_ALL_PERM_EVENTS 0x030000 0 0 0 0 0 +syscon fan FAN_CLASS_CONTENT 4 0 0 0 0 0 +syscon fan FAN_CLASS_PRE_CONTENT 8 0 0 0 0 0 +syscon fan FAN_CLOEXEC 1 0 0 0 0 0 +syscon fan FAN_CLOSE 24 0 0 0 0 0 +syscon fan FAN_CLOSE_NOWRITE 0x10 0 0 0 0 0 +syscon fan FAN_CLOSE_WRITE 8 0 0 0 0 0 +syscon fan FAN_DENY 2 0 0 0 0 0 +syscon fan FAN_EVENT_METADATA_LEN 24 0 0 0 0 0 +syscon fan FAN_EVENT_ON_CHILD 0x08000000 0 0 0 0 0 +syscon fan FAN_MARK_ADD 1 0 0 0 0 0 +syscon fan FAN_MARK_DONT_FOLLOW 4 0 0 0 0 0 +syscon fan FAN_MARK_FLUSH 0x80 0 0 0 0 0 +syscon fan FAN_MARK_IGNORED_MASK 0x20 0 0 0 0 0 +syscon fan FAN_MARK_IGNORED_SURV_MODIFY 0x40 0 0 0 0 0 +syscon fan FAN_MARK_MOUNT 0x10 0 0 0 0 0 +syscon fan FAN_MARK_ONLYDIR 8 0 0 0 0 0 +syscon fan FAN_MARK_REMOVE 2 0 0 0 0 0 +syscon fan FAN_MODIFY 2 0 0 0 0 0 +syscon fan FAN_NOFD -1 0 0 0 0 0 +syscon fan FAN_NONBLOCK 2 0 0 0 0 0 +syscon fan FAN_ONDIR 0x40000000 0 0 0 0 0 +syscon fan FAN_OPEN 0x20 0 0 0 0 0 +syscon fan FAN_OPEN_PERM 0x010000 0 0 0 0 0 +syscon fan FAN_Q_OVERFLOW 0x4000 0 0 0 0 0 +syscon fan FAN_UNLIMITED_MARKS 0x20 0 0 0 0 0 +syscon fan FAN_UNLIMITED_QUEUE 0x10 0 0 0 0 0 -syscon exit EXIT_SUCCESS 0 0 0 0 0 # consensus -syscon exit EXIT_FAILURE 1 1 1 1 1 # consensus +syscon exit EXIT_SUCCESS 0 0 0 0 0 0 # consensus +syscon exit EXIT_FAILURE 1 1 1 1 1 1 # consensus # Eric Allman's exit() codes # @@ -1386,1030 +1389,1030 @@ syscon exit EXIT_FAILURE 1 1 1 1 1 # consensus # - Dating back to 1980 in 4.0BSD; # - That won't be standardized. # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon ex EX_OK 0 0 0 0 0 # consensus -syscon ex EX_USAGE 64 64 64 64 64 # unix consensus & force NT -syscon ex EX_DATAERR 65 65 65 65 65 # unix consensus & force NT -syscon ex EX_NOINPUT 66 66 66 66 66 # unix consensus & force NT -syscon ex EX_NOUSER 67 67 67 67 67 # unix consensus & force NT -syscon ex EX_NOHOST 68 68 68 68 68 # unix consensus & force NT -syscon ex EX_UNAVAILABLE 69 69 69 69 69 # unix consensus & force NT -syscon ex EX_SOFTWARE 70 70 70 70 70 # unix consensus & force NT -syscon ex EX_OSERR 71 71 71 71 71 # unix consensus & force NT -syscon ex EX_OSFILE 72 72 72 72 72 # unix consensus & force NT -syscon ex EX_CANTCREAT 73 73 73 73 73 # unix consensus & force NT -syscon ex EX_IOERR 74 74 74 74 74 # unix consensus & force NT -syscon ex EX_TEMPFAIL 75 75 75 75 75 # unix consensus & force NT -syscon ex EX_PROTOCOL 76 76 76 76 76 # unix consensus & force NT -syscon ex EX_NOPERM 77 77 77 77 77 # unix consensus & force NT -syscon ex EX_CONFIG 78 78 78 78 78 # unix consensus & force NT -syscon ex EX__BASE 64 64 64 64 64 # unix consensus & force NT -syscon ex EX__MAX 78 78 78 78 78 # unix consensus & force NT +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon ex EX_OK 0 0 0 0 0 0 # consensus +syscon ex EX_USAGE 64 64 64 64 64 64 # unix consensus & force NT +syscon ex EX_DATAERR 65 65 65 65 65 65 # unix consensus & force NT +syscon ex EX_NOINPUT 66 66 66 66 66 66 # unix consensus & force NT +syscon ex EX_NOUSER 67 67 67 67 67 67 # unix consensus & force NT +syscon ex EX_NOHOST 68 68 68 68 68 68 # unix consensus & force NT +syscon ex EX_UNAVAILABLE 69 69 69 69 69 69 # unix consensus & force NT +syscon ex EX_SOFTWARE 70 70 70 70 70 70 # unix consensus & force NT +syscon ex EX_OSERR 71 71 71 71 71 71 # unix consensus & force NT +syscon ex EX_OSFILE 72 72 72 72 72 72 # unix consensus & force NT +syscon ex EX_CANTCREAT 73 73 73 73 73 73 # unix consensus & force NT +syscon ex EX_IOERR 74 74 74 74 74 74 # unix consensus & force NT +syscon ex EX_TEMPFAIL 75 75 75 75 75 75 # unix consensus & force NT +syscon ex EX_PROTOCOL 76 76 76 76 76 76 # unix consensus & force NT +syscon ex EX_NOPERM 77 77 77 77 77 77 # unix consensus & force NT +syscon ex EX_CONFIG 78 78 78 78 78 78 # unix consensus & force NT +syscon ex EX__BASE 64 64 64 64 64 64 # unix consensus & force NT +syscon ex EX__MAX 78 78 78 78 78 78 # unix consensus & force NT # getdents() constants # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon dt DT_UNKNOWN 0 0 0 0 0 # consensus -syscon dt DT_FIFO 1 1 1 1 1 # unix consensus & faked nt -syscon dt DT_CHR 2 2 2 2 2 # unix consensus & faked nt -syscon dt DT_DIR 4 4 4 4 4 # unix consensus & faked nt -syscon dt DT_BLK 6 6 6 6 6 # unix consensus & faked nt -syscon dt DT_REG 8 8 8 8 8 # unix consensus & faked nt -syscon dt DT_LNK 10 10 10 10 10 # unix consensus & faked nt -syscon dt DT_SOCK 12 12 12 12 12 # unix consensus & faked nt +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon dt DT_UNKNOWN 0 0 0 0 0 0 # consensus +syscon dt DT_FIFO 1 1 1 1 1 1 # unix consensus & faked nt +syscon dt DT_CHR 2 2 2 2 2 2 # unix consensus & faked nt +syscon dt DT_DIR 4 4 4 4 4 4 # unix consensus & faked nt +syscon dt DT_BLK 6 6 6 6 6 6 # unix consensus & faked nt +syscon dt DT_REG 8 8 8 8 8 8 # unix consensus & faked nt +syscon dt DT_LNK 10 10 10 10 10 10 # unix consensus & faked nt +syscon dt DT_SOCK 12 12 12 12 12 12 # unix consensus & faked nt # msync() flags # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon ms MS_SYNC 4 16 0 2 4 # faked nt -syscon ms MS_ASYNC 1 1 1 1 1 # consensus (faked nt) -syscon ms MS_INVALIDATE 2 2 2 4 0 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon ms MS_SYNC 4 16 0 2 4 4 # faked nt +syscon ms MS_ASYNC 1 1 1 1 1 1 # consensus (faked nt) +syscon ms MS_INVALIDATE 2 2 2 4 2 0 # mount flags # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon mount MS_ACTIVE 0x40000000 0 0 0 0 -syscon mount MS_BIND 0x1000 0 0 0 0 -syscon mount MS_DIRSYNC 0x80 0 0 0 0 -syscon mount MS_I_VERSION 0x800000 0 0 0 0 -syscon mount MS_KERNMOUNT 0x400000 0 0 0 0 -syscon mount MS_LAZYTIME 0x02000000 0 0 0 0 -syscon mount MS_MANDLOCK 0x40 0 0 0 0 -syscon mount MS_MGC_VAL 0xc0ed0000 0 0 0 0 -syscon mount MS_MOVE 0x2000 0 0 0 0 -syscon mount MS_NOATIME 0x0400 0 0 0 0 -syscon mount MS_NODEV 4 0 0 0 0 -syscon mount MS_NODIRATIME 0x0800 0 0 0 0 -syscon mount MS_NOEXEC 8 0 0 0 0 -syscon mount MS_NOSUID 2 0 0 0 0 -syscon mount MS_NOUSER -2147483648 0 0 0 0 -syscon mount MS_POSIXACL 0x010000 0 0 0 0 -syscon mount MS_PRIVATE 0x040000 0 0 0 0 -syscon mount MS_RDONLY 1 0 0 0 0 -syscon mount MS_REC 0x4000 0 0 0 0 -syscon mount MS_RELATIME 0x200000 0 0 0 0 -syscon mount MS_REMOUNT 0x20 0 0 0 0 -syscon mount MS_RMT_MASK 0x02800051 0 0 0 0 -syscon mount MS_SHARED 0x100000 0 0 0 0 -syscon mount MS_SILENT 0x8000 0 0 0 0 -syscon mount MS_SLAVE 0x080000 0 0 0 0 -syscon mount MS_STRICTATIME 0x01000000 0 0 0 0 -syscon mount MS_SYNCHRONOUS 0x10 0 0 0 0 -syscon mount MS_UNBINDABLE 0x020000 0 0 0 0 -syscon mount MS_MGC_MSK 0xffff0000 0 0 0 0 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon mount MS_ACTIVE 0x40000000 0 0 0 0 0 +syscon mount MS_BIND 0x1000 0 0 0 0 0 +syscon mount MS_DIRSYNC 0x80 0 0 0 0 0 +syscon mount MS_I_VERSION 0x800000 0 0 0 0 0 +syscon mount MS_KERNMOUNT 0x400000 0 0 0 0 0 +syscon mount MS_LAZYTIME 0x02000000 0 0 0 0 0 +syscon mount MS_MANDLOCK 0x40 0 0 0 0 0 +syscon mount MS_MGC_VAL 0xc0ed0000 0 0 0 0 0 +syscon mount MS_MOVE 0x2000 0 0 0 0 0 +syscon mount MS_NOATIME 0x0400 0 0 0 0 0 +syscon mount MS_NODEV 4 0 0 0 0 0 +syscon mount MS_NODIRATIME 0x0800 0 0 0 0 0 +syscon mount MS_NOEXEC 8 0 0 0 0 0 +syscon mount MS_NOSUID 2 0 0 0 0 0 +syscon mount MS_NOUSER -2147483648 0 0 0 0 0 +syscon mount MS_POSIXACL 0x010000 0 0 0 0 0 +syscon mount MS_PRIVATE 0x040000 0 0 0 0 0 +syscon mount MS_RDONLY 1 0 0 0 0 0 +syscon mount MS_REC 0x4000 0 0 0 0 0 +syscon mount MS_RELATIME 0x200000 0 0 0 0 0 +syscon mount MS_REMOUNT 0x20 0 0 0 0 0 +syscon mount MS_RMT_MASK 0x02800051 0 0 0 0 0 +syscon mount MS_SHARED 0x100000 0 0 0 0 0 +syscon mount MS_SILENT 0x8000 0 0 0 0 0 +syscon mount MS_SLAVE 0x080000 0 0 0 0 0 +syscon mount MS_STRICTATIME 0x01000000 0 0 0 0 0 +syscon mount MS_SYNCHRONOUS 0x10 0 0 0 0 0 +syscon mount MS_UNBINDABLE 0x020000 0 0 0 0 0 +syscon mount MS_MGC_MSK 0xffff0000 0 0 0 0 0 # TODO(jart): MSG_ZEROCOPY -syscon msg MSG_OOB 1 1 1 1 1 # consensus -syscon msg MSG_PEEK 2 2 2 2 2 # consensus -syscon msg MSG_DONTROUTE 4 4 4 4 4 # consensus -syscon msg MSG_FASTOPEN 0x20000000 0 0 0 0 # TODO -syscon msg MSG_WAITALL 0x0100 0x40 0x40 0x40 8 # bsd consensus -syscon msg MSG_TRUNC 0x20 0x10 0x10 0x10 0x0100 # bsd consensus -syscon msg MSG_CTRUNC 8 0x20 0x20 0x20 0x0200 # bsd consensus -syscon msg MSG_ERRQUEUE 0x2000 0 0 0 0x1000 # bsd consensus -syscon msg MSG_NOERROR 0x1000 0x1000 0x1000 0x1000 0 # unix consensus -syscon msg MSG_DONTWAIT 0x40 0x80 0x80 0x80 0 # bsd consensus -syscon msg MSG_EOR 0x80 8 8 8 0 # bsd consensus -syscon msg MSG_CMSG_CLOEXEC 0x40000000 0 0x040000 0x0800 0 -syscon msg MSG_NOSIGNAL 0x4000 0 0x020000 0x0400 0 -syscon msg MSG_WAITFORONE 0x010000 0 0x080000 0 0 -syscon msg MSG_BATCH 0x040000 0 0 0 0 -syscon msg MSG_CONFIRM 0x0800 0 0 0 0 -syscon msg MSG_EXCEPT 0x2000 0 0 0 0 -syscon msg MSG_FIN 0x0200 0 0 0 0 -syscon msg MSG_INFO 12 0 0 0 0 -syscon msg MSG_MORE 0x8000 0 0 0 0 -syscon msg MSG_PARITY_ERROR 9 0 0 0 0 -syscon msg MSG_PROXY 0x10 0 0 0 0 -syscon msg MSG_RST 0x1000 0 0 0 0 -syscon msg MSG_STAT 11 0 0 0 0 -syscon msg MSG_SYN 0x0400 0 0 0 0 +syscon msg MSG_OOB 1 1 1 1 1 1 # consensus +syscon msg MSG_PEEK 2 2 2 2 2 2 # consensus +syscon msg MSG_DONTROUTE 4 4 4 4 4 4 # consensus +syscon msg MSG_FASTOPEN 0x20000000 0 0 0 0 0 # TODO +syscon msg MSG_WAITALL 0x0100 0x40 0x40 0x40 0x40 8 # bsd consensus +syscon msg MSG_TRUNC 0x20 0x10 0x10 0x10 0x10 0x0100 # bsd consensus +syscon msg MSG_CTRUNC 8 0x20 0x20 0x20 0x20 0x0200 # bsd consensus +syscon msg MSG_ERRQUEUE 0x2000 0 0 0 0 0x1000 # bsd consensus +syscon msg MSG_NOERROR 0x1000 0x1000 0x1000 0x1000 0x1000 0 # unix consensus +syscon msg MSG_DONTWAIT 0x40 0x80 0x80 0x80 0x80 0 # bsd consensus +syscon msg MSG_EOR 0x80 8 8 8 8 0 # bsd consensus +syscon msg MSG_CMSG_CLOEXEC 0x40000000 0 0x040000 0x0800 0x0800 0 +syscon msg MSG_NOSIGNAL 0x4000 0 0x020000 0x0400 0x0400 0 +syscon msg MSG_WAITFORONE 0x010000 0 0x080000 0 0x2000 0 +syscon msg MSG_BATCH 0x040000 0 0 0 0 0 +syscon msg MSG_CONFIRM 0x0800 0 0 0 0 0 +syscon msg MSG_EXCEPT 0x2000 0 0 0 0 0 +syscon msg MSG_FIN 0x0200 0 0 0 0 0 +syscon msg MSG_INFO 12 0 0 0 0 0 +syscon msg MSG_MORE 0x8000 0 0 0 0 0 +syscon msg MSG_PARITY_ERROR 9 0 0 0 0 0 +syscon msg MSG_PROXY 0x10 0 0 0 0 0 +syscon msg MSG_RST 0x1000 0 0 0 0 0 +syscon msg MSG_STAT 11 0 0 0 0 0 +syscon msg MSG_SYN 0x0400 0 0 0 0 0 -syscon in IN_LOOPBACKNET 127 127 127 127 0 # unix consensus -syscon in IN_ACCESS 1 0 0 0 0 -syscon in IN_ALL_EVENTS 0x0fff 0 0 0 0 -syscon in IN_ATTRIB 4 0 0 0 0 -syscon in IN_CLOEXEC 0x080000 0 0 0 0 -syscon in IN_CLOSE 24 0 0 0 0 -syscon in IN_CLOSE_NOWRITE 0x10 0 0 0 0 -syscon in IN_CLOSE_WRITE 8 0 0 0 0 -syscon in IN_CREATE 0x0100 0 0 0 0 -syscon in IN_DELETE 0x0200 0 0 0 0 -syscon in IN_DELETE_SELF 0x0400 0 0 0 0 -syscon in IN_DONT_FOLLOW 0x02000000 0 0 0 0 -syscon in IN_EXCL_UNLINK 0x04000000 0 0 0 0 -syscon in IN_IGNORED 0x8000 0 0 0 0 -syscon in IN_ISDIR 0x40000000 0 0 0 0 -syscon in IN_MASK_ADD 0x20000000 0 0 0 0 -syscon in IN_MODIFY 2 0 0 0 0 -syscon in IN_MOVE 192 0 0 0 0 -syscon in IN_MOVED_FROM 0x40 0 0 0 0 -syscon in IN_MOVED_TO 0x80 0 0 0 0 -syscon in IN_MOVE_SELF 0x0800 0 0 0 0 -syscon in IN_NONBLOCK 0x0800 0 0 0 0 -syscon in IN_ONESHOT 0x80000000 0 0 0 0 -syscon in IN_ONLYDIR 0x01000000 0 0 0 0 -syscon in IN_OPEN 0x20 0 0 0 0 -syscon in IN_Q_OVERFLOW 0x4000 0 0 0 0 -syscon in IN_UNMOUNT 0x2000 0 0 0 0 +syscon in IN_LOOPBACKNET 127 127 127 127 127 0 # unix consensus +syscon in IN_ACCESS 1 0 0 0 0 0 +syscon in IN_ALL_EVENTS 0x0fff 0 0 0 0 0 +syscon in IN_ATTRIB 4 0 0 0 0 0 +syscon in IN_CLOEXEC 0x080000 0 0 0 0 0 +syscon in IN_CLOSE 24 0 0 0 0 0 +syscon in IN_CLOSE_NOWRITE 0x10 0 0 0 0 0 +syscon in IN_CLOSE_WRITE 8 0 0 0 0 0 +syscon in IN_CREATE 0x0100 0 0 0 0 0 +syscon in IN_DELETE 0x0200 0 0 0 0 0 +syscon in IN_DELETE_SELF 0x0400 0 0 0 0 0 +syscon in IN_DONT_FOLLOW 0x02000000 0 0 0 0 0 +syscon in IN_EXCL_UNLINK 0x04000000 0 0 0 0 0 +syscon in IN_IGNORED 0x8000 0 0 0 0 0 +syscon in IN_ISDIR 0x40000000 0 0 0 0 0 +syscon in IN_MASK_ADD 0x20000000 0 0 0 0 0 +syscon in IN_MODIFY 2 0 0 0 0 0 +syscon in IN_MOVE 192 0 0 0 0 0 +syscon in IN_MOVED_FROM 0x40 0 0 0 0 0 +syscon in IN_MOVED_TO 0x80 0 0 0 0 0 +syscon in IN_MOVE_SELF 0x0800 0 0 0 0 0 +syscon in IN_NONBLOCK 0x0800 0 0 0 0 0 +syscon in IN_ONESHOT 0x80000000 0 0 0 0 0 +syscon in IN_ONLYDIR 0x01000000 0 0 0 0 0 +syscon in IN_OPEN 0x20 0 0 0 0 0 +syscon in IN_Q_OVERFLOW 0x4000 0 0 0 0 0 +syscon in IN_UNMOUNT 0x2000 0 0 0 0 0 -syscon iff IFF_BROADCAST 2 2 2 2 2 # consensus -syscon iff IFF_LOOPBACK 8 8 8 8 4 # unix consensus -syscon iff IFF_MULTICAST 0x1000 0x8000 0x8000 0x8000 0x10 # bsd consensus -syscon iff IFF_ALLMULTI 0x0200 0x0200 0x0200 0x0200 0 # unix consensus -syscon iff IFF_DEBUG 4 4 4 4 0 # unix consensus -syscon iff IFF_NOARP 0x80 0x80 0x80 0x80 0 # unix consensus -syscon iff IFF_POINTOPOINT 0x10 0x10 0x10 0x10 0 # unix consensus -syscon iff IFF_PROIFF 0x0100 0x0100 0x0100 0x0100 0 # unix consensus -syscon iff IFF_RUNNING 0x40 0x40 0x40 0x40 0 # unix consensus -syscon iff IFF_NOTRAILERS 0x20 0x20 0 0 0 -syscon iff IFF_AUTOMEDIA 0x4000 0 0 0 0 -syscon iff IFF_DYNAMIC 0x8000 0 0 0 0 -syscon iff IFF_MASTER 0x0400 0 0 0 0 -syscon iff IFF_PORTSEL 0x2000 0 0 0 0 -syscon iff IFF_SLAVE 0x0800 0 0 0 0 +syscon iff IFF_BROADCAST 2 2 2 2 2 2 # consensus +syscon iff IFF_LOOPBACK 8 8 8 8 8 4 # unix consensus +syscon iff IFF_MULTICAST 0x1000 0x8000 0x8000 0x8000 0x8000 0x10 # bsd consensus +syscon iff IFF_ALLMULTI 0x0200 0x0200 0x0200 0x0200 0x0200 0 # unix consensus +syscon iff IFF_DEBUG 4 4 4 4 4 0 # unix consensus +syscon iff IFF_NOARP 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon iff IFF_POINTOPOINT 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon iff IFF_PROIFF 0x0100 0x0100 0x0100 0x0100 0x0100 0 # unix consensus +syscon iff IFF_RUNNING 0x40 0x40 0x40 0x40 0x40 0 # unix consensus +syscon iff IFF_NOTRAILERS 0x20 0x20 0 0 0 0 +syscon iff IFF_AUTOMEDIA 0x4000 0 0 0 0 0 +syscon iff IFF_DYNAMIC 0x8000 0 0 0 0 0 +syscon iff IFF_MASTER 0x0400 0 0 0 0 0 +syscon iff IFF_PORTSEL 0x2000 0 0 0 0 0 +syscon iff IFF_SLAVE 0x0800 0 0 0 0 0 -syscon nd ND_RA_FLAG_MANAGED 0x80 0x80 0x80 0x80 0x80 # consensus -syscon nd ND_RA_FLAG_OTHER 0x40 0x40 0x40 0x40 0x40 # consensus -syscon nd ND_NA_FLAG_OVERRIDE 0x20 0x20 0x20 0x20 0x20000000 # unix consensus -syscon nd ND_NA_FLAG_ROUTER 0x80 0x80 0x80 0x80 0x80000000 # unix consensus -syscon nd ND_NA_FLAG_SOLICITED 0x40 0x40 0x40 0x40 0x40000000 # unix consensus -syscon nd ND_NEIGHBOR_ADVERT 136 136 136 136 0 # unix consensus -syscon nd ND_NEIGHBOR_SOLICIT 135 135 135 135 0 # unix consensus -syscon nd ND_REDIRECT 137 137 137 137 0 # unix consensus -syscon nd ND_ROUTER_ADVERT 134 134 134 134 0 # unix consensus -syscon nd ND_ROUTER_SOLICIT 133 133 133 133 0 # unix consensus -syscon nd ND_RA_FLAG_HOME_AGENT 0x20 0 0 0 0x20 # bsd consensus +syscon nd ND_RA_FLAG_MANAGED 0x80 0x80 0x80 0x80 0x80 0x80 # consensus +syscon nd ND_RA_FLAG_OTHER 0x40 0x40 0x40 0x40 0x40 0x40 # consensus +syscon nd ND_NA_FLAG_OVERRIDE 0x20 0x20 0x20 0x20 0x20 0x20000000 # unix consensus +syscon nd ND_NA_FLAG_ROUTER 0x80 0x80 0x80 0x80 0x80 0x80000000 # unix consensus +syscon nd ND_NA_FLAG_SOLICITED 0x40 0x40 0x40 0x40 0x40 0x40000000 # unix consensus +syscon nd ND_NEIGHBOR_ADVERT 136 136 136 136 136 0 # unix consensus +syscon nd ND_NEIGHBOR_SOLICIT 135 135 135 135 135 0 # unix consensus +syscon nd ND_REDIRECT 137 137 137 137 137 0 # unix consensus +syscon nd ND_ROUTER_ADVERT 134 134 134 134 134 0 # unix consensus +syscon nd ND_ROUTER_SOLICIT 133 133 133 133 133 0 # unix consensus +syscon nd ND_RA_FLAG_HOME_AGENT 0x20 0 0 0 0 0x20 # bsd consensus -syscon rlim RLIMIT_CPU 0 0 0 0 -1 # unix consensus -syscon rlim RLIMIT_FSIZE 1 1 1 1 -1 # unix consensus -syscon rlim RLIMIT_DATA 2 2 2 2 -1 # unix consensus -syscon rlim RLIMIT_STACK 3 3 3 3 -1 # unix consensus -syscon rlim RLIMIT_CORE 4 4 4 4 -1 # unix consensus -syscon rlim RLIMIT_RSS 5 5 5 5 -1 # unix consensus -syscon rlim RLIMIT_NPROC 6 7 7 7 -1 # bsd consensus -syscon rlim RLIMIT_NOFILE 7 8 8 8 -1 # bsd consensus -syscon rlim RLIMIT_MEMLOCK 8 6 6 6 -1 # bsd consensus -syscon rlim RLIMIT_AS 9 5 10 -1 -1 -syscon rlim RLIMIT_LOCKS 10 -1 -1 -1 -1 # bsd consensus -syscon rlim RLIMIT_SIGPENDING 11 -1 -1 -1 -1 # bsd consensus -syscon rlim RLIMIT_MSGQUEUE 12 -1 -1 -1 -1 # bsd consensus -syscon rlim RLIMIT_NICE 13 -1 -1 -1 -1 # bsd consensus -syscon rlim RLIMIT_RTPRIO 14 -1 -1 -1 -1 # bsd consensus -syscon rlim RLIMIT_NLIMITS 16 -1 -1 -1 -1 # bsd consensus +syscon rlim RLIMIT_CPU 0 0 0 0 0 -1 # unix consensus +syscon rlim RLIMIT_FSIZE 1 1 1 1 1 -1 # unix consensus +syscon rlim RLIMIT_DATA 2 2 2 2 2 -1 # unix consensus +syscon rlim RLIMIT_STACK 3 3 3 3 3 -1 # unix consensus +syscon rlim RLIMIT_CORE 4 4 4 4 4 -1 # unix consensus +syscon rlim RLIMIT_RSS 5 5 5 5 5 -1 # unix consensus +syscon rlim RLIMIT_NPROC 6 7 7 7 7 -1 # bsd consensus +syscon rlim RLIMIT_NOFILE 7 8 8 8 8 -1 # bsd consensus +syscon rlim RLIMIT_MEMLOCK 8 6 6 6 6 -1 # bsd consensus +syscon rlim RLIMIT_AS 9 5 10 -1 -1 -1 +syscon rlim RLIMIT_LOCKS 10 -1 -1 -1 -1 -1 # bsd consensus +syscon rlim RLIMIT_SIGPENDING 11 -1 -1 -1 -1 -1 # bsd consensus +syscon rlim RLIMIT_MSGQUEUE 12 -1 -1 -1 -1 -1 # bsd consensus +syscon rlim RLIMIT_NICE 13 -1 -1 -1 -1 -1 # bsd consensus +syscon rlim RLIMIT_RTPRIO 14 -1 -1 -1 -1 -1 # bsd consensus +syscon rlim RLIMIT_NLIMITS 16 -1 -1 -1 -1 -1 # bsd consensus -syscon misc TCFLSH 0x540b 0 0 0 0 -syscon misc TCIFLUSH 0 1 1 1 0 # bsd consensus -syscon misc TCIOFF 2 3 3 3 0 # bsd consensus -syscon misc TCIOFLUSH 2 3 3 3 0 # bsd consensus -syscon misc TCION 3 4 4 4 0 # bsd consensus -syscon misc TCOFLUSH 1 2 2 2 0 # bsd consensus -syscon misc TCOOFF 0 1 1 1 0 # bsd consensus -syscon misc TCOON 1 2 2 2 0 # bsd consensus +syscon misc TCFLSH 0x540b 0 0 0 0 0 +syscon misc TCIFLUSH 0 1 1 1 1 0 # bsd consensus +syscon misc TCIOFF 2 3 3 3 3 0 # bsd consensus +syscon misc TCIOFLUSH 2 3 3 3 3 0 # bsd consensus +syscon misc TCION 3 4 4 4 4 0 # bsd consensus +syscon misc TCOFLUSH 1 2 2 2 2 0 # bsd consensus +syscon misc TCOOFF 0 1 1 1 1 0 # bsd consensus +syscon misc TCOON 1 2 2 2 2 0 # bsd consensus -syscon misc FE_TONEAREST 0 0 0 0 0 # consensus -syscon misc FE_DIVBYZERO 4 4 4 4 0 # unix consensus -syscon misc FE_DOWNWARD 0x0400 0x0400 0x0400 0x0400 0 # unix consensus -syscon misc FE_INEXACT 0x20 0x20 0x20 0x20 0 # unix consensus -syscon misc FE_INVALID 1 1 1 1 0 # unix consensus -syscon misc FE_OVERFLOW 8 8 8 8 0 # unix consensus -syscon misc FE_TOWARDZERO 0x0c00 0x0c00 0x0c00 0x0c00 0 # unix consensus -syscon misc FE_UNDERFLOW 0x10 0x10 0x10 0x10 0 # unix consensus -syscon misc FE_UPWARD 0x0800 0x0800 0x0800 0x0800 0 # unix consensus -syscon misc FE_ALL_EXCEPT 61 63 63 63 0 # bsd consensus +syscon misc FE_TONEAREST 0 0 0 0 0 0 # consensus +syscon misc FE_DIVBYZERO 4 4 4 4 4 0 # unix consensus +syscon misc FE_DOWNWARD 0x0400 0x0400 0x0400 0x0400 0x0400 0 # unix consensus +syscon misc FE_INEXACT 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon misc FE_INVALID 1 1 1 1 1 0 # unix consensus +syscon misc FE_OVERFLOW 8 8 8 8 8 0 # unix consensus +syscon misc FE_TOWARDZERO 0x0c00 0x0c00 0x0c00 0x0c00 0x0c00 0 # unix consensus +syscon misc FE_UNDERFLOW 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon misc FE_UPWARD 0x0800 0x0800 0x0800 0x0800 0x0800 0 # unix consensus +syscon misc FE_ALL_EXCEPT 61 63 63 63 63 0 # bsd consensus -syscon misc TYPE_DISK 0 0 0 0 0 # consensus -syscon misc TYPE_A 1 1 1 1 0 # unix consensus -syscon misc TYPE_E 2 2 2 2 0 # unix consensus -syscon misc TYPE_I 3 3 3 3 0 # unix consensus -syscon misc TYPE_L 4 4 4 4 0 # unix consensus -syscon misc TYPE_ENCLOSURE 13 0 0 0 0 -syscon misc TYPE_MEDIUM_CHANGER 8 0 0 0 0 -syscon misc TYPE_MOD 7 0 0 0 0 -syscon misc TYPE_NO_LUN 127 0 0 0 0 -syscon misc TYPE_PROCESSOR 3 0 0 0 0 -syscon misc TYPE_ROM 5 0 0 0 0 -syscon misc TYPE_SCANNER 6 0 0 0 0 -syscon misc TYPE_TAPE 1 0 0 0 0 -syscon misc TYPE_WORM 4 0 0 0 0 +syscon misc TYPE_DISK 0 0 0 0 0 0 # consensus +syscon misc TYPE_A 1 1 1 1 1 0 # unix consensus +syscon misc TYPE_E 2 2 2 2 2 0 # unix consensus +syscon misc TYPE_I 3 3 3 3 3 0 # unix consensus +syscon misc TYPE_L 4 4 4 4 4 0 # unix consensus +syscon misc TYPE_ENCLOSURE 13 0 0 0 0 0 +syscon misc TYPE_MEDIUM_CHANGER 8 0 0 0 0 0 +syscon misc TYPE_MOD 7 0 0 0 0 0 +syscon misc TYPE_NO_LUN 127 0 0 0 0 0 +syscon misc TYPE_PROCESSOR 3 0 0 0 0 0 +syscon misc TYPE_ROM 5 0 0 0 0 0 +syscon misc TYPE_SCANNER 6 0 0 0 0 0 +syscon misc TYPE_TAPE 1 0 0 0 0 0 +syscon misc TYPE_WORM 4 0 0 0 0 0 -syscon misc _POSIX2_BC_BASE_MAX 99 99 99 99 0 # unix consensus -syscon misc _POSIX2_BC_DIM_MAX 0x0800 0x0800 0x0800 0x0800 0 # unix consensus -syscon misc _POSIX2_BC_SCALE_MAX 99 99 99 99 0 # unix consensus -syscon misc _POSIX2_BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x03e8 0 # unix consensus -syscon misc _POSIX2_CHARCLASS_NAME_MAX 14 14 14 14 0 # unix consensus -syscon misc _POSIX2_COLL_WEIGHTS_MAX 2 2 2 2 0 # unix consensus -syscon misc _POSIX2_EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0 # unix consensus -syscon misc _POSIX2_LINE_MAX 0x0800 0x0800 0x0800 0x0800 0 # unix consensus -syscon misc _POSIX2_RE_DUP_MAX 255 255 255 255 0 # unix consensus -syscon misc _POSIX2_C_BIND 0x031069 0x030db0 0x030db0 0x030db0 0 # bsd consensus -syscon misc _POSIX2_VERSION 0x031069 0x030db0 0x030a2c 0x031069 0 +syscon misc _POSIX2_BC_BASE_MAX 99 99 99 99 99 0 # unix consensus +syscon misc _POSIX2_BC_DIM_MAX 0x0800 0x0800 0x0800 0x0800 0x0800 0 # unix consensus +syscon misc _POSIX2_BC_SCALE_MAX 99 99 99 99 99 0 # unix consensus +syscon misc _POSIX2_BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x03e8 0x03e8 0 # unix consensus +syscon misc _POSIX2_CHARCLASS_NAME_MAX 14 14 14 14 14 0 # unix consensus +syscon misc _POSIX2_COLL_WEIGHTS_MAX 2 2 2 2 2 0 # unix consensus +syscon misc _POSIX2_EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon misc _POSIX2_LINE_MAX 0x0800 0x0800 0x0800 0x0800 0x0800 0 # unix consensus +syscon misc _POSIX2_RE_DUP_MAX 255 255 255 255 255 0 # unix consensus +syscon misc _POSIX2_C_BIND 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 # bsd consensus +syscon misc _POSIX2_VERSION 0x031069 0x030db0 0x030a2c 0x031069 0x031069 0 -syscon misc PTHREAD_MUTEX_STALLED 0 0 0 0 0 # consensus -syscon misc PTHREAD_PRIO_NONE 0 0 0 0 0 # consensus -syscon misc PTHREAD_PRIO_INHERIT 0 1 1 1 0 # bsd consensus -syscon misc PTHREAD_PRIO_PROTECT 0 2 2 2 0 # bsd consensus -syscon misc PTHREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 0 # unix consensus -syscon misc PTHREAD_PROCESS_SHARED 1 1 1 1 0 # unix consensus -syscon misc PTHREAD_CREATE_DETACHED 1 2 1 1 0 -syscon misc PTHREAD_KEYS_MAX 0x0400 0x0200 0x0100 0x0100 0 -syscon misc PTHREAD_STACK_MIN 0x4000 0x2000 0x0800 0x1000 0 -syscon misc PTHREAD_BARRIER_SERIAL_THREAD -1 0 -1 -1 0 -syscon misc PTHREAD_CANCEL_ASYNCHRONOUS 1 0 2 2 0 -syscon misc PTHREAD_CANCEL_DISABLE 1 0 1 1 0 -syscon misc PTHREAD_INHERIT_SCHED 0 1 4 4 0 -syscon misc PTHREAD_SCOPE_SYSTEM 0 1 2 2 0 -syscon misc PTHREAD_EXPLICIT_SCHED 1 2 0 0 0 -syscon misc PTHREAD_MUTEX_DEFAULT 0 0 1 4 0 -syscon misc PTHREAD_MUTEX_ERRORCHECK 0 1 0 1 0 -syscon misc PTHREAD_MUTEX_RECURSIVE 0 2 0 2 0 -syscon misc PTHREAD_SCOPE_PROCESS 1 2 0 0 0 -syscon misc PTHREAD_CANCEL_DEFERRED 0 2 0 0 0 -syscon misc PTHREAD_CANCEL_ENABLE 0 1 0 0 0 -syscon misc PTHREAD_CREATE_JOINABLE 0 1 0 0 0 -syscon misc PTHREAD_MUTEX_NORMAL 0 0 0 3 0 -syscon misc PTHREAD_MUTEX_ROBUST 0 0 1 0 0 -syscon misc PTHREAD_PROCESS_PRIVATE 0 2 0 0 0 +syscon misc PTHREAD_MUTEX_STALLED 0 0 0 0 0 0 # consensus +syscon misc PTHREAD_PRIO_NONE 0 0 0 0 0 0 # consensus +syscon misc PTHREAD_PRIO_INHERIT 0 1 1 1 1 0 # bsd consensus +syscon misc PTHREAD_PRIO_PROTECT 0 2 2 2 2 0 # bsd consensus +syscon misc PTHREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 4 0 # unix consensus +syscon misc PTHREAD_PROCESS_SHARED 1 1 1 1 1 0 # unix consensus +syscon misc PTHREAD_CREATE_DETACHED 1 2 1 1 1 0 +syscon misc PTHREAD_KEYS_MAX 0x0400 0x0200 0x0100 0x0100 0x0100 0 +syscon misc PTHREAD_STACK_MIN 0x4000 0x2000 0x0800 0x1000 0x1000 0 +syscon misc PTHREAD_BARRIER_SERIAL_THREAD -1 0 -1 -1 -1 0 +syscon misc PTHREAD_CANCEL_ASYNCHRONOUS 1 0 2 2 2 0 +syscon misc PTHREAD_CANCEL_DISABLE 1 0 1 1 1 0 +syscon misc PTHREAD_INHERIT_SCHED 0 1 4 4 4 0 +syscon misc PTHREAD_SCOPE_SYSTEM 0 1 2 2 2 0 +syscon misc PTHREAD_EXPLICIT_SCHED 1 2 0 0 0 0 +syscon misc PTHREAD_MUTEX_DEFAULT 0 0 1 4 4 0 +syscon misc PTHREAD_MUTEX_ERRORCHECK 0 1 0 1 1 0 +syscon misc PTHREAD_MUTEX_RECURSIVE 0 2 0 2 2 0 +syscon misc PTHREAD_SCOPE_PROCESS 1 2 0 0 0 0 +syscon misc PTHREAD_CANCEL_DEFERRED 0 2 0 0 0 0 +syscon misc PTHREAD_CANCEL_ENABLE 0 1 0 0 0 0 +syscon misc PTHREAD_CREATE_JOINABLE 0 1 0 0 0 0 +syscon misc PTHREAD_MUTEX_NORMAL 0 0 0 3 3 0 +syscon misc PTHREAD_MUTEX_ROBUST 0 0 1 0 0 0 +syscon misc PTHREAD_PROCESS_PRIVATE 0 2 0 0 0 0 -syscon misc FTW_F 0 0 0 0 0 # consensus -syscon misc FTW_D 1 1 1 1 0 # unix consensus -syscon misc FTW_DNR 2 2 2 2 0 # unix consensus -syscon misc FTW_MOUNT 2 2 2 2 0 # unix consensus -syscon misc FTW_PHYS 1 1 1 1 0 # unix consensus -syscon misc FTW_SLN 6 6 6 6 0 # unix consensus -syscon misc FTW_CHDIR 4 8 8 8 0 # bsd consensus -syscon misc FTW_DEPTH 8 4 4 4 0 # bsd consensus -syscon misc FTW_DP 5 3 3 3 0 # bsd consensus -syscon misc FTW_NS 3 4 4 4 0 # bsd consensus -syscon misc FTW_SL 4 5 5 5 0 # bsd consensus +syscon misc FTW_F 0 0 0 0 0 0 # consensus +syscon misc FTW_D 1 1 1 1 1 0 # unix consensus +syscon misc FTW_DNR 2 2 2 2 2 0 # unix consensus +syscon misc FTW_MOUNT 2 2 2 2 2 0 # unix consensus +syscon misc FTW_PHYS 1 1 1 1 1 0 # unix consensus +syscon misc FTW_SLN 6 6 6 6 6 0 # unix consensus +syscon misc FTW_CHDIR 4 8 8 8 8 0 # bsd consensus +syscon misc FTW_DEPTH 8 4 4 4 4 0 # bsd consensus +syscon misc FTW_DP 5 3 3 3 3 0 # bsd consensus +syscon misc FTW_NS 3 4 4 4 4 0 # bsd consensus +syscon misc FTW_SL 4 5 5 5 5 0 # bsd consensus -syscon misc N_TTY 0 0 0 0 0 # consensus -syscon misc N_6PACK 7 0 0 0 0 -syscon misc N_AX25 5 0 0 0 0 -syscon misc N_HCI 15 0 0 0 0 -syscon misc N_HDLC 13 0 0 0 0 -syscon misc N_IRDA 11 0 0 0 0 -syscon misc N_MASC 8 0 0 0 0 -syscon misc N_MOUSE 2 0 0 0 0 -syscon misc N_PPP 3 0 0 0 0 -syscon misc N_PROFIBUS_FDL 10 0 0 0 0 -syscon misc N_R3964 9 0 0 0 0 -syscon misc N_SLIP 1 0 0 0 0 -syscon misc N_SMSBLOCK 12 0 0 0 0 -syscon misc N_STRIP 4 0 0 0 0 -syscon misc N_SYNC_PPP 14 0 0 0 0 -syscon misc N_X25 6 0 0 0 0 +syscon misc N_TTY 0 0 0 0 0 0 # consensus +syscon misc N_6PACK 7 0 0 0 0 0 +syscon misc N_AX25 5 0 0 0 0 0 +syscon misc N_HCI 15 0 0 0 0 0 +syscon misc N_HDLC 13 0 0 0 0 0 +syscon misc N_IRDA 11 0 0 0 0 0 +syscon misc N_MASC 8 0 0 0 0 0 +syscon misc N_MOUSE 2 0 0 0 0 0 +syscon misc N_PPP 3 0 0 0 0 0 +syscon misc N_PROFIBUS_FDL 10 0 0 0 0 0 +syscon misc N_R3964 9 0 0 0 0 0 +syscon misc N_SLIP 1 0 0 0 0 0 +syscon misc N_SMSBLOCK 12 0 0 0 0 0 +syscon misc N_STRIP 4 0 0 0 0 0 +syscon misc N_SYNC_PPP 14 0 0 0 0 0 +syscon misc N_X25 6 0 0 0 0 0 -syscon sock SOCK_STREAM 1 1 1 1 1 # consensus -syscon sock SOCK_DGRAM 2 2 2 2 2 # consensus -syscon sock SOCK_RAW 3 3 3 3 3 # consensus -syscon sock SOCK_RDM 4 4 4 4 4 # consensus -syscon sock SOCK_SEQPACKET 5 5 5 5 5 # consensus -syscon sock SOCK_CLOEXEC 0x080000 0x080000 0x10000000 0x8000 0x00080000 # faked xnu & faked nt to be some as O_CLOEXEC -syscon sock SOCK_NONBLOCK 0x0800 0x0800 0x20000000 0x4000 0x00000800 # faked xnu & faked nt to be same as O_NONBLOC and socket() will ioctl(FIONBIO=1) -syscon sock SOCK_DCCP 6 0 0 0 0 # what is it? -syscon sock SOCK_PACKET 10 0 0 0 0 # what is it? +syscon sock SOCK_STREAM 1 1 1 1 1 1 # consensus +syscon sock SOCK_DGRAM 2 2 2 2 2 2 # consensus +syscon sock SOCK_RAW 3 3 3 3 3 3 # consensus +syscon sock SOCK_RDM 4 4 4 4 4 4 # consensus +syscon sock SOCK_SEQPACKET 5 5 5 5 5 5 # consensus +syscon sock SOCK_CLOEXEC 0x080000 0x080000 0x10000000 0x8000 0x10000000 0x00080000 # faked xnu & faked nt to be some as O_CLOEXEC +syscon sock SOCK_NONBLOCK 0x0800 0x0800 0x20000000 0x4000 0x20000000 0x00000800 # faked xnu & faked nt to be same as O_NONBLOC and socket() will ioctl(FIONBIO=1) +syscon sock SOCK_DCCP 6 0 0 0 0 0 # what is it? +syscon sock SOCK_PACKET 10 0 0 0 0 0 # what is it? -syscon prsnlty ADDR_COMPAT_LAYOUT 0x0200000 -1 -1 -1 -1 # linux only -syscon prsnlty READ_IMPLIES_EXEC 0x0400000 -1 -1 -1 -1 # linux only -syscon prsnlty ADDR_LIMIT_3GB 0x8000000 -1 -1 -1 -1 # linux only -syscon prsnlty FDPIC_FUNCPTRS 0x0080000 -1 -1 -1 -1 # linux only -syscon prsnlty STICKY_TIMEOUTS 0x4000000 -1 -1 -1 -1 # linux only -syscon prsnlty MMAP_PAGE_ZERO 0x0100000 -1 -1 -1 -1 # linux only -syscon prsnlty ADDR_LIMIT_32BIT 0x0800000 -1 -1 -1 -1 # linux only -syscon prsnlty WHOLE_SECONDS 0x2000000 -1 -1 -1 -1 # linux only -syscon prsnlty ADDR_NO_RANDOMIZE 0x0040000 -1 -1 -1 -1 # linux only -syscon prsnlty SHORT_INODE 0x1000000 -1 -1 -1 -1 # linux only -syscon prsnlty UNAME26 0x0020000 -1 -1 -1 -1 # linux only +syscon prsnlty ADDR_COMPAT_LAYOUT 0x0200000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty READ_IMPLIES_EXEC 0x0400000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty ADDR_LIMIT_3GB 0x8000000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty FDPIC_FUNCPTRS 0x0080000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty STICKY_TIMEOUTS 0x4000000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty MMAP_PAGE_ZERO 0x0100000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty ADDR_LIMIT_32BIT 0x0800000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty WHOLE_SECONDS 0x2000000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty ADDR_NO_RANDOMIZE 0x0040000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty SHORT_INODE 0x1000000 -1 -1 -1 -1 -1 # linux only +syscon prsnlty UNAME26 0x0020000 -1 -1 -1 -1 -1 # linux only -syscon misc INADDR_ANY 0 0 0 0 0 # consensus -syscon misc INADDR_BROADCAST 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff # consensus -syscon misc INADDR_NONE 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff # consensus -syscon misc INADDR_ALLHOSTS_GROUP 0xe0000001 0xe0000001 0xe0000001 0xe0000001 0 # unix consensus -syscon misc INADDR_LOOPBACK 0x7f000001 0x7f000001 0x7f000001 0x7f000001 0x7f000001 # consensus -syscon misc INADDR_MAX_LOCAL_GROUP 0xe00000ff 0xe00000ff 0xe00000ff 0xe00000ff 0 # unix consensus -syscon misc INADDR_UNSPEC_GROUP 0xe0000000 0xe0000000 0xe0000000 0xe0000000 0 # unix consensus -syscon misc INADDR_ALLRTRS_GROUP 0xe0000002 0xe0000002 0xe0000002 0 0 +syscon misc INADDR_ANY 0 0 0 0 0 0 # consensus +syscon misc INADDR_BROADCAST 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff # consensus +syscon misc INADDR_NONE 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff # consensus +syscon misc INADDR_ALLHOSTS_GROUP 0xe0000001 0xe0000001 0xe0000001 0xe0000001 0xe0000001 0 # unix consensus +syscon misc INADDR_LOOPBACK 0x7f000001 0x7f000001 0x7f000001 0x7f000001 0x7f000001 0x7f000001 # consensus +syscon misc INADDR_MAX_LOCAL_GROUP 0xe00000ff 0xe00000ff 0xe00000ff 0xe00000ff 0xe00000ff 0 # unix consensus +syscon misc INADDR_UNSPEC_GROUP 0xe0000000 0xe0000000 0xe0000000 0xe0000000 0xe0000000 0 # unix consensus +syscon misc INADDR_ALLRTRS_GROUP 0xe0000002 0xe0000002 0xe0000002 0 0 0 -syscon misc BLKTYPE 52 52 52 52 0 # unix consensus -syscon misc BLKBSZGET 0x80081270 0 0 0 0 -syscon misc BLKBSZSET 0x40081271 0 0 0 0 -syscon misc BLKFLSBUF 0x1261 0 0 0 0 -syscon misc BLKFRAGET 0x1265 0 0 0 0 -syscon misc BLKFRASET 0x1264 0 0 0 0 -syscon misc BLKGETSIZE 0x1260 0 0 0 0 -syscon misc BLKGETSIZE64 0x80081272 0 0 0 0 -syscon misc BLKRAGET 0x1263 0 0 0 0 -syscon misc BLKRASET 0x1262 0 0 0 0 -syscon misc BLKROGET 0x125e 0 0 0 0 -syscon misc BLKROSET 0x125d 0 0 0 0 -syscon misc BLKRRPART 0x125f 0 0 0 0 -syscon misc BLKSECTGET 0x1267 0 0 0 0 -syscon misc BLKSECTSET 0x1266 0 0 0 0 -syscon misc BLKSSZGET 0x1268 0 0 0 0 +syscon misc BLKTYPE 52 52 52 52 52 0 # unix consensus +syscon misc BLKBSZGET 0x80081270 0 0 0 0 0 +syscon misc BLKBSZSET 0x40081271 0 0 0 0 0 +syscon misc BLKFLSBUF 0x1261 0 0 0 0 0 +syscon misc BLKFRAGET 0x1265 0 0 0 0 0 +syscon misc BLKFRASET 0x1264 0 0 0 0 0 +syscon misc BLKGETSIZE 0x1260 0 0 0 0 0 +syscon misc BLKGETSIZE64 0x80081272 0 0 0 0 0 +syscon misc BLKRAGET 0x1263 0 0 0 0 0 +syscon misc BLKRASET 0x1262 0 0 0 0 0 +syscon misc BLKROGET 0x125e 0 0 0 0 0 +syscon misc BLKROSET 0x125d 0 0 0 0 0 +syscon misc BLKRRPART 0x125f 0 0 0 0 0 +syscon misc BLKSECTGET 0x1267 0 0 0 0 0 +syscon misc BLKSECTSET 0x1266 0 0 0 0 0 +syscon misc BLKSSZGET 0x1268 0 0 0 0 0 -syscon misc TH_FIN 1 1 1 1 1 # consensus -syscon misc TH_SYN 2 2 2 2 2 # consensus -syscon misc TH_RST 4 4 4 4 4 # consensus -syscon misc TH_PUSH 8 8 8 8 0 # unix consensus -syscon misc TH_URG 32 32 32 32 32 # consensus -syscon misc TH_ACK 16 16 16 16 16 # consensus +syscon misc TH_FIN 1 1 1 1 1 1 # consensus +syscon misc TH_SYN 2 2 2 2 2 2 # consensus +syscon misc TH_RST 4 4 4 4 4 4 # consensus +syscon misc TH_PUSH 8 8 8 8 8 0 # unix consensus +syscon misc TH_URG 32 32 32 32 32 32 # consensus +syscon misc TH_ACK 16 16 16 16 16 16 # consensus -syscon misc IPC_PRIVATE 0 0 0 0 0 # consensus -syscon misc IPC_RMID 0 0 0 0 0 # consensus -syscon misc IPC_CREAT 0x0200 0x0200 0x0200 0x0200 0 # unix consensus -syscon misc IPC_EXCL 0x0400 0x0400 0x0400 0x0400 0 # unix consensus -syscon misc IPC_NOWAIT 0x0800 0x0800 0x0800 0x0800 0 # unix consensus -syscon misc IPC_SET 1 1 1 1 0 # unix consensus -syscon misc IPC_STAT 2 2 2 2 0 # unix consensus -syscon misc IPC_INFO 3 0 3 0 0 +syscon misc IPC_PRIVATE 0 0 0 0 0 0 # consensus +syscon misc IPC_RMID 0 0 0 0 0 0 # consensus +syscon misc IPC_CREAT 0x0200 0x0200 0x0200 0x0200 0x0200 0 # unix consensus +syscon misc IPC_EXCL 0x0400 0x0400 0x0400 0x0400 0x0400 0 # unix consensus +syscon misc IPC_NOWAIT 0x0800 0x0800 0x0800 0x0800 0x0800 0 # unix consensus +syscon misc IPC_SET 1 1 1 1 1 0 # unix consensus +syscon misc IPC_STAT 2 2 2 2 2 0 # unix consensus +syscon misc IPC_INFO 3 0 3 0 0 0 -syscon shm SHM_R 0x0100 0x0100 0x0100 0x0100 0 # unix consensus -syscon shm SHM_RDONLY 0x1000 0x1000 0x1000 0x1000 0 # unix consensus -syscon shm SHM_RND 0x2000 0x2000 0x2000 0x2000 0 # unix consensus -syscon shm SHM_W 0x80 0x80 0x80 0x80 0 # unix consensus -syscon shm SHM_LOCK 11 0 11 3 0 -syscon shm SHM_UNLOCK 12 0 12 4 0 -syscon shm SHM_INFO 14 0 14 0 0 -syscon shm SHM_STAT 13 0 13 0 0 -syscon shm SHM_DEST 0x0200 0 0 0 0 -syscon shm SHM_EXEC 0x8000 0 0 0 0 -syscon shm SHM_HUGETLB 0x0800 0 0 0 0 -syscon shm SHM_LOCKED 0x0400 0 0 0 0 -syscon shm SHM_NORESERVE 0x1000 0 0 0 0 -syscon shm SHM_REMAP 0x4000 0 0 0 0 +syscon shm SHM_R 0x0100 0x0100 0x0100 0x0100 0x0100 0 # unix consensus +syscon shm SHM_RDONLY 0x1000 0x1000 0x1000 0x1000 0x1000 0 # unix consensus +syscon shm SHM_RND 0x2000 0x2000 0x2000 0x2000 0x2000 0 # unix consensus +syscon shm SHM_W 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon shm SHM_LOCK 11 0 11 3 3 0 +syscon shm SHM_UNLOCK 12 0 12 4 4 0 +syscon shm SHM_INFO 14 0 14 0 0 0 +syscon shm SHM_STAT 13 0 13 0 0 0 +syscon shm SHM_DEST 0x0200 0 0 0 0 0 +syscon shm SHM_EXEC 0x8000 0 0 0 0 0 +syscon shm SHM_HUGETLB 0x0800 0 0 0 0 0 +syscon shm SHM_LOCKED 0x0400 0 0 0 0 0 +syscon shm SHM_NORESERVE 0x1000 0 0 0 0 0 +syscon shm SHM_REMAP 0x4000 0 0 0 0 0 -syscon misc TCPOPT_EOL 0 0 0 0 0 # consensus -syscon misc TCPOPT_MAXSEG 2 2 2 2 0 # unix consensus -syscon misc TCPOPT_NOP 1 1 1 1 0 # unix consensus -syscon misc TCPOPT_SACK 5 5 5 5 0 # unix consensus -syscon misc TCPOPT_SACK_PERMITTED 4 4 4 4 0 # unix consensus -syscon misc TCPOPT_TIMESTAMP 8 8 8 8 0 # unix consensus -syscon misc TCPOPT_WINDOW 3 3 3 3 0 # unix consensus +syscon misc TCPOPT_EOL 0 0 0 0 0 0 # consensus +syscon misc TCPOPT_MAXSEG 2 2 2 2 2 0 # unix consensus +syscon misc TCPOPT_NOP 1 1 1 1 1 0 # unix consensus +syscon misc TCPOPT_SACK 5 5 5 5 5 0 # unix consensus +syscon misc TCPOPT_SACK_PERMITTED 4 4 4 4 4 0 # unix consensus +syscon misc TCPOPT_TIMESTAMP 8 8 8 8 8 0 # unix consensus +syscon misc TCPOPT_WINDOW 3 3 3 3 3 0 # unix consensus -syscon misc ETH_P_CUST 0x6006 0 0 0 0 -syscon misc ETH_P_DDCMP 6 0 0 0 0 -syscon misc ETH_P_DEC 0x6000 0 0 0 0 -syscon misc ETH_P_DIAG 0x6005 0 0 0 0 -syscon misc ETH_P_DNA_DL 0x6001 0 0 0 0 -syscon misc ETH_P_DNA_RC 0x6002 0 0 0 0 -syscon misc ETH_P_DNA_RT 0x6003 0 0 0 0 -syscon misc ETH_P_IEEE802154 246 0 0 0 0 -syscon misc ETH_P_LAT 0x6004 0 0 0 0 -syscon misc ETH_P_LOCALTALK 9 0 0 0 0 -syscon misc ETH_P_PPP_MP 8 0 0 0 0 -syscon misc ETH_P_RARP 0x8035 0 0 0 0 -syscon misc ETH_P_SCA 0x6007 0 0 0 0 -syscon misc ETH_P_WAN_PPP 7 0 0 0 0 +syscon misc ETH_P_CUST 0x6006 0 0 0 0 0 +syscon misc ETH_P_DDCMP 6 0 0 0 0 0 +syscon misc ETH_P_DEC 0x6000 0 0 0 0 0 +syscon misc ETH_P_DIAG 0x6005 0 0 0 0 0 +syscon misc ETH_P_DNA_DL 0x6001 0 0 0 0 0 +syscon misc ETH_P_DNA_RC 0x6002 0 0 0 0 0 +syscon misc ETH_P_DNA_RT 0x6003 0 0 0 0 0 +syscon misc ETH_P_IEEE802154 246 0 0 0 0 0 +syscon misc ETH_P_LAT 0x6004 0 0 0 0 0 +syscon misc ETH_P_LOCALTALK 9 0 0 0 0 0 +syscon misc ETH_P_PPP_MP 8 0 0 0 0 0 +syscon misc ETH_P_RARP 0x8035 0 0 0 0 0 +syscon misc ETH_P_SCA 0x6007 0 0 0 0 0 +syscon misc ETH_P_WAN_PPP 7 0 0 0 0 0 -syscon misc ST_NOSUID 2 2 2 2 0 # unix consensus -syscon misc ST_RDONLY 1 1 1 1 0 # unix consensus -syscon misc ST_APPEND 0x0100 0 0 0 0 -syscon misc ST_IMMUTABLE 0x0200 0 0 0 0 -syscon misc ST_MANDLOCK 0x40 0 0 0 0 -syscon misc ST_NOATIME 0x0400 0 0 0 0 -syscon misc ST_NODEV 4 0 0 0 0 -syscon misc ST_NODIRATIME 0x0800 0 0 0 0 -syscon misc ST_NOEXEC 8 0 0 0 0 -syscon misc ST_RELATIME 0x1000 0 0 0 0 -syscon misc ST_SYNCHRONOUS 0x10 0 0 0 0 -syscon misc ST_WRITE 0x80 0 0 0 0 +syscon misc ST_NOSUID 2 2 2 2 2 0 # unix consensus +syscon misc ST_RDONLY 1 1 1 1 1 0 # unix consensus +syscon misc ST_APPEND 0x0100 0 0 0 0 0 +syscon misc ST_IMMUTABLE 0x0200 0 0 0 0 0 +syscon misc ST_MANDLOCK 0x40 0 0 0 0 0 +syscon misc ST_NOATIME 0x0400 0 0 0 0 0 +syscon misc ST_NODEV 4 0 0 0 0 0 +syscon misc ST_NODIRATIME 0x0800 0 0 0 0 0 +syscon misc ST_NOEXEC 8 0 0 0 0 0 +syscon misc ST_RELATIME 0x1000 0 0 0 0 0 +syscon misc ST_SYNCHRONOUS 0x10 0 0 0 0 0 +syscon misc ST_WRITE 0x80 0 0 0 0 0 -syscon misc SCSI_IOCTL_BENCHMARK_COMMAND 3 0 0 0 0 -syscon misc SCSI_IOCTL_DOORLOCK 0x5380 0 0 0 0 -syscon misc SCSI_IOCTL_DOORUNLOCK 0x5381 0 0 0 0 -syscon misc SCSI_IOCTL_GET_BUS_NUMBER 0x5386 0 0 0 0 -syscon misc SCSI_IOCTL_GET_IDLUN 0x5382 0 0 0 0 -syscon misc SCSI_IOCTL_PROBE_HOST 0x5385 0 0 0 0 -syscon misc SCSI_IOCTL_SEND_COMMAND 1 0 0 0 0 -syscon misc SCSI_IOCTL_START_UNIT 5 0 0 0 0 -syscon misc SCSI_IOCTL_STOP_UNIT 6 0 0 0 0 -syscon misc SCSI_IOCTL_SYNC 4 0 0 0 0 -syscon misc SCSI_IOCTL_TAGGED_DISABLE 0x5384 0 0 0 0 -syscon misc SCSI_IOCTL_TAGGED_ENABLE 0x5383 0 0 0 0 -syscon misc SCSI_IOCTL_TEST_UNIT_READY 2 0 0 0 0 +syscon misc SCSI_IOCTL_BENCHMARK_COMMAND 3 0 0 0 0 0 +syscon misc SCSI_IOCTL_DOORLOCK 0x5380 0 0 0 0 0 +syscon misc SCSI_IOCTL_DOORUNLOCK 0x5381 0 0 0 0 0 +syscon misc SCSI_IOCTL_GET_BUS_NUMBER 0x5386 0 0 0 0 0 +syscon misc SCSI_IOCTL_GET_IDLUN 0x5382 0 0 0 0 0 +syscon misc SCSI_IOCTL_PROBE_HOST 0x5385 0 0 0 0 0 +syscon misc SCSI_IOCTL_SEND_COMMAND 1 0 0 0 0 0 +syscon misc SCSI_IOCTL_START_UNIT 5 0 0 0 0 0 +syscon misc SCSI_IOCTL_STOP_UNIT 6 0 0 0 0 0 +syscon misc SCSI_IOCTL_SYNC 4 0 0 0 0 0 +syscon misc SCSI_IOCTL_TAGGED_DISABLE 0x5384 0 0 0 0 0 +syscon misc SCSI_IOCTL_TAGGED_ENABLE 0x5383 0 0 0 0 0 +syscon misc SCSI_IOCTL_TEST_UNIT_READY 2 0 0 0 0 0 -syscon misc CLD_CONTINUED 6 6 6 6 0 # unix consensus -syscon misc CLD_DUMPED 3 3 3 3 0 # unix consensus -syscon misc CLD_EXITED 1 1 1 1 0 # unix consensus -syscon misc CLD_KILLED 2 2 2 2 0 # unix consensus -syscon misc CLD_STOPPED 5 5 5 5 0 # unix consensus -syscon misc CLD_TRAPPED 4 4 4 4 0 # unix consensus +syscon misc CLD_CONTINUED 6 6 6 6 6 0 # unix consensus +syscon misc CLD_DUMPED 3 3 3 3 3 0 # unix consensus +syscon misc CLD_EXITED 1 1 1 1 1 0 # unix consensus +syscon misc CLD_KILLED 2 2 2 2 2 0 # unix consensus +syscon misc CLD_STOPPED 5 5 5 5 5 0 # unix consensus +syscon misc CLD_TRAPPED 4 4 4 4 4 0 # unix consensus -syscon misc READ_10 40 0 0 0 0 -syscon misc READ_12 168 0 0 0 0 -syscon misc READ_6 8 0 0 0 0 -syscon misc READ_BLOCK_LIMITS 5 0 0 0 0 -syscon misc READ_BUFFER 60 0 0 0 0 -syscon misc READ_CAPACITY 37 0 0 0 0 -syscon misc READ_DEFECT_DATA 55 0 0 0 0 -syscon misc READ_ELEMENT_STATUS 184 0 0 0 0 -syscon misc READ_LONG 62 0 0 0 0 -syscon misc READ_POSITION 52 0 0 0 0 -syscon misc READ_REVERSE 15 0 0 0 0 -syscon misc READ_TOC 67 0 0 0 0 +syscon misc READ_10 40 0 0 0 0 0 +syscon misc READ_12 168 0 0 0 0 0 +syscon misc READ_6 8 0 0 0 0 0 +syscon misc READ_BLOCK_LIMITS 5 0 0 0 0 0 +syscon misc READ_BUFFER 60 0 0 0 0 0 +syscon misc READ_CAPACITY 37 0 0 0 0 0 +syscon misc READ_DEFECT_DATA 55 0 0 0 0 0 +syscon misc READ_ELEMENT_STATUS 184 0 0 0 0 0 +syscon misc READ_LONG 62 0 0 0 0 0 +syscon misc READ_POSITION 52 0 0 0 0 0 +syscon misc READ_REVERSE 15 0 0 0 0 0 +syscon misc READ_TOC 67 0 0 0 0 0 # getpriority() / setpriority() magnums (a.k.a. nice) # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon prio PRIO_PROCESS 0 0 0 0 0 # consensus / poly nt -syscon prio PRIO_PGRP 1 1 1 1 1 # unix consensus / poly nt -syscon prio PRIO_USER 2 2 2 2 2 # unix consensus / poly nt -syscon prio PRIO_MIN -20 -20 -20 -20 -20 # unix consensus / poly nt -syscon prio PRIO_MAX 20 20 20 20 20 # unix consensus / poly nt -syscon prio NZERO 20 20 20 20 20 # unix consensus / polyfilled nt +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon prio PRIO_PROCESS 0 0 0 0 0 0 # consensus / poly nt +syscon prio PRIO_PGRP 1 1 1 1 1 1 # unix consensus / poly nt +syscon prio PRIO_USER 2 2 2 2 2 2 # unix consensus / poly nt +syscon prio PRIO_MIN -20 -20 -20 -20 -20 -20 # unix consensus / poly nt +syscon prio PRIO_MAX 20 20 20 20 20 20 # unix consensus / poly nt +syscon prio NZERO 20 20 20 20 20 20 # unix consensus / polyfilled nt # getaddrinfo() flags # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon gai AI_PASSIVE 1 1 1 1 1 # consensus -syscon gai AI_CANONNAME 2 2 2 2 2 # consensus -syscon gai AI_NUMERICHOST 4 4 4 4 4 # consensus -syscon gai AI_ADDRCONFIG 0x20 0x0400 0x0400 0x40 0x0400 -syscon gai AI_NUMERICSERV 0x0400 0x1000 8 0x10 8 -syscon gai AI_ALL 0x10 0x0100 0x0100 0 0x0100 -syscon gai AI_V4MAPPED 8 0x0800 0x0800 0 0x0800 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon gai AI_PASSIVE 1 1 1 1 1 1 # consensus +syscon gai AI_CANONNAME 2 2 2 2 2 2 # consensus +syscon gai AI_NUMERICHOST 4 4 4 4 4 4 # consensus +syscon gai AI_ADDRCONFIG 0x20 0x0400 0x0400 0x40 0x40 0x0400 +syscon gai AI_NUMERICSERV 0x0400 0x1000 8 0x10 0x10 8 +syscon gai AI_ALL 0x10 0x0100 0x0100 0 0 0x0100 +syscon gai AI_V4MAPPED 8 0x0800 0x0800 0 0 0x0800 # getaddrinfo() return codes # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon eai EAI_SUCCESS 0 0 0 0 0 -syscon eai EAI_BADFLAGS -1 3 3 -1 0x2726 -syscon eai EAI_NONAME -2 8 8 -2 0x2af9 -syscon eai EAI_AGAIN -3 2 2 -3 0x2afa -syscon eai EAI_FAIL -4 4 4 -4 0x2afb -syscon eai EAI_FAMILY -6 5 5 -6 0x273f -syscon eai EAI_MEMORY -10 6 6 -10 0x2747 -syscon eai EAI_SERVICE -8 9 9 -8 0x277d -syscon eai EAI_SOCKTYPE -7 10 10 -7 0x273c -syscon eai EAI_NODATA -5 7 0 -5 0x2af9 -syscon eai EAI_OVERFLOW -12 14 14 -14 -12 -syscon eai EAI_SYSTEM -11 11 11 -11 -11 -syscon eai EAI_ADDRFAMILY -9 1 0 -9 -9 -syscon eai EAI_ALLDONE -103 -103 -103 -103 -103 # copying from linux -syscon eai EAI_CANCELED -101 -101 -101 -101 -101 # copying from linux -syscon eai EAI_IDN_ENCODE -105 -105 -105 -105 -105 # copying from linux -syscon eai EAI_INPROGRESS -100 -100 -100 -100 -100 # copying from linux -syscon eai EAI_INTR -104 -104 -104 -104 -104 # copying from linux -syscon eai EAI_NOTCANCELED -102 -102 -102 -102 -102 # copying from linux +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon eai EAI_SUCCESS 0 0 0 0 0 0 +syscon eai EAI_BADFLAGS -1 3 3 -1 -1 0x2726 +syscon eai EAI_NONAME -2 8 8 -2 -2 0x2af9 +syscon eai EAI_AGAIN -3 2 2 -3 -3 0x2afa +syscon eai EAI_FAIL -4 4 4 -4 -4 0x2afb +syscon eai EAI_FAMILY -6 5 5 -6 -6 0x273f +syscon eai EAI_MEMORY -10 6 6 -10 -10 0x2747 +syscon eai EAI_SERVICE -8 9 9 -8 -8 0x277d +syscon eai EAI_SOCKTYPE -7 10 10 -7 -7 0x273c +syscon eai EAI_NODATA -5 7 0 -5 -5 0x2af9 +syscon eai EAI_OVERFLOW -12 14 14 -14 -14 -12 +syscon eai EAI_SYSTEM -11 11 11 -11 -11 -11 +syscon eai EAI_ADDRFAMILY -9 1 0 -9 -9 -9 +syscon eai EAI_ALLDONE -103 -103 -103 -103 -103 -103 # copying from linux +syscon eai EAI_CANCELED -101 -101 -101 -101 -101 -101 # copying from linux +syscon eai EAI_IDN_ENCODE -105 -105 -105 -105 -105 -105 # copying from linux +syscon eai EAI_INPROGRESS -100 -100 -100 -100 -100 -100 # copying from linux +syscon eai EAI_INTR -104 -104 -104 -104 -104 -104 # copying from linux +syscon eai EAI_NOTCANCELED -102 -102 -102 -102 -102 -102 # copying from linux -syscon misc BLK_BYTECOUNT 2 2 2 2 0 # unix consensus -syscon misc BLK_EOF 0x40 0x40 0x40 0x40 0 # unix consensus -syscon misc BLK_EOR 0x80 0x80 0x80 0x80 0 # unix consensus -syscon misc BLK_ERRORS 0x20 0x20 0x20 0x20 0 # unix consensus -syscon misc BLK_RESTART 0x10 0x10 0x10 0x10 0 # unix consensus +syscon misc BLK_BYTECOUNT 2 2 2 2 2 0 # unix consensus +syscon misc BLK_EOF 0x40 0x40 0x40 0x40 0x40 0 # unix consensus +syscon misc BLK_EOR 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon misc BLK_ERRORS 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon misc BLK_RESTART 0x10 0x10 0x10 0x10 0x10 0 # unix consensus -syscon misc MODE_B 2 2 2 2 0 # unix consensus -syscon misc MODE_C 3 3 3 3 0 # unix consensus -syscon misc MODE_S 1 1 1 1 0 # unix consensus -syscon misc MODE_SELECT 21 0 0 0 0 -syscon misc MODE_SELECT_10 85 0 0 0 0 -syscon misc MODE_SENSE 26 0 0 0 0 -syscon misc MODE_SENSE_10 90 0 0 0 0 +syscon misc MODE_B 2 2 2 2 2 0 # unix consensus +syscon misc MODE_C 3 3 3 3 3 0 # unix consensus +syscon misc MODE_S 1 1 1 1 1 0 # unix consensus +syscon misc MODE_SELECT 21 0 0 0 0 0 +syscon misc MODE_SELECT_10 85 0 0 0 0 0 +syscon misc MODE_SENSE 26 0 0 0 0 0 +syscon misc MODE_SENSE_10 90 0 0 0 0 0 -syscon misc WRITE_10 42 0 0 0 0 -syscon misc WRITE_12 170 0 0 0 0 -syscon misc WRITE_6 10 0 0 0 0 -syscon misc WRITE_BUFFER 59 0 0 0 0 -syscon misc WRITE_FILEMARKS 0x10 0 0 0 0 -syscon misc WRITE_LONG 63 0 0 0 0 -syscon misc WRITE_LONG_2 234 0 0 0 0 -syscon misc WRITE_SAME 65 0 0 0 0 -syscon misc WRITE_VERIFY 46 0 0 0 0 -syscon misc WRITE_VERIFY_12 174 0 0 0 0 +syscon misc WRITE_10 42 0 0 0 0 0 +syscon misc WRITE_12 170 0 0 0 0 0 +syscon misc WRITE_6 10 0 0 0 0 0 +syscon misc WRITE_BUFFER 59 0 0 0 0 0 +syscon misc WRITE_FILEMARKS 0x10 0 0 0 0 0 +syscon misc WRITE_LONG 63 0 0 0 0 0 +syscon misc WRITE_LONG_2 234 0 0 0 0 0 +syscon misc WRITE_SAME 65 0 0 0 0 0 +syscon misc WRITE_VERIFY 46 0 0 0 0 0 +syscon misc WRITE_VERIFY_12 174 0 0 0 0 0 -syscon misc ILL_BADSTK 8 8 8 8 0 # unix consensus -syscon misc ILL_COPROC 7 7 7 7 0 # unix consensus -syscon misc ILL_ILLOPC 1 1 1 1 0 # unix consensus -syscon misc ILL_PRVREG 6 6 6 6 0 # unix consensus -syscon misc ILL_ILLADR 3 5 3 3 0 -syscon misc ILL_ILLOPN 2 4 2 2 0 -syscon misc ILL_ILLTRP 4 2 4 4 0 -syscon misc ILL_PRVOPC 5 3 5 5 0 +syscon misc ILL_BADSTK 8 8 8 8 8 0 # unix consensus +syscon misc ILL_COPROC 7 7 7 7 7 0 # unix consensus +syscon misc ILL_ILLOPC 1 1 1 1 1 0 # unix consensus +syscon misc ILL_PRVREG 6 6 6 6 6 0 # unix consensus +syscon misc ILL_ILLADR 3 5 3 3 3 0 +syscon misc ILL_ILLOPN 2 4 2 2 2 0 +syscon misc ILL_ILLTRP 4 2 4 4 4 0 +syscon misc ILL_PRVOPC 5 3 5 5 5 0 -syscon misc LC_CTYPE 0 2 2 2 0 # bsd consensus -syscon misc LC_NUMERIC 1 4 4 4 0 # bsd consensus -syscon misc LC_CTYPE_MASK 1 0 2 4 0 -syscon misc LC_TIME 2 5 5 5 0 # bsd consensus -syscon misc LC_NUMERIC_MASK 2 0 8 0x10 0 -syscon misc LC_COLLATE 3 1 1 1 0 # bsd consensus -syscon misc LC_MONETARY 4 3 3 3 0 # bsd consensus -syscon misc LC_TIME_MASK 4 0 0x10 0x20 0 -syscon misc LC_MESSAGES 5 6 6 6 0 # bsd consensus -syscon misc LC_ALL 6 0 0 0 0 -syscon misc LC_COLLATE_MASK 8 0 1 2 0 -syscon misc LC_MONETARY_MASK 0x10 0 4 8 0 -syscon misc LC_MESSAGES_MASK 0x20 0 0x20 0x40 0 -syscon misc LC_ALL_MASK 0x1fbf 0 63 126 0 +syscon misc LC_CTYPE 0 2 2 2 2 0 # bsd consensus +syscon misc LC_NUMERIC 1 4 4 4 4 0 # bsd consensus +syscon misc LC_CTYPE_MASK 1 0 2 4 4 0 +syscon misc LC_TIME 2 5 5 5 5 0 # bsd consensus +syscon misc LC_NUMERIC_MASK 2 0 8 0x10 0x10 0 +syscon misc LC_COLLATE 3 1 1 1 1 0 # bsd consensus +syscon misc LC_MONETARY 4 3 3 3 3 0 # bsd consensus +syscon misc LC_TIME_MASK 4 0 0x10 0x20 0x20 0 +syscon misc LC_MESSAGES 5 6 6 6 6 0 # bsd consensus +syscon misc LC_ALL 6 0 0 0 0 0 +syscon misc LC_COLLATE_MASK 8 0 1 2 2 0 +syscon misc LC_MONETARY_MASK 0x10 0 4 8 8 0 +syscon misc LC_MESSAGES_MASK 0x20 0 0x20 0x40 0x40 0 +syscon misc LC_ALL_MASK 0x1fbf 0 63 126 126 0 -syscon lock LOCK_UNLOCK_CACHE 54 0 0 0 0 # wut +syscon lock LOCK_UNLOCK_CACHE 54 0 0 0 0 0 # wut -syscon misc ARPHRD_ETHER 1 1 1 1 0 # unix consensus -syscon misc ARPHRD_FCFABRIC 787 0 0 0 0 -syscon misc ARPHRD_IEEE80211 801 0 0 0 0 -syscon misc ARPHRD_IEEE80211_PRISM 802 0 0 0 0 -syscon misc ARPHRD_IEEE80211_RADIOTAP 803 0 0 0 0 -syscon misc ARPHRD_IEEE802154 804 0 0 0 0 -syscon misc ARPHRD_IEEE802_TR 800 0 0 0 0 -syscon misc ARPHRD_LOCALTLK 773 0 0 0 0 +syscon misc ARPHRD_ETHER 1 1 1 1 1 0 # unix consensus +syscon misc ARPHRD_FCFABRIC 787 0 0 0 0 0 +syscon misc ARPHRD_IEEE80211 801 0 0 0 0 0 +syscon misc ARPHRD_IEEE80211_PRISM 802 0 0 0 0 0 +syscon misc ARPHRD_IEEE80211_RADIOTAP 803 0 0 0 0 0 +syscon misc ARPHRD_IEEE802154 804 0 0 0 0 0 +syscon misc ARPHRD_IEEE802_TR 800 0 0 0 0 0 +syscon misc ARPHRD_LOCALTLK 773 0 0 0 0 0 -syscon misc BUS_ADRALN 1 1 1 1 0 # unix consensus -syscon misc BUS_ADRERR 2 2 2 2 0 # unix consensus -syscon misc BUS_OBJERR 3 3 3 3 0 # unix consensus -syscon misc BUS_DEVICE_RESET 12 0 0 0 0 -syscon misc BUS_MCEERR_AO 5 0 0 0 0 -syscon misc BUS_MCEERR_AR 4 0 0 0 0 +syscon misc BUS_ADRALN 1 1 1 1 1 0 # unix consensus +syscon misc BUS_ADRERR 2 2 2 2 2 0 # unix consensus +syscon misc BUS_OBJERR 3 3 3 3 3 0 # unix consensus +syscon misc BUS_DEVICE_RESET 12 0 0 0 0 0 +syscon misc BUS_MCEERR_AO 5 0 0 0 0 0 +syscon misc BUS_MCEERR_AR 4 0 0 0 0 0 -syscon misc IP6F_MORE_FRAG 0x0100 0x0100 0x0100 0x0100 0x0100 # consensus -syscon misc IP6F_OFF_MASK 0xf8ff 0xf8ff 0xf8ff 0xf8ff 0xf8ff # consensus -syscon misc IP6F_RESERVED_MASK 0x0600 0x0600 0x0600 0x0600 0x0600 # consensus +syscon misc IP6F_MORE_FRAG 0x0100 0x0100 0x0100 0x0100 0x0100 0x0100 # consensus +syscon misc IP6F_OFF_MASK 0xf8ff 0xf8ff 0xf8ff 0xf8ff 0xf8ff 0xf8ff # consensus +syscon misc IP6F_RESERVED_MASK 0x0600 0x0600 0x0600 0x0600 0x0600 0x0600 # consensus -syscon misc NO_SENSE 0 0 0 0 0 # consensus -syscon misc NO_ADDRESS 4 4 4 4 0x2afc # unix consensus -syscon misc NO_DATA 4 4 4 4 0x2afc # unix consensus -syscon misc NO_RECOVERY 3 3 3 3 0x2afb # unix consensus +syscon misc NO_SENSE 0 0 0 0 0 0 # consensus +syscon misc NO_ADDRESS 4 4 4 4 4 0x2afc # unix consensus +syscon misc NO_DATA 4 4 4 4 4 0x2afc # unix consensus +syscon misc NO_RECOVERY 3 3 3 3 3 0x2afb # unix consensus -syscon misc RB_DISABLE_CAD 0 0 0 0 0 # consensus -syscon misc RB_AUTOBOOT 0x01234567 0 0 0 0 -syscon misc RB_ENABLE_CAD 0x89abcdef 0 0 0 0 -syscon misc RB_HALT_SYSTEM 0xcdef0123 0 0 0 0 -syscon misc RB_KEXEC 0x45584543 0 0 0 0 -syscon misc RB_POWER_OFF 0x4321fedc 0 0 0 0 -syscon misc RB_SW_SUSPEND 0xd000fce2 0 0 0 0 +syscon misc RB_DISABLE_CAD 0 0 0 0 0 0 # consensus +syscon misc RB_AUTOBOOT 0x01234567 0 0 0 0 0 +syscon misc RB_ENABLE_CAD 0x89abcdef 0 0 0 0 0 +syscon misc RB_HALT_SYSTEM 0xcdef0123 0 0 0 0 0 +syscon misc RB_KEXEC 0x45584543 0 0 0 0 0 +syscon misc RB_POWER_OFF 0x4321fedc 0 0 0 0 0 +syscon misc RB_SW_SUSPEND 0xd000fce2 0 0 0 0 0 -syscon misc NI_DGRAM 0x10 0x10 0x10 0x10 0x10 # consensus -syscon misc NI_MAXSERV 0x20 0x20 0x20 0x20 0x20 # consensus -syscon misc NI_MAXHOST 0x0401 0x0401 0x0401 0x0100 0x0401 -syscon misc NI_NAMEREQD 8 4 4 8 4 -syscon misc NI_NOFQDN 4 1 1 4 1 -syscon misc NI_NUMERICHOST 1 2 2 1 2 -syscon misc NI_NUMERICSERV 2 8 8 2 8 -syscon misc NI_NUMERICSCOPE 0 0 0x20 0 0 +syscon misc NI_DGRAM 0x10 0x10 0x10 0x10 0x10 0x10 # consensus +syscon misc NI_MAXSERV 0x20 0x20 0x20 0x20 0x20 0x20 # consensus +syscon misc NI_MAXHOST 0x0401 0x0401 0x0401 0x0100 0x0100 0x0401 +syscon misc NI_NAMEREQD 8 4 4 8 8 4 +syscon misc NI_NOFQDN 4 1 1 4 4 1 +syscon misc NI_NUMERICHOST 1 2 2 1 1 2 +syscon misc NI_NUMERICSERV 2 8 8 2 2 8 +syscon misc NI_NUMERICSCOPE 0 0 0x20 0 0 0 -syscon misc TCPOLEN_MAXSEG 4 4 4 4 0 # unix consensus -syscon misc TCPOLEN_SACK_PERMITTED 2 2 2 2 0 # unix consensus -syscon misc TCPOLEN_TIMESTAMP 10 10 10 10 0 # unix consensus -syscon misc TCPOLEN_WINDOW 3 3 3 3 0 # unix consensus +syscon misc TCPOLEN_MAXSEG 4 4 4 4 4 0 # unix consensus +syscon misc TCPOLEN_SACK_PERMITTED 2 2 2 2 2 0 # unix consensus +syscon misc TCPOLEN_TIMESTAMP 10 10 10 10 10 0 # unix consensus +syscon misc TCPOLEN_WINDOW 3 3 3 3 3 0 # unix consensus -syscon misc TELOPT_NAOL 8 8 8 8 0 # unix consensus -syscon misc TELOPT_NAOP 9 9 9 9 0 # unix consensus -syscon misc TELOPT_NEW_ENVIRON 39 39 39 39 0 # unix consensus -syscon misc TELOPT_OLD_ENVIRON 36 36 36 36 0 # unix consensus +syscon misc TELOPT_NAOL 8 8 8 8 8 0 # unix consensus +syscon misc TELOPT_NAOP 9 9 9 9 9 0 # unix consensus +syscon misc TELOPT_NEW_ENVIRON 39 39 39 39 39 0 # unix consensus +syscon misc TELOPT_OLD_ENVIRON 36 36 36 36 36 0 # unix consensus -syscon misc EXTENDED_MODIFY_DATA_POINTER 0 0 0 0 0 # consensus -syscon misc EXTENDED_EXTENDED_IDENTIFY 2 0 0 0 0 -syscon misc EXTENDED_MESSAGE 1 0 0 0 0 -syscon misc EXTENDED_SDTR 1 0 0 0 0 -syscon misc EXTENDED_WDTR 3 0 0 0 0 +syscon misc EXTENDED_MODIFY_DATA_POINTER 0 0 0 0 0 0 # consensus +syscon misc EXTENDED_EXTENDED_IDENTIFY 2 0 0 0 0 0 +syscon misc EXTENDED_MESSAGE 1 0 0 0 0 0 +syscon misc EXTENDED_SDTR 1 0 0 0 0 0 +syscon misc EXTENDED_WDTR 3 0 0 0 0 0 -syscon misc ITIMER_REAL 0 0 0 0 0 # consensus -syscon misc ITIMER_VIRTUAL 1 1 1 1 1 # unix consensus (force win) -syscon misc ITIMER_PROF 2 2 2 2 2 # unix consensus (force win) +syscon misc ITIMER_REAL 0 0 0 0 0 0 # consensus +syscon misc ITIMER_VIRTUAL 1 1 1 1 1 1 # unix consensus (force win) +syscon misc ITIMER_PROF 2 2 2 2 2 2 # unix consensus (force win) -syscon misc L_SET 0 0 0 0 0 # consensus -syscon misc L_INCR 1 1 1 1 0 # unix consensus -syscon misc L_XTND 2 2 2 2 0 # unix consensus +syscon misc L_SET 0 0 0 0 0 0 # consensus +syscon misc L_INCR 1 1 1 1 1 0 # unix consensus +syscon misc L_XTND 2 2 2 2 2 0 # unix consensus -syscon misc SHUT_RD 0 0 0 0 0 # consensus (SD_RECEIVE) -syscon misc SHUT_WR 1 1 1 1 1 # consensus (SD_SEND) -syscon misc SHUT_RDWR 2 2 2 2 2 # consensus (SD_BOTH) +syscon misc SHUT_RD 0 0 0 0 0 0 # consensus (SD_RECEIVE) +syscon misc SHUT_WR 1 1 1 1 1 1 # consensus (SD_SEND) +syscon misc SHUT_RDWR 2 2 2 2 2 2 # consensus (SD_BOTH) -syscon misc Q_QUOTAOFF 0x800003 0x0200 0x0200 0x0200 0 # bsd consensus -syscon misc Q_QUOTAON 0x800002 0x0100 0x0100 0x0100 0 # bsd consensus -syscon misc Q_SYNC 0x800001 0x0600 0x0600 0x0600 0 # bsd consensus -syscon misc Q_GETQUOTA 0x800007 768 0x0700 768 0 -syscon misc Q_SETQUOTA 0x800008 0x0400 0x0800 0x0400 0 -syscon misc Q_GETFMT 0x800004 0 0 0 0 -syscon misc Q_GETINFO 0x800005 0 0 0 0 -syscon misc Q_SETINFO 0x800006 0 0 0 0 +syscon misc Q_QUOTAOFF 0x800003 0x0200 0x0200 0x0200 0x0200 0 # bsd consensus +syscon misc Q_QUOTAON 0x800002 0x0100 0x0100 0x0100 0x0100 0 # bsd consensus +syscon misc Q_SYNC 0x800001 0x0600 0x0600 0x0600 0x0600 0 # bsd consensus +syscon misc Q_GETQUOTA 0x800007 768 0x0700 768 768 0 +syscon misc Q_SETQUOTA 0x800008 0x0400 0x0800 0x0400 0x0400 0 +syscon misc Q_GETFMT 0x800004 0 0 0 0 0 +syscon misc Q_GETINFO 0x800005 0 0 0 0 0 +syscon misc Q_SETINFO 0x800006 0 0 0 0 0 -syscon misc SCM_RIGHTS 1 1 1 1 0 # unix consensus -syscon misc SCM_TIMESTAMP 29 2 2 4 0 -syscon misc SCM_CREDENTIALS 2 0 0 0 0 -syscon misc SCM_TIMESTAMPING 37 0 0 0 0 -syscon misc SCM_TIMESTAMPNS 35 0 0 0 0 -syscon misc SCM_WIFI_STATUS 41 0 0 0 0 +syscon misc SCM_RIGHTS 1 1 1 1 1 0 # unix consensus +syscon misc SCM_TIMESTAMP 29 2 2 4 8 0 +syscon misc SCM_CREDENTIALS 2 0 0 0 0 0 +syscon misc SCM_TIMESTAMPING 37 0 0 0 0 0 +syscon misc SCM_TIMESTAMPNS 35 0 0 0 0 0 +syscon misc SCM_WIFI_STATUS 41 0 0 0 0 0 -syscon misc FORM_C 3 3 3 3 0 # unix consensus -syscon misc FORM_N 1 1 1 1 0 # unix consensus -syscon misc FORM_T 2 2 2 2 0 # unix consensus +syscon misc FORM_C 3 3 3 3 3 0 # unix consensus +syscon misc FORM_N 1 1 1 1 1 0 # unix consensus +syscon misc FORM_T 2 2 2 2 2 0 # unix consensus -syscon misc REC_EOF 2 2 2 2 0 # unix consensus -syscon misc REC_EOR 1 1 1 1 0 # unix consensus -syscon misc REC_ESC -1 -1 -1 -1 0 # unix consensus +syscon misc REC_EOF 2 2 2 2 2 0 # unix consensus +syscon misc REC_EOR 1 1 1 1 1 0 # unix consensus +syscon misc REC_ESC -1 -1 -1 -1 -1 0 # unix consensus -syscon misc RPM_PCO_ADD 1 1 1 1 0 # unix consensus -syscon misc RPM_PCO_CHANGE 2 2 2 2 0 # unix consensus -syscon misc RPM_PCO_SETGLOBAL 3 3 3 3 0 # unix consensus +syscon misc RPM_PCO_ADD 1 1 1 1 1 0 # unix consensus +syscon misc RPM_PCO_CHANGE 2 2 2 2 2 0 # unix consensus +syscon misc RPM_PCO_SETGLOBAL 3 3 3 3 3 0 # unix consensus -syscon misc SEARCH_EQUAL 49 0 0 0 0 -syscon misc SEARCH_EQUAL_12 177 0 0 0 0 -syscon misc SEARCH_HIGH 48 0 0 0 0 -syscon misc SEARCH_HIGH_12 176 0 0 0 0 -syscon misc SEARCH_LOW 50 0 0 0 0 -syscon misc SEARCH_LOW_12 178 0 0 0 0 +syscon misc SEARCH_EQUAL 49 0 0 0 0 0 +syscon misc SEARCH_EQUAL_12 177 0 0 0 0 0 +syscon misc SEARCH_HIGH 48 0 0 0 0 0 +syscon misc SEARCH_HIGH_12 176 0 0 0 0 0 +syscon misc SEARCH_LOW 50 0 0 0 0 0 +syscon misc SEARCH_LOW_12 178 0 0 0 0 0 -syscon misc SI_QUEUE -1 0x010002 0x010002 -2 0 -syscon misc SI_TIMER -2 0x010003 0x010003 -3 0 -syscon misc SI_ASYNCIO -4 0x010004 0x010004 0 0 -syscon misc SI_MESGQ -3 0x010005 0x010005 0 0 -syscon misc SI_KERNEL 0x80 0 0x010006 0 0 -syscon misc SI_USER 0 0x010001 0x010001 0 0 -syscon misc SI_ASYNCNL -60 0 0 0 0 -syscon misc SI_LOAD_SHIFT 0x10 0 0 0 0 -syscon misc SI_SIGIO -5 0 0 0 0 -syscon misc SI_TKILL -6 0 0 0 0 +syscon misc SI_QUEUE -1 0x010002 0x010002 -2 -2 0 +syscon misc SI_TIMER -2 0x010003 0x010003 -3 -3 0 +syscon misc SI_ASYNCIO -4 0x010004 0x010004 0 0 0 +syscon misc SI_MESGQ -3 0x010005 0x010005 0 0 0 +syscon misc SI_KERNEL 0x80 0 0x010006 0 0 0 +syscon misc SI_USER 0 0x010001 0x010001 0 0 0 +syscon misc SI_ASYNCNL -60 0 0 0 0 0 +syscon misc SI_LOAD_SHIFT 0x10 0 0 0 0 0 +syscon misc SI_SIGIO -5 0 0 0 0 0 +syscon misc SI_TKILL -6 0 0 0 0 0 -syscon misc STRU_F 1 1 1 1 0 # unix consensus -syscon misc STRU_P 3 3 3 3 0 # unix consensus -syscon misc STRU_R 2 2 2 2 0 # unix consensus +syscon misc STRU_F 1 1 1 1 1 0 # unix consensus +syscon misc STRU_P 3 3 3 3 3 0 # unix consensus +syscon misc STRU_R 2 2 2 2 2 0 # unix consensus -syscon misc _XOPEN_IOV_MAX 0x10 0x10 0x10 0x10 0 # unix consensus -syscon misc _XOPEN_ENH_I18N 1 1 -1 -1 0 -syscon misc _XOPEN_UNIX 1 1 -1 -1 0 -syscon misc _XOPEN_NAME_MAX 63 63 63 63 63 # forced consensus -syscon misc _XOPEN_PATH_MAX 255 255 255 255 255 # forced consensus -syscon misc _XOPEN_VERSION 700 600 0 0 0 -syscon misc _XOPEN_SOURCE 700 0 0 0 0 +syscon misc _XOPEN_IOV_MAX 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon misc _XOPEN_ENH_I18N 1 1 -1 -1 -1 0 +syscon misc _XOPEN_UNIX 1 1 -1 -1 -1 0 +syscon misc _XOPEN_NAME_MAX 63 63 63 63 63 63 # forced consensus +syscon misc _XOPEN_PATH_MAX 255 255 255 255 255 255 # forced consensus +syscon misc _XOPEN_VERSION 700 600 0 0 0 0 +syscon misc _XOPEN_SOURCE 700 0 0 0 0 0 -syscon misc NL_CAT_LOCALE 1 1 1 1 0 # unix consensus -syscon misc NL_MSGMAX 0x7fffffff 0x7fff 0x7fff 0x7fff 0 # bsd consensus -syscon misc NL_SETMAX 0x7fffffff 255 255 255 0 # bsd consensus -syscon misc NL_ARGMAX 0x1000 9 0x1000 9 0 -syscon misc NL_LANGMAX 0x0800 14 31 14 0 -syscon misc NL_TEXTMAX 0x7fffffff 0x0800 0x0800 255 0 -syscon misc NL_NMAX 0x7fffffff 1 1 0 0 -syscon misc NL_SETD 1 1 0 1 0 +syscon misc NL_CAT_LOCALE 1 1 1 1 1 0 # unix consensus +syscon misc NL_MSGMAX 0x7fffffff 0x7fff 0x7fff 0x7fff 0x7fff 0 # bsd consensus +syscon misc NL_SETMAX 0x7fffffff 255 255 255 255 0 # bsd consensus +syscon misc NL_ARGMAX 0x1000 9 0x1000 9 9 0 +syscon misc NL_LANGMAX 0x0800 14 31 14 14 0 +syscon misc NL_TEXTMAX 0x7fffffff 0x0800 0x0800 255 255 0 +syscon misc NL_NMAX 0x7fffffff 1 1 0 0 0 +syscon misc NL_SETD 1 1 0 1 1 0 -syscon misc RTLD_LAZY 1 1 1 1 0 # unix consensus -syscon misc RTLD_NOW 2 2 2 2 0 # unix consensus -syscon misc RTLD_GLOBAL 0x0100 8 0x0100 0x0100 0 -syscon misc RTLD_NODELETE 0x1000 0x80 0x1000 0 0 -syscon misc RTLD_NOLOAD 4 0x10 0x2000 0 0 -syscon misc RTLD_DI_LINKMAP 0 0 2 0 0 -syscon misc RTLD_LOCAL 0 4 0 0 0 +syscon misc RTLD_LAZY 1 1 1 1 1 0 # unix consensus +syscon misc RTLD_NOW 2 2 2 2 2 0 # unix consensus +syscon misc RTLD_GLOBAL 0x0100 8 0x0100 0x0100 0x0100 0 +syscon misc RTLD_NODELETE 0x1000 0x80 0x1000 0 0 0 +syscon misc RTLD_NOLOAD 4 0x10 0x2000 0 0 0 +syscon misc RTLD_DI_LINKMAP 0 0 2 0 0 0 +syscon misc RTLD_LOCAL 0 4 0 0 0 0 -syscon rusage RUSAGE_SELF 0 0 0 0 0 # unix consensus & faked nt -syscon rusage RUSAGE_CHILDREN -1 -1 -1 -1 99 # unix consensus & unavailable on nt -syscon rusage RUSAGE_THREAD 1 99 1 1 1 # faked nt & unavailable on xnu +syscon rusage RUSAGE_SELF 0 0 0 0 0 0 # unix consensus & faked nt +syscon rusage RUSAGE_CHILDREN -1 -1 -1 -1 -1 99 # unix consensus & unavailable on nt +syscon rusage RUSAGE_THREAD 1 99 1 1 1 1 # faked nt & unavailable on xnu -syscon misc FSETLOCKING_QUERY 0 0 0 0 0 # consensus -syscon misc FSETLOCKING_BYCALLER 2 0 0 0 0 -syscon misc FSETLOCKING_INTERNAL 1 0 0 0 0 +syscon misc FSETLOCKING_QUERY 0 0 0 0 0 0 # consensus +syscon misc FSETLOCKING_BYCALLER 2 0 0 0 0 0 +syscon misc FSETLOCKING_INTERNAL 1 0 0 0 0 0 -syscon misc MAX_DQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0 # unix consensus -syscon misc MAX_IQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0 # unix consensus -syscon misc MAX_HANDLE_SZ 0x80 0 0 0 0 +syscon misc MAX_DQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0x093a80 0 # unix consensus +syscon misc MAX_IQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0x093a80 0 # unix consensus +syscon misc MAX_HANDLE_SZ 0x80 0 0 0 0 0 -syscon mlock MCL_CURRENT 1 1 1 1 0 # unix consensus -syscon mlock MCL_FUTURE 2 2 2 2 0 # unix consensus -syscon mlock MCL_ONFAULT 4 0 0 0 0 +syscon mlock MCL_CURRENT 1 1 1 1 1 0 # unix consensus +syscon mlock MCL_FUTURE 2 2 2 2 2 0 # unix consensus +syscon mlock MCL_ONFAULT 4 0 0 0 0 0 -syscon misc NS_DSA_MAX_BYTES 405 405 405 0 0 -syscon misc NS_DSA_MIN_SIZE 213 213 213 0 0 -syscon misc NS_DSA_SIG_SIZE 41 41 41 0 0 -syscon misc NS_KEY_PROT_DNSSEC 3 3 3 0 0 -syscon misc NS_KEY_PROT_EMAIL 2 2 2 0 0 -syscon misc NS_KEY_PROT_IPSEC 4 4 4 0 0 -syscon misc NS_KEY_PROT_TLS 1 1 1 0 0 -syscon misc NS_KEY_RESERVED_BITMASK2 0xffff 0xffff 0xffff 0 0 -syscon misc NS_NXT_MAX 127 127 127 0 0 -syscon misc NS_OPT_DNSSEC_OK 0x8000 0x8000 0x8000 0 0 -syscon misc NS_TSIG_ERROR_FORMERR -12 -12 -12 0 0 -syscon misc NS_TSIG_ERROR_NO_SPACE -11 -11 -11 0 0 -syscon misc NS_TSIG_ERROR_NO_TSIG -10 -10 -10 0 0 -syscon misc NS_TSIG_FUDGE 300 300 300 0 0 -syscon misc NS_TSIG_TCP_COUNT 100 100 100 0 0 +syscon misc NS_DSA_MAX_BYTES 405 405 405 0 0 0 +syscon misc NS_DSA_MIN_SIZE 213 213 213 0 0 0 +syscon misc NS_DSA_SIG_SIZE 41 41 41 0 0 0 +syscon misc NS_KEY_PROT_DNSSEC 3 3 3 0 0 0 +syscon misc NS_KEY_PROT_EMAIL 2 2 2 0 0 0 +syscon misc NS_KEY_PROT_IPSEC 4 4 4 0 0 0 +syscon misc NS_KEY_PROT_TLS 1 1 1 0 0 0 +syscon misc NS_KEY_RESERVED_BITMASK2 0xffff 0xffff 0xffff 0 0 0 +syscon misc NS_NXT_MAX 127 127 127 0 0 0 +syscon misc NS_OPT_DNSSEC_OK 0x8000 0x8000 0x8000 0 0 0 +syscon misc NS_TSIG_ERROR_FORMERR -12 -12 -12 0 0 0 +syscon misc NS_TSIG_ERROR_NO_SPACE -11 -11 -11 0 0 0 +syscon misc NS_TSIG_ERROR_NO_TSIG -10 -10 -10 0 0 0 +syscon misc NS_TSIG_FUDGE 300 300 300 0 0 0 +syscon misc NS_TSIG_TCP_COUNT 100 100 100 0 0 0 -syscon misc _IOC_NONE 0 0 0 0 0 # consensus -syscon misc _IOC_READ 2 0 0 0 0 -syscon misc _IOC_WRITE 1 0 0 0 0 +syscon misc _IOC_NONE 0 0 0 0 0 0 # consensus +syscon misc _IOC_READ 2 0 0 0 0 0 +syscon misc _IOC_WRITE 1 0 0 0 0 0 -syscon misc MLD_LISTENER_QUERY 130 130 130 130 0 # unix consensus -syscon misc MLD_LISTENER_REPORT 131 131 131 131 0 # unix consensus -syscon misc MLD_LISTENER_REDUCTION 132 132 132 0 0 +syscon misc MLD_LISTENER_QUERY 130 130 130 130 130 0 # unix consensus +syscon misc MLD_LISTENER_REPORT 131 131 131 131 131 0 # unix consensus +syscon misc MLD_LISTENER_REDUCTION 132 132 132 0 0 0 -syscon misc TTYDEF_CFLAG 0x05a0 0x4b00 0x4b00 0x4b00 0 # bsd consensus -syscon misc TTYDEF_IFLAG 0x2d22 0x2b02 0x2b02 0x2b02 0 # bsd consensus -syscon misc TTYDEF_LFLAG 0x8a1b 0x05cb 0x05cb 0x05cb 0 # bsd consensus -syscon misc TTYDEF_SPEED 13 0x2580 0x2580 0x2580 0 # bsd consensus -syscon misc TTYDEF_OFLAG 0x1805 3 3 7 0 +syscon misc TTYDEF_CFLAG 0x05a0 0x4b00 0x4b00 0x4b00 0x4b00 0 # bsd consensus +syscon misc TTYDEF_IFLAG 0x2d22 0x2b02 0x2b02 0x2b02 0x2b02 0 # bsd consensus +syscon misc TTYDEF_LFLAG 0x8a1b 0x05cb 0x05cb 0x05cb 0x05cb 0 # bsd consensus +syscon misc TTYDEF_SPEED 13 0x2580 0x2580 0x2580 0x2580 0 # bsd consensus +syscon misc TTYDEF_OFLAG 0x1805 3 3 7 7 0 -syscon misc ACCT_BYTEORDER 0 0 0 0 0 # consensus -syscon misc ACCT_COMM 0x10 0 0 0 0 +syscon misc ACCT_BYTEORDER 0 0 0 0 0 0 # consensus +syscon misc ACCT_COMM 0x10 0 0 0 0 0 -syscon misc COMMAND_COMPLETE 0 0 0 0 0 # consensus -syscon misc COMMAND_TERMINATED 17 0 0 0 0 +syscon misc COMMAND_COMPLETE 0 0 0 0 0 0 # consensus +syscon misc COMMAND_TERMINATED 17 0 0 0 0 0 -syscon select FD_SETSIZE 0x0400 0x0400 0x0400 0x0400 0x0400 # forced consensus (0x40 on NT) +syscon select FD_SETSIZE 0x0400 0x0400 0x0400 0x0400 0x0400 0x0400 # forced consensus (0x40 on NT) -syscon misc MATH_ERREXCEPT 2 2 2 2 0 # unix consensus -syscon misc MATH_ERRNO 1 1 1 1 0 # unix consensus +syscon misc MATH_ERREXCEPT 2 2 2 2 2 0 # unix consensus +syscon misc MATH_ERRNO 1 1 1 1 1 0 # unix consensus -syscon misc SCHED_FIFO 1 4 1 1 0 -syscon misc SCHED_RR 2 2 3 3 0 -syscon misc SCHED_OTHER 0 1 2 2 0 -syscon misc SCHED_BATCH 3 0 0 0 0 -syscon misc SCHED_IDLE 5 0 0 0 0 -syscon misc SCHED_RESET_ON_FORK 0x40000000 0 0 0 0 +syscon misc SCHED_FIFO 1 4 1 1 1 0 +syscon misc SCHED_RR 2 2 3 3 3 0 +syscon misc SCHED_OTHER 0 1 2 2 2 0 +syscon misc SCHED_BATCH 3 0 0 0 0 0 +syscon misc SCHED_IDLE 5 0 0 0 0 0 +syscon misc SCHED_RESET_ON_FORK 0x40000000 0 0 0 0 0 -syscon misc SEGV_ACCERR 2 2 2 2 0 # unix consensus -syscon misc SEGV_MAPERR 1 1 1 1 0 # unix consensus +syscon misc SEGV_ACCERR 2 2 2 2 2 0 # unix consensus +syscon misc SEGV_MAPERR 1 1 1 1 1 0 # unix consensus -syscon misc TRAP_BRKPT 1 1 1 1 0 # unix consensus -syscon misc TRAP_TRACE 2 2 2 2 0 # unix consensus +syscon misc TRAP_BRKPT 1 1 1 1 1 0 # unix consensus +syscon misc TRAP_TRACE 2 2 2 2 2 0 # unix consensus -syscon misc WRDE_APPEND 0 1 1 0 0 -syscon misc WRDE_BADCHAR 0 1 1 0 0 -syscon misc WRDE_BADVAL 0 2 2 0 0 -syscon misc WRDE_CMDSUB 0 3 3 0 0 -syscon misc WRDE_DOOFFS 0 2 2 0 0 -syscon misc WRDE_NOCMD 0 4 4 0 0 -syscon misc WRDE_NOSPACE 0 4 4 0 0 -syscon misc WRDE_NOSYS 0 5 5 0 0 -syscon misc WRDE_REUSE 0 8 8 0 0 -syscon misc WRDE_SHOWERR 0 0x10 0x10 0 0 -syscon misc WRDE_SYNTAX 0 6 6 0 0 -syscon misc WRDE_UNDEF 0 0x20 0x20 0 0 +syscon misc WRDE_APPEND 0 1 1 0 0 0 +syscon misc WRDE_BADCHAR 0 1 1 0 0 0 +syscon misc WRDE_BADVAL 0 2 2 0 0 0 +syscon misc WRDE_CMDSUB 0 3 3 0 0 0 +syscon misc WRDE_DOOFFS 0 2 2 0 0 0 +syscon misc WRDE_NOCMD 0 4 4 0 0 0 +syscon misc WRDE_NOSPACE 0 4 4 0 0 0 +syscon misc WRDE_NOSYS 0 5 5 0 0 0 +syscon misc WRDE_REUSE 0 8 8 0 0 0 +syscon misc WRDE_SHOWERR 0 0x10 0x10 0 0 0 +syscon misc WRDE_SYNTAX 0 6 6 0 0 0 +syscon misc WRDE_UNDEF 0 0x20 0x20 0 0 0 -syscon misc MCAST_BLOCK_SOURCE 43 84 84 0 43 -syscon misc MCAST_JOIN_GROUP 42 80 80 0 41 -syscon misc MCAST_JOIN_SOURCE_GROUP 46 82 82 0 45 -syscon misc MCAST_LEAVE_GROUP 45 81 81 0 42 -syscon misc MCAST_LEAVE_SOURCE_GROUP 47 83 83 0 46 -syscon misc MCAST_UNBLOCK_SOURCE 44 85 85 0 44 -syscon misc MCAST_INCLUDE 1 1 1 0 0 -syscon misc MCAST_EXCLUDE 0 2 2 0 0 -syscon misc MCAST_MSFILTER 48 0 0 0 0 +syscon misc MCAST_BLOCK_SOURCE 43 84 84 0 0 43 +syscon misc MCAST_JOIN_GROUP 42 80 80 0 0 41 +syscon misc MCAST_JOIN_SOURCE_GROUP 46 82 82 0 0 45 +syscon misc MCAST_LEAVE_GROUP 45 81 81 0 0 42 +syscon misc MCAST_LEAVE_SOURCE_GROUP 47 83 83 0 0 46 +syscon misc MCAST_UNBLOCK_SOURCE 44 85 85 0 0 44 +syscon misc MCAST_INCLUDE 1 1 1 0 0 0 +syscon misc MCAST_EXCLUDE 0 2 2 0 0 0 +syscon misc MCAST_MSFILTER 48 0 0 0 0 0 -syscon misc SIG_SETMASK 2 3 3 3 0 # bsd consensus -syscon misc SIG_UNBLOCK 1 2 2 2 0 # bsd consensus -syscon misc SIG_ATOMIC_MIN -2147483648 -2147483648 -9223372036854775808 -2147483648 0 -syscon misc SIG_BLOCK 0 1 1 1 0 # bsd consensus +syscon misc SIG_SETMASK 2 3 3 3 3 0 # bsd consensus +syscon misc SIG_UNBLOCK 1 2 2 2 2 0 # bsd consensus +syscon misc SIG_ATOMIC_MIN -2147483648 -2147483648 -9223372036854775808 -2147483648 -2147483648 0 +syscon misc SIG_BLOCK 0 1 1 1 1 0 # bsd consensus -syscon misc AREGTYPE 0 0 0 0 0 # consensus -syscon misc B0 0 0 0 0 0 # consensus -syscon misc CS5 0 0 0 0 0 # consensus -syscon misc CTIME 0 0 0 0 0 # consensus -syscon misc EFD_CLOEXEC 0x080000 0 0 0 0 -syscon misc EFD_NONBLOCK 0x0800 0 0 0 0 -syscon misc EFD_SEMAPHORE 1 0 0 0 0 +syscon misc AREGTYPE 0 0 0 0 0 0 # consensus +syscon misc B0 0 0 0 0 0 0 # consensus +syscon misc CS5 0 0 0 0 0 0 # consensus +syscon misc CTIME 0 0 0 0 0 0 # consensus +syscon misc EFD_CLOEXEC 0x080000 0 0 0 0 0 +syscon misc EFD_NONBLOCK 0x0800 0 0 0 0 0 +syscon misc EFD_SEMAPHORE 1 0 0 0 0 0 -syscon misc GOOD 0 0 0 0 0 # consensus -syscon misc IPPORT_RESERVED 0x0400 0x0400 0x0400 0x0400 0x0400 # consensus -syscon misc MTRESET 0 0 0 0 0 # consensus -syscon misc MT_ST_CAN_PARTITIONS 0x0400 0 0 0 0 -syscon misc MT_ST_HPLOADER_OFFSET 0x2710 0 0 0 0 -syscon misc MT_ST_SCSI2LOGICAL 0x0800 0 0 0 0 +syscon misc GOOD 0 0 0 0 0 0 # consensus +syscon misc IPPORT_RESERVED 0x0400 0x0400 0x0400 0x0400 0x0400 0x0400 # consensus +syscon misc MTRESET 0 0 0 0 0 0 # consensus +syscon misc MT_ST_CAN_PARTITIONS 0x0400 0 0 0 0 0 +syscon misc MT_ST_HPLOADER_OFFSET 0x2710 0 0 0 0 0 +syscon misc MT_ST_SCSI2LOGICAL 0x0800 0 0 0 0 0 -syscon misc SS_ONSTACK 1 1 1 1 0 # unix consensus -syscon misc SS_DISABLE 2 4 4 4 0 # bsd consensus +syscon misc SS_ONSTACK 1 1 1 1 1 0 # unix consensus +syscon misc SS_DISABLE 2 4 4 4 4 0 # bsd consensus -syscon misc SYNC_FILE_RANGE_WAIT_AFTER 4 0 0 0 0 -syscon misc SYNC_FILE_RANGE_WAIT_BEFORE 1 0 0 0 0 -syscon misc SYNC_FILE_RANGE_WRITE 2 0 0 0 0 +syscon misc SYNC_FILE_RANGE_WAIT_AFTER 4 0 0 0 0 0 +syscon misc SYNC_FILE_RANGE_WAIT_BEFORE 1 0 0 0 0 0 +syscon misc SYNC_FILE_RANGE_WRITE 2 0 0 0 0 0 -syscon misc TEST_UNIT_READY 0 0 0 0 0 -syscon misc TFD_CLOEXEC 0x080000 0 0 0 0 -syscon misc TFD_NONBLOCK 0x0800 0 0 0 0 -syscon misc TFD_TIMER_ABSTIME 1 0 0 0 0 +syscon misc TEST_UNIT_READY 0 0 0 0 0 0 +syscon misc TFD_CLOEXEC 0x080000 0 0 0 0 0 +syscon misc TFD_NONBLOCK 0x0800 0 0 0 0 0 +syscon misc TFD_TIMER_ABSTIME 1 0 0 0 0 0 -syscon misc USRQUOTA 0 0 0 0 0 -syscon misc FPE_FLTDIV 3 1 3 3 0 -syscon misc FPE_FLTINV 7 5 7 7 0 -syscon misc FPE_FLTOVF 4 2 4 4 0 -syscon misc FPE_FLTRES 6 4 6 6 0 -syscon misc FPE_FLTSUB 8 6 8 8 0 -syscon misc FPE_FLTUND 5 3 5 5 0 -syscon misc FPE_INTDIV 1 7 2 1 0 -syscon misc FPE_INTOVF 2 8 1 2 0 +syscon misc USRQUOTA 0 0 0 0 0 0 +syscon misc FPE_FLTDIV 3 1 3 3 3 0 +syscon misc FPE_FLTINV 7 5 7 7 7 0 +syscon misc FPE_FLTOVF 4 2 4 4 4 0 +syscon misc FPE_FLTRES 6 4 6 6 6 0 +syscon misc FPE_FLTSUB 8 6 8 8 8 0 +syscon misc FPE_FLTUND 5 3 5 5 5 0 +syscon misc FPE_INTDIV 1 7 2 1 1 0 +syscon misc FPE_INTOVF 2 8 1 2 2 0 -syscon misc ABDAY_1 0x020000 14 14 13 0 -syscon misc ABDAY_2 0x020001 15 15 14 0 -syscon misc ABDAY_3 0x020002 0x10 0x10 15 0 -syscon misc ABDAY_4 0x020003 17 17 0x10 0 -syscon misc ABDAY_5 0x020004 18 18 17 0 -syscon misc ABDAY_6 0x020005 19 19 18 0 -syscon misc ABDAY_7 0x020006 20 20 19 0 +syscon misc ABDAY_1 0x020000 14 14 13 13 0 +syscon misc ABDAY_2 0x020001 15 15 14 14 0 +syscon misc ABDAY_3 0x020002 0x10 0x10 15 15 0 +syscon misc ABDAY_4 0x020003 17 17 0x10 0x10 0 +syscon misc ABDAY_5 0x020004 18 18 17 17 0 +syscon misc ABDAY_6 0x020005 19 19 18 18 0 +syscon misc ABDAY_7 0x020006 20 20 19 19 0 -syscon misc DAY_1 0x020007 7 7 6 0 -syscon misc DAY_2 0x020008 8 8 7 0 -syscon misc DAY_3 0x020009 9 9 8 0 -syscon misc DAY_4 0x02000a 10 10 9 0 -syscon misc DAY_5 0x02000b 11 11 10 0 -syscon misc DAY_6 0x02000c 12 12 11 0 -syscon misc DAY_7 0x02000d 13 13 12 0 +syscon misc DAY_1 0x020007 7 7 6 6 0 +syscon misc DAY_2 0x020008 8 8 7 7 0 +syscon misc DAY_3 0x020009 9 9 8 8 0 +syscon misc DAY_4 0x02000a 10 10 9 9 0 +syscon misc DAY_5 0x02000b 11 11 10 10 0 +syscon misc DAY_6 0x02000c 12 12 11 11 0 +syscon misc DAY_7 0x02000d 13 13 12 12 0 -syscon misc FUTEX_PRIVATE_FLAG 0 0 0 0x80 0 -syscon misc FUTEX_REQUEUE 0 0 0 3 0 -syscon misc FUTEX_REQUEUE_PRIVATE 0 0 0 131 0 -syscon misc FUTEX_WAIT 0 0 0 1 0 -syscon misc FUTEX_WAIT_PRIVATE 0 0 0 129 0 -syscon misc FUTEX_WAKE 0 0 0 2 0 -syscon misc FUTEX_WAKE_PRIVATE 0 0 0 130 0 +syscon misc FUTEX_PRIVATE_FLAG 0 0 0 0x80 0x80 0 +syscon misc FUTEX_REQUEUE 0 0 0 3 3 0 +syscon misc FUTEX_REQUEUE_PRIVATE 0 0 0 131 131 0 +syscon misc FUTEX_WAIT 0 0 0 1 1 0 +syscon misc FUTEX_WAIT_PRIVATE 0 0 0 129 129 0 +syscon misc FUTEX_WAKE 0 0 0 2 2 0 +syscon misc FUTEX_WAKE_PRIVATE 0 0 0 130 130 0 -syscon misc HOST_NOT_FOUND 1 1 1 1 0x2af9 # unix consensus -syscon misc HOST_NAME_MAX 0x40 0 0 255 0 +syscon misc HOST_NOT_FOUND 1 1 1 1 1 0x2af9 # unix consensus +syscon misc HOST_NAME_MAX 0x40 0 0 255 255 0 -syscon misc LIO_WRITE 1 2 1 0 0 -syscon misc LIO_NOWAIT 1 1 0 0 0 -syscon misc LIO_READ 0 1 2 0 0 -syscon misc LIO_WAIT 0 2 1 0 0 -syscon misc LIO_NOP 2 0 0 0 0 +syscon misc LIO_WRITE 1 2 1 0 0 0 +syscon misc LIO_NOWAIT 1 1 0 0 0 0 +syscon misc LIO_READ 0 1 2 0 0 0 +syscon misc LIO_WAIT 0 2 1 0 0 0 +syscon misc LIO_NOP 2 0 0 0 0 0 -syscon misc MNT_FORCE 1 0x080000 0 0x080000 0 -syscon misc MNT_DETACH 2 0 0 0 0 -syscon misc MNT_EXPIRE 4 0 0 0 0 +syscon misc MNT_FORCE 1 0x080000 0 0x080000 0x080000 0 +syscon misc MNT_DETACH 2 0 0 0 0 0 +syscon misc MNT_EXPIRE 4 0 0 0 0 0 -syscon misc UDP_ENCAP_ESPINUDP_NON_IKE 1 0 1 0 0 -syscon misc UDP_NO_CHECK6_RX 102 0 0 0 0 -syscon misc UDP_NO_CHECK6_TX 101 0 0 0 0 +syscon misc UDP_ENCAP_ESPINUDP_NON_IKE 1 0 1 0 0 0 +syscon misc UDP_NO_CHECK6_RX 102 0 0 0 0 0 +syscon misc UDP_NO_CHECK6_TX 101 0 0 0 0 0 -syscon misc ACK 4 4 4 4 0 # unix consensus -syscon misc BIG_ENDIAN 0x10e1 0x10e1 0x10e1 0x10e1 0 # unix consensus -syscon misc CDISCARD 15 15 15 15 0 # unix consensus -syscon misc CDSUSP 25 25 25 25 0 # unix consensus -syscon misc CEOF 4 4 4 4 0 # unix consensus -syscon misc CEOT 4 4 4 4 0 # unix consensus -syscon misc CERASE 127 127 127 127 0 # unix consensus -syscon misc CFLUSH 15 15 15 15 0 # unix consensus -syscon misc CHRTYPE 51 51 51 51 0 # unix consensus -syscon misc CINTR 3 3 3 3 0 # unix consensus -syscon misc CKILL 21 21 21 21 0 # unix consensus -syscon misc CLNEXT 22 22 22 22 0 # unix consensus -syscon misc CMIN 1 1 1 1 0 # unix consensus -syscon misc COMPLETE 2 2 2 2 0 # unix consensus -syscon misc CONTINUE 3 3 3 3 0 # unix consensus -syscon misc CONTTYPE 55 55 55 55 0 # unix consensus -syscon misc COPY_ABORTED 10 0 0 0 0 -syscon misc COPY_VERIFY 58 0 0 0 0 +syscon misc ACK 4 4 4 4 4 0 # unix consensus +syscon misc BIG_ENDIAN 0x10e1 0x10e1 0x10e1 0x10e1 0x10e1 0 # unix consensus +syscon misc CDISCARD 15 15 15 15 15 0 # unix consensus +syscon misc CDSUSP 25 25 25 25 25 0 # unix consensus +syscon misc CEOF 4 4 4 4 4 0 # unix consensus +syscon misc CEOT 4 4 4 4 4 0 # unix consensus +syscon misc CERASE 127 127 127 127 127 0 # unix consensus +syscon misc CFLUSH 15 15 15 15 15 0 # unix consensus +syscon misc CHRTYPE 51 51 51 51 51 0 # unix consensus +syscon misc CINTR 3 3 3 3 3 0 # unix consensus +syscon misc CKILL 21 21 21 21 21 0 # unix consensus +syscon misc CLNEXT 22 22 22 22 22 0 # unix consensus +syscon misc CMIN 1 1 1 1 1 0 # unix consensus +syscon misc COMPLETE 2 2 2 2 2 0 # unix consensus +syscon misc CONTINUE 3 3 3 3 3 0 # unix consensus +syscon misc CONTTYPE 55 55 55 55 55 0 # unix consensus +syscon misc COPY_ABORTED 10 0 0 0 0 0 +syscon misc COPY_VERIFY 58 0 0 0 0 0 -syscon misc CQUIT 28 28 28 28 0 # unix consensus -syscon misc CREPRINT 18 18 18 18 0 # unix consensus -syscon misc CRPRNT 18 18 18 18 0 # unix consensus -syscon misc CSTART 17 17 17 17 0 # unix consensus -syscon misc CSTOP 19 19 19 19 0 # unix consensus -syscon misc CSUSP 26 26 26 26 0 # unix consensus -syscon misc CWERASE 23 23 23 23 0 # unix consensus -syscon misc DATA 3 3 3 3 0 # unix consensus -syscon misc DEV_BSIZE 0x0200 0x0200 0x0200 0x0200 0 # unix consensus -syscon misc DIRTYPE 53 53 53 53 0 # unix consensus -syscon misc ELF_NGREG 27 0 0 0 0 -syscon misc ELF_PRARGSZ 80 0 0 0 0 +syscon misc CQUIT 28 28 28 28 28 0 # unix consensus +syscon misc CREPRINT 18 18 18 18 18 0 # unix consensus +syscon misc CRPRNT 18 18 18 18 18 0 # unix consensus +syscon misc CSTART 17 17 17 17 17 0 # unix consensus +syscon misc CSTOP 19 19 19 19 19 0 # unix consensus +syscon misc CSUSP 26 26 26 26 26 0 # unix consensus +syscon misc CWERASE 23 23 23 23 23 0 # unix consensus +syscon misc DATA 3 3 3 3 3 0 # unix consensus +syscon misc DEV_BSIZE 0x0200 0x0200 0x0200 0x0200 0x0200 0 # unix consensus +syscon misc DIRTYPE 53 53 53 53 53 0 # unix consensus +syscon misc ELF_NGREG 27 0 0 0 0 0 +syscon misc ELF_PRARGSZ 80 0 0 0 0 0 -syscon misc EM_ALTERA_NIOS2 113 0 0 0 0 -syscon misc EM_LATTICEMICO32 138 0 0 0 0 +syscon misc EM_ALTERA_NIOS2 113 0 0 0 0 0 +syscon misc EM_LATTICEMICO32 138 0 0 0 0 0 -syscon misc EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0 # unix consensus +syscon misc EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0x20 0 # unix consensus # fallocate() flags (posix_fallocate() doesn't have these) # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon misc FALLOC_FL_KEEP_SIZE 0x01 -1 -1 -1 -1 # bsd consensus -syscon misc FALLOC_FL_PUNCH_HOLE 0x02 -1 -1 -1 -1 # bsd consensus -syscon misc FALLOC_FL_NO_HIDE_STALE 0x04 -1 -1 -1 -1 # bsd consensus -syscon misc FALLOC_FL_COLLAPSE_RANGE 0x08 -1 -1 -1 -1 # bsd consensus -syscon misc FALLOC_FL_ZERO_RANGE 0x10 -1 -1 -1 0x000980C8 # bsd consensus & kNtFsctlSetZeroData -syscon misc FALLOC_FL_INSERT_RANGE 0x20 -1 -1 -1 -1 # bsd consensus -syscon misc FALLOC_FL_UNSHARE_RANGE 0x40 -1 -1 -1 -1 # bsd consensus +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon misc FALLOC_FL_KEEP_SIZE 0x01 -1 -1 -1 -1 -1 # bsd consensus +syscon misc FALLOC_FL_PUNCH_HOLE 0x02 -1 -1 -1 -1 -1 # bsd consensus +syscon misc FALLOC_FL_NO_HIDE_STALE 0x04 -1 -1 -1 -1 -1 # bsd consensus +syscon misc FALLOC_FL_COLLAPSE_RANGE 0x08 -1 -1 -1 -1 -1 # bsd consensus +syscon misc FALLOC_FL_ZERO_RANGE 0x10 -1 -1 -1 -1 0x000980C8 # bsd consensus & kNtFsctlSetZeroData +syscon misc FALLOC_FL_INSERT_RANGE 0x20 -1 -1 -1 -1 -1 # bsd consensus +syscon misc FALLOC_FL_UNSHARE_RANGE 0x40 -1 -1 -1 -1 -1 # bsd consensus -syscon misc FIFOTYPE 54 54 54 54 0 # unix consensus -syscon misc GRPQUOTA 1 1 1 1 0 # unix consensus -syscon misc IF_NAMESIZE 0x10 0x10 0x10 0x10 0 # unix consensus -syscon misc INTERMEDIATE_C_GOOD 10 0 0 0 0 -syscon misc INTERMEDIATE_GOOD 8 0 0 0 0 +syscon misc FIFOTYPE 54 54 54 54 54 0 # unix consensus +syscon misc GRPQUOTA 1 1 1 1 1 0 # unix consensus +syscon misc IF_NAMESIZE 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon misc INTERMEDIATE_C_GOOD 10 0 0 0 0 0 +syscon misc INTERMEDIATE_GOOD 8 0 0 0 0 0 -syscon misc IOV_MAX 0x0400 0x0400 0x0400 0x0400 16 # unix consensus & MSG_MAXIOVLEN -syscon misc LINE_MAX 0x0800 0x0800 0x0800 0x0800 0 # unix consensus -syscon misc LINKED_CMD_COMPLETE 10 0 0 0 0 -syscon misc LINKED_FLG_CMD_COMPLETE 11 0 0 0 0 +syscon misc IOV_MAX 0x0400 0x0400 0x0400 0x0400 0x0400 16 # unix consensus & MSG_MAXIOVLEN +syscon misc LINE_MAX 0x0800 0x0800 0x0800 0x0800 0x0800 0 # unix consensus +syscon misc LINKED_CMD_COMPLETE 10 0 0 0 0 0 +syscon misc LINKED_FLG_CMD_COMPLETE 11 0 0 0 0 0 -syscon misc LITTLE_ENDIAN 0x04d2 0x04d2 0x04d2 0x04d2 0 # unix consensus -syscon misc LNKTYPE 49 49 49 49 0 # unix consensus -syscon misc MAXNAMLEN 255 255 255 255 0 # unix consensus -syscon misc MAXQUOTAS 2 2 2 2 0 # unix consensus -syscon misc MEDIUM_ERROR 3 0 0 0 0 -syscon misc MEDIUM_SCAN 56 0 0 0 0 +syscon misc LITTLE_ENDIAN 0x04d2 0x04d2 0x04d2 0x04d2 0x04d2 0 # unix consensus +syscon misc LNKTYPE 49 49 49 49 49 0 # unix consensus +syscon misc MAXNAMLEN 255 255 255 255 255 0 # unix consensus +syscon misc MAXQUOTAS 2 2 2 2 2 0 # unix consensus +syscon misc MEDIUM_ERROR 3 0 0 0 0 0 +syscon misc MEDIUM_SCAN 56 0 0 0 0 0 -syscon misc NBBY 8 8 8 8 0 # unix consensus -syscon misc NR_DQHASH 43 0 0 0 0 -syscon misc NR_DQUOTS 0x0100 0 0 0 0 +syscon misc NBBY 8 8 8 8 8 0 # unix consensus +syscon misc NR_DQHASH 43 0 0 0 0 0 +syscon misc NR_DQUOTS 0x0100 0 0 0 0 0 -syscon misc PERSISTENT_RESERVE_IN 94 0 0 0 0 -syscon misc PERSISTENT_RESERVE_OUT 95 0 0 0 0 +syscon misc PERSISTENT_RESERVE_IN 94 0 0 0 0 0 +syscon misc PERSISTENT_RESERVE_OUT 95 0 0 0 0 0 -syscon misc PRELIM 1 1 1 1 0 # unix consensus -syscon misc REGTYPE 48 48 48 48 0 # unix consensus -syscon misc RES_PRF_CLASS 4 4 4 4 0 # unix consensus -syscon misc RHF_GUARANTEE_START_INIT 0x80 0 0 0 0 -syscon misc RHF_NO_LIBRARY_REPLACEMENT 4 0 0 0 0 +syscon misc PRELIM 1 1 1 1 1 0 # unix consensus +syscon misc REGTYPE 48 48 48 48 48 0 # unix consensus +syscon misc RES_PRF_CLASS 4 4 4 4 4 0 # unix consensus +syscon misc RHF_GUARANTEE_START_INIT 0x80 0 0 0 0 0 +syscon misc RHF_NO_LIBRARY_REPLACEMENT 4 0 0 0 0 0 -syscon misc RRQ 1 1 1 1 0 # unix consensus -syscon misc RTF_NOFORWARD 0x1000 0 0 0 0 -syscon misc RTF_NOPMTUDISC 0x4000 0 0 0 0 +syscon misc RRQ 1 1 1 1 1 0 # unix consensus +syscon misc RTF_NOFORWARD 0x1000 0 0 0 0 0 +syscon misc RTF_NOPMTUDISC 0x4000 0 0 0 0 0 -syscon misc SARMAG 8 8 8 8 0 # unix consensus -syscon misc SEGSIZE 0x0200 0x0200 0x0200 0x0200 0 # unix consensus -syscon misc SEND_DIAGNOSTIC 29 0 0 0 0 -syscon misc SEND_VOLUME_TAG 182 0 0 0 0 +syscon misc SARMAG 8 8 8 8 8 0 # unix consensus +syscon misc SEGSIZE 0x0200 0x0200 0x0200 0x0200 0x0200 0 # unix consensus +syscon misc SEND_DIAGNOSTIC 29 0 0 0 0 0 +syscon misc SEND_VOLUME_TAG 182 0 0 0 0 0 -syscon misc SET_LIMITS 51 0 0 0 0 -syscon misc SET_WINDOW 36 0 0 0 0 +syscon misc SET_LIMITS 51 0 0 0 0 0 +syscon misc SET_WINDOW 36 0 0 0 0 0 -syscon misc SFD_CLOEXEC 0x080000 0 0 0 0 -syscon misc SFD_NONBLOCK 0x0800 0 0 0 0 +syscon misc SFD_CLOEXEC 0x080000 0 0 0 0 0 +syscon misc SFD_NONBLOCK 0x0800 0 0 0 0 0 -syscon misc SOMAXCONN 0x80 0x80 0x80 0x80 0x7fffffff # unix consensus -syscon misc SUBCMDMASK 255 255 255 255 0 # unix consensus -syscon misc SUBCMDSHIFT 8 8 8 8 0 # unix consensus -syscon misc SYMTYPE 50 50 50 50 0 # unix consensus -syscon misc TGEXEC 8 8 8 8 0 # unix consensus -syscon misc TGREAD 0x20 0x20 0x20 0x20 0 # unix consensus -syscon misc TGWRITE 0x10 0x10 0x10 0x10 0 # unix consensus -syscon misc TMAGLEN 6 6 6 6 0 # unix consensus -syscon misc TOEXEC 1 1 1 1 0 # unix consensus -syscon misc TOREAD 4 4 4 4 0 # unix consensus -syscon misc TOWRITE 2 2 2 2 0 # unix consensus -syscon misc TRANSIENT 4 4 4 4 0 # unix consensus -syscon misc TRY_AGAIN 2 2 2 2 0x2afa # unix consensus -syscon misc TSGID 0x0400 0x0400 0x0400 0x0400 0 # unix consensus -syscon misc TSUID 0x0800 0x0800 0x0800 0x0800 0 # unix consensus -syscon misc TSVTX 0x0200 0x0200 0x0200 0x0200 0 # unix consensus -syscon misc TUEXEC 0x40 0x40 0x40 0x40 0 # unix consensus -syscon misc TUREAD 0x0100 0x0100 0x0100 0x0100 0 # unix consensus -syscon misc TUWRITE 0x80 0x80 0x80 0x80 0 # unix consensus -syscon misc TVERSLEN 2 2 2 2 0 # unix consensus -syscon misc WORD_BIT 0x20 0x20 0x20 0x20 0 # unix consensus -syscon misc WRQ 2 2 2 2 0 # unix consensus -syscon misc SIGEV_THREAD 2 3 2 0 0 -syscon misc SIGEV_SIGNAL 0 1 1 0 0 -syscon misc SIGEV_NONE 1 0 0 0 0 +syscon misc SOMAXCONN 0x80 0x80 0x80 0x80 0x80 0x7fffffff # unix consensus +syscon misc SUBCMDMASK 255 255 255 255 255 0 # unix consensus +syscon misc SUBCMDSHIFT 8 8 8 8 8 0 # unix consensus +syscon misc SYMTYPE 50 50 50 50 50 0 # unix consensus +syscon misc TGEXEC 8 8 8 8 8 0 # unix consensus +syscon misc TGREAD 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon misc TGWRITE 0x10 0x10 0x10 0x10 0x10 0 # unix consensus +syscon misc TMAGLEN 6 6 6 6 6 0 # unix consensus +syscon misc TOEXEC 1 1 1 1 1 0 # unix consensus +syscon misc TOREAD 4 4 4 4 4 0 # unix consensus +syscon misc TOWRITE 2 2 2 2 2 0 # unix consensus +syscon misc TRANSIENT 4 4 4 4 4 0 # unix consensus +syscon misc TRY_AGAIN 2 2 2 2 2 0x2afa # unix consensus +syscon misc TSGID 0x0400 0x0400 0x0400 0x0400 0x0400 0 # unix consensus +syscon misc TSUID 0x0800 0x0800 0x0800 0x0800 0x0800 0 # unix consensus +syscon misc TSVTX 0x0200 0x0200 0x0200 0x0200 0x0200 0 # unix consensus +syscon misc TUEXEC 0x40 0x40 0x40 0x40 0x40 0 # unix consensus +syscon misc TUREAD 0x0100 0x0100 0x0100 0x0100 0x0100 0 # unix consensus +syscon misc TUWRITE 0x80 0x80 0x80 0x80 0x80 0 # unix consensus +syscon misc TVERSLEN 2 2 2 2 2 0 # unix consensus +syscon misc WORD_BIT 0x20 0x20 0x20 0x20 0x20 0 # unix consensus +syscon misc WRQ 2 2 2 2 2 0 # unix consensus +syscon misc SIGEV_THREAD 2 3 2 0 2 0 +syscon misc SIGEV_SIGNAL 0 1 1 0 1 0 +syscon misc SIGEV_NONE 1 0 0 0 0 0 -syscon misc BC_BASE_MAX 99 99 99 0x7fffffff 0 -syscon misc BC_DIM_MAX 0x0800 0x0800 0x0800 0xffff 0 -syscon misc BC_SCALE_MAX 99 99 99 0x7fffffff 0 -syscon misc BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x7fffffff 0 +syscon misc BC_BASE_MAX 99 99 99 0x7fffffff 0x7fffffff 0 +syscon misc BC_DIM_MAX 0x0800 0x0800 0x0800 0xffff 0xffff 0 +syscon misc BC_SCALE_MAX 99 99 99 0x7fffffff 0x7fffffff 0 +syscon misc BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x7fffffff 0x7fffffff 0 -syscon misc RLIM_NLIMITS 0x10 9 15 9 0 -syscon misc RLIM_INFINITY -1 0 0x7fffffffffffffff 0 0 -syscon misc RLIM_SAVED_CUR -1 0 0x7fffffffffffffff 0 0 -syscon misc RLIM_SAVED_MAX -1 0 0x7fffffffffffffff 0 0 +syscon misc RLIM_NLIMITS 0x10 9 15 9 9 0 +syscon misc RLIM_INFINITY -1 0 0x7fffffffffffffff 0 0 0 +syscon misc RLIM_SAVED_CUR -1 0 0x7fffffffffffffff 0 0 0 +syscon misc RLIM_SAVED_MAX -1 0 0x7fffffffffffffff 0 0 0 -syscon misc ABORTED_COMMAND 11 0 0 0 0 -syscon misc ACORE 0 8 8 8 0 # bsd consensus -syscon misc AFORK 0 1 1 1 0 # bsd consensus -syscon misc AIO_ALLDONE 2 1 3 0 0 -syscon misc AIO_NOTCANCELED 1 4 2 0 0 -syscon misc AIO_CANCELED 0 2 1 0 0 +syscon misc ABORTED_COMMAND 11 0 0 0 0 0 +syscon misc ACORE 0 8 8 8 8 0 # bsd consensus +syscon misc AFORK 0 1 1 1 1 0 # bsd consensus +syscon misc AIO_ALLDONE 2 1 3 0 0 0 +syscon misc AIO_NOTCANCELED 1 4 2 0 0 0 +syscon misc AIO_CANCELED 0 2 1 0 0 0 -syscon misc ALLOW_MEDIUM_REMOVAL 30 0 0 0 0 -syscon misc ASU 0 2 2 2 0 # bsd consensus -syscon misc ATF_NETMASK 0x20 0 0 0 0 -syscon misc AXSIG 0 0x10 0x10 0x10 0 # bsd consensus -syscon misc B1000000 0x1008 0 0 0 0 -syscon misc B110 3 110 110 110 0 # bsd consensus -syscon misc B115200 0x1002 0x01c200 0x01c200 0x01c200 0 # bsd consensus -syscon misc B1152000 0x1009 0 0 0 0 -syscon misc B1200 9 0x04b0 0x04b0 0x04b0 0 # bsd consensus -syscon misc B134 4 134 134 134 0 # bsd consensus -syscon misc B150 5 150 150 150 0 # bsd consensus -syscon misc B1500000 0x100a 0 0 0 0 -syscon misc B1800 10 0x0708 0x0708 0x0708 0 # bsd consensus -syscon misc B19200 14 0x4b00 0x4b00 0x4b00 0 # bsd consensus -syscon misc B200 6 200 200 200 0 # bsd consensus -syscon misc B2000000 0x100b 0 0 0 0 -syscon misc B230400 0x1003 0x038400 0x038400 0x038400 0 # bsd consensus -syscon misc B2400 11 0x0960 0x0960 0x0960 0 # bsd consensus -syscon misc B2500000 0x100c 0 0 0 0 -syscon misc B300 7 300 300 300 0 # bsd consensus -syscon misc B3000000 0x100d 0 0 0 0 -syscon misc B3500000 0x100e 0 0 0 0 -syscon misc B38400 15 0x9600 0x9600 0x9600 0 # bsd consensus -syscon misc B4000000 0x100f 0 0 0 0 -syscon misc B4800 12 0x12c0 0x12c0 0x12c0 0 # bsd consensus -syscon misc B50 1 50 50 50 0 # bsd consensus -syscon misc B500000 0x1005 0 0 0 0 -syscon misc B57600 0x1001 0xe100 0xe100 0xe100 0 # bsd consensus -syscon misc B576000 0x1006 0 0 0 0 -syscon misc B600 8 600 600 600 0 # bsd consensus -syscon misc B75 2 75 75 75 0 # bsd consensus -syscon misc B9600 13 0x2580 0x2580 0x2580 0 # bsd consensus -syscon misc BITSPERBYTE 8 0 0 0 0 -syscon misc BLANK_CHECK 8 0 0 0 0 -syscon misc CHANGE_DEFINITION 0x40 0 0 0 0 -syscon misc CHARBITS 8 0 0 0 0 -syscon misc CHECK_CONDITION 1 0 0 0 0 -syscon misc CONDITION_GOOD 2 0 0 0 0 -syscon misc CREAD 0x80 0x0800 0x0800 0x0800 0 # bsd consensus -syscon misc CSTOPB 0x40 0x0400 0x0400 0x0400 0 # bsd consensus -syscon misc DATA_PROTECT 7 0 0 0 0 -syscon misc DELAYTIMER_MAX 0x7fffffff 0 0 0 0 -syscon misc DMAXEXP 0x0400 0 0 0 0 -syscon misc DMINEXP -1021 0 0 0 0 -syscon misc DOUBLEBITS 0x40 0 0 0 0 -syscon misc ERA_D_FMT 0x02002e 46 46 0 0 -syscon misc ERA_D_T_FMT 0x020030 47 47 0 0 -syscon misc ERA_T_FMT 0x020031 48 48 0 0 +syscon misc ALLOW_MEDIUM_REMOVAL 30 0 0 0 0 0 +syscon misc ASU 0 2 2 2 2 0 # bsd consensus +syscon misc ATF_NETMASK 0x20 0 0 0 0 0 +syscon misc AXSIG 0 0x10 0x10 0x10 0x10 0 # bsd consensus +syscon misc B1000000 0x1008 0 0 0 0 0 +syscon misc B110 3 110 110 110 110 0 # bsd consensus +syscon misc B115200 0x1002 0x01c200 0x01c200 0x01c200 0x01c200 0 # bsd consensus +syscon misc B1152000 0x1009 0 0 0 0 0 +syscon misc B1200 9 0x04b0 0x04b0 0x04b0 0x04b0 0 # bsd consensus +syscon misc B134 4 134 134 134 134 0 # bsd consensus +syscon misc B150 5 150 150 150 150 0 # bsd consensus +syscon misc B1500000 0x100a 0 0 0 0 0 +syscon misc B1800 10 0x0708 0x0708 0x0708 0x0708 0 # bsd consensus +syscon misc B19200 14 0x4b00 0x4b00 0x4b00 0x4b00 0 # bsd consensus +syscon misc B200 6 200 200 200 200 0 # bsd consensus +syscon misc B2000000 0x100b 0 0 0 0 0 +syscon misc B230400 0x1003 0x038400 0x038400 0x038400 0x038400 0 # bsd consensus +syscon misc B2400 11 0x0960 0x0960 0x0960 0x0960 0 # bsd consensus +syscon misc B2500000 0x100c 0 0 0 0 0 +syscon misc B300 7 300 300 300 300 0 # bsd consensus +syscon misc B3000000 0x100d 0 0 0 0 0 +syscon misc B3500000 0x100e 0 0 0 0 0 +syscon misc B38400 15 0x9600 0x9600 0x9600 0x9600 0 # bsd consensus +syscon misc B4000000 0x100f 0 0 0 0 0 +syscon misc B4800 12 0x12c0 0x12c0 0x12c0 0x12c0 0 # bsd consensus +syscon misc B50 1 50 50 50 50 0 # bsd consensus +syscon misc B500000 0x1005 0 0 0 0 0 +syscon misc B57600 0x1001 0xe100 0xe100 0xe100 0xe100 0 # bsd consensus +syscon misc B576000 0x1006 0 0 0 0 0 +syscon misc B600 8 600 600 600 600 0 # bsd consensus +syscon misc B75 2 75 75 75 75 0 # bsd consensus +syscon misc B9600 13 0x2580 0x2580 0x2580 0x2580 0 # bsd consensus +syscon misc BITSPERBYTE 8 0 0 0 0 0 +syscon misc BLANK_CHECK 8 0 0 0 0 0 +syscon misc CHANGE_DEFINITION 0x40 0 0 0 0 0 +syscon misc CHARBITS 8 0 0 0 0 0 +syscon misc CHECK_CONDITION 1 0 0 0 0 0 +syscon misc CONDITION_GOOD 2 0 0 0 0 0 +syscon misc CREAD 0x80 0x0800 0x0800 0x0800 0x0800 0 # bsd consensus +syscon misc CSTOPB 0x40 0x0400 0x0400 0x0400 0x0400 0 # bsd consensus +syscon misc DATA_PROTECT 7 0 0 0 0 0 +syscon misc DELAYTIMER_MAX 0x7fffffff 0 0 0 0 0 +syscon misc DMAXEXP 0x0400 0 0 0 0 0 +syscon misc DMINEXP -1021 0 0 0 0 0 +syscon misc DOUBLEBITS 0x40 0 0 0 0 0 +syscon misc ERA_D_FMT 0x02002e 46 46 0 0 0 +syscon misc ERA_D_T_FMT 0x020030 47 47 0 0 0 +syscon misc ERA_T_FMT 0x020031 48 48 0 0 0 # Teletypewriter Control, e.g. # @@ -2418,1138 +2421,1138 @@ syscon misc ERA_T_FMT 0x020031 48 48 0 0 # ≈ TCSETA → About 12,600 results (0.32 seconds) # = TIOCSETA → About 3,110 results (0.41 seconds) # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon termios TCGETS 0x5401 0x40487413 0x402c7413 0x402c7413 -1 # Gets console settings; tcgetattr(tty, argp) → ioctl(tty, TCGETS, struct termios *argp); polyfilled NT -syscon compat TIOCGETA 0x5401 0x40487413 0x402c7413 0x402c7413 -1 # Gets console settings; = tcgetattr(tty, struct termios *argp) -#syscon compat TCGETA 0x5405 -1 -1 -1 -1 # Gets console settings; ≈ ioctl(fd, TCGETA, struct termio *argp) -syscon termios TCSANOW 0 0 0 0 0 # Sets console settings; tcsetattr(fd, TCSANOW, argp); polyfilled NT -syscon termios TCSETS 0x5402 0x80487414 0x802c7414 0x802c7414 0x5402 # Sets console settings; = ioctl(tty, TCSETS, const struct termios *argp); polyfilled NT -syscon compat TIOCSETA 0x5402 0x80487414 0x802c7414 0x802c7414 0x5402 # Sets console settings; = ioctl(tty, TIOCSETA, const struct termios *argp); polyfilled NT -#syscon compat TCSETA 0x5402 0x80487414 0x802c7414 0x802c7414 0x5402 # Sets console settings; ≈ ioctl(tty, TCSETA, const struct termio *argp); polyfilled NT -syscon termios TCSADRAIN 1 1 1 1 1 # Drains output & sets console settings; tcsetawttr(fd, TCSADRAIN, argp); polyfilled NT -syscon termios TCSETSW 0x5403 0x80487415 0x802c7415 0x802c7415 0x5403 # Drains output & sets console settings; = ioctl(tty, TCSETSW, const struct termios *argp); polyfilled NT -syscon compat TIOCSETAW 0x5403 0x80487415 0x802c7415 0x802c7415 0x5403 # Drains output & sets console settings; = ioctl(tty, TIOCSETAW, const struct termios *argp); polyfilled NT -#syscon compat TCSETAW 0x5403 0x80487415 0x802c7415 0x802c7415 0x5403 # Drains output & sets console settings; ≈ ioctl(tty, TCSETAW, const struct termio *argp); polyfilled NT -syscon termios TCSAFLUSH 2 2 2 2 2 # Drops input & drains output & sets console settings; tcsetafttr(fd, TCSAFLUSH, argp); polyfilled NT -syscon termios TCSETSF 0x5404 0x80487416 0x802c7416 0x802c7416 0x5404 # Drops input & drains output & sets console settings; = ioctl(tty, TCSETSF, const struct termios *argp); polyfilled NT -syscon compat TIOCSETAF 0x5404 0x80487416 0x802c7416 0x802c7416 0x5402 # Drops input & drains output & sets console settings; = ioctl(tty, TIOCSETAF, const struct termios *argp); polyfilled NT -#syscon compat TCSETAF 0x5404 0x80487416 0x802c7416 0x802c7416 0x5402 # Drops input & drains output & sets console settings; ≈ ioctl(tty, TCSETAF, const struct termio *argp); polyfilled NT -syscon termios TIOCGWINSZ 0x5413 1074295912 1074295912 1074295912 0x5413 # ioctl(tty, TIOCGWINSZ, struct winsize *argp); polyfilled NT -syscon termios TIOCSWINSZ 0x5414 0x80087467 0x80087467 0x80087467 0x5414 # ioctl(tty, TIOCSWINSZ, const struct winsize *argp) (faked NT) -syscon termios TIOCOUTQ 0x5411 0x40047473 0x40047473 0x40047473 -1 # get # bytes queued in TTY's output buffer ioctl(tty, TIOCSWINSZ, const struct winsize *argp) -syscon termios TIOCCBRK 0x5428 0x2000747a 0x2000747a 0x2000747a -1 # boop -syscon termios TIOCCONS 0x541d 0x80047462 0x80047462 0x80047462 -1 # boop -syscon termios TIOCGETD 0x5424 0x4004741a 0x4004741a 0x4004741a -1 # boop -syscon termios TIOCGPGRP 0x540f 0x40047477 0x40047477 0x40047477 -1 # boop -syscon termios TIOCNOTTY 0x5422 0x20007471 0x20007471 0x20007471 -1 # boop -syscon termios TIOCNXCL 0x540d 0x2000740e 0x2000740e 0x2000740e -1 # boop -syscon termios TIOCSBRK 0x5427 0x2000747b 0x2000747b 0x2000747b -1 # boop -syscon termios TIOCSCTTY 0x540e 0x20007461 0x20007461 0x20007461 -1 # boop -syscon termios TIOCSETD 0x5423 0x8004741b 0x8004741b 0x8004741b -1 # boop -syscon termios TIOCSIG 0x40045436 0x2000745f 0x2004745f 0x8004745f -1 # boop -syscon termios TIOCSPGRP 0x5410 0x80047476 0x80047476 0x80047476 -1 # boop -syscon termios TIOCSTI 0x5412 0x80017472 0x80017472 0 -1 # boop -syscon termios TIOCGPTN 0x80045430 0 0x4004740f 0 -1 # boop -syscon termios TIOCGSID 0x5429 0 0x40047463 0x40047463 -1 # boop -syscon termios TABLDISC 0 0x3 0 0x3 -1 # boop -syscon termios SLIPDISC 0 0x4 0x4 0x4 -1 # boop -syscon termios PPPDISC 0 0x5 0x5 0x5 -1 # boop -syscon termios TIOCDRAIN 0 0x2000745e 0x2000745e 0x2000745e -1 # boop -syscon termios TIOCSTAT 0 0x20007465 0x20007465 0x20007465 -1 # boop -syscon termios TIOCSTART 0 0x2000746e 0x2000746e 0x2000746e -1 # boop -syscon termios TIOCCDTR 0 0x20007478 0x20007478 0x20007478 -1 # boop -syscon termios TIOCSDTR 0 0x20007479 0x20007479 0x20007479 -1 # boop -syscon termios TIOCFLUSH 0 0x80047410 0x80047410 0x80047410 -1 # boop -syscon termios TIOCEXT 0 0x80047460 0x80047460 0x80047460 -1 # boop -syscon termios TIOCGDRAINWAIT 0 0x40047456 0x40047456 0 -1 # boop -syscon termios TIOCTIMESTAMP 0 0x40107459 0x40107459 0 -1 # boop -syscon termios TIOCSDRAINWAIT 0 0x80047457 0x80047457 0 -1 # boop -syscon termios TIOCREMOTE 0 0x80047469 0 0x80047469 -1 # boop -syscon termios TTYDISC 0 0 0 0 -1 # boop -syscon termios TIOCFLAG_SOFTCAR 0 0 0 0x1 -1 # boop -syscon termios TIOCFLAG_PPS 0 0 0 0x10 -1 # boop -syscon termios TIOCFLAG_CLOCAL 0 0 0 0x2 -1 # boop -syscon termios TIOCCHKVERAUTH 0 0 0 0x2000741e -1 # boop -syscon termios TIOCGFLAGS 0 0 0 0x4004745d -1 # boop -syscon termios TIOCGTSTAMP 0 0 0 0x4010745b -1 # boop -syscon termios STRIPDISC 0 0 0 0x6 -1 # boop -syscon termios NMEADISC 0 0 0 0x7 -1 # boop -syscon termios TIOCUCNTL_CBRK 0 0 0 0x7a -1 # boop -syscon termios TIOCFLAG_MDMBUF 0 0 0 0x8 -1 # boop -syscon termios TIOCSETVERAUTH 0 0 0 0x8004741c -1 # boop -syscon termios TIOCSFLAGS 0 0 0 0x8004745c -1 # boop -syscon termios TIOCSTSTAMP 0 0 0 0x8008745a -1 # boop -syscon termios ENDRUNDISC 0 0 0 0x9 -1 # boop -syscon termios TIOCPTMASTER 0 0 0x2000741c 0 -1 # boop -syscon termios NETGRAPHDISC 0 0 0x6 0 -1 # boop -syscon termios H4DISC 0 0 0x7 0 -1 # boop +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon termios TCGETS 0x5401 0x40487413 0x402c7413 0x402c7413 0x402c7413 -1 # Gets console settings; tcgetattr(tty, argp) → ioctl(tty, TCGETS, struct termios *argp); polyfilled NT +syscon compat TIOCGETA 0x5401 0x40487413 0x402c7413 0x402c7413 0x402c7413 -1 # Gets console settings; = tcgetattr(tty, struct termios *argp) +#syscon compat TCGETA 0x5405 -1 -1 -1 -1 -1 # Gets console settings; ≈ ioctl(fd, TCGETA, struct termio *argp) +syscon termios TCSANOW 0 0 0 0 0 0 # Sets console settings; tcsetattr(fd, TCSANOW, argp); polyfilled NT +syscon termios TCSETS 0x5402 0x80487414 0x802c7414 0x802c7414 0x802c7414 0x5402 # Sets console settings; = ioctl(tty, TCSETS, const struct termios *argp); polyfilled NT +syscon compat TIOCSETA 0x5402 0x80487414 0x802c7414 0x802c7414 0x802c7414 0x5402 # Sets console settings; = ioctl(tty, TIOCSETA, const struct termios *argp); polyfilled NT +#syscon compat TCSETA 0x5402 0x80487414 0x802c7414 0x802c7414 0x802c7414 0x5402 # Sets console settings; ≈ ioctl(tty, TCSETA, const struct termio *argp); polyfilled NT +syscon termios TCSADRAIN 1 1 1 1 1 1 # Drains output & sets console settings; tcsetawttr(fd, TCSADRAIN, argp); polyfilled NT +syscon termios TCSETSW 0x5403 0x80487415 0x802c7415 0x802c7415 0x802c7415 0x5403 # Drains output & sets console settings; = ioctl(tty, TCSETSW, const struct termios *argp); polyfilled NT +syscon compat TIOCSETAW 0x5403 0x80487415 0x802c7415 0x802c7415 0x802c7415 0x5403 # Drains output & sets console settings; = ioctl(tty, TIOCSETAW, const struct termios *argp); polyfilled NT +#syscon compat TCSETAW 0x5403 0x80487415 0x802c7415 0x802c7415 0x802c7415 0x5403 # Drains output & sets console settings; ≈ ioctl(tty, TCSETAW, const struct termio *argp); polyfilled NT +syscon termios TCSAFLUSH 2 2 2 2 2 2 # Drops input & drains output & sets console settings; tcsetafttr(fd, TCSAFLUSH, argp); polyfilled NT +syscon termios TCSETSF 0x5404 0x80487416 0x802c7416 0x802c7416 0x802c7416 0x5404 # Drops input & drains output & sets console settings; = ioctl(tty, TCSETSF, const struct termios *argp); polyfilled NT +syscon compat TIOCSETAF 0x5404 0x80487416 0x802c7416 0x802c7416 0x802c7416 0x5402 # Drops input & drains output & sets console settings; = ioctl(tty, TIOCSETAF, const struct termios *argp); polyfilled NT +#syscon compat TCSETAF 0x5404 0x80487416 0x802c7416 0x802c7416 0x802c7416 0x5402 # Drops input & drains output & sets console settings; ≈ ioctl(tty, TCSETAF, const struct termio *argp); polyfilled NT +syscon termios TIOCGWINSZ 0x5413 1074295912 1074295912 1074295912 1074295912 0x5413 # ioctl(tty, TIOCGWINSZ, struct winsize *argp); polyfilled NT +syscon termios TIOCSWINSZ 0x5414 0x80087467 0x80087467 0x80087467 0x80087467 0x5414 # ioctl(tty, TIOCSWINSZ, const struct winsize *argp) (faked NT) +syscon termios TIOCOUTQ 0x5411 0x40047473 0x40047473 0x40047473 0x40047473 -1 # get # bytes queued in TTY's output buffer ioctl(tty, TIOCSWINSZ, const struct winsize *argp) +syscon termios TIOCCBRK 0x5428 0x2000747a 0x2000747a 0x2000747a 0x2000747a -1 # boop +syscon termios TIOCCONS 0x541d 0x80047462 0x80047462 0x80047462 0x80047462 -1 # boop +syscon termios TIOCGETD 0x5424 0x4004741a 0x4004741a 0x4004741a 0x4004741a -1 # boop +syscon termios TIOCGPGRP 0x540f 0x40047477 0x40047477 0x40047477 0x40047477 -1 # boop +syscon termios TIOCNOTTY 0x5422 0x20007471 0x20007471 0x20007471 0x20007471 -1 # boop +syscon termios TIOCNXCL 0x540d 0x2000740e 0x2000740e 0x2000740e 0x2000740e -1 # boop +syscon termios TIOCSBRK 0x5427 0x2000747b 0x2000747b 0x2000747b 0x2000747b -1 # boop +syscon termios TIOCSCTTY 0x540e 0x20007461 0x20007461 0x20007461 0x20007461 -1 # boop +syscon termios TIOCSETD 0x5423 0x8004741b 0x8004741b 0x8004741b 0x8004741b -1 # boop +syscon termios TIOCSIG 0x40045436 0x2000745f 0x2004745f 0x8004745f 0x8004745f -1 # boop +syscon termios TIOCSPGRP 0x5410 0x80047476 0x80047476 0x80047476 0x80047476 -1 # boop +syscon termios TIOCSTI 0x5412 0x80017472 0x80017472 0 0 -1 # boop +syscon termios TIOCGPTN 0x80045430 0 0x4004740f 0 0 -1 # boop +syscon termios TIOCGSID 0x5429 0 0x40047463 0x40047463 0x40047463 -1 # boop +syscon termios TABLDISC 0 0x3 0 0x3 0x3 -1 # boop +syscon termios SLIPDISC 0 0x4 0x4 0x4 0x4 -1 # boop +syscon termios PPPDISC 0 0x5 0x5 0x5 0x5 -1 # boop +syscon termios TIOCDRAIN 0 0x2000745e 0x2000745e 0x2000745e 0x2000745e -1 # boop +syscon termios TIOCSTAT 0 0x20007465 0x20007465 0x20007465 0x20007465 -1 # boop +syscon termios TIOCSTART 0 0x2000746e 0x2000746e 0x2000746e 0x2000746e -1 # boop +syscon termios TIOCCDTR 0 0x20007478 0x20007478 0x20007478 0x20007478 -1 # boop +syscon termios TIOCSDTR 0 0x20007479 0x20007479 0x20007479 0x20007479 -1 # boop +syscon termios TIOCFLUSH 0 0x80047410 0x80047410 0x80047410 0x80047410 -1 # boop +syscon termios TIOCEXT 0 0x80047460 0x80047460 0x80047460 0x80047460 -1 # boop +syscon termios TIOCGDRAINWAIT 0 0x40047456 0x40047456 0 0 -1 # boop +syscon termios TIOCTIMESTAMP 0 0x40107459 0x40107459 0 0 -1 # boop +syscon termios TIOCSDRAINWAIT 0 0x80047457 0x80047457 0 0 -1 # boop +syscon termios TIOCREMOTE 0 0x80047469 0 0x80047469 0x80047469 -1 # boop +syscon termios TTYDISC 0 0 0 0 0 -1 # boop +syscon termios TIOCFLAG_SOFTCAR 0 0 0 0x1 0x1 -1 # boop +syscon termios TIOCFLAG_PPS 0 0 0 0x10 0x10 -1 # boop +syscon termios TIOCFLAG_CLOCAL 0 0 0 0x2 0x2 -1 # boop +syscon termios TIOCCHKVERAUTH 0 0 0 0x2000741e 0x2000741e -1 # boop +syscon termios TIOCGFLAGS 0 0 0 0x4004745d 0x4004745d -1 # boop +syscon termios TIOCGTSTAMP 0 0 0 0x4010745b 0x4010745b -1 # boop +syscon termios STRIPDISC 0 0 0 0x6 0x6 -1 # boop +syscon termios NMEADISC 0 0 0 0x7 0x7 -1 # boop +syscon termios TIOCUCNTL_CBRK 0 0 0 0x7a 0x7a -1 # boop +syscon termios TIOCFLAG_MDMBUF 0 0 0 0x8 0x8 -1 # boop +syscon termios TIOCSETVERAUTH 0 0 0 0x8004741c 0x8004741c -1 # boop +syscon termios TIOCSFLAGS 0 0 0 0x8004745c 0x8004745c -1 # boop +syscon termios TIOCSTSTAMP 0 0 0 0x8008745a 0x8008745a -1 # boop +syscon termios ENDRUNDISC 0 0 0 0x9 0x9 -1 # boop +syscon termios TIOCPTMASTER 0 0 0x2000741c 0 0 -1 # boop +syscon termios NETGRAPHDISC 0 0 0x6 0 0 -1 # boop +syscon termios H4DISC 0 0 0x7 0 0 -1 # boop -syscon termios ISIG 0b0000000000000001 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000000000001 # termios.c_lflag|=ISIG makes Ctrl-C, Ctrl-\, etc. generate signals -syscon termios ICANON 0b0000000000000010 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000000010 # termios.c_lflag&=~ICANON disables 1960's version of gnu readline (see also VMIN) -syscon termios XCASE 0b0000000000000100 0 0 16777216 0b0000000000000100 # termios.c_lflag -syscon termios ECHO 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 # termios.c_lflag&=~ECHO is for passwords and raw mode -syscon termios ECHOE 0b0000000000010000 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000010000 # termios.c_lflag -syscon termios ECHOK 0b0000000000100000 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000100000 # termios.c_lflag -syscon termios ECHONL 0b0000000001000000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000001000000 # termios.c_lflag -syscon termios NOFLSH 0b0000000010000000 2147483648 2147483648 2147483648 0b0000000010000000 # termios.c_lflag|=NOFLSH means don't flush on INT/QUIT/SUSP -syscon termios TOSTOP 0b0000000100000000 4194304 4194304 4194304 0b0000000100000000 # termios.c_lflag|=TOSTOP raises SIGTTOU to process group if background job tries to write to controlling terminal -syscon termios ECHOCTL 0b0000001000000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000001000000000 # termios.c_lflag|=ECHOCTL prints ^𝑥 codes for monotonic motion -syscon termios ECHOPRT 0b0000010000000000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000010000000000 # termios.c_lflag|=ECHOPRT includes the parity bit -syscon termios ECHOKE 0b0000100000000000 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000100000000000 # termios.c_lflag -syscon termios FLUSHO 0b0001000000000000 8388608 8388608 8388608 0b0001000000000000 # termios.c_lflag -syscon termios PENDIN 0b0100000000000000 536870912 536870912 536870912 0b0100000000000000 # termios.c_lflag -syscon termios IEXTEN 0b1000000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b1000000000000000 # termios.c_lflag&=~IEXTEN disables platform input processing magic -syscon termios EXTPROC 65536 0b0000100000000000 0b0000100000000000 0b0000100000000000 65536 # termios.c_lflag +syscon termios ISIG 0b0000000000000001 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000000000001 # termios.c_lflag|=ISIG makes Ctrl-C, Ctrl-\, etc. generate signals +syscon termios ICANON 0b0000000000000010 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000000010 # termios.c_lflag&=~ICANON disables 1960's version of gnu readline (see also VMIN) +syscon termios XCASE 0b0000000000000100 0 0 16777216 16777216 0b0000000000000100 # termios.c_lflag +syscon termios ECHO 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 # termios.c_lflag&=~ECHO is for passwords and raw mode +syscon termios ECHOE 0b0000000000010000 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000010000 # termios.c_lflag +syscon termios ECHOK 0b0000000000100000 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000100000 # termios.c_lflag +syscon termios ECHONL 0b0000000001000000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000001000000 # termios.c_lflag +syscon termios NOFLSH 0b0000000010000000 2147483648 2147483648 2147483648 2147483648 0b0000000010000000 # termios.c_lflag|=NOFLSH means don't flush on INT/QUIT/SUSP +syscon termios TOSTOP 0b0000000100000000 4194304 4194304 4194304 4194304 0b0000000100000000 # termios.c_lflag|=TOSTOP raises SIGTTOU to process group if background job tries to write to controlling terminal +syscon termios ECHOCTL 0b0000001000000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000001000000000 # termios.c_lflag|=ECHOCTL prints ^𝑥 codes for monotonic motion +syscon termios ECHOPRT 0b0000010000000000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000010000000000 # termios.c_lflag|=ECHOPRT includes the parity bit +syscon termios ECHOKE 0b0000100000000000 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000100000000000 # termios.c_lflag +syscon termios FLUSHO 0b0001000000000000 8388608 8388608 8388608 8388608 0b0001000000000000 # termios.c_lflag +syscon termios PENDIN 0b0100000000000000 536870912 536870912 536870912 536870912 0b0100000000000000 # termios.c_lflag +syscon termios IEXTEN 0b1000000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b1000000000000000 # termios.c_lflag&=~IEXTEN disables platform input processing magic +syscon termios EXTPROC 65536 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 65536 # termios.c_lflag -syscon termios IGNBRK 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 # termios.c_iflag it's complicated, uart only? UNIXCONSENSUS -syscon termios BRKINT 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 # termios.c_iflag it's complicated, uart only? UNIXCONSENSUS -syscon termios IGNPAR 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 # termios.c_iflag|=IGNPAR ignores parity and framing errors; see PARMRK UNIXCONSENSUS -syscon termios PARMRK 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 # termios.c_iflag|=PARMRK passes-through parity bit UNIXCONSENSUS -syscon termios INPCK 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 # termios.c_iflag|=INPCK enables parity checking UNIXCONSENSUS -syscon termios ISTRIP 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 # termios.c_iflag|=ISTRIP automates read(1)&0x7f UNIXCONSENSUS -syscon termios INLCR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 # termios.c_iflag|=INLCR maps \n → \r input UNIXCONSENSUS -syscon termios IGNCR 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 # termios.c_iflag|=IGNCR maps \r → ∅ input UNIXCONSENSUS -syscon termios ICRNL 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 # termios.c_iflag|=ICRNL maps \r → \n input UNIXCONSENSUS -syscon termios IUCLC 0b0000001000000000 0 0 0b0001000000000000 0b0000001000000000 # termios.c_iflag|=IUCLC maps A-Z → a-z input -syscon termios IXON 0b0000010000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000010000000000 # termios.c_iflag|=IXON enables flow rida -syscon termios IXANY 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 # termios.c_iflag|=IXANY tying will un-stuck teletype UNIXCONSENSUS -syscon termios IXOFF 0b0001000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0001000000000000 # termios.c_iflag|=IXOFF disables annoying display freeze keys -syscon termios IMAXBEL 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 # termios.c_iflag|=IMAXBEL rings when queue full UNIXCONSENSUS -syscon termios IUTF8 0b0100000000000000 0b0100000000000000 0 0 0b0100000000000000 # termios.c_iflag|=IUTF8 helps w/ rubout on UTF-8 input +syscon termios IGNBRK 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 # termios.c_iflag it's complicated, uart only? UNIXCONSENSUS +syscon termios BRKINT 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 # termios.c_iflag it's complicated, uart only? UNIXCONSENSUS +syscon termios IGNPAR 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 # termios.c_iflag|=IGNPAR ignores parity and framing errors; see PARMRK UNIXCONSENSUS +syscon termios PARMRK 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 # termios.c_iflag|=PARMRK passes-through parity bit UNIXCONSENSUS +syscon termios INPCK 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 # termios.c_iflag|=INPCK enables parity checking UNIXCONSENSUS +syscon termios ISTRIP 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 # termios.c_iflag|=ISTRIP automates read(1)&0x7f UNIXCONSENSUS +syscon termios INLCR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 # termios.c_iflag|=INLCR maps \n → \r input UNIXCONSENSUS +syscon termios IGNCR 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 # termios.c_iflag|=IGNCR maps \r → ∅ input UNIXCONSENSUS +syscon termios ICRNL 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 # termios.c_iflag|=ICRNL maps \r → \n input UNIXCONSENSUS +syscon termios IUCLC 0b0000001000000000 0 0 0b0001000000000000 0b0001000000000000 0b0000001000000000 # termios.c_iflag|=IUCLC maps A-Z → a-z input +syscon termios IXON 0b0000010000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000010000000000 # termios.c_iflag|=IXON enables flow rida +syscon termios IXANY 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 # termios.c_iflag|=IXANY tying will un-stuck teletype UNIXCONSENSUS +syscon termios IXOFF 0b0001000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0001000000000000 # termios.c_iflag|=IXOFF disables annoying display freeze keys +syscon termios IMAXBEL 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 # termios.c_iflag|=IMAXBEL rings when queue full UNIXCONSENSUS +syscon termios IUTF8 0b0100000000000000 0b0100000000000000 0 0 0 0b0100000000000000 # termios.c_iflag|=IUTF8 helps w/ rubout on UTF-8 input -syscon termios OPOST 0b0000000000000001 0b000000000000000001 0b000000000000000001 0b0000000000000001 0b0000000000000001 # termios.c_oflag&=~OPOST disables output processing magic -syscon termios OLCUC 0b0000000000000010 0b000000000000000000 0 0b0000000000100000 0b0000000000000010 # termios.c_oflag|=OLCUC maps a-z → A-Z output -syscon termios ONLCR 0b0000000000000100 0b000000000000000010 0b000000000000000010 0b0000000000000010 0b0000000000000100 # termios.c_oflag|=ONLCR maps \n → \r\n output -syscon termios OCRNL 0b0000000000001000 0b000000000000010000 0b000000000000010000 0b0000000000010000 0b0000000000001000 # termios.c_oflag|=OCRNL maps \r → \n output -syscon termios ONOCR 0b0000000000010000 0b000000000000100000 0b000000000000100000 0b0000000001000000 0b0000000000010000 # termios.c_oflag|=ONOCR maps \r → ∅ output iff column 0 -syscon termios ONLRET 0b0000000000100000 0b000000000001000000 0b000000000001000000 0b0000000010000000 0b0000000000100000 # termios.c_oflag|=ONLRET maps \r → ∅ output -syscon termios OFILL 0b0000000001000000 0b000000000010000000 0 0 0b0000000001000000 # termios.c_oflag -syscon termios OFDEL 0b0000000010000000 0b100000000000000000 0 0 0b0000000010000000 # termios.c_oflag -syscon termios NLDLY 0b0000000100000000 0b000000001100000000 0b000000001100000000 0 0b0000000100000000 # (termios.c_oflag & NLDLY) ∈ {NL0,NL1,NL2,NL3} -syscon termios NL0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 # (termios.c_oflag & NLDLY) == NL0 -syscon termios NL1 0b0000000100000000 0b000000000100000000 0b000000000100000000 0 0b0000000100000000 # (termios.c_oflag & NLDLY) == NL1 -syscon termios NL2 0 0b000000001000000000 0b000000001000000000 0 0 # (termios.c_oflag & NLDLY) == NL2 -syscon termios NL3 0 0b000000001100000000 0b000000001100000000 0 0 # (termios.c_oflag & NLDLY) == NL3 -syscon termios CRDLY 0b0000011000000000 0b000011000000000000 0b000011000000000000 0 0b0000011000000000 # (termios.c_oflag & CRDLY) ∈ {CR0,CR1,CR2,CR3} -syscon termios CR0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0x0 0b0000000000000000 # (termios.c_oflag & CRDLY) == CR0 -syscon termios CR1 0b0000001000000000 0b000001000000000000 0b000001000000000000 0x0 0b0000001000000000 # (termios.c_oflag & CRDLY) == CR1 -syscon termios CR2 0b0000010000000000 0b000010000000000000 0b000010000000000000 0x0 0b0000010000000000 # (termios.c_oflag & CRDLY) == CR2 -syscon termios CR3 0b0000011000000000 0b000011000000000000 0b000011000000000000 0x0 0b0000011000000000 # (termios.c_oflag & CRDLY) == CR3 -syscon termios TABDLY 0b0001100000000000 0b000000110000000100 0b000000000000000100 0 0b0001100000000000 # (termios.c_oflag & TABDLY) ∈ {TAB0,TAB1,TAB2,TAB3,XTABS} -syscon termios TAB0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 # (termios.c_oflag & TABDLY) == TAB0 -syscon termios TAB1 0b0000100000000000 0b000000010000000000 0b000000010000000000 0 0b0000100000000000 # (termios.c_oflag & TABDLY) == TAB1 -syscon termios TAB2 0b0001000000000000 0b000000100000000000 0b000000100000000000 0 0b0001000000000000 # (termios.c_oflag & TABDLY) == TAB2 -syscon termios TAB3 0b0001100000000000 0b000000000000000100 0b000000000000000100 0 0b0001100000000000 # (termios.c_oflag & TABDLY) == TAB3 -syscon termios XTABS 0b0001100000000000 0b000000000000000000 0b000000110000000000 0 0b0001100000000000 # (termios.c_oflag & TABDLY) == XTABS -syscon termios BSDLY 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0b0010000000000000 # termios.c_oflag -syscon termios BS0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 # termios.c_oflag -syscon termios BS1 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0b0010000000000000 # termios.c_oflag -syscon termios VTDLY 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0b0100000000000000 # termios.c_oflag -syscon termios VT0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 # termios.c_oflag -syscon termios VT1 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0b0100000000000000 # termios.c_oflag -syscon termios FFDLY 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0b1000000000000000 # termios.c_oflag -syscon termios FF0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 # termios.c_oflag -syscon termios FF1 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0b1000000000000000 # termios.c_oflag +syscon termios OPOST 0b0000000000000001 0b000000000000000001 0b000000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 # termios.c_oflag&=~OPOST disables output processing magic +syscon termios OLCUC 0b0000000000000010 0b000000000000000000 0 0b0000000000100000 0b0000000000100000 0b0000000000000010 # termios.c_oflag|=OLCUC maps a-z → A-Z output +syscon termios ONLCR 0b0000000000000100 0b000000000000000010 0b000000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000100 # termios.c_oflag|=ONLCR maps \n → \r\n output +syscon termios OCRNL 0b0000000000001000 0b000000000000010000 0b000000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000001000 # termios.c_oflag|=OCRNL maps \r → \n output +syscon termios ONOCR 0b0000000000010000 0b000000000000100000 0b000000000000100000 0b0000000001000000 0b0000000001000000 0b0000000000010000 # termios.c_oflag|=ONOCR maps \r → ∅ output iff column 0 +syscon termios ONLRET 0b0000000000100000 0b000000000001000000 0b000000000001000000 0b0000000010000000 0b0000000010000000 0b0000000000100000 # termios.c_oflag|=ONLRET maps \r → ∅ output +syscon termios OFILL 0b0000000001000000 0b000000000010000000 0 0 0 0b0000000001000000 # termios.c_oflag +syscon termios OFDEL 0b0000000010000000 0b100000000000000000 0 0 0 0b0000000010000000 # termios.c_oflag +syscon termios NLDLY 0b0000000100000000 0b000000001100000000 0b000000001100000000 0 0 0b0000000100000000 # (termios.c_oflag & NLDLY) ∈ {NL0,NL1,NL2,NL3} +syscon termios NL0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 # (termios.c_oflag & NLDLY) == NL0 +syscon termios NL1 0b0000000100000000 0b000000000100000000 0b000000000100000000 0 0 0b0000000100000000 # (termios.c_oflag & NLDLY) == NL1 +syscon termios NL2 0 0b000000001000000000 0b000000001000000000 0 0 0 # (termios.c_oflag & NLDLY) == NL2 +syscon termios NL3 0 0b000000001100000000 0b000000001100000000 0 0 0 # (termios.c_oflag & NLDLY) == NL3 +syscon termios CRDLY 0b0000011000000000 0b000011000000000000 0b000011000000000000 0 0 0b0000011000000000 # (termios.c_oflag & CRDLY) ∈ {CR0,CR1,CR2,CR3} +syscon termios CR0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0x0 0x0 0b0000000000000000 # (termios.c_oflag & CRDLY) == CR0 +syscon termios CR1 0b0000001000000000 0b000001000000000000 0b000001000000000000 0x0 0x0 0b0000001000000000 # (termios.c_oflag & CRDLY) == CR1 +syscon termios CR2 0b0000010000000000 0b000010000000000000 0b000010000000000000 0x0 0x0 0b0000010000000000 # (termios.c_oflag & CRDLY) == CR2 +syscon termios CR3 0b0000011000000000 0b000011000000000000 0b000011000000000000 0x0 0x0 0b0000011000000000 # (termios.c_oflag & CRDLY) == CR3 +syscon termios TABDLY 0b0001100000000000 0b000000110000000100 0b000000000000000100 0 0 0b0001100000000000 # (termios.c_oflag & TABDLY) ∈ {TAB0,TAB1,TAB2,TAB3,XTABS} +syscon termios TAB0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 # (termios.c_oflag & TABDLY) == TAB0 +syscon termios TAB1 0b0000100000000000 0b000000010000000000 0b000000010000000000 0 0 0b0000100000000000 # (termios.c_oflag & TABDLY) == TAB1 +syscon termios TAB2 0b0001000000000000 0b000000100000000000 0b000000100000000000 0 0 0b0001000000000000 # (termios.c_oflag & TABDLY) == TAB2 +syscon termios TAB3 0b0001100000000000 0b000000000000000100 0b000000000000000100 0 0 0b0001100000000000 # (termios.c_oflag & TABDLY) == TAB3 +syscon termios XTABS 0b0001100000000000 0b000000000000000000 0b000000110000000000 0 0 0b0001100000000000 # (termios.c_oflag & TABDLY) == XTABS +syscon termios BSDLY 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0 0b0010000000000000 # termios.c_oflag +syscon termios BS0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 # termios.c_oflag +syscon termios BS1 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0 0b0010000000000000 # termios.c_oflag +syscon termios VTDLY 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0 0b0100000000000000 # termios.c_oflag +syscon termios VT0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 # termios.c_oflag +syscon termios VT1 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0 0b0100000000000000 # termios.c_oflag +syscon termios FFDLY 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0 0b1000000000000000 # termios.c_oflag +syscon termios FF0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 # termios.c_oflag +syscon termios FF1 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0 0b1000000000000000 # termios.c_oflag -syscon termios CS6 0b0000000000010000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000010000 # termios.c_cflag flag for 6-bit characters -syscon termios CS7 0b0000000000100000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000000000100000 # termios.c_cflag flag for 7-bit characters -syscon termios CS8 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 # termios.c_cflag flag for 8-bit characters -syscon termios CSIZE 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 # mask for CS𝑥 flags +syscon termios CS6 0b0000000000010000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000010000 # termios.c_cflag flag for 6-bit characters +syscon termios CS7 0b0000000000100000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000000000100000 # termios.c_cflag flag for 7-bit characters +syscon termios CS8 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 # termios.c_cflag flag for 8-bit characters +syscon termios CSIZE 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 # mask for CS𝑥 flags -syscon termios NCCS 32 32 32 32 32 # ARRAYLEN(termios.c_cc); faked xnu/freebsd/openbsd (originally 20) and faked nt -syscon termios VINTR 0 8 8 8 0 # termios.c_cc[VINTR]=𝑥 -syscon termios VQUIT 1 9 9 9 0 # termios.c_cc[VQUIT]=𝑥 -syscon termios VERASE 2 3 3 3 0 # termios.c_cc[VERASE]=𝑥 -syscon termios VKILL 3 5 5 5 0 # termios.c_cc[VKILL]=𝑥 -syscon termios VEOF 4 0 0 0 0 # termios.c_cc[VEOF]=𝑥 -syscon termios VTIME 5 17 17 17 0 # termios.c_cc[VTIME]=𝑥 sets non-canonical read timeout to 𝑥×𝟷𝟶𝟶ms which is needed when entering escape sequences manually with the escape key -syscon termios VMIN 6 16 16 16 0 # termios.c_cc[VMIN]=𝑥 in non-canonical mode can be set to 0 for non-blocking reads, 1 for single character raw mode reads, or higher to buffer -syscon termios VSWTC 7 0 0 0 0 # termios.c_cc[VSWTC]=𝑥 -syscon termios VSTART 8 12 12 12 0 # termios.c_cc[VSTART]=𝑥 -syscon termios VSTOP 9 13 13 13 0 # termios.c_cc[VSTOP]=𝑥 -syscon termios VSUSP 10 10 10 10 0 # termios.c_cc[VSUSP]=𝑥 defines suspend, i.e. Ctrl-Z (a.k.a. →, ^Z, SUB, 26, 032, 0x1A, ord('Z')^0b01000000); unix consensus -syscon termios VEOL 11 1 1 1 0 # termios.c_cc[VEOL]=𝑥 -syscon termios VEOL2 16 2 2 2 0 # termios.c_cc[VEOL2]=𝑥 -syscon termios VREPRINT 12 6 6 6 0 # termios.c_cc[VREPRINT]=𝑥 -syscon termios VDISCARD 13 15 15 15 0 # termios.c_cc[VDISCARD]=𝑥 -syscon termios VWERASE 14 4 4 4 0 # termios.c_cc[VWERASE]=𝑥 -syscon termios VLNEXT 15 14 14 14 0 # termios.c_cc[VLNEXT]=𝑥 +syscon termios NCCS 32 32 32 32 20 32 # ARRAYLEN(termios.c_cc); faked xnu/freebsd/openbsd (originally 20) and faked nt +syscon termios VINTR 0 8 8 8 8 0 # termios.c_cc[VINTR]=𝑥 +syscon termios VQUIT 1 9 9 9 9 0 # termios.c_cc[VQUIT]=𝑥 +syscon termios VERASE 2 3 3 3 3 0 # termios.c_cc[VERASE]=𝑥 +syscon termios VKILL 3 5 5 5 5 0 # termios.c_cc[VKILL]=𝑥 +syscon termios VEOF 4 0 0 0 0 0 # termios.c_cc[VEOF]=𝑥 +syscon termios VTIME 5 17 17 17 17 0 # termios.c_cc[VTIME]=𝑥 sets non-canonical read timeout to 𝑥×𝟷𝟶𝟶ms which is needed when entering escape sequences manually with the escape key +syscon termios VMIN 6 16 16 16 16 0 # termios.c_cc[VMIN]=𝑥 in non-canonical mode can be set to 0 for non-blocking reads, 1 for single character raw mode reads, or higher to buffer +syscon termios VSWTC 7 0 0 0 0 0 # termios.c_cc[VSWTC]=𝑥 +syscon termios VSTART 8 12 12 12 12 0 # termios.c_cc[VSTART]=𝑥 +syscon termios VSTOP 9 13 13 13 13 0 # termios.c_cc[VSTOP]=𝑥 +syscon termios VSUSP 10 10 10 10 10 0 # termios.c_cc[VSUSP]=𝑥 defines suspend, i.e. Ctrl-Z (a.k.a. →, ^Z, SUB, 26, 032, 0x1A, ord('Z')^0b01000000); unix consensus +syscon termios VEOL 11 1 1 1 1 0 # termios.c_cc[VEOL]=𝑥 +syscon termios VEOL2 16 2 2 2 2 0 # termios.c_cc[VEOL2]=𝑥 +syscon termios VREPRINT 12 6 6 6 6 0 # termios.c_cc[VREPRINT]=𝑥 +syscon termios VDISCARD 13 15 15 15 15 0 # termios.c_cc[VDISCARD]=𝑥 +syscon termios VWERASE 14 4 4 4 4 0 # termios.c_cc[VWERASE]=𝑥 +syscon termios VLNEXT 15 14 14 14 14 0 # termios.c_cc[VLNEXT]=𝑥 -syscon termios TIOCSERGETLSR 0x5459 0 0 0 0 # -syscon termios TIOCSERGETMULTI 0x545a 0 0 0 0 # -syscon termios TIOCSERSETMULTI 0x545b 0 0 0 0 # -syscon termios TIOCSER_TEMT 1 0 0 0 0 # -syscon termios VERIFY 47 0 0 0 0 -syscon termios PARENB 0x0100 0x1000 0x1000 0x1000 0 # -syscon termios PARODD 0x0200 0x2000 0x2000 0x2000 0 # -syscon termios CIBAUD 0x100f0000 0 0 0 0 -syscon termios CLOCAL 0x0800 0x8000 0x8000 0x8000 0 # -syscon termios CMSPAR 0x40000000 0 0 0 0 -syscon termios BUSY 4 0 0 0 0 -syscon termios CANBSIZ 255 0 0 0 0 -syscon termios CBAUD 0x100f 0 0 0 0 -syscon termios CBAUDEX 0x1000 0 0 0 0 -syscon termios CBRK 0 255 255 255 0 # -syscon termios CEOL 0 255 255 255 0 # +syscon termios TIOCSERGETLSR 0x5459 0 0 0 0 0 # +syscon termios TIOCSERGETMULTI 0x545a 0 0 0 0 0 # +syscon termios TIOCSERSETMULTI 0x545b 0 0 0 0 0 # +syscon termios TIOCSER_TEMT 1 0 0 0 0 0 # +syscon termios VERIFY 47 0 0 0 0 0 +syscon termios PARENB 0x0100 0x1000 0x1000 0x1000 0x1000 0 # +syscon termios PARODD 0x0200 0x2000 0x2000 0x2000 0x2000 0 # +syscon termios CIBAUD 0x100f0000 0 0 0 0 0 +syscon termios CLOCAL 0x0800 0x8000 0x8000 0x8000 0x8000 0 # +syscon termios CMSPAR 0x40000000 0 0 0 0 0 +syscon termios BUSY 4 0 0 0 0 0 +syscon termios CANBSIZ 255 0 0 0 0 0 +syscon termios CBAUD 0x100f 0 0 0 0 0 +syscon termios CBAUDEX 0x1000 0 0 0 0 0 +syscon termios CBRK 0 255 255 255 255 0 # +syscon termios CEOL 0 255 255 255 255 0 # # Pseudoteletypewriter Control # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon pty TIOCPKT 0x5420 0x80047470 0x80047470 0x80047470 -1 # boop -syscon pty TIOCPKT_DATA 0 0 0 0 0 # consensus -syscon pty TIOCPKT_FLUSHREAD 1 1 1 1 1 # unix consensus -syscon pty TIOCPKT_FLUSHWRITE 2 2 2 2 2 # unix consensus -syscon pty TIOCPKT_STOP 4 4 4 4 4 # unix consensus -syscon pty TIOCPKT_START 8 8 8 8 8 # unix consensus -syscon pty TIOCPKT_NOSTOP 16 16 16 16 16 # unix consensus -syscon pty TIOCPKT_DOSTOP 32 32 32 32 32 # unix consensus -syscon pty TIOCPKT_IOCTL 64 64 64 64 64 # unix consensus -syscon pty TIOCSPTLCK 0x40045431 0 0 0 -1 # boop -syscon pty PTMGET 0 0 0 0x40287401 -1 # for /dev/ptm +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon pty TIOCPKT 0x5420 0x80047470 0x80047470 0x80047470 0x80047470 -1 # boop +syscon pty TIOCPKT_DATA 0 0 0 0 0 0 # consensus +syscon pty TIOCPKT_FLUSHREAD 1 1 1 1 1 1 # unix consensus +syscon pty TIOCPKT_FLUSHWRITE 2 2 2 2 2 2 # unix consensus +syscon pty TIOCPKT_STOP 4 4 4 4 4 4 # unix consensus +syscon pty TIOCPKT_START 8 8 8 8 8 8 # unix consensus +syscon pty TIOCPKT_NOSTOP 16 16 16 16 16 16 # unix consensus +syscon pty TIOCPKT_DOSTOP 32 32 32 32 32 32 # unix consensus +syscon pty TIOCPKT_IOCTL 64 64 64 64 64 64 # unix consensus +syscon pty TIOCSPTLCK 0x40045431 0 0 0 0 -1 # boop +syscon pty PTMGET 0 0 0 0x40287401 0x40287401 -1 # for /dev/ptm # Modem Control # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary -syscon modem TIOCMGET 0x5415 0x4004746a 0x4004746a 0x4004746a -1 # get status of modem bits; ioctl(fd, TIOCMGET, int *argp) -syscon modem TIOCMSET 0x5418 0x8004746d 0x8004746d 0x8004746d -1 # set status of modem bits; ioctl(fd, TIOCMSET, const int *argp) -syscon modem TIOCMBIC 0x5417 0x8004746b 0x8004746b 0x8004746b -1 # clear indicated modem bits; ioctl(fd, TIOCMBIC, int *argp) -syscon modem TIOCMBIS 0x5416 0x8004746c 0x8004746c 0x8004746c -1 # set indicated modem bits; ioctl(fd, TIOCMBIS, int *argp) -syscon modem TIOCM_LE 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 # consensus -syscon modem TIOCM_DTR 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 # consensus -syscon modem TIOCM_RTS 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 # consensus -syscon modem TIOCM_ST 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 # consensus -syscon modem TIOCM_SR 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 # consensus -syscon modem TIOCM_CTS 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 # consensus -syscon modem TIOCM_CAR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 # consensus -syscon modem TIOCM_CD 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 # boop -syscon modem TIOCM_RI 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 # boop -syscon modem TIOCM_RNG 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 # boop -syscon modem TIOCM_DSR 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 # consensus -syscon modem TIOCM_DCD 0 0 0x40 0 -1 # wut -syscon modem TIOCMODG 0 0x40047403 0 0x4004746a -1 # wut -syscon modem TIOCMODS 0 0x80047404 0 0x8004746d -1 # wut -syscon modem TIOCMSDTRWAIT 0 0x8004745b 0x8004745b 0 -1 # wut +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary +syscon modem TIOCMGET 0x5415 0x4004746a 0x4004746a 0x4004746a 0x4004746a -1 # get status of modem bits; ioctl(fd, TIOCMGET, int *argp) +syscon modem TIOCMSET 0x5418 0x8004746d 0x8004746d 0x8004746d 0x8004746d -1 # set status of modem bits; ioctl(fd, TIOCMSET, const int *argp) +syscon modem TIOCMBIC 0x5417 0x8004746b 0x8004746b 0x8004746b 0x8004746b -1 # clear indicated modem bits; ioctl(fd, TIOCMBIC, int *argp) +syscon modem TIOCMBIS 0x5416 0x8004746c 0x8004746c 0x8004746c 0x8004746c -1 # set indicated modem bits; ioctl(fd, TIOCMBIS, int *argp) +syscon modem TIOCM_LE 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 # consensus +syscon modem TIOCM_DTR 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 # consensus +syscon modem TIOCM_RTS 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 # consensus +syscon modem TIOCM_ST 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 # consensus +syscon modem TIOCM_SR 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 # consensus +syscon modem TIOCM_CTS 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 # consensus +syscon modem TIOCM_CAR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 # consensus +syscon modem TIOCM_CD 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 # boop +syscon modem TIOCM_RI 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 # boop +syscon modem TIOCM_RNG 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 # boop +syscon modem TIOCM_DSR 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 # consensus +syscon modem TIOCM_DCD 0 0 0x40 0 0 -1 # wut +syscon modem TIOCMODG 0 0x40047403 0 0x4004746a 0x4004746a -1 # wut +syscon modem TIOCMODS 0 0x80047404 0 0x8004746d 0x8004746d -1 # wut +syscon modem TIOCMSDTRWAIT 0 0x8004745b 0x8004745b 0 0 -1 # wut -syscon ioctl FIONBIO 0x5421 0x8004667e 0x8004667e 0x8004667e 0x8004667e # BSD-Windows consensus; FIONBIO is traditional O_NONBLOCK; see F_SETFL for re-imagined api -syscon ioctl FIOASYNC 0x5452 0x8004667d 0x8004667d 0x8004667d 0x8004667d # BSD-Windows consensus -syscon ioctl FIONREAD 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f # BSD-Windows consensus; bytes waiting in FD's input buffer -#syscon ioctl FIONWRITE 0x0 0x0 0x40046677 0x0 -1 # [FreeBSD Generalization] bytes queued in FD's output buffer (same as TIOCOUTQ for TTY FDs; see also SO_SNDBUF) -#syscon ioctl FIONSPACE 0x0 0x0 0x40046676 0x0 -1 # [FreeBSD Generalization] capacity of FD's output buffer, e.g. equivalent to TIOCGSERIAL w/ UART -syscon ioctl TIOCINQ 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f # [Linuxism] same as FIONREAD -#syscon ioctl TIOCOUTQ 0x5411 0x40047473 0x40047473 0x40047473 -1 # bytes queued in TTY's output buffer +syscon ioctl FIONBIO 0x5421 0x8004667e 0x8004667e 0x8004667e 0x8004667e 0x8004667e # BSD-Windows consensus; FIONBIO is traditional O_NONBLOCK; see F_SETFL for re-imagined api +syscon ioctl FIOASYNC 0x5452 0x8004667d 0x8004667d 0x8004667d 0x8004667d 0x8004667d # BSD-Windows consensus +syscon ioctl FIONREAD 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f 0x4004667f # BSD-Windows consensus; bytes waiting in FD's input buffer +#syscon ioctl FIONWRITE 0x0 0x0 0x40046677 0x0 0x0 -1 # [FreeBSD Generalization] bytes queued in FD's output buffer (same as TIOCOUTQ for TTY FDs; see also SO_SNDBUF) +#syscon ioctl FIONSPACE 0x0 0x0 0x40046676 0x0 0x0 -1 # [FreeBSD Generalization] capacity of FD's output buffer, e.g. equivalent to TIOCGSERIAL w/ UART +syscon ioctl TIOCINQ 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f 0x4004667f # [Linuxism] same as FIONREAD +#syscon ioctl TIOCOUTQ 0x5411 0x40047473 0x40047473 0x40047473 0x40047473 -1 # bytes queued in TTY's output buffer -syscon misc FANOTIFY_METADATA_VERSION 3 0 0 0 0 -syscon misc FAPPEND 0x0400 8 8 8 0 # bsd consensus -syscon misc FASYNC 0x2000 0x40 0x40 0x40 0 # bsd consensus -syscon misc FFSYNC 0x101000 0x80 0x80 0x80 0 # bsd consensus -syscon misc FILENAME_MAX 0x1000 0x0400 0x0400 0x0400 0 # bsd consensus -syscon misc FIOGETOWN 0x8903 0x4004667b 0x4004667b 0x4004667b 0 # bsd consensus -syscon misc FIOSETOWN 0x8901 0x8004667c 0x8004667c 0x8004667c 0 # bsd consensus -syscon misc FMAXEXP 0x80 0 0 0 0 -syscon misc FMINEXP -125 0 0 0 0 -syscon misc FNDELAY 0x0800 4 4 4 0 # bsd consensus -syscon misc FNONBLOCK 0x0800 4 4 4 0 # bsd consensus -syscon misc FOPEN_MAX 0x10 20 20 20 0 # bsd consensus -syscon misc FORMAT_UNIT 4 0 0 0 0 -syscon misc HARDWARE_ERROR 4 0 0 0 0 -syscon misc HEAD_OF_QUEUE_TAG 33 0 0 0 0 -syscon misc HUPCL 0x0400 0x4000 0x4000 0x4000 0 # bsd consensus -syscon misc IGMP_MEMBERSHIP_QUERY 17 0 0 0 0 -syscon misc ILLEGAL_REQUEST 5 0 0 0 0 -syscon misc INITIATE_RECOVERY 15 0 0 0 0 -syscon misc INITIATOR_ERROR 5 0 0 0 0 -syscon misc INQUIRY 18 0 0 0 0 -syscon misc MAXHOSTNAMELEN 0x40 0x0100 0x0100 0x0100 0 # bsd consensus -syscon misc MAXPATHLEN 255 255 255 255 255 # forced consensus -syscon misc MAXSYMLINKS 20 0x20 0x20 0x20 0 # bsd consensus -syscon misc MESSAGE_REJECT 7 0 0 0 0 -syscon misc MISCOMPARE 14 0 0 0 0 -syscon misc MOVE_MEDIUM 165 0 0 0 0 -syscon misc MTCOMPRESSION 0x20 0 0 0 0 -syscon misc MTFSFM 11 0 0 0 0 -syscon misc MTLOCK 28 0 0 0 0 -syscon misc MTMKPART 34 0 0 0 0 -syscon misc MTRAS1 14 0 0 0 0 -syscon misc MTRAS3 0x10 0 0 0 0 -syscon misc MTSETBLK 20 0 0 0 0 -syscon misc MTSETDENSITY 21 0 0 0 0 -syscon misc MTSETDRVBUFFER 24 0 0 0 0 -syscon misc MTSETPART 33 0 0 0 0 -syscon misc MTUNLOAD 31 0 0 0 0 -syscon misc MTUNLOCK 29 0 0 0 0 -syscon misc NCARGS 0x020000 0x040000 0x040000 0x040000 0 # bsd consensus -syscon misc NGREG 23 0 0 0 0 -syscon misc NOGROUP -1 0xffff 0xffff 0xffff 0 # bsd consensus -syscon misc ORDERED_QUEUE_TAG 34 0 0 0 0 -syscon misc ORIG_RAX 15 0 0 0 0 -syscon misc PIPE_BUF 0x1000 0x0200 0x0200 0x0200 0 # bsd consensus -syscon misc PRE_FETCH 52 0 0 0 0 -syscon misc QUEUE_FULL 20 0 0 0 0 -syscon misc REASSIGN_BLOCKS 7 0 0 0 0 -syscon misc RECEIVE_DIAGNOSTIC 28 0 0 0 0 -syscon misc RECOVERED_ERROR 1 0 0 0 0 -syscon misc RECOVER_BUFFERED_DATA 20 0 0 0 0 -syscon misc RELEASE_RECOVERY 0x10 0 0 0 0 -syscon misc REQUEST_SENSE 3 0 0 0 0 -syscon misc RESERVATION_CONFLICT 12 0 0 0 0 -syscon misc RESERVE 22 0 0 0 0 -syscon misc RESERVE_10 86 0 0 0 0 -syscon misc RESTORE_POINTERS 3 0 0 0 0 -syscon misc REZERO_UNIT 1 0 0 0 0 -syscon misc RE_DUP_MAX 0x7fff 255 255 255 0 # bsd consensus -syscon misc RTCF_DOREDIRECT 0x01000000 0 0 0 0 -syscon misc SAVE_POINTERS 2 0 0 0 0 -syscon misc SEM_VALUE_MAX 0x7fffffff 0x7fff 0x7fffffff 0xffffffff 0 -syscon misc SEM_INFO 19 0 11 0 0 -syscon misc SEM_STAT 18 0 10 0 0 +syscon misc FANOTIFY_METADATA_VERSION 3 0 0 0 0 0 +syscon misc FAPPEND 0x0400 8 8 8 8 0 # bsd consensus +syscon misc FASYNC 0x2000 0x40 0x40 0x40 0x40 0 # bsd consensus +syscon misc FFSYNC 0x101000 0x80 0x80 0x80 0x80 0 # bsd consensus +syscon misc FILENAME_MAX 0x1000 0x0400 0x0400 0x0400 0x0400 0 # bsd consensus +syscon misc FIOGETOWN 0x8903 0x4004667b 0x4004667b 0x4004667b 0x4004667b 0 # bsd consensus +syscon misc FIOSETOWN 0x8901 0x8004667c 0x8004667c 0x8004667c 0x8004667c 0 # bsd consensus +syscon misc FMAXEXP 0x80 0 0 0 0 0 +syscon misc FMINEXP -125 0 0 0 0 0 +syscon misc FNDELAY 0x0800 4 4 4 4 0 # bsd consensus +syscon misc FNONBLOCK 0x0800 4 4 4 4 0 # bsd consensus +syscon misc FOPEN_MAX 0x10 20 20 20 20 0 # bsd consensus +syscon misc FORMAT_UNIT 4 0 0 0 0 0 +syscon misc HARDWARE_ERROR 4 0 0 0 0 0 +syscon misc HEAD_OF_QUEUE_TAG 33 0 0 0 0 0 +syscon misc HUPCL 0x0400 0x4000 0x4000 0x4000 0x4000 0 # bsd consensus +syscon misc IGMP_MEMBERSHIP_QUERY 17 0 0 0 0 0 +syscon misc ILLEGAL_REQUEST 5 0 0 0 0 0 +syscon misc INITIATE_RECOVERY 15 0 0 0 0 0 +syscon misc INITIATOR_ERROR 5 0 0 0 0 0 +syscon misc INQUIRY 18 0 0 0 0 0 +syscon misc MAXHOSTNAMELEN 0x40 0x0100 0x0100 0x0100 0x0100 0 # bsd consensus +syscon misc MAXPATHLEN 255 255 255 255 255 255 # forced consensus +syscon misc MAXSYMLINKS 20 0x20 0x20 0x20 0x20 0 # bsd consensus +syscon misc MESSAGE_REJECT 7 0 0 0 0 0 +syscon misc MISCOMPARE 14 0 0 0 0 0 +syscon misc MOVE_MEDIUM 165 0 0 0 0 0 +syscon misc MTCOMPRESSION 0x20 0 0 0 0 0 +syscon misc MTFSFM 11 0 0 0 0 0 +syscon misc MTLOCK 28 0 0 0 0 0 +syscon misc MTMKPART 34 0 0 0 0 0 +syscon misc MTRAS1 14 0 0 0 0 0 +syscon misc MTRAS3 0x10 0 0 0 0 0 +syscon misc MTSETBLK 20 0 0 0 0 0 +syscon misc MTSETDENSITY 21 0 0 0 0 0 +syscon misc MTSETDRVBUFFER 24 0 0 0 0 0 +syscon misc MTSETPART 33 0 0 0 0 0 +syscon misc MTUNLOAD 31 0 0 0 0 0 +syscon misc MTUNLOCK 29 0 0 0 0 0 +syscon misc NCARGS 0x020000 0x040000 0x040000 0x040000 0x040000 0 # bsd consensus +syscon misc NGREG 23 0 0 0 0 0 +syscon misc NOGROUP -1 0xffff 0xffff 0xffff 0xffff 0 # bsd consensus +syscon misc ORDERED_QUEUE_TAG 34 0 0 0 0 0 +syscon misc ORIG_RAX 15 0 0 0 0 0 +syscon misc PIPE_BUF 0x1000 0x0200 0x0200 0x0200 0x0200 0 # bsd consensus +syscon misc PRE_FETCH 52 0 0 0 0 0 +syscon misc QUEUE_FULL 20 0 0 0 0 0 +syscon misc REASSIGN_BLOCKS 7 0 0 0 0 0 +syscon misc RECEIVE_DIAGNOSTIC 28 0 0 0 0 0 +syscon misc RECOVERED_ERROR 1 0 0 0 0 0 +syscon misc RECOVER_BUFFERED_DATA 20 0 0 0 0 0 +syscon misc RELEASE_RECOVERY 0x10 0 0 0 0 0 +syscon misc REQUEST_SENSE 3 0 0 0 0 0 +syscon misc RESERVATION_CONFLICT 12 0 0 0 0 0 +syscon misc RESERVE 22 0 0 0 0 0 +syscon misc RESERVE_10 86 0 0 0 0 0 +syscon misc RESTORE_POINTERS 3 0 0 0 0 0 +syscon misc REZERO_UNIT 1 0 0 0 0 0 +syscon misc RE_DUP_MAX 0x7fff 255 255 255 255 0 # bsd consensus +syscon misc RTCF_DOREDIRECT 0x01000000 0 0 0 0 0 +syscon misc SAVE_POINTERS 2 0 0 0 0 0 +syscon misc SEM_VALUE_MAX 0x7fffffff 0x7fff 0x7fffffff 0xffffffff 0xffffffff 0 +syscon misc SEM_INFO 19 0 11 0 0 0 +syscon misc SEM_STAT 18 0 10 0 0 0 -syscon misc SHMLBA 0 0x1000 0x1000 0x1000 0 # bsd consensus -syscon misc SIMPLE_QUEUE_TAG 0x20 0 0 0 0 -syscon misc SPACE 17 0 0 0 0 -syscon misc START_STOP 27 0 0 0 0 -syscon misc STATUS_MASK 62 0 0 0 0 -syscon misc SWAP_FLAG_DISCARD 0x010000 0 0 0 0 -syscon misc SYNCHRONIZE_CACHE 53 0 0 0 0 -syscon misc UMOUNT_NOFOLLOW 8 0 0 0 0 -syscon misc UNIT_ATTENTION 6 0 0 0 0 -syscon misc UPDATE_BLOCK 61 0 0 0 0 -syscon misc UT_HOSTSIZE 0x0100 0x10 0 0x0100 0 -syscon misc UT_LINESIZE 0x20 8 0 8 0 -syscon misc UT_NAMESIZE 0x20 8 0 0x20 0 +syscon misc SHMLBA 0 0x1000 0x1000 0x1000 0x1000 0 # bsd consensus +syscon misc SIMPLE_QUEUE_TAG 0x20 0 0 0 0 0 +syscon misc SPACE 17 0 0 0 0 0 +syscon misc START_STOP 27 0 0 0 0 0 +syscon misc STATUS_MASK 62 0 0 0 0 0 +syscon misc SWAP_FLAG_DISCARD 0x010000 0 0 0 0 0 +syscon misc SYNCHRONIZE_CACHE 53 0 0 0 0 0 +syscon misc UMOUNT_NOFOLLOW 8 0 0 0 0 0 +syscon misc UNIT_ATTENTION 6 0 0 0 0 0 +syscon misc UPDATE_BLOCK 61 0 0 0 0 0 +syscon misc UT_HOSTSIZE 0x0100 0x10 0 0x0100 0x0100 0 +syscon misc UT_LINESIZE 0x20 8 0 8 8 0 +syscon misc UT_NAMESIZE 0x20 8 0 0x20 0x20 0 -syscon misc WEOF 0xffffffff -1 -1 -1 -1 # bsd consensus (win fake) -syscon misc _LINUX_QUOTA_VERSION 2 0 0 0 0 -syscon misc _SEM_SEMUN_UNDEFINED 1 0 0 0 0 -syscon misc D_FMT 0x020029 2 2 1 0 -syscon misc D_T_FMT 0x020028 1 1 0 0 +syscon misc WEOF 0xffffffff -1 -1 -1 -1 -1 # bsd consensus (win fake) +syscon misc _LINUX_QUOTA_VERSION 2 0 0 0 0 0 +syscon misc _SEM_SEMUN_UNDEFINED 1 0 0 0 0 0 +syscon misc D_FMT 0x020029 2 2 1 1 0 +syscon misc D_T_FMT 0x020028 1 1 0 0 0 -syscon misc LOGIN_PROCESS 6 6 6 0 0 -syscon misc LOGIN_NAME_MAX 0x0100 0 0 0x20 0 +syscon misc LOGIN_PROCESS 6 6 6 0 0 0 +syscon misc LOGIN_NAME_MAX 0x0100 0 0 0x20 0x20 0 -syscon misc T_FMT 0x02002a 3 3 2 0 -syscon misc T_FMT_AMPM 0x02002b 4 4 3 0 +syscon misc T_FMT 0x02002a 3 3 2 2 0 +syscon misc T_FMT_AMPM 0x02002b 4 4 3 3 0 -syscon misc UL_GETFSIZE 1 1 1 0 0 -syscon misc UL_SETFSIZE 2 2 2 0 0 +syscon misc UL_GETFSIZE 1 1 1 0 0 0 +syscon misc UL_SETFSIZE 2 2 2 0 0 0 -syscon misc XATTR_CREATE 1 2 0 0 0 -syscon misc XATTR_REPLACE 2 4 0 0 0 +syscon misc XATTR_CREATE 1 2 0 0 0 0 +syscon misc XATTR_REPLACE 2 4 0 0 0 0 -syscon misc ACCOUNTING 9 9 0 0 0 -syscon misc AHZ 100 0x40 0 0x40 0 -syscon misc ALT_DIGITS 0x02002f 49 49 0 0 -syscon misc AM_STR 0x020026 5 5 4 0 -syscon misc B460800 0x1004 0 0x070800 0 0 -syscon misc B921600 0x1007 0 0x0e1000 0 0 -syscon misc BOOT_TIME 2 2 1 0 0 -syscon misc CHARCLASS_NAME_MAX 0x0800 14 14 0 0 -syscon misc CLOCKS_PER_SEC 1000000 1000000 0x80 100 10000000 -syscon misc CODESET 14 0 0 51 0 -syscon misc COLL_WEIGHTS_MAX 255 2 10 2 0 -syscon misc CPU_SETSIZE 0x0400 0 0x0100 0 0 -syscon misc CRNCYSTR 0x04000f 56 56 50 0 -syscon misc CRTSCTS 0x80000000 0x030000 0x030000 0x010000 0 -syscon misc CSTATUS 0 20 20 255 0 -syscon misc DEAD_PROCESS 8 8 7 0 0 -syscon misc FNM_NOSYS -1 -1 -1 2 0 -syscon misc INIT_PROCESS 5 5 5 0 0 -syscon misc MINSIGSTKSZ 0x0800 0x8000 0x0800 0x3000 0 -syscon misc MQ_PRIO_MAX 0x8000 0 0x40 0 0 -syscon misc MTERASE 13 0 12 9 0 -syscon misc MTLOAD 30 0 19 0 0 -syscon misc MTRETEN 9 0 0 8 0 -syscon misc NEW_TIME 3 4 3 0 0 -syscon misc NFDBITS 0x40 0x20 0x40 0x20 0 -syscon misc NGROUPS 0x010000 0x10 0x0400 0x10 0 -syscon misc NGROUPS_MAX 0x010000 0x10 0x03ff 0x10 0 -syscon misc NOEXPR 0x050001 53 53 49 0 -syscon misc NOFILE 0x0100 0x0100 0x40 0x40 0 -syscon misc NOSTR 0x050003 55 55 48 0 -syscon misc OLD_TIME 4 3 2 0 0 -syscon misc PM_STR 0x020027 6 6 5 0 -syscon misc RADIXCHAR 0x010000 50 50 44 0 -syscon misc RUN_LVL 1 1 0 0 0 -syscon misc STA_RONLY 0xff00 0 0xff00 0 0 -syscon misc SYMLOOP_MAX 0 0 0 0x20 0 -syscon misc THOUSEP 0x010001 51 51 45 0 -syscon misc TIMER_ABSTIME 1 0 1 1 0 -syscon misc TIME_UTC 1 0 1 0 0 -syscon misc TMP_MAX 0x03a2f8 0x1269ae40 0x1269ae40 0x7fffffff 0 -syscon misc TSS_DTOR_ITERATIONS 0 0 4 0 0 -syscon misc TTY_NAME_MAX 0x20 0 0 260 0 -syscon misc UIO_MAXIOV 0x0400 0 0 0x0400 0 -syscon misc USER_PROCESS 7 7 4 0 0 -syscon misc YESEXPR 0x050000 52 52 47 0 -syscon misc YESSTR 0x050002 54 54 46 0 +syscon misc ACCOUNTING 9 9 0 0 0 0 +syscon misc AHZ 100 0x40 0 0x40 0x40 0 +syscon misc ALT_DIGITS 0x02002f 49 49 0 0 0 +syscon misc AM_STR 0x020026 5 5 4 4 0 +syscon misc B460800 0x1004 0 0x070800 0 0 0 +syscon misc B921600 0x1007 0 0x0e1000 0 0 0 +syscon misc BOOT_TIME 2 2 1 0 0 0 +syscon misc CHARCLASS_NAME_MAX 0x0800 14 14 0 0 0 +syscon misc CLOCKS_PER_SEC 1000000 1000000 0x80 100 100 10000000 +syscon misc CODESET 14 0 0 51 51 0 +syscon misc COLL_WEIGHTS_MAX 255 2 10 2 2 0 +syscon misc CPU_SETSIZE 0x0400 0 0x0100 0 0 0 +syscon misc CRNCYSTR 0x04000f 56 56 50 50 0 +syscon misc CRTSCTS 0x80000000 0x030000 0x030000 0x010000 0x010000 0 +syscon misc CSTATUS 0 20 20 255 255 0 +syscon misc DEAD_PROCESS 8 8 7 0 0 0 +syscon misc FNM_NOSYS -1 -1 -1 2 2 0 +syscon misc INIT_PROCESS 5 5 5 0 0 0 +syscon misc MINSIGSTKSZ 0x0800 0x8000 0x0800 0x3000 0x2000 0 +syscon misc MQ_PRIO_MAX 0x8000 0 0x40 0 0 0 +syscon misc MTERASE 13 0 12 9 9 0 +syscon misc MTLOAD 30 0 19 0 0 0 +syscon misc MTRETEN 9 0 0 8 8 0 +syscon misc NEW_TIME 3 4 3 0 0 0 +syscon misc NFDBITS 0x40 0x20 0x40 0x20 0x20 0 +syscon misc NGROUPS 0x010000 0x10 0x0400 0x10 0x10 0 +syscon misc NGROUPS_MAX 0x010000 0x10 0x03ff 0x10 0x10 0 +syscon misc NOEXPR 0x050001 53 53 49 49 0 +syscon misc NOFILE 0x0100 0x0100 0x40 0x40 0x40 0 +syscon misc NOSTR 0x050003 55 55 48 48 0 +syscon misc OLD_TIME 4 3 2 0 0 0 +syscon misc PM_STR 0x020027 6 6 5 5 0 +syscon misc RADIXCHAR 0x010000 50 50 44 44 0 +syscon misc RUN_LVL 1 1 0 0 0 0 +syscon misc STA_RONLY 0xff00 0 0xff00 0 0 0 +syscon misc SYMLOOP_MAX 0 0 0 0x20 0x20 0 +syscon misc THOUSEP 0x010001 51 51 45 45 0 +syscon misc TIMER_ABSTIME 1 0 1 1 1 0 +syscon misc TIME_UTC 1 0 1 0 0 0 +syscon misc TMP_MAX 0x03a2f8 0x1269ae40 0x1269ae40 0x7fffffff 0x7fffffff 0 +syscon misc TSS_DTOR_ITERATIONS 0 0 4 0 0 0 +syscon misc TTY_NAME_MAX 0x20 0 0 260 260 0 +syscon misc UIO_MAXIOV 0x0400 0 0 0x0400 0x0400 0 +syscon misc USER_PROCESS 7 7 4 0 0 0 +syscon misc YESEXPR 0x050000 52 52 47 47 0 +syscon misc YESSTR 0x050002 54 54 46 46 0 # System Call Numbers. # -# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX -syscon nr __NR_exit 0x003c 0x2000001 0x0001 0x0001 -1 -syscon nr __NR_exit_group 0x00e7 0x2000001 0x0001 0x0001 -1 -syscon nr __NR_read 0x0000 0x2000003 0x0003 0x0003 -1 -syscon nr __NR_write 0x0001 0x2000004 0x0004 0x0004 -1 -syscon nr __NR_open 0x0002 0x2000005 0x0005 0x0005 -1 -syscon nr __NR_close 0x0003 0x2000006 0x0006 0x0006 -1 -syscon nr __NR_stat 0x0004 0x2000152 -1 0x0026 -1 -syscon nr __NR_fstat 0x0005 0x2000153 0x0227 0x0035 -1 -syscon nr __NR_lstat 0x0006 0x2000154 0x0028 0x0028 -1 -syscon nr __NR_poll 0x0007 0x20000e6 0x00d1 0x00fc -1 -syscon nr __NR_ppoll 0x010f -1 0x0221 0x006d -1 -syscon nr __NR_lseek 0x0008 0x20000c7 0x01de 0x00c7 -1 -syscon nr __NR_mmap 0x0009 0x20000c5 0x01dd 0x00c5 -1 -syscon nr __NR_msync 0x001a 0x2000041 0x0041 0x0100 -1 -syscon nr __NR_mprotect 0x000a 0x200004a 0x004a 0x004a -1 -syscon nr __NR_munmap 0x000b 0x2000049 0x0049 0x0049 -1 -syscon nr __NR_sigaction 0x000d 0x200002e 0x01a0 0x002e -1 -syscon nr __NR_sigprocmask 0x000e 0x2000030 0x0154 0x0030 -1 -syscon nr __NR_ioctl 0x0010 0x2000036 0x0036 0x0036 -1 -syscon nr __NR_pread 0x0011 0x2000099 0x01db 0x00ad -1 -syscon nr __NR_pwrite 0x0012 0x200009a 0x01dc 0x00ae -1 -syscon nr __NR_readv 0x0013 0x2000078 0x0078 0x0078 -1 -syscon nr __NR_writev 0x0014 0x2000079 0x0079 0x0079 -1 -syscon nr __NR_access 0x0015 0x2000021 0x0021 0x0021 -1 -syscon nr __NR_pipe 0x0016 0x200002a 0x021e 0x0107 -1 -syscon nr __NR_select 0x0017 0x200005d 0x005d 0x0047 -1 -syscon nr __NR_pselect -1 0x200018a 0x020a 0x006e -1 -syscon nr __NR_pselect6 0x010e -1 -1 -1 -1 -syscon nr __NR_sched_yield 0x0018 0x010003c 0x014b 0x012a -1 -syscon nr __NR_mremap 0x0019 -1 -1 -1 -1 -syscon nr __NR_mincore 0x001b 0x200004e 0x004e 0x004e -1 -syscon nr __NR_madvise 0x001c 0x200004b 0x004b 0x004b -1 -syscon nr __NR_shmget 0x001d 0x2000109 0x00e7 0x0121 -1 -syscon nr __NR_shmat 0x001e 0x2000106 0x00e4 0x00e4 -1 -syscon nr __NR_shmctl 0x001f 0x2000107 0x0200 0x0128 -1 -syscon nr __NR_dup 0x0020 0x2000029 0x0029 0x0029 -1 -syscon nr __NR_dup2 0x0021 0x200005a 0x005a 0x005a -1 -syscon nr __NR_pause 0x0022 -1 -1 -1 -1 -syscon nr __NR_nanosleep 0x0023 -1 0x00f0 0x005b -1 -syscon nr __NR_getitimer 0x0024 0x2000056 0x0056 0x0046 -1 -syscon nr __NR_setitimer 0x0026 0x2000053 0x0053 0x0045 -1 -syscon nr __NR_alarm 0x0025 -1 -1 -1 -1 -syscon nr __NR_getpid 0x0027 0x2000014 0x0014 0x0014 -1 -syscon nr __NR_sendfile 0x0028 0x2000151 0x0189 -1 -1 -syscon nr __NR_socket 0x0029 0x2000061 0x0061 0x0061 -1 -syscon nr __NR_connect 0x002a 0x2000062 0x0062 0x0062 -1 -syscon nr __NR_accept 0x002b 0x200001e 0x0063 0x001e -1 -syscon nr __NR_sendto 0x002c 0x2000085 0x0085 0x0085 -1 -syscon nr __NR_recvfrom 0x002d 0x200001d 0x001d 0x001d -1 -syscon nr __NR_sendmsg 0x002e 0x200001c 0x001c 0x001c -1 -syscon nr __NR_recvmsg 0x002f 0x200001b 0x001b 0x001b -1 -syscon nr __NR_shutdown 0x0030 0x2000086 0x0086 0x0086 -1 -syscon nr __NR_bind 0x0031 0x2000068 0x0068 0x0068 -1 -syscon nr __NR_listen 0x0032 0x200006a 0x006a 0x006a -1 -syscon nr __NR_getsockname 0x0033 0x2000020 0x0020 0x0020 -1 -syscon nr __NR_getpeername 0x0034 0x200001f 0x008d 0x001f -1 -syscon nr __NR_socketpair 0x0035 0x2000087 0x0087 0x0087 -1 -syscon nr __NR_setsockopt 0x0036 0x2000069 0x0069 0x0069 -1 -syscon nr __NR_getsockopt 0x0037 0x2000076 0x0076 0x0076 -1 -syscon nr __NR_fork 0x0039 0x2000002 0x0002 0x0002 -1 -syscon nr __NR_vfork 0x003a 0x2000042 0x0042 0x0042 -1 -syscon nr __NR_posix_spawn -1 0x20000f4 -1 -1 -1 -syscon nr __NR_execve 0x003b 0x200003b 0x003b 0x003b -1 -syscon nr __NR_wait4 0x003d 0x2000007 0x0007 0x000b -1 -syscon nr __NR_kill 0x003e 0x2000025 0x0025 0x007a -1 -syscon nr __NR_killpg -1 -1 0x0092 -1 -1 -syscon nr __NR_clone 0x0038 -1 -1 -1 -1 -syscon nr __NR_tkill 0x00c8 -1 -1 -1 -1 -syscon nr __NR_futex 0x00ca -1 -1 0x0053 -1 -syscon nr __NR_set_robust_list 0x0111 -1 -1 -1 -1 -syscon nr __NR_get_robust_list 0x0112 -1 -1 -1 -1 -syscon nr __NR_uname 0x003f -1 0x00a4 -1 -1 -syscon nr __NR_semget 0x0040 0x20000ff 0x00dd 0x00dd -1 -syscon nr __NR_semop 0x0041 0x2000100 0x00de 0x0122 -1 -syscon nr __NR_semctl 0x0042 0x20000fe 0x01fe 0x0127 -1 -syscon nr __NR_shmdt 0x0043 0x2000108 0x00e6 0x00e6 -1 -syscon nr __NR_msgget 0x0044 0x2000103 0x00e1 0x00e1 -1 -syscon nr __NR_msgsnd 0x0045 0x2000104 0x00e2 0x00e2 -1 -syscon nr __NR_msgrcv 0x0046 0x2000105 0x00e3 0x00e3 -1 -syscon nr __NR_msgctl 0x0047 0x2000102 0x01ff 0x0129 -1 -syscon nr __NR_fcntl 0x0048 0x200005c 0x005c 0x005c -1 -syscon nr __NR_flock 0x0049 0x2000083 0x0083 0x0083 -1 -syscon nr __NR_fsync 0x004a 0x200005f 0x005f 0x005f -1 -syscon nr __NR_fdatasync 0x004b 0x20000bb 0x0226 0x005f -1 -syscon nr __NR_truncate 0x004c 0x20000c8 0x01df 0x00c8 -1 -syscon nr __NR_ftruncate 0x004d 0x20000c9 0x01e0 0x00c9 -1 -syscon nr __NR_getcwd 0x004f -1 0x0146 0x0130 -1 -syscon nr __NR_chdir 0x0050 0x200000c 0x000c 0x000c -1 -syscon nr __NR_fchdir 0x0051 0x200000d 0x000d 0x000d -1 -syscon nr __NR_rename 0x0052 0x2000080 0x0080 0x0080 -1 -syscon nr __NR_mkdir 0x0053 0x2000088 0x0088 0x0088 -1 -syscon nr __NR_rmdir 0x0054 0x2000089 0x0089 0x0089 -1 -syscon nr __NR_creat 0x0055 -1 0x0008 -1 -1 -syscon nr __NR_link 0x0056 0x2000009 0x0009 0x0009 -1 -syscon nr __NR_unlink 0x0057 0x200000a 0x000a 0x000a -1 -syscon nr __NR_symlink 0x0058 0x2000039 0x0039 0x0039 -1 -syscon nr __NR_readlink 0x0059 0x200003a 0x003a 0x003a -1 -syscon nr __NR_chmod 0x005a 0x200000f 0x000f 0x000f -1 -syscon nr __NR_fchmod 0x005b 0x200007c 0x007c 0x007c -1 -syscon nr __NR_chown 0x005c 0x2000010 0x0010 0x0010 -1 -syscon nr __NR_fchown 0x005d 0x200007b 0x007b 0x007b -1 -syscon nr __NR_lchown 0x005e 0x200016c 0x00fe 0x00fe -1 -syscon nr __NR_umask 0x005f 0x200003c 0x003c 0x003c -1 -syscon nr __NR_gettimeofday 0x0060 0x2000074 0x0074 0x0043 -1 -syscon nr __NR_getrlimit 0x0061 0x20000c2 0x00c2 0x00c2 -1 -syscon nr __NR_getrusage 0x0062 0x2000075 0x0075 0x0013 -1 -syscon nr __NR_sysinfo 0x0063 -1 -1 -1 -1 -syscon nr __NR_times 0x0064 -1 -1 -1 -1 -syscon nr __NR_ptrace 0x0065 0x200001a 0x001a 0x001a -1 -syscon nr __NR_syslog 0x0067 -1 -1 -1 -1 -syscon nr __NR_getuid 0x0066 0x2000018 0x0018 0x0018 -1 -syscon nr __NR_getgid 0x0068 0x200002f 0x002f 0x002f -1 -syscon nr __NR_getppid 0x006e 0x2000027 0x0027 0x0027 -1 -syscon nr __NR_getpgrp 0x006f 0x2000051 0x0051 0x0051 -1 -syscon nr __NR_setsid 0x0070 0x2000093 0x0093 0x0093 -1 -syscon nr __NR_getsid 0x007c 0x2000136 0x0136 0x00ff -1 -syscon nr __NR_getpgid 0x0079 0x2000097 0x00cf 0x00cf -1 -syscon nr __NR_setpgid 0x006d 0x2000052 0x0052 0x0052 -1 -syscon nr __NR_geteuid 0x006b 0x2000019 0x0019 0x0019 -1 -syscon nr __NR_getegid 0x006c 0x200002b 0x002b 0x002b -1 -syscon nr __NR_getgroups 0x0073 0x200004f 0x004f 0x004f -1 -syscon nr __NR_setgroups 0x0074 0x2000050 0x0050 0x0050 -1 -syscon nr __NR_setreuid 0x0071 0x200007e 0x007e 0x007e -1 -syscon nr __NR_setregid 0x0072 0x200007f 0x007f 0x007f -1 -syscon nr __NR_setuid 0x0069 0x2000017 0x0017 0x0017 -1 -syscon nr __NR_setgid 0x006a 0x20000b5 0x00b5 0x00b5 -1 -syscon nr __NR_setresuid 0x0075 -1 0x0137 0x011a -1 -syscon nr __NR_setresgid 0x0077 -1 0x0138 0x011c -1 -syscon nr __NR_getresuid 0x0076 -1 0x0168 0x0119 -1 -syscon nr __NR_getresgid 0x0078 -1 0x0169 0x011b -1 -syscon nr __NR_sigpending 0x007f 0x2000034 0x0034 0x0034 -1 -syscon nr __NR_sigsuspend 0x0082 0x200006f 0x0155 0x006f -1 -syscon nr __NR_sigaltstack 0x0083 0x2000035 0x0035 0x0120 -1 -syscon nr __NR_mknod 0x0085 0x200000e 0x000e 0x000e -1 -syscon nr __NR_mknodat 0x0103 -1 0x22ff 0x0140 -1 -syscon nr __NR_mkfifo -1 0x2000084 0x0084 0x0084 -1 -syscon nr __NR_mkfifoat -1 -1 0x01f1 0x013f -1 -syscon nr __NR_statfs 0x0089 0x2000159 0x022b 0x003f -1 -syscon nr __NR_fstatfs 0x008a 0x200015a 0x022c 0x0040 -1 -syscon nr __NR_getpriority 0x008c 0x2000064 0x0064 0x0064 -1 -syscon nr __NR_setpriority 0x008d 0x2000060 0x0060 0x0060 -1 -syscon nr __NR_mlock 0x0095 0x20000cb 0x00cb 0x00cb -1 -syscon nr __NR_munlock 0x0096 0x20000cc 0x00cc 0x00cc -1 -syscon nr __NR_mlockall 0x0097 0x2000144 0x0144 0x010f -1 -syscon nr __NR_munlockall 0x0098 0x2000145 0x0145 0x0110 -1 -syscon nr __NR_setrlimit 0x00a0 0x20000c3 0x00c3 0x00c3 -1 -syscon nr __NR_chroot 0x00a1 0x200003d 0x003d 0x003d -1 -syscon nr __NR_sync 0x00a2 0x2000024 0x0024 0x0024 -1 -syscon nr __NR_acct 0x00a3 0x2000033 0x0033 0x0033 -1 -syscon nr __NR_settimeofday 0x00a4 0x200007a 0x007a 0x0044 -1 -syscon nr __NR_mount 0x00a5 0x20000a7 0x0015 0x0015 -1 -syscon nr __NR_reboot 0x00a9 0x2000037 0x0037 0x0037 -1 -syscon nr __NR_quotactl 0x00b3 0x20000a5 0x0094 0x0094 -1 -syscon nr __NR_setfsuid 0x007a -1 -1 -1 -1 -syscon nr __NR_setfsgid 0x007b -1 -1 -1 -1 -syscon nr __NR_capget 0x007d -1 -1 -1 -1 -syscon nr __NR_capset 0x007e -1 -1 -1 -1 -syscon nr __NR_sigtimedwait 0x0080 -1 0x0159 -1 -1 -syscon nr __NR_rt_sigqueueinfo 0x0081 -1 -1 -1 -1 -syscon nr __NR_personality 0x0087 -1 -1 -1 -1 -syscon nr __NR_ustat 0x0088 -1 -1 -1 -1 -syscon nr __NR_sysfs 0x008b -1 -1 -1 -1 -syscon nr __NR_sched_setparam 0x008e -1 0x0147 -1 -1 -syscon nr __NR_sched_getparam 0x008f -1 0x0148 -1 -1 -syscon nr __NR_sched_setscheduler 0x0090 -1 0x0149 -1 -1 -syscon nr __NR_sched_getscheduler 0x0091 -1 0x014a -1 -1 -syscon nr __NR_sched_get_priority_max 0x0092 -1 0x014c -1 -1 -syscon nr __NR_sched_get_priority_min 0x0093 -1 0x014d -1 -1 -syscon nr __NR_sched_rr_get_interval 0x0094 -1 0x014e -1 -1 -syscon nr __NR_vhangup 0x0099 -1 -1 -1 -1 -syscon nr __NR_modify_ldt 0x009a -1 -1 -1 -1 -syscon nr __NR_pivot_root 0x009b -1 -1 -1 -1 -syscon nr __NR__sysctl 0x009c -1 -1 -1 -1 -syscon nr __NR_prctl 0x009d -1 -1 -1 -1 -syscon nr __NR_arch_prctl 0x009e -1 0x00a5 0x00a5 -1 -syscon nr __NR_adjtimex 0x009f -1 -1 -1 -1 -syscon nr __NR_umount2 0x00a6 -1 -1 -1 -1 -syscon nr __NR_swapon 0x00a7 0x2000055 0x0055 -1 -1 -syscon nr __NR_swapoff 0x00a8 -1 0x01a8 -1 -1 -syscon nr __NR_sethostname 0x00aa -1 0x0058 -1 -1 -syscon nr __NR_setdomainname 0x00ab -1 0x00a3 -1 -1 -syscon nr __NR_iopl 0x00ac -1 -1 -1 -1 -syscon nr __NR_ioperm 0x00ad -1 -1 -1 -1 -syscon nr __NR_init_module 0x00af -1 -1 -1 -1 -syscon nr __NR_delete_module 0x00b0 -1 -1 -1 -1 -syscon nr __NR_gettid 0x00ba 0x200011e -1 -1 -1 -syscon nr __NR_readahead 0x00bb -1 -1 -1 -1 -syscon nr __NR_setxattr 0x00bc 0x20000ec -1 -1 -1 -syscon nr __NR_fsetxattr 0x00be 0x20000ed -1 -1 -1 -syscon nr __NR_getxattr 0x00bf 0x20000ea -1 -1 -1 -syscon nr __NR_fgetxattr 0x00c1 0x20000eb -1 -1 -1 -syscon nr __NR_listxattr 0x00c2 0x20000f0 -1 -1 -1 -syscon nr __NR_flistxattr 0x00c4 0x20000f1 -1 -1 -1 -syscon nr __NR_removexattr 0x00c5 0x20000ee -1 -1 -1 -syscon nr __NR_fremovexattr 0x00c7 0x20000ef -1 -1 -1 -syscon nr __NR_lsetxattr 0x00bd -1 -1 -1 -1 -syscon nr __NR_lgetxattr 0x00c0 -1 -1 -1 -1 -syscon nr __NR_llistxattr 0x00c3 -1 -1 -1 -1 -syscon nr __NR_lremovexattr 0x00c6 -1 -1 -1 -1 -syscon nr __NR_sched_setaffinity 0x00cb -1 -1 -1 -1 -syscon nr __NR_sched_getaffinity 0x00cc -1 -1 -1 -1 -syscon nr __NR_cpuset_getaffinity -1 -1 0x01e7 -1 -1 -syscon nr __NR_cpuset_setaffinity -1 -1 0x01e8 -1 -1 -syscon nr __NR_io_setup 0x00ce -1 -1 -1 -1 -syscon nr __NR_io_destroy 0x00cf -1 -1 -1 -1 -syscon nr __NR_io_getevents 0x00d0 -1 -1 -1 -1 -syscon nr __NR_io_submit 0x00d1 -1 -1 -1 -1 -syscon nr __NR_io_cancel 0x00d2 -1 -1 -1 -1 -syscon nr __NR_lookup_dcookie 0x00d4 -1 -1 -1 -1 -syscon nr __NR_epoll_create 0x00d5 -1 -1 -1 -1 -syscon nr __NR_epoll_wait 0x00e8 -1 -1 -1 -1 -syscon nr __NR_epoll_ctl 0x00e9 -1 -1 -1 -1 -syscon nr __NR_getdents 0x00d9 -1 0x0110 0x0063 -1 -syscon nr __NR_set_tid_address 0x00da -1 -1 -1 -1 -syscon nr __NR_restart_syscall 0x00db -1 -1 -1 -1 -syscon nr __NR_semtimedop 0x00dc -1 -1 -1 -1 -syscon nr __NR_fadvise 0x00dd -1 0x0213 -1 -1 -syscon nr __NR_timer_create 0x00de -1 -1 -1 -1 -syscon nr __NR_timer_settime 0x00df -1 -1 -1 -1 -syscon nr __NR_timer_gettime 0x00e0 -1 -1 -1 -1 -syscon nr __NR_timer_getoverrun 0x00e1 -1 -1 -1 -1 -syscon nr __NR_timer_delete 0x00e2 -1 -1 -1 -1 -syscon nr __NR_clock_settime 0x00e3 -1 0x00e9 0x0058 -1 -syscon nr __NR_clock_gettime 0x00e4 -1 0x00e8 0x0057 -1 -syscon nr __NR_clock_getres 0x00e5 -1 0x00ea 0x0059 -1 -syscon nr __NR_clock_nanosleep 0x00e6 -1 0x00f4 -1 -1 -syscon nr __NR_tgkill 0x00ea -1 -1 -1 -1 -syscon nr __NR_mbind 0x00ed -1 -1 -1 -1 -syscon nr __NR_set_mempolicy 0x00ee -1 -1 -1 -1 -syscon nr __NR_get_mempolicy 0x00ef -1 -1 -1 -1 -syscon nr __NR_mq_open 0x00f0 -1 -1 -1 -1 -syscon nr __NR_mq_unlink 0x00f1 -1 -1 -1 -1 -syscon nr __NR_mq_timedsend 0x00f2 -1 -1 -1 -1 -syscon nr __NR_mq_timedreceive 0x00f3 -1 -1 -1 -1 -syscon nr __NR_mq_notify 0x00f4 -1 -1 -1 -1 -syscon nr __NR_mq_getsetattr 0x00f5 -1 -1 -1 -1 -syscon nr __NR_kexec_load 0x00f6 -1 -1 -1 -1 -syscon nr __NR_waitid 0x00f7 0x20000ad -1 -1 -1 -syscon nr __NR_add_key 0x00f8 -1 -1 -1 -1 -syscon nr __NR_request_key 0x00f9 -1 -1 -1 -1 -syscon nr __NR_keyctl 0x00fa -1 -1 -1 -1 -syscon nr __NR_ioprio_set 0x00fb -1 -1 -1 -1 -syscon nr __NR_ioprio_get 0x00fc -1 -1 -1 -1 -syscon nr __NR_inotify_init 0x00fd -1 -1 -1 -1 -syscon nr __NR_inotify_add_watch 0x00fe -1 -1 -1 -1 -syscon nr __NR_inotify_rm_watch 0x00ff -1 -1 -1 -1 -syscon nr __NR_openat 0x0101 0x20001cf 0x01f3 0x0141 -1 -syscon nr __NR_mkdirat 0x0102 0x20001db 0x01f0 0x013e -1 -syscon nr __NR_fchownat 0x0104 0x20001d4 0x01eb 0x013b -1 -syscon nr __NR_utime 0x0084 -1 -1 -1 -1 -syscon nr __NR_utimes 0x00eb 0x200008a 0x008a 0x004c -1 -syscon nr __NR_futimesat 0x0105 -1 0x01ee -1 -1 -syscon nr __NR_futimes -1 0x200008b 0x00ce 0x004d -1 -syscon nr __NR_futimens -1 -1 0x0222 0x0055 -1 -syscon nr __NR_fstatat 0x0106 0x20001d6 0x0228 0x002a -1 -syscon nr __NR_unlinkat 0x0107 0x20001d8 0x01f7 0x0145 -1 -syscon nr __NR_renameat 0x0108 0x20001d1 0x01f5 0x0143 -1 -syscon nr __NR_linkat 0x0109 0x20001d7 0x01ef 0x013d -1 -syscon nr __NR_symlinkat 0x010a 0x20001da 0x01f6 0x0144 -1 -syscon nr __NR_readlinkat 0x010b 0x20001d9 0x01f4 0x0142 -1 -syscon nr __NR_fchmodat 0x010c 0x20001d3 0x01ea 0x013a -1 -syscon nr __NR_faccessat 0x010d 0x20001d2 0x01e9 0x0139 -1 -syscon nr __NR_unshare 0x0110 -1 -1 -1 -1 -syscon nr __NR_splice 0x0113 -1 -1 -1 -1 -syscon nr __NR_tee 0x0114 -1 -1 -1 -1 -syscon nr __NR_sync_file_range 0x0115 -1 -1 -1 -1 -syscon nr __NR_vmsplice 0x0116 -1 -1 -1 -1 -syscon nr __NR_migrate_pages 0x0100 -1 -1 -1 -1 -syscon nr __NR_move_pages 0x0117 -1 -1 -1 -1 -syscon nr __NR_preadv 0x0127 -1 0x0121 0x010b -1 -syscon nr __NR_pwritev 0x0128 -1 0x0122 0x010c -1 -syscon nr __NR_utimensat 0x0118 -1 0x0223 0x0054 -1 -syscon nr __NR_fallocate 0x011d -1 -1 -1 -1 -syscon nr __NR_posix_fallocate -1 -1 0x0212 -1 -1 -syscon nr __NR_accept4 0x0120 -1 0x021d 0x005d -1 -syscon nr __NR_dup3 0x0124 -1 -1 0x0066 -1 -syscon nr __NR_pipe2 0x0125 -1 0x021e 0x0065 -1 -syscon nr __NR_epoll_pwait 0x0119 -1 -1 -1 -1 -syscon nr __NR_epoll_create1 0x0123 -1 -1 -1 -1 -syscon nr __NR_perf_event_open 0x012a -1 -1 -1 -1 -syscon nr __NR_inotify_init1 0x0126 -1 -1 -1 -1 -syscon nr __NR_rt_tgsigqueueinfo 0x0129 -1 -1 -1 -1 -syscon nr __NR_signalfd 0x011a -1 -1 -1 -1 -syscon nr __NR_signalfd4 0x0121 -1 -1 -1 -1 -syscon nr __NR_eventfd 0x011c -1 -1 -1 -1 -syscon nr __NR_eventfd2 0x0122 -1 -1 -1 -1 -syscon nr __NR_timerfd_create 0x011b -1 -1 -1 -1 -syscon nr __NR_timerfd_settime 0x011e -1 -1 -1 -1 -syscon nr __NR_timerfd_gettime 0x011f -1 -1 -1 -1 -syscon nr __NR_recvmmsg 0x012b -1 -1 -1 -1 -syscon nr __NR_fanotify_init 0x012c -1 -1 -1 -1 -syscon nr __NR_fanotify_mark 0x012d -1 -1 -1 -1 -syscon nr __NR_prlimit 0x012e -1 -1 -1 -1 -syscon nr __NR_name_to_handle_at 0x012f -1 -1 -1 -1 -syscon nr __NR_open_by_handle_at 0x0130 -1 -1 -1 -1 -syscon nr __NR_clock_adjtime 0x0131 -1 -1 -1 -1 -syscon nr __NR_syncfs 0x0132 -1 -1 -1 -1 -syscon nr __NR_sendmmsg 0x0133 -1 -1 -1 -1 -syscon nr __NR_setns 0x0134 -1 -1 -1 -1 -syscon nr __NR_getcpu 0x0135 -1 -1 -1 -1 -syscon nr __NR_process_vm_readv 0x0136 -1 -1 -1 -1 -syscon nr __NR_process_vm_writev 0x0137 -1 -1 -1 -1 -syscon nr __NR_kcmp 0x0138 -1 -1 -1 -1 -syscon nr __NR_finit_module 0x0139 -1 -1 -1 -1 -syscon nr __NR_sched_setattr 0x013a -1 -1 -1 -1 -syscon nr __NR_sched_getattr 0x013b -1 -1 -1 -1 -syscon nr __NR_renameat2 0x013c -1 -1 -1 -1 -syscon nr __NR_seccomp 0x013d -1 -1 -1 -1 -syscon nr __NR_getrandom 0x013e 0x20001f4 0x0233 0x0007 -1 -syscon nr __NR_memfd_create 0x013f -1 -1 -1 -1 -syscon nr __NR_kexec_file_load 0x0140 -1 -1 -1 -1 -syscon nr __NR_bpf 0x0141 -1 -1 -1 -1 -syscon nr __NR_execveat 0x0142 -1 -1 -1 -1 -syscon nr __NR_userfaultfd 0x0143 -1 -1 -1 -1 -syscon nr __NR_membarrier 0x0144 -1 -1 -1 -1 -syscon nr __NR_mlock2 0x0145 -1 -1 -1 -1 -syscon nr __NR_copy_file_range 0x0146 -1 -1 -1 -1 -syscon nr __NR_preadv2 0x0147 -1 -1 -1 -1 -syscon nr __NR_pwritev2 0x0148 -1 -1 -1 -1 -syscon nr __NR_pkey_mprotect 0x0149 -1 -1 -1 -1 -syscon nr __NR_pkey_alloc 0x014a -1 -1 -1 -1 -syscon nr __NR_pkey_free 0x014b -1 -1 -1 -1 -syscon nr __NR_statx 0x014c -1 -1 -1 -1 -syscon nr __NR_io_pgetevents 0x014d -1 -1 -1 -1 -syscon nr __NR_rseq 0x014e -1 -1 -1 -1 -syscon nr __NR_pidfd_send_signal 0x01a8 -1 -1 -1 -1 -syscon nr __NR_io_uring_setup 0x01a9 -1 -1 -1 -1 -syscon nr __NR_io_uring_enter 0x01aa -1 -1 -1 -1 -syscon nr __NR_io_uring_register 0x01ab -1 -1 -1 -1 -syscon nr __NR_pledge -1 -1 -1 0x006c -1 -syscon nr __NR_msyscall -1 -1 -1 0x0025 -1 -syscon nr __NR_ktrace -1 -1 0x002d 0x002d -1 -syscon nr __NR_kqueue -1 0x200016a 0x016a 0x010d -1 -syscon nr __NR_kevent -1 0x2000171 0x0230 0x0048 -1 -syscon nr __NR_revoke -1 0x2000038 0x0038 0x0038 -1 -syscon nr __NR_setlogin -1 0x2000032 0x0032 0x0032 -1 -syscon nr __NR_getfh -1 0x20000a1 0x00a1 0x00a1 -1 -syscon nr __NR_chflags -1 0x2000022 0x0022 0x0022 -1 -syscon nr __NR_getfsstat -1 0x200015b 0x022d 0x003e -1 -syscon nr __NR_nfssvc -1 0x200009b 0x009b 0x009b -1 -syscon nr __NR_adjtime -1 0x200008c 0x008c 0x008c -1 -syscon nr __NR_fchflags -1 0x2000023 0x0023 0x0023 -1 -syscon nr __NR_seteuid -1 0x20000b7 0x00b7 0x00b7 -1 -syscon nr __NR_setegid -1 0x20000b6 0x00b6 0x00b6 -1 -syscon nr __NR_fpathconf -1 0x20000c0 0x00c0 0x00c0 -1 -syscon nr __NR_fhopen -1 0x20000f8 0x012a 0x0108 -1 -syscon nr __NR_unmount -1 0x200009f 0x0016 0x0016 -1 -syscon nr __NR_issetugid -1 0x2000147 0x00fd 0x00fd -1 -syscon nr __NR_minherit -1 0x20000fa 0x00fa 0x00fa -1 -syscon nr __NR_pathconf -1 0x20000bf 0x00bf 0x00bf -1 -syscon nr __NR_sysctl -1 0x20000ca -1 0x00ca -1 -syscon nr __NR_ntp_adjtime -1 0x200020f 0x00b0 -1 -1 -syscon nr __NR_ntp_gettime -1 0x2000210 0x00f8 -1 -1 -syscon nr __NR_shm_unlink -1 0x200010b 0x01e3 -1 -1 -syscon nr __NR_shm_open -1 0x200010a 0x01e2 -1 -1 -syscon nr __NR_aio_read -1 0x200013e 0x013e -1 -1 -syscon nr __NR_aio_suspend -1 0x200013b 0x013b -1 -1 -syscon nr __NR_aio_cancel -1 0x200013c 0x013c -1 -1 -syscon nr __NR_aio_fsync -1 0x2000139 0x01d1 -1 -1 -syscon nr __NR_aio_error -1 0x200013d 0x013d -1 -1 -syscon nr __NR_aio_return -1 0x200013a 0x013a -1 -1 -syscon nr __NR_aio_write -1 0x200013f 0x013f -1 -1 -syscon nr __NR_aio_waitcomplete -1 -1 0x0167 -1 -1 -syscon nr __NR_aio_suspend_nocancel -1 0x20001a5 -1 -1 -1 -syscon nr __NR_aio_mlock -1 -1 0x021f -1 -1 -syscon nr __NR_sigwait -1 0x200014a 0x01ad -1 -1 -syscon nr __NR_undelete -1 0x20000cd 0x00cd -1 -1 -syscon nr __NR_getlogin -1 0x2000031 0x0031 -1 -1 -syscon nr __NR_getdtablesize -1 0x2000059 0x0059 -1 -1 -syscon nr __NR_setauid -1 0x2000162 0x01c0 -1 -1 -syscon nr __NR_audit -1 0x200015e 0x01bd -1 -1 -syscon nr __NR_auditctl -1 0x2000167 0x01c5 -1 -1 -syscon nr __NR_getaudit_addr -1 0x2000165 0x01c3 -1 -1 -syscon nr __NR_getdirentries -1 0x2000158 0x022a -1 -1 -syscon nr __NR_lio_listio -1 0x2000140 0x0140 -1 -1 -syscon nr __NR_setaudit_addr -1 0x2000166 0x01c4 -1 -1 -syscon nr __NR_getauid -1 0x2000161 0x01bf -1 -1 -syscon nr __NR_semsys -1 0x20000fb 0x00a9 -1 -1 -syscon nr __NR_auditon -1 0x200015f 0x01be -1 -1 -syscon nr __NR_msgsys -1 0x20000fc 0x00aa -1 -1 -syscon nr __NR_shmsys -1 0x20000fd 0x00ab -1 -1 -syscon nr __NR_fhstat -1 -1 0x0229 0x0126 -1 -syscon nr __NR_chflagsat -1 -1 0x021c 0x006b -1 -syscon nr __NR_profil -1 -1 0x002c 0x002c -1 -syscon nr __NR_fhstatfs -1 -1 0x022e 0x0041 -1 -syscon nr __NR_utrace -1 -1 0x014f 0x00d1 -1 -syscon nr __NR_closefrom -1 -1 0x01fd 0x011f -1 -syscon nr __NR_pthread_markcancel -1 0x200014c -1 -1 -1 -syscon nr __NR_pthread_kill -1 0x2000148 -1 -1 -1 -syscon nr __NR_pthread_fchdir -1 0x200015d -1 -1 -1 -syscon nr __NR_pthread_sigmask -1 0x2000149 -1 -1 -1 -syscon nr __NR_pthread_chdir -1 0x200015c -1 -1 -1 -syscon nr __NR_pthread_canceled -1 0x200014d -1 -1 -1 -syscon nr __NR_disable_threadsignal -1 0x200014b -1 -1 -1 -syscon nr __NR_abort_with_payload -1 0x2000209 -1 -1 -1 -syscon nr __NR_accept_nocancel -1 0x2000194 -1 -1 -1 -syscon nr __NR_access_extended -1 0x200011c -1 -1 -1 -syscon nr __NR_audit_session_join -1 0x20001ad -1 -1 -1 -syscon nr __NR_audit_session_port -1 0x20001b0 -1 -1 -1 -syscon nr __NR_audit_session_self -1 0x20001ac -1 -1 -1 -syscon nr __NR_bsdthread_create -1 0x2000168 -1 -1 -1 -syscon nr __NR_bsdthread_ctl -1 0x20001de -1 -1 -1 -syscon nr __NR_bsdthread_register -1 0x200016e -1 -1 -1 -syscon nr __NR_bsdthread_terminate -1 0x2000169 -1 -1 -1 -syscon nr __NR_change_fdguard_np -1 0x20001bc -1 -1 -1 -syscon nr __NR_chmod_extended -1 0x200011a -1 -1 -1 -syscon nr __NR_clonefileat -1 0x20001ce -1 -1 -1 -syscon nr __NR_close_nocancel -1 0x200018f -1 -1 -1 -syscon nr __NR_coalition -1 0x20001ca -1 -1 -1 -syscon nr __NR_coalition_info -1 0x20001cb -1 -1 -1 -syscon nr __NR_connect_nocancel -1 0x2000199 -1 -1 -1 -syscon nr __NR_connectx -1 0x20001bf -1 -1 -1 -syscon nr __NR_copyfile -1 0x20000e3 -1 -1 -1 -syscon nr __NR_csops -1 0x20000a9 -1 -1 -1 -syscon nr __NR_csops_audittoken -1 0x20000aa -1 -1 -1 -syscon nr __NR_csrctl -1 0x20001e3 -1 -1 -1 -syscon nr __NR_delete -1 0x20000e2 -1 -1 -1 -syscon nr __NR_disconnectx -1 0x20001c0 -1 -1 -1 -syscon nr __NR_exchangedata -1 0x20000df -1 -1 -1 -syscon nr __NR_fchmod_extended -1 0x200011b -1 -1 -1 -syscon nr __NR_fclonefileat -1 0x2000205 -1 -1 -1 -syscon nr __NR_fcntl_nocancel -1 0x2000196 -1 -1 -1 -syscon nr __NR_ffsctl -1 0x20000f5 -1 -1 -1 -syscon nr __NR_fgetattrlist -1 0x20000e4 -1 -1 -1 -syscon nr __NR_fileport_makefd -1 0x20001af -1 -1 -1 -syscon nr __NR_fileport_makeport -1 0x20001ae -1 -1 -1 -syscon nr __NR_fmount -1 0x200020e -1 -1 -1 -syscon nr __NR_fs_snapshot -1 0x2000206 -1 -1 -1 -syscon nr __NR_fsctl -1 0x20000f2 -1 -1 -1 -syscon nr __NR_fsetattrlist -1 0x20000e5 -1 -1 -1 -syscon nr __NR_fstat_extended -1 0x2000119 -1 -1 -1 -syscon nr __NR_fsync_nocancel -1 0x2000198 -1 -1 -1 -syscon nr __NR_getattrlist -1 0x20000dc -1 -1 -1 -syscon nr __NR_getattrlistat -1 0x20001dc -1 -1 -1 -syscon nr __NR_getattrlistbulk -1 0x20001cd -1 -1 -1 -syscon nr __NR_getdirentriesattr -1 0x20000de -1 -1 -1 -syscon nr __NR_gethostuuid -1 0x200008e -1 -1 -1 -syscon nr __NR_getsgroups -1 0x2000120 -1 -1 -1 -syscon nr __NR_getwgroups -1 0x2000122 -1 -1 -1 -syscon nr __NR_grab_pgo_data -1 0x20001ed -1 -1 -1 -syscon nr __NR_guarded_close_np -1 0x20001ba -1 -1 -1 -syscon nr __NR_guarded_kqueue_np -1 0x20001bb -1 -1 -1 -syscon nr __NR_guarded_open_np -1 0x20001b9 -1 -1 -1 -syscon nr __NR_guarded_pwrite_np -1 0x20001e6 -1 -1 -1 -syscon nr __NR_guarded_write_np -1 0x20001e5 -1 -1 -1 -syscon nr __NR_guarded_writev_np -1 0x20001e7 -1 -1 -1 -syscon nr __NR_identitysvc -1 0x2000125 -1 -1 -1 -syscon nr __NR_initgroups -1 0x20000f3 -1 -1 -1 -syscon nr __NR_iopolicysys -1 0x2000142 -1 -1 -1 -syscon nr __NR_kas_info -1 0x20001b7 -1 -1 -1 -syscon nr __NR_kdebug_trace -1 0x20000b3 -1 -1 -1 -syscon nr __NR_kdebug_trace_string -1 0x20000b2 -1 -1 -1 -syscon nr __NR_kdebug_typefilter -1 0x20000b1 -1 -1 -1 -syscon nr __NR_kevent_id -1 0x2000177 -1 -1 -1 -syscon nr __NR_kevent_qos -1 0x2000176 -1 -1 -1 -syscon nr __NR_ledger -1 0x2000175 -1 -1 -1 -syscon nr __NR_lstat_extended -1 0x2000156 -1 -1 -1 -syscon nr __NR_memorystatus_control -1 0x20001b8 -1 -1 -1 -syscon nr __NR_memorystatus_get_level -1 0x20001c5 -1 -1 -1 -syscon nr __NR_microstackshot -1 0x20001ec -1 -1 -1 -syscon nr __NR_mkdir_extended -1 0x2000124 -1 -1 -1 -syscon nr __NR_mkfifo_extended -1 0x2000123 -1 -1 -1 -syscon nr __NR_modwatch -1 0x20000e9 -1 -1 -1 -syscon nr __NR_mremap_encrypted -1 0x20001e9 -1 -1 -1 -syscon nr __NR_msgrcv_nocancel -1 0x20001a3 -1 -1 -1 -syscon nr __NR_msgsnd_nocancel -1 0x20001a2 -1 -1 -1 -syscon nr __NR_msync_nocancel -1 0x2000195 -1 -1 -1 -syscon nr __NR_necp_client_action -1 0x20001f6 -1 -1 -1 -syscon nr __NR_necp_match_policy -1 0x20001cc -1 -1 -1 -syscon nr __NR_necp_open -1 0x20001f5 -1 -1 -1 -syscon nr __NR_necp_session_action -1 0x200020b -1 -1 -1 -syscon nr __NR_necp_session_open -1 0x200020a -1 -1 -1 -syscon nr __NR_net_qos_guideline -1 0x200020d -1 -1 -1 -syscon nr __NR_netagent_trigger -1 0x20001ea -1 -1 -1 -syscon nr __NR_nfsclnt -1 0x20000f7 -1 -1 -1 -syscon nr __NR_open_dprotected_np -1 0x20000d8 -1 -1 -1 -syscon nr __NR_open_extended -1 0x2000115 -1 -1 -1 -syscon nr __NR_open_nocancel -1 0x200018e -1 -1 -1 -syscon nr __NR_openat_nocancel -1 0x20001d0 -1 -1 -1 -syscon nr __NR_openbyid_np -1 0x20001df -1 -1 -1 -syscon nr __NR_os_fault_with_payload -1 0x2000211 -1 -1 -1 -syscon nr __NR_peeloff -1 0x20001c1 -1 -1 -1 -syscon nr __NR_persona -1 0x20001ee -1 -1 -1 -syscon nr __NR_pid_hibernate -1 0x20001b3 -1 -1 -1 -syscon nr __NR_pid_resume -1 0x20001b2 -1 -1 -1 -syscon nr __NR_pid_shutdown_sockets -1 0x20001b4 -1 -1 -1 -syscon nr __NR_pid_suspend -1 0x20001b1 -1 -1 -1 -syscon nr __NR_poll_nocancel -1 0x20001a1 -1 -1 -1 -syscon nr __NR_pread_nocancel -1 0x200019e -1 -1 -1 -syscon nr __NR_proc_info -1 0x2000150 -1 -1 -1 -syscon nr __NR_proc_rlimit_control -1 0x20001be -1 -1 -1 -syscon nr __NR_proc_trace_log -1 0x20001dd -1 -1 -1 -syscon nr __NR_proc_uuid_policy -1 0x20001c4 -1 -1 -1 -syscon nr __NR_process_policy -1 0x2000143 -1 -1 -1 -syscon nr __NR_pselect_nocancel -1 0x200018b -1 -1 -1 -syscon nr __NR_psynch_cvbroad -1 0x200012f -1 -1 -1 -syscon nr __NR_psynch_cvclrprepost -1 0x2000138 -1 -1 -1 -syscon nr __NR_psynch_cvsignal -1 0x2000130 -1 -1 -1 -syscon nr __NR_psynch_mutexdrop -1 0x200012e -1 -1 -1 -syscon nr __NR_psynch_mutexwait -1 0x200012d -1 -1 -1 -syscon nr __NR_psynch_rw_downgrade -1 0x200012b -1 -1 -1 -syscon nr __NR_psynch_rw_longrdlock -1 0x2000129 -1 -1 -1 -syscon nr __NR_psynch_rw_rdlock -1 0x2000132 -1 -1 -1 -syscon nr __NR_psynch_rw_unlock -1 0x2000134 -1 -1 -1 -syscon nr __NR_psynch_rw_unlock2 -1 0x2000135 -1 -1 -1 -syscon nr __NR_psynch_rw_upgrade -1 0x200012c -1 -1 -1 -syscon nr __NR_psynch_rw_wrlock -1 0x2000133 -1 -1 -1 -syscon nr __NR_psynch_rw_yieldwrlock -1 0x200012a -1 -1 -1 -syscon nr __NR_pwrite_nocancel -1 0x200019f -1 -1 -1 -syscon nr __NR_read_nocancel -1 0x200018c -1 -1 -1 -syscon nr __NR_readv_nocancel -1 0x200019b -1 -1 -1 -syscon nr __NR_recvfrom_nocancel -1 0x2000193 -1 -1 -1 -syscon nr __NR_recvmsg_nocancel -1 0x2000191 -1 -1 -1 -syscon nr __NR_recvmsg_x -1 0x20001e0 -1 -1 -1 -syscon nr __NR_renameatx_np -1 0x20001e8 -1 -1 -1 -syscon nr __NR_searchfs -1 0x20000e1 -1 -1 -1 -syscon nr __NR_select_nocancel -1 0x2000197 -1 -1 -1 -syscon nr __NR_sem_close -1 0x200010d -1 -1 -1 -syscon nr __NR_sem_open -1 0x200010c -1 -1 -1 -syscon nr __NR_sem_post -1 0x2000111 -1 -1 -1 -syscon nr __NR_sem_trywait -1 0x2000110 -1 -1 -1 -syscon nr __NR_sem_unlink -1 0x200010e -1 -1 -1 -syscon nr __NR_sem_wait -1 0x200010f -1 -1 -1 -syscon nr __NR_sem_wait_nocancel -1 0x20001a4 -1 -1 -1 -syscon nr __NR_sendmsg_nocancel -1 0x2000192 -1 -1 -1 -syscon nr __NR_sendmsg_x -1 0x20001e1 -1 -1 -1 -syscon nr __NR_sendto_nocancel -1 0x200019d -1 -1 -1 -syscon nr __NR_setattrlist -1 0x20000dd -1 -1 -1 -syscon nr __NR_setattrlistat -1 0x200020c -1 -1 -1 -syscon nr __NR_setprivexec -1 0x2000098 -1 -1 -1 -syscon nr __NR_setsgroups -1 0x200011f -1 -1 -1 -syscon nr __NR_settid -1 0x200011d -1 -1 -1 -syscon nr __NR_settid_with_pid -1 0x2000137 -1 -1 -1 -syscon nr __NR_setwgroups -1 0x2000121 -1 -1 -1 -syscon nr __NR_sfi_ctl -1 0x20001c8 -1 -1 -1 -syscon nr __NR_sfi_pidctl -1 0x20001c9 -1 -1 -1 -syscon nr __NR_shared_region_check_np -1 0x2000126 -1 -1 -1 -syscon nr __NR_sigsuspend_nocancel -1 0x200019a -1 -1 -1 -syscon nr __NR_socket_delegate -1 0x20001c2 -1 -1 -1 -syscon nr __NR_stat_extended -1 0x2000155 -1 -1 -1 -syscon nr __NR_sysctlbyname -1 0x2000112 -1 -1 -1 -syscon nr __NR_system_override -1 0x20001c6 -1 -1 -1 -syscon nr __NR_telemetry -1 0x20001c3 -1 -1 -1 -syscon nr __NR_terminate_with_payload -1 0x2000208 -1 -1 -1 -syscon nr __NR_thread_selfcounts -1 0x20000ba -1 -1 -1 -syscon nr __NR_thread_selfid -1 0x2000174 -1 -1 -1 -syscon nr __NR_thread_selfusage -1 0x20001e2 -1 -1 -1 -syscon nr __NR_ulock_wait -1 0x2000203 -1 -1 -1 -syscon nr __NR_ulock_wake -1 0x2000204 -1 -1 -1 -syscon nr __NR_umask_extended -1 0x2000116 -1 -1 -1 -syscon nr __NR_usrctl -1 0x20001bd -1 -1 -1 -syscon nr __NR_vfs_purge -1 0x20001c7 -1 -1 -1 -syscon nr __NR_vm_pressure_monitor -1 0x2000128 -1 -1 -1 -syscon nr __NR_wait4_nocancel -1 0x2000190 -1 -1 -1 -syscon nr __NR_waitevent -1 0x20000e8 -1 -1 -1 -syscon nr __NR_waitid_nocancel -1 0x20001a0 -1 -1 -1 -syscon nr __NR_watchevent -1 0x20000e7 -1 -1 -1 -syscon nr __NR_work_interval_ctl -1 0x20001f3 -1 -1 -1 -syscon nr __NR_workq_kernreturn -1 0x2000170 -1 -1 -1 -syscon nr __NR_workq_open -1 0x200016f -1 -1 -1 -syscon nr __NR_write_nocancel -1 0x200018d -1 -1 -1 -syscon nr __NR_writev_nocancel -1 0x200019c -1 -1 -1 -syscon nr __NR_abort2 -1 -1 0x01cf -1 -1 -syscon nr __NR_afs3_syscall -1 -1 0x0179 -1 -1 -syscon nr __NR_bindat -1 -1 0x021a -1 -1 -syscon nr __NR_break -1 -1 0x0011 -1 -1 -syscon nr __NR_cap_enter -1 -1 0x0204 -1 -1 -syscon nr __NR_cap_fcntls_get -1 -1 0x0219 -1 -1 -syscon nr __NR_cap_fcntls_limit -1 -1 0x0218 -1 -1 -syscon nr __NR_cap_getmode -1 -1 0x0205 -1 -1 -syscon nr __NR_cap_ioctls_get -1 -1 0x0217 -1 -1 -syscon nr __NR_cap_ioctls_limit -1 -1 0x0216 -1 -1 -syscon nr __NR_cap_rights_limit -1 -1 0x0215 -1 -1 -syscon nr __NR_clock_getcpuclockid2 -1 -1 0x00f7 -1 -1 -syscon nr __NR_connectat -1 -1 0x021b -1 -1 -syscon nr __NR_cpuset -1 -1 0x01e4 -1 -1 -syscon nr __NR_cpuset_getdomain -1 -1 0x0231 -1 -1 -syscon nr __NR_cpuset_getid -1 -1 0x01e6 -1 -1 -syscon nr __NR_cpuset_setdomain -1 -1 0x0232 -1 -1 -syscon nr __NR_cpuset_setid -1 -1 0x01e5 -1 -1 -syscon nr __NR_eaccess -1 -1 0x0178 -1 -1 -syscon nr __NR_extattr_delete_fd -1 -1 0x0175 -1 -1 -syscon nr __NR_extattr_delete_file -1 -1 0x0166 -1 -1 -syscon nr __NR_extattr_delete_link -1 -1 0x019e -1 -1 -syscon nr __NR_extattr_get_fd -1 -1 0x0174 -1 -1 -syscon nr __NR_extattr_get_file -1 -1 0x0165 -1 -1 -syscon nr __NR_extattr_get_link -1 -1 0x019d -1 -1 -syscon nr __NR_extattr_list_fd -1 -1 0x01b5 -1 -1 -syscon nr __NR_extattr_list_file -1 -1 0x01b6 -1 -1 -syscon nr __NR_extattr_list_link -1 -1 0x01b7 -1 -1 -syscon nr __NR_extattr_set_fd -1 -1 0x0173 -1 -1 -syscon nr __NR_extattr_set_file -1 -1 0x0164 -1 -1 -syscon nr __NR_extattr_set_link -1 -1 0x019c -1 -1 -syscon nr __NR_extattrctl -1 -1 0x0163 -1 -1 -syscon nr __NR_fexecve -1 -1 0x01ec -1 -1 -syscon nr __NR_ffclock_getcounter -1 -1 0x00f1 -1 -1 -syscon nr __NR_ffclock_getestimate -1 -1 0x00f3 -1 -1 -syscon nr __NR_ffclock_setestimate -1 -1 0x00f2 -1 -1 -syscon nr __NR_fhlink -1 -1 0x0235 -1 -1 -syscon nr __NR_fhlinkat -1 -1 0x0236 -1 -1 -syscon nr __NR_fhreadlink -1 -1 0x0237 -1 -1 -syscon nr __NR_getaudit -1 -1 0x01c1 -1 -1 -syscon nr __NR_getcontext -1 -1 0x01a5 -1 -1 -syscon nr __NR_getfhat -1 -1 0x0234 -1 -1 -syscon nr __NR_gethostid -1 -1 0x008e -1 -1 -syscon nr __NR_getkerninfo -1 -1 0x003f -1 -1 -syscon nr __NR_getloginclass -1 -1 0x020b -1 -1 -syscon nr __NR_getpagesize -1 -1 0x0040 -1 -1 -syscon nr __NR_gssd_syscall -1 -1 0x01f9 -1 -1 -syscon nr __NR_jail -1 -1 0x0152 -1 -1 -syscon nr __NR_jail_attach -1 -1 0x01b4 -1 -1 -syscon nr __NR_jail_get -1 -1 0x01fa -1 -1 -syscon nr __NR_jail_remove -1 -1 0x01fc -1 -1 -syscon nr __NR_jail_set -1 -1 0x01fb -1 -1 -syscon nr __NR_kenv -1 -1 0x0186 -1 -1 -syscon nr __NR_kldfind -1 -1 0x0132 -1 -1 -syscon nr __NR_kldfirstmod -1 -1 0x0135 -1 -1 -syscon nr __NR_kldload -1 -1 0x0130 -1 -1 -syscon nr __NR_kldnext -1 -1 0x0133 -1 -1 -syscon nr __NR_kldstat -1 -1 0x0134 -1 -1 -syscon nr __NR_kldsym -1 -1 0x0151 -1 -1 -syscon nr __NR_kldunload -1 -1 0x0131 -1 -1 -syscon nr __NR_kldunloadf -1 -1 0x01bc -1 -1 -syscon nr __NR_kmq_notify -1 -1 0x01cd -1 -1 -syscon nr __NR_kmq_setattr -1 -1 0x01ca -1 -1 -syscon nr __NR_kmq_timedreceive -1 -1 0x01cb -1 -1 -syscon nr __NR_kmq_timedsend -1 -1 0x01cc -1 -1 -syscon nr __NR_kmq_unlink -1 -1 0x01ce -1 -1 -syscon nr __NR_ksem_close -1 -1 0x0190 -1 -1 -syscon nr __NR_ksem_destroy -1 -1 0x0198 -1 -1 -syscon nr __NR_ksem_getvalue -1 -1 0x0197 -1 -1 -syscon nr __NR_ksem_init -1 -1 0x0194 -1 -1 -syscon nr __NR_ksem_open -1 -1 0x0195 -1 -1 -syscon nr __NR_ksem_post -1 -1 0x0191 -1 -1 -syscon nr __NR_ksem_timedwait -1 -1 0x01b9 -1 -1 -syscon nr __NR_ksem_trywait -1 -1 0x0193 -1 -1 -syscon nr __NR_ksem_unlink -1 -1 0x0196 -1 -1 -syscon nr __NR_ksem_wait -1 -1 0x0192 -1 -1 -syscon nr __NR_ktimer_create -1 -1 0x00eb -1 -1 -syscon nr __NR_ktimer_delete -1 -1 0x00ec -1 -1 -syscon nr __NR_ktimer_getoverrun -1 -1 0x00ef -1 -1 -syscon nr __NR_ktimer_gettime -1 -1 0x00ee -1 -1 -syscon nr __NR_ktimer_settime -1 -1 0x00ed -1 -1 -syscon nr __NR_lchflags -1 -1 0x0187 -1 -1 -syscon nr __NR_lchmod -1 -1 0x0112 -1 -1 -syscon nr __NR_lgetfh -1 -1 0x00a0 -1 -1 -syscon nr __NR_lpathconf -1 -1 0x0201 -1 -1 -syscon nr __NR_lutimes -1 -1 0x0114 -1 -1 -syscon nr __NR_mac_syscall -1 -1 0x018a -1 -1 -syscon nr __NR_modfind -1 -1 0x012f -1 -1 -syscon nr __NR_modfnext -1 -1 0x012e -1 -1 -syscon nr __NR_modnext -1 -1 0x012c -1 -1 -syscon nr __NR_modstat -1 -1 0x012d -1 -1 -syscon nr __NR_nfstat -1 -1 0x0117 -1 -1 -syscon nr __NR_nlm_syscall -1 -1 0x009a -1 -1 -syscon nr __NR_nlstat -1 -1 0x0118 -1 -1 -syscon nr __NR_nmount -1 -1 0x017a -1 -1 -syscon nr __NR_nnpfs_syscall -1 -1 0x0153 -1 -1 -syscon nr __NR_nstat -1 -1 0x0116 -1 -1 -syscon nr __NR_pdfork -1 -1 0x0206 -1 -1 -syscon nr __NR_pdgetpid -1 -1 0x0208 -1 -1 -syscon nr __NR_pdkill -1 -1 0x0207 -1 -1 -syscon nr __NR_posix_openpt -1 -1 0x01f8 -1 -1 -syscon nr __NR_procctl -1 -1 0x0220 -1 -1 -syscon nr __NR_psynch_cvwait -1 0x2000131 -1 -1 -1 -syscon nr __NR_quota -1 -1 0x0095 -1 -1 -syscon nr __NR_rctl_add_rule -1 -1 0x0210 -1 -1 -syscon nr __NR_rctl_get_limits -1 -1 0x020f -1 -1 -syscon nr __NR_rctl_get_racct -1 -1 0x020d -1 -1 -syscon nr __NR_rctl_get_rules -1 -1 0x020e -1 -1 -syscon nr __NR_rctl_remove_rule -1 -1 0x0211 -1 -1 -syscon nr __NR_recv -1 -1 0x0066 -1 -1 -syscon nr __NR_rfork -1 -1 0x00fb -1 -1 -syscon nr __NR_rtprio -1 -1 0x00a6 -1 -1 -syscon nr __NR_rtprio_thread -1 -1 0x01d2 -1 -1 -syscon nr __NR_send -1 -1 0x0065 -1 -1 -syscon nr __NR_setaudit -1 -1 0x01c2 -1 -1 -syscon nr __NR_setcontext -1 -1 0x01a6 -1 -1 -syscon nr __NR_setfib -1 -1 0x00af -1 -1 -syscon nr __NR_sethostid -1 -1 0x008f -1 -1 -syscon nr __NR_setloginclass -1 -1 0x020c -1 -1 -syscon nr __NR_sigblock -1 -1 0x006d -1 -1 -syscon nr __NR_sigqueue -1 -1 0x01c8 -1 -1 -syscon nr __NR_sigsetmask -1 -1 0x006e -1 -1 -syscon nr __NR_sigstack -1 -1 0x0070 -1 -1 -syscon nr __NR_sigvec -1 -1 0x006c -1 -1 -syscon nr __NR_sigwaitinfo -1 -1 0x015a -1 -1 -syscon nr __NR_sstk -1 -1 0x0046 -1 -1 -syscon nr __NR_swapcontext -1 -1 0x01a7 -1 -1 -syscon nr __NR_thr_create -1 -1 0x01ae -1 -1 -syscon nr __NR_thr_exit -1 -1 0x01af -1 -1 -syscon nr __NR_thr_kill -1 -1 0x01b1 -1 -1 -syscon nr __NR_thr_kill2 -1 -1 0x01e1 -1 -1 -syscon nr __NR_thr_new -1 -1 0x01c7 -1 -1 -syscon nr __NR_thr_self -1 -1 0x01b0 -1 -1 -syscon nr __NR_thr_set_name -1 -1 0x01d0 -1 -1 -syscon nr __NR_thr_suspend -1 -1 0x01ba -1 -1 -syscon nr __NR_thr_wake -1 -1 0x01bb -1 -1 -syscon nr __NR_uuidgen -1 -1 0x0188 -1 -1 -syscon nr __NR_vadvise -1 -1 0x0048 -1 -1 -syscon nr __NR_wait -1 -1 0x0054 -1 -1 -syscon nr __NR_wait6 -1 -1 0x0214 -1 -1 -syscon nr __NR_yield -1 -1 0x0141 -1 -1 -syscon nr __NR_tfork -1 -1 -1 0x0008 -1 -syscon nr __NR_thrsleep -1 -1 -1 0x005e -1 -syscon nr __NR_thrwakeup -1 -1 -1 0x012d -1 -syscon nr __NR_threxit -1 -1 -1 0x012e -1 -syscon nr __NR_thrsigdivert -1 -1 -1 0x012f -1 -syscon nr __NR_set_tcb -1 -1 -1 0x0149 -1 -syscon nr __NR_get_tcb -1 -1 -1 0x014a -1 -syscon nr __NR_adjfreq -1 -1 -1 0x0131 -1 -syscon nr __NR_getdtablecount -1 -1 -1 0x0012 -1 -syscon nr __NR_getlogin_r -1 -1 -1 0x008d -1 -syscon nr __NR_getrtable -1 -1 -1 0x0137 -1 -syscon nr __NR_getthrid -1 -1 -1 0x012b -1 -syscon nr __NR_kbind -1 -1 -1 0x0056 -1 -syscon nr __NR_mquery -1 -1 -1 0x011e -1 -syscon nr __NR_obreak -1 -1 -1 0x0011 -1 -syscon nr __NR_sendsyslog -1 -1 -1 0x0070 -1 -syscon nr __NR_setrtable -1 -1 -1 0x0136 -1 -syscon nr __NR_swapctl -1 -1 -1 0x00c1 -1 -syscon nr __NR_thrkill -1 -1 -1 0x0077 -1 -syscon nr __NR_unveil -1 -1 -1 0x0072 -1 -syscon nr __NR_mac_get_link -1 0x2000180 0x019a -1 -1 -syscon nr __NR_mac_set_link -1 0x2000181 0x019b -1 -1 -syscon nr __NR_mac_get_fd -1 0x2000184 0x0182 -1 -1 -syscon nr __NR_mac_get_file -1 0x200017e 0x0183 -1 -1 -syscon nr __NR_mac_get_proc -1 0x2000182 0x0180 -1 -1 -syscon nr __NR_mac_set_fd -1 0x2000185 0x0184 -1 -1 -syscon nr __NR_mac_get_pid -1 0x2000186 0x0199 -1 -1 -syscon nr __NR_mac_set_proc -1 0x2000183 0x0181 -1 -1 -syscon nr __NR_mac_set_file -1 0x200017f 0x0185 -1 -1 -syscon nr __NR_mac_execve -1 0x200017c 0x019f -1 -1 -syscon nr __NR_acl_get_link -1 -1 0x01a9 -1 -1 -syscon nr __NR_sigwait_nocancel -1 0x20001a6 -1 -1 -1 -syscon nr __NR_cap_rights_get -1 -1 0x0203 -1 -1 -syscon nr __NR_semwait_signal -1 0x200014e -1 -1 -1 -syscon nr __NR_acl_set_link -1 -1 0x01aa -1 -1 -syscon nr __NR_acl_set_fd -1 -1 0x015e -1 -1 -syscon nr __NR_old_semwait_signal -1 0x2000172 -1 -1 -1 -syscon nr __NR_setugid -1 -1 0x0176 -1 -1 -syscon nr __NR_acl_aclcheck_fd -1 -1 0x0162 -1 -1 -syscon nr __NR_acl_get_fd -1 -1 0x015d -1 -1 -syscon nr __NR___sysctl -1 -1 0x00ca -1 -1 -syscon nr __NR_mac_getfsstat -1 0x20001aa -1 -1 -1 -syscon nr __NR_mac_get_mount -1 0x20001a9 -1 -1 -1 -syscon nr __NR_acl_delete_link -1 -1 0x01ab -1 -1 -syscon nr __NR_mac_mount -1 0x20001a8 -1 -1 -1 -syscon nr __NR_acl_get_file -1 -1 0x015b -1 -1 -syscon nr __NR_acl_aclcheck_file -1 -1 0x0161 -1 -1 -syscon nr __NR_acl_delete_fd -1 -1 0x0160 -1 -1 -syscon nr __NR_acl_aclcheck_link -1 -1 0x01ac -1 -1 -syscon nr __NR___mac_syscall -1 0x200017d -1 -1 -1 -syscon nr __NR_acl_set_file -1 -1 0x015c -1 -1 -syscon nr __NR_acl_delete_file -1 -1 0x015f -1 -1 -syscon nr __NR_syscall -1 -1 -1 0x00c6 -1 -syscon nr __NR__umtx_op -1 -1 0x01c6 -1 -1 -syscon nr __NR_semwait_signal_nocancel -1 0x20001a7 -1 -1 -1 -syscon nr __NR_old_semwait_signal_nocancel -1 0x2000173 -1 -1 -1 -syscon nr __NR_sctp_peeloff -1 -1 0x01d7 -1 -1 -syscon nr __NR_sctp_generic_recvmsg -1 -1 0x01da -1 -1 -syscon nr __NR_sctp_generic_sendmsg -1 -1 0x01d8 -1 -1 -syscon nr __NR_sctp_generic_sendmsg_iov -1 -1 0x01d9 -1 -1 -syscon nr __NR_shared_region_map_and_slide_np -1 0x20001b6 -1 -1 -1 -syscon nr __NR_guarded_open_dprotected_np -1 0x20001e4 -1 -1 -1 -syscon nr __NR_stack_snapshot_with_config -1 0x20001eb -1 -1 -1 +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX +syscon nr __NR_exit 0x003c 0x2000001 0x0001 0x0001 0x001 -1 +syscon nr __NR_exit_group 0x00e7 0x2000001 0x0001 0x0001 0x001 -1 +syscon nr __NR_read 0x0000 0x2000003 0x0003 0x0003 0x003 -1 +syscon nr __NR_write 0x0001 0x2000004 0x0004 0x0004 0x004 -1 +syscon nr __NR_open 0x0002 0x2000005 0x0005 0x0005 0x005 -1 +syscon nr __NR_close 0x0003 0x2000006 0x0006 0x0006 0x006 -1 +syscon nr __NR_stat 0x0004 0x2000152 -1 0x0026 0x1b7 -1 +syscon nr __NR_fstat 0x0005 0x2000153 0x0227 0x0035 0x1b8 -1 +syscon nr __NR_lstat 0x0006 0x2000154 0x0028 0x0028 0x1b9 -1 +syscon nr __NR_poll 0x0007 0x20000e6 0x00d1 0x00fc 0x0d1 -1 +syscon nr __NR_ppoll 0x010f -1 0x0221 0x006d -1 -1 +syscon nr __NR_lseek 0x0008 0x20000c7 0x01de 0x00c7 0x0c7 -1 +syscon nr __NR_mmap 0x0009 0x20000c5 0x01dd 0x00c5 0x0c5 -1 +syscon nr __NR_msync 0x001a 0x2000041 0x0041 0x0100 0x115 -1 +syscon nr __NR_mprotect 0x000a 0x200004a 0x004a 0x004a 0x04a -1 +syscon nr __NR_munmap 0x000b 0x2000049 0x0049 0x0049 0x049 -1 +syscon nr __NR_sigaction 0x000d 0x200002e 0x01a0 0x002e -1 -1 +syscon nr __NR_sigprocmask 0x000e 0x2000030 0x0154 0x0030 0x125 -1 +syscon nr __NR_ioctl 0x0010 0x2000036 0x0036 0x0036 0x036 -1 +syscon nr __NR_pread 0x0011 0x2000099 0x01db 0x00ad 0x0ad -1 +syscon nr __NR_pwrite 0x0012 0x200009a 0x01dc 0x00ae 0x0ae -1 +syscon nr __NR_readv 0x0013 0x2000078 0x0078 0x0078 0x078 -1 +syscon nr __NR_writev 0x0014 0x2000079 0x0079 0x0079 0x079 -1 +syscon nr __NR_access 0x0015 0x2000021 0x0021 0x0021 0x021 -1 +syscon nr __NR_pipe 0x0016 0x200002a 0x021e 0x0107 0x02a -1 +syscon nr __NR_select 0x0017 0x200005d 0x005d 0x0047 0x1a1 -1 +syscon nr __NR_pselect -1 0x200018a 0x020a 0x006e 0x1b4 -1 +syscon nr __NR_pselect6 0x010e -1 -1 -1 -1 -1 +syscon nr __NR_sched_yield 0x0018 0x010003c 0x014b 0x012a 0x15e -1 +syscon nr __NR_mremap 0x0019 -1 -1 -1 0x19b -1 +syscon nr __NR_mincore 0x001b 0x200004e 0x004e 0x004e 0x04e -1 +syscon nr __NR_madvise 0x001c 0x200004b 0x004b 0x004b 0x04b -1 +syscon nr __NR_shmget 0x001d 0x2000109 0x00e7 0x0121 0x0e7 -1 +syscon nr __NR_shmat 0x001e 0x2000106 0x00e4 0x00e4 0x0e4 -1 +syscon nr __NR_shmctl 0x001f 0x2000107 0x0200 0x0128 0x1bb -1 +syscon nr __NR_dup 0x0020 0x2000029 0x0029 0x0029 0x029 -1 +syscon nr __NR_dup2 0x0021 0x200005a 0x005a 0x005a 0x05a -1 +syscon nr __NR_pause 0x0022 -1 -1 -1 -1 -1 +syscon nr __NR_nanosleep 0x0023 -1 0x00f0 0x005b 0x1ae -1 +syscon nr __NR_getitimer 0x0024 0x2000056 0x0056 0x0046 0x1aa -1 +syscon nr __NR_setitimer 0x0026 0x2000053 0x0053 0x0045 0x1a9 -1 +syscon nr __NR_alarm 0x0025 -1 -1 -1 -1 -1 +syscon nr __NR_getpid 0x0027 0x2000014 0x0014 0x0014 -1 -1 +syscon nr __NR_sendfile 0x0028 0x2000151 0x0189 -1 -1 -1 +syscon nr __NR_socket 0x0029 0x2000061 0x0061 0x0061 0x18a -1 +syscon nr __NR_connect 0x002a 0x2000062 0x0062 0x0062 0x062 -1 +syscon nr __NR_accept 0x002b 0x200001e 0x0063 0x001e 0x01e -1 +syscon nr __NR_sendto 0x002c 0x2000085 0x0085 0x0085 0x085 -1 +syscon nr __NR_recvfrom 0x002d 0x200001d 0x001d 0x001d 0x01d -1 +syscon nr __NR_sendmsg 0x002e 0x200001c 0x001c 0x001c 0x01c -1 +syscon nr __NR_recvmsg 0x002f 0x200001b 0x001b 0x001b 0x01b -1 +syscon nr __NR_shutdown 0x0030 0x2000086 0x0086 0x0086 0x086 -1 +syscon nr __NR_bind 0x0031 0x2000068 0x0068 0x0068 0x068 -1 +syscon nr __NR_listen 0x0032 0x200006a 0x006a 0x006a 0x06a -1 +syscon nr __NR_getsockname 0x0033 0x2000020 0x0020 0x0020 0x020 -1 +syscon nr __NR_getpeername 0x0034 0x200001f 0x008d 0x001f 0x01f -1 +syscon nr __NR_socketpair 0x0035 0x2000087 0x0087 0x0087 0x087 -1 +syscon nr __NR_setsockopt 0x0036 0x2000069 0x0069 0x0069 0x069 -1 +syscon nr __NR_getsockopt 0x0037 0x2000076 0x0076 0x0076 0x076 -1 +syscon nr __NR_fork 0x0039 0x2000002 0x0002 0x0002 0x002 -1 +syscon nr __NR_vfork 0x003a 0x2000042 0x0042 0x0042 0x042 -1 +syscon nr __NR_posix_spawn -1 0x20000f4 -1 -1 -1 -1 +syscon nr __NR_execve 0x003b 0x200003b 0x003b 0x003b 0x03b -1 # DING DING DING DING DING +syscon nr __NR_wait4 0x003d 0x2000007 0x0007 0x000b 0x1c1 -1 +syscon nr __NR_kill 0x003e 0x2000025 0x0025 0x007a 0x025 -1 +syscon nr __NR_killpg -1 -1 0x0092 -1 -1 -1 +syscon nr __NR_clone 0x0038 -1 -1 -1 -1 -1 +syscon nr __NR_tkill 0x00c8 -1 -1 -1 -1 -1 +syscon nr __NR_futex 0x00ca -1 -1 0x0053 -1 -1 +syscon nr __NR_set_robust_list 0x0111 -1 -1 -1 -1 -1 +syscon nr __NR_get_robust_list 0x0112 -1 -1 -1 -1 -1 +syscon nr __NR_uname 0x003f -1 0x00a4 -1 -1 -1 +syscon nr __NR_semget 0x0040 0x20000ff 0x00dd 0x00dd 0x0dd -1 +syscon nr __NR_semop 0x0041 0x2000100 0x00de 0x0122 0x0de -1 +syscon nr __NR_semctl 0x0042 0x20000fe 0x01fe 0x0127 -1 -1 +syscon nr __NR_shmdt 0x0043 0x2000108 0x00e6 0x00e6 0x0e6 -1 +syscon nr __NR_msgget 0x0044 0x2000103 0x00e1 0x00e1 0x0e1 -1 +syscon nr __NR_msgsnd 0x0045 0x2000104 0x00e2 0x00e2 0x0e2 -1 +syscon nr __NR_msgrcv 0x0046 0x2000105 0x00e3 0x00e3 0x0e3 -1 +syscon nr __NR_msgctl 0x0047 0x2000102 0x01ff 0x0129 0x1bc -1 +syscon nr __NR_fcntl 0x0048 0x200005c 0x005c 0x005c 0x05c -1 +syscon nr __NR_flock 0x0049 0x2000083 0x0083 0x0083 0x083 -1 +syscon nr __NR_fsync 0x004a 0x200005f 0x005f 0x005f 0x05f -1 +syscon nr __NR_fdatasync 0x004b 0x20000bb 0x0226 0x005f 0x0f1 -1 +syscon nr __NR_truncate 0x004c 0x20000c8 0x01df 0x00c8 0x0c8 -1 +syscon nr __NR_ftruncate 0x004d 0x20000c9 0x01e0 0x00c9 0x0c9 -1 +syscon nr __NR_getcwd 0x004f -1 0x0146 0x0130 -1 -1 +syscon nr __NR_chdir 0x0050 0x200000c 0x000c 0x000c 0x00c -1 +syscon nr __NR_fchdir 0x0051 0x200000d 0x000d 0x000d 0x00d -1 +syscon nr __NR_rename 0x0052 0x2000080 0x0080 0x0080 0x080 -1 +syscon nr __NR_mkdir 0x0053 0x2000088 0x0088 0x0088 0x088 -1 +syscon nr __NR_rmdir 0x0054 0x2000089 0x0089 0x0089 0x089 -1 +syscon nr __NR_creat 0x0055 -1 0x0008 -1 -1 -1 +syscon nr __NR_link 0x0056 0x2000009 0x0009 0x0009 0x009 -1 +syscon nr __NR_unlink 0x0057 0x200000a 0x000a 0x000a 0x00a -1 +syscon nr __NR_symlink 0x0058 0x2000039 0x0039 0x0039 0x039 -1 +syscon nr __NR_readlink 0x0059 0x200003a 0x003a 0x003a 0x03a -1 +syscon nr __NR_chmod 0x005a 0x200000f 0x000f 0x000f 0x00f -1 +syscon nr __NR_fchmod 0x005b 0x200007c 0x007c 0x007c 0x07c -1 +syscon nr __NR_chown 0x005c 0x2000010 0x0010 0x0010 0x010 -1 +syscon nr __NR_fchown 0x005d 0x200007b 0x007b 0x007b 0x07b -1 +syscon nr __NR_lchown 0x005e 0x200016c 0x00fe 0x00fe 0x113 -1 +syscon nr __NR_umask 0x005f 0x200003c 0x003c 0x003c 0x03c -1 +syscon nr __NR_gettimeofday 0x0060 0x2000074 0x0074 0x0043 0x1a2 -1 +syscon nr __NR_getrlimit 0x0061 0x20000c2 0x00c2 0x00c2 0x0c2 -1 +syscon nr __NR_getrusage 0x0062 0x2000075 0x0075 0x0013 0x1bd -1 +syscon nr __NR_sysinfo 0x0063 -1 -1 -1 -1 -1 +syscon nr __NR_times 0x0064 -1 -1 -1 -1 -1 +syscon nr __NR_ptrace 0x0065 0x200001a 0x001a 0x001a 0x01a -1 +syscon nr __NR_syslog 0x0067 -1 -1 -1 -1 -1 +syscon nr __NR_getuid 0x0066 0x2000018 0x0018 0x0018 -1 -1 +syscon nr __NR_getgid 0x0068 0x200002f 0x002f 0x002f -1 -1 +syscon nr __NR_getppid 0x006e 0x2000027 0x0027 0x0027 -1 -1 +syscon nr __NR_getpgrp 0x006f 0x2000051 0x0051 0x0051 0x051 -1 +syscon nr __NR_setsid 0x0070 0x2000093 0x0093 0x0093 0x093 -1 +syscon nr __NR_getsid 0x007c 0x2000136 0x0136 0x00ff 0x11e -1 +syscon nr __NR_getpgid 0x0079 0x2000097 0x00cf 0x00cf 0x0cf -1 +syscon nr __NR_setpgid 0x006d 0x2000052 0x0052 0x0052 0x052 -1 +syscon nr __NR_geteuid 0x006b 0x2000019 0x0019 0x0019 -1 -1 +syscon nr __NR_getegid 0x006c 0x200002b 0x002b 0x002b -1 -1 +syscon nr __NR_getgroups 0x0073 0x200004f 0x004f 0x004f 0x04f -1 +syscon nr __NR_setgroups 0x0074 0x2000050 0x0050 0x0050 0x050 -1 +syscon nr __NR_setreuid 0x0071 0x200007e 0x007e 0x007e 0x07e -1 +syscon nr __NR_setregid 0x0072 0x200007f 0x007f 0x007f 0x07f -1 +syscon nr __NR_setuid 0x0069 0x2000017 0x0017 0x0017 0x017 -1 +syscon nr __NR_setgid 0x006a 0x20000b5 0x00b5 0x00b5 0x0b5 -1 +syscon nr __NR_setresuid 0x0075 -1 0x0137 0x011a -1 -1 +syscon nr __NR_setresgid 0x0077 -1 0x0138 0x011c -1 -1 +syscon nr __NR_getresuid 0x0076 -1 0x0168 0x0119 -1 -1 +syscon nr __NR_getresgid 0x0078 -1 0x0169 0x011b -1 -1 +syscon nr __NR_sigpending 0x007f 0x2000034 0x0034 0x0034 0x124 -1 +syscon nr __NR_sigsuspend 0x0082 0x200006f 0x0155 0x006f 0x126 -1 +syscon nr __NR_sigaltstack 0x0083 0x2000035 0x0035 0x0120 0x119 -1 +syscon nr __NR_mknod 0x0085 0x200000e 0x000e 0x000e 0x1c2 -1 +syscon nr __NR_mknodat 0x0103 -1 0x22ff 0x0140 0x1cc -1 +syscon nr __NR_mkfifo -1 0x2000084 0x0084 0x0084 0x084 -1 +syscon nr __NR_mkfifoat -1 -1 0x01f1 0x013f 0x1cb -1 +syscon nr __NR_statfs 0x0089 0x2000159 0x022b 0x003f -1 -1 +syscon nr __NR_fstatfs 0x008a 0x200015a 0x022c 0x0040 -1 -1 +syscon nr __NR_getpriority 0x008c 0x2000064 0x0064 0x0064 0x064 -1 +syscon nr __NR_setpriority 0x008d 0x2000060 0x0060 0x0060 0x060 -1 +syscon nr __NR_mlock 0x0095 0x20000cb 0x00cb 0x00cb 0x0cb -1 +syscon nr __NR_munlock 0x0096 0x20000cc 0x00cc 0x00cc 0x0cc -1 +syscon nr __NR_mlockall 0x0097 0x2000144 0x0144 0x010f 0x0f2 -1 +syscon nr __NR_munlockall 0x0098 0x2000145 0x0145 0x0110 0x0f3 -1 +syscon nr __NR_setrlimit 0x00a0 0x20000c3 0x00c3 0x00c3 0x0c3 -1 +syscon nr __NR_chroot 0x00a1 0x200003d 0x003d 0x003d 0x03d -1 +syscon nr __NR_sync 0x00a2 0x2000024 0x0024 0x0024 -1 -1 +syscon nr __NR_acct 0x00a3 0x2000033 0x0033 0x0033 0x033 -1 +syscon nr __NR_settimeofday 0x00a4 0x200007a 0x007a 0x0044 0x1a3 -1 +syscon nr __NR_mount 0x00a5 0x20000a7 0x0015 0x0015 0x19a -1 +syscon nr __NR_reboot 0x00a9 0x2000037 0x0037 0x0037 0x0d0 -1 +syscon nr __NR_quotactl 0x00b3 0x20000a5 0x0094 0x0094 -1 -1 +syscon nr __NR_setfsuid 0x007a -1 -1 -1 -1 -1 +syscon nr __NR_setfsgid 0x007b -1 -1 -1 -1 -1 +syscon nr __NR_capget 0x007d -1 -1 -1 -1 -1 +syscon nr __NR_capset 0x007e -1 -1 -1 -1 -1 +syscon nr __NR_sigtimedwait 0x0080 -1 0x0159 -1 -1 -1 +syscon nr __NR_rt_sigqueueinfo 0x0081 -1 -1 -1 -1 -1 +syscon nr __NR_personality 0x0087 -1 -1 -1 -1 -1 +syscon nr __NR_ustat 0x0088 -1 -1 -1 -1 -1 +syscon nr __NR_sysfs 0x008b -1 -1 -1 -1 -1 +syscon nr __NR_sched_setparam 0x008e -1 0x0147 -1 -1 -1 +syscon nr __NR_sched_getparam 0x008f -1 0x0148 -1 -1 -1 +syscon nr __NR_sched_setscheduler 0x0090 -1 0x0149 -1 -1 -1 +syscon nr __NR_sched_getscheduler 0x0091 -1 0x014a -1 -1 -1 +syscon nr __NR_sched_get_priority_max 0x0092 -1 0x014c -1 -1 -1 +syscon nr __NR_sched_get_priority_min 0x0093 -1 0x014d -1 -1 -1 +syscon nr __NR_sched_rr_get_interval 0x0094 -1 0x014e -1 -1 -1 +syscon nr __NR_vhangup 0x0099 -1 -1 -1 -1 -1 +syscon nr __NR_modify_ldt 0x009a -1 -1 -1 -1 -1 +syscon nr __NR_pivot_root 0x009b -1 -1 -1 -1 -1 +syscon nr __NR__sysctl 0x009c -1 -1 -1 -1 -1 +syscon nr __NR_prctl 0x009d -1 -1 -1 -1 -1 +syscon nr __NR_arch_prctl 0x009e -1 0x00a5 0x00a5 -1 -1 +syscon nr __NR_adjtimex 0x009f -1 -1 -1 -1 -1 +syscon nr __NR_umount2 0x00a6 -1 -1 -1 -1 -1 +syscon nr __NR_swapon 0x00a7 0x2000055 0x0055 -1 -1 -1 +syscon nr __NR_swapoff 0x00a8 -1 0x01a8 -1 -1 -1 +syscon nr __NR_sethostname 0x00aa -1 0x0058 -1 -1 -1 +syscon nr __NR_setdomainname 0x00ab -1 0x00a3 -1 -1 -1 +syscon nr __NR_iopl 0x00ac -1 -1 -1 -1 -1 +syscon nr __NR_ioperm 0x00ad -1 -1 -1 -1 -1 +syscon nr __NR_init_module 0x00af -1 -1 -1 -1 -1 +syscon nr __NR_delete_module 0x00b0 -1 -1 -1 -1 -1 +syscon nr __NR_gettid 0x00ba 0x200011e -1 -1 -1 -1 +syscon nr __NR_readahead 0x00bb -1 -1 -1 -1 -1 +syscon nr __NR_setxattr 0x00bc 0x20000ec -1 -1 0x177 -1 +syscon nr __NR_fsetxattr 0x00be 0x20000ed -1 -1 0x179 -1 +syscon nr __NR_getxattr 0x00bf 0x20000ea -1 -1 0x17a -1 +syscon nr __NR_fgetxattr 0x00c1 0x20000eb -1 -1 0x17c -1 +syscon nr __NR_listxattr 0x00c2 0x20000f0 -1 -1 0x17d -1 +syscon nr __NR_flistxattr 0x00c4 0x20000f1 -1 -1 0x17f -1 +syscon nr __NR_removexattr 0x00c5 0x20000ee -1 -1 0x180 -1 +syscon nr __NR_fremovexattr 0x00c7 0x20000ef -1 -1 0x182 -1 +syscon nr __NR_lsetxattr 0x00bd -1 -1 -1 0x178 -1 +syscon nr __NR_lgetxattr 0x00c0 -1 -1 -1 0x17b -1 +syscon nr __NR_llistxattr 0x00c3 -1 -1 -1 0x17e -1 +syscon nr __NR_lremovexattr 0x00c6 -1 -1 -1 0x181 -1 +syscon nr __NR_sched_setaffinity 0x00cb -1 -1 -1 -1 -1 +syscon nr __NR_sched_getaffinity 0x00cc -1 -1 -1 -1 -1 +syscon nr __NR_cpuset_getaffinity -1 -1 0x01e7 -1 -1 -1 +syscon nr __NR_cpuset_setaffinity -1 -1 0x01e8 -1 -1 -1 +syscon nr __NR_io_setup 0x00ce -1 -1 -1 -1 -1 +syscon nr __NR_io_destroy 0x00cf -1 -1 -1 -1 -1 +syscon nr __NR_io_getevents 0x00d0 -1 -1 -1 -1 -1 +syscon nr __NR_io_submit 0x00d1 -1 -1 -1 -1 -1 +syscon nr __NR_io_cancel 0x00d2 -1 -1 -1 -1 -1 +syscon nr __NR_lookup_dcookie 0x00d4 -1 -1 -1 -1 -1 +syscon nr __NR_epoll_create 0x00d5 -1 -1 -1 -1 -1 +syscon nr __NR_epoll_wait 0x00e8 -1 -1 -1 -1 -1 +syscon nr __NR_epoll_ctl 0x00e9 -1 -1 -1 -1 -1 +syscon nr __NR_getdents 0x00d9 -1 0x0110 0x0063 0x186 -1 +syscon nr __NR_set_tid_address 0x00da -1 -1 -1 -1 -1 +syscon nr __NR_restart_syscall 0x00db -1 -1 -1 -1 -1 +syscon nr __NR_semtimedop 0x00dc -1 -1 -1 -1 -1 +syscon nr __NR_fadvise 0x00dd -1 0x0213 -1 -1 -1 +syscon nr __NR_timer_create 0x00de -1 -1 -1 0x0eb -1 +syscon nr __NR_timer_settime 0x00df -1 -1 -1 0x1be -1 +syscon nr __NR_timer_gettime 0x00e0 -1 -1 -1 0x1bf -1 +syscon nr __NR_timer_getoverrun 0x00e1 -1 -1 -1 0x0ef -1 +syscon nr __NR_timer_delete 0x00e2 -1 -1 -1 0x0ec -1 +syscon nr __NR_clock_settime 0x00e3 -1 0x00e9 0x0058 0x1ac -1 +syscon nr __NR_clock_gettime 0x00e4 -1 0x00e8 0x0057 0x1ab -1 +syscon nr __NR_clock_getres 0x00e5 -1 0x00ea 0x0059 0x1ad -1 +syscon nr __NR_clock_nanosleep 0x00e6 -1 0x00f4 -1 -1 -1 +syscon nr __NR_tgkill 0x00ea -1 -1 -1 -1 -1 +syscon nr __NR_mbind 0x00ed -1 -1 -1 -1 -1 +syscon nr __NR_set_mempolicy 0x00ee -1 -1 -1 -1 -1 +syscon nr __NR_get_mempolicy 0x00ef -1 -1 -1 -1 -1 +syscon nr __NR_mq_open 0x00f0 -1 -1 -1 0x101 -1 +syscon nr __NR_mq_unlink 0x00f1 -1 -1 -1 0x103 -1 +syscon nr __NR_mq_timedsend 0x00f2 -1 -1 -1 0x1b0 -1 +syscon nr __NR_mq_timedreceive 0x00f3 -1 -1 -1 0x1b1 -1 +syscon nr __NR_mq_notify 0x00f4 -1 -1 -1 0x106 -1 +syscon nr __NR_mq_getsetattr 0x00f5 -1 -1 -1 -1 -1 +syscon nr __NR_kexec_load 0x00f6 -1 -1 -1 -1 -1 +syscon nr __NR_waitid 0x00f7 0x20000ad -1 -1 -1 -1 +syscon nr __NR_add_key 0x00f8 -1 -1 -1 -1 -1 +syscon nr __NR_request_key 0x00f9 -1 -1 -1 -1 -1 +syscon nr __NR_keyctl 0x00fa -1 -1 -1 -1 -1 +syscon nr __NR_ioprio_set 0x00fb -1 -1 -1 -1 -1 +syscon nr __NR_ioprio_get 0x00fc -1 -1 -1 -1 -1 +syscon nr __NR_inotify_init 0x00fd -1 -1 -1 -1 -1 +syscon nr __NR_inotify_add_watch 0x00fe -1 -1 -1 -1 -1 +syscon nr __NR_inotify_rm_watch 0x00ff -1 -1 -1 -1 -1 +syscon nr __NR_openat 0x0101 0x20001cf 0x01f3 0x0141 0x1d4 -1 +syscon nr __NR_mkdirat 0x0102 0x20001db 0x01f0 0x013e 0x1cd -1 +syscon nr __NR_fchownat 0x0104 0x20001d4 0x01eb 0x013b 0x1d0 -1 +syscon nr __NR_utime 0x0084 -1 -1 -1 -1 -1 +syscon nr __NR_utimes 0x00eb 0x200008a 0x008a 0x004c 0x1a4 -1 +syscon nr __NR_futimesat 0x0105 -1 0x01ee -1 -1 -1 +syscon nr __NR_futimes -1 0x200008b 0x00ce 0x004d 0x1a7 -1 +syscon nr __NR_futimens -1 -1 0x0222 0x0055 0x1d8 -1 +syscon nr __NR_fstatat 0x0106 0x20001d6 0x0228 0x002a 0x1d2 -1 +syscon nr __NR_unlinkat 0x0107 0x20001d8 0x01f7 0x0145 0x1d7 -1 +syscon nr __NR_renameat 0x0108 0x20001d1 0x01f5 0x0143 0x1ca -1 +syscon nr __NR_linkat 0x0109 0x20001d7 0x01ef 0x013d 0x1c9 -1 +syscon nr __NR_symlinkat 0x010a 0x20001da 0x01f6 0x0144 0x1d6 -1 +syscon nr __NR_readlinkat 0x010b 0x20001d9 0x01f4 0x0142 0x1d5 -1 +syscon nr __NR_fchmodat 0x010c 0x20001d3 0x01ea 0x013a 0x1cf -1 +syscon nr __NR_faccessat 0x010d 0x20001d2 0x01e9 0x0139 0x1ce -1 +syscon nr __NR_unshare 0x0110 -1 -1 -1 -1 -1 +syscon nr __NR_splice 0x0113 -1 -1 -1 -1 -1 +syscon nr __NR_tee 0x0114 -1 -1 -1 -1 -1 +syscon nr __NR_sync_file_range 0x0115 -1 -1 -1 -1 -1 +syscon nr __NR_vmsplice 0x0116 -1 -1 -1 -1 -1 +syscon nr __NR_migrate_pages 0x0100 -1 -1 -1 -1 -1 +syscon nr __NR_move_pages 0x0117 -1 -1 -1 -1 -1 +syscon nr __NR_preadv 0x0127 -1 0x0121 0x010b 0x121 -1 +syscon nr __NR_pwritev 0x0128 -1 0x0122 0x010c 0x122 -1 +syscon nr __NR_utimensat 0x0118 -1 0x0223 0x0054 0x1d3 -1 +syscon nr __NR_fallocate 0x011d -1 -1 -1 -1 -1 +syscon nr __NR_posix_fallocate -1 -1 0x0212 -1 -1 -1 +syscon nr __NR_accept4 0x0120 -1 0x021d 0x005d -1 -1 +syscon nr __NR_dup3 0x0124 -1 -1 0x0066 0x1c6 -1 +syscon nr __NR_pipe2 0x0125 -1 0x021e 0x0065 0x1c5 -1 +syscon nr __NR_epoll_pwait 0x0119 -1 -1 -1 -1 -1 +syscon nr __NR_epoll_create1 0x0123 -1 -1 -1 -1 -1 +syscon nr __NR_perf_event_open 0x012a -1 -1 -1 -1 -1 +syscon nr __NR_inotify_init1 0x0126 -1 -1 -1 -1 -1 +syscon nr __NR_rt_tgsigqueueinfo 0x0129 -1 -1 -1 -1 -1 +syscon nr __NR_signalfd 0x011a -1 -1 -1 -1 -1 +syscon nr __NR_signalfd4 0x0121 -1 -1 -1 -1 -1 +syscon nr __NR_eventfd 0x011c -1 -1 -1 -1 -1 +syscon nr __NR_eventfd2 0x0122 -1 -1 -1 -1 -1 +syscon nr __NR_timerfd_create 0x011b -1 -1 -1 -1 -1 +syscon nr __NR_timerfd_settime 0x011e -1 -1 -1 -1 -1 +syscon nr __NR_timerfd_gettime 0x011f -1 -1 -1 -1 -1 +syscon nr __NR_recvmmsg 0x012b -1 -1 -1 0x1db -1 +syscon nr __NR_fanotify_init 0x012c -1 -1 -1 -1 -1 +syscon nr __NR_fanotify_mark 0x012d -1 -1 -1 -1 -1 +syscon nr __NR_prlimit 0x012e -1 -1 -1 -1 -1 +syscon nr __NR_name_to_handle_at 0x012f -1 -1 -1 -1 -1 +syscon nr __NR_open_by_handle_at 0x0130 -1 -1 -1 -1 -1 +syscon nr __NR_clock_adjtime 0x0131 -1 -1 -1 -1 -1 +syscon nr __NR_syncfs 0x0132 -1 -1 -1 -1 -1 +syscon nr __NR_sendmmsg 0x0133 -1 -1 -1 0x1dc -1 +syscon nr __NR_setns 0x0134 -1 -1 -1 -1 -1 +syscon nr __NR_getcpu 0x0135 -1 -1 -1 -1 -1 +syscon nr __NR_process_vm_readv 0x0136 -1 -1 -1 -1 -1 +syscon nr __NR_process_vm_writev 0x0137 -1 -1 -1 -1 -1 +syscon nr __NR_kcmp 0x0138 -1 -1 -1 -1 -1 +syscon nr __NR_finit_module 0x0139 -1 -1 -1 -1 -1 +syscon nr __NR_sched_setattr 0x013a -1 -1 -1 -1 -1 +syscon nr __NR_sched_getattr 0x013b -1 -1 -1 -1 -1 +syscon nr __NR_renameat2 0x013c -1 -1 -1 -1 -1 +syscon nr __NR_seccomp 0x013d -1 -1 -1 -1 -1 +syscon nr __NR_getrandom 0x013e 0x20001f4 0x0233 0x0007 0x05b -1 +syscon nr __NR_memfd_create 0x013f -1 -1 -1 -1 -1 +syscon nr __NR_kexec_file_load 0x0140 -1 -1 -1 -1 -1 +syscon nr __NR_bpf 0x0141 -1 -1 -1 -1 -1 +syscon nr __NR_execveat 0x0142 -1 -1 -1 -1 -1 +syscon nr __NR_userfaultfd 0x0143 -1 -1 -1 -1 -1 +syscon nr __NR_membarrier 0x0144 -1 -1 -1 -1 -1 +syscon nr __NR_mlock2 0x0145 -1 -1 -1 -1 -1 +syscon nr __NR_copy_file_range 0x0146 -1 -1 -1 -1 -1 +syscon nr __NR_preadv2 0x0147 -1 -1 -1 -1 -1 +syscon nr __NR_pwritev2 0x0148 -1 -1 -1 -1 -1 +syscon nr __NR_pkey_mprotect 0x0149 -1 -1 -1 -1 -1 +syscon nr __NR_pkey_alloc 0x014a -1 -1 -1 -1 -1 +syscon nr __NR_pkey_free 0x014b -1 -1 -1 -1 -1 +syscon nr __NR_statx 0x014c -1 -1 -1 -1 -1 +syscon nr __NR_io_pgetevents 0x014d -1 -1 -1 -1 -1 +syscon nr __NR_rseq 0x014e -1 -1 -1 -1 -1 +syscon nr __NR_pidfd_send_signal 0x01a8 -1 -1 -1 -1 -1 +syscon nr __NR_io_uring_setup 0x01a9 -1 -1 -1 -1 -1 +syscon nr __NR_io_uring_enter 0x01aa -1 -1 -1 -1 -1 +syscon nr __NR_io_uring_register 0x01ab -1 -1 -1 -1 -1 +syscon nr __NR_pledge -1 -1 -1 0x006c -1 -1 +syscon nr __NR_msyscall -1 -1 -1 0x0025 -1 -1 +syscon nr __NR_ktrace -1 -1 0x002d 0x002d 0x02d -1 +syscon nr __NR_kqueue -1 0x200016a 0x016a 0x010d 0x158 -1 +syscon nr __NR_kevent -1 0x2000171 0x0230 0x0048 0x1b3 -1 +syscon nr __NR_revoke -1 0x2000038 0x0038 0x0038 0x038 -1 +syscon nr __NR_setlogin -1 0x2000032 0x0032 0x0032 -1 -1 +syscon nr __NR_getfh -1 0x20000a1 0x00a1 0x00a1 0x18b -1 +syscon nr __NR_chflags -1 0x2000022 0x0022 0x0022 0x022 -1 +syscon nr __NR_getfsstat -1 0x200015b 0x022d 0x003e -1 -1 +syscon nr __NR_nfssvc -1 0x200009b 0x009b 0x009b 0x09b -1 +syscon nr __NR_adjtime -1 0x200008c 0x008c 0x008c 0x1a5 -1 +syscon nr __NR_fchflags -1 0x2000023 0x0023 0x0023 0x023 -1 +syscon nr __NR_seteuid -1 0x20000b7 0x00b7 0x00b7 -1 -1 +syscon nr __NR_setegid -1 0x20000b6 0x00b6 0x00b6 -1 -1 +syscon nr __NR_fpathconf -1 0x20000c0 0x00c0 0x00c0 0x0c0 -1 +syscon nr __NR_fhopen -1 0x20000f8 0x012a 0x0108 0x18c -1 +syscon nr __NR_unmount -1 0x200009f 0x0016 0x0016 0x016 -1 +syscon nr __NR_issetugid -1 0x2000147 0x00fd 0x00fd -1 -1 +syscon nr __NR_minherit -1 0x20000fa 0x00fa 0x00fa 0x111 -1 +syscon nr __NR_pathconf -1 0x20000bf 0x00bf 0x00bf 0x0bf -1 +syscon nr __NR_sysctl -1 0x20000ca -1 0x00ca -1 -1 +syscon nr __NR_ntp_adjtime -1 0x200020f 0x00b0 -1 0x0b0 -1 +syscon nr __NR_ntp_gettime -1 0x2000210 0x00f8 -1 0x1c0 -1 +syscon nr __NR_shm_unlink -1 0x200010b 0x01e3 -1 -1 -1 +syscon nr __NR_shm_open -1 0x200010a 0x01e2 -1 -1 -1 +syscon nr __NR_aio_read -1 0x200013e 0x013e -1 0x192 -1 +syscon nr __NR_aio_suspend -1 0x200013b 0x013b -1 0x1b6 -1 +syscon nr __NR_aio_cancel -1 0x200013c 0x013c -1 0x18f -1 +syscon nr __NR_aio_fsync -1 0x2000139 0x01d1 -1 0x191 -1 +syscon nr __NR_aio_error -1 0x200013d 0x013d -1 0x190 -1 +syscon nr __NR_aio_return -1 0x200013a 0x013a -1 0x193 -1 +syscon nr __NR_aio_write -1 0x200013f 0x013f -1 0x195 -1 +syscon nr __NR_aio_waitcomplete -1 -1 0x0167 -1 -1 -1 +syscon nr __NR_aio_suspend_nocancel -1 0x20001a5 -1 -1 -1 -1 +syscon nr __NR_aio_mlock -1 -1 0x021f -1 -1 -1 +syscon nr __NR_sigwait -1 0x200014a 0x01ad -1 -1 -1 +syscon nr __NR_undelete -1 0x20000cd 0x00cd -1 0x0cd -1 +syscon nr __NR_getlogin -1 0x2000031 0x0031 -1 -1 -1 +syscon nr __NR_getdtablesize -1 0x2000059 0x0059 -1 -1 -1 +syscon nr __NR_setauid -1 0x2000162 0x01c0 -1 -1 -1 +syscon nr __NR_audit -1 0x200015e 0x01bd -1 -1 -1 +syscon nr __NR_auditctl -1 0x2000167 0x01c5 -1 -1 -1 +syscon nr __NR_getaudit_addr -1 0x2000165 0x01c3 -1 -1 -1 +syscon nr __NR_getdirentries -1 0x2000158 0x022a -1 -1 -1 +syscon nr __NR_lio_listio -1 0x2000140 0x0140 -1 0x196 -1 +syscon nr __NR_setaudit_addr -1 0x2000166 0x01c4 -1 -1 -1 +syscon nr __NR_getauid -1 0x2000161 0x01bf -1 -1 -1 +syscon nr __NR_semsys -1 0x20000fb 0x00a9 -1 -1 -1 +syscon nr __NR_auditon -1 0x200015f 0x01be -1 -1 -1 +syscon nr __NR_msgsys -1 0x20000fc 0x00aa -1 -1 -1 +syscon nr __NR_shmsys -1 0x20000fd 0x00ab -1 -1 -1 +syscon nr __NR_fhstat -1 -1 0x0229 0x0126 0x1c3 -1 +syscon nr __NR_chflagsat -1 -1 0x021c 0x006b -1 -1 +syscon nr __NR_profil -1 -1 0x002c 0x002c 0x02c -1 +syscon nr __NR_fhstatfs -1 -1 0x022e 0x0041 -1 -1 +syscon nr __NR_utrace -1 -1 0x014f 0x00d1 0x132 -1 +syscon nr __NR_closefrom -1 -1 0x01fd 0x011f -1 -1 +syscon nr __NR_pthread_markcancel -1 0x200014c -1 -1 -1 -1 +syscon nr __NR_pthread_kill -1 0x2000148 -1 -1 -1 -1 +syscon nr __NR_pthread_fchdir -1 0x200015d -1 -1 -1 -1 +syscon nr __NR_pthread_sigmask -1 0x2000149 -1 -1 -1 -1 +syscon nr __NR_pthread_chdir -1 0x200015c -1 -1 -1 -1 +syscon nr __NR_pthread_canceled -1 0x200014d -1 -1 -1 -1 +syscon nr __NR_disable_threadsignal -1 0x200014b -1 -1 -1 -1 +syscon nr __NR_abort_with_payload -1 0x2000209 -1 -1 -1 -1 +syscon nr __NR_accept_nocancel -1 0x2000194 -1 -1 -1 -1 +syscon nr __NR_access_extended -1 0x200011c -1 -1 -1 -1 +syscon nr __NR_audit_session_join -1 0x20001ad -1 -1 -1 -1 +syscon nr __NR_audit_session_port -1 0x20001b0 -1 -1 -1 -1 +syscon nr __NR_audit_session_self -1 0x20001ac -1 -1 -1 -1 +syscon nr __NR_bsdthread_create -1 0x2000168 -1 -1 -1 -1 +syscon nr __NR_bsdthread_ctl -1 0x20001de -1 -1 -1 -1 +syscon nr __NR_bsdthread_register -1 0x200016e -1 -1 -1 -1 +syscon nr __NR_bsdthread_terminate -1 0x2000169 -1 -1 -1 -1 +syscon nr __NR_change_fdguard_np -1 0x20001bc -1 -1 -1 -1 +syscon nr __NR_chmod_extended -1 0x200011a -1 -1 -1 -1 +syscon nr __NR_clonefileat -1 0x20001ce -1 -1 -1 -1 +syscon nr __NR_close_nocancel -1 0x200018f -1 -1 -1 -1 +syscon nr __NR_coalition -1 0x20001ca -1 -1 -1 -1 +syscon nr __NR_coalition_info -1 0x20001cb -1 -1 -1 -1 +syscon nr __NR_connect_nocancel -1 0x2000199 -1 -1 -1 -1 +syscon nr __NR_connectx -1 0x20001bf -1 -1 -1 -1 +syscon nr __NR_copyfile -1 0x20000e3 -1 -1 -1 -1 +syscon nr __NR_csops -1 0x20000a9 -1 -1 -1 -1 +syscon nr __NR_csops_audittoken -1 0x20000aa -1 -1 -1 -1 +syscon nr __NR_csrctl -1 0x20001e3 -1 -1 -1 -1 +syscon nr __NR_delete -1 0x20000e2 -1 -1 -1 -1 +syscon nr __NR_disconnectx -1 0x20001c0 -1 -1 -1 -1 +syscon nr __NR_exchangedata -1 0x20000df -1 -1 -1 -1 +syscon nr __NR_fchmod_extended -1 0x200011b -1 -1 -1 -1 +syscon nr __NR_fclonefileat -1 0x2000205 -1 -1 -1 -1 +syscon nr __NR_fcntl_nocancel -1 0x2000196 -1 -1 -1 -1 +syscon nr __NR_ffsctl -1 0x20000f5 -1 -1 -1 -1 +syscon nr __NR_fgetattrlist -1 0x20000e4 -1 -1 -1 -1 +syscon nr __NR_fileport_makefd -1 0x20001af -1 -1 -1 -1 +syscon nr __NR_fileport_makeport -1 0x20001ae -1 -1 -1 -1 +syscon nr __NR_fmount -1 0x200020e -1 -1 -1 -1 +syscon nr __NR_fs_snapshot -1 0x2000206 -1 -1 -1 -1 +syscon nr __NR_fsctl -1 0x20000f2 -1 -1 -1 -1 +syscon nr __NR_fsetattrlist -1 0x20000e5 -1 -1 -1 -1 +syscon nr __NR_fstat_extended -1 0x2000119 -1 -1 -1 -1 +syscon nr __NR_fsync_nocancel -1 0x2000198 -1 -1 -1 -1 +syscon nr __NR_getattrlist -1 0x20000dc -1 -1 -1 -1 +syscon nr __NR_getattrlistat -1 0x20001dc -1 -1 -1 -1 +syscon nr __NR_getattrlistbulk -1 0x20001cd -1 -1 -1 -1 +syscon nr __NR_getdirentriesattr -1 0x20000de -1 -1 -1 -1 +syscon nr __NR_gethostuuid -1 0x200008e -1 -1 -1 -1 +syscon nr __NR_getsgroups -1 0x2000120 -1 -1 -1 -1 +syscon nr __NR_getwgroups -1 0x2000122 -1 -1 -1 -1 +syscon nr __NR_grab_pgo_data -1 0x20001ed -1 -1 -1 -1 +syscon nr __NR_guarded_close_np -1 0x20001ba -1 -1 -1 -1 +syscon nr __NR_guarded_kqueue_np -1 0x20001bb -1 -1 -1 -1 +syscon nr __NR_guarded_open_np -1 0x20001b9 -1 -1 -1 -1 +syscon nr __NR_guarded_pwrite_np -1 0x20001e6 -1 -1 -1 -1 +syscon nr __NR_guarded_write_np -1 0x20001e5 -1 -1 -1 -1 +syscon nr __NR_guarded_writev_np -1 0x20001e7 -1 -1 -1 -1 +syscon nr __NR_identitysvc -1 0x2000125 -1 -1 -1 -1 +syscon nr __NR_initgroups -1 0x20000f3 -1 -1 -1 -1 +syscon nr __NR_iopolicysys -1 0x2000142 -1 -1 -1 -1 +syscon nr __NR_kas_info -1 0x20001b7 -1 -1 -1 -1 +syscon nr __NR_kdebug_trace -1 0x20000b3 -1 -1 -1 -1 +syscon nr __NR_kdebug_trace_string -1 0x20000b2 -1 -1 -1 -1 +syscon nr __NR_kdebug_typefilter -1 0x20000b1 -1 -1 -1 -1 +syscon nr __NR_kevent_id -1 0x2000177 -1 -1 -1 -1 +syscon nr __NR_kevent_qos -1 0x2000176 -1 -1 -1 -1 +syscon nr __NR_ledger -1 0x2000175 -1 -1 -1 -1 +syscon nr __NR_lstat_extended -1 0x2000156 -1 -1 -1 -1 +syscon nr __NR_memorystatus_control -1 0x20001b8 -1 -1 -1 -1 +syscon nr __NR_memorystatus_get_level -1 0x20001c5 -1 -1 -1 -1 +syscon nr __NR_microstackshot -1 0x20001ec -1 -1 -1 -1 +syscon nr __NR_mkdir_extended -1 0x2000124 -1 -1 -1 -1 +syscon nr __NR_mkfifo_extended -1 0x2000123 -1 -1 -1 -1 +syscon nr __NR_modwatch -1 0x20000e9 -1 -1 -1 -1 +syscon nr __NR_mremap_encrypted -1 0x20001e9 -1 -1 -1 -1 +syscon nr __NR_msgrcv_nocancel -1 0x20001a3 -1 -1 -1 -1 +syscon nr __NR_msgsnd_nocancel -1 0x20001a2 -1 -1 -1 -1 +syscon nr __NR_msync_nocancel -1 0x2000195 -1 -1 -1 -1 +syscon nr __NR_necp_client_action -1 0x20001f6 -1 -1 -1 -1 +syscon nr __NR_necp_match_policy -1 0x20001cc -1 -1 -1 -1 +syscon nr __NR_necp_open -1 0x20001f5 -1 -1 -1 -1 +syscon nr __NR_necp_session_action -1 0x200020b -1 -1 -1 -1 +syscon nr __NR_necp_session_open -1 0x200020a -1 -1 -1 -1 +syscon nr __NR_net_qos_guideline -1 0x200020d -1 -1 -1 -1 +syscon nr __NR_netagent_trigger -1 0x20001ea -1 -1 -1 -1 +syscon nr __NR_nfsclnt -1 0x20000f7 -1 -1 -1 -1 +syscon nr __NR_open_dprotected_np -1 0x20000d8 -1 -1 -1 -1 +syscon nr __NR_open_extended -1 0x2000115 -1 -1 -1 -1 +syscon nr __NR_open_nocancel -1 0x200018e -1 -1 -1 -1 +syscon nr __NR_openat_nocancel -1 0x20001d0 -1 -1 -1 -1 +syscon nr __NR_openbyid_np -1 0x20001df -1 -1 -1 -1 +syscon nr __NR_os_fault_with_payload -1 0x2000211 -1 -1 -1 -1 +syscon nr __NR_peeloff -1 0x20001c1 -1 -1 -1 -1 +syscon nr __NR_persona -1 0x20001ee -1 -1 -1 -1 +syscon nr __NR_pid_hibernate -1 0x20001b3 -1 -1 -1 -1 +syscon nr __NR_pid_resume -1 0x20001b2 -1 -1 -1 -1 +syscon nr __NR_pid_shutdown_sockets -1 0x20001b4 -1 -1 -1 -1 +syscon nr __NR_pid_suspend -1 0x20001b1 -1 -1 -1 -1 +syscon nr __NR_poll_nocancel -1 0x20001a1 -1 -1 -1 -1 +syscon nr __NR_pread_nocancel -1 0x200019e -1 -1 -1 -1 +syscon nr __NR_proc_info -1 0x2000150 -1 -1 -1 -1 +syscon nr __NR_proc_rlimit_control -1 0x20001be -1 -1 -1 -1 +syscon nr __NR_proc_trace_log -1 0x20001dd -1 -1 -1 -1 +syscon nr __NR_proc_uuid_policy -1 0x20001c4 -1 -1 -1 -1 +syscon nr __NR_process_policy -1 0x2000143 -1 -1 -1 -1 +syscon nr __NR_pselect_nocancel -1 0x200018b -1 -1 -1 -1 +syscon nr __NR_psynch_cvbroad -1 0x200012f -1 -1 -1 -1 +syscon nr __NR_psynch_cvclrprepost -1 0x2000138 -1 -1 -1 -1 +syscon nr __NR_psynch_cvsignal -1 0x2000130 -1 -1 -1 -1 +syscon nr __NR_psynch_mutexdrop -1 0x200012e -1 -1 -1 -1 +syscon nr __NR_psynch_mutexwait -1 0x200012d -1 -1 -1 -1 +syscon nr __NR_psynch_rw_downgrade -1 0x200012b -1 -1 -1 -1 +syscon nr __NR_psynch_rw_longrdlock -1 0x2000129 -1 -1 -1 -1 +syscon nr __NR_psynch_rw_rdlock -1 0x2000132 -1 -1 -1 -1 +syscon nr __NR_psynch_rw_unlock -1 0x2000134 -1 -1 -1 -1 +syscon nr __NR_psynch_rw_unlock2 -1 0x2000135 -1 -1 -1 -1 +syscon nr __NR_psynch_rw_upgrade -1 0x200012c -1 -1 -1 -1 +syscon nr __NR_psynch_rw_wrlock -1 0x2000133 -1 -1 -1 -1 +syscon nr __NR_psynch_rw_yieldwrlock -1 0x200012a -1 -1 -1 -1 +syscon nr __NR_pwrite_nocancel -1 0x200019f -1 -1 -1 -1 +syscon nr __NR_read_nocancel -1 0x200018c -1 -1 -1 -1 +syscon nr __NR_readv_nocancel -1 0x200019b -1 -1 -1 -1 +syscon nr __NR_recvfrom_nocancel -1 0x2000193 -1 -1 -1 -1 +syscon nr __NR_recvmsg_nocancel -1 0x2000191 -1 -1 -1 -1 +syscon nr __NR_recvmsg_x -1 0x20001e0 -1 -1 -1 -1 +syscon nr __NR_renameatx_np -1 0x20001e8 -1 -1 -1 -1 +syscon nr __NR_searchfs -1 0x20000e1 -1 -1 -1 -1 +syscon nr __NR_select_nocancel -1 0x2000197 -1 -1 -1 -1 +syscon nr __NR_sem_close -1 0x200010d -1 -1 -1 -1 +syscon nr __NR_sem_open -1 0x200010c -1 -1 -1 -1 +syscon nr __NR_sem_post -1 0x2000111 -1 -1 -1 -1 +syscon nr __NR_sem_trywait -1 0x2000110 -1 -1 -1 -1 +syscon nr __NR_sem_unlink -1 0x200010e -1 -1 -1 -1 +syscon nr __NR_sem_wait -1 0x200010f -1 -1 -1 -1 +syscon nr __NR_sem_wait_nocancel -1 0x20001a4 -1 -1 -1 -1 +syscon nr __NR_sendmsg_nocancel -1 0x2000192 -1 -1 -1 -1 +syscon nr __NR_sendmsg_x -1 0x20001e1 -1 -1 -1 -1 +syscon nr __NR_sendto_nocancel -1 0x200019d -1 -1 -1 -1 +syscon nr __NR_setattrlist -1 0x20000dd -1 -1 -1 -1 +syscon nr __NR_setattrlistat -1 0x200020c -1 -1 -1 -1 +syscon nr __NR_setprivexec -1 0x2000098 -1 -1 -1 -1 +syscon nr __NR_setsgroups -1 0x200011f -1 -1 -1 -1 +syscon nr __NR_settid -1 0x200011d -1 -1 -1 -1 +syscon nr __NR_settid_with_pid -1 0x2000137 -1 -1 -1 -1 +syscon nr __NR_setwgroups -1 0x2000121 -1 -1 -1 -1 +syscon nr __NR_sfi_ctl -1 0x20001c8 -1 -1 -1 -1 +syscon nr __NR_sfi_pidctl -1 0x20001c9 -1 -1 -1 -1 +syscon nr __NR_shared_region_check_np -1 0x2000126 -1 -1 -1 -1 +syscon nr __NR_sigsuspend_nocancel -1 0x200019a -1 -1 -1 -1 +syscon nr __NR_socket_delegate -1 0x20001c2 -1 -1 -1 -1 +syscon nr __NR_stat_extended -1 0x2000155 -1 -1 -1 -1 +syscon nr __NR_sysctlbyname -1 0x2000112 -1 -1 -1 -1 +syscon nr __NR_system_override -1 0x20001c6 -1 -1 -1 -1 +syscon nr __NR_telemetry -1 0x20001c3 -1 -1 -1 -1 +syscon nr __NR_terminate_with_payload -1 0x2000208 -1 -1 -1 -1 +syscon nr __NR_thread_selfcounts -1 0x20000ba -1 -1 -1 -1 +syscon nr __NR_thread_selfid -1 0x2000174 -1 -1 -1 -1 +syscon nr __NR_thread_selfusage -1 0x20001e2 -1 -1 -1 -1 +syscon nr __NR_ulock_wait -1 0x2000203 -1 -1 -1 -1 +syscon nr __NR_ulock_wake -1 0x2000204 -1 -1 -1 -1 +syscon nr __NR_umask_extended -1 0x2000116 -1 -1 -1 -1 +syscon nr __NR_usrctl -1 0x20001bd -1 -1 -1 -1 +syscon nr __NR_vfs_purge -1 0x20001c7 -1 -1 -1 -1 +syscon nr __NR_vm_pressure_monitor -1 0x2000128 -1 -1 -1 -1 +syscon nr __NR_wait4_nocancel -1 0x2000190 -1 -1 -1 -1 +syscon nr __NR_waitevent -1 0x20000e8 -1 -1 -1 -1 +syscon nr __NR_waitid_nocancel -1 0x20001a0 -1 -1 -1 -1 +syscon nr __NR_watchevent -1 0x20000e7 -1 -1 -1 -1 +syscon nr __NR_work_interval_ctl -1 0x20001f3 -1 -1 -1 -1 +syscon nr __NR_workq_kernreturn -1 0x2000170 -1 -1 -1 -1 +syscon nr __NR_workq_open -1 0x200016f -1 -1 -1 -1 +syscon nr __NR_write_nocancel -1 0x200018d -1 -1 -1 -1 +syscon nr __NR_writev_nocancel -1 0x200019c -1 -1 -1 -1 +syscon nr __NR_abort2 -1 -1 0x01cf -1 -1 -1 +syscon nr __NR_afs3_syscall -1 -1 0x0179 -1 -1 -1 +syscon nr __NR_bindat -1 -1 0x021a -1 -1 -1 +syscon nr __NR_break -1 -1 0x0011 -1 -1 -1 +syscon nr __NR_cap_enter -1 -1 0x0204 -1 -1 -1 +syscon nr __NR_cap_fcntls_get -1 -1 0x0219 -1 -1 -1 +syscon nr __NR_cap_fcntls_limit -1 -1 0x0218 -1 -1 -1 +syscon nr __NR_cap_getmode -1 -1 0x0205 -1 -1 -1 +syscon nr __NR_cap_ioctls_get -1 -1 0x0217 -1 -1 -1 +syscon nr __NR_cap_ioctls_limit -1 -1 0x0216 -1 -1 -1 +syscon nr __NR_cap_rights_limit -1 -1 0x0215 -1 -1 -1 +syscon nr __NR_clock_getcpuclockid2 -1 -1 0x00f7 -1 0x1e2 -1 +syscon nr __NR_connectat -1 -1 0x021b -1 -1 -1 +syscon nr __NR_cpuset -1 -1 0x01e4 -1 -1 -1 +syscon nr __NR_cpuset_getdomain -1 -1 0x0231 -1 -1 -1 +syscon nr __NR_cpuset_getid -1 -1 0x01e6 -1 -1 -1 +syscon nr __NR_cpuset_setdomain -1 -1 0x0232 -1 -1 -1 +syscon nr __NR_cpuset_setid -1 -1 0x01e5 -1 -1 -1 +syscon nr __NR_eaccess -1 -1 0x0178 -1 -1 -1 +syscon nr __NR_extattr_delete_fd -1 -1 0x0175 -1 0x16e -1 +syscon nr __NR_extattr_delete_file -1 -1 0x0166 -1 0x16b -1 +syscon nr __NR_extattr_delete_link -1 -1 0x019e -1 0x171 -1 +syscon nr __NR_extattr_get_fd -1 -1 0x0174 -1 0x16d -1 +syscon nr __NR_extattr_get_file -1 -1 0x0165 -1 0x16a -1 +syscon nr __NR_extattr_get_link -1 -1 0x019d -1 0x170 -1 +syscon nr __NR_extattr_list_fd -1 -1 0x01b5 -1 0x172 -1 +syscon nr __NR_extattr_list_file -1 -1 0x01b6 -1 0x173 -1 +syscon nr __NR_extattr_list_link -1 -1 0x01b7 -1 0x174 -1 +syscon nr __NR_extattr_set_fd -1 -1 0x0173 -1 0x16c -1 +syscon nr __NR_extattr_set_file -1 -1 0x0164 -1 0x169 -1 +syscon nr __NR_extattr_set_link -1 -1 0x019c -1 0x16f -1 +syscon nr __NR_extattrctl -1 -1 0x0163 -1 0x168 -1 +syscon nr __NR_fexecve -1 -1 0x01ec -1 0x1d1 -1 +syscon nr __NR_ffclock_getcounter -1 -1 0x00f1 -1 -1 -1 +syscon nr __NR_ffclock_getestimate -1 -1 0x00f3 -1 -1 -1 +syscon nr __NR_ffclock_setestimate -1 -1 0x00f2 -1 -1 -1 +syscon nr __NR_fhlink -1 -1 0x0235 -1 -1 -1 +syscon nr __NR_fhlinkat -1 -1 0x0236 -1 -1 -1 +syscon nr __NR_fhreadlink -1 -1 0x0237 -1 -1 -1 +syscon nr __NR_getaudit -1 -1 0x01c1 -1 -1 -1 +syscon nr __NR_getcontext -1 -1 0x01a5 -1 0x133 -1 +syscon nr __NR_getfhat -1 -1 0x0234 -1 -1 -1 +syscon nr __NR_gethostid -1 -1 0x008e -1 -1 -1 +syscon nr __NR_getkerninfo -1 -1 0x003f -1 -1 -1 +syscon nr __NR_getloginclass -1 -1 0x020b -1 -1 -1 +syscon nr __NR_getpagesize -1 -1 0x0040 -1 -1 -1 +syscon nr __NR_gssd_syscall -1 -1 0x01f9 -1 -1 -1 +syscon nr __NR_jail -1 -1 0x0152 -1 -1 -1 +syscon nr __NR_jail_attach -1 -1 0x01b4 -1 -1 -1 +syscon nr __NR_jail_get -1 -1 0x01fa -1 -1 -1 +syscon nr __NR_jail_remove -1 -1 0x01fc -1 -1 -1 +syscon nr __NR_jail_set -1 -1 0x01fb -1 -1 -1 +syscon nr __NR_kenv -1 -1 0x0186 -1 -1 -1 +syscon nr __NR_kldfind -1 -1 0x0132 -1 -1 -1 +syscon nr __NR_kldfirstmod -1 -1 0x0135 -1 -1 -1 +syscon nr __NR_kldload -1 -1 0x0130 -1 -1 -1 +syscon nr __NR_kldnext -1 -1 0x0133 -1 -1 -1 +syscon nr __NR_kldstat -1 -1 0x0134 -1 -1 -1 +syscon nr __NR_kldsym -1 -1 0x0151 -1 -1 -1 +syscon nr __NR_kldunload -1 -1 0x0131 -1 -1 -1 +syscon nr __NR_kldunloadf -1 -1 0x01bc -1 -1 -1 +syscon nr __NR_kmq_notify -1 -1 0x01cd -1 -1 -1 +syscon nr __NR_kmq_setattr -1 -1 0x01ca -1 -1 -1 +syscon nr __NR_kmq_timedreceive -1 -1 0x01cb -1 -1 -1 +syscon nr __NR_kmq_timedsend -1 -1 0x01cc -1 -1 -1 +syscon nr __NR_kmq_unlink -1 -1 0x01ce -1 -1 -1 +syscon nr __NR_ksem_close -1 -1 0x0190 -1 -1 -1 +syscon nr __NR_ksem_destroy -1 -1 0x0198 -1 -1 -1 +syscon nr __NR_ksem_getvalue -1 -1 0x0197 -1 -1 -1 +syscon nr __NR_ksem_init -1 -1 0x0194 -1 -1 -1 +syscon nr __NR_ksem_open -1 -1 0x0195 -1 -1 -1 +syscon nr __NR_ksem_post -1 -1 0x0191 -1 -1 -1 +syscon nr __NR_ksem_timedwait -1 -1 0x01b9 -1 -1 -1 +syscon nr __NR_ksem_trywait -1 -1 0x0193 -1 -1 -1 +syscon nr __NR_ksem_unlink -1 -1 0x0196 -1 -1 -1 +syscon nr __NR_ksem_wait -1 -1 0x0192 -1 -1 -1 +syscon nr __NR_ktimer_create -1 -1 0x00eb -1 -1 -1 +syscon nr __NR_ktimer_delete -1 -1 0x00ec -1 -1 -1 +syscon nr __NR_ktimer_getoverrun -1 -1 0x00ef -1 -1 -1 +syscon nr __NR_ktimer_gettime -1 -1 0x00ee -1 -1 -1 +syscon nr __NR_ktimer_settime -1 -1 0x00ed -1 -1 -1 +syscon nr __NR_lchflags -1 -1 0x0187 -1 0x130 -1 +syscon nr __NR_lchmod -1 -1 0x0112 -1 0x112 -1 +syscon nr __NR_lgetfh -1 -1 0x00a0 -1 -1 -1 +syscon nr __NR_lpathconf -1 -1 0x0201 -1 0x1f3 -1 +syscon nr __NR_lutimes -1 -1 0x0114 -1 0x1a8 -1 +syscon nr __NR_mac_syscall -1 -1 0x018a -1 -1 -1 +syscon nr __NR_modfind -1 -1 0x012f -1 -1 -1 +syscon nr __NR_modfnext -1 -1 0x012e -1 -1 -1 +syscon nr __NR_modnext -1 -1 0x012c -1 -1 -1 +syscon nr __NR_modstat -1 -1 0x012d -1 -1 -1 +syscon nr __NR_nfstat -1 -1 0x0117 -1 -1 -1 +syscon nr __NR_nlm_syscall -1 -1 0x009a -1 -1 -1 +syscon nr __NR_nlstat -1 -1 0x0118 -1 -1 -1 +syscon nr __NR_nmount -1 -1 0x017a -1 -1 -1 +syscon nr __NR_nnpfs_syscall -1 -1 0x0153 -1 -1 -1 +syscon nr __NR_nstat -1 -1 0x0116 -1 -1 -1 +syscon nr __NR_pdfork -1 -1 0x0206 -1 -1 -1 +syscon nr __NR_pdgetpid -1 -1 0x0208 -1 -1 -1 +syscon nr __NR_pdkill -1 -1 0x0207 -1 -1 -1 +syscon nr __NR_posix_openpt -1 -1 0x01f8 -1 -1 -1 +syscon nr __NR_procctl -1 -1 0x0220 -1 -1 -1 +syscon nr __NR_psynch_cvwait -1 0x2000131 -1 -1 -1 -1 +syscon nr __NR_quota -1 -1 0x0095 -1 -1 -1 +syscon nr __NR_rctl_add_rule -1 -1 0x0210 -1 -1 -1 +syscon nr __NR_rctl_get_limits -1 -1 0x020f -1 -1 -1 +syscon nr __NR_rctl_get_racct -1 -1 0x020d -1 -1 -1 +syscon nr __NR_rctl_get_rules -1 -1 0x020e -1 -1 -1 +syscon nr __NR_rctl_remove_rule -1 -1 0x0211 -1 -1 -1 +syscon nr __NR_recv -1 -1 0x0066 -1 -1 -1 +syscon nr __NR_rfork -1 -1 0x00fb -1 -1 -1 +syscon nr __NR_rtprio -1 -1 0x00a6 -1 -1 -1 +syscon nr __NR_rtprio_thread -1 -1 0x01d2 -1 -1 -1 +syscon nr __NR_send -1 -1 0x0065 -1 -1 -1 +syscon nr __NR_setaudit -1 -1 0x01c2 -1 -1 -1 +syscon nr __NR_setcontext -1 -1 0x01a6 -1 0x134 -1 +syscon nr __NR_setfib -1 -1 0x00af -1 -1 -1 +syscon nr __NR_sethostid -1 -1 0x008f -1 -1 -1 +syscon nr __NR_setloginclass -1 -1 0x020c -1 -1 -1 +syscon nr __NR_sigblock -1 -1 0x006d -1 -1 -1 +syscon nr __NR_sigqueue -1 -1 0x01c8 -1 -1 -1 +syscon nr __NR_sigsetmask -1 -1 0x006e -1 -1 -1 +syscon nr __NR_sigstack -1 -1 0x0070 -1 -1 -1 +syscon nr __NR_sigvec -1 -1 0x006c -1 -1 -1 +syscon nr __NR_sigwaitinfo -1 -1 0x015a -1 -1 -1 +syscon nr __NR_sstk -1 -1 0x0046 -1 -1 -1 +syscon nr __NR_swapcontext -1 -1 0x01a7 -1 -1 -1 +syscon nr __NR_thr_create -1 -1 0x01ae -1 -1 -1 +syscon nr __NR_thr_exit -1 -1 0x01af -1 -1 -1 +syscon nr __NR_thr_kill -1 -1 0x01b1 -1 -1 -1 +syscon nr __NR_thr_kill2 -1 -1 0x01e1 -1 -1 -1 +syscon nr __NR_thr_new -1 -1 0x01c7 -1 -1 -1 +syscon nr __NR_thr_self -1 -1 0x01b0 -1 -1 -1 +syscon nr __NR_thr_set_name -1 -1 0x01d0 -1 -1 -1 +syscon nr __NR_thr_suspend -1 -1 0x01ba -1 -1 -1 +syscon nr __NR_thr_wake -1 -1 0x01bb -1 -1 -1 +syscon nr __NR_uuidgen -1 -1 0x0188 -1 0x163 -1 +syscon nr __NR_vadvise -1 -1 0x0048 -1 -1 -1 +syscon nr __NR_wait -1 -1 0x0054 -1 -1 -1 +syscon nr __NR_wait6 -1 -1 0x0214 -1 0x1e1 -1 +syscon nr __NR_yield -1 -1 0x0141 -1 -1 -1 +syscon nr __NR_tfork -1 -1 -1 0x0008 -1 -1 +syscon nr __NR_thrsleep -1 -1 -1 0x005e -1 -1 +syscon nr __NR_thrwakeup -1 -1 -1 0x012d -1 -1 +syscon nr __NR_threxit -1 -1 -1 0x012e -1 -1 +syscon nr __NR_thrsigdivert -1 -1 -1 0x012f -1 -1 +syscon nr __NR_set_tcb -1 -1 -1 0x0149 -1 -1 +syscon nr __NR_get_tcb -1 -1 -1 0x014a -1 -1 +syscon nr __NR_adjfreq -1 -1 -1 0x0131 -1 -1 +syscon nr __NR_getdtablecount -1 -1 -1 0x0012 -1 -1 +syscon nr __NR_getlogin_r -1 -1 -1 0x008d -1 -1 +syscon nr __NR_getrtable -1 -1 -1 0x0137 -1 -1 +syscon nr __NR_getthrid -1 -1 -1 0x012b -1 -1 +syscon nr __NR_kbind -1 -1 -1 0x0056 -1 -1 +syscon nr __NR_mquery -1 -1 -1 0x011e -1 -1 +syscon nr __NR_obreak -1 -1 -1 0x0011 0x011 -1 +syscon nr __NR_sendsyslog -1 -1 -1 0x0070 -1 -1 +syscon nr __NR_setrtable -1 -1 -1 0x0136 -1 -1 +syscon nr __NR_swapctl -1 -1 -1 0x00c1 0x10f -1 +syscon nr __NR_thrkill -1 -1 -1 0x0077 -1 -1 +syscon nr __NR_unveil -1 -1 -1 0x0072 -1 -1 +syscon nr __NR_mac_get_link -1 0x2000180 0x019a -1 -1 -1 +syscon nr __NR_mac_set_link -1 0x2000181 0x019b -1 -1 -1 +syscon nr __NR_mac_get_fd -1 0x2000184 0x0182 -1 -1 -1 +syscon nr __NR_mac_get_file -1 0x200017e 0x0183 -1 -1 -1 +syscon nr __NR_mac_get_proc -1 0x2000182 0x0180 -1 -1 -1 +syscon nr __NR_mac_set_fd -1 0x2000185 0x0184 -1 -1 -1 +syscon nr __NR_mac_get_pid -1 0x2000186 0x0199 -1 -1 -1 +syscon nr __NR_mac_set_proc -1 0x2000183 0x0181 -1 -1 -1 +syscon nr __NR_mac_set_file -1 0x200017f 0x0185 -1 -1 -1 +syscon nr __NR_mac_execve -1 0x200017c 0x019f -1 -1 -1 +syscon nr __NR_acl_get_link -1 -1 0x01a9 -1 -1 -1 +syscon nr __NR_sigwait_nocancel -1 0x20001a6 -1 -1 -1 -1 +syscon nr __NR_cap_rights_get -1 -1 0x0203 -1 -1 -1 +syscon nr __NR_semwait_signal -1 0x200014e -1 -1 -1 -1 +syscon nr __NR_acl_set_link -1 -1 0x01aa -1 -1 -1 +syscon nr __NR_acl_set_fd -1 -1 0x015e -1 -1 -1 +syscon nr __NR_old_semwait_signal -1 0x2000172 -1 -1 -1 -1 +syscon nr __NR_setugid -1 -1 0x0176 -1 -1 -1 +syscon nr __NR_acl_aclcheck_fd -1 -1 0x0162 -1 -1 -1 +syscon nr __NR_acl_get_fd -1 -1 0x015d -1 -1 -1 +syscon nr __NR___sysctl -1 -1 0x00ca -1 -1 -1 +syscon nr __NR_mac_getfsstat -1 0x20001aa -1 -1 -1 -1 +syscon nr __NR_mac_get_mount -1 0x20001a9 -1 -1 -1 -1 +syscon nr __NR_acl_delete_link -1 -1 0x01ab -1 -1 -1 +syscon nr __NR_mac_mount -1 0x20001a8 -1 -1 -1 -1 +syscon nr __NR_acl_get_file -1 -1 0x015b -1 -1 -1 +syscon nr __NR_acl_aclcheck_file -1 -1 0x0161 -1 -1 -1 +syscon nr __NR_acl_delete_fd -1 -1 0x0160 -1 -1 -1 +syscon nr __NR_acl_aclcheck_link -1 -1 0x01ac -1 -1 -1 +syscon nr __NR___mac_syscall -1 0x200017d -1 -1 -1 -1 +syscon nr __NR_acl_set_file -1 -1 0x015c -1 -1 -1 +syscon nr __NR_acl_delete_file -1 -1 0x015f -1 -1 -1 +syscon nr __NR_syscall -1 -1 -1 0x00c6 -1 -1 +syscon nr __NR__umtx_op -1 -1 0x01c6 -1 -1 -1 +syscon nr __NR_semwait_signal_nocancel -1 0x20001a7 -1 -1 -1 -1 +syscon nr __NR_old_semwait_signal_nocancel -1 0x2000173 -1 -1 -1 -1 +syscon nr __NR_sctp_peeloff -1 -1 0x01d7 -1 -1 -1 +syscon nr __NR_sctp_generic_recvmsg -1 -1 0x01da -1 -1 -1 +syscon nr __NR_sctp_generic_sendmsg -1 -1 0x01d8 -1 -1 -1 +syscon nr __NR_sctp_generic_sendmsg_iov -1 -1 0x01d9 -1 -1 -1 +syscon nr __NR_shared_region_map_and_slide_np -1 0x20001b6 -1 -1 -1 -1 +syscon nr __NR_guarded_open_dprotected_np -1 0x20001e4 -1 -1 -1 -1 +syscon nr __NR_stack_snapshot_with_config -1 0x20001eb -1 -1 -1 -1 # https://youtu.be/GUQUD3IMbb4?t=85 diff --git a/libc/sysv/consts/ABDAY_1.s b/libc/sysv/consts/ABDAY_1.s index 219f72f18..6034381ff 100644 --- a/libc/sysv/consts/ABDAY_1.s +++ b/libc/sysv/consts/ABDAY_1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABDAY_1 0x020000 14 14 13 0 +.syscon misc ABDAY_1 0x020000 14 14 13 13 0 diff --git a/libc/sysv/consts/ABDAY_2.s b/libc/sysv/consts/ABDAY_2.s index f22ed679b..5569de0df 100644 --- a/libc/sysv/consts/ABDAY_2.s +++ b/libc/sysv/consts/ABDAY_2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABDAY_2 0x020001 15 15 14 0 +.syscon misc ABDAY_2 0x020001 15 15 14 14 0 diff --git a/libc/sysv/consts/ABDAY_3.s b/libc/sysv/consts/ABDAY_3.s index af32816fb..3a8e21610 100644 --- a/libc/sysv/consts/ABDAY_3.s +++ b/libc/sysv/consts/ABDAY_3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABDAY_3 0x020002 0x10 0x10 15 0 +.syscon misc ABDAY_3 0x020002 0x10 0x10 15 15 0 diff --git a/libc/sysv/consts/ABDAY_4.s b/libc/sysv/consts/ABDAY_4.s index 43beac7b9..078398439 100644 --- a/libc/sysv/consts/ABDAY_4.s +++ b/libc/sysv/consts/ABDAY_4.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABDAY_4 0x020003 17 17 0x10 0 +.syscon misc ABDAY_4 0x020003 17 17 0x10 0x10 0 diff --git a/libc/sysv/consts/ABDAY_5.s b/libc/sysv/consts/ABDAY_5.s index ea300d475..97940b9a2 100644 --- a/libc/sysv/consts/ABDAY_5.s +++ b/libc/sysv/consts/ABDAY_5.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABDAY_5 0x020004 18 18 17 0 +.syscon misc ABDAY_5 0x020004 18 18 17 17 0 diff --git a/libc/sysv/consts/ABDAY_6.s b/libc/sysv/consts/ABDAY_6.s index 153658427..a772f4638 100644 --- a/libc/sysv/consts/ABDAY_6.s +++ b/libc/sysv/consts/ABDAY_6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABDAY_6 0x020005 19 19 18 0 +.syscon misc ABDAY_6 0x020005 19 19 18 18 0 diff --git a/libc/sysv/consts/ABDAY_7.s b/libc/sysv/consts/ABDAY_7.s index 9fcba98b0..b5ac1569f 100644 --- a/libc/sysv/consts/ABDAY_7.s +++ b/libc/sysv/consts/ABDAY_7.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABDAY_7 0x020006 20 20 19 0 +.syscon misc ABDAY_7 0x020006 20 20 19 19 0 diff --git a/libc/sysv/consts/ABORTED_COMMAND.s b/libc/sysv/consts/ABORTED_COMMAND.s index 33f146f1b..32f43e1ca 100644 --- a/libc/sysv/consts/ABORTED_COMMAND.s +++ b/libc/sysv/consts/ABORTED_COMMAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ABORTED_COMMAND 11 0 0 0 0 +.syscon misc ABORTED_COMMAND 11 0 0 0 0 0 diff --git a/libc/sysv/consts/ACCOUNTING.s b/libc/sysv/consts/ACCOUNTING.s index e61f840ca..10c3bea8b 100644 --- a/libc/sysv/consts/ACCOUNTING.s +++ b/libc/sysv/consts/ACCOUNTING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ACCOUNTING 9 9 0 0 0 +.syscon misc ACCOUNTING 9 9 0 0 0 0 diff --git a/libc/sysv/consts/ACCT_BYTEORDER.s b/libc/sysv/consts/ACCT_BYTEORDER.s index c731c88aa..778db16c2 100644 --- a/libc/sysv/consts/ACCT_BYTEORDER.s +++ b/libc/sysv/consts/ACCT_BYTEORDER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ACCT_BYTEORDER 0 0 0 0 0 +.syscon misc ACCT_BYTEORDER 0 0 0 0 0 0 diff --git a/libc/sysv/consts/ACCT_COMM.s b/libc/sysv/consts/ACCT_COMM.s index d456dea42..99926e598 100644 --- a/libc/sysv/consts/ACCT_COMM.s +++ b/libc/sysv/consts/ACCT_COMM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ACCT_COMM 0x10 0 0 0 0 +.syscon misc ACCT_COMM 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/ACK.s b/libc/sysv/consts/ACK.s index 50bb9a1fe..8000c48e5 100644 --- a/libc/sysv/consts/ACK.s +++ b/libc/sysv/consts/ACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ACK 4 4 4 4 0 +.syscon misc ACK 4 4 4 4 4 0 diff --git a/libc/sysv/consts/ACORE.s b/libc/sysv/consts/ACORE.s index 265c04493..22dd77d89 100644 --- a/libc/sysv/consts/ACORE.s +++ b/libc/sysv/consts/ACORE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ACORE 0 8 8 8 0 +.syscon misc ACORE 0 8 8 8 8 0 diff --git a/libc/sysv/consts/ADDR_COMPAT_LAYOUT.s b/libc/sysv/consts/ADDR_COMPAT_LAYOUT.s index fc7263626..dcfacfab2 100644 --- a/libc/sysv/consts/ADDR_COMPAT_LAYOUT.s +++ b/libc/sysv/consts/ADDR_COMPAT_LAYOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty ADDR_COMPAT_LAYOUT 0x0200000 -1 -1 -1 -1 +.syscon prsnlty ADDR_COMPAT_LAYOUT 0x0200000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ADDR_LIMIT_32BIT.s b/libc/sysv/consts/ADDR_LIMIT_32BIT.s index d1e7c997d..d8b82e89b 100644 --- a/libc/sysv/consts/ADDR_LIMIT_32BIT.s +++ b/libc/sysv/consts/ADDR_LIMIT_32BIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty ADDR_LIMIT_32BIT 0x0800000 -1 -1 -1 -1 +.syscon prsnlty ADDR_LIMIT_32BIT 0x0800000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ADDR_LIMIT_3GB.s b/libc/sysv/consts/ADDR_LIMIT_3GB.s index 8651ec7fc..c4fd546ff 100644 --- a/libc/sysv/consts/ADDR_LIMIT_3GB.s +++ b/libc/sysv/consts/ADDR_LIMIT_3GB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty ADDR_LIMIT_3GB 0x8000000 -1 -1 -1 -1 +.syscon prsnlty ADDR_LIMIT_3GB 0x8000000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ADDR_NO_RANDOMIZE.s b/libc/sysv/consts/ADDR_NO_RANDOMIZE.s index 6d3b32057..387656476 100644 --- a/libc/sysv/consts/ADDR_NO_RANDOMIZE.s +++ b/libc/sysv/consts/ADDR_NO_RANDOMIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty ADDR_NO_RANDOMIZE 0x0040000 -1 -1 -1 -1 +.syscon prsnlty ADDR_NO_RANDOMIZE 0x0040000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/AFORK.s b/libc/sysv/consts/AFORK.s index 97760d8d5..dddd03702 100644 --- a/libc/sysv/consts/AFORK.s +++ b/libc/sysv/consts/AFORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AFORK 0 1 1 1 0 +.syscon misc AFORK 0 1 1 1 1 0 diff --git a/libc/sysv/consts/AF_ALG.s b/libc/sysv/consts/AF_ALG.s index 87bf398af..0811a1012 100644 --- a/libc/sysv/consts/AF_ALG.s +++ b/libc/sysv/consts/AF_ALG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ALG 38 0 0 0 0 +.syscon af AF_ALG 38 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_APPLETALK.s b/libc/sysv/consts/AF_APPLETALK.s index 8ed1b31bf..b4b03b6ec 100644 --- a/libc/sysv/consts/AF_APPLETALK.s +++ b/libc/sysv/consts/AF_APPLETALK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_APPLETALK 5 0x10 0x10 0x10 0x10 +.syscon af AF_APPLETALK 5 0x10 0x10 0x10 0x10 0x10 diff --git a/libc/sysv/consts/AF_ASH.s b/libc/sysv/consts/AF_ASH.s index 2b93ea366..87acf59cf 100644 --- a/libc/sysv/consts/AF_ASH.s +++ b/libc/sysv/consts/AF_ASH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ASH 18 0 0 0 0 +.syscon af AF_ASH 18 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_ATMPVC.s b/libc/sysv/consts/AF_ATMPVC.s index 64abb3b6f..a089a373e 100644 --- a/libc/sysv/consts/AF_ATMPVC.s +++ b/libc/sysv/consts/AF_ATMPVC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ATMPVC 8 0 0 0 0 +.syscon af AF_ATMPVC 8 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_ATMSVC.s b/libc/sysv/consts/AF_ATMSVC.s index 71f05df57..1f24d9150 100644 --- a/libc/sysv/consts/AF_ATMSVC.s +++ b/libc/sysv/consts/AF_ATMSVC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ATMSVC 20 0 0 0 0 +.syscon af AF_ATMSVC 20 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_AX25.s b/libc/sysv/consts/AF_AX25.s index 6bf9e542e..e1fb56ab2 100644 --- a/libc/sysv/consts/AF_AX25.s +++ b/libc/sysv/consts/AF_AX25.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_AX25 3 0 0 0 0 +.syscon af AF_AX25 3 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_BLUETOOTH.s b/libc/sysv/consts/AF_BLUETOOTH.s index 20c4a722a..1be6da4c8 100644 --- a/libc/sysv/consts/AF_BLUETOOTH.s +++ b/libc/sysv/consts/AF_BLUETOOTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_BLUETOOTH 31 0 36 0x20 0 +.syscon af AF_BLUETOOTH 31 0 36 0x20 31 0 diff --git a/libc/sysv/consts/AF_BRIDGE.s b/libc/sysv/consts/AF_BRIDGE.s index 6769a52eb..89da8fa29 100644 --- a/libc/sysv/consts/AF_BRIDGE.s +++ b/libc/sysv/consts/AF_BRIDGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_BRIDGE 7 0 0 0 0 +.syscon af AF_BRIDGE 7 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_CAIF.s b/libc/sysv/consts/AF_CAIF.s index f62a0bf4d..2f783edc3 100644 --- a/libc/sysv/consts/AF_CAIF.s +++ b/libc/sysv/consts/AF_CAIF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_CAIF 37 0 0 0 0 +.syscon af AF_CAIF 37 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_CAN.s b/libc/sysv/consts/AF_CAN.s index b15520626..c4f5857b9 100644 --- a/libc/sysv/consts/AF_CAN.s +++ b/libc/sysv/consts/AF_CAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_CAN 29 0 0 0 0 +.syscon af AF_CAN 29 0 0 0 35 0 diff --git a/libc/sysv/consts/AF_ECONET.s b/libc/sysv/consts/AF_ECONET.s index c73acc9de..4a8e508a5 100644 --- a/libc/sysv/consts/AF_ECONET.s +++ b/libc/sysv/consts/AF_ECONET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ECONET 19 0 0 0 0 +.syscon af AF_ECONET 19 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_FILE.s b/libc/sysv/consts/AF_FILE.s index 706ea2658..29ae47c0d 100644 --- a/libc/sysv/consts/AF_FILE.s +++ b/libc/sysv/consts/AF_FILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_FILE 1 0 0 0 0 +.syscon af AF_FILE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_IB.s b/libc/sysv/consts/AF_IB.s index 79898aea9..036647e88 100644 --- a/libc/sysv/consts/AF_IB.s +++ b/libc/sysv/consts/AF_IB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_IB 27 0 0 0 0 +.syscon af AF_IB 27 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_IEEE802154.s b/libc/sysv/consts/AF_IEEE802154.s index 94884868e..5941b8e7c 100644 --- a/libc/sysv/consts/AF_IEEE802154.s +++ b/libc/sysv/consts/AF_IEEE802154.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_IEEE802154 36 0 0 0 0 +.syscon af AF_IEEE802154 36 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_INET.s b/libc/sysv/consts/AF_INET.s index 2e73582b0..be701dfb1 100644 --- a/libc/sysv/consts/AF_INET.s +++ b/libc/sysv/consts/AF_INET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_INET 2 2 2 2 2 +.syscon af AF_INET 2 2 2 2 2 2 diff --git a/libc/sysv/consts/AF_INET6.s b/libc/sysv/consts/AF_INET6.s index c14013981..456047f2a 100644 --- a/libc/sysv/consts/AF_INET6.s +++ b/libc/sysv/consts/AF_INET6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_INET6 10 30 28 24 23 +.syscon af AF_INET6 10 30 28 24 24 23 diff --git a/libc/sysv/consts/AF_IPX.s b/libc/sysv/consts/AF_IPX.s index 838a2564b..3442a9de5 100644 --- a/libc/sysv/consts/AF_IPX.s +++ b/libc/sysv/consts/AF_IPX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_IPX 4 23 23 23 0 +.syscon af AF_IPX 4 23 23 23 23 0 diff --git a/libc/sysv/consts/AF_IRDA.s b/libc/sysv/consts/AF_IRDA.s index e007407fa..9c88bc47d 100644 --- a/libc/sysv/consts/AF_IRDA.s +++ b/libc/sysv/consts/AF_IRDA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_IRDA 23 0 0 0 0 +.syscon af AF_IRDA 23 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_ISDN.s b/libc/sysv/consts/AF_ISDN.s index ba6fd3d85..e97d30950 100644 --- a/libc/sysv/consts/AF_ISDN.s +++ b/libc/sysv/consts/AF_ISDN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ISDN 34 28 26 26 0 +.syscon af AF_ISDN 34 28 26 26 26 0 diff --git a/libc/sysv/consts/AF_IUCV.s b/libc/sysv/consts/AF_IUCV.s index 7cac3f742..1ae1506a7 100644 --- a/libc/sysv/consts/AF_IUCV.s +++ b/libc/sysv/consts/AF_IUCV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_IUCV 0x20 0 0 0 0 +.syscon af AF_IUCV 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_KCM.s b/libc/sysv/consts/AF_KCM.s index 634cb4bac..646cd7cbd 100644 --- a/libc/sysv/consts/AF_KCM.s +++ b/libc/sysv/consts/AF_KCM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_KCM 41 0 0 0 0 +.syscon af AF_KCM 41 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_KEY.s b/libc/sysv/consts/AF_KEY.s index 1e586ca88..45a1e2494 100644 --- a/libc/sysv/consts/AF_KEY.s +++ b/libc/sysv/consts/AF_KEY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_KEY 15 0 0 30 0 +.syscon af AF_KEY 15 0 0 30 30 0 diff --git a/libc/sysv/consts/AF_LLC.s b/libc/sysv/consts/AF_LLC.s index e7e58e25d..af29c9d28 100644 --- a/libc/sysv/consts/AF_LLC.s +++ b/libc/sysv/consts/AF_LLC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_LLC 26 0 0 0 0 +.syscon af AF_LLC 26 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_LOCAL.s b/libc/sysv/consts/AF_LOCAL.s index 8666b72fd..21b0fbd79 100644 --- a/libc/sysv/consts/AF_LOCAL.s +++ b/libc/sysv/consts/AF_LOCAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_LOCAL 1 1 1 1 0 +.syscon af AF_LOCAL 1 1 1 1 1 0 diff --git a/libc/sysv/consts/AF_MAX.s b/libc/sysv/consts/AF_MAX.s index 44b45c52f..99a143cc3 100644 --- a/libc/sysv/consts/AF_MAX.s +++ b/libc/sysv/consts/AF_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_MAX 42 40 42 36 35 +.syscon af AF_MAX 42 40 42 36 37 35 diff --git a/libc/sysv/consts/AF_MPLS.s b/libc/sysv/consts/AF_MPLS.s index 0bb818216..e0cb20e83 100644 --- a/libc/sysv/consts/AF_MPLS.s +++ b/libc/sysv/consts/AF_MPLS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_MPLS 28 0 0 33 0 +.syscon af AF_MPLS 28 0 0 33 33 0 diff --git a/libc/sysv/consts/AF_NETBEUI.s b/libc/sysv/consts/AF_NETBEUI.s index 4771eaf4b..2ba47c17c 100644 --- a/libc/sysv/consts/AF_NETBEUI.s +++ b/libc/sysv/consts/AF_NETBEUI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_NETBEUI 13 0 0 0 0 +.syscon af AF_NETBEUI 13 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_NETLINK.s b/libc/sysv/consts/AF_NETLINK.s index c657a27aa..603e711f1 100644 --- a/libc/sysv/consts/AF_NETLINK.s +++ b/libc/sysv/consts/AF_NETLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_NETLINK 16 0 0 0 0 +.syscon af AF_NETLINK 16 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_NETROM.s b/libc/sysv/consts/AF_NETROM.s index e6f5e508e..c8077ca96 100644 --- a/libc/sysv/consts/AF_NETROM.s +++ b/libc/sysv/consts/AF_NETROM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_NETROM 6 0 0 0 0 +.syscon af AF_NETROM 6 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_NFC.s b/libc/sysv/consts/AF_NFC.s index 9344dcd82..a6ab03b45 100644 --- a/libc/sysv/consts/AF_NFC.s +++ b/libc/sysv/consts/AF_NFC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_NFC 39 0 0 0 0 +.syscon af AF_NFC 39 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_PACKET.s b/libc/sysv/consts/AF_PACKET.s index 8812930f3..4fb969d55 100644 --- a/libc/sysv/consts/AF_PACKET.s +++ b/libc/sysv/consts/AF_PACKET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_PACKET 17 0 0 0 0 +.syscon af AF_PACKET 17 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_PHONET.s b/libc/sysv/consts/AF_PHONET.s index 681c7911b..297178122 100644 --- a/libc/sysv/consts/AF_PHONET.s +++ b/libc/sysv/consts/AF_PHONET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_PHONET 35 0 0 0 0 +.syscon af AF_PHONET 35 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_PPPOX.s b/libc/sysv/consts/AF_PPPOX.s index 15730351b..19a7a2e9f 100644 --- a/libc/sysv/consts/AF_PPPOX.s +++ b/libc/sysv/consts/AF_PPPOX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_PPPOX 24 0 0 0 0 +.syscon af AF_PPPOX 24 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_RDS.s b/libc/sysv/consts/AF_RDS.s index 24f2e1ba9..9e39abc19 100644 --- a/libc/sysv/consts/AF_RDS.s +++ b/libc/sysv/consts/AF_RDS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_RDS 21 0 0 0 0 +.syscon af AF_RDS 21 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_ROSE.s b/libc/sysv/consts/AF_ROSE.s index a8142e4ac..90f5049b1 100644 --- a/libc/sysv/consts/AF_ROSE.s +++ b/libc/sysv/consts/AF_ROSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ROSE 11 0 0 0 0 +.syscon af AF_ROSE 11 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_ROUTE.s b/libc/sysv/consts/AF_ROUTE.s index 71e38688b..2f5975427 100644 --- a/libc/sysv/consts/AF_ROUTE.s +++ b/libc/sysv/consts/AF_ROUTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_ROUTE 16 17 17 17 0 +.syscon af AF_ROUTE 16 17 17 17 34 0 diff --git a/libc/sysv/consts/AF_RXRPC.s b/libc/sysv/consts/AF_RXRPC.s index 29c7e72d4..a1fb3c6d7 100644 --- a/libc/sysv/consts/AF_RXRPC.s +++ b/libc/sysv/consts/AF_RXRPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_RXRPC 33 0 0 0 0 +.syscon af AF_RXRPC 33 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_SECURITY.s b/libc/sysv/consts/AF_SECURITY.s index 675b07203..63abad0c5 100644 --- a/libc/sysv/consts/AF_SECURITY.s +++ b/libc/sysv/consts/AF_SECURITY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_SECURITY 14 0 0 0 0 +.syscon af AF_SECURITY 14 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_SNA.s b/libc/sysv/consts/AF_SNA.s index da6450731..a68ae8c93 100644 --- a/libc/sysv/consts/AF_SNA.s +++ b/libc/sysv/consts/AF_SNA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_SNA 22 11 11 11 11 +.syscon af AF_SNA 22 11 11 11 11 11 diff --git a/libc/sysv/consts/AF_TIPC.s b/libc/sysv/consts/AF_TIPC.s index edf96f1eb..50a2879b6 100644 --- a/libc/sysv/consts/AF_TIPC.s +++ b/libc/sysv/consts/AF_TIPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_TIPC 30 0 0 0 0 +.syscon af AF_TIPC 30 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_UNIX.s b/libc/sysv/consts/AF_UNIX.s index b385a055a..998dfb2dc 100644 --- a/libc/sysv/consts/AF_UNIX.s +++ b/libc/sysv/consts/AF_UNIX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_UNIX 1 1 1 1 1 +.syscon af AF_UNIX 1 1 1 1 1 1 diff --git a/libc/sysv/consts/AF_UNSPEC.s b/libc/sysv/consts/AF_UNSPEC.s index 00325cbba..a2be8dd4e 100644 --- a/libc/sysv/consts/AF_UNSPEC.s +++ b/libc/sysv/consts/AF_UNSPEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_UNSPEC 0 0 0 0 0 +.syscon af AF_UNSPEC 0 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_VSOCK.s b/libc/sysv/consts/AF_VSOCK.s index b36451d91..02bf9fe95 100644 --- a/libc/sysv/consts/AF_VSOCK.s +++ b/libc/sysv/consts/AF_VSOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_VSOCK 40 0 0 0 0 +.syscon af AF_VSOCK 40 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_WANPIPE.s b/libc/sysv/consts/AF_WANPIPE.s index 17d18ec56..d619483b8 100644 --- a/libc/sysv/consts/AF_WANPIPE.s +++ b/libc/sysv/consts/AF_WANPIPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_WANPIPE 25 0 0 0 0 +.syscon af AF_WANPIPE 25 0 0 0 0 0 diff --git a/libc/sysv/consts/AF_X25.s b/libc/sysv/consts/AF_X25.s index 0c9bac7d7..20ed9bf59 100644 --- a/libc/sysv/consts/AF_X25.s +++ b/libc/sysv/consts/AF_X25.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon af AF_X25 9 0 0 0 0 +.syscon af AF_X25 9 0 0 0 0 0 diff --git a/libc/sysv/consts/AHZ.s b/libc/sysv/consts/AHZ.s index df56d62b3..4e9102f33 100644 --- a/libc/sysv/consts/AHZ.s +++ b/libc/sysv/consts/AHZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AHZ 100 0x40 0 0x40 0 +.syscon misc AHZ 100 0x40 0 0x40 0x40 0 diff --git a/libc/sysv/consts/AIO_ALLDONE.s b/libc/sysv/consts/AIO_ALLDONE.s index 16a9dc853..68a70d7e6 100644 --- a/libc/sysv/consts/AIO_ALLDONE.s +++ b/libc/sysv/consts/AIO_ALLDONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AIO_ALLDONE 2 1 3 0 0 +.syscon misc AIO_ALLDONE 2 1 3 0 0 0 diff --git a/libc/sysv/consts/AIO_CANCELED.s b/libc/sysv/consts/AIO_CANCELED.s index ae55d286a..c022eec13 100644 --- a/libc/sysv/consts/AIO_CANCELED.s +++ b/libc/sysv/consts/AIO_CANCELED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AIO_CANCELED 0 2 1 0 0 +.syscon misc AIO_CANCELED 0 2 1 0 0 0 diff --git a/libc/sysv/consts/AIO_NOTCANCELED.s b/libc/sysv/consts/AIO_NOTCANCELED.s index 29436e479..5b41ccd9c 100644 --- a/libc/sysv/consts/AIO_NOTCANCELED.s +++ b/libc/sysv/consts/AIO_NOTCANCELED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AIO_NOTCANCELED 1 4 2 0 0 +.syscon misc AIO_NOTCANCELED 1 4 2 0 0 0 diff --git a/libc/sysv/consts/AI_ADDRCONFIG.s b/libc/sysv/consts/AI_ADDRCONFIG.s index a22e4f21f..60f02848b 100644 --- a/libc/sysv/consts/AI_ADDRCONFIG.s +++ b/libc/sysv/consts/AI_ADDRCONFIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon gai AI_ADDRCONFIG 0x20 0x0400 0x0400 0x40 0x0400 +.syscon gai AI_ADDRCONFIG 0x20 0x0400 0x0400 0x40 0x40 0x0400 diff --git a/libc/sysv/consts/AI_ALL.s b/libc/sysv/consts/AI_ALL.s index 0914579f9..865225e71 100644 --- a/libc/sysv/consts/AI_ALL.s +++ b/libc/sysv/consts/AI_ALL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon gai AI_ALL 0x10 0x0100 0x0100 0 0x0100 +.syscon gai AI_ALL 0x10 0x0100 0x0100 0 0 0x0100 diff --git a/libc/sysv/consts/AI_CANONNAME.s b/libc/sysv/consts/AI_CANONNAME.s index 2b8fbdf4d..5a757478e 100644 --- a/libc/sysv/consts/AI_CANONNAME.s +++ b/libc/sysv/consts/AI_CANONNAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon gai AI_CANONNAME 2 2 2 2 2 +.syscon gai AI_CANONNAME 2 2 2 2 2 2 diff --git a/libc/sysv/consts/AI_NUMERICHOST.s b/libc/sysv/consts/AI_NUMERICHOST.s index 20b9a9332..105ad39cb 100644 --- a/libc/sysv/consts/AI_NUMERICHOST.s +++ b/libc/sysv/consts/AI_NUMERICHOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon gai AI_NUMERICHOST 4 4 4 4 4 +.syscon gai AI_NUMERICHOST 4 4 4 4 4 4 diff --git a/libc/sysv/consts/AI_NUMERICSERV.s b/libc/sysv/consts/AI_NUMERICSERV.s index d000edea6..d80e96eb7 100644 --- a/libc/sysv/consts/AI_NUMERICSERV.s +++ b/libc/sysv/consts/AI_NUMERICSERV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon gai AI_NUMERICSERV 0x0400 0x1000 8 0x10 8 +.syscon gai AI_NUMERICSERV 0x0400 0x1000 8 0x10 0x10 8 diff --git a/libc/sysv/consts/AI_PASSIVE.s b/libc/sysv/consts/AI_PASSIVE.s index fabf55529..8793cd376 100644 --- a/libc/sysv/consts/AI_PASSIVE.s +++ b/libc/sysv/consts/AI_PASSIVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon gai AI_PASSIVE 1 1 1 1 1 +.syscon gai AI_PASSIVE 1 1 1 1 1 1 diff --git a/libc/sysv/consts/AI_V4MAPPED.s b/libc/sysv/consts/AI_V4MAPPED.s index d012f7ed9..7696799c6 100644 --- a/libc/sysv/consts/AI_V4MAPPED.s +++ b/libc/sysv/consts/AI_V4MAPPED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon gai AI_V4MAPPED 8 0x0800 0x0800 0 0x0800 +.syscon gai AI_V4MAPPED 8 0x0800 0x0800 0 0 0x0800 diff --git a/libc/sysv/consts/ALLOW_MEDIUM_REMOVAL.s b/libc/sysv/consts/ALLOW_MEDIUM_REMOVAL.s index 37c3f5e4a..bd5c48f67 100644 --- a/libc/sysv/consts/ALLOW_MEDIUM_REMOVAL.s +++ b/libc/sysv/consts/ALLOW_MEDIUM_REMOVAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ALLOW_MEDIUM_REMOVAL 30 0 0 0 0 +.syscon misc ALLOW_MEDIUM_REMOVAL 30 0 0 0 0 0 diff --git a/libc/sysv/consts/ALT_DIGITS.s b/libc/sysv/consts/ALT_DIGITS.s index 81b2c008b..2e452cb67 100644 --- a/libc/sysv/consts/ALT_DIGITS.s +++ b/libc/sysv/consts/ALT_DIGITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ALT_DIGITS 0x02002f 49 49 0 0 +.syscon misc ALT_DIGITS 0x02002f 49 49 0 0 0 diff --git a/libc/sysv/consts/AM_STR.s b/libc/sysv/consts/AM_STR.s index 73d763d8f..d0fd29572 100644 --- a/libc/sysv/consts/AM_STR.s +++ b/libc/sysv/consts/AM_STR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AM_STR 0x020026 5 5 4 0 +.syscon misc AM_STR 0x020026 5 5 4 4 0 diff --git a/libc/sysv/consts/AREGTYPE.s b/libc/sysv/consts/AREGTYPE.s index 080e8ae50..2273aa98d 100644 --- a/libc/sysv/consts/AREGTYPE.s +++ b/libc/sysv/consts/AREGTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AREGTYPE 0 0 0 0 0 +.syscon misc AREGTYPE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/ARPHRD_ETHER.s b/libc/sysv/consts/ARPHRD_ETHER.s index a877799ba..d884c0737 100644 --- a/libc/sysv/consts/ARPHRD_ETHER.s +++ b/libc/sysv/consts/ARPHRD_ETHER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_ETHER 1 1 1 1 0 +.syscon misc ARPHRD_ETHER 1 1 1 1 1 0 diff --git a/libc/sysv/consts/ARPHRD_FCFABRIC.s b/libc/sysv/consts/ARPHRD_FCFABRIC.s index 8347a1fe3..fbb7d0cbe 100644 --- a/libc/sysv/consts/ARPHRD_FCFABRIC.s +++ b/libc/sysv/consts/ARPHRD_FCFABRIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_FCFABRIC 787 0 0 0 0 +.syscon misc ARPHRD_FCFABRIC 787 0 0 0 0 0 diff --git a/libc/sysv/consts/ARPHRD_IEEE80211.s b/libc/sysv/consts/ARPHRD_IEEE80211.s index aade2837c..6c95b8438 100644 --- a/libc/sysv/consts/ARPHRD_IEEE80211.s +++ b/libc/sysv/consts/ARPHRD_IEEE80211.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_IEEE80211 801 0 0 0 0 +.syscon misc ARPHRD_IEEE80211 801 0 0 0 0 0 diff --git a/libc/sysv/consts/ARPHRD_IEEE80211_PRISM.s b/libc/sysv/consts/ARPHRD_IEEE80211_PRISM.s index e85fbe150..89fcc2698 100644 --- a/libc/sysv/consts/ARPHRD_IEEE80211_PRISM.s +++ b/libc/sysv/consts/ARPHRD_IEEE80211_PRISM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_IEEE80211_PRISM 802 0 0 0 0 +.syscon misc ARPHRD_IEEE80211_PRISM 802 0 0 0 0 0 diff --git a/libc/sysv/consts/ARPHRD_IEEE80211_RADIOTAP.s b/libc/sysv/consts/ARPHRD_IEEE80211_RADIOTAP.s index c3961d46c..e9599ce61 100644 --- a/libc/sysv/consts/ARPHRD_IEEE80211_RADIOTAP.s +++ b/libc/sysv/consts/ARPHRD_IEEE80211_RADIOTAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_IEEE80211_RADIOTAP 803 0 0 0 0 +.syscon misc ARPHRD_IEEE80211_RADIOTAP 803 0 0 0 0 0 diff --git a/libc/sysv/consts/ARPHRD_IEEE802154.s b/libc/sysv/consts/ARPHRD_IEEE802154.s index c50e3754c..b7ae2c0a6 100644 --- a/libc/sysv/consts/ARPHRD_IEEE802154.s +++ b/libc/sysv/consts/ARPHRD_IEEE802154.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_IEEE802154 804 0 0 0 0 +.syscon misc ARPHRD_IEEE802154 804 0 0 0 0 0 diff --git a/libc/sysv/consts/ARPHRD_IEEE802_TR.s b/libc/sysv/consts/ARPHRD_IEEE802_TR.s index 70c940d56..86a92c01e 100644 --- a/libc/sysv/consts/ARPHRD_IEEE802_TR.s +++ b/libc/sysv/consts/ARPHRD_IEEE802_TR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_IEEE802_TR 800 0 0 0 0 +.syscon misc ARPHRD_IEEE802_TR 800 0 0 0 0 0 diff --git a/libc/sysv/consts/ARPHRD_LOCALTLK.s b/libc/sysv/consts/ARPHRD_LOCALTLK.s index 76ee0e047..30d55bf78 100644 --- a/libc/sysv/consts/ARPHRD_LOCALTLK.s +++ b/libc/sysv/consts/ARPHRD_LOCALTLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ARPHRD_LOCALTLK 773 0 0 0 0 +.syscon misc ARPHRD_LOCALTLK 773 0 0 0 0 0 diff --git a/libc/sysv/consts/ASU.s b/libc/sysv/consts/ASU.s index be66314a2..3c01ec086 100644 --- a/libc/sysv/consts/ASU.s +++ b/libc/sysv/consts/ASU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ASU 0 2 2 2 0 +.syscon misc ASU 0 2 2 2 2 0 diff --git a/libc/sysv/consts/ATF_NETMASK.s b/libc/sysv/consts/ATF_NETMASK.s index 46c1c5131..1323e6a8a 100644 --- a/libc/sysv/consts/ATF_NETMASK.s +++ b/libc/sysv/consts/ATF_NETMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ATF_NETMASK 0x20 0 0 0 0 +.syscon misc ATF_NETMASK 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_BASE.s b/libc/sysv/consts/AT_BASE.s index f9c374bbd..16191961b 100644 --- a/libc/sysv/consts/AT_BASE.s +++ b/libc/sysv/consts/AT_BASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_BASE 7 0 7 0 0 +.syscon auxv AT_BASE 7 0 7 0 7 0 diff --git a/libc/sysv/consts/AT_BASE_PLATFORM.s b/libc/sysv/consts/AT_BASE_PLATFORM.s index e8253228f..6f53c6015 100644 --- a/libc/sysv/consts/AT_BASE_PLATFORM.s +++ b/libc/sysv/consts/AT_BASE_PLATFORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_BASE_PLATFORM 24 0 0 0 0 +.syscon auxv AT_BASE_PLATFORM 24 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_CLKTCK.s b/libc/sysv/consts/AT_CLKTCK.s index 45cbad314..1b3ec6f23 100644 --- a/libc/sysv/consts/AT_CLKTCK.s +++ b/libc/sysv/consts/AT_CLKTCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_CLKTCK 17 0 0 0 0 +.syscon auxv AT_CLKTCK 17 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_DCACHEBSIZE.s b/libc/sysv/consts/AT_DCACHEBSIZE.s index e0685a62b..3c728cc56 100644 --- a/libc/sysv/consts/AT_DCACHEBSIZE.s +++ b/libc/sysv/consts/AT_DCACHEBSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_DCACHEBSIZE 19 0 0 0 0 +.syscon auxv AT_DCACHEBSIZE 19 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_EACCESS.s b/libc/sysv/consts/AT_EACCESS.s index 89bb0eaa7..d9bbbca54 100644 --- a/libc/sysv/consts/AT_EACCESS.s +++ b/libc/sysv/consts/AT_EACCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon at AT_EACCESS 0x0200 0x10 0x0100 1 0 +.syscon at AT_EACCESS 0x0200 0x10 0x0100 1 0x100 0 diff --git a/libc/sysv/consts/AT_EGID.s b/libc/sysv/consts/AT_EGID.s index 2439acb0e..61dae6c18 100644 --- a/libc/sysv/consts/AT_EGID.s +++ b/libc/sysv/consts/AT_EGID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_EGID 14 0 0 0 0 +.syscon auxv AT_EGID 14 0 0 0 2002 0 diff --git a/libc/sysv/consts/AT_EMPTY_PATH.s b/libc/sysv/consts/AT_EMPTY_PATH.s index 3c02ce464..9d52abdae 100644 --- a/libc/sysv/consts/AT_EMPTY_PATH.s +++ b/libc/sysv/consts/AT_EMPTY_PATH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon at AT_EMPTY_PATH 0x1000 0 0 0 0 +.syscon at AT_EMPTY_PATH 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_ENTRY.s b/libc/sysv/consts/AT_ENTRY.s index cfa148c30..a24bab0cf 100644 --- a/libc/sysv/consts/AT_ENTRY.s +++ b/libc/sysv/consts/AT_ENTRY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_ENTRY 9 0 9 0 0 +.syscon auxv AT_ENTRY 9 0 9 0 9 0 diff --git a/libc/sysv/consts/AT_EUID.s b/libc/sysv/consts/AT_EUID.s index 241b2548d..4c58934da 100644 --- a/libc/sysv/consts/AT_EUID.s +++ b/libc/sysv/consts/AT_EUID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_EUID 12 0 0 0 0 +.syscon auxv AT_EUID 12 0 0 0 2000 0 diff --git a/libc/sysv/consts/AT_EXECFD.s b/libc/sysv/consts/AT_EXECFD.s index b34c71757..9f6cf8bf4 100644 --- a/libc/sysv/consts/AT_EXECFD.s +++ b/libc/sysv/consts/AT_EXECFD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_EXECFD 2 0 2 0 0 +.syscon auxv AT_EXECFD 2 0 2 0 2 0 diff --git a/libc/sysv/consts/AT_EXECFN.s b/libc/sysv/consts/AT_EXECFN.s index 97900473b..5074d264b 100644 --- a/libc/sysv/consts/AT_EXECFN.s +++ b/libc/sysv/consts/AT_EXECFN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_EXECFN 31 31 999 999 999 +.syscon auxv AT_EXECFN 31 31 999 999 2014 999 diff --git a/libc/sysv/consts/AT_FDCWD.s b/libc/sysv/consts/AT_FDCWD.s index 7e91d76b2..2f08b7c0b 100644 --- a/libc/sysv/consts/AT_FDCWD.s +++ b/libc/sysv/consts/AT_FDCWD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon at AT_FDCWD -100 -2 -100 -100 -100 +.syscon at AT_FDCWD -100 -2 -100 -100 -100 -100 diff --git a/libc/sysv/consts/AT_GID.s b/libc/sysv/consts/AT_GID.s index 4ef1e1915..ac8d7e979 100644 --- a/libc/sysv/consts/AT_GID.s +++ b/libc/sysv/consts/AT_GID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_GID 13 0 0 0 0 +.syscon auxv AT_GID 13 0 0 0 2003 0 diff --git a/libc/sysv/consts/AT_ICACHEBSIZE.s b/libc/sysv/consts/AT_ICACHEBSIZE.s index 4ef616ae5..d361f9842 100644 --- a/libc/sysv/consts/AT_ICACHEBSIZE.s +++ b/libc/sysv/consts/AT_ICACHEBSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_ICACHEBSIZE 20 0 0 0 0 +.syscon auxv AT_ICACHEBSIZE 20 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_NOTELF.s b/libc/sysv/consts/AT_NOTELF.s index 35094a7da..bcbce2262 100644 --- a/libc/sysv/consts/AT_NOTELF.s +++ b/libc/sysv/consts/AT_NOTELF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_NOTELF 10 0 10 0 0 +.syscon auxv AT_NOTELF 10 0 10 0 0 0 diff --git a/libc/sysv/consts/AT_NO_AUTOMOUNT.s b/libc/sysv/consts/AT_NO_AUTOMOUNT.s index 427e7b39e..e96144d17 100644 --- a/libc/sysv/consts/AT_NO_AUTOMOUNT.s +++ b/libc/sysv/consts/AT_NO_AUTOMOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_NO_AUTOMOUNT 0x0800 0 0 0 0 +.syscon auxv AT_NO_AUTOMOUNT 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_OSRELDATE.s b/libc/sysv/consts/AT_OSRELDATE.s index 91eb8548c..9e0b78396 100644 --- a/libc/sysv/consts/AT_OSRELDATE.s +++ b/libc/sysv/consts/AT_OSRELDATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_OSRELDATE 0 0 18 0 0 +.syscon auxv AT_OSRELDATE 0 0 18 0 0 0 diff --git a/libc/sysv/consts/AT_PAGESZ.s b/libc/sysv/consts/AT_PAGESZ.s index e390da14d..e0e249c5e 100644 --- a/libc/sysv/consts/AT_PAGESZ.s +++ b/libc/sysv/consts/AT_PAGESZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_PAGESZ 6 0 6 0 0 +.syscon auxv AT_PAGESZ 6 0 6 0 6 0 diff --git a/libc/sysv/consts/AT_PHDR.s b/libc/sysv/consts/AT_PHDR.s index 5bc69a91b..20c6d70a7 100644 --- a/libc/sysv/consts/AT_PHDR.s +++ b/libc/sysv/consts/AT_PHDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_PHDR 3 0 3 0 0 +.syscon auxv AT_PHDR 3 0 3 0 3 0 diff --git a/libc/sysv/consts/AT_PHENT.s b/libc/sysv/consts/AT_PHENT.s index 202b5a99f..5270479d8 100644 --- a/libc/sysv/consts/AT_PHENT.s +++ b/libc/sysv/consts/AT_PHENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_PHENT 4 0 4 0 0 +.syscon auxv AT_PHENT 4 0 4 0 4 0 diff --git a/libc/sysv/consts/AT_PHNUM.s b/libc/sysv/consts/AT_PHNUM.s index 97b4b668c..e2b1cb4f6 100644 --- a/libc/sysv/consts/AT_PHNUM.s +++ b/libc/sysv/consts/AT_PHNUM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_PHNUM 5 0 5 0 0 +.syscon auxv AT_PHNUM 5 0 5 0 5 0 diff --git a/libc/sysv/consts/AT_PLATFORM.s b/libc/sysv/consts/AT_PLATFORM.s index 20a93b538..216997434 100644 --- a/libc/sysv/consts/AT_PLATFORM.s +++ b/libc/sysv/consts/AT_PLATFORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_PLATFORM 15 0 0 0 0 +.syscon auxv AT_PLATFORM 15 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_RANDOM.s b/libc/sysv/consts/AT_RANDOM.s index f5ccb86ba..4df837802 100644 --- a/libc/sysv/consts/AT_RANDOM.s +++ b/libc/sysv/consts/AT_RANDOM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_RANDOM 25 0 0 0 0 +.syscon auxv AT_RANDOM 25 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_REMOVEDIR.s b/libc/sysv/consts/AT_REMOVEDIR.s index e650fe715..98b4f3cbe 100644 --- a/libc/sysv/consts/AT_REMOVEDIR.s +++ b/libc/sysv/consts/AT_REMOVEDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon at AT_REMOVEDIR 0x0200 0x80 0x0800 8 0x0200 +.syscon at AT_REMOVEDIR 0x0200 0x80 0x0800 8 0x800 0x0200 diff --git a/libc/sysv/consts/AT_SECURE.s b/libc/sysv/consts/AT_SECURE.s index f47fe493a..7c06e81a5 100644 --- a/libc/sysv/consts/AT_SECURE.s +++ b/libc/sysv/consts/AT_SECURE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_SECURE 23 0 0 0 0 +.syscon auxv AT_SECURE 23 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_SYMLINK_FOLLOW.s b/libc/sysv/consts/AT_SYMLINK_FOLLOW.s index 8c74bbdd9..5ea09557a 100644 --- a/libc/sysv/consts/AT_SYMLINK_FOLLOW.s +++ b/libc/sysv/consts/AT_SYMLINK_FOLLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon at AT_SYMLINK_FOLLOW 0x0400 0x40 0x0400 4 0 +.syscon at AT_SYMLINK_FOLLOW 0x0400 0x40 0x0400 4 4 0 diff --git a/libc/sysv/consts/AT_SYMLINK_NOFOLLOW.s b/libc/sysv/consts/AT_SYMLINK_NOFOLLOW.s index fc8d86a87..f2e77e560 100644 --- a/libc/sysv/consts/AT_SYMLINK_NOFOLLOW.s +++ b/libc/sysv/consts/AT_SYMLINK_NOFOLLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon at AT_SYMLINK_NOFOLLOW 0x0100 0x20 0x0200 2 0 +.syscon at AT_SYMLINK_NOFOLLOW 0x0100 0x20 0x0200 2 0x200 0 diff --git a/libc/sysv/consts/AT_SYSINFO_EHDR.s b/libc/sysv/consts/AT_SYSINFO_EHDR.s index 0bcc5f10b..75c980343 100644 --- a/libc/sysv/consts/AT_SYSINFO_EHDR.s +++ b/libc/sysv/consts/AT_SYSINFO_EHDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_SYSINFO_EHDR 33 0 0 0 0 +.syscon auxv AT_SYSINFO_EHDR 33 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_UCACHEBSIZE.s b/libc/sysv/consts/AT_UCACHEBSIZE.s index 15f865626..39fc200c3 100644 --- a/libc/sysv/consts/AT_UCACHEBSIZE.s +++ b/libc/sysv/consts/AT_UCACHEBSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_UCACHEBSIZE 21 0 0 0 0 +.syscon auxv AT_UCACHEBSIZE 21 0 0 0 0 0 diff --git a/libc/sysv/consts/AT_UID.s b/libc/sysv/consts/AT_UID.s index ddc2ef632..03b141678 100644 --- a/libc/sysv/consts/AT_UID.s +++ b/libc/sysv/consts/AT_UID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon auxv AT_UID 11 0 0 0 0 +.syscon auxv AT_UID 11 0 0 0 2001 0 diff --git a/libc/sysv/consts/AXSIG.s b/libc/sysv/consts/AXSIG.s index f38320f0d..4059147df 100644 --- a/libc/sysv/consts/AXSIG.s +++ b/libc/sysv/consts/AXSIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc AXSIG 0 0x10 0x10 0x10 0 +.syscon misc AXSIG 0 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/B0.s b/libc/sysv/consts/B0.s index bb97f6392..140ad2dce 100644 --- a/libc/sysv/consts/B0.s +++ b/libc/sysv/consts/B0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B0 0 0 0 0 0 +.syscon misc B0 0 0 0 0 0 0 diff --git a/libc/sysv/consts/B1000000.s b/libc/sysv/consts/B1000000.s index c6be45e54..10d596218 100644 --- a/libc/sysv/consts/B1000000.s +++ b/libc/sysv/consts/B1000000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B1000000 0x1008 0 0 0 0 +.syscon misc B1000000 0x1008 0 0 0 0 0 diff --git a/libc/sysv/consts/B110.s b/libc/sysv/consts/B110.s index c13750746..c0cef0c2a 100644 --- a/libc/sysv/consts/B110.s +++ b/libc/sysv/consts/B110.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B110 3 110 110 110 0 +.syscon misc B110 3 110 110 110 110 0 diff --git a/libc/sysv/consts/B115200.s b/libc/sysv/consts/B115200.s index 9bd3f557c..a4fc199b8 100644 --- a/libc/sysv/consts/B115200.s +++ b/libc/sysv/consts/B115200.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B115200 0x1002 0x01c200 0x01c200 0x01c200 0 +.syscon misc B115200 0x1002 0x01c200 0x01c200 0x01c200 0x01c200 0 diff --git a/libc/sysv/consts/B1152000.s b/libc/sysv/consts/B1152000.s index 08e24bde7..62a01a98e 100644 --- a/libc/sysv/consts/B1152000.s +++ b/libc/sysv/consts/B1152000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B1152000 0x1009 0 0 0 0 +.syscon misc B1152000 0x1009 0 0 0 0 0 diff --git a/libc/sysv/consts/B1200.s b/libc/sysv/consts/B1200.s index 8ce8b0c12..4f7879ac4 100644 --- a/libc/sysv/consts/B1200.s +++ b/libc/sysv/consts/B1200.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B1200 9 0x04b0 0x04b0 0x04b0 0 +.syscon misc B1200 9 0x04b0 0x04b0 0x04b0 0x04b0 0 diff --git a/libc/sysv/consts/B134.s b/libc/sysv/consts/B134.s index 0befb0f16..f6f3afa00 100644 --- a/libc/sysv/consts/B134.s +++ b/libc/sysv/consts/B134.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B134 4 134 134 134 0 +.syscon misc B134 4 134 134 134 134 0 diff --git a/libc/sysv/consts/B150.s b/libc/sysv/consts/B150.s index a631da942..e23b0e711 100644 --- a/libc/sysv/consts/B150.s +++ b/libc/sysv/consts/B150.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B150 5 150 150 150 0 +.syscon misc B150 5 150 150 150 150 0 diff --git a/libc/sysv/consts/B1500000.s b/libc/sysv/consts/B1500000.s index 58dd05ecc..b1f5e1c05 100644 --- a/libc/sysv/consts/B1500000.s +++ b/libc/sysv/consts/B1500000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B1500000 0x100a 0 0 0 0 +.syscon misc B1500000 0x100a 0 0 0 0 0 diff --git a/libc/sysv/consts/B1800.s b/libc/sysv/consts/B1800.s index 43455ad94..83036d7a5 100644 --- a/libc/sysv/consts/B1800.s +++ b/libc/sysv/consts/B1800.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B1800 10 0x0708 0x0708 0x0708 0 +.syscon misc B1800 10 0x0708 0x0708 0x0708 0x0708 0 diff --git a/libc/sysv/consts/B19200.s b/libc/sysv/consts/B19200.s index 5af921d70..d05777923 100644 --- a/libc/sysv/consts/B19200.s +++ b/libc/sysv/consts/B19200.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B19200 14 0x4b00 0x4b00 0x4b00 0 +.syscon misc B19200 14 0x4b00 0x4b00 0x4b00 0x4b00 0 diff --git a/libc/sysv/consts/B200.s b/libc/sysv/consts/B200.s index 1559cf5a8..24766a198 100644 --- a/libc/sysv/consts/B200.s +++ b/libc/sysv/consts/B200.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B200 6 200 200 200 0 +.syscon misc B200 6 200 200 200 200 0 diff --git a/libc/sysv/consts/B2000000.s b/libc/sysv/consts/B2000000.s index 4d155dece..0e843e622 100644 --- a/libc/sysv/consts/B2000000.s +++ b/libc/sysv/consts/B2000000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B2000000 0x100b 0 0 0 0 +.syscon misc B2000000 0x100b 0 0 0 0 0 diff --git a/libc/sysv/consts/B230400.s b/libc/sysv/consts/B230400.s index d13fec88b..c59d03fe8 100644 --- a/libc/sysv/consts/B230400.s +++ b/libc/sysv/consts/B230400.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B230400 0x1003 0x038400 0x038400 0x038400 0 +.syscon misc B230400 0x1003 0x038400 0x038400 0x038400 0x038400 0 diff --git a/libc/sysv/consts/B2400.s b/libc/sysv/consts/B2400.s index d29097878..9d235644c 100644 --- a/libc/sysv/consts/B2400.s +++ b/libc/sysv/consts/B2400.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B2400 11 0x0960 0x0960 0x0960 0 +.syscon misc B2400 11 0x0960 0x0960 0x0960 0x0960 0 diff --git a/libc/sysv/consts/B2500000.s b/libc/sysv/consts/B2500000.s index b990dab03..106b447a1 100644 --- a/libc/sysv/consts/B2500000.s +++ b/libc/sysv/consts/B2500000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B2500000 0x100c 0 0 0 0 +.syscon misc B2500000 0x100c 0 0 0 0 0 diff --git a/libc/sysv/consts/B300.s b/libc/sysv/consts/B300.s index 1ca19f67f..5dc1904e9 100644 --- a/libc/sysv/consts/B300.s +++ b/libc/sysv/consts/B300.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B300 7 300 300 300 0 +.syscon misc B300 7 300 300 300 300 0 diff --git a/libc/sysv/consts/B3000000.s b/libc/sysv/consts/B3000000.s index bd04c99e0..292770556 100644 --- a/libc/sysv/consts/B3000000.s +++ b/libc/sysv/consts/B3000000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B3000000 0x100d 0 0 0 0 +.syscon misc B3000000 0x100d 0 0 0 0 0 diff --git a/libc/sysv/consts/B3500000.s b/libc/sysv/consts/B3500000.s index 3b66747ca..55ca579c2 100644 --- a/libc/sysv/consts/B3500000.s +++ b/libc/sysv/consts/B3500000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B3500000 0x100e 0 0 0 0 +.syscon misc B3500000 0x100e 0 0 0 0 0 diff --git a/libc/sysv/consts/B38400.s b/libc/sysv/consts/B38400.s index 70ba6de28..d688898b7 100644 --- a/libc/sysv/consts/B38400.s +++ b/libc/sysv/consts/B38400.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B38400 15 0x9600 0x9600 0x9600 0 +.syscon misc B38400 15 0x9600 0x9600 0x9600 0x9600 0 diff --git a/libc/sysv/consts/B4000000.s b/libc/sysv/consts/B4000000.s index eaaba1e47..74129c700 100644 --- a/libc/sysv/consts/B4000000.s +++ b/libc/sysv/consts/B4000000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B4000000 0x100f 0 0 0 0 +.syscon misc B4000000 0x100f 0 0 0 0 0 diff --git a/libc/sysv/consts/B460800.s b/libc/sysv/consts/B460800.s index cbb5ba75e..050bb87c1 100644 --- a/libc/sysv/consts/B460800.s +++ b/libc/sysv/consts/B460800.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B460800 0x1004 0 0x070800 0 0 +.syscon misc B460800 0x1004 0 0x070800 0 0 0 diff --git a/libc/sysv/consts/B4800.s b/libc/sysv/consts/B4800.s index cb7632af5..529a7fb25 100644 --- a/libc/sysv/consts/B4800.s +++ b/libc/sysv/consts/B4800.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B4800 12 0x12c0 0x12c0 0x12c0 0 +.syscon misc B4800 12 0x12c0 0x12c0 0x12c0 0x12c0 0 diff --git a/libc/sysv/consts/B50.s b/libc/sysv/consts/B50.s index 423dd2ecf..ebab77f76 100644 --- a/libc/sysv/consts/B50.s +++ b/libc/sysv/consts/B50.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B50 1 50 50 50 0 +.syscon misc B50 1 50 50 50 50 0 diff --git a/libc/sysv/consts/B500000.s b/libc/sysv/consts/B500000.s index dce4276c0..a4d188f08 100644 --- a/libc/sysv/consts/B500000.s +++ b/libc/sysv/consts/B500000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B500000 0x1005 0 0 0 0 +.syscon misc B500000 0x1005 0 0 0 0 0 diff --git a/libc/sysv/consts/B57600.s b/libc/sysv/consts/B57600.s index cbe138a1e..2c56ed14b 100644 --- a/libc/sysv/consts/B57600.s +++ b/libc/sysv/consts/B57600.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B57600 0x1001 0xe100 0xe100 0xe100 0 +.syscon misc B57600 0x1001 0xe100 0xe100 0xe100 0xe100 0 diff --git a/libc/sysv/consts/B576000.s b/libc/sysv/consts/B576000.s index fe3c0c7c0..7a8af059e 100644 --- a/libc/sysv/consts/B576000.s +++ b/libc/sysv/consts/B576000.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B576000 0x1006 0 0 0 0 +.syscon misc B576000 0x1006 0 0 0 0 0 diff --git a/libc/sysv/consts/B600.s b/libc/sysv/consts/B600.s index 91263c49c..28c2a87c2 100644 --- a/libc/sysv/consts/B600.s +++ b/libc/sysv/consts/B600.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B600 8 600 600 600 0 +.syscon misc B600 8 600 600 600 600 0 diff --git a/libc/sysv/consts/B75.s b/libc/sysv/consts/B75.s index 84bd3746d..b33367968 100644 --- a/libc/sysv/consts/B75.s +++ b/libc/sysv/consts/B75.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B75 2 75 75 75 0 +.syscon misc B75 2 75 75 75 75 0 diff --git a/libc/sysv/consts/B921600.s b/libc/sysv/consts/B921600.s index e51e887d1..ada76d13c 100644 --- a/libc/sysv/consts/B921600.s +++ b/libc/sysv/consts/B921600.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B921600 0x1007 0 0x0e1000 0 0 +.syscon misc B921600 0x1007 0 0x0e1000 0 0 0 diff --git a/libc/sysv/consts/B9600.s b/libc/sysv/consts/B9600.s index 7e283b0b1..a0a0ef810 100644 --- a/libc/sysv/consts/B9600.s +++ b/libc/sysv/consts/B9600.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc B9600 13 0x2580 0x2580 0x2580 0 +.syscon misc B9600 13 0x2580 0x2580 0x2580 0x2580 0 diff --git a/libc/sysv/consts/BC_BASE_MAX.s b/libc/sysv/consts/BC_BASE_MAX.s index 8570f77ba..6aada9e0f 100644 --- a/libc/sysv/consts/BC_BASE_MAX.s +++ b/libc/sysv/consts/BC_BASE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BC_BASE_MAX 99 99 99 0x7fffffff 0 +.syscon misc BC_BASE_MAX 99 99 99 0x7fffffff 0x7fffffff 0 diff --git a/libc/sysv/consts/BC_DIM_MAX.s b/libc/sysv/consts/BC_DIM_MAX.s index 43058744e..b2fdf553e 100644 --- a/libc/sysv/consts/BC_DIM_MAX.s +++ b/libc/sysv/consts/BC_DIM_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BC_DIM_MAX 0x0800 0x0800 0x0800 0xffff 0 +.syscon misc BC_DIM_MAX 0x0800 0x0800 0x0800 0xffff 0xffff 0 diff --git a/libc/sysv/consts/BC_SCALE_MAX.s b/libc/sysv/consts/BC_SCALE_MAX.s index 7d6de7537..d2ccfda0c 100644 --- a/libc/sysv/consts/BC_SCALE_MAX.s +++ b/libc/sysv/consts/BC_SCALE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BC_SCALE_MAX 99 99 99 0x7fffffff 0 +.syscon misc BC_SCALE_MAX 99 99 99 0x7fffffff 0x7fffffff 0 diff --git a/libc/sysv/consts/BC_STRING_MAX.s b/libc/sysv/consts/BC_STRING_MAX.s index e61e50b03..188d92157 100644 --- a/libc/sysv/consts/BC_STRING_MAX.s +++ b/libc/sysv/consts/BC_STRING_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x7fffffff 0 +.syscon misc BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x7fffffff 0x7fffffff 0 diff --git a/libc/sysv/consts/BIG_ENDIAN.s b/libc/sysv/consts/BIG_ENDIAN.s index a6ff0b830..95147ceee 100644 --- a/libc/sysv/consts/BIG_ENDIAN.s +++ b/libc/sysv/consts/BIG_ENDIAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BIG_ENDIAN 0x10e1 0x10e1 0x10e1 0x10e1 0 +.syscon misc BIG_ENDIAN 0x10e1 0x10e1 0x10e1 0x10e1 0x10e1 0 diff --git a/libc/sysv/consts/BITSPERBYTE.s b/libc/sysv/consts/BITSPERBYTE.s index b64e8d419..39f96c009 100644 --- a/libc/sysv/consts/BITSPERBYTE.s +++ b/libc/sysv/consts/BITSPERBYTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BITSPERBYTE 8 0 0 0 0 +.syscon misc BITSPERBYTE 8 0 0 0 0 0 diff --git a/libc/sysv/consts/BLANK_CHECK.s b/libc/sysv/consts/BLANK_CHECK.s index 34d36e53c..f540ea20f 100644 --- a/libc/sysv/consts/BLANK_CHECK.s +++ b/libc/sysv/consts/BLANK_CHECK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLANK_CHECK 8 0 0 0 0 +.syscon misc BLANK_CHECK 8 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKBSZGET.s b/libc/sysv/consts/BLKBSZGET.s index 8e863456e..2bc54a371 100644 --- a/libc/sysv/consts/BLKBSZGET.s +++ b/libc/sysv/consts/BLKBSZGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKBSZGET 0x80081270 0 0 0 0 +.syscon misc BLKBSZGET 0x80081270 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKBSZSET.s b/libc/sysv/consts/BLKBSZSET.s index 8d425117e..1e8b4941f 100644 --- a/libc/sysv/consts/BLKBSZSET.s +++ b/libc/sysv/consts/BLKBSZSET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKBSZSET 0x40081271 0 0 0 0 +.syscon misc BLKBSZSET 0x40081271 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKFLSBUF.s b/libc/sysv/consts/BLKFLSBUF.s index 6e0673eda..c6c237493 100644 --- a/libc/sysv/consts/BLKFLSBUF.s +++ b/libc/sysv/consts/BLKFLSBUF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKFLSBUF 0x1261 0 0 0 0 +.syscon misc BLKFLSBUF 0x1261 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKFRAGET.s b/libc/sysv/consts/BLKFRAGET.s index bfc3317f2..0fcf03291 100644 --- a/libc/sysv/consts/BLKFRAGET.s +++ b/libc/sysv/consts/BLKFRAGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKFRAGET 0x1265 0 0 0 0 +.syscon misc BLKFRAGET 0x1265 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKFRASET.s b/libc/sysv/consts/BLKFRASET.s index 40d6e7c40..84c14140f 100644 --- a/libc/sysv/consts/BLKFRASET.s +++ b/libc/sysv/consts/BLKFRASET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKFRASET 0x1264 0 0 0 0 +.syscon misc BLKFRASET 0x1264 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKGETSIZE.s b/libc/sysv/consts/BLKGETSIZE.s index 107366364..e44ba8d43 100644 --- a/libc/sysv/consts/BLKGETSIZE.s +++ b/libc/sysv/consts/BLKGETSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKGETSIZE 0x1260 0 0 0 0 +.syscon misc BLKGETSIZE 0x1260 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKGETSIZE64.s b/libc/sysv/consts/BLKGETSIZE64.s index 626fb0f1f..a3c369d18 100644 --- a/libc/sysv/consts/BLKGETSIZE64.s +++ b/libc/sysv/consts/BLKGETSIZE64.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKGETSIZE64 0x80081272 0 0 0 0 +.syscon misc BLKGETSIZE64 0x80081272 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKRAGET.s b/libc/sysv/consts/BLKRAGET.s index 140da54f7..0b1b37d84 100644 --- a/libc/sysv/consts/BLKRAGET.s +++ b/libc/sysv/consts/BLKRAGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKRAGET 0x1263 0 0 0 0 +.syscon misc BLKRAGET 0x1263 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKRASET.s b/libc/sysv/consts/BLKRASET.s index 3c2b2ab4a..dc89264c3 100644 --- a/libc/sysv/consts/BLKRASET.s +++ b/libc/sysv/consts/BLKRASET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKRASET 0x1262 0 0 0 0 +.syscon misc BLKRASET 0x1262 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKROGET.s b/libc/sysv/consts/BLKROGET.s index 0152fafae..942a61fcb 100644 --- a/libc/sysv/consts/BLKROGET.s +++ b/libc/sysv/consts/BLKROGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKROGET 0x125e 0 0 0 0 +.syscon misc BLKROGET 0x125e 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKROSET.s b/libc/sysv/consts/BLKROSET.s index db946df0e..5e1c2d7eb 100644 --- a/libc/sysv/consts/BLKROSET.s +++ b/libc/sysv/consts/BLKROSET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKROSET 0x125d 0 0 0 0 +.syscon misc BLKROSET 0x125d 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKRRPART.s b/libc/sysv/consts/BLKRRPART.s index 6fc039341..18414ba7b 100644 --- a/libc/sysv/consts/BLKRRPART.s +++ b/libc/sysv/consts/BLKRRPART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKRRPART 0x125f 0 0 0 0 +.syscon misc BLKRRPART 0x125f 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKSECTGET.s b/libc/sysv/consts/BLKSECTGET.s index 9b77f201e..7efd51e0d 100644 --- a/libc/sysv/consts/BLKSECTGET.s +++ b/libc/sysv/consts/BLKSECTGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKSECTGET 0x1267 0 0 0 0 +.syscon misc BLKSECTGET 0x1267 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKSECTSET.s b/libc/sysv/consts/BLKSECTSET.s index dc61a38f2..93981eff9 100644 --- a/libc/sysv/consts/BLKSECTSET.s +++ b/libc/sysv/consts/BLKSECTSET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKSECTSET 0x1266 0 0 0 0 +.syscon misc BLKSECTSET 0x1266 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKSSZGET.s b/libc/sysv/consts/BLKSSZGET.s index 6ba5dbe4e..c49d22751 100644 --- a/libc/sysv/consts/BLKSSZGET.s +++ b/libc/sysv/consts/BLKSSZGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKSSZGET 0x1268 0 0 0 0 +.syscon misc BLKSSZGET 0x1268 0 0 0 0 0 diff --git a/libc/sysv/consts/BLKTYPE.s b/libc/sysv/consts/BLKTYPE.s index af689210c..e3c9d17d6 100644 --- a/libc/sysv/consts/BLKTYPE.s +++ b/libc/sysv/consts/BLKTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLKTYPE 52 52 52 52 0 +.syscon misc BLKTYPE 52 52 52 52 52 0 diff --git a/libc/sysv/consts/BLK_BYTECOUNT.s b/libc/sysv/consts/BLK_BYTECOUNT.s index 5ee91268e..866f0977a 100644 --- a/libc/sysv/consts/BLK_BYTECOUNT.s +++ b/libc/sysv/consts/BLK_BYTECOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLK_BYTECOUNT 2 2 2 2 0 +.syscon misc BLK_BYTECOUNT 2 2 2 2 2 0 diff --git a/libc/sysv/consts/BLK_EOF.s b/libc/sysv/consts/BLK_EOF.s index cc3e0f129..6268f2256 100644 --- a/libc/sysv/consts/BLK_EOF.s +++ b/libc/sysv/consts/BLK_EOF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLK_EOF 0x40 0x40 0x40 0x40 0 +.syscon misc BLK_EOF 0x40 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/BLK_EOR.s b/libc/sysv/consts/BLK_EOR.s index e6b56dece..530a592f2 100644 --- a/libc/sysv/consts/BLK_EOR.s +++ b/libc/sysv/consts/BLK_EOR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLK_EOR 0x80 0x80 0x80 0x80 0 +.syscon misc BLK_EOR 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/BLK_ERRORS.s b/libc/sysv/consts/BLK_ERRORS.s index 14faef7d7..2c6ff591f 100644 --- a/libc/sysv/consts/BLK_ERRORS.s +++ b/libc/sysv/consts/BLK_ERRORS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLK_ERRORS 0x20 0x20 0x20 0x20 0 +.syscon misc BLK_ERRORS 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/BLK_RESTART.s b/libc/sysv/consts/BLK_RESTART.s index dab583bc1..1338ce715 100644 --- a/libc/sysv/consts/BLK_RESTART.s +++ b/libc/sysv/consts/BLK_RESTART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BLK_RESTART 0x10 0x10 0x10 0x10 0 +.syscon misc BLK_RESTART 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/BOOT_TIME.s b/libc/sysv/consts/BOOT_TIME.s index d98566532..9bdd57a28 100644 --- a/libc/sysv/consts/BOOT_TIME.s +++ b/libc/sysv/consts/BOOT_TIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BOOT_TIME 2 2 1 0 0 +.syscon misc BOOT_TIME 2 2 1 0 0 0 diff --git a/libc/sysv/consts/BRKINT.s b/libc/sysv/consts/BRKINT.s index 843a9dd8d..65d0cd8ee 100644 --- a/libc/sysv/consts/BRKINT.s +++ b/libc/sysv/consts/BRKINT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios BRKINT 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 +.syscon termios BRKINT 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 diff --git a/libc/sysv/consts/BS0.s b/libc/sysv/consts/BS0.s index 901f592e2..60ee928c5 100644 --- a/libc/sysv/consts/BS0.s +++ b/libc/sysv/consts/BS0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios BS0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 +.syscon termios BS0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 diff --git a/libc/sysv/consts/BS1.s b/libc/sysv/consts/BS1.s index 44c202d5f..79044372d 100644 --- a/libc/sysv/consts/BS1.s +++ b/libc/sysv/consts/BS1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios BS1 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0b0010000000000000 +.syscon termios BS1 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0 0b0010000000000000 diff --git a/libc/sysv/consts/BSDLY.s b/libc/sysv/consts/BSDLY.s index b662bc639..44ccf77d9 100644 --- a/libc/sysv/consts/BSDLY.s +++ b/libc/sysv/consts/BSDLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios BSDLY 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0b0010000000000000 +.syscon termios BSDLY 0b0010000000000000 0b001000000000000000 0b001000000000000000 0 0 0b0010000000000000 diff --git a/libc/sysv/consts/BUSY.s b/libc/sysv/consts/BUSY.s index 955d86465..0eda09681 100644 --- a/libc/sysv/consts/BUSY.s +++ b/libc/sysv/consts/BUSY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios BUSY 4 0 0 0 0 +.syscon termios BUSY 4 0 0 0 0 0 diff --git a/libc/sysv/consts/BUS_ADRALN.s b/libc/sysv/consts/BUS_ADRALN.s index 239b717f9..edbb4833a 100644 --- a/libc/sysv/consts/BUS_ADRALN.s +++ b/libc/sysv/consts/BUS_ADRALN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BUS_ADRALN 1 1 1 1 0 +.syscon misc BUS_ADRALN 1 1 1 1 1 0 diff --git a/libc/sysv/consts/BUS_ADRERR.s b/libc/sysv/consts/BUS_ADRERR.s index 549708a41..dfc81ea5d 100644 --- a/libc/sysv/consts/BUS_ADRERR.s +++ b/libc/sysv/consts/BUS_ADRERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BUS_ADRERR 2 2 2 2 0 +.syscon misc BUS_ADRERR 2 2 2 2 2 0 diff --git a/libc/sysv/consts/BUS_DEVICE_RESET.s b/libc/sysv/consts/BUS_DEVICE_RESET.s index aa28ee354..714ec2b38 100644 --- a/libc/sysv/consts/BUS_DEVICE_RESET.s +++ b/libc/sysv/consts/BUS_DEVICE_RESET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BUS_DEVICE_RESET 12 0 0 0 0 +.syscon misc BUS_DEVICE_RESET 12 0 0 0 0 0 diff --git a/libc/sysv/consts/BUS_MCEERR_AO.s b/libc/sysv/consts/BUS_MCEERR_AO.s index aa07a9b9a..b6c336000 100644 --- a/libc/sysv/consts/BUS_MCEERR_AO.s +++ b/libc/sysv/consts/BUS_MCEERR_AO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BUS_MCEERR_AO 5 0 0 0 0 +.syscon misc BUS_MCEERR_AO 5 0 0 0 0 0 diff --git a/libc/sysv/consts/BUS_MCEERR_AR.s b/libc/sysv/consts/BUS_MCEERR_AR.s index be6036b09..1513e047e 100644 --- a/libc/sysv/consts/BUS_MCEERR_AR.s +++ b/libc/sysv/consts/BUS_MCEERR_AR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BUS_MCEERR_AR 4 0 0 0 0 +.syscon misc BUS_MCEERR_AR 4 0 0 0 0 0 diff --git a/libc/sysv/consts/BUS_OBJERR.s b/libc/sysv/consts/BUS_OBJERR.s index 117e1a1a9..9f9976322 100644 --- a/libc/sysv/consts/BUS_OBJERR.s +++ b/libc/sysv/consts/BUS_OBJERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc BUS_OBJERR 3 3 3 3 0 +.syscon misc BUS_OBJERR 3 3 3 3 3 0 diff --git a/libc/sysv/consts/CANBSIZ.s b/libc/sysv/consts/CANBSIZ.s index 62fcdc91b..531377d82 100644 --- a/libc/sysv/consts/CANBSIZ.s +++ b/libc/sysv/consts/CANBSIZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CANBSIZ 255 0 0 0 0 +.syscon termios CANBSIZ 255 0 0 0 0 0 diff --git a/libc/sysv/consts/CBAUD.s b/libc/sysv/consts/CBAUD.s index 4cd071aef..41fe7e954 100644 --- a/libc/sysv/consts/CBAUD.s +++ b/libc/sysv/consts/CBAUD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CBAUD 0x100f 0 0 0 0 +.syscon termios CBAUD 0x100f 0 0 0 0 0 diff --git a/libc/sysv/consts/CBAUDEX.s b/libc/sysv/consts/CBAUDEX.s index 63e601568..73c065ab1 100644 --- a/libc/sysv/consts/CBAUDEX.s +++ b/libc/sysv/consts/CBAUDEX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CBAUDEX 0x1000 0 0 0 0 +.syscon termios CBAUDEX 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/CBRK.s b/libc/sysv/consts/CBRK.s index 7ab58ca19..e28962d7c 100644 --- a/libc/sysv/consts/CBRK.s +++ b/libc/sysv/consts/CBRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CBRK 0 255 255 255 0 +.syscon termios CBRK 0 255 255 255 255 0 diff --git a/libc/sysv/consts/CDISCARD.s b/libc/sysv/consts/CDISCARD.s index c08a30f07..3ac04bd47 100644 --- a/libc/sysv/consts/CDISCARD.s +++ b/libc/sysv/consts/CDISCARD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CDISCARD 15 15 15 15 0 +.syscon misc CDISCARD 15 15 15 15 15 0 diff --git a/libc/sysv/consts/CDSUSP.s b/libc/sysv/consts/CDSUSP.s index 6ec04218b..0765d2270 100644 --- a/libc/sysv/consts/CDSUSP.s +++ b/libc/sysv/consts/CDSUSP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CDSUSP 25 25 25 25 0 +.syscon misc CDSUSP 25 25 25 25 25 0 diff --git a/libc/sysv/consts/CEOF.s b/libc/sysv/consts/CEOF.s index 320da981a..42e6c28d7 100644 --- a/libc/sysv/consts/CEOF.s +++ b/libc/sysv/consts/CEOF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CEOF 4 4 4 4 0 +.syscon misc CEOF 4 4 4 4 4 0 diff --git a/libc/sysv/consts/CEOL.s b/libc/sysv/consts/CEOL.s index 67324c2af..2e55728e1 100644 --- a/libc/sysv/consts/CEOL.s +++ b/libc/sysv/consts/CEOL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CEOL 0 255 255 255 0 +.syscon termios CEOL 0 255 255 255 255 0 diff --git a/libc/sysv/consts/CEOT.s b/libc/sysv/consts/CEOT.s index 3bd43cc31..221e4b87a 100644 --- a/libc/sysv/consts/CEOT.s +++ b/libc/sysv/consts/CEOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CEOT 4 4 4 4 0 +.syscon misc CEOT 4 4 4 4 4 0 diff --git a/libc/sysv/consts/CERASE.s b/libc/sysv/consts/CERASE.s index 6d1e7feb8..c56a23e61 100644 --- a/libc/sysv/consts/CERASE.s +++ b/libc/sysv/consts/CERASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CERASE 127 127 127 127 0 +.syscon misc CERASE 127 127 127 127 127 0 diff --git a/libc/sysv/consts/CFLUSH.s b/libc/sysv/consts/CFLUSH.s index 7cb226bae..eabdce583 100644 --- a/libc/sysv/consts/CFLUSH.s +++ b/libc/sysv/consts/CFLUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CFLUSH 15 15 15 15 0 +.syscon misc CFLUSH 15 15 15 15 15 0 diff --git a/libc/sysv/consts/CHANGE_DEFINITION.s b/libc/sysv/consts/CHANGE_DEFINITION.s index cb38ffb45..0eefc11fb 100644 --- a/libc/sysv/consts/CHANGE_DEFINITION.s +++ b/libc/sysv/consts/CHANGE_DEFINITION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CHANGE_DEFINITION 0x40 0 0 0 0 +.syscon misc CHANGE_DEFINITION 0x40 0 0 0 0 0 diff --git a/libc/sysv/consts/CHARBITS.s b/libc/sysv/consts/CHARBITS.s index a685212cb..2cc7bbb75 100644 --- a/libc/sysv/consts/CHARBITS.s +++ b/libc/sysv/consts/CHARBITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CHARBITS 8 0 0 0 0 +.syscon misc CHARBITS 8 0 0 0 0 0 diff --git a/libc/sysv/consts/CHARCLASS_NAME_MAX.s b/libc/sysv/consts/CHARCLASS_NAME_MAX.s index 14f2abda8..afd003a2f 100644 --- a/libc/sysv/consts/CHARCLASS_NAME_MAX.s +++ b/libc/sysv/consts/CHARCLASS_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CHARCLASS_NAME_MAX 0x0800 14 14 0 0 +.syscon misc CHARCLASS_NAME_MAX 0x0800 14 14 0 0 0 diff --git a/libc/sysv/consts/CHECK_CONDITION.s b/libc/sysv/consts/CHECK_CONDITION.s index fc7ce28be..d7b217bfd 100644 --- a/libc/sysv/consts/CHECK_CONDITION.s +++ b/libc/sysv/consts/CHECK_CONDITION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CHECK_CONDITION 1 0 0 0 0 +.syscon misc CHECK_CONDITION 1 0 0 0 0 0 diff --git a/libc/sysv/consts/CHRTYPE.s b/libc/sysv/consts/CHRTYPE.s index 2687e1a56..c911b98d4 100644 --- a/libc/sysv/consts/CHRTYPE.s +++ b/libc/sysv/consts/CHRTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CHRTYPE 51 51 51 51 0 +.syscon misc CHRTYPE 51 51 51 51 51 0 diff --git a/libc/sysv/consts/CIBAUD.s b/libc/sysv/consts/CIBAUD.s index 9cee3e71e..91928304f 100644 --- a/libc/sysv/consts/CIBAUD.s +++ b/libc/sysv/consts/CIBAUD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CIBAUD 0x100f0000 0 0 0 0 +.syscon termios CIBAUD 0x100f0000 0 0 0 0 0 diff --git a/libc/sysv/consts/CINTR.s b/libc/sysv/consts/CINTR.s index 0f50d40b6..1a7b48fdb 100644 --- a/libc/sysv/consts/CINTR.s +++ b/libc/sysv/consts/CINTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CINTR 3 3 3 3 0 +.syscon misc CINTR 3 3 3 3 3 0 diff --git a/libc/sysv/consts/CKILL.s b/libc/sysv/consts/CKILL.s index 7284db8ba..adce7d275 100644 --- a/libc/sysv/consts/CKILL.s +++ b/libc/sysv/consts/CKILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CKILL 21 21 21 21 0 +.syscon misc CKILL 21 21 21 21 21 0 diff --git a/libc/sysv/consts/CLD_CONTINUED.s b/libc/sysv/consts/CLD_CONTINUED.s index 8ba22c588..8fe9d8252 100644 --- a/libc/sysv/consts/CLD_CONTINUED.s +++ b/libc/sysv/consts/CLD_CONTINUED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLD_CONTINUED 6 6 6 6 0 +.syscon misc CLD_CONTINUED 6 6 6 6 6 0 diff --git a/libc/sysv/consts/CLD_DUMPED.s b/libc/sysv/consts/CLD_DUMPED.s index 7cbb45699..9a099c59f 100644 --- a/libc/sysv/consts/CLD_DUMPED.s +++ b/libc/sysv/consts/CLD_DUMPED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLD_DUMPED 3 3 3 3 0 +.syscon misc CLD_DUMPED 3 3 3 3 3 0 diff --git a/libc/sysv/consts/CLD_EXITED.s b/libc/sysv/consts/CLD_EXITED.s index 72cef5282..82cf7de88 100644 --- a/libc/sysv/consts/CLD_EXITED.s +++ b/libc/sysv/consts/CLD_EXITED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLD_EXITED 1 1 1 1 0 +.syscon misc CLD_EXITED 1 1 1 1 1 0 diff --git a/libc/sysv/consts/CLD_KILLED.s b/libc/sysv/consts/CLD_KILLED.s index 2248c9650..e898b5e3f 100644 --- a/libc/sysv/consts/CLD_KILLED.s +++ b/libc/sysv/consts/CLD_KILLED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLD_KILLED 2 2 2 2 0 +.syscon misc CLD_KILLED 2 2 2 2 2 0 diff --git a/libc/sysv/consts/CLD_STOPPED.s b/libc/sysv/consts/CLD_STOPPED.s index 61c367dbd..19579f9ec 100644 --- a/libc/sysv/consts/CLD_STOPPED.s +++ b/libc/sysv/consts/CLD_STOPPED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLD_STOPPED 5 5 5 5 0 +.syscon misc CLD_STOPPED 5 5 5 5 5 0 diff --git a/libc/sysv/consts/CLD_TRAPPED.s b/libc/sysv/consts/CLD_TRAPPED.s index 1ee4e1a8d..c1ce4c0e1 100644 --- a/libc/sysv/consts/CLD_TRAPPED.s +++ b/libc/sysv/consts/CLD_TRAPPED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLD_TRAPPED 4 4 4 4 0 +.syscon misc CLD_TRAPPED 4 4 4 4 4 0 diff --git a/libc/sysv/consts/CLNEXT.s b/libc/sysv/consts/CLNEXT.s index cf6e3ac07..368b2fcd4 100644 --- a/libc/sysv/consts/CLNEXT.s +++ b/libc/sysv/consts/CLNEXT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLNEXT 22 22 22 22 0 +.syscon misc CLNEXT 22 22 22 22 22 0 diff --git a/libc/sysv/consts/CLOCAL.s b/libc/sysv/consts/CLOCAL.s index c124ebcb1..39047251e 100644 --- a/libc/sysv/consts/CLOCAL.s +++ b/libc/sysv/consts/CLOCAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CLOCAL 0x0800 0x8000 0x8000 0x8000 0 +.syscon termios CLOCAL 0x0800 0x8000 0x8000 0x8000 0x8000 0 diff --git a/libc/sysv/consts/CLOCKS_PER_SEC.s b/libc/sysv/consts/CLOCKS_PER_SEC.s index a5366b6fc..d1a6ed0b8 100644 --- a/libc/sysv/consts/CLOCKS_PER_SEC.s +++ b/libc/sysv/consts/CLOCKS_PER_SEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CLOCKS_PER_SEC 1000000 1000000 0x80 100 10000000 +.syscon misc CLOCKS_PER_SEC 1000000 1000000 0x80 100 100 10000000 diff --git a/libc/sysv/consts/CLOCK_BOOTTIME.s b/libc/sysv/consts/CLOCK_BOOTTIME.s index fa87492dc..3e684fcce 100644 --- a/libc/sysv/consts/CLOCK_BOOTTIME.s +++ b/libc/sysv/consts/CLOCK_BOOTTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_BOOTTIME 7 -1 0 6 0 +.syscon clock CLOCK_BOOTTIME 7 -1 0 6 6 0 diff --git a/libc/sysv/consts/CLOCK_BOOTTIME_ALARM.s b/libc/sysv/consts/CLOCK_BOOTTIME_ALARM.s index 42c8bc5bb..0d070e943 100644 --- a/libc/sysv/consts/CLOCK_BOOTTIME_ALARM.s +++ b/libc/sysv/consts/CLOCK_BOOTTIME_ALARM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_BOOTTIME_ALARM 9 -1 0 0 0 +.syscon clock CLOCK_BOOTTIME_ALARM 9 -1 0 0 0 0 diff --git a/libc/sysv/consts/CLOCK_MONOTONIC.s b/libc/sysv/consts/CLOCK_MONOTONIC.s index 553f8deb0..b4d3d8708 100644 --- a/libc/sysv/consts/CLOCK_MONOTONIC.s +++ b/libc/sysv/consts/CLOCK_MONOTONIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_MONOTONIC 1 1 4 3 1 +.syscon clock CLOCK_MONOTONIC 1 1 4 3 3 1 diff --git a/libc/sysv/consts/CLOCK_MONOTONIC_COARSE.s b/libc/sysv/consts/CLOCK_MONOTONIC_COARSE.s index a5bcccf6f..5780407d8 100644 --- a/libc/sysv/consts/CLOCK_MONOTONIC_COARSE.s +++ b/libc/sysv/consts/CLOCK_MONOTONIC_COARSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_MONOTONIC_COARSE 6 -1 0 0 0 +.syscon clock CLOCK_MONOTONIC_COARSE 6 -1 0 0 0 0 diff --git a/libc/sysv/consts/CLOCK_MONOTONIC_RAW.s b/libc/sysv/consts/CLOCK_MONOTONIC_RAW.s index bafb0353c..19246923b 100644 --- a/libc/sysv/consts/CLOCK_MONOTONIC_RAW.s +++ b/libc/sysv/consts/CLOCK_MONOTONIC_RAW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_MONOTONIC_RAW 4 4 0x4000 0x4000 4 +.syscon clock CLOCK_MONOTONIC_RAW 4 4 0x4000 0x4000 0x4000 4 diff --git a/libc/sysv/consts/CLOCK_PROCESS_CPUTIME_ID.s b/libc/sysv/consts/CLOCK_PROCESS_CPUTIME_ID.s index fb0df119f..d6e528e65 100644 --- a/libc/sysv/consts/CLOCK_PROCESS_CPUTIME_ID.s +++ b/libc/sysv/consts/CLOCK_PROCESS_CPUTIME_ID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_PROCESS_CPUTIME_ID 2 -1 15 2 0 +.syscon clock CLOCK_PROCESS_CPUTIME_ID 2 -1 15 2 0x40000000 0 diff --git a/libc/sysv/consts/CLOCK_REALTIME.s b/libc/sysv/consts/CLOCK_REALTIME.s index 042585be2..63c8ee141 100644 --- a/libc/sysv/consts/CLOCK_REALTIME.s +++ b/libc/sysv/consts/CLOCK_REALTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_REALTIME 0 0 0 0 0 +.syscon clock CLOCK_REALTIME 0 0 0 0 0 0 diff --git a/libc/sysv/consts/CLOCK_REALTIME_ALARM.s b/libc/sysv/consts/CLOCK_REALTIME_ALARM.s index 539916581..427e9b4ca 100644 --- a/libc/sysv/consts/CLOCK_REALTIME_ALARM.s +++ b/libc/sysv/consts/CLOCK_REALTIME_ALARM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_REALTIME_ALARM 8 -1 0 0 0 +.syscon clock CLOCK_REALTIME_ALARM 8 -1 0 0 0 0 diff --git a/libc/sysv/consts/CLOCK_REALTIME_COARSE.s b/libc/sysv/consts/CLOCK_REALTIME_COARSE.s index 8116649c0..4698406dc 100644 --- a/libc/sysv/consts/CLOCK_REALTIME_COARSE.s +++ b/libc/sysv/consts/CLOCK_REALTIME_COARSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_REALTIME_COARSE 5 -1 0 0 0 +.syscon clock CLOCK_REALTIME_COARSE 5 -1 0 0 0 0 diff --git a/libc/sysv/consts/CLOCK_TAI.s b/libc/sysv/consts/CLOCK_TAI.s index 65ac517f5..d2f9a3181 100644 --- a/libc/sysv/consts/CLOCK_TAI.s +++ b/libc/sysv/consts/CLOCK_TAI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_TAI 11 -1 0 0 0 +.syscon clock CLOCK_TAI 11 -1 0 0 0 0 diff --git a/libc/sysv/consts/CLOCK_THREAD_CPUTIME_ID.s b/libc/sysv/consts/CLOCK_THREAD_CPUTIME_ID.s index fcb1d0a58..fb11e39ed 100644 --- a/libc/sysv/consts/CLOCK_THREAD_CPUTIME_ID.s +++ b/libc/sysv/consts/CLOCK_THREAD_CPUTIME_ID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon clock CLOCK_THREAD_CPUTIME_ID 3 -1 14 4 0 +.syscon clock CLOCK_THREAD_CPUTIME_ID 3 -1 14 4 0x20000000 0 diff --git a/libc/sysv/consts/CMIN.s b/libc/sysv/consts/CMIN.s index 19f287ebe..2605b9c2a 100644 --- a/libc/sysv/consts/CMIN.s +++ b/libc/sysv/consts/CMIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CMIN 1 1 1 1 0 +.syscon misc CMIN 1 1 1 1 1 0 diff --git a/libc/sysv/consts/CMSPAR.s b/libc/sysv/consts/CMSPAR.s index 013ae7a06..50b86802e 100644 --- a/libc/sysv/consts/CMSPAR.s +++ b/libc/sysv/consts/CMSPAR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CMSPAR 0x40000000 0 0 0 0 +.syscon termios CMSPAR 0x40000000 0 0 0 0 0 diff --git a/libc/sysv/consts/CODESET.s b/libc/sysv/consts/CODESET.s index 2d0fd7e4e..c231006b5 100644 --- a/libc/sysv/consts/CODESET.s +++ b/libc/sysv/consts/CODESET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CODESET 14 0 0 51 0 +.syscon misc CODESET 14 0 0 51 51 0 diff --git a/libc/sysv/consts/COLL_WEIGHTS_MAX.s b/libc/sysv/consts/COLL_WEIGHTS_MAX.s index 44c09b10f..06500e171 100644 --- a/libc/sysv/consts/COLL_WEIGHTS_MAX.s +++ b/libc/sysv/consts/COLL_WEIGHTS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc COLL_WEIGHTS_MAX 255 2 10 2 0 +.syscon misc COLL_WEIGHTS_MAX 255 2 10 2 2 0 diff --git a/libc/sysv/consts/COMMAND_COMPLETE.s b/libc/sysv/consts/COMMAND_COMPLETE.s index 94f14168f..343dcbdae 100644 --- a/libc/sysv/consts/COMMAND_COMPLETE.s +++ b/libc/sysv/consts/COMMAND_COMPLETE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc COMMAND_COMPLETE 0 0 0 0 0 +.syscon misc COMMAND_COMPLETE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/COMMAND_TERMINATED.s b/libc/sysv/consts/COMMAND_TERMINATED.s index 7ddc750b5..abef69d19 100644 --- a/libc/sysv/consts/COMMAND_TERMINATED.s +++ b/libc/sysv/consts/COMMAND_TERMINATED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc COMMAND_TERMINATED 17 0 0 0 0 +.syscon misc COMMAND_TERMINATED 17 0 0 0 0 0 diff --git a/libc/sysv/consts/COMPLETE.s b/libc/sysv/consts/COMPLETE.s index 574d35665..3b0d50cf5 100644 --- a/libc/sysv/consts/COMPLETE.s +++ b/libc/sysv/consts/COMPLETE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc COMPLETE 2 2 2 2 0 +.syscon misc COMPLETE 2 2 2 2 2 0 diff --git a/libc/sysv/consts/CONDITION_GOOD.s b/libc/sysv/consts/CONDITION_GOOD.s index db5091ba2..756331567 100644 --- a/libc/sysv/consts/CONDITION_GOOD.s +++ b/libc/sysv/consts/CONDITION_GOOD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CONDITION_GOOD 2 0 0 0 0 +.syscon misc CONDITION_GOOD 2 0 0 0 0 0 diff --git a/libc/sysv/consts/CONTINUE.s b/libc/sysv/consts/CONTINUE.s index 5eeffd50a..d25b2d2a7 100644 --- a/libc/sysv/consts/CONTINUE.s +++ b/libc/sysv/consts/CONTINUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CONTINUE 3 3 3 3 0 +.syscon misc CONTINUE 3 3 3 3 3 0 diff --git a/libc/sysv/consts/CONTTYPE.s b/libc/sysv/consts/CONTTYPE.s index c009e66b4..430f9785b 100644 --- a/libc/sysv/consts/CONTTYPE.s +++ b/libc/sysv/consts/CONTTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CONTTYPE 55 55 55 55 0 +.syscon misc CONTTYPE 55 55 55 55 55 0 diff --git a/libc/sysv/consts/COPY_ABORTED.s b/libc/sysv/consts/COPY_ABORTED.s index 95ee2d881..b42fe8a98 100644 --- a/libc/sysv/consts/COPY_ABORTED.s +++ b/libc/sysv/consts/COPY_ABORTED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc COPY_ABORTED 10 0 0 0 0 +.syscon misc COPY_ABORTED 10 0 0 0 0 0 diff --git a/libc/sysv/consts/COPY_VERIFY.s b/libc/sysv/consts/COPY_VERIFY.s index a4e775f48..0cdcd09d8 100644 --- a/libc/sysv/consts/COPY_VERIFY.s +++ b/libc/sysv/consts/COPY_VERIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc COPY_VERIFY 58 0 0 0 0 +.syscon misc COPY_VERIFY 58 0 0 0 0 0 diff --git a/libc/sysv/consts/CPU_SETSIZE.s b/libc/sysv/consts/CPU_SETSIZE.s index d55ac385e..226d8dd80 100644 --- a/libc/sysv/consts/CPU_SETSIZE.s +++ b/libc/sysv/consts/CPU_SETSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CPU_SETSIZE 0x0400 0 0x0100 0 0 +.syscon misc CPU_SETSIZE 0x0400 0 0x0100 0 0 0 diff --git a/libc/sysv/consts/CQUIT.s b/libc/sysv/consts/CQUIT.s index ef6d55c73..935e70db6 100644 --- a/libc/sysv/consts/CQUIT.s +++ b/libc/sysv/consts/CQUIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CQUIT 28 28 28 28 0 +.syscon misc CQUIT 28 28 28 28 28 0 diff --git a/libc/sysv/consts/CR0.s b/libc/sysv/consts/CR0.s index 38bf4596d..13d57a473 100644 --- a/libc/sysv/consts/CR0.s +++ b/libc/sysv/consts/CR0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CR0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0x0 0b0000000000000000 +.syscon termios CR0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0x0 0x0 0b0000000000000000 diff --git a/libc/sysv/consts/CR1.s b/libc/sysv/consts/CR1.s index 0d4b7eb61..aca224396 100644 --- a/libc/sysv/consts/CR1.s +++ b/libc/sysv/consts/CR1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CR1 0b0000001000000000 0b000001000000000000 0b000001000000000000 0x0 0b0000001000000000 +.syscon termios CR1 0b0000001000000000 0b000001000000000000 0b000001000000000000 0x0 0x0 0b0000001000000000 diff --git a/libc/sysv/consts/CR2.s b/libc/sysv/consts/CR2.s index 7a6c5b174..2111fc42b 100644 --- a/libc/sysv/consts/CR2.s +++ b/libc/sysv/consts/CR2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CR2 0b0000010000000000 0b000010000000000000 0b000010000000000000 0x0 0b0000010000000000 +.syscon termios CR2 0b0000010000000000 0b000010000000000000 0b000010000000000000 0x0 0x0 0b0000010000000000 diff --git a/libc/sysv/consts/CR3.s b/libc/sysv/consts/CR3.s index fd31feb09..140be20e8 100644 --- a/libc/sysv/consts/CR3.s +++ b/libc/sysv/consts/CR3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CR3 0b0000011000000000 0b000011000000000000 0b000011000000000000 0x0 0b0000011000000000 +.syscon termios CR3 0b0000011000000000 0b000011000000000000 0b000011000000000000 0x0 0x0 0b0000011000000000 diff --git a/libc/sysv/consts/CRDLY.s b/libc/sysv/consts/CRDLY.s index 5629b42a1..1184b1814 100644 --- a/libc/sysv/consts/CRDLY.s +++ b/libc/sysv/consts/CRDLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CRDLY 0b0000011000000000 0b000011000000000000 0b000011000000000000 0 0b0000011000000000 +.syscon termios CRDLY 0b0000011000000000 0b000011000000000000 0b000011000000000000 0 0 0b0000011000000000 diff --git a/libc/sysv/consts/CREAD.s b/libc/sysv/consts/CREAD.s index 28f4b03de..1cb64b4f7 100644 --- a/libc/sysv/consts/CREAD.s +++ b/libc/sysv/consts/CREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CREAD 0x80 0x0800 0x0800 0x0800 0 +.syscon misc CREAD 0x80 0x0800 0x0800 0x0800 0x0800 0 diff --git a/libc/sysv/consts/CREPRINT.s b/libc/sysv/consts/CREPRINT.s index 228427747..454e20d7d 100644 --- a/libc/sysv/consts/CREPRINT.s +++ b/libc/sysv/consts/CREPRINT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CREPRINT 18 18 18 18 0 +.syscon misc CREPRINT 18 18 18 18 18 0 diff --git a/libc/sysv/consts/CRNCYSTR.s b/libc/sysv/consts/CRNCYSTR.s index 0bc1b2082..c03a01f92 100644 --- a/libc/sysv/consts/CRNCYSTR.s +++ b/libc/sysv/consts/CRNCYSTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CRNCYSTR 0x04000f 56 56 50 0 +.syscon misc CRNCYSTR 0x04000f 56 56 50 50 0 diff --git a/libc/sysv/consts/CRPRNT.s b/libc/sysv/consts/CRPRNT.s index 6e12abe54..9171acfb9 100644 --- a/libc/sysv/consts/CRPRNT.s +++ b/libc/sysv/consts/CRPRNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CRPRNT 18 18 18 18 0 +.syscon misc CRPRNT 18 18 18 18 18 0 diff --git a/libc/sysv/consts/CRTSCTS.s b/libc/sysv/consts/CRTSCTS.s index 60908fb47..b0cc17a89 100644 --- a/libc/sysv/consts/CRTSCTS.s +++ b/libc/sysv/consts/CRTSCTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CRTSCTS 0x80000000 0x030000 0x030000 0x010000 0 +.syscon misc CRTSCTS 0x80000000 0x030000 0x030000 0x010000 0x010000 0 diff --git a/libc/sysv/consts/CS5.s b/libc/sysv/consts/CS5.s index dcbb044e7..f3cc32b5f 100644 --- a/libc/sysv/consts/CS5.s +++ b/libc/sysv/consts/CS5.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CS5 0 0 0 0 0 +.syscon misc CS5 0 0 0 0 0 0 diff --git a/libc/sysv/consts/CS6.s b/libc/sysv/consts/CS6.s index 00efefa48..5bf8d58e4 100644 --- a/libc/sysv/consts/CS6.s +++ b/libc/sysv/consts/CS6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CS6 0b0000000000010000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000010000 +.syscon termios CS6 0b0000000000010000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000010000 diff --git a/libc/sysv/consts/CS7.s b/libc/sysv/consts/CS7.s index a2ea3f287..3b7fe0671 100644 --- a/libc/sysv/consts/CS7.s +++ b/libc/sysv/consts/CS7.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CS7 0b0000000000100000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000000000100000 +.syscon termios CS7 0b0000000000100000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000000000100000 diff --git a/libc/sysv/consts/CS8.s b/libc/sysv/consts/CS8.s index 3972cbfa9..3bd378640 100644 --- a/libc/sysv/consts/CS8.s +++ b/libc/sysv/consts/CS8.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CS8 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 +.syscon termios CS8 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 diff --git a/libc/sysv/consts/CSIZE.s b/libc/sysv/consts/CSIZE.s index fb75351c6..2009491e2 100644 --- a/libc/sysv/consts/CSIZE.s +++ b/libc/sysv/consts/CSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios CSIZE 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 +.syscon termios CSIZE 0b0000000000110000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000001100000000 0b0000000000110000 diff --git a/libc/sysv/consts/CSTART.s b/libc/sysv/consts/CSTART.s index 260b7bda1..df4d8138a 100644 --- a/libc/sysv/consts/CSTART.s +++ b/libc/sysv/consts/CSTART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CSTART 17 17 17 17 0 +.syscon misc CSTART 17 17 17 17 17 0 diff --git a/libc/sysv/consts/CSTATUS.s b/libc/sysv/consts/CSTATUS.s index 436ef8ad7..67c6cfc8b 100644 --- a/libc/sysv/consts/CSTATUS.s +++ b/libc/sysv/consts/CSTATUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CSTATUS 0 20 20 255 0 +.syscon misc CSTATUS 0 20 20 255 255 0 diff --git a/libc/sysv/consts/CSTOP.s b/libc/sysv/consts/CSTOP.s index 5ec5df5ec..38c2624f6 100644 --- a/libc/sysv/consts/CSTOP.s +++ b/libc/sysv/consts/CSTOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CSTOP 19 19 19 19 0 +.syscon misc CSTOP 19 19 19 19 19 0 diff --git a/libc/sysv/consts/CSTOPB.s b/libc/sysv/consts/CSTOPB.s index aa3c0d278..4e873d44c 100644 --- a/libc/sysv/consts/CSTOPB.s +++ b/libc/sysv/consts/CSTOPB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CSTOPB 0x40 0x0400 0x0400 0x0400 0 +.syscon misc CSTOPB 0x40 0x0400 0x0400 0x0400 0x0400 0 diff --git a/libc/sysv/consts/CSUSP.s b/libc/sysv/consts/CSUSP.s index 296271006..44a4ba0eb 100644 --- a/libc/sysv/consts/CSUSP.s +++ b/libc/sysv/consts/CSUSP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CSUSP 26 26 26 26 0 +.syscon misc CSUSP 26 26 26 26 26 0 diff --git a/libc/sysv/consts/CTIME.s b/libc/sysv/consts/CTIME.s index 80523357b..0e1923f0d 100644 --- a/libc/sysv/consts/CTIME.s +++ b/libc/sysv/consts/CTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CTIME 0 0 0 0 0 +.syscon misc CTIME 0 0 0 0 0 0 diff --git a/libc/sysv/consts/CWERASE.s b/libc/sysv/consts/CWERASE.s index 54faff4cf..e830faef3 100644 --- a/libc/sysv/consts/CWERASE.s +++ b/libc/sysv/consts/CWERASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc CWERASE 23 23 23 23 0 +.syscon misc CWERASE 23 23 23 23 23 0 diff --git a/libc/sysv/consts/C_IRGRP.s b/libc/sysv/consts/C_IRGRP.s index b973b12d5..52d8115ea 100644 --- a/libc/sysv/consts/C_IRGRP.s +++ b/libc/sysv/consts/C_IRGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IRGRP 0000040 0000040 0000040 0000040 0 +.syscon c C_IRGRP 0000040 0000040 0000040 0000040 0000040 0 diff --git a/libc/sysv/consts/C_IROTH.s b/libc/sysv/consts/C_IROTH.s index 260b28497..584f0a532 100644 --- a/libc/sysv/consts/C_IROTH.s +++ b/libc/sysv/consts/C_IROTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IROTH 0000004 0000004 0000004 0000004 0 +.syscon c C_IROTH 0000004 0000004 0000004 0000004 0000004 0 diff --git a/libc/sysv/consts/C_IRUSR.s b/libc/sysv/consts/C_IRUSR.s index 19b9e2b68..bb4be6f35 100644 --- a/libc/sysv/consts/C_IRUSR.s +++ b/libc/sysv/consts/C_IRUSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IRUSR 0000400 0000400 0000400 0000400 0 +.syscon c C_IRUSR 0000400 0000400 0000400 0000400 0000400 0 diff --git a/libc/sysv/consts/C_ISBLK.s b/libc/sysv/consts/C_ISBLK.s index 3241a2689..059d58d79 100644 --- a/libc/sysv/consts/C_ISBLK.s +++ b/libc/sysv/consts/C_ISBLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISBLK 0060000 0060000 0060000 0060000 0 +.syscon c C_ISBLK 0060000 0060000 0060000 0060000 0060000 0 diff --git a/libc/sysv/consts/C_ISCHR.s b/libc/sysv/consts/C_ISCHR.s index 9f0d077e6..df7cca2f6 100644 --- a/libc/sysv/consts/C_ISCHR.s +++ b/libc/sysv/consts/C_ISCHR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISCHR 0020000 0020000 0020000 0020000 0 +.syscon c C_ISCHR 0020000 0020000 0020000 0020000 0020000 0 diff --git a/libc/sysv/consts/C_ISCTG.s b/libc/sysv/consts/C_ISCTG.s index 0e461729d..646e0144a 100644 --- a/libc/sysv/consts/C_ISCTG.s +++ b/libc/sysv/consts/C_ISCTG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISCTG 0110000 0110000 0110000 0110000 0 +.syscon c C_ISCTG 0110000 0110000 0110000 0110000 0110000 0 diff --git a/libc/sysv/consts/C_ISDIR.s b/libc/sysv/consts/C_ISDIR.s index ab50dfc95..047af8180 100644 --- a/libc/sysv/consts/C_ISDIR.s +++ b/libc/sysv/consts/C_ISDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISDIR 0040000 0040000 0040000 0040000 0 +.syscon c C_ISDIR 0040000 0040000 0040000 0040000 0040000 0 diff --git a/libc/sysv/consts/C_ISFIFO.s b/libc/sysv/consts/C_ISFIFO.s index e7145ddb6..5932c98c1 100644 --- a/libc/sysv/consts/C_ISFIFO.s +++ b/libc/sysv/consts/C_ISFIFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISFIFO 0010000 0010000 0010000 0010000 0 +.syscon c C_ISFIFO 0010000 0010000 0010000 0010000 0010000 0 diff --git a/libc/sysv/consts/C_ISGID.s b/libc/sysv/consts/C_ISGID.s index d31e7fe14..dafa5a155 100644 --- a/libc/sysv/consts/C_ISGID.s +++ b/libc/sysv/consts/C_ISGID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISGID 0002000 0002000 0002000 0002000 0 +.syscon c C_ISGID 0002000 0002000 0002000 0002000 0002000 0 diff --git a/libc/sysv/consts/C_ISLNK.s b/libc/sysv/consts/C_ISLNK.s index 19faf7d54..b9f654c59 100644 --- a/libc/sysv/consts/C_ISLNK.s +++ b/libc/sysv/consts/C_ISLNK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISLNK 0120000 0120000 0120000 0120000 0 +.syscon c C_ISLNK 0120000 0120000 0120000 0120000 0120000 0 diff --git a/libc/sysv/consts/C_ISREG.s b/libc/sysv/consts/C_ISREG.s index 9879ca6aa..862589bb1 100644 --- a/libc/sysv/consts/C_ISREG.s +++ b/libc/sysv/consts/C_ISREG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISREG 0100000 0100000 0100000 0100000 0 +.syscon c C_ISREG 0100000 0100000 0100000 0100000 0100000 0 diff --git a/libc/sysv/consts/C_ISSOCK.s b/libc/sysv/consts/C_ISSOCK.s index 03d143ac3..11a53c1eb 100644 --- a/libc/sysv/consts/C_ISSOCK.s +++ b/libc/sysv/consts/C_ISSOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISSOCK 0140000 0140000 0140000 0140000 0 +.syscon c C_ISSOCK 0140000 0140000 0140000 0140000 0140000 0 diff --git a/libc/sysv/consts/C_ISUID.s b/libc/sysv/consts/C_ISUID.s index 95c6d1c52..7b4048636 100644 --- a/libc/sysv/consts/C_ISUID.s +++ b/libc/sysv/consts/C_ISUID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISUID 0004000 0004000 0004000 0004000 0 +.syscon c C_ISUID 0004000 0004000 0004000 0004000 0004000 0 diff --git a/libc/sysv/consts/C_ISVTX.s b/libc/sysv/consts/C_ISVTX.s index f5b1233c3..df55d1b17 100644 --- a/libc/sysv/consts/C_ISVTX.s +++ b/libc/sysv/consts/C_ISVTX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_ISVTX 0001000 0001000 0001000 0001000 0 +.syscon c C_ISVTX 0001000 0001000 0001000 0001000 0001000 0 diff --git a/libc/sysv/consts/C_IWGRP.s b/libc/sysv/consts/C_IWGRP.s index 4bedc2a38..05bc5041d 100644 --- a/libc/sysv/consts/C_IWGRP.s +++ b/libc/sysv/consts/C_IWGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IWGRP 0000020 0000020 0000020 0000020 0 +.syscon c C_IWGRP 0000020 0000020 0000020 0000020 0000020 0 diff --git a/libc/sysv/consts/C_IWOTH.s b/libc/sysv/consts/C_IWOTH.s index f0c271244..7be9a6b02 100644 --- a/libc/sysv/consts/C_IWOTH.s +++ b/libc/sysv/consts/C_IWOTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IWOTH 0000002 0000002 0000002 0000002 0 +.syscon c C_IWOTH 0000002 0000002 0000002 0000002 0000002 0 diff --git a/libc/sysv/consts/C_IWUSR.s b/libc/sysv/consts/C_IWUSR.s index 84742c820..8b5c85115 100644 --- a/libc/sysv/consts/C_IWUSR.s +++ b/libc/sysv/consts/C_IWUSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IWUSR 0000200 0000200 0000200 0000200 0 +.syscon c C_IWUSR 0000200 0000200 0000200 0000200 0000200 0 diff --git a/libc/sysv/consts/C_IXGRP.s b/libc/sysv/consts/C_IXGRP.s index 25c15853b..31972b98d 100644 --- a/libc/sysv/consts/C_IXGRP.s +++ b/libc/sysv/consts/C_IXGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IXGRP 0000010 0000010 0000010 0000010 0 +.syscon c C_IXGRP 0000010 0000010 0000010 0000010 0000010 0 diff --git a/libc/sysv/consts/C_IXOTH.s b/libc/sysv/consts/C_IXOTH.s index c23905651..38627bbde 100644 --- a/libc/sysv/consts/C_IXOTH.s +++ b/libc/sysv/consts/C_IXOTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IXOTH 0000001 0000001 0000001 0000001 0 +.syscon c C_IXOTH 0000001 0000001 0000001 0000001 0000001 0 diff --git a/libc/sysv/consts/C_IXUSR.s b/libc/sysv/consts/C_IXUSR.s index e3e8ea09f..004637cb6 100644 --- a/libc/sysv/consts/C_IXUSR.s +++ b/libc/sysv/consts/C_IXUSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon c C_IXUSR 0000100 0000100 0000100 0000100 0 +.syscon c C_IXUSR 0000100 0000100 0000100 0000100 0000100 0 diff --git a/libc/sysv/consts/DATA.s b/libc/sysv/consts/DATA.s index dc7d52e6f..afc7ef61e 100644 --- a/libc/sysv/consts/DATA.s +++ b/libc/sysv/consts/DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DATA 3 3 3 3 0 +.syscon misc DATA 3 3 3 3 3 0 diff --git a/libc/sysv/consts/DATA_PROTECT.s b/libc/sysv/consts/DATA_PROTECT.s index cbc34cab8..56db71a8d 100644 --- a/libc/sysv/consts/DATA_PROTECT.s +++ b/libc/sysv/consts/DATA_PROTECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DATA_PROTECT 7 0 0 0 0 +.syscon misc DATA_PROTECT 7 0 0 0 0 0 diff --git a/libc/sysv/consts/DAY_1.s b/libc/sysv/consts/DAY_1.s index 9de251d58..52fee1f2a 100644 --- a/libc/sysv/consts/DAY_1.s +++ b/libc/sysv/consts/DAY_1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DAY_1 0x020007 7 7 6 0 +.syscon misc DAY_1 0x020007 7 7 6 6 0 diff --git a/libc/sysv/consts/DAY_2.s b/libc/sysv/consts/DAY_2.s index a7b3dbaec..71d44b72f 100644 --- a/libc/sysv/consts/DAY_2.s +++ b/libc/sysv/consts/DAY_2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DAY_2 0x020008 8 8 7 0 +.syscon misc DAY_2 0x020008 8 8 7 7 0 diff --git a/libc/sysv/consts/DAY_3.s b/libc/sysv/consts/DAY_3.s index 821ae5c75..a2462cf54 100644 --- a/libc/sysv/consts/DAY_3.s +++ b/libc/sysv/consts/DAY_3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DAY_3 0x020009 9 9 8 0 +.syscon misc DAY_3 0x020009 9 9 8 8 0 diff --git a/libc/sysv/consts/DAY_4.s b/libc/sysv/consts/DAY_4.s index 9936be609..245007df7 100644 --- a/libc/sysv/consts/DAY_4.s +++ b/libc/sysv/consts/DAY_4.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DAY_4 0x02000a 10 10 9 0 +.syscon misc DAY_4 0x02000a 10 10 9 9 0 diff --git a/libc/sysv/consts/DAY_5.s b/libc/sysv/consts/DAY_5.s index 2a1a49928..41815f12f 100644 --- a/libc/sysv/consts/DAY_5.s +++ b/libc/sysv/consts/DAY_5.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DAY_5 0x02000b 11 11 10 0 +.syscon misc DAY_5 0x02000b 11 11 10 10 0 diff --git a/libc/sysv/consts/DAY_6.s b/libc/sysv/consts/DAY_6.s index 341249bdc..5e3d080d0 100644 --- a/libc/sysv/consts/DAY_6.s +++ b/libc/sysv/consts/DAY_6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DAY_6 0x02000c 12 12 11 0 +.syscon misc DAY_6 0x02000c 12 12 11 11 0 diff --git a/libc/sysv/consts/DAY_7.s b/libc/sysv/consts/DAY_7.s index 6ee749c64..c50261c33 100644 --- a/libc/sysv/consts/DAY_7.s +++ b/libc/sysv/consts/DAY_7.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DAY_7 0x02000d 13 13 12 0 +.syscon misc DAY_7 0x02000d 13 13 12 12 0 diff --git a/libc/sysv/consts/DEAD_PROCESS.s b/libc/sysv/consts/DEAD_PROCESS.s index 23b2c035f..3918bb669 100644 --- a/libc/sysv/consts/DEAD_PROCESS.s +++ b/libc/sysv/consts/DEAD_PROCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DEAD_PROCESS 8 8 7 0 0 +.syscon misc DEAD_PROCESS 8 8 7 0 0 0 diff --git a/libc/sysv/consts/DELAYTIMER_MAX.s b/libc/sysv/consts/DELAYTIMER_MAX.s index d65a600af..62e35089f 100644 --- a/libc/sysv/consts/DELAYTIMER_MAX.s +++ b/libc/sysv/consts/DELAYTIMER_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DELAYTIMER_MAX 0x7fffffff 0 0 0 0 +.syscon misc DELAYTIMER_MAX 0x7fffffff 0 0 0 0 0 diff --git a/libc/sysv/consts/DEV_BSIZE.s b/libc/sysv/consts/DEV_BSIZE.s index 746025dbc..42229ff63 100644 --- a/libc/sysv/consts/DEV_BSIZE.s +++ b/libc/sysv/consts/DEV_BSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DEV_BSIZE 0x0200 0x0200 0x0200 0x0200 0 +.syscon misc DEV_BSIZE 0x0200 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/DIRTYPE.s b/libc/sysv/consts/DIRTYPE.s index 023b89167..e2c18803c 100644 --- a/libc/sysv/consts/DIRTYPE.s +++ b/libc/sysv/consts/DIRTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DIRTYPE 53 53 53 53 0 +.syscon misc DIRTYPE 53 53 53 53 53 0 diff --git a/libc/sysv/consts/DMAXEXP.s b/libc/sysv/consts/DMAXEXP.s index 6f43d1522..ca004b6a0 100644 --- a/libc/sysv/consts/DMAXEXP.s +++ b/libc/sysv/consts/DMAXEXP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DMAXEXP 0x0400 0 0 0 0 +.syscon misc DMAXEXP 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/DMINEXP.s b/libc/sysv/consts/DMINEXP.s index 253b7ee4f..f4cafb4ad 100644 --- a/libc/sysv/consts/DMINEXP.s +++ b/libc/sysv/consts/DMINEXP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DMINEXP -1021 0 0 0 0 +.syscon misc DMINEXP -1021 0 0 0 0 0 diff --git a/libc/sysv/consts/DOUBLEBITS.s b/libc/sysv/consts/DOUBLEBITS.s index 561aa6759..17f8761dc 100644 --- a/libc/sysv/consts/DOUBLEBITS.s +++ b/libc/sysv/consts/DOUBLEBITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc DOUBLEBITS 0x40 0 0 0 0 +.syscon misc DOUBLEBITS 0x40 0 0 0 0 0 diff --git a/libc/sysv/consts/DT_BLK.s b/libc/sysv/consts/DT_BLK.s index e2d0378f9..56ada475b 100644 --- a/libc/sysv/consts/DT_BLK.s +++ b/libc/sysv/consts/DT_BLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_BLK 6 6 6 6 6 +.syscon dt DT_BLK 6 6 6 6 6 6 diff --git a/libc/sysv/consts/DT_CHR.s b/libc/sysv/consts/DT_CHR.s index 93f9dafba..3bc7f185c 100644 --- a/libc/sysv/consts/DT_CHR.s +++ b/libc/sysv/consts/DT_CHR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_CHR 2 2 2 2 2 +.syscon dt DT_CHR 2 2 2 2 2 2 diff --git a/libc/sysv/consts/DT_DIR.s b/libc/sysv/consts/DT_DIR.s index ae21ce714..f5884e0e3 100644 --- a/libc/sysv/consts/DT_DIR.s +++ b/libc/sysv/consts/DT_DIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_DIR 4 4 4 4 4 +.syscon dt DT_DIR 4 4 4 4 4 4 diff --git a/libc/sysv/consts/DT_FIFO.s b/libc/sysv/consts/DT_FIFO.s index 82b75be52..95e97f13b 100644 --- a/libc/sysv/consts/DT_FIFO.s +++ b/libc/sysv/consts/DT_FIFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_FIFO 1 1 1 1 1 +.syscon dt DT_FIFO 1 1 1 1 1 1 diff --git a/libc/sysv/consts/DT_LNK.s b/libc/sysv/consts/DT_LNK.s index 4fd62bf12..8f4f4d73c 100644 --- a/libc/sysv/consts/DT_LNK.s +++ b/libc/sysv/consts/DT_LNK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_LNK 10 10 10 10 10 +.syscon dt DT_LNK 10 10 10 10 10 10 diff --git a/libc/sysv/consts/DT_REG.s b/libc/sysv/consts/DT_REG.s index 98f404153..9c6c666c6 100644 --- a/libc/sysv/consts/DT_REG.s +++ b/libc/sysv/consts/DT_REG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_REG 8 8 8 8 8 +.syscon dt DT_REG 8 8 8 8 8 8 diff --git a/libc/sysv/consts/DT_SOCK.s b/libc/sysv/consts/DT_SOCK.s index e57a79861..2bca516af 100644 --- a/libc/sysv/consts/DT_SOCK.s +++ b/libc/sysv/consts/DT_SOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_SOCK 12 12 12 12 12 +.syscon dt DT_SOCK 12 12 12 12 12 12 diff --git a/libc/sysv/consts/DT_UNKNOWN.s b/libc/sysv/consts/DT_UNKNOWN.s index 4d7374d11..536dd19d5 100644 --- a/libc/sysv/consts/DT_UNKNOWN.s +++ b/libc/sysv/consts/DT_UNKNOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon dt DT_UNKNOWN 0 0 0 0 0 +.syscon dt DT_UNKNOWN 0 0 0 0 0 0 diff --git a/libc/sysv/consts/D_FMT.s b/libc/sysv/consts/D_FMT.s index 0f2fdde7d..986c0dd99 100644 --- a/libc/sysv/consts/D_FMT.s +++ b/libc/sysv/consts/D_FMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc D_FMT 0x020029 2 2 1 0 +.syscon misc D_FMT 0x020029 2 2 1 1 0 diff --git a/libc/sysv/consts/D_T_FMT.s b/libc/sysv/consts/D_T_FMT.s index 29478d28d..a79f79268 100644 --- a/libc/sysv/consts/D_T_FMT.s +++ b/libc/sysv/consts/D_T_FMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc D_T_FMT 0x020028 1 1 0 0 +.syscon misc D_T_FMT 0x020028 1 1 0 0 0 diff --git a/libc/sysv/consts/E2BIG.s b/libc/sysv/consts/E2BIG.s index b165e9069..d75097806 100644 --- a/libc/sysv/consts/E2BIG.s +++ b/libc/sysv/consts/E2BIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno E2BIG 7 7 7 7 1639 +.syscon errno E2BIG 7 7 7 7 7 1639 diff --git a/libc/sysv/consts/EACCES.s b/libc/sysv/consts/EACCES.s index 105b818e5..98b93994c 100644 --- a/libc/sysv/consts/EACCES.s +++ b/libc/sysv/consts/EACCES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EACCES 13 13 13 13 5 +.syscon errno EACCES 13 13 13 13 13 5 diff --git a/libc/sysv/consts/EADDRINUSE.s b/libc/sysv/consts/EADDRINUSE.s index 1648aa1e9..55837025d 100644 --- a/libc/sysv/consts/EADDRINUSE.s +++ b/libc/sysv/consts/EADDRINUSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EADDRINUSE 98 48 48 48 0x2740 +.syscon errno EADDRINUSE 98 48 48 48 48 0x2740 diff --git a/libc/sysv/consts/EADDRNOTAVAIL.s b/libc/sysv/consts/EADDRNOTAVAIL.s index ca3261847..9822c761f 100644 --- a/libc/sysv/consts/EADDRNOTAVAIL.s +++ b/libc/sysv/consts/EADDRNOTAVAIL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EADDRNOTAVAIL 99 49 49 49 0x2741 +.syscon errno EADDRNOTAVAIL 99 49 49 49 49 0x2741 diff --git a/libc/sysv/consts/EADV.s b/libc/sysv/consts/EADV.s index caf78f0e7..dc7e98e40 100644 --- a/libc/sysv/consts/EADV.s +++ b/libc/sysv/consts/EADV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EADV 68 -1 -1 -1 -1 +.syscon errno EADV 68 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EAFNOSUPPORT.s b/libc/sysv/consts/EAFNOSUPPORT.s index f863a10f7..cee249fd4 100644 --- a/libc/sysv/consts/EAFNOSUPPORT.s +++ b/libc/sysv/consts/EAFNOSUPPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EAFNOSUPPORT 97 47 47 47 0x273f +.syscon errno EAFNOSUPPORT 97 47 47 47 47 0x273f diff --git a/libc/sysv/consts/EAGAIN.s b/libc/sysv/consts/EAGAIN.s index fac22c24c..c1ddff8d0 100644 --- a/libc/sysv/consts/EAGAIN.s +++ b/libc/sysv/consts/EAGAIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EAGAIN 11 35 35 35 0x2733 +.syscon errno EAGAIN 11 35 35 35 35 0x2733 diff --git a/libc/sysv/consts/EAI_ADDRFAMILY.s b/libc/sysv/consts/EAI_ADDRFAMILY.s index 0dfbef696..26cff303a 100644 --- a/libc/sysv/consts/EAI_ADDRFAMILY.s +++ b/libc/sysv/consts/EAI_ADDRFAMILY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_ADDRFAMILY -9 1 0 -9 -9 +.syscon eai EAI_ADDRFAMILY -9 1 0 -9 -9 -9 diff --git a/libc/sysv/consts/EAI_AGAIN.s b/libc/sysv/consts/EAI_AGAIN.s index b8f578df3..df9e73732 100644 --- a/libc/sysv/consts/EAI_AGAIN.s +++ b/libc/sysv/consts/EAI_AGAIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_AGAIN -3 2 2 -3 0x2afa +.syscon eai EAI_AGAIN -3 2 2 -3 -3 0x2afa diff --git a/libc/sysv/consts/EAI_ALLDONE.s b/libc/sysv/consts/EAI_ALLDONE.s index 0407855c9..bfd3c4520 100644 --- a/libc/sysv/consts/EAI_ALLDONE.s +++ b/libc/sysv/consts/EAI_ALLDONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_ALLDONE -103 -103 -103 -103 -103 +.syscon eai EAI_ALLDONE -103 -103 -103 -103 -103 -103 diff --git a/libc/sysv/consts/EAI_BADFLAGS.s b/libc/sysv/consts/EAI_BADFLAGS.s index 2c2f486c6..28994a68c 100644 --- a/libc/sysv/consts/EAI_BADFLAGS.s +++ b/libc/sysv/consts/EAI_BADFLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_BADFLAGS -1 3 3 -1 0x2726 +.syscon eai EAI_BADFLAGS -1 3 3 -1 -1 0x2726 diff --git a/libc/sysv/consts/EAI_CANCELED.s b/libc/sysv/consts/EAI_CANCELED.s index 66b239b01..3767fde3f 100644 --- a/libc/sysv/consts/EAI_CANCELED.s +++ b/libc/sysv/consts/EAI_CANCELED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_CANCELED -101 -101 -101 -101 -101 +.syscon eai EAI_CANCELED -101 -101 -101 -101 -101 -101 diff --git a/libc/sysv/consts/EAI_FAIL.s b/libc/sysv/consts/EAI_FAIL.s index 97173eadc..5c490fb6d 100644 --- a/libc/sysv/consts/EAI_FAIL.s +++ b/libc/sysv/consts/EAI_FAIL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_FAIL -4 4 4 -4 0x2afb +.syscon eai EAI_FAIL -4 4 4 -4 -4 0x2afb diff --git a/libc/sysv/consts/EAI_FAMILY.s b/libc/sysv/consts/EAI_FAMILY.s index defda6336..0418aca4a 100644 --- a/libc/sysv/consts/EAI_FAMILY.s +++ b/libc/sysv/consts/EAI_FAMILY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_FAMILY -6 5 5 -6 0x273f +.syscon eai EAI_FAMILY -6 5 5 -6 -6 0x273f diff --git a/libc/sysv/consts/EAI_IDN_ENCODE.s b/libc/sysv/consts/EAI_IDN_ENCODE.s index fddc41897..c910ffdad 100644 --- a/libc/sysv/consts/EAI_IDN_ENCODE.s +++ b/libc/sysv/consts/EAI_IDN_ENCODE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_IDN_ENCODE -105 -105 -105 -105 -105 +.syscon eai EAI_IDN_ENCODE -105 -105 -105 -105 -105 -105 diff --git a/libc/sysv/consts/EAI_INPROGRESS.s b/libc/sysv/consts/EAI_INPROGRESS.s index 58d459bdb..eecb20abc 100644 --- a/libc/sysv/consts/EAI_INPROGRESS.s +++ b/libc/sysv/consts/EAI_INPROGRESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_INPROGRESS -100 -100 -100 -100 -100 +.syscon eai EAI_INPROGRESS -100 -100 -100 -100 -100 -100 diff --git a/libc/sysv/consts/EAI_INTR.s b/libc/sysv/consts/EAI_INTR.s index 34b89a247..c8e6f9f98 100644 --- a/libc/sysv/consts/EAI_INTR.s +++ b/libc/sysv/consts/EAI_INTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_INTR -104 -104 -104 -104 -104 +.syscon eai EAI_INTR -104 -104 -104 -104 -104 -104 diff --git a/libc/sysv/consts/EAI_MEMORY.s b/libc/sysv/consts/EAI_MEMORY.s index 9245a2a9a..4ee36c693 100644 --- a/libc/sysv/consts/EAI_MEMORY.s +++ b/libc/sysv/consts/EAI_MEMORY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_MEMORY -10 6 6 -10 0x2747 +.syscon eai EAI_MEMORY -10 6 6 -10 -10 0x2747 diff --git a/libc/sysv/consts/EAI_NODATA.s b/libc/sysv/consts/EAI_NODATA.s index 788ac4cf0..f9eb7ae71 100644 --- a/libc/sysv/consts/EAI_NODATA.s +++ b/libc/sysv/consts/EAI_NODATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_NODATA -5 7 0 -5 0x2af9 +.syscon eai EAI_NODATA -5 7 0 -5 -5 0x2af9 diff --git a/libc/sysv/consts/EAI_NONAME.s b/libc/sysv/consts/EAI_NONAME.s index 46f51dd4c..cb9b2f05f 100644 --- a/libc/sysv/consts/EAI_NONAME.s +++ b/libc/sysv/consts/EAI_NONAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_NONAME -2 8 8 -2 0x2af9 +.syscon eai EAI_NONAME -2 8 8 -2 -2 0x2af9 diff --git a/libc/sysv/consts/EAI_NOTCANCELED.s b/libc/sysv/consts/EAI_NOTCANCELED.s index 51151c681..e615921a5 100644 --- a/libc/sysv/consts/EAI_NOTCANCELED.s +++ b/libc/sysv/consts/EAI_NOTCANCELED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_NOTCANCELED -102 -102 -102 -102 -102 +.syscon eai EAI_NOTCANCELED -102 -102 -102 -102 -102 -102 diff --git a/libc/sysv/consts/EAI_OVERFLOW.s b/libc/sysv/consts/EAI_OVERFLOW.s index 7e87f4c96..a02d0810f 100644 --- a/libc/sysv/consts/EAI_OVERFLOW.s +++ b/libc/sysv/consts/EAI_OVERFLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_OVERFLOW -12 14 14 -14 -12 +.syscon eai EAI_OVERFLOW -12 14 14 -14 -14 -12 diff --git a/libc/sysv/consts/EAI_SERVICE.s b/libc/sysv/consts/EAI_SERVICE.s index cb93165bf..c2c8cf3d7 100644 --- a/libc/sysv/consts/EAI_SERVICE.s +++ b/libc/sysv/consts/EAI_SERVICE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_SERVICE -8 9 9 -8 0x277d +.syscon eai EAI_SERVICE -8 9 9 -8 -8 0x277d diff --git a/libc/sysv/consts/EAI_SOCKTYPE.s b/libc/sysv/consts/EAI_SOCKTYPE.s index 841e28e66..1b0f9ad6a 100644 --- a/libc/sysv/consts/EAI_SOCKTYPE.s +++ b/libc/sysv/consts/EAI_SOCKTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_SOCKTYPE -7 10 10 -7 0x273c +.syscon eai EAI_SOCKTYPE -7 10 10 -7 -7 0x273c diff --git a/libc/sysv/consts/EAI_SUCCESS.s b/libc/sysv/consts/EAI_SUCCESS.s index 83463b3ad..44be42c43 100644 --- a/libc/sysv/consts/EAI_SUCCESS.s +++ b/libc/sysv/consts/EAI_SUCCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_SUCCESS 0 0 0 0 0 +.syscon eai EAI_SUCCESS 0 0 0 0 0 0 diff --git a/libc/sysv/consts/EAI_SYSTEM.s b/libc/sysv/consts/EAI_SYSTEM.s index ca1bfbeab..3f2d58bbf 100644 --- a/libc/sysv/consts/EAI_SYSTEM.s +++ b/libc/sysv/consts/EAI_SYSTEM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon eai EAI_SYSTEM -11 11 11 -11 -11 +.syscon eai EAI_SYSTEM -11 11 11 -11 -11 -11 diff --git a/libc/sysv/consts/EALREADY.s b/libc/sysv/consts/EALREADY.s index 845733eb6..ef58efa1a 100644 --- a/libc/sysv/consts/EALREADY.s +++ b/libc/sysv/consts/EALREADY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EALREADY 114 37 37 37 0x2735 +.syscon errno EALREADY 114 37 37 37 37 0x2735 diff --git a/libc/sysv/consts/EBADE.s b/libc/sysv/consts/EBADE.s index 70cbd0fff..0994e3547 100644 --- a/libc/sysv/consts/EBADE.s +++ b/libc/sysv/consts/EBADE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBADE 52 -1 -1 -1 -1 +.syscon errno EBADE 52 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EBADF.s b/libc/sysv/consts/EBADF.s index f21112b0e..13ba296cd 100644 --- a/libc/sysv/consts/EBADF.s +++ b/libc/sysv/consts/EBADF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBADF 9 9 9 9 6 +.syscon errno EBADF 9 9 9 9 9 6 diff --git a/libc/sysv/consts/EBADFD.s b/libc/sysv/consts/EBADFD.s index f9dbc22da..26f08f7c2 100644 --- a/libc/sysv/consts/EBADFD.s +++ b/libc/sysv/consts/EBADFD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBADFD 77 9 9 9 6 +.syscon errno EBADFD 77 9 9 9 9 6 diff --git a/libc/sysv/consts/EBADMSG.s b/libc/sysv/consts/EBADMSG.s index 932e38eda..396a7e6e3 100644 --- a/libc/sysv/consts/EBADMSG.s +++ b/libc/sysv/consts/EBADMSG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBADMSG 74 94 89 92 -1 +.syscon errno EBADMSG 74 94 89 92 88 -1 diff --git a/libc/sysv/consts/EBADR.s b/libc/sysv/consts/EBADR.s index 79616b928..55c444ff1 100644 --- a/libc/sysv/consts/EBADR.s +++ b/libc/sysv/consts/EBADR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBADR 53 -1 -1 -1 -1 +.syscon errno EBADR 53 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EBADRQC.s b/libc/sysv/consts/EBADRQC.s index 6e815b9e0..f4b966023 100644 --- a/libc/sysv/consts/EBADRQC.s +++ b/libc/sysv/consts/EBADRQC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBADRQC 56 -1 -1 -1 -1 +.syscon errno EBADRQC 56 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EBADSLT.s b/libc/sysv/consts/EBADSLT.s index 0ea7ff241..a17cea7d5 100644 --- a/libc/sysv/consts/EBADSLT.s +++ b/libc/sysv/consts/EBADSLT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBADSLT 57 -1 -1 -1 -1 +.syscon errno EBADSLT 57 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EBFONT.s b/libc/sysv/consts/EBFONT.s index 44ea55189..ef8437982 100644 --- a/libc/sysv/consts/EBFONT.s +++ b/libc/sysv/consts/EBFONT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBFONT 59 -1 -1 -1 -1 +.syscon errno EBFONT 59 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EBUSY.s b/libc/sysv/consts/EBUSY.s index 904f4ab1b..1b78e1455 100644 --- a/libc/sysv/consts/EBUSY.s +++ b/libc/sysv/consts/EBUSY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EBUSY 16 16 16 16 170 +.syscon errno EBUSY 16 16 16 16 16 170 diff --git a/libc/sysv/consts/ECANCELED.s b/libc/sysv/consts/ECANCELED.s index 141558065..a620ab3ad 100644 --- a/libc/sysv/consts/ECANCELED.s +++ b/libc/sysv/consts/ECANCELED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ECANCELED 125 89 85 88 -1 +.syscon errno ECANCELED 125 89 85 88 87 -1 diff --git a/libc/sysv/consts/ECHILD.s b/libc/sysv/consts/ECHILD.s index 52d24ec40..a06a294dd 100644 --- a/libc/sysv/consts/ECHILD.s +++ b/libc/sysv/consts/ECHILD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ECHILD 10 10 10 10 128 +.syscon errno ECHILD 10 10 10 10 10 128 diff --git a/libc/sysv/consts/ECHO.s b/libc/sysv/consts/ECHO.s index c87363b25..42bca3826 100644 --- a/libc/sysv/consts/ECHO.s +++ b/libc/sysv/consts/ECHO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ECHO 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 +.syscon termios ECHO 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 diff --git a/libc/sysv/consts/ECHOCTL.s b/libc/sysv/consts/ECHOCTL.s index c046f746c..5b43ade1d 100644 --- a/libc/sysv/consts/ECHOCTL.s +++ b/libc/sysv/consts/ECHOCTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ECHOCTL 0b0000001000000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000001000000000 +.syscon termios ECHOCTL 0b0000001000000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000001000000000 diff --git a/libc/sysv/consts/ECHOE.s b/libc/sysv/consts/ECHOE.s index 6df3526ba..6f15a70af 100644 --- a/libc/sysv/consts/ECHOE.s +++ b/libc/sysv/consts/ECHOE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ECHOE 0b0000000000010000 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000010000 +.syscon termios ECHOE 0b0000000000010000 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000010000 diff --git a/libc/sysv/consts/ECHOK.s b/libc/sysv/consts/ECHOK.s index 2fedcad56..04af5b704 100644 --- a/libc/sysv/consts/ECHOK.s +++ b/libc/sysv/consts/ECHOK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ECHOK 0b0000000000100000 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000100000 +.syscon termios ECHOK 0b0000000000100000 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000100000 diff --git a/libc/sysv/consts/ECHOKE.s b/libc/sysv/consts/ECHOKE.s index 49f37d84f..be0d773e3 100644 --- a/libc/sysv/consts/ECHOKE.s +++ b/libc/sysv/consts/ECHOKE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ECHOKE 0b0000100000000000 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000100000000000 +.syscon termios ECHOKE 0b0000100000000000 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000100000000000 diff --git a/libc/sysv/consts/ECHONL.s b/libc/sysv/consts/ECHONL.s index c6e8b31f8..97e4469d4 100644 --- a/libc/sysv/consts/ECHONL.s +++ b/libc/sysv/consts/ECHONL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ECHONL 0b0000000001000000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000001000000 +.syscon termios ECHONL 0b0000000001000000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000001000000 diff --git a/libc/sysv/consts/ECHOPRT.s b/libc/sysv/consts/ECHOPRT.s index 7cb90d690..c229e10cf 100644 --- a/libc/sysv/consts/ECHOPRT.s +++ b/libc/sysv/consts/ECHOPRT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ECHOPRT 0b0000010000000000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000010000000000 +.syscon termios ECHOPRT 0b0000010000000000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000010000000000 diff --git a/libc/sysv/consts/ECHRNG.s b/libc/sysv/consts/ECHRNG.s index 452b1d3d5..39f09b7c0 100644 --- a/libc/sysv/consts/ECHRNG.s +++ b/libc/sysv/consts/ECHRNG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ECHRNG 44 -1 -1 -1 -1 +.syscon errno ECHRNG 44 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ECOMM.s b/libc/sysv/consts/ECOMM.s index ec6eb531a..d6d933c39 100644 --- a/libc/sysv/consts/ECOMM.s +++ b/libc/sysv/consts/ECOMM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ECOMM 70 -1 -1 -1 -1 +.syscon errno ECOMM 70 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ECONNABORTED.s b/libc/sysv/consts/ECONNABORTED.s index d958a3d62..7b2ab7bb1 100644 --- a/libc/sysv/consts/ECONNABORTED.s +++ b/libc/sysv/consts/ECONNABORTED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ECONNABORTED 103 53 53 53 0x2745 +.syscon errno ECONNABORTED 103 53 53 53 53 0x2745 diff --git a/libc/sysv/consts/ECONNREFUSED.s b/libc/sysv/consts/ECONNREFUSED.s index a8befc7b3..1138ea265 100644 --- a/libc/sysv/consts/ECONNREFUSED.s +++ b/libc/sysv/consts/ECONNREFUSED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ECONNREFUSED 111 61 61 61 0x274d +.syscon errno ECONNREFUSED 111 61 61 61 61 0x274d diff --git a/libc/sysv/consts/ECONNRESET.s b/libc/sysv/consts/ECONNRESET.s index 7c12124bf..79438ff49 100644 --- a/libc/sysv/consts/ECONNRESET.s +++ b/libc/sysv/consts/ECONNRESET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ECONNRESET 104 54 54 54 0x2746 +.syscon errno ECONNRESET 104 54 54 54 54 0x2746 diff --git a/libc/sysv/consts/EDEADLK.s b/libc/sysv/consts/EDEADLK.s index 0f6e7da62..a1ec274b8 100644 --- a/libc/sysv/consts/EDEADLK.s +++ b/libc/sysv/consts/EDEADLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EDEADLK 35 11 11 11 1131 +.syscon errno EDEADLK 35 11 11 11 11 1131 diff --git a/libc/sysv/consts/EDESTADDRREQ.s b/libc/sysv/consts/EDESTADDRREQ.s index b028baf1c..96b568527 100644 --- a/libc/sysv/consts/EDESTADDRREQ.s +++ b/libc/sysv/consts/EDESTADDRREQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EDESTADDRREQ 89 39 39 39 0x2737 +.syscon errno EDESTADDRREQ 89 39 39 39 39 0x2737 diff --git a/libc/sysv/consts/EDOM.s b/libc/sysv/consts/EDOM.s index c1b453727..0367a65de 100644 --- a/libc/sysv/consts/EDOM.s +++ b/libc/sysv/consts/EDOM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EDOM 33 33 33 33 -1 +.syscon errno EDOM 33 33 33 33 33 -1 diff --git a/libc/sysv/consts/EDOTDOT.s b/libc/sysv/consts/EDOTDOT.s index 0036e0712..052ed45cf 100644 --- a/libc/sysv/consts/EDOTDOT.s +++ b/libc/sysv/consts/EDOTDOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EDOTDOT 73 -1 -1 -1 -1 +.syscon errno EDOTDOT 73 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EDQUOT.s b/libc/sysv/consts/EDQUOT.s index b60229c0c..94d00a3c5 100644 --- a/libc/sysv/consts/EDQUOT.s +++ b/libc/sysv/consts/EDQUOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EDQUOT 122 69 69 69 0x2755 +.syscon errno EDQUOT 122 69 69 69 69 0x2755 diff --git a/libc/sysv/consts/EEXIST.s b/libc/sysv/consts/EEXIST.s index dc34a5587..f48ace1be 100644 --- a/libc/sysv/consts/EEXIST.s +++ b/libc/sysv/consts/EEXIST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EEXIST 17 17 17 17 183 +.syscon errno EEXIST 17 17 17 17 17 183 diff --git a/libc/sysv/consts/EFAULT.s b/libc/sysv/consts/EFAULT.s index 69944bc4a..7618eecb4 100644 --- a/libc/sysv/consts/EFAULT.s +++ b/libc/sysv/consts/EFAULT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EFAULT 14 14 14 14 487 +.syscon errno EFAULT 14 14 14 14 14 487 diff --git a/libc/sysv/consts/EFBIG.s b/libc/sysv/consts/EFBIG.s index 28dfa9607..fa2d55a27 100644 --- a/libc/sysv/consts/EFBIG.s +++ b/libc/sysv/consts/EFBIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EFBIG 27 27 27 27 223 +.syscon errno EFBIG 27 27 27 27 27 223 diff --git a/libc/sysv/consts/EFD_CLOEXEC.s b/libc/sysv/consts/EFD_CLOEXEC.s index ce89ac023..a15c2e45b 100644 --- a/libc/sysv/consts/EFD_CLOEXEC.s +++ b/libc/sysv/consts/EFD_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EFD_CLOEXEC 0x080000 0 0 0 0 +.syscon misc EFD_CLOEXEC 0x080000 0 0 0 0 0 diff --git a/libc/sysv/consts/EFD_NONBLOCK.s b/libc/sysv/consts/EFD_NONBLOCK.s index be33f2e47..146226ce5 100644 --- a/libc/sysv/consts/EFD_NONBLOCK.s +++ b/libc/sysv/consts/EFD_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EFD_NONBLOCK 0x0800 0 0 0 0 +.syscon misc EFD_NONBLOCK 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/EFD_SEMAPHORE.s b/libc/sysv/consts/EFD_SEMAPHORE.s index ab7b717fc..fd27f6c80 100644 --- a/libc/sysv/consts/EFD_SEMAPHORE.s +++ b/libc/sysv/consts/EFD_SEMAPHORE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EFD_SEMAPHORE 1 0 0 0 0 +.syscon misc EFD_SEMAPHORE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/EHOSTDOWN.s b/libc/sysv/consts/EHOSTDOWN.s index 5da904057..8fb4a2967 100644 --- a/libc/sysv/consts/EHOSTDOWN.s +++ b/libc/sysv/consts/EHOSTDOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EHOSTDOWN 112 64 64 64 0x2750 +.syscon errno EHOSTDOWN 112 64 64 64 64 0x2750 diff --git a/libc/sysv/consts/EHOSTUNREACH.s b/libc/sysv/consts/EHOSTUNREACH.s index f7307f370..bfc7b82e2 100644 --- a/libc/sysv/consts/EHOSTUNREACH.s +++ b/libc/sysv/consts/EHOSTUNREACH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EHOSTUNREACH 113 65 65 65 0x2751 +.syscon errno EHOSTUNREACH 113 65 65 65 65 0x2751 diff --git a/libc/sysv/consts/EHWPOISON.s b/libc/sysv/consts/EHWPOISON.s index 7b99d263f..077c33045 100644 --- a/libc/sysv/consts/EHWPOISON.s +++ b/libc/sysv/consts/EHWPOISON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EHWPOISON 133 -1 -1 -1 -1 +.syscon errno EHWPOISON 133 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EIDRM.s b/libc/sysv/consts/EIDRM.s index e7509bfb6..26e94c2ee 100644 --- a/libc/sysv/consts/EIDRM.s +++ b/libc/sysv/consts/EIDRM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EIDRM 43 90 82 89 -1 +.syscon errno EIDRM 43 90 82 89 82 -1 diff --git a/libc/sysv/consts/EILSEQ.s b/libc/sysv/consts/EILSEQ.s index 994c00f23..039a08a07 100644 --- a/libc/sysv/consts/EILSEQ.s +++ b/libc/sysv/consts/EILSEQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EILSEQ 84 92 86 84 -1 +.syscon errno EILSEQ 84 92 86 84 85 -1 diff --git a/libc/sysv/consts/EINPROGRESS.s b/libc/sysv/consts/EINPROGRESS.s index b205c960e..54d155b5f 100644 --- a/libc/sysv/consts/EINPROGRESS.s +++ b/libc/sysv/consts/EINPROGRESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EINPROGRESS 115 36 36 36 0x2734 +.syscon errno EINPROGRESS 115 36 36 36 36 0x2734 diff --git a/libc/sysv/consts/EINTR.s b/libc/sysv/consts/EINTR.s index 7db6569a4..3fd38a79f 100644 --- a/libc/sysv/consts/EINTR.s +++ b/libc/sysv/consts/EINTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EINTR 4 4 4 4 10004 +.syscon errno EINTR 4 4 4 4 4 10004 diff --git a/libc/sysv/consts/EINVAL.s b/libc/sysv/consts/EINVAL.s index f5714ca30..93cb7c93e 100644 --- a/libc/sysv/consts/EINVAL.s +++ b/libc/sysv/consts/EINVAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EINVAL 22 22 22 22 87 +.syscon errno EINVAL 22 22 22 22 22 87 diff --git a/libc/sysv/consts/EIO.s b/libc/sysv/consts/EIO.s index 741f067b5..3b62cdc3c 100644 --- a/libc/sysv/consts/EIO.s +++ b/libc/sysv/consts/EIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EIO 5 5 5 5 1117 +.syscon errno EIO 5 5 5 5 5 1117 diff --git a/libc/sysv/consts/EISCONN.s b/libc/sysv/consts/EISCONN.s index c670234e9..d7c449f1a 100644 --- a/libc/sysv/consts/EISCONN.s +++ b/libc/sysv/consts/EISCONN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EISCONN 106 56 56 56 0x2748 +.syscon errno EISCONN 106 56 56 56 56 0x2748 diff --git a/libc/sysv/consts/EISDIR.s b/libc/sysv/consts/EISDIR.s index 3106b0439..99a60896e 100644 --- a/libc/sysv/consts/EISDIR.s +++ b/libc/sysv/consts/EISDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EISDIR 21 21 21 21 267 +.syscon errno EISDIR 21 21 21 21 21 267 diff --git a/libc/sysv/consts/EISNAM.s b/libc/sysv/consts/EISNAM.s index c77dae6f5..7ce5ec455 100644 --- a/libc/sysv/consts/EISNAM.s +++ b/libc/sysv/consts/EISNAM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EISNAM 120 -1 -1 -1 -1 +.syscon errno EISNAM 120 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EKEYEXPIRED.s b/libc/sysv/consts/EKEYEXPIRED.s index f1657d345..4481b6d6c 100644 --- a/libc/sysv/consts/EKEYEXPIRED.s +++ b/libc/sysv/consts/EKEYEXPIRED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EKEYEXPIRED 127 -1 -1 -1 -1 +.syscon errno EKEYEXPIRED 127 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EKEYREJECTED.s b/libc/sysv/consts/EKEYREJECTED.s index a907a6828..8bd744030 100644 --- a/libc/sysv/consts/EKEYREJECTED.s +++ b/libc/sysv/consts/EKEYREJECTED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EKEYREJECTED 129 -1 -1 -1 -1 +.syscon errno EKEYREJECTED 129 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EKEYREVOKED.s b/libc/sysv/consts/EKEYREVOKED.s index 702459b90..252aa9e35 100644 --- a/libc/sysv/consts/EKEYREVOKED.s +++ b/libc/sysv/consts/EKEYREVOKED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EKEYREVOKED 128 -1 -1 -1 -1 +.syscon errno EKEYREVOKED 128 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EL2HLT.s b/libc/sysv/consts/EL2HLT.s index 966e98d76..8dec44d37 100644 --- a/libc/sysv/consts/EL2HLT.s +++ b/libc/sysv/consts/EL2HLT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EL2HLT 51 -1 -1 -1 -1 +.syscon errno EL2HLT 51 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EL2NSYNC.s b/libc/sysv/consts/EL2NSYNC.s index 37b300052..317a0aa9d 100644 --- a/libc/sysv/consts/EL2NSYNC.s +++ b/libc/sysv/consts/EL2NSYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EL2NSYNC 45 -1 -1 -1 -1 +.syscon errno EL2NSYNC 45 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EL3HLT.s b/libc/sysv/consts/EL3HLT.s index 552d4d279..f78377d6c 100644 --- a/libc/sysv/consts/EL3HLT.s +++ b/libc/sysv/consts/EL3HLT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EL3HLT 46 -1 -1 -1 -1 +.syscon errno EL3HLT 46 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EL3RST.s b/libc/sysv/consts/EL3RST.s index 742108898..3354e5392 100644 --- a/libc/sysv/consts/EL3RST.s +++ b/libc/sysv/consts/EL3RST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EL3RST 47 -1 -1 -1 -1 +.syscon errno EL3RST 47 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ELF_NGREG.s b/libc/sysv/consts/ELF_NGREG.s index 35661c424..9fc62b4ff 100644 --- a/libc/sysv/consts/ELF_NGREG.s +++ b/libc/sysv/consts/ELF_NGREG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ELF_NGREG 27 0 0 0 0 +.syscon misc ELF_NGREG 27 0 0 0 0 0 diff --git a/libc/sysv/consts/ELF_PRARGSZ.s b/libc/sysv/consts/ELF_PRARGSZ.s index cfa84f55e..780e6df8d 100644 --- a/libc/sysv/consts/ELF_PRARGSZ.s +++ b/libc/sysv/consts/ELF_PRARGSZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ELF_PRARGSZ 80 0 0 0 0 +.syscon misc ELF_PRARGSZ 80 0 0 0 0 0 diff --git a/libc/sysv/consts/ELIBACC.s b/libc/sysv/consts/ELIBACC.s index ed62a585c..47dcfbc20 100644 --- a/libc/sysv/consts/ELIBACC.s +++ b/libc/sysv/consts/ELIBACC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ELIBACC 79 -1 -1 -1 -1 +.syscon errno ELIBACC 79 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ELIBBAD.s b/libc/sysv/consts/ELIBBAD.s index 33ef5cac0..322c52a78 100644 --- a/libc/sysv/consts/ELIBBAD.s +++ b/libc/sysv/consts/ELIBBAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ELIBBAD 80 -1 -1 -1 -1 +.syscon errno ELIBBAD 80 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ELIBEXEC.s b/libc/sysv/consts/ELIBEXEC.s index 7f4371e3d..b820011ae 100644 --- a/libc/sysv/consts/ELIBEXEC.s +++ b/libc/sysv/consts/ELIBEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ELIBEXEC 83 -1 -1 -1 -1 +.syscon errno ELIBEXEC 83 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ELIBMAX.s b/libc/sysv/consts/ELIBMAX.s index 05e56150f..4446d414a 100644 --- a/libc/sysv/consts/ELIBMAX.s +++ b/libc/sysv/consts/ELIBMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ELIBMAX 82 -1 -1 -1 -1 +.syscon errno ELIBMAX 82 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ELIBSCN.s b/libc/sysv/consts/ELIBSCN.s index 07916c97e..bd8c24991 100644 --- a/libc/sysv/consts/ELIBSCN.s +++ b/libc/sysv/consts/ELIBSCN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ELIBSCN 81 -1 -1 -1 -1 +.syscon errno ELIBSCN 81 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ELNRNG.s b/libc/sysv/consts/ELNRNG.s index adeff9492..a3dca2b5e 100644 --- a/libc/sysv/consts/ELNRNG.s +++ b/libc/sysv/consts/ELNRNG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ELNRNG 48 -1 -1 -1 -1 +.syscon errno ELNRNG 48 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ELOOP.s b/libc/sysv/consts/ELOOP.s index fe47e3b68..e70b905c6 100644 --- a/libc/sysv/consts/ELOOP.s +++ b/libc/sysv/consts/ELOOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ELOOP 40 62 62 62 0x274e +.syscon errno ELOOP 40 62 62 62 62 0x274e diff --git a/libc/sysv/consts/EMEDIUMTYPE.s b/libc/sysv/consts/EMEDIUMTYPE.s index 25ec010eb..66b43cae6 100644 --- a/libc/sysv/consts/EMEDIUMTYPE.s +++ b/libc/sysv/consts/EMEDIUMTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EMEDIUMTYPE 124 -1 -1 86 -1 +.syscon errno EMEDIUMTYPE 124 -1 -1 86 86 -1 diff --git a/libc/sysv/consts/EMFILE.s b/libc/sysv/consts/EMFILE.s index 958ff77c7..880126654 100644 --- a/libc/sysv/consts/EMFILE.s +++ b/libc/sysv/consts/EMFILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EMFILE 24 24 24 24 336 +.syscon errno EMFILE 24 24 24 24 24 336 diff --git a/libc/sysv/consts/EMLINK.s b/libc/sysv/consts/EMLINK.s index fe9007fd6..63b52484d 100644 --- a/libc/sysv/consts/EMLINK.s +++ b/libc/sysv/consts/EMLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EMLINK 31 31 31 31 4 +.syscon errno EMLINK 31 31 31 31 31 4 diff --git a/libc/sysv/consts/EMPTY.s b/libc/sysv/consts/EMPTY.s index 78e8d3157..f51080488 100644 --- a/libc/sysv/consts/EMPTY.s +++ b/libc/sysv/consts/EMPTY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EMPTY 0 0 0 0 0 +.syscon misc EMPTY 0 0 0 0 0 0 diff --git a/libc/sysv/consts/EMSGSIZE.s b/libc/sysv/consts/EMSGSIZE.s index 1785ff45e..ed03c2061 100644 --- a/libc/sysv/consts/EMSGSIZE.s +++ b/libc/sysv/consts/EMSGSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EMSGSIZE 90 40 40 40 0x2738 +.syscon errno EMSGSIZE 90 40 40 40 40 0x2738 diff --git a/libc/sysv/consts/EMULTIHOP.s b/libc/sysv/consts/EMULTIHOP.s index 46c8f39ac..5393b8641 100644 --- a/libc/sysv/consts/EMULTIHOP.s +++ b/libc/sysv/consts/EMULTIHOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EMULTIHOP 72 95 90 -1 -1 +.syscon errno EMULTIHOP 72 95 90 -1 94 -1 diff --git a/libc/sysv/consts/EM_ALTERA_NIOS2.s b/libc/sysv/consts/EM_ALTERA_NIOS2.s index 50530a019..ffb2d2ed2 100644 --- a/libc/sysv/consts/EM_ALTERA_NIOS2.s +++ b/libc/sysv/consts/EM_ALTERA_NIOS2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EM_ALTERA_NIOS2 113 0 0 0 0 +.syscon misc EM_ALTERA_NIOS2 113 0 0 0 0 0 diff --git a/libc/sysv/consts/EM_LATTICEMICO32.s b/libc/sysv/consts/EM_LATTICEMICO32.s index 8c16a35ab..a49d9355f 100644 --- a/libc/sysv/consts/EM_LATTICEMICO32.s +++ b/libc/sysv/consts/EM_LATTICEMICO32.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EM_LATTICEMICO32 138 0 0 0 0 +.syscon misc EM_LATTICEMICO32 138 0 0 0 0 0 diff --git a/libc/sysv/consts/ENAMETOOLONG.s b/libc/sysv/consts/ENAMETOOLONG.s index 19e47e8c2..2f2dbe876 100644 --- a/libc/sysv/consts/ENAMETOOLONG.s +++ b/libc/sysv/consts/ENAMETOOLONG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENAMETOOLONG 36 63 63 63 0x274f +.syscon errno ENAMETOOLONG 36 63 63 63 63 0x274f diff --git a/libc/sysv/consts/ENAVAIL.s b/libc/sysv/consts/ENAVAIL.s index 1bd522a94..d2a103b18 100644 --- a/libc/sysv/consts/ENAVAIL.s +++ b/libc/sysv/consts/ENAVAIL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENAVAIL 119 -1 -1 -1 -1 +.syscon errno ENAVAIL 119 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENDRUNDISC.s b/libc/sysv/consts/ENDRUNDISC.s index 1f668b075..7e8dc0a51 100644 --- a/libc/sysv/consts/ENDRUNDISC.s +++ b/libc/sysv/consts/ENDRUNDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ENDRUNDISC 0 0 0 0x9 -1 +.syscon termios ENDRUNDISC 0 0 0 0x9 0x9 -1 diff --git a/libc/sysv/consts/ENETDOWN.s b/libc/sysv/consts/ENETDOWN.s index 38d5767c4..090e44fe2 100644 --- a/libc/sysv/consts/ENETDOWN.s +++ b/libc/sysv/consts/ENETDOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENETDOWN 100 50 50 50 0x2742 +.syscon errno ENETDOWN 100 50 50 50 50 0x2742 diff --git a/libc/sysv/consts/ENETRESET.s b/libc/sysv/consts/ENETRESET.s index 1dbb54146..16bd13826 100644 --- a/libc/sysv/consts/ENETRESET.s +++ b/libc/sysv/consts/ENETRESET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENETRESET 102 52 52 52 0x2744 +.syscon errno ENETRESET 102 52 52 52 52 0x2744 diff --git a/libc/sysv/consts/ENETUNREACH.s b/libc/sysv/consts/ENETUNREACH.s index 413544abe..4665b5935 100644 --- a/libc/sysv/consts/ENETUNREACH.s +++ b/libc/sysv/consts/ENETUNREACH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENETUNREACH 101 51 51 51 0x2743 +.syscon errno ENETUNREACH 101 51 51 51 51 0x2743 diff --git a/libc/sysv/consts/ENFILE.s b/libc/sysv/consts/ENFILE.s index 9780d08ca..44829e725 100644 --- a/libc/sysv/consts/ENFILE.s +++ b/libc/sysv/consts/ENFILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENFILE 23 23 23 23 331 +.syscon errno ENFILE 23 23 23 23 23 331 diff --git a/libc/sysv/consts/ENOANO.s b/libc/sysv/consts/ENOANO.s index 9f5b2f5a2..80d299503 100644 --- a/libc/sysv/consts/ENOANO.s +++ b/libc/sysv/consts/ENOANO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOANO 55 -1 -1 -1 -1 +.syscon errno ENOANO 55 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENOBUFS.s b/libc/sysv/consts/ENOBUFS.s index f645a9513..8d48efa3f 100644 --- a/libc/sysv/consts/ENOBUFS.s +++ b/libc/sysv/consts/ENOBUFS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOBUFS 105 55 55 55 0x2747 +.syscon errno ENOBUFS 105 55 55 55 55 0x2747 diff --git a/libc/sysv/consts/ENOCSI.s b/libc/sysv/consts/ENOCSI.s index d43a2711d..17800e708 100644 --- a/libc/sysv/consts/ENOCSI.s +++ b/libc/sysv/consts/ENOCSI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOCSI 50 -1 -1 -1 -1 +.syscon errno ENOCSI 50 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENODATA.s b/libc/sysv/consts/ENODATA.s index 184def16d..4905e0029 100644 --- a/libc/sysv/consts/ENODATA.s +++ b/libc/sysv/consts/ENODATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENODATA 61 96 -1 -1 -1 +.syscon errno ENODATA 61 96 -1 -1 89 -1 diff --git a/libc/sysv/consts/ENODEV.s b/libc/sysv/consts/ENODEV.s index eb7dfecd9..59fba2930 100644 --- a/libc/sysv/consts/ENODEV.s +++ b/libc/sysv/consts/ENODEV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENODEV 19 19 19 19 1200 +.syscon errno ENODEV 19 19 19 19 19 1200 diff --git a/libc/sysv/consts/ENOENT.s b/libc/sysv/consts/ENOENT.s index 8c34565cc..daab3bd42 100644 --- a/libc/sysv/consts/ENOENT.s +++ b/libc/sysv/consts/ENOENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOENT 2 2 2 2 2 +.syscon errno ENOENT 2 2 2 2 2 2 diff --git a/libc/sysv/consts/ENOEXEC.s b/libc/sysv/consts/ENOEXEC.s index 78b5924a3..2ddb6af82 100644 --- a/libc/sysv/consts/ENOEXEC.s +++ b/libc/sysv/consts/ENOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOEXEC 8 8 8 8 193 +.syscon errno ENOEXEC 8 8 8 8 8 193 diff --git a/libc/sysv/consts/ENOKEY.s b/libc/sysv/consts/ENOKEY.s index c942cd3e3..9208270c2 100644 --- a/libc/sysv/consts/ENOKEY.s +++ b/libc/sysv/consts/ENOKEY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOKEY 126 -1 -1 -1 -1 +.syscon errno ENOKEY 126 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENOLCK.s b/libc/sysv/consts/ENOLCK.s index 77e61a0a0..59894aa01 100644 --- a/libc/sysv/consts/ENOLCK.s +++ b/libc/sysv/consts/ENOLCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOLCK 37 77 77 77 -1 +.syscon errno ENOLCK 37 77 77 77 77 -1 diff --git a/libc/sysv/consts/ENOLINK.s b/libc/sysv/consts/ENOLINK.s index 1bde040da..c25ba9a0e 100644 --- a/libc/sysv/consts/ENOLINK.s +++ b/libc/sysv/consts/ENOLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOLINK 67 97 91 -1 -1 +.syscon errno ENOLINK 67 97 91 -1 95 -1 diff --git a/libc/sysv/consts/ENOMEDIUM.s b/libc/sysv/consts/ENOMEDIUM.s index 225c97d8e..eba6510e6 100644 --- a/libc/sysv/consts/ENOMEDIUM.s +++ b/libc/sysv/consts/ENOMEDIUM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOMEDIUM 123 -1 -1 85 -1 +.syscon errno ENOMEDIUM 123 -1 -1 85 85 -1 diff --git a/libc/sysv/consts/ENOMEM.s b/libc/sysv/consts/ENOMEM.s index 742f0bb96..7004c5232 100644 --- a/libc/sysv/consts/ENOMEM.s +++ b/libc/sysv/consts/ENOMEM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOMEM 12 12 12 12 14 +.syscon errno ENOMEM 12 12 12 12 12 14 diff --git a/libc/sysv/consts/ENOMSG.s b/libc/sysv/consts/ENOMSG.s index 11b7d1359..84f13774c 100644 --- a/libc/sysv/consts/ENOMSG.s +++ b/libc/sysv/consts/ENOMSG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOMSG 42 91 83 90 -1 +.syscon errno ENOMSG 42 91 83 90 83 -1 diff --git a/libc/sysv/consts/ENONET.s b/libc/sysv/consts/ENONET.s index 2180227d5..886617401 100644 --- a/libc/sysv/consts/ENONET.s +++ b/libc/sysv/consts/ENONET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENONET 64 -1 -1 -1 -1 +.syscon errno ENONET 64 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENOPKG.s b/libc/sysv/consts/ENOPKG.s index 51c1eb380..641543b4d 100644 --- a/libc/sysv/consts/ENOPKG.s +++ b/libc/sysv/consts/ENOPKG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOPKG 65 -1 -1 -1 -1 +.syscon errno ENOPKG 65 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENOPROTOOPT.s b/libc/sysv/consts/ENOPROTOOPT.s index 4e4a14a5a..a47cfa20b 100644 --- a/libc/sysv/consts/ENOPROTOOPT.s +++ b/libc/sysv/consts/ENOPROTOOPT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOPROTOOPT 92 42 42 42 0x273a +.syscon errno ENOPROTOOPT 92 42 42 42 42 0x273a diff --git a/libc/sysv/consts/ENOSPC.s b/libc/sysv/consts/ENOSPC.s index 5b2817dc2..c74724636 100644 --- a/libc/sysv/consts/ENOSPC.s +++ b/libc/sysv/consts/ENOSPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOSPC 28 28 28 28 39 +.syscon errno ENOSPC 28 28 28 28 28 39 diff --git a/libc/sysv/consts/ENOSR.s b/libc/sysv/consts/ENOSR.s index b1407fcdc..19b28020d 100644 --- a/libc/sysv/consts/ENOSR.s +++ b/libc/sysv/consts/ENOSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOSR 63 98 -1 -1 -1 +.syscon errno ENOSR 63 98 -1 -1 90 -1 diff --git a/libc/sysv/consts/ENOSTR.s b/libc/sysv/consts/ENOSTR.s index 6c942dc91..b507f5e1a 100644 --- a/libc/sysv/consts/ENOSTR.s +++ b/libc/sysv/consts/ENOSTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOSTR 60 99 -1 -1 -1 +.syscon errno ENOSTR 60 99 -1 -1 91 -1 diff --git a/libc/sysv/consts/ENOSYS.s b/libc/sysv/consts/ENOSYS.s index cdbe5b215..64a0eba1b 100644 --- a/libc/sysv/consts/ENOSYS.s +++ b/libc/sysv/consts/ENOSYS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOSYS 38 78 78 78 1 +.syscon errno ENOSYS 38 78 78 78 78 1 diff --git a/libc/sysv/consts/ENOTBLK.s b/libc/sysv/consts/ENOTBLK.s index ebda13cd0..1e015b3ca 100644 --- a/libc/sysv/consts/ENOTBLK.s +++ b/libc/sysv/consts/ENOTBLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTBLK 15 15 15 15 26 +.syscon errno ENOTBLK 15 15 15 15 15 26 diff --git a/libc/sysv/consts/ENOTCONN.s b/libc/sysv/consts/ENOTCONN.s index 65e710d39..98caba2dd 100644 --- a/libc/sysv/consts/ENOTCONN.s +++ b/libc/sysv/consts/ENOTCONN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTCONN 107 57 57 57 0x2749 +.syscon errno ENOTCONN 107 57 57 57 57 0x2749 diff --git a/libc/sysv/consts/ENOTDIR.s b/libc/sysv/consts/ENOTDIR.s index f77f9f230..3f7e8ed18 100644 --- a/libc/sysv/consts/ENOTDIR.s +++ b/libc/sysv/consts/ENOTDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTDIR 20 20 20 20 3 +.syscon errno ENOTDIR 20 20 20 20 20 3 diff --git a/libc/sysv/consts/ENOTEMPTY.s b/libc/sysv/consts/ENOTEMPTY.s index d806960f0..94b883bda 100644 --- a/libc/sysv/consts/ENOTEMPTY.s +++ b/libc/sysv/consts/ENOTEMPTY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTEMPTY 39 66 66 66 145 +.syscon errno ENOTEMPTY 39 66 66 66 66 145 diff --git a/libc/sysv/consts/ENOTNAM.s b/libc/sysv/consts/ENOTNAM.s index d6520d1ac..57b0d5d0e 100644 --- a/libc/sysv/consts/ENOTNAM.s +++ b/libc/sysv/consts/ENOTNAM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTNAM 118 -1 -1 -1 -1 +.syscon errno ENOTNAM 118 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENOTRECOVERABLE.s b/libc/sysv/consts/ENOTRECOVERABLE.s index c532c64c4..48668366b 100644 --- a/libc/sysv/consts/ENOTRECOVERABLE.s +++ b/libc/sysv/consts/ENOTRECOVERABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTRECOVERABLE 131 104 95 93 -1 +.syscon errno ENOTRECOVERABLE 131 104 95 93 98 -1 diff --git a/libc/sysv/consts/ENOTSOCK.s b/libc/sysv/consts/ENOTSOCK.s index 2201cd54a..607786a38 100644 --- a/libc/sysv/consts/ENOTSOCK.s +++ b/libc/sysv/consts/ENOTSOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTSOCK 88 38 38 38 0x2736 +.syscon errno ENOTSOCK 88 38 38 38 38 0x2736 diff --git a/libc/sysv/consts/ENOTSUP.s b/libc/sysv/consts/ENOTSUP.s index 8b1eff719..b1bd1f503 100644 --- a/libc/sysv/consts/ENOTSUP.s +++ b/libc/sysv/consts/ENOTSUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTSUP 95 45 45 91 0x273d +.syscon errno ENOTSUP 95 45 45 91 86 0x273d diff --git a/libc/sysv/consts/ENOTTY.s b/libc/sysv/consts/ENOTTY.s index 8568c14f6..9038a6492 100644 --- a/libc/sysv/consts/ENOTTY.s +++ b/libc/sysv/consts/ENOTTY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTTY 25 25 25 25 1118 +.syscon errno ENOTTY 25 25 25 25 25 1118 diff --git a/libc/sysv/consts/ENOTUNIQ.s b/libc/sysv/consts/ENOTUNIQ.s index 40d8dad5a..756adf733 100644 --- a/libc/sysv/consts/ENOTUNIQ.s +++ b/libc/sysv/consts/ENOTUNIQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENOTUNIQ 76 -1 -1 -1 -1 +.syscon errno ENOTUNIQ 76 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ENXIO.s b/libc/sysv/consts/ENXIO.s index 8f80e4782..0d13a6bb7 100644 --- a/libc/sysv/consts/ENXIO.s +++ b/libc/sysv/consts/ENXIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ENXIO 6 6 6 6 1112 +.syscon errno ENXIO 6 6 6 6 6 1112 diff --git a/libc/sysv/consts/EOPNOTSUPP.s b/libc/sysv/consts/EOPNOTSUPP.s index 840c92e35..2ea60e36a 100644 --- a/libc/sysv/consts/EOPNOTSUPP.s +++ b/libc/sysv/consts/EOPNOTSUPP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EOPNOTSUPP 95 102 45 45 0x273d +.syscon errno EOPNOTSUPP 95 102 45 45 45 0x273d diff --git a/libc/sysv/consts/EOVERFLOW.s b/libc/sysv/consts/EOVERFLOW.s index 778f2e0e4..98f2ae109 100644 --- a/libc/sysv/consts/EOVERFLOW.s +++ b/libc/sysv/consts/EOVERFLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EOVERFLOW 75 84 84 87 -1 +.syscon errno EOVERFLOW 75 84 84 87 84 -1 diff --git a/libc/sysv/consts/EOWNERDEAD.s b/libc/sysv/consts/EOWNERDEAD.s index e5f4f9b60..69eb91735 100644 --- a/libc/sysv/consts/EOWNERDEAD.s +++ b/libc/sysv/consts/EOWNERDEAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EOWNERDEAD 130 105 96 94 -1 +.syscon errno EOWNERDEAD 130 105 96 94 97 -1 diff --git a/libc/sysv/consts/EPERM.s b/libc/sysv/consts/EPERM.s index ea7aa6439..de73bc06d 100644 --- a/libc/sysv/consts/EPERM.s +++ b/libc/sysv/consts/EPERM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EPERM 1 1 1 1 12 +.syscon errno EPERM 1 1 1 1 1 12 diff --git a/libc/sysv/consts/EPFNOSUPPORT.s b/libc/sysv/consts/EPFNOSUPPORT.s index 3209d89d4..c27d74111 100644 --- a/libc/sysv/consts/EPFNOSUPPORT.s +++ b/libc/sysv/consts/EPFNOSUPPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EPFNOSUPPORT 96 46 46 46 0x273e +.syscon errno EPFNOSUPPORT 96 46 46 46 46 0x273e diff --git a/libc/sysv/consts/EPIPE.s b/libc/sysv/consts/EPIPE.s index 37a356667..aa116649f 100644 --- a/libc/sysv/consts/EPIPE.s +++ b/libc/sysv/consts/EPIPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EPIPE 32 32 32 32 109 +.syscon errno EPIPE 32 32 32 32 32 109 diff --git a/libc/sysv/consts/EPOLLERR.s b/libc/sysv/consts/EPOLLERR.s index 25b9e3f23..ebd70a3f1 100644 --- a/libc/sysv/consts/EPOLLERR.s +++ b/libc/sysv/consts/EPOLLERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLERR 8 8 8 8 8 +.syscon epoll EPOLLERR 8 8 8 8 8 8 diff --git a/libc/sysv/consts/EPOLLET.s b/libc/sysv/consts/EPOLLET.s index b47a41315..4ab78bfca 100644 --- a/libc/sysv/consts/EPOLLET.s +++ b/libc/sysv/consts/EPOLLET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLET 0x80000000 0x80000000 0x80000000 0x80000000 0x80000000 +.syscon epoll EPOLLET 0x80000000 0x80000000 0x80000000 0x80000000 0x80000000 0x80000000 diff --git a/libc/sysv/consts/EPOLLEXCLUSIVE.s b/libc/sysv/consts/EPOLLEXCLUSIVE.s index edbd88fb3..e5cf62cca 100644 --- a/libc/sysv/consts/EPOLLEXCLUSIVE.s +++ b/libc/sysv/consts/EPOLLEXCLUSIVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLEXCLUSIVE 0x10000000 0x10000000 0x10000000 0x10000000 0x10000000 +.syscon epoll EPOLLEXCLUSIVE 0x10000000 0x10000000 0x10000000 0x10000000 0x10000000 0x10000000 diff --git a/libc/sysv/consts/EPOLLHUP.s b/libc/sysv/consts/EPOLLHUP.s index 8cb611447..76347b6e7 100644 --- a/libc/sysv/consts/EPOLLHUP.s +++ b/libc/sysv/consts/EPOLLHUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLHUP 0x10 0x10 0x10 0x10 0x10 +.syscon epoll EPOLLHUP 0x10 0x10 0x10 0x10 0x10 0x10 diff --git a/libc/sysv/consts/EPOLLIN.s b/libc/sysv/consts/EPOLLIN.s index bffe6f487..aaffa6c1d 100644 --- a/libc/sysv/consts/EPOLLIN.s +++ b/libc/sysv/consts/EPOLLIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLIN 1 1 1 1 1 +.syscon epoll EPOLLIN 1 1 1 1 1 1 diff --git a/libc/sysv/consts/EPOLLMSG.s b/libc/sysv/consts/EPOLLMSG.s index c8e3ce861..de2c3de39 100644 --- a/libc/sysv/consts/EPOLLMSG.s +++ b/libc/sysv/consts/EPOLLMSG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLMSG 0x0400 0x0400 0x0400 0x0400 0x0400 +.syscon epoll EPOLLMSG 0x0400 0x0400 0x0400 0x0400 0x0400 0x0400 diff --git a/libc/sysv/consts/EPOLLONESHOT.s b/libc/sysv/consts/EPOLLONESHOT.s index dd4c3144c..a698cdb6c 100644 --- a/libc/sysv/consts/EPOLLONESHOT.s +++ b/libc/sysv/consts/EPOLLONESHOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLONESHOT 0x40000000 0x40000000 0x40000000 0x40000000 0x40000000 +.syscon epoll EPOLLONESHOT 0x40000000 0x40000000 0x40000000 0x40000000 0x40000000 0x40000000 diff --git a/libc/sysv/consts/EPOLLOUT.s b/libc/sysv/consts/EPOLLOUT.s index ca7c708b0..f61aa1318 100644 --- a/libc/sysv/consts/EPOLLOUT.s +++ b/libc/sysv/consts/EPOLLOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLOUT 4 4 4 4 4 +.syscon epoll EPOLLOUT 4 4 4 4 4 4 diff --git a/libc/sysv/consts/EPOLLPRI.s b/libc/sysv/consts/EPOLLPRI.s index 8a30ab709..30e4423ca 100644 --- a/libc/sysv/consts/EPOLLPRI.s +++ b/libc/sysv/consts/EPOLLPRI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLPRI 2 2 2 2 2 +.syscon epoll EPOLLPRI 2 2 2 2 2 2 diff --git a/libc/sysv/consts/EPOLLRDBAND.s b/libc/sysv/consts/EPOLLRDBAND.s index 8dd39011e..58673bf3c 100644 --- a/libc/sysv/consts/EPOLLRDBAND.s +++ b/libc/sysv/consts/EPOLLRDBAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLRDBAND 0x80 0x80 0x80 0x80 0x80 +.syscon epoll EPOLLRDBAND 0x80 0x80 0x80 0x80 0x80 0x80 diff --git a/libc/sysv/consts/EPOLLRDHUP.s b/libc/sysv/consts/EPOLLRDHUP.s index ead4ebc25..6d6e6f059 100644 --- a/libc/sysv/consts/EPOLLRDHUP.s +++ b/libc/sysv/consts/EPOLLRDHUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLRDHUP 0x2000 0x2000 0x2000 0x2000 0x2000 +.syscon epoll EPOLLRDHUP 0x2000 0x2000 0x2000 0x2000 0x2000 0x2000 diff --git a/libc/sysv/consts/EPOLLRDNORM.s b/libc/sysv/consts/EPOLLRDNORM.s index 650a6ecca..1f98e305d 100644 --- a/libc/sysv/consts/EPOLLRDNORM.s +++ b/libc/sysv/consts/EPOLLRDNORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLRDNORM 0x40 0x40 0x40 0x40 0x40 +.syscon epoll EPOLLRDNORM 0x40 0x40 0x40 0x40 0x40 0x40 diff --git a/libc/sysv/consts/EPOLLWAKEUP.s b/libc/sysv/consts/EPOLLWAKEUP.s index bc40b6941..5e24f7a2e 100644 --- a/libc/sysv/consts/EPOLLWAKEUP.s +++ b/libc/sysv/consts/EPOLLWAKEUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLWAKEUP 0x20000000 0x20000000 0x20000000 0x20000000 0x20000000 +.syscon epoll EPOLLWAKEUP 0x20000000 0x20000000 0x20000000 0x20000000 0x20000000 0x20000000 diff --git a/libc/sysv/consts/EPOLLWRBAND.s b/libc/sysv/consts/EPOLLWRBAND.s index 1b4ff9263..bb9153ffc 100644 --- a/libc/sysv/consts/EPOLLWRBAND.s +++ b/libc/sysv/consts/EPOLLWRBAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLWRBAND 0x0200 0x0200 0x0200 0x0200 0x0200 +.syscon epoll EPOLLWRBAND 0x0200 0x0200 0x0200 0x0200 0x0200 0x0200 diff --git a/libc/sysv/consts/EPOLLWRNORM.s b/libc/sysv/consts/EPOLLWRNORM.s index 5ee7238eb..f5290093f 100644 --- a/libc/sysv/consts/EPOLLWRNORM.s +++ b/libc/sysv/consts/EPOLLWRNORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLLWRNORM 0x0100 0x0100 0x0100 0x0100 0x0100 +.syscon epoll EPOLLWRNORM 0x0100 0x0100 0x0100 0x0100 0x0100 0x0100 diff --git a/libc/sysv/consts/EPOLL_CLOEXEC.s b/libc/sysv/consts/EPOLL_CLOEXEC.s index 840bc8edd..367221e8c 100644 --- a/libc/sysv/consts/EPOLL_CLOEXEC.s +++ b/libc/sysv/consts/EPOLL_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLL_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x80000 +.syscon epoll EPOLL_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x010000 0x80000 diff --git a/libc/sysv/consts/EPOLL_CTL_ADD.s b/libc/sysv/consts/EPOLL_CTL_ADD.s index 9a8348dde..d5c8b9ee6 100644 --- a/libc/sysv/consts/EPOLL_CTL_ADD.s +++ b/libc/sysv/consts/EPOLL_CTL_ADD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLL_CTL_ADD 1 1 1 1 1 +.syscon epoll EPOLL_CTL_ADD 1 1 1 1 1 1 diff --git a/libc/sysv/consts/EPOLL_CTL_DEL.s b/libc/sysv/consts/EPOLL_CTL_DEL.s index 23b981b0b..3c68df06d 100644 --- a/libc/sysv/consts/EPOLL_CTL_DEL.s +++ b/libc/sysv/consts/EPOLL_CTL_DEL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLL_CTL_DEL 2 2 2 2 2 +.syscon epoll EPOLL_CTL_DEL 2 2 2 2 2 2 diff --git a/libc/sysv/consts/EPOLL_CTL_MOD.s b/libc/sysv/consts/EPOLL_CTL_MOD.s index af841d9bf..c81f2d1cd 100644 --- a/libc/sysv/consts/EPOLL_CTL_MOD.s +++ b/libc/sysv/consts/EPOLL_CTL_MOD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon epoll EPOLL_CTL_MOD 3 3 3 3 3 +.syscon epoll EPOLL_CTL_MOD 3 3 3 3 3 3 diff --git a/libc/sysv/consts/EPROTO.s b/libc/sysv/consts/EPROTO.s index 28aa9982d..04fc56417 100644 --- a/libc/sysv/consts/EPROTO.s +++ b/libc/sysv/consts/EPROTO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EPROTO 71 100 92 95 -1 +.syscon errno EPROTO 71 100 92 95 96 -1 diff --git a/libc/sysv/consts/EPROTONOSUPPORT.s b/libc/sysv/consts/EPROTONOSUPPORT.s index 49c0a99e0..daedbb531 100644 --- a/libc/sysv/consts/EPROTONOSUPPORT.s +++ b/libc/sysv/consts/EPROTONOSUPPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EPROTONOSUPPORT 93 43 43 43 0x273b +.syscon errno EPROTONOSUPPORT 93 43 43 43 43 0x273b diff --git a/libc/sysv/consts/EPROTOTYPE.s b/libc/sysv/consts/EPROTOTYPE.s index 0a122735d..272a1806d 100644 --- a/libc/sysv/consts/EPROTOTYPE.s +++ b/libc/sysv/consts/EPROTOTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EPROTOTYPE 91 41 41 41 0x2739 +.syscon errno EPROTOTYPE 91 41 41 41 41 0x2739 diff --git a/libc/sysv/consts/ERA.s b/libc/sysv/consts/ERA.s index 9ad3bda25..8993a63d7 100644 --- a/libc/sysv/consts/ERA.s +++ b/libc/sysv/consts/ERA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ERA 0x02002c 45 45 0 0 +.syscon misc ERA 0x02002c 45 45 0 0 0 diff --git a/libc/sysv/consts/ERANGE.s b/libc/sysv/consts/ERANGE.s index 75166fabf..af89eb10a 100644 --- a/libc/sysv/consts/ERANGE.s +++ b/libc/sysv/consts/ERANGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ERANGE 34 34 34 34 -1 +.syscon errno ERANGE 34 34 34 34 34 -1 diff --git a/libc/sysv/consts/ERA_D_FMT.s b/libc/sysv/consts/ERA_D_FMT.s index e134b33a9..7ed1f2e4a 100644 --- a/libc/sysv/consts/ERA_D_FMT.s +++ b/libc/sysv/consts/ERA_D_FMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ERA_D_FMT 0x02002e 46 46 0 0 +.syscon misc ERA_D_FMT 0x02002e 46 46 0 0 0 diff --git a/libc/sysv/consts/ERA_D_T_FMT.s b/libc/sysv/consts/ERA_D_T_FMT.s index f715f7274..f816e129a 100644 --- a/libc/sysv/consts/ERA_D_T_FMT.s +++ b/libc/sysv/consts/ERA_D_T_FMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ERA_D_T_FMT 0x020030 47 47 0 0 +.syscon misc ERA_D_T_FMT 0x020030 47 47 0 0 0 diff --git a/libc/sysv/consts/ERA_T_FMT.s b/libc/sysv/consts/ERA_T_FMT.s index e798e7bc2..553d8d4ea 100644 --- a/libc/sysv/consts/ERA_T_FMT.s +++ b/libc/sysv/consts/ERA_T_FMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ERA_T_FMT 0x020031 48 48 0 0 +.syscon misc ERA_T_FMT 0x020031 48 48 0 0 0 diff --git a/libc/sysv/consts/EREMCHG.s b/libc/sysv/consts/EREMCHG.s index 0f3605b47..0cc2853b1 100644 --- a/libc/sysv/consts/EREMCHG.s +++ b/libc/sysv/consts/EREMCHG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EREMCHG 78 -1 -1 -1 -1 +.syscon errno EREMCHG 78 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EREMOTE.s b/libc/sysv/consts/EREMOTE.s index b20d635a5..16e39b804 100644 --- a/libc/sysv/consts/EREMOTE.s +++ b/libc/sysv/consts/EREMOTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EREMOTE 66 71 71 71 0x2757 +.syscon errno EREMOTE 66 71 71 71 71 0x2757 diff --git a/libc/sysv/consts/EREMOTEIO.s b/libc/sysv/consts/EREMOTEIO.s index b340ccd80..c16c53edb 100644 --- a/libc/sysv/consts/EREMOTEIO.s +++ b/libc/sysv/consts/EREMOTEIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EREMOTEIO 121 -1 -1 -1 -1 +.syscon errno EREMOTEIO 121 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ERESTART.s b/libc/sysv/consts/ERESTART.s index 032ba37d3..de70076b6 100644 --- a/libc/sysv/consts/ERESTART.s +++ b/libc/sysv/consts/ERESTART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ERESTART 85 -1 -1 -1 -1 +.syscon errno ERESTART 85 -1 -1 -1 -3 -1 diff --git a/libc/sysv/consts/ERFKILL.s b/libc/sysv/consts/ERFKILL.s index 2152bcea6..4948a056e 100644 --- a/libc/sysv/consts/ERFKILL.s +++ b/libc/sysv/consts/ERFKILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ERFKILL 132 -1 -1 -1 -1 +.syscon errno ERFKILL 132 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EROFS.s b/libc/sysv/consts/EROFS.s index a16eef20b..15eca7299 100644 --- a/libc/sysv/consts/EROFS.s +++ b/libc/sysv/consts/EROFS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EROFS 30 30 30 30 6009 +.syscon errno EROFS 30 30 30 30 30 6009 diff --git a/libc/sysv/consts/ESHUTDOWN.s b/libc/sysv/consts/ESHUTDOWN.s index 033eab153..17aa0de59 100644 --- a/libc/sysv/consts/ESHUTDOWN.s +++ b/libc/sysv/consts/ESHUTDOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ESHUTDOWN 108 58 58 58 0x274a +.syscon errno ESHUTDOWN 108 58 58 58 58 0x274a diff --git a/libc/sysv/consts/ESOCKTNOSUPPORT.s b/libc/sysv/consts/ESOCKTNOSUPPORT.s index ba5f24744..829d4d152 100644 --- a/libc/sysv/consts/ESOCKTNOSUPPORT.s +++ b/libc/sysv/consts/ESOCKTNOSUPPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ESOCKTNOSUPPORT 94 44 44 44 0x273c +.syscon errno ESOCKTNOSUPPORT 94 44 44 44 44 0x273c diff --git a/libc/sysv/consts/ESPIPE.s b/libc/sysv/consts/ESPIPE.s index 681879fe2..6c66406b7 100644 --- a/libc/sysv/consts/ESPIPE.s +++ b/libc/sysv/consts/ESPIPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ESPIPE 29 29 29 29 25 +.syscon errno ESPIPE 29 29 29 29 29 25 diff --git a/libc/sysv/consts/ESRCH.s b/libc/sysv/consts/ESRCH.s index a020f20e3..d91acdb58 100644 --- a/libc/sysv/consts/ESRCH.s +++ b/libc/sysv/consts/ESRCH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ESRCH 3 3 3 3 566 +.syscon errno ESRCH 3 3 3 3 3 566 diff --git a/libc/sysv/consts/ESRMNT.s b/libc/sysv/consts/ESRMNT.s index a5241eb88..4efb23e07 100644 --- a/libc/sysv/consts/ESRMNT.s +++ b/libc/sysv/consts/ESRMNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ESRMNT 69 -1 -1 -1 -1 +.syscon errno ESRMNT 69 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ESTALE.s b/libc/sysv/consts/ESTALE.s index 4ee310c27..902d54d3c 100644 --- a/libc/sysv/consts/ESTALE.s +++ b/libc/sysv/consts/ESTALE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ESTALE 116 70 70 70 0x2756 +.syscon errno ESTALE 116 70 70 70 70 0x2756 diff --git a/libc/sysv/consts/ESTRPIPE.s b/libc/sysv/consts/ESTRPIPE.s index 93aa68edd..f8de9375a 100644 --- a/libc/sysv/consts/ESTRPIPE.s +++ b/libc/sysv/consts/ESTRPIPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ESTRPIPE 86 -1 -1 -1 -1 +.syscon errno ESTRPIPE 86 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/ETH_P_CUST.s b/libc/sysv/consts/ETH_P_CUST.s index 8a6b47220..6efab17bc 100644 --- a/libc/sysv/consts/ETH_P_CUST.s +++ b/libc/sysv/consts/ETH_P_CUST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_CUST 0x6006 0 0 0 0 +.syscon misc ETH_P_CUST 0x6006 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_DDCMP.s b/libc/sysv/consts/ETH_P_DDCMP.s index ba9194523..ff338785c 100644 --- a/libc/sysv/consts/ETH_P_DDCMP.s +++ b/libc/sysv/consts/ETH_P_DDCMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_DDCMP 6 0 0 0 0 +.syscon misc ETH_P_DDCMP 6 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_DEC.s b/libc/sysv/consts/ETH_P_DEC.s index fbfc8d508..eecf25f87 100644 --- a/libc/sysv/consts/ETH_P_DEC.s +++ b/libc/sysv/consts/ETH_P_DEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_DEC 0x6000 0 0 0 0 +.syscon misc ETH_P_DEC 0x6000 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_DIAG.s b/libc/sysv/consts/ETH_P_DIAG.s index 37d120152..7e3ff93b4 100644 --- a/libc/sysv/consts/ETH_P_DIAG.s +++ b/libc/sysv/consts/ETH_P_DIAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_DIAG 0x6005 0 0 0 0 +.syscon misc ETH_P_DIAG 0x6005 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_DNA_DL.s b/libc/sysv/consts/ETH_P_DNA_DL.s index 4bad522e1..474655760 100644 --- a/libc/sysv/consts/ETH_P_DNA_DL.s +++ b/libc/sysv/consts/ETH_P_DNA_DL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_DNA_DL 0x6001 0 0 0 0 +.syscon misc ETH_P_DNA_DL 0x6001 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_DNA_RC.s b/libc/sysv/consts/ETH_P_DNA_RC.s index bbf7f9369..987d59e7f 100644 --- a/libc/sysv/consts/ETH_P_DNA_RC.s +++ b/libc/sysv/consts/ETH_P_DNA_RC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_DNA_RC 0x6002 0 0 0 0 +.syscon misc ETH_P_DNA_RC 0x6002 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_DNA_RT.s b/libc/sysv/consts/ETH_P_DNA_RT.s index c0406ebeb..19571a041 100644 --- a/libc/sysv/consts/ETH_P_DNA_RT.s +++ b/libc/sysv/consts/ETH_P_DNA_RT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_DNA_RT 0x6003 0 0 0 0 +.syscon misc ETH_P_DNA_RT 0x6003 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_IEEE802154.s b/libc/sysv/consts/ETH_P_IEEE802154.s index 2d8af0bb2..a2557989d 100644 --- a/libc/sysv/consts/ETH_P_IEEE802154.s +++ b/libc/sysv/consts/ETH_P_IEEE802154.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_IEEE802154 246 0 0 0 0 +.syscon misc ETH_P_IEEE802154 246 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_LAT.s b/libc/sysv/consts/ETH_P_LAT.s index f2b0ee0b6..5f24c682a 100644 --- a/libc/sysv/consts/ETH_P_LAT.s +++ b/libc/sysv/consts/ETH_P_LAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_LAT 0x6004 0 0 0 0 +.syscon misc ETH_P_LAT 0x6004 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_LOCALTALK.s b/libc/sysv/consts/ETH_P_LOCALTALK.s index d83b2e5ad..0fdb92130 100644 --- a/libc/sysv/consts/ETH_P_LOCALTALK.s +++ b/libc/sysv/consts/ETH_P_LOCALTALK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_LOCALTALK 9 0 0 0 0 +.syscon misc ETH_P_LOCALTALK 9 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_PPP_MP.s b/libc/sysv/consts/ETH_P_PPP_MP.s index 8ba5597b4..ef1d9b70a 100644 --- a/libc/sysv/consts/ETH_P_PPP_MP.s +++ b/libc/sysv/consts/ETH_P_PPP_MP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_PPP_MP 8 0 0 0 0 +.syscon misc ETH_P_PPP_MP 8 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_RARP.s b/libc/sysv/consts/ETH_P_RARP.s index 6e7285584..bce9b0313 100644 --- a/libc/sysv/consts/ETH_P_RARP.s +++ b/libc/sysv/consts/ETH_P_RARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_RARP 0x8035 0 0 0 0 +.syscon misc ETH_P_RARP 0x8035 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_SCA.s b/libc/sysv/consts/ETH_P_SCA.s index ccbf5bb33..81c393ad5 100644 --- a/libc/sysv/consts/ETH_P_SCA.s +++ b/libc/sysv/consts/ETH_P_SCA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_SCA 0x6007 0 0 0 0 +.syscon misc ETH_P_SCA 0x6007 0 0 0 0 0 diff --git a/libc/sysv/consts/ETH_P_WAN_PPP.s b/libc/sysv/consts/ETH_P_WAN_PPP.s index 648d03eb1..bca74c479 100644 --- a/libc/sysv/consts/ETH_P_WAN_PPP.s +++ b/libc/sysv/consts/ETH_P_WAN_PPP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ETH_P_WAN_PPP 7 0 0 0 0 +.syscon misc ETH_P_WAN_PPP 7 0 0 0 0 0 diff --git a/libc/sysv/consts/ETIME.s b/libc/sysv/consts/ETIME.s index f3379b36f..c7a87ce3e 100644 --- a/libc/sysv/consts/ETIME.s +++ b/libc/sysv/consts/ETIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ETIME 62 101 -1 -1 -1 +.syscon errno ETIME 62 101 -1 -1 92 -1 diff --git a/libc/sysv/consts/ETIMEDOUT.s b/libc/sysv/consts/ETIMEDOUT.s index b4aee40fb..af75ae34a 100644 --- a/libc/sysv/consts/ETIMEDOUT.s +++ b/libc/sysv/consts/ETIMEDOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ETIMEDOUT 110 60 60 60 0x274c +.syscon errno ETIMEDOUT 110 60 60 60 60 0x274c diff --git a/libc/sysv/consts/ETOOMANYREFS.s b/libc/sysv/consts/ETOOMANYREFS.s index 67cd30453..e3a09f001 100644 --- a/libc/sysv/consts/ETOOMANYREFS.s +++ b/libc/sysv/consts/ETOOMANYREFS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ETOOMANYREFS 109 59 59 59 0x274b +.syscon errno ETOOMANYREFS 109 59 59 59 59 0x274b diff --git a/libc/sysv/consts/ETXTBSY.s b/libc/sysv/consts/ETXTBSY.s index 3d02ca491..1b331861a 100644 --- a/libc/sysv/consts/ETXTBSY.s +++ b/libc/sysv/consts/ETXTBSY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno ETXTBSY 26 26 26 26 148 +.syscon errno ETXTBSY 26 26 26 26 26 148 diff --git a/libc/sysv/consts/EUCLEAN.s b/libc/sysv/consts/EUCLEAN.s index c2ff303bb..796a94d0d 100644 --- a/libc/sysv/consts/EUCLEAN.s +++ b/libc/sysv/consts/EUCLEAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EUCLEAN 117 -1 -1 -1 -1 +.syscon errno EUCLEAN 117 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EUNATCH.s b/libc/sysv/consts/EUNATCH.s index 86ec2eac8..560acd29a 100644 --- a/libc/sysv/consts/EUNATCH.s +++ b/libc/sysv/consts/EUNATCH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EUNATCH 49 -1 -1 -1 -1 +.syscon errno EUNATCH 49 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EUSERS.s b/libc/sysv/consts/EUSERS.s index 06d7d8873..475ed9cde 100644 --- a/libc/sysv/consts/EUSERS.s +++ b/libc/sysv/consts/EUSERS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EUSERS 87 68 68 68 0x2754 +.syscon errno EUSERS 87 68 68 68 68 0x2754 diff --git a/libc/sysv/consts/EWOULDBLOCK.s b/libc/sysv/consts/EWOULDBLOCK.s index 4c56bf3d4..2d56ed298 100644 --- a/libc/sysv/consts/EWOULDBLOCK.s +++ b/libc/sysv/consts/EWOULDBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EWOULDBLOCK 11 35 35 35 0x2733 +.syscon errno EWOULDBLOCK 11 35 35 35 35 0x2733 diff --git a/libc/sysv/consts/EXDEV.s b/libc/sysv/consts/EXDEV.s index 2a7a76967..5164e96d4 100644 --- a/libc/sysv/consts/EXDEV.s +++ b/libc/sysv/consts/EXDEV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EXDEV 18 18 18 18 17 +.syscon errno EXDEV 18 18 18 18 18 17 diff --git a/libc/sysv/consts/EXFULL.s b/libc/sysv/consts/EXFULL.s index ef91b90d2..2df60e94e 100644 --- a/libc/sysv/consts/EXFULL.s +++ b/libc/sysv/consts/EXFULL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon errno EXFULL 54 -1 -1 -1 -1 +.syscon errno EXFULL 54 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/EXIT_FAILURE.s b/libc/sysv/consts/EXIT_FAILURE.s index e570ddd14..85e6b2b2d 100644 --- a/libc/sysv/consts/EXIT_FAILURE.s +++ b/libc/sysv/consts/EXIT_FAILURE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon exit EXIT_FAILURE 1 1 1 1 1 +.syscon exit EXIT_FAILURE 1 1 1 1 1 1 diff --git a/libc/sysv/consts/EXIT_SUCCESS.s b/libc/sysv/consts/EXIT_SUCCESS.s index 90f084e94..ea8616aa3 100644 --- a/libc/sysv/consts/EXIT_SUCCESS.s +++ b/libc/sysv/consts/EXIT_SUCCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon exit EXIT_SUCCESS 0 0 0 0 0 +.syscon exit EXIT_SUCCESS 0 0 0 0 0 0 diff --git a/libc/sysv/consts/EXPR_NEST_MAX.s b/libc/sysv/consts/EXPR_NEST_MAX.s index a0d737cd1..8cbad3262 100644 --- a/libc/sysv/consts/EXPR_NEST_MAX.s +++ b/libc/sysv/consts/EXPR_NEST_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0 +.syscon misc EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/EXTA.s b/libc/sysv/consts/EXTA.s index 7e252a7bc..7b635f695 100644 --- a/libc/sysv/consts/EXTA.s +++ b/libc/sysv/consts/EXTA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXTA 14 0x4b00 0x4b00 0x4b00 0 +.syscon misc EXTA 14 0x4b00 0x4b00 0x4b00 0x4b00 0 diff --git a/libc/sysv/consts/EXTB.s b/libc/sysv/consts/EXTB.s index df08d823e..fc3365bb3 100644 --- a/libc/sysv/consts/EXTB.s +++ b/libc/sysv/consts/EXTB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXTB 15 0x9600 0x9600 0x9600 0 +.syscon misc EXTB 15 0x9600 0x9600 0x9600 0x9600 0 diff --git a/libc/sysv/consts/EXTENDED_EXTENDED_IDENTIFY.s b/libc/sysv/consts/EXTENDED_EXTENDED_IDENTIFY.s index 221b265db..8c4041029 100644 --- a/libc/sysv/consts/EXTENDED_EXTENDED_IDENTIFY.s +++ b/libc/sysv/consts/EXTENDED_EXTENDED_IDENTIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXTENDED_EXTENDED_IDENTIFY 2 0 0 0 0 +.syscon misc EXTENDED_EXTENDED_IDENTIFY 2 0 0 0 0 0 diff --git a/libc/sysv/consts/EXTENDED_MESSAGE.s b/libc/sysv/consts/EXTENDED_MESSAGE.s index a02e73124..503e913ad 100644 --- a/libc/sysv/consts/EXTENDED_MESSAGE.s +++ b/libc/sysv/consts/EXTENDED_MESSAGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXTENDED_MESSAGE 1 0 0 0 0 +.syscon misc EXTENDED_MESSAGE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/EXTENDED_MODIFY_DATA_POINTER.s b/libc/sysv/consts/EXTENDED_MODIFY_DATA_POINTER.s index 8112f6c48..65f7a5623 100644 --- a/libc/sysv/consts/EXTENDED_MODIFY_DATA_POINTER.s +++ b/libc/sysv/consts/EXTENDED_MODIFY_DATA_POINTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXTENDED_MODIFY_DATA_POINTER 0 0 0 0 0 +.syscon misc EXTENDED_MODIFY_DATA_POINTER 0 0 0 0 0 0 diff --git a/libc/sysv/consts/EXTENDED_SDTR.s b/libc/sysv/consts/EXTENDED_SDTR.s index a4b6386e7..f18b09408 100644 --- a/libc/sysv/consts/EXTENDED_SDTR.s +++ b/libc/sysv/consts/EXTENDED_SDTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXTENDED_SDTR 1 0 0 0 0 +.syscon misc EXTENDED_SDTR 1 0 0 0 0 0 diff --git a/libc/sysv/consts/EXTENDED_WDTR.s b/libc/sysv/consts/EXTENDED_WDTR.s index 7ec50439e..9d4af3ac7 100644 --- a/libc/sysv/consts/EXTENDED_WDTR.s +++ b/libc/sysv/consts/EXTENDED_WDTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc EXTENDED_WDTR 3 0 0 0 0 +.syscon misc EXTENDED_WDTR 3 0 0 0 0 0 diff --git a/libc/sysv/consts/EXTPROC.s b/libc/sysv/consts/EXTPROC.s index 01d406ada..c31419904 100644 --- a/libc/sysv/consts/EXTPROC.s +++ b/libc/sysv/consts/EXTPROC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios EXTPROC 65536 0b0000100000000000 0b0000100000000000 0b0000100000000000 65536 +.syscon termios EXTPROC 65536 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 65536 diff --git a/libc/sysv/consts/EX_CANTCREAT.s b/libc/sysv/consts/EX_CANTCREAT.s index 1f4bc9935..0d151b711 100644 --- a/libc/sysv/consts/EX_CANTCREAT.s +++ b/libc/sysv/consts/EX_CANTCREAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_CANTCREAT 73 73 73 73 73 +.syscon ex EX_CANTCREAT 73 73 73 73 73 73 diff --git a/libc/sysv/consts/EX_CONFIG.s b/libc/sysv/consts/EX_CONFIG.s index 1e5e74da4..5e0d25530 100644 --- a/libc/sysv/consts/EX_CONFIG.s +++ b/libc/sysv/consts/EX_CONFIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_CONFIG 78 78 78 78 78 +.syscon ex EX_CONFIG 78 78 78 78 78 78 diff --git a/libc/sysv/consts/EX_DATAERR.s b/libc/sysv/consts/EX_DATAERR.s index a742ebddc..6a1d0bb51 100644 --- a/libc/sysv/consts/EX_DATAERR.s +++ b/libc/sysv/consts/EX_DATAERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_DATAERR 65 65 65 65 65 +.syscon ex EX_DATAERR 65 65 65 65 65 65 diff --git a/libc/sysv/consts/EX_IOERR.s b/libc/sysv/consts/EX_IOERR.s index 3ecc42283..5c33a023b 100644 --- a/libc/sysv/consts/EX_IOERR.s +++ b/libc/sysv/consts/EX_IOERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_IOERR 74 74 74 74 74 +.syscon ex EX_IOERR 74 74 74 74 74 74 diff --git a/libc/sysv/consts/EX_NOHOST.s b/libc/sysv/consts/EX_NOHOST.s index d81366aea..53e38d107 100644 --- a/libc/sysv/consts/EX_NOHOST.s +++ b/libc/sysv/consts/EX_NOHOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_NOHOST 68 68 68 68 68 +.syscon ex EX_NOHOST 68 68 68 68 68 68 diff --git a/libc/sysv/consts/EX_NOINPUT.s b/libc/sysv/consts/EX_NOINPUT.s index a9cf0f7d1..43e1f2233 100644 --- a/libc/sysv/consts/EX_NOINPUT.s +++ b/libc/sysv/consts/EX_NOINPUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_NOINPUT 66 66 66 66 66 +.syscon ex EX_NOINPUT 66 66 66 66 66 66 diff --git a/libc/sysv/consts/EX_NOPERM.s b/libc/sysv/consts/EX_NOPERM.s index b0407693e..1cc23caa6 100644 --- a/libc/sysv/consts/EX_NOPERM.s +++ b/libc/sysv/consts/EX_NOPERM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_NOPERM 77 77 77 77 77 +.syscon ex EX_NOPERM 77 77 77 77 77 77 diff --git a/libc/sysv/consts/EX_NOUSER.s b/libc/sysv/consts/EX_NOUSER.s index 3ec775dea..0e2d73446 100644 --- a/libc/sysv/consts/EX_NOUSER.s +++ b/libc/sysv/consts/EX_NOUSER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_NOUSER 67 67 67 67 67 +.syscon ex EX_NOUSER 67 67 67 67 67 67 diff --git a/libc/sysv/consts/EX_OK.s b/libc/sysv/consts/EX_OK.s index aef05e54d..75a096da2 100644 --- a/libc/sysv/consts/EX_OK.s +++ b/libc/sysv/consts/EX_OK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_OK 0 0 0 0 0 +.syscon ex EX_OK 0 0 0 0 0 0 diff --git a/libc/sysv/consts/EX_OSERR.s b/libc/sysv/consts/EX_OSERR.s index a7557dddd..2eb619041 100644 --- a/libc/sysv/consts/EX_OSERR.s +++ b/libc/sysv/consts/EX_OSERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_OSERR 71 71 71 71 71 +.syscon ex EX_OSERR 71 71 71 71 71 71 diff --git a/libc/sysv/consts/EX_OSFILE.s b/libc/sysv/consts/EX_OSFILE.s index 010d5dec1..c0883f8e5 100644 --- a/libc/sysv/consts/EX_OSFILE.s +++ b/libc/sysv/consts/EX_OSFILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_OSFILE 72 72 72 72 72 +.syscon ex EX_OSFILE 72 72 72 72 72 72 diff --git a/libc/sysv/consts/EX_PROTOCOL.s b/libc/sysv/consts/EX_PROTOCOL.s index 77168e3cb..3d52369b0 100644 --- a/libc/sysv/consts/EX_PROTOCOL.s +++ b/libc/sysv/consts/EX_PROTOCOL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_PROTOCOL 76 76 76 76 76 +.syscon ex EX_PROTOCOL 76 76 76 76 76 76 diff --git a/libc/sysv/consts/EX_SOFTWARE.s b/libc/sysv/consts/EX_SOFTWARE.s index d3a62c8f2..684285298 100644 --- a/libc/sysv/consts/EX_SOFTWARE.s +++ b/libc/sysv/consts/EX_SOFTWARE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_SOFTWARE 70 70 70 70 70 +.syscon ex EX_SOFTWARE 70 70 70 70 70 70 diff --git a/libc/sysv/consts/EX_TEMPFAIL.s b/libc/sysv/consts/EX_TEMPFAIL.s index fd0176cc3..510c97a91 100644 --- a/libc/sysv/consts/EX_TEMPFAIL.s +++ b/libc/sysv/consts/EX_TEMPFAIL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_TEMPFAIL 75 75 75 75 75 +.syscon ex EX_TEMPFAIL 75 75 75 75 75 75 diff --git a/libc/sysv/consts/EX_UNAVAILABLE.s b/libc/sysv/consts/EX_UNAVAILABLE.s index d62a522d3..517e46619 100644 --- a/libc/sysv/consts/EX_UNAVAILABLE.s +++ b/libc/sysv/consts/EX_UNAVAILABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_UNAVAILABLE 69 69 69 69 69 +.syscon ex EX_UNAVAILABLE 69 69 69 69 69 69 diff --git a/libc/sysv/consts/EX_USAGE.s b/libc/sysv/consts/EX_USAGE.s index 9bd3a4680..1b87559c9 100644 --- a/libc/sysv/consts/EX_USAGE.s +++ b/libc/sysv/consts/EX_USAGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX_USAGE 64 64 64 64 64 +.syscon ex EX_USAGE 64 64 64 64 64 64 diff --git a/libc/sysv/consts/EX__BASE.s b/libc/sysv/consts/EX__BASE.s index 7b7091524..9d92ca684 100644 --- a/libc/sysv/consts/EX__BASE.s +++ b/libc/sysv/consts/EX__BASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX__BASE 64 64 64 64 64 +.syscon ex EX__BASE 64 64 64 64 64 64 diff --git a/libc/sysv/consts/EX__MAX.s b/libc/sysv/consts/EX__MAX.s index 254959a6d..6da343e8e 100644 --- a/libc/sysv/consts/EX__MAX.s +++ b/libc/sysv/consts/EX__MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ex EX__MAX 78 78 78 78 78 +.syscon ex EX__MAX 78 78 78 78 78 78 diff --git a/libc/sysv/consts/FALLOC_FL_COLLAPSE_RANGE.s b/libc/sysv/consts/FALLOC_FL_COLLAPSE_RANGE.s index dc7e8fa8a..a49bf47cd 100644 --- a/libc/sysv/consts/FALLOC_FL_COLLAPSE_RANGE.s +++ b/libc/sysv/consts/FALLOC_FL_COLLAPSE_RANGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FALLOC_FL_COLLAPSE_RANGE 0x08 -1 -1 -1 -1 +.syscon misc FALLOC_FL_COLLAPSE_RANGE 0x08 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/FALLOC_FL_INSERT_RANGE.s b/libc/sysv/consts/FALLOC_FL_INSERT_RANGE.s index 775bea9cf..09315a6cc 100644 --- a/libc/sysv/consts/FALLOC_FL_INSERT_RANGE.s +++ b/libc/sysv/consts/FALLOC_FL_INSERT_RANGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FALLOC_FL_INSERT_RANGE 0x20 -1 -1 -1 -1 +.syscon misc FALLOC_FL_INSERT_RANGE 0x20 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/FALLOC_FL_KEEP_SIZE.s b/libc/sysv/consts/FALLOC_FL_KEEP_SIZE.s index d9403c17b..789093305 100644 --- a/libc/sysv/consts/FALLOC_FL_KEEP_SIZE.s +++ b/libc/sysv/consts/FALLOC_FL_KEEP_SIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FALLOC_FL_KEEP_SIZE 0x01 -1 -1 -1 -1 +.syscon misc FALLOC_FL_KEEP_SIZE 0x01 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/FALLOC_FL_NO_HIDE_STALE.s b/libc/sysv/consts/FALLOC_FL_NO_HIDE_STALE.s index 600ac5f0f..2acc4adc3 100644 --- a/libc/sysv/consts/FALLOC_FL_NO_HIDE_STALE.s +++ b/libc/sysv/consts/FALLOC_FL_NO_HIDE_STALE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FALLOC_FL_NO_HIDE_STALE 0x04 -1 -1 -1 -1 +.syscon misc FALLOC_FL_NO_HIDE_STALE 0x04 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/FALLOC_FL_PUNCH_HOLE.s b/libc/sysv/consts/FALLOC_FL_PUNCH_HOLE.s index 4a4f7ff0d..3f5caa10b 100644 --- a/libc/sysv/consts/FALLOC_FL_PUNCH_HOLE.s +++ b/libc/sysv/consts/FALLOC_FL_PUNCH_HOLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FALLOC_FL_PUNCH_HOLE 0x02 -1 -1 -1 -1 +.syscon misc FALLOC_FL_PUNCH_HOLE 0x02 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/FALLOC_FL_UNSHARE_RANGE.s b/libc/sysv/consts/FALLOC_FL_UNSHARE_RANGE.s index c15572cb3..0029436cc 100644 --- a/libc/sysv/consts/FALLOC_FL_UNSHARE_RANGE.s +++ b/libc/sysv/consts/FALLOC_FL_UNSHARE_RANGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FALLOC_FL_UNSHARE_RANGE 0x40 -1 -1 -1 -1 +.syscon misc FALLOC_FL_UNSHARE_RANGE 0x40 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/FALLOC_FL_ZERO_RANGE.s b/libc/sysv/consts/FALLOC_FL_ZERO_RANGE.s index bd956ef72..e5d151ec5 100644 --- a/libc/sysv/consts/FALLOC_FL_ZERO_RANGE.s +++ b/libc/sysv/consts/FALLOC_FL_ZERO_RANGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FALLOC_FL_ZERO_RANGE 0x10 -1 -1 -1 0x000980C8 +.syscon misc FALLOC_FL_ZERO_RANGE 0x10 -1 -1 -1 -1 0x000980C8 diff --git a/libc/sysv/consts/FANOTIFY_METADATA_VERSION.s b/libc/sysv/consts/FANOTIFY_METADATA_VERSION.s index 4086c97f7..acd0fb64a 100644 --- a/libc/sysv/consts/FANOTIFY_METADATA_VERSION.s +++ b/libc/sysv/consts/FANOTIFY_METADATA_VERSION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FANOTIFY_METADATA_VERSION 3 0 0 0 0 +.syscon misc FANOTIFY_METADATA_VERSION 3 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ACCESS.s b/libc/sysv/consts/FAN_ACCESS.s index c27b5b7d0..fe7e7ba7a 100644 --- a/libc/sysv/consts/FAN_ACCESS.s +++ b/libc/sysv/consts/FAN_ACCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ACCESS 1 0 0 0 0 +.syscon fan FAN_ACCESS 1 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ACCESS_PERM.s b/libc/sysv/consts/FAN_ACCESS_PERM.s index 2b1a8705b..652468ea9 100644 --- a/libc/sysv/consts/FAN_ACCESS_PERM.s +++ b/libc/sysv/consts/FAN_ACCESS_PERM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ACCESS_PERM 0x020000 0 0 0 0 +.syscon fan FAN_ACCESS_PERM 0x020000 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ALLOW.s b/libc/sysv/consts/FAN_ALLOW.s index 8b20b554a..4ae82f2b3 100644 --- a/libc/sysv/consts/FAN_ALLOW.s +++ b/libc/sysv/consts/FAN_ALLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ALLOW 1 0 0 0 0 +.syscon fan FAN_ALLOW 1 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ALL_CLASS_BITS.s b/libc/sysv/consts/FAN_ALL_CLASS_BITS.s index df3429f47..00fb773b5 100644 --- a/libc/sysv/consts/FAN_ALL_CLASS_BITS.s +++ b/libc/sysv/consts/FAN_ALL_CLASS_BITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ALL_CLASS_BITS 12 0 0 0 0 +.syscon fan FAN_ALL_CLASS_BITS 12 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ALL_EVENTS.s b/libc/sysv/consts/FAN_ALL_EVENTS.s index bf110d81b..604368a1a 100644 --- a/libc/sysv/consts/FAN_ALL_EVENTS.s +++ b/libc/sysv/consts/FAN_ALL_EVENTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ALL_EVENTS 59 0 0 0 0 +.syscon fan FAN_ALL_EVENTS 59 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ALL_INIT_FLAGS.s b/libc/sysv/consts/FAN_ALL_INIT_FLAGS.s index c4faaa07b..61b5dd07d 100644 --- a/libc/sysv/consts/FAN_ALL_INIT_FLAGS.s +++ b/libc/sysv/consts/FAN_ALL_INIT_FLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ALL_INIT_FLAGS 63 0 0 0 0 +.syscon fan FAN_ALL_INIT_FLAGS 63 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ALL_MARK_FLAGS.s b/libc/sysv/consts/FAN_ALL_MARK_FLAGS.s index 6143eaa33..2bfab2f18 100644 --- a/libc/sysv/consts/FAN_ALL_MARK_FLAGS.s +++ b/libc/sysv/consts/FAN_ALL_MARK_FLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ALL_MARK_FLAGS 255 0 0 0 0 +.syscon fan FAN_ALL_MARK_FLAGS 255 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ALL_OUTGOING_EVENTS.s b/libc/sysv/consts/FAN_ALL_OUTGOING_EVENTS.s index aa1762441..4f7e5ddf2 100644 --- a/libc/sysv/consts/FAN_ALL_OUTGOING_EVENTS.s +++ b/libc/sysv/consts/FAN_ALL_OUTGOING_EVENTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ALL_OUTGOING_EVENTS 0x03403b 0 0 0 0 +.syscon fan FAN_ALL_OUTGOING_EVENTS 0x03403b 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ALL_PERM_EVENTS.s b/libc/sysv/consts/FAN_ALL_PERM_EVENTS.s index 434aa6fce..dc23792bd 100644 --- a/libc/sysv/consts/FAN_ALL_PERM_EVENTS.s +++ b/libc/sysv/consts/FAN_ALL_PERM_EVENTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ALL_PERM_EVENTS 0x030000 0 0 0 0 +.syscon fan FAN_ALL_PERM_EVENTS 0x030000 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_CLASS_CONTENT.s b/libc/sysv/consts/FAN_CLASS_CONTENT.s index 804ab2354..66412fc30 100644 --- a/libc/sysv/consts/FAN_CLASS_CONTENT.s +++ b/libc/sysv/consts/FAN_CLASS_CONTENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_CLASS_CONTENT 4 0 0 0 0 +.syscon fan FAN_CLASS_CONTENT 4 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_CLASS_NOTIF.s b/libc/sysv/consts/FAN_CLASS_NOTIF.s index 842b919b2..3a80c40ab 100644 --- a/libc/sysv/consts/FAN_CLASS_NOTIF.s +++ b/libc/sysv/consts/FAN_CLASS_NOTIF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_CLASS_NOTIF 0 0 0 0 0 +.syscon fan FAN_CLASS_NOTIF 0 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_CLASS_PRE_CONTENT.s b/libc/sysv/consts/FAN_CLASS_PRE_CONTENT.s index c37f828da..2f2fe769a 100644 --- a/libc/sysv/consts/FAN_CLASS_PRE_CONTENT.s +++ b/libc/sysv/consts/FAN_CLASS_PRE_CONTENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_CLASS_PRE_CONTENT 8 0 0 0 0 +.syscon fan FAN_CLASS_PRE_CONTENT 8 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_CLOEXEC.s b/libc/sysv/consts/FAN_CLOEXEC.s index 9085e6075..935b92106 100644 --- a/libc/sysv/consts/FAN_CLOEXEC.s +++ b/libc/sysv/consts/FAN_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_CLOEXEC 1 0 0 0 0 +.syscon fan FAN_CLOEXEC 1 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_CLOSE.s b/libc/sysv/consts/FAN_CLOSE.s index 145f4ca1e..1d5272215 100644 --- a/libc/sysv/consts/FAN_CLOSE.s +++ b/libc/sysv/consts/FAN_CLOSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_CLOSE 24 0 0 0 0 +.syscon fan FAN_CLOSE 24 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_CLOSE_NOWRITE.s b/libc/sysv/consts/FAN_CLOSE_NOWRITE.s index 7c4aec124..4e342fbf5 100644 --- a/libc/sysv/consts/FAN_CLOSE_NOWRITE.s +++ b/libc/sysv/consts/FAN_CLOSE_NOWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_CLOSE_NOWRITE 0x10 0 0 0 0 +.syscon fan FAN_CLOSE_NOWRITE 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_CLOSE_WRITE.s b/libc/sysv/consts/FAN_CLOSE_WRITE.s index 7af5fe843..af955a52c 100644 --- a/libc/sysv/consts/FAN_CLOSE_WRITE.s +++ b/libc/sysv/consts/FAN_CLOSE_WRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_CLOSE_WRITE 8 0 0 0 0 +.syscon fan FAN_CLOSE_WRITE 8 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_DENY.s b/libc/sysv/consts/FAN_DENY.s index 546f27335..82bb87fa9 100644 --- a/libc/sysv/consts/FAN_DENY.s +++ b/libc/sysv/consts/FAN_DENY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_DENY 2 0 0 0 0 +.syscon fan FAN_DENY 2 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_EVENT_METADATA_LEN.s b/libc/sysv/consts/FAN_EVENT_METADATA_LEN.s index e698c27c7..7d00518e2 100644 --- a/libc/sysv/consts/FAN_EVENT_METADATA_LEN.s +++ b/libc/sysv/consts/FAN_EVENT_METADATA_LEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_EVENT_METADATA_LEN 24 0 0 0 0 +.syscon fan FAN_EVENT_METADATA_LEN 24 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_EVENT_ON_CHILD.s b/libc/sysv/consts/FAN_EVENT_ON_CHILD.s index fc568fb39..cc7ed0718 100644 --- a/libc/sysv/consts/FAN_EVENT_ON_CHILD.s +++ b/libc/sysv/consts/FAN_EVENT_ON_CHILD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_EVENT_ON_CHILD 0x08000000 0 0 0 0 +.syscon fan FAN_EVENT_ON_CHILD 0x08000000 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_ADD.s b/libc/sysv/consts/FAN_MARK_ADD.s index 7324132c4..bebba1ce0 100644 --- a/libc/sysv/consts/FAN_MARK_ADD.s +++ b/libc/sysv/consts/FAN_MARK_ADD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_ADD 1 0 0 0 0 +.syscon fan FAN_MARK_ADD 1 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_DONT_FOLLOW.s b/libc/sysv/consts/FAN_MARK_DONT_FOLLOW.s index f8285f995..d0b42e028 100644 --- a/libc/sysv/consts/FAN_MARK_DONT_FOLLOW.s +++ b/libc/sysv/consts/FAN_MARK_DONT_FOLLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_DONT_FOLLOW 4 0 0 0 0 +.syscon fan FAN_MARK_DONT_FOLLOW 4 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_FLUSH.s b/libc/sysv/consts/FAN_MARK_FLUSH.s index 8fe990d66..a239deef8 100644 --- a/libc/sysv/consts/FAN_MARK_FLUSH.s +++ b/libc/sysv/consts/FAN_MARK_FLUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_FLUSH 0x80 0 0 0 0 +.syscon fan FAN_MARK_FLUSH 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_IGNORED_MASK.s b/libc/sysv/consts/FAN_MARK_IGNORED_MASK.s index c686abb71..d9b9879d9 100644 --- a/libc/sysv/consts/FAN_MARK_IGNORED_MASK.s +++ b/libc/sysv/consts/FAN_MARK_IGNORED_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_IGNORED_MASK 0x20 0 0 0 0 +.syscon fan FAN_MARK_IGNORED_MASK 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_IGNORED_SURV_MODIFY.s b/libc/sysv/consts/FAN_MARK_IGNORED_SURV_MODIFY.s index 335c81dd6..03b94e9c1 100644 --- a/libc/sysv/consts/FAN_MARK_IGNORED_SURV_MODIFY.s +++ b/libc/sysv/consts/FAN_MARK_IGNORED_SURV_MODIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_IGNORED_SURV_MODIFY 0x40 0 0 0 0 +.syscon fan FAN_MARK_IGNORED_SURV_MODIFY 0x40 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_MOUNT.s b/libc/sysv/consts/FAN_MARK_MOUNT.s index ef3a433f0..e2e66c413 100644 --- a/libc/sysv/consts/FAN_MARK_MOUNT.s +++ b/libc/sysv/consts/FAN_MARK_MOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_MOUNT 0x10 0 0 0 0 +.syscon fan FAN_MARK_MOUNT 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_ONLYDIR.s b/libc/sysv/consts/FAN_MARK_ONLYDIR.s index 4ff7e24fe..5f27840af 100644 --- a/libc/sysv/consts/FAN_MARK_ONLYDIR.s +++ b/libc/sysv/consts/FAN_MARK_ONLYDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_ONLYDIR 8 0 0 0 0 +.syscon fan FAN_MARK_ONLYDIR 8 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MARK_REMOVE.s b/libc/sysv/consts/FAN_MARK_REMOVE.s index 9eb01c97f..41e62bceb 100644 --- a/libc/sysv/consts/FAN_MARK_REMOVE.s +++ b/libc/sysv/consts/FAN_MARK_REMOVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MARK_REMOVE 2 0 0 0 0 +.syscon fan FAN_MARK_REMOVE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_MODIFY.s b/libc/sysv/consts/FAN_MODIFY.s index 4b23d73fe..70c3cdc96 100644 --- a/libc/sysv/consts/FAN_MODIFY.s +++ b/libc/sysv/consts/FAN_MODIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_MODIFY 2 0 0 0 0 +.syscon fan FAN_MODIFY 2 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_NOFD.s b/libc/sysv/consts/FAN_NOFD.s index 001f9523a..64e68f2bf 100644 --- a/libc/sysv/consts/FAN_NOFD.s +++ b/libc/sysv/consts/FAN_NOFD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_NOFD -1 0 0 0 0 +.syscon fan FAN_NOFD -1 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_NONBLOCK.s b/libc/sysv/consts/FAN_NONBLOCK.s index 8bcf43213..884d1d44e 100644 --- a/libc/sysv/consts/FAN_NONBLOCK.s +++ b/libc/sysv/consts/FAN_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_NONBLOCK 2 0 0 0 0 +.syscon fan FAN_NONBLOCK 2 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_ONDIR.s b/libc/sysv/consts/FAN_ONDIR.s index 7f70e2a2a..115cc6665 100644 --- a/libc/sysv/consts/FAN_ONDIR.s +++ b/libc/sysv/consts/FAN_ONDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_ONDIR 0x40000000 0 0 0 0 +.syscon fan FAN_ONDIR 0x40000000 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_OPEN.s b/libc/sysv/consts/FAN_OPEN.s index cb2323380..18fec5445 100644 --- a/libc/sysv/consts/FAN_OPEN.s +++ b/libc/sysv/consts/FAN_OPEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_OPEN 0x20 0 0 0 0 +.syscon fan FAN_OPEN 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_OPEN_PERM.s b/libc/sysv/consts/FAN_OPEN_PERM.s index 90d9c859c..efdd885b5 100644 --- a/libc/sysv/consts/FAN_OPEN_PERM.s +++ b/libc/sysv/consts/FAN_OPEN_PERM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_OPEN_PERM 0x010000 0 0 0 0 +.syscon fan FAN_OPEN_PERM 0x010000 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_Q_OVERFLOW.s b/libc/sysv/consts/FAN_Q_OVERFLOW.s index c23361cfe..b97f65b4a 100644 --- a/libc/sysv/consts/FAN_Q_OVERFLOW.s +++ b/libc/sysv/consts/FAN_Q_OVERFLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_Q_OVERFLOW 0x4000 0 0 0 0 +.syscon fan FAN_Q_OVERFLOW 0x4000 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_UNLIMITED_MARKS.s b/libc/sysv/consts/FAN_UNLIMITED_MARKS.s index 896d50f6b..34614ec27 100644 --- a/libc/sysv/consts/FAN_UNLIMITED_MARKS.s +++ b/libc/sysv/consts/FAN_UNLIMITED_MARKS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_UNLIMITED_MARKS 0x20 0 0 0 0 +.syscon fan FAN_UNLIMITED_MARKS 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/FAN_UNLIMITED_QUEUE.s b/libc/sysv/consts/FAN_UNLIMITED_QUEUE.s index 4ed7accc0..9142964d7 100644 --- a/libc/sysv/consts/FAN_UNLIMITED_QUEUE.s +++ b/libc/sysv/consts/FAN_UNLIMITED_QUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fan FAN_UNLIMITED_QUEUE 0x10 0 0 0 0 +.syscon fan FAN_UNLIMITED_QUEUE 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/FAPPEND.s b/libc/sysv/consts/FAPPEND.s index 8cbcd26ef..b3a5b7c67 100644 --- a/libc/sysv/consts/FAPPEND.s +++ b/libc/sysv/consts/FAPPEND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FAPPEND 0x0400 8 8 8 0 +.syscon misc FAPPEND 0x0400 8 8 8 8 0 diff --git a/libc/sysv/consts/FASYNC.s b/libc/sysv/consts/FASYNC.s index 56ba34bfc..864ff7d0f 100644 --- a/libc/sysv/consts/FASYNC.s +++ b/libc/sysv/consts/FASYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FASYNC 0x2000 0x40 0x40 0x40 0 +.syscon misc FASYNC 0x2000 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/FDPIC_FUNCPTRS.s b/libc/sysv/consts/FDPIC_FUNCPTRS.s index 99e297053..25ef7b1f0 100644 --- a/libc/sysv/consts/FDPIC_FUNCPTRS.s +++ b/libc/sysv/consts/FDPIC_FUNCPTRS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty FDPIC_FUNCPTRS 0x0080000 -1 -1 -1 -1 +.syscon prsnlty FDPIC_FUNCPTRS 0x0080000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/FD_CLOEXEC.s b/libc/sysv/consts/FD_CLOEXEC.s index c936e1395..42f155f97 100644 --- a/libc/sysv/consts/FD_CLOEXEC.s +++ b/libc/sysv/consts/FD_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl3 FD_CLOEXEC 1 1 1 1 1 +.syscon fcntl3 FD_CLOEXEC 1 1 1 1 1 1 diff --git a/libc/sysv/consts/FD_SETSIZE.s b/libc/sysv/consts/FD_SETSIZE.s index b0afcd768..7338ab63c 100644 --- a/libc/sysv/consts/FD_SETSIZE.s +++ b/libc/sysv/consts/FD_SETSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon select FD_SETSIZE 0x0400 0x0400 0x0400 0x0400 0x0400 +.syscon select FD_SETSIZE 0x0400 0x0400 0x0400 0x0400 0x0400 0x0400 diff --git a/libc/sysv/consts/FE_ALL_EXCEPT.s b/libc/sysv/consts/FE_ALL_EXCEPT.s index 0a4d348b9..281071459 100644 --- a/libc/sysv/consts/FE_ALL_EXCEPT.s +++ b/libc/sysv/consts/FE_ALL_EXCEPT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_ALL_EXCEPT 61 63 63 63 0 +.syscon misc FE_ALL_EXCEPT 61 63 63 63 63 0 diff --git a/libc/sysv/consts/FE_DIVBYZERO.s b/libc/sysv/consts/FE_DIVBYZERO.s index 92f4cbe3f..317b743d5 100644 --- a/libc/sysv/consts/FE_DIVBYZERO.s +++ b/libc/sysv/consts/FE_DIVBYZERO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_DIVBYZERO 4 4 4 4 0 +.syscon misc FE_DIVBYZERO 4 4 4 4 4 0 diff --git a/libc/sysv/consts/FE_DOWNWARD.s b/libc/sysv/consts/FE_DOWNWARD.s index 7d0b30bbb..588286061 100644 --- a/libc/sysv/consts/FE_DOWNWARD.s +++ b/libc/sysv/consts/FE_DOWNWARD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_DOWNWARD 0x0400 0x0400 0x0400 0x0400 0 +.syscon misc FE_DOWNWARD 0x0400 0x0400 0x0400 0x0400 0x0400 0 diff --git a/libc/sysv/consts/FE_INEXACT.s b/libc/sysv/consts/FE_INEXACT.s index ebc1da30e..343c4e1f5 100644 --- a/libc/sysv/consts/FE_INEXACT.s +++ b/libc/sysv/consts/FE_INEXACT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_INEXACT 0x20 0x20 0x20 0x20 0 +.syscon misc FE_INEXACT 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/FE_INVALID.s b/libc/sysv/consts/FE_INVALID.s index 7ff01cdc8..ff5a1bf56 100644 --- a/libc/sysv/consts/FE_INVALID.s +++ b/libc/sysv/consts/FE_INVALID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_INVALID 1 1 1 1 0 +.syscon misc FE_INVALID 1 1 1 1 1 0 diff --git a/libc/sysv/consts/FE_OVERFLOW.s b/libc/sysv/consts/FE_OVERFLOW.s index 747ebdb2e..0580a8663 100644 --- a/libc/sysv/consts/FE_OVERFLOW.s +++ b/libc/sysv/consts/FE_OVERFLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_OVERFLOW 8 8 8 8 0 +.syscon misc FE_OVERFLOW 8 8 8 8 8 0 diff --git a/libc/sysv/consts/FE_TONEAREST.s b/libc/sysv/consts/FE_TONEAREST.s index ef56cbbef..79f4df7ae 100644 --- a/libc/sysv/consts/FE_TONEAREST.s +++ b/libc/sysv/consts/FE_TONEAREST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_TONEAREST 0 0 0 0 0 +.syscon misc FE_TONEAREST 0 0 0 0 0 0 diff --git a/libc/sysv/consts/FE_TOWARDZERO.s b/libc/sysv/consts/FE_TOWARDZERO.s index ffb54c753..e6b48eedd 100644 --- a/libc/sysv/consts/FE_TOWARDZERO.s +++ b/libc/sysv/consts/FE_TOWARDZERO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_TOWARDZERO 0x0c00 0x0c00 0x0c00 0x0c00 0 +.syscon misc FE_TOWARDZERO 0x0c00 0x0c00 0x0c00 0x0c00 0x0c00 0 diff --git a/libc/sysv/consts/FE_UNDERFLOW.s b/libc/sysv/consts/FE_UNDERFLOW.s index a680d118f..5bb07343c 100644 --- a/libc/sysv/consts/FE_UNDERFLOW.s +++ b/libc/sysv/consts/FE_UNDERFLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_UNDERFLOW 0x10 0x10 0x10 0x10 0 +.syscon misc FE_UNDERFLOW 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/FE_UPWARD.s b/libc/sysv/consts/FE_UPWARD.s index 250db60d6..d977fb013 100644 --- a/libc/sysv/consts/FE_UPWARD.s +++ b/libc/sysv/consts/FE_UPWARD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FE_UPWARD 0x0800 0x0800 0x0800 0x0800 0 +.syscon misc FE_UPWARD 0x0800 0x0800 0x0800 0x0800 0x0800 0 diff --git a/libc/sysv/consts/FF0.s b/libc/sysv/consts/FF0.s index 10c991f56..5472ed24e 100644 --- a/libc/sysv/consts/FF0.s +++ b/libc/sysv/consts/FF0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios FF0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 +.syscon termios FF0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 diff --git a/libc/sysv/consts/FF1.s b/libc/sysv/consts/FF1.s index 0545cca2e..a85d9dc7b 100644 --- a/libc/sysv/consts/FF1.s +++ b/libc/sysv/consts/FF1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios FF1 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0b1000000000000000 +.syscon termios FF1 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0 0b1000000000000000 diff --git a/libc/sysv/consts/FFDLY.s b/libc/sysv/consts/FFDLY.s index 7e7af9c81..1ad2392d5 100644 --- a/libc/sysv/consts/FFDLY.s +++ b/libc/sysv/consts/FFDLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios FFDLY 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0b1000000000000000 +.syscon termios FFDLY 0b1000000000000000 0b000100000000000000 0b000100000000000000 0 0 0b1000000000000000 diff --git a/libc/sysv/consts/FFSYNC.s b/libc/sysv/consts/FFSYNC.s index b8899b04e..18cd5fa36 100644 --- a/libc/sysv/consts/FFSYNC.s +++ b/libc/sysv/consts/FFSYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FFSYNC 0x101000 0x80 0x80 0x80 0 +.syscon misc FFSYNC 0x101000 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/FIFOTYPE.s b/libc/sysv/consts/FIFOTYPE.s index 0edbd61df..bbcf4e015 100644 --- a/libc/sysv/consts/FIFOTYPE.s +++ b/libc/sysv/consts/FIFOTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FIFOTYPE 54 54 54 54 0 +.syscon misc FIFOTYPE 54 54 54 54 54 0 diff --git a/libc/sysv/consts/FILENAME_MAX.s b/libc/sysv/consts/FILENAME_MAX.s index de6014c33..25a120017 100644 --- a/libc/sysv/consts/FILENAME_MAX.s +++ b/libc/sysv/consts/FILENAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FILENAME_MAX 0x1000 0x0400 0x0400 0x0400 0 +.syscon misc FILENAME_MAX 0x1000 0x0400 0x0400 0x0400 0x0400 0 diff --git a/libc/sysv/consts/FIOASYNC.s b/libc/sysv/consts/FIOASYNC.s index d48558a8d..d1d8f529d 100644 --- a/libc/sysv/consts/FIOASYNC.s +++ b/libc/sysv/consts/FIOASYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ioctl FIOASYNC 0x5452 0x8004667d 0x8004667d 0x8004667d 0x8004667d +.syscon ioctl FIOASYNC 0x5452 0x8004667d 0x8004667d 0x8004667d 0x8004667d 0x8004667d diff --git a/libc/sysv/consts/FIOGETOWN.s b/libc/sysv/consts/FIOGETOWN.s index 1373cafb6..121f9afe0 100644 --- a/libc/sysv/consts/FIOGETOWN.s +++ b/libc/sysv/consts/FIOGETOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FIOGETOWN 0x8903 0x4004667b 0x4004667b 0x4004667b 0 +.syscon misc FIOGETOWN 0x8903 0x4004667b 0x4004667b 0x4004667b 0x4004667b 0 diff --git a/libc/sysv/consts/FIONBIO.s b/libc/sysv/consts/FIONBIO.s index b4eef920c..9b6c532db 100644 --- a/libc/sysv/consts/FIONBIO.s +++ b/libc/sysv/consts/FIONBIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ioctl FIONBIO 0x5421 0x8004667e 0x8004667e 0x8004667e 0x8004667e +.syscon ioctl FIONBIO 0x5421 0x8004667e 0x8004667e 0x8004667e 0x8004667e 0x8004667e diff --git a/libc/sysv/consts/FIONREAD.s b/libc/sysv/consts/FIONREAD.s index cef1e2d59..a87073ecd 100644 --- a/libc/sysv/consts/FIONREAD.s +++ b/libc/sysv/consts/FIONREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ioctl FIONREAD 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f +.syscon ioctl FIONREAD 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f 0x4004667f diff --git a/libc/sysv/consts/FIOSETOWN.s b/libc/sysv/consts/FIOSETOWN.s index 6dbc244ca..1986ebf1f 100644 --- a/libc/sysv/consts/FIOSETOWN.s +++ b/libc/sysv/consts/FIOSETOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FIOSETOWN 0x8901 0x8004667c 0x8004667c 0x8004667c 0 +.syscon misc FIOSETOWN 0x8901 0x8004667c 0x8004667c 0x8004667c 0x8004667c 0 diff --git a/libc/sysv/consts/FLUSHO.s b/libc/sysv/consts/FLUSHO.s index 267e7b2f4..a84810815 100644 --- a/libc/sysv/consts/FLUSHO.s +++ b/libc/sysv/consts/FLUSHO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios FLUSHO 0b0001000000000000 8388608 8388608 8388608 0b0001000000000000 +.syscon termios FLUSHO 0b0001000000000000 8388608 8388608 8388608 8388608 0b0001000000000000 diff --git a/libc/sysv/consts/FMAXEXP.s b/libc/sysv/consts/FMAXEXP.s index 053bb79b9..791ef23eb 100644 --- a/libc/sysv/consts/FMAXEXP.s +++ b/libc/sysv/consts/FMAXEXP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FMAXEXP 0x80 0 0 0 0 +.syscon misc FMAXEXP 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/FMINEXP.s b/libc/sysv/consts/FMINEXP.s index 9e60b4432..961aa2966 100644 --- a/libc/sysv/consts/FMINEXP.s +++ b/libc/sysv/consts/FMINEXP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FMINEXP -125 0 0 0 0 +.syscon misc FMINEXP -125 0 0 0 0 0 diff --git a/libc/sysv/consts/FNDELAY.s b/libc/sysv/consts/FNDELAY.s index e0bf79fab..15c914066 100644 --- a/libc/sysv/consts/FNDELAY.s +++ b/libc/sysv/consts/FNDELAY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FNDELAY 0x0800 4 4 4 0 +.syscon misc FNDELAY 0x0800 4 4 4 4 0 diff --git a/libc/sysv/consts/FNM_NOSYS.s b/libc/sysv/consts/FNM_NOSYS.s index 62ccf6748..5f93c76d4 100644 --- a/libc/sysv/consts/FNM_NOSYS.s +++ b/libc/sysv/consts/FNM_NOSYS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FNM_NOSYS -1 -1 -1 2 0 +.syscon misc FNM_NOSYS -1 -1 -1 2 2 0 diff --git a/libc/sysv/consts/FNONBLOCK.s b/libc/sysv/consts/FNONBLOCK.s index 35158cfcd..32a0369cb 100644 --- a/libc/sysv/consts/FNONBLOCK.s +++ b/libc/sysv/consts/FNONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FNONBLOCK 0x0800 4 4 4 0 +.syscon misc FNONBLOCK 0x0800 4 4 4 4 0 diff --git a/libc/sysv/consts/FOPEN_MAX.s b/libc/sysv/consts/FOPEN_MAX.s index e9a111fe3..672e66f36 100644 --- a/libc/sysv/consts/FOPEN_MAX.s +++ b/libc/sysv/consts/FOPEN_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FOPEN_MAX 0x10 20 20 20 0 +.syscon misc FOPEN_MAX 0x10 20 20 20 20 0 diff --git a/libc/sysv/consts/FORMAT_UNIT.s b/libc/sysv/consts/FORMAT_UNIT.s index 3c5aa15d5..f3916a722 100644 --- a/libc/sysv/consts/FORMAT_UNIT.s +++ b/libc/sysv/consts/FORMAT_UNIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FORMAT_UNIT 4 0 0 0 0 +.syscon misc FORMAT_UNIT 4 0 0 0 0 0 diff --git a/libc/sysv/consts/FORM_C.s b/libc/sysv/consts/FORM_C.s index c97a51c10..2800e1a99 100644 --- a/libc/sysv/consts/FORM_C.s +++ b/libc/sysv/consts/FORM_C.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FORM_C 3 3 3 3 0 +.syscon misc FORM_C 3 3 3 3 3 0 diff --git a/libc/sysv/consts/FORM_N.s b/libc/sysv/consts/FORM_N.s index 50df33dbd..4647fee32 100644 --- a/libc/sysv/consts/FORM_N.s +++ b/libc/sysv/consts/FORM_N.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FORM_N 1 1 1 1 0 +.syscon misc FORM_N 1 1 1 1 1 0 diff --git a/libc/sysv/consts/FORM_T.s b/libc/sysv/consts/FORM_T.s index 1f5f9ab5e..7be4116d4 100644 --- a/libc/sysv/consts/FORM_T.s +++ b/libc/sysv/consts/FORM_T.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FORM_T 2 2 2 2 0 +.syscon misc FORM_T 2 2 2 2 2 0 diff --git a/libc/sysv/consts/FPE_FLTDIV.s b/libc/sysv/consts/FPE_FLTDIV.s index d55e34d8d..804323459 100644 --- a/libc/sysv/consts/FPE_FLTDIV.s +++ b/libc/sysv/consts/FPE_FLTDIV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_FLTDIV 3 1 3 3 0 +.syscon misc FPE_FLTDIV 3 1 3 3 3 0 diff --git a/libc/sysv/consts/FPE_FLTINV.s b/libc/sysv/consts/FPE_FLTINV.s index 7d1ae9f43..e93935825 100644 --- a/libc/sysv/consts/FPE_FLTINV.s +++ b/libc/sysv/consts/FPE_FLTINV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_FLTINV 7 5 7 7 0 +.syscon misc FPE_FLTINV 7 5 7 7 7 0 diff --git a/libc/sysv/consts/FPE_FLTOVF.s b/libc/sysv/consts/FPE_FLTOVF.s index d12943649..b83c34d28 100644 --- a/libc/sysv/consts/FPE_FLTOVF.s +++ b/libc/sysv/consts/FPE_FLTOVF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_FLTOVF 4 2 4 4 0 +.syscon misc FPE_FLTOVF 4 2 4 4 4 0 diff --git a/libc/sysv/consts/FPE_FLTRES.s b/libc/sysv/consts/FPE_FLTRES.s index 3cae8905f..c073587ab 100644 --- a/libc/sysv/consts/FPE_FLTRES.s +++ b/libc/sysv/consts/FPE_FLTRES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_FLTRES 6 4 6 6 0 +.syscon misc FPE_FLTRES 6 4 6 6 6 0 diff --git a/libc/sysv/consts/FPE_FLTSUB.s b/libc/sysv/consts/FPE_FLTSUB.s index 98811b751..ae51fcd98 100644 --- a/libc/sysv/consts/FPE_FLTSUB.s +++ b/libc/sysv/consts/FPE_FLTSUB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_FLTSUB 8 6 8 8 0 +.syscon misc FPE_FLTSUB 8 6 8 8 8 0 diff --git a/libc/sysv/consts/FPE_FLTUND.s b/libc/sysv/consts/FPE_FLTUND.s index 0bb4427f9..e387b69ff 100644 --- a/libc/sysv/consts/FPE_FLTUND.s +++ b/libc/sysv/consts/FPE_FLTUND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_FLTUND 5 3 5 5 0 +.syscon misc FPE_FLTUND 5 3 5 5 5 0 diff --git a/libc/sysv/consts/FPE_INTDIV.s b/libc/sysv/consts/FPE_INTDIV.s index 9638c7ee7..4a443d4cf 100644 --- a/libc/sysv/consts/FPE_INTDIV.s +++ b/libc/sysv/consts/FPE_INTDIV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_INTDIV 1 7 2 1 0 +.syscon misc FPE_INTDIV 1 7 2 1 1 0 diff --git a/libc/sysv/consts/FPE_INTOVF.s b/libc/sysv/consts/FPE_INTOVF.s index a2dfcc739..866d2f308 100644 --- a/libc/sysv/consts/FPE_INTOVF.s +++ b/libc/sysv/consts/FPE_INTOVF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FPE_INTOVF 2 8 1 2 0 +.syscon misc FPE_INTOVF 2 8 1 2 2 0 diff --git a/libc/sysv/consts/FSETLOCKING_BYCALLER.s b/libc/sysv/consts/FSETLOCKING_BYCALLER.s index bf4b95490..1f9ab00cf 100644 --- a/libc/sysv/consts/FSETLOCKING_BYCALLER.s +++ b/libc/sysv/consts/FSETLOCKING_BYCALLER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FSETLOCKING_BYCALLER 2 0 0 0 0 +.syscon misc FSETLOCKING_BYCALLER 2 0 0 0 0 0 diff --git a/libc/sysv/consts/FSETLOCKING_INTERNAL.s b/libc/sysv/consts/FSETLOCKING_INTERNAL.s index 6bbbf322f..9ff02cbd4 100644 --- a/libc/sysv/consts/FSETLOCKING_INTERNAL.s +++ b/libc/sysv/consts/FSETLOCKING_INTERNAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FSETLOCKING_INTERNAL 1 0 0 0 0 +.syscon misc FSETLOCKING_INTERNAL 1 0 0 0 0 0 diff --git a/libc/sysv/consts/FSETLOCKING_QUERY.s b/libc/sysv/consts/FSETLOCKING_QUERY.s index 4ac351f56..f59a968de 100644 --- a/libc/sysv/consts/FSETLOCKING_QUERY.s +++ b/libc/sysv/consts/FSETLOCKING_QUERY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FSETLOCKING_QUERY 0 0 0 0 0 +.syscon misc FSETLOCKING_QUERY 0 0 0 0 0 0 diff --git a/libc/sysv/consts/FTW_CHDIR.s b/libc/sysv/consts/FTW_CHDIR.s index e9a324394..8d6ec6e81 100644 --- a/libc/sysv/consts/FTW_CHDIR.s +++ b/libc/sysv/consts/FTW_CHDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_CHDIR 4 8 8 8 0 +.syscon misc FTW_CHDIR 4 8 8 8 8 0 diff --git a/libc/sysv/consts/FTW_D.s b/libc/sysv/consts/FTW_D.s index 858addc3e..794802b33 100644 --- a/libc/sysv/consts/FTW_D.s +++ b/libc/sysv/consts/FTW_D.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_D 1 1 1 1 0 +.syscon misc FTW_D 1 1 1 1 1 0 diff --git a/libc/sysv/consts/FTW_DEPTH.s b/libc/sysv/consts/FTW_DEPTH.s index 768154f61..63c7e1627 100644 --- a/libc/sysv/consts/FTW_DEPTH.s +++ b/libc/sysv/consts/FTW_DEPTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_DEPTH 8 4 4 4 0 +.syscon misc FTW_DEPTH 8 4 4 4 4 0 diff --git a/libc/sysv/consts/FTW_DNR.s b/libc/sysv/consts/FTW_DNR.s index 32a875c4b..73621f581 100644 --- a/libc/sysv/consts/FTW_DNR.s +++ b/libc/sysv/consts/FTW_DNR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_DNR 2 2 2 2 0 +.syscon misc FTW_DNR 2 2 2 2 2 0 diff --git a/libc/sysv/consts/FTW_DP.s b/libc/sysv/consts/FTW_DP.s index 41332d292..994c6cd68 100644 --- a/libc/sysv/consts/FTW_DP.s +++ b/libc/sysv/consts/FTW_DP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_DP 5 3 3 3 0 +.syscon misc FTW_DP 5 3 3 3 3 0 diff --git a/libc/sysv/consts/FTW_F.s b/libc/sysv/consts/FTW_F.s index fa05e2089..262066485 100644 --- a/libc/sysv/consts/FTW_F.s +++ b/libc/sysv/consts/FTW_F.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_F 0 0 0 0 0 +.syscon misc FTW_F 0 0 0 0 0 0 diff --git a/libc/sysv/consts/FTW_MOUNT.s b/libc/sysv/consts/FTW_MOUNT.s index 880dfe23b..f97cb1b41 100644 --- a/libc/sysv/consts/FTW_MOUNT.s +++ b/libc/sysv/consts/FTW_MOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_MOUNT 2 2 2 2 0 +.syscon misc FTW_MOUNT 2 2 2 2 2 0 diff --git a/libc/sysv/consts/FTW_NS.s b/libc/sysv/consts/FTW_NS.s index d8e9ab15c..d938aa45d 100644 --- a/libc/sysv/consts/FTW_NS.s +++ b/libc/sysv/consts/FTW_NS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_NS 3 4 4 4 0 +.syscon misc FTW_NS 3 4 4 4 4 0 diff --git a/libc/sysv/consts/FTW_PHYS.s b/libc/sysv/consts/FTW_PHYS.s index ec30bb939..6f26399d3 100644 --- a/libc/sysv/consts/FTW_PHYS.s +++ b/libc/sysv/consts/FTW_PHYS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_PHYS 1 1 1 1 0 +.syscon misc FTW_PHYS 1 1 1 1 1 0 diff --git a/libc/sysv/consts/FTW_SL.s b/libc/sysv/consts/FTW_SL.s index e03233d6a..5caf64fd3 100644 --- a/libc/sysv/consts/FTW_SL.s +++ b/libc/sysv/consts/FTW_SL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_SL 4 5 5 5 0 +.syscon misc FTW_SL 4 5 5 5 5 0 diff --git a/libc/sysv/consts/FTW_SLN.s b/libc/sysv/consts/FTW_SLN.s index 91ac90dbd..d84867aa2 100644 --- a/libc/sysv/consts/FTW_SLN.s +++ b/libc/sysv/consts/FTW_SLN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FTW_SLN 6 6 6 6 0 +.syscon misc FTW_SLN 6 6 6 6 6 0 diff --git a/libc/sysv/consts/FUTEX_PRIVATE_FLAG.s b/libc/sysv/consts/FUTEX_PRIVATE_FLAG.s index d29d53fb8..ba15bb393 100644 --- a/libc/sysv/consts/FUTEX_PRIVATE_FLAG.s +++ b/libc/sysv/consts/FUTEX_PRIVATE_FLAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FUTEX_PRIVATE_FLAG 0 0 0 0x80 0 +.syscon misc FUTEX_PRIVATE_FLAG 0 0 0 0x80 0x80 0 diff --git a/libc/sysv/consts/FUTEX_REQUEUE.s b/libc/sysv/consts/FUTEX_REQUEUE.s index 2efe8ff89..1824d0216 100644 --- a/libc/sysv/consts/FUTEX_REQUEUE.s +++ b/libc/sysv/consts/FUTEX_REQUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FUTEX_REQUEUE 0 0 0 3 0 +.syscon misc FUTEX_REQUEUE 0 0 0 3 3 0 diff --git a/libc/sysv/consts/FUTEX_REQUEUE_PRIVATE.s b/libc/sysv/consts/FUTEX_REQUEUE_PRIVATE.s index 593f460e1..eaf530042 100644 --- a/libc/sysv/consts/FUTEX_REQUEUE_PRIVATE.s +++ b/libc/sysv/consts/FUTEX_REQUEUE_PRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FUTEX_REQUEUE_PRIVATE 0 0 0 131 0 +.syscon misc FUTEX_REQUEUE_PRIVATE 0 0 0 131 131 0 diff --git a/libc/sysv/consts/FUTEX_WAIT.s b/libc/sysv/consts/FUTEX_WAIT.s index 629812eb6..cb21e44de 100644 --- a/libc/sysv/consts/FUTEX_WAIT.s +++ b/libc/sysv/consts/FUTEX_WAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FUTEX_WAIT 0 0 0 1 0 +.syscon misc FUTEX_WAIT 0 0 0 1 1 0 diff --git a/libc/sysv/consts/FUTEX_WAIT_PRIVATE.s b/libc/sysv/consts/FUTEX_WAIT_PRIVATE.s index 3b018ba04..93550aa96 100644 --- a/libc/sysv/consts/FUTEX_WAIT_PRIVATE.s +++ b/libc/sysv/consts/FUTEX_WAIT_PRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FUTEX_WAIT_PRIVATE 0 0 0 129 0 +.syscon misc FUTEX_WAIT_PRIVATE 0 0 0 129 129 0 diff --git a/libc/sysv/consts/FUTEX_WAKE.s b/libc/sysv/consts/FUTEX_WAKE.s index 3e6d571b7..f46d5d40c 100644 --- a/libc/sysv/consts/FUTEX_WAKE.s +++ b/libc/sysv/consts/FUTEX_WAKE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FUTEX_WAKE 0 0 0 2 0 +.syscon misc FUTEX_WAKE 0 0 0 2 2 0 diff --git a/libc/sysv/consts/FUTEX_WAKE_PRIVATE.s b/libc/sysv/consts/FUTEX_WAKE_PRIVATE.s index ec3e09550..8fa2e1a0e 100644 --- a/libc/sysv/consts/FUTEX_WAKE_PRIVATE.s +++ b/libc/sysv/consts/FUTEX_WAKE_PRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc FUTEX_WAKE_PRIVATE 0 0 0 130 0 +.syscon misc FUTEX_WAKE_PRIVATE 0 0 0 130 130 0 diff --git a/libc/sysv/consts/F_DUPFD.s b/libc/sysv/consts/F_DUPFD.s index a32d51441..3ddc42291 100644 --- a/libc/sysv/consts/F_DUPFD.s +++ b/libc/sysv/consts/F_DUPFD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl2 F_DUPFD 0 0 0 0 0 +.syscon fcntl2 F_DUPFD 0 0 0 0 0 0 diff --git a/libc/sysv/consts/F_DUPFD_CLOEXEC.s b/libc/sysv/consts/F_DUPFD_CLOEXEC.s index 8d2fee6da..17903bfef 100644 --- a/libc/sysv/consts/F_DUPFD_CLOEXEC.s +++ b/libc/sysv/consts/F_DUPFD_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_DUPFD_CLOEXEC 0x0406 67 17 10 0 +.syscon fcntl F_DUPFD_CLOEXEC 0x0406 67 17 10 12 0 diff --git a/libc/sysv/consts/F_GETFD.s b/libc/sysv/consts/F_GETFD.s index 79344d5dd..57e2a7b1d 100644 --- a/libc/sysv/consts/F_GETFD.s +++ b/libc/sysv/consts/F_GETFD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl2 F_GETFD 1 1 1 1 1 +.syscon fcntl2 F_GETFD 1 1 1 1 1 1 diff --git a/libc/sysv/consts/F_GETFL.s b/libc/sysv/consts/F_GETFL.s index 38457279c..b4c204927 100644 --- a/libc/sysv/consts/F_GETFL.s +++ b/libc/sysv/consts/F_GETFL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl2 F_GETFL 3 3 3 3 3 +.syscon fcntl2 F_GETFL 3 3 3 3 3 3 diff --git a/libc/sysv/consts/F_GETLEASE.s b/libc/sysv/consts/F_GETLEASE.s index da07befdb..1d3a8a804 100644 --- a/libc/sysv/consts/F_GETLEASE.s +++ b/libc/sysv/consts/F_GETLEASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_GETLEASE 0x0401 0 0 0 0 +.syscon fcntl F_GETLEASE 0x0401 0 0 0 0 0 diff --git a/libc/sysv/consts/F_GETLK.s b/libc/sysv/consts/F_GETLK.s index 4eab3fab7..130c8351d 100644 --- a/libc/sysv/consts/F_GETLK.s +++ b/libc/sysv/consts/F_GETLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_GETLK 5 7 11 7 0 +.syscon fcntl F_GETLK 5 7 11 7 7 0 diff --git a/libc/sysv/consts/F_GETLK64.s b/libc/sysv/consts/F_GETLK64.s index f4d033228..7369e6112 100644 --- a/libc/sysv/consts/F_GETLK64.s +++ b/libc/sysv/consts/F_GETLK64.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_GETLK64 5 0 0 0 0 +.syscon fcntl F_GETLK64 5 0 0 0 0 0 diff --git a/libc/sysv/consts/F_GETOWN.s b/libc/sysv/consts/F_GETOWN.s index a84db7b76..fcbb9dfdd 100644 --- a/libc/sysv/consts/F_GETOWN.s +++ b/libc/sysv/consts/F_GETOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl2 F_GETOWN 9 5 5 5 0 +.syscon fcntl2 F_GETOWN 9 5 5 5 5 0 diff --git a/libc/sysv/consts/F_GETOWN_EX.s b/libc/sysv/consts/F_GETOWN_EX.s index c22818d61..a052ff699 100644 --- a/libc/sysv/consts/F_GETOWN_EX.s +++ b/libc/sysv/consts/F_GETOWN_EX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_GETOWN_EX 0x10 0 0 0 0 +.syscon fcntl F_GETOWN_EX 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/F_GETPIPE_SZ.s b/libc/sysv/consts/F_GETPIPE_SZ.s index b3735fd9f..44f4d9b96 100644 --- a/libc/sysv/consts/F_GETPIPE_SZ.s +++ b/libc/sysv/consts/F_GETPIPE_SZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_GETPIPE_SZ 0x0408 0 0 0 0 +.syscon fcntl F_GETPIPE_SZ 0x0408 0 0 0 0 0 diff --git a/libc/sysv/consts/F_GETSIG.s b/libc/sysv/consts/F_GETSIG.s index b0874e4b7..b19170a2d 100644 --- a/libc/sysv/consts/F_GETSIG.s +++ b/libc/sysv/consts/F_GETSIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_GETSIG 11 0 0 0 0 +.syscon fcntl F_GETSIG 11 0 0 0 0 0 diff --git a/libc/sysv/consts/F_LOCK.s b/libc/sysv/consts/F_LOCK.s index 669140738..e6a5344ff 100644 --- a/libc/sysv/consts/F_LOCK.s +++ b/libc/sysv/consts/F_LOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_LOCK 1 1 1 1 0 +.syscon fcntl F_LOCK 1 1 1 1 1 0 diff --git a/libc/sysv/consts/F_NOTIFY.s b/libc/sysv/consts/F_NOTIFY.s index 72ab2f5b5..530049e5f 100644 --- a/libc/sysv/consts/F_NOTIFY.s +++ b/libc/sysv/consts/F_NOTIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_NOTIFY 0x0402 0 0 0 0 +.syscon fcntl F_NOTIFY 0x0402 0 0 0 0 0 diff --git a/libc/sysv/consts/F_OFD_GETLK.s b/libc/sysv/consts/F_OFD_GETLK.s index 7a101f166..04d2820d4 100644 --- a/libc/sysv/consts/F_OFD_GETLK.s +++ b/libc/sysv/consts/F_OFD_GETLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_OFD_GETLK 36 0 0 0 0 +.syscon fcntl F_OFD_GETLK 36 0 0 0 0 0 diff --git a/libc/sysv/consts/F_OFD_SETLK.s b/libc/sysv/consts/F_OFD_SETLK.s index 907cd7222..a06adb2f9 100644 --- a/libc/sysv/consts/F_OFD_SETLK.s +++ b/libc/sysv/consts/F_OFD_SETLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_OFD_SETLK 37 0 0 0 0 +.syscon fcntl F_OFD_SETLK 37 0 0 0 0 0 diff --git a/libc/sysv/consts/F_OFD_SETLKW.s b/libc/sysv/consts/F_OFD_SETLKW.s index a2f8e1fe8..2a595092f 100644 --- a/libc/sysv/consts/F_OFD_SETLKW.s +++ b/libc/sysv/consts/F_OFD_SETLKW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_OFD_SETLKW 38 0 0 0 0 +.syscon fcntl F_OFD_SETLKW 38 0 0 0 0 0 diff --git a/libc/sysv/consts/F_OK.s b/libc/sysv/consts/F_OK.s index 4b806f76a..475140038 100644 --- a/libc/sysv/consts/F_OK.s +++ b/libc/sysv/consts/F_OK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon access F_OK 0 0 0 0 0 +.syscon access F_OK 0 0 0 0 0 0 diff --git a/libc/sysv/consts/F_RDLCK.s b/libc/sysv/consts/F_RDLCK.s index c878f4317..da5b91f52 100644 --- a/libc/sysv/consts/F_RDLCK.s +++ b/libc/sysv/consts/F_RDLCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_RDLCK 0 1 1 1 0 +.syscon fcntl F_RDLCK 0 1 1 1 1 0 diff --git a/libc/sysv/consts/F_SETFD.s b/libc/sysv/consts/F_SETFD.s index 014d83593..bbb0ba9b5 100644 --- a/libc/sysv/consts/F_SETFD.s +++ b/libc/sysv/consts/F_SETFD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl2 F_SETFD 2 2 2 2 2 +.syscon fcntl2 F_SETFD 2 2 2 2 2 2 diff --git a/libc/sysv/consts/F_SETFL.s b/libc/sysv/consts/F_SETFL.s index 8d3c9be13..cc10b2aa2 100644 --- a/libc/sysv/consts/F_SETFL.s +++ b/libc/sysv/consts/F_SETFL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl2 F_SETFL 4 4 4 4 4 +.syscon fcntl2 F_SETFL 4 4 4 4 4 4 diff --git a/libc/sysv/consts/F_SETLEASE.s b/libc/sysv/consts/F_SETLEASE.s index ed52d95cb..9937e8bbc 100644 --- a/libc/sysv/consts/F_SETLEASE.s +++ b/libc/sysv/consts/F_SETLEASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETLEASE 0x0400 0 0 0 0 +.syscon fcntl F_SETLEASE 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/F_SETLK.s b/libc/sysv/consts/F_SETLK.s index da367f80e..91a1fab70 100644 --- a/libc/sysv/consts/F_SETLK.s +++ b/libc/sysv/consts/F_SETLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETLK 6 8 12 8 0 +.syscon fcntl F_SETLK 6 8 12 8 8 0 diff --git a/libc/sysv/consts/F_SETLK64.s b/libc/sysv/consts/F_SETLK64.s index 32df50a4f..f905fa782 100644 --- a/libc/sysv/consts/F_SETLK64.s +++ b/libc/sysv/consts/F_SETLK64.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETLK64 6 0 0 0 0 +.syscon fcntl F_SETLK64 6 0 0 0 0 0 diff --git a/libc/sysv/consts/F_SETLKW.s b/libc/sysv/consts/F_SETLKW.s index 89ef6a456..d406e0d56 100644 --- a/libc/sysv/consts/F_SETLKW.s +++ b/libc/sysv/consts/F_SETLKW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETLKW 7 9 13 9 0 +.syscon fcntl F_SETLKW 7 9 13 9 9 0 diff --git a/libc/sysv/consts/F_SETLKW64.s b/libc/sysv/consts/F_SETLKW64.s index d791b2a43..ceda1ebba 100644 --- a/libc/sysv/consts/F_SETLKW64.s +++ b/libc/sysv/consts/F_SETLKW64.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETLKW64 7 0 0 0 0 +.syscon fcntl F_SETLKW64 7 0 0 0 0 0 diff --git a/libc/sysv/consts/F_SETOWN.s b/libc/sysv/consts/F_SETOWN.s index 436d273be..c4fa877de 100644 --- a/libc/sysv/consts/F_SETOWN.s +++ b/libc/sysv/consts/F_SETOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl2 F_SETOWN 8 6 6 6 0 +.syscon fcntl2 F_SETOWN 8 6 6 6 6 0 diff --git a/libc/sysv/consts/F_SETOWN_EX.s b/libc/sysv/consts/F_SETOWN_EX.s index 3570c540b..93518b509 100644 --- a/libc/sysv/consts/F_SETOWN_EX.s +++ b/libc/sysv/consts/F_SETOWN_EX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETOWN_EX 15 0 0 0 0 +.syscon fcntl F_SETOWN_EX 15 0 0 0 0 0 diff --git a/libc/sysv/consts/F_SETPIPE_SZ.s b/libc/sysv/consts/F_SETPIPE_SZ.s index 71246be09..c00f4a295 100644 --- a/libc/sysv/consts/F_SETPIPE_SZ.s +++ b/libc/sysv/consts/F_SETPIPE_SZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETPIPE_SZ 0x0407 0 0 0 0 +.syscon fcntl F_SETPIPE_SZ 0x0407 0 0 0 0 0 diff --git a/libc/sysv/consts/F_SETSIG.s b/libc/sysv/consts/F_SETSIG.s index 114681447..4d0f8cabd 100644 --- a/libc/sysv/consts/F_SETSIG.s +++ b/libc/sysv/consts/F_SETSIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_SETSIG 10 0 0 0 0 +.syscon fcntl F_SETSIG 10 0 0 0 0 0 diff --git a/libc/sysv/consts/F_TEST.s b/libc/sysv/consts/F_TEST.s index c2d60690c..c76b80e2d 100644 --- a/libc/sysv/consts/F_TEST.s +++ b/libc/sysv/consts/F_TEST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_TEST 3 3 3 3 0 +.syscon fcntl F_TEST 3 3 3 3 3 0 diff --git a/libc/sysv/consts/F_TLOCK.s b/libc/sysv/consts/F_TLOCK.s index 727d14c1f..5276cfee8 100644 --- a/libc/sysv/consts/F_TLOCK.s +++ b/libc/sysv/consts/F_TLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_TLOCK 2 2 2 2 0 +.syscon fcntl F_TLOCK 2 2 2 2 2 0 diff --git a/libc/sysv/consts/F_ULOCK.s b/libc/sysv/consts/F_ULOCK.s index 93c0bec01..f80aaa18a 100644 --- a/libc/sysv/consts/F_ULOCK.s +++ b/libc/sysv/consts/F_ULOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_ULOCK 0 0 0 0 0 +.syscon fcntl F_ULOCK 0 0 0 0 0 0 diff --git a/libc/sysv/consts/F_UNLCK.s b/libc/sysv/consts/F_UNLCK.s index 4f8973ad9..64c5a6316 100644 --- a/libc/sysv/consts/F_UNLCK.s +++ b/libc/sysv/consts/F_UNLCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_UNLCK 2 2 2 2 0 +.syscon fcntl F_UNLCK 2 2 2 2 2 0 diff --git a/libc/sysv/consts/F_WRLCK.s b/libc/sysv/consts/F_WRLCK.s index 12d4df4f7..5cb35bfe6 100644 --- a/libc/sysv/consts/F_WRLCK.s +++ b/libc/sysv/consts/F_WRLCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fcntl F_WRLCK 1 3 3 3 0 +.syscon fcntl F_WRLCK 1 3 3 3 3 0 diff --git a/libc/sysv/consts/GOOD.s b/libc/sysv/consts/GOOD.s index 23cc789a6..4ceaadb91 100644 --- a/libc/sysv/consts/GOOD.s +++ b/libc/sysv/consts/GOOD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc GOOD 0 0 0 0 0 +.syscon misc GOOD 0 0 0 0 0 0 diff --git a/libc/sysv/consts/GRPQUOTA.s b/libc/sysv/consts/GRPQUOTA.s index a327c3184..560b96436 100644 --- a/libc/sysv/consts/GRPQUOTA.s +++ b/libc/sysv/consts/GRPQUOTA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc GRPQUOTA 1 1 1 1 0 +.syscon misc GRPQUOTA 1 1 1 1 1 0 diff --git a/libc/sysv/consts/H4DISC.s b/libc/sysv/consts/H4DISC.s index c38bcfd16..6f0da50bc 100644 --- a/libc/sysv/consts/H4DISC.s +++ b/libc/sysv/consts/H4DISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios H4DISC 0 0 0x7 0 -1 +.syscon termios H4DISC 0 0 0x7 0 0 -1 diff --git a/libc/sysv/consts/HARDWARE_ERROR.s b/libc/sysv/consts/HARDWARE_ERROR.s index ded9750ad..d000c4a44 100644 --- a/libc/sysv/consts/HARDWARE_ERROR.s +++ b/libc/sysv/consts/HARDWARE_ERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc HARDWARE_ERROR 4 0 0 0 0 +.syscon misc HARDWARE_ERROR 4 0 0 0 0 0 diff --git a/libc/sysv/consts/HEAD_OF_QUEUE_TAG.s b/libc/sysv/consts/HEAD_OF_QUEUE_TAG.s index 5cf4071af..fceed2b4c 100644 --- a/libc/sysv/consts/HEAD_OF_QUEUE_TAG.s +++ b/libc/sysv/consts/HEAD_OF_QUEUE_TAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc HEAD_OF_QUEUE_TAG 33 0 0 0 0 +.syscon misc HEAD_OF_QUEUE_TAG 33 0 0 0 0 0 diff --git a/libc/sysv/consts/HOST_NAME_MAX.s b/libc/sysv/consts/HOST_NAME_MAX.s index ec1459b7c..820c24357 100644 --- a/libc/sysv/consts/HOST_NAME_MAX.s +++ b/libc/sysv/consts/HOST_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc HOST_NAME_MAX 0x40 0 0 255 0 +.syscon misc HOST_NAME_MAX 0x40 0 0 255 255 0 diff --git a/libc/sysv/consts/HOST_NOT_FOUND.s b/libc/sysv/consts/HOST_NOT_FOUND.s index 70e93597c..f90a99ed2 100644 --- a/libc/sysv/consts/HOST_NOT_FOUND.s +++ b/libc/sysv/consts/HOST_NOT_FOUND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc HOST_NOT_FOUND 1 1 1 1 0x2af9 +.syscon misc HOST_NOT_FOUND 1 1 1 1 1 0x2af9 diff --git a/libc/sysv/consts/HUPCL.s b/libc/sysv/consts/HUPCL.s index bde6fa0a0..bad360c90 100644 --- a/libc/sysv/consts/HUPCL.s +++ b/libc/sysv/consts/HUPCL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc HUPCL 0x0400 0x4000 0x4000 0x4000 0 +.syscon misc HUPCL 0x0400 0x4000 0x4000 0x4000 0x4000 0 diff --git a/libc/sysv/consts/ICANON.s b/libc/sysv/consts/ICANON.s index 9ffbf8ce0..cae9f848b 100644 --- a/libc/sysv/consts/ICANON.s +++ b/libc/sysv/consts/ICANON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ICANON 0b0000000000000010 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000000010 +.syscon termios ICANON 0b0000000000000010 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000000000010 diff --git a/libc/sysv/consts/ICMP6_DST_UNREACH.s b/libc/sysv/consts/ICMP6_DST_UNREACH.s index 82a8a1db0..0a039edd7 100644 --- a/libc/sysv/consts/ICMP6_DST_UNREACH.s +++ b/libc/sysv/consts/ICMP6_DST_UNREACH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_DST_UNREACH 1 1 1 1 0 +.syscon icmp6 ICMP6_DST_UNREACH 1 1 1 1 1 0 diff --git a/libc/sysv/consts/ICMP6_DST_UNREACH_ADDR.s b/libc/sysv/consts/ICMP6_DST_UNREACH_ADDR.s index 6dda91a23..3c0b276cb 100644 --- a/libc/sysv/consts/ICMP6_DST_UNREACH_ADDR.s +++ b/libc/sysv/consts/ICMP6_DST_UNREACH_ADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_DST_UNREACH_ADDR 3 3 3 3 3 +.syscon icmp6 ICMP6_DST_UNREACH_ADDR 3 3 3 3 3 3 diff --git a/libc/sysv/consts/ICMP6_DST_UNREACH_ADMIN.s b/libc/sysv/consts/ICMP6_DST_UNREACH_ADMIN.s index bc138d9a2..d97d194d9 100644 --- a/libc/sysv/consts/ICMP6_DST_UNREACH_ADMIN.s +++ b/libc/sysv/consts/ICMP6_DST_UNREACH_ADMIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_DST_UNREACH_ADMIN 1 1 1 1 1 +.syscon icmp6 ICMP6_DST_UNREACH_ADMIN 1 1 1 1 1 1 diff --git a/libc/sysv/consts/ICMP6_DST_UNREACH_BEYONDSCOPE.s b/libc/sysv/consts/ICMP6_DST_UNREACH_BEYONDSCOPE.s index 4a10c6f0d..27291b4aa 100644 --- a/libc/sysv/consts/ICMP6_DST_UNREACH_BEYONDSCOPE.s +++ b/libc/sysv/consts/ICMP6_DST_UNREACH_BEYONDSCOPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_DST_UNREACH_BEYONDSCOPE 2 2 2 2 2 +.syscon icmp6 ICMP6_DST_UNREACH_BEYONDSCOPE 2 2 2 2 2 2 diff --git a/libc/sysv/consts/ICMP6_DST_UNREACH_NOPORT.s b/libc/sysv/consts/ICMP6_DST_UNREACH_NOPORT.s index 2bc0973ef..602786102 100644 --- a/libc/sysv/consts/ICMP6_DST_UNREACH_NOPORT.s +++ b/libc/sysv/consts/ICMP6_DST_UNREACH_NOPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_DST_UNREACH_NOPORT 4 4 4 4 4 +.syscon icmp6 ICMP6_DST_UNREACH_NOPORT 4 4 4 4 4 4 diff --git a/libc/sysv/consts/ICMP6_DST_UNREACH_NOROUTE.s b/libc/sysv/consts/ICMP6_DST_UNREACH_NOROUTE.s index 4d1c9c4c4..cc994ec02 100644 --- a/libc/sysv/consts/ICMP6_DST_UNREACH_NOROUTE.s +++ b/libc/sysv/consts/ICMP6_DST_UNREACH_NOROUTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_DST_UNREACH_NOROUTE 0 0 0 0 0 +.syscon icmp6 ICMP6_DST_UNREACH_NOROUTE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/ICMP6_ECHO_REPLY.s b/libc/sysv/consts/ICMP6_ECHO_REPLY.s index 937b873e3..aad628018 100644 --- a/libc/sysv/consts/ICMP6_ECHO_REPLY.s +++ b/libc/sysv/consts/ICMP6_ECHO_REPLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_ECHO_REPLY 129 129 129 129 0 +.syscon icmp6 ICMP6_ECHO_REPLY 129 129 129 129 129 0 diff --git a/libc/sysv/consts/ICMP6_ECHO_REQUEST.s b/libc/sysv/consts/ICMP6_ECHO_REQUEST.s index 9834807b0..84c937772 100644 --- a/libc/sysv/consts/ICMP6_ECHO_REQUEST.s +++ b/libc/sysv/consts/ICMP6_ECHO_REQUEST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_ECHO_REQUEST 0x80 0x80 0x80 0x80 0 +.syscon icmp6 ICMP6_ECHO_REQUEST 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/ICMP6_FILTER.s b/libc/sysv/consts/ICMP6_FILTER.s index 6f866f786..82a62a415 100644 --- a/libc/sysv/consts/ICMP6_FILTER.s +++ b/libc/sysv/consts/ICMP6_FILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_FILTER 1 18 18 18 0 +.syscon icmp6 ICMP6_FILTER 1 18 18 18 18 0 diff --git a/libc/sysv/consts/ICMP6_INFOMSG_MASK.s b/libc/sysv/consts/ICMP6_INFOMSG_MASK.s index 5dbfabff4..f8e64f143 100644 --- a/libc/sysv/consts/ICMP6_INFOMSG_MASK.s +++ b/libc/sysv/consts/ICMP6_INFOMSG_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_INFOMSG_MASK 0x80 0x80 0x80 0x80 0x80 +.syscon icmp6 ICMP6_INFOMSG_MASK 0x80 0x80 0x80 0x80 0x80 0x80 diff --git a/libc/sysv/consts/ICMP6_PACKET_TOO_BIG.s b/libc/sysv/consts/ICMP6_PACKET_TOO_BIG.s index b4b84a86b..7d0b13c40 100644 --- a/libc/sysv/consts/ICMP6_PACKET_TOO_BIG.s +++ b/libc/sysv/consts/ICMP6_PACKET_TOO_BIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_PACKET_TOO_BIG 2 2 2 2 0 +.syscon icmp6 ICMP6_PACKET_TOO_BIG 2 2 2 2 2 0 diff --git a/libc/sysv/consts/ICMP6_PARAMPROB_HEADER.s b/libc/sysv/consts/ICMP6_PARAMPROB_HEADER.s index 69617fffc..e7f763006 100644 --- a/libc/sysv/consts/ICMP6_PARAMPROB_HEADER.s +++ b/libc/sysv/consts/ICMP6_PARAMPROB_HEADER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_PARAMPROB_HEADER 0 0 0 0 0 +.syscon icmp6 ICMP6_PARAMPROB_HEADER 0 0 0 0 0 0 diff --git a/libc/sysv/consts/ICMP6_PARAMPROB_NEXTHEADER.s b/libc/sysv/consts/ICMP6_PARAMPROB_NEXTHEADER.s index c5ef82cb4..6f8122ac3 100644 --- a/libc/sysv/consts/ICMP6_PARAMPROB_NEXTHEADER.s +++ b/libc/sysv/consts/ICMP6_PARAMPROB_NEXTHEADER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_PARAMPROB_NEXTHEADER 1 1 1 1 1 +.syscon icmp6 ICMP6_PARAMPROB_NEXTHEADER 1 1 1 1 1 1 diff --git a/libc/sysv/consts/ICMP6_PARAMPROB_OPTION.s b/libc/sysv/consts/ICMP6_PARAMPROB_OPTION.s index ca71738c8..5112d5659 100644 --- a/libc/sysv/consts/ICMP6_PARAMPROB_OPTION.s +++ b/libc/sysv/consts/ICMP6_PARAMPROB_OPTION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_PARAMPROB_OPTION 2 2 2 2 2 +.syscon icmp6 ICMP6_PARAMPROB_OPTION 2 2 2 2 2 2 diff --git a/libc/sysv/consts/ICMP6_PARAM_PROB.s b/libc/sysv/consts/ICMP6_PARAM_PROB.s index aba781d84..64290aef1 100644 --- a/libc/sysv/consts/ICMP6_PARAM_PROB.s +++ b/libc/sysv/consts/ICMP6_PARAM_PROB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_PARAM_PROB 4 4 4 4 0 +.syscon icmp6 ICMP6_PARAM_PROB 4 4 4 4 4 0 diff --git a/libc/sysv/consts/ICMP6_ROUTER_RENUMBERING.s b/libc/sysv/consts/ICMP6_ROUTER_RENUMBERING.s index 23d0527eb..dbdd2bf6a 100644 --- a/libc/sysv/consts/ICMP6_ROUTER_RENUMBERING.s +++ b/libc/sysv/consts/ICMP6_ROUTER_RENUMBERING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_ROUTER_RENUMBERING 138 138 138 138 0 +.syscon icmp6 ICMP6_ROUTER_RENUMBERING 138 138 138 138 138 0 diff --git a/libc/sysv/consts/ICMP6_RR_FLAGS_FORCEAPPLY.s b/libc/sysv/consts/ICMP6_RR_FLAGS_FORCEAPPLY.s index 1c6a815cc..6fb0bfd7a 100644 --- a/libc/sysv/consts/ICMP6_RR_FLAGS_FORCEAPPLY.s +++ b/libc/sysv/consts/ICMP6_RR_FLAGS_FORCEAPPLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_FLAGS_FORCEAPPLY 0x20 0x20 0x20 0x20 0 +.syscon icmp6 ICMP6_RR_FLAGS_FORCEAPPLY 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/ICMP6_RR_FLAGS_PREVDONE.s b/libc/sysv/consts/ICMP6_RR_FLAGS_PREVDONE.s index d728587a1..83f64ff2f 100644 --- a/libc/sysv/consts/ICMP6_RR_FLAGS_PREVDONE.s +++ b/libc/sysv/consts/ICMP6_RR_FLAGS_PREVDONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_FLAGS_PREVDONE 8 8 8 8 0 +.syscon icmp6 ICMP6_RR_FLAGS_PREVDONE 8 8 8 8 8 0 diff --git a/libc/sysv/consts/ICMP6_RR_FLAGS_REQRESULT.s b/libc/sysv/consts/ICMP6_RR_FLAGS_REQRESULT.s index 97a59b14a..83b8ac427 100644 --- a/libc/sysv/consts/ICMP6_RR_FLAGS_REQRESULT.s +++ b/libc/sysv/consts/ICMP6_RR_FLAGS_REQRESULT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_FLAGS_REQRESULT 0x40 0x40 0x40 0x40 0 +.syscon icmp6 ICMP6_RR_FLAGS_REQRESULT 0x40 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/ICMP6_RR_FLAGS_SPECSITE.s b/libc/sysv/consts/ICMP6_RR_FLAGS_SPECSITE.s index ecc34b819..86d0327ea 100644 --- a/libc/sysv/consts/ICMP6_RR_FLAGS_SPECSITE.s +++ b/libc/sysv/consts/ICMP6_RR_FLAGS_SPECSITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_FLAGS_SPECSITE 0x10 0x10 0x10 0x10 0 +.syscon icmp6 ICMP6_RR_FLAGS_SPECSITE 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/ICMP6_RR_FLAGS_TEST.s b/libc/sysv/consts/ICMP6_RR_FLAGS_TEST.s index 42c883d14..5bb65fd14 100644 --- a/libc/sysv/consts/ICMP6_RR_FLAGS_TEST.s +++ b/libc/sysv/consts/ICMP6_RR_FLAGS_TEST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_FLAGS_TEST 0x80 0x80 0x80 0x80 0 +.syscon icmp6 ICMP6_RR_FLAGS_TEST 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME.s b/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME.s index 1a8a309e3..53c36d807 100644 --- a/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME.s +++ b/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME 0x40 0x40 0x40 0x40 0 +.syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME 0x40 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME.s b/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME.s index 385e71451..7fcf61631 100644 --- a/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME.s +++ b/libc/sysv/consts/ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME 0x80 0x80 0x80 0x80 0 +.syscon icmp6 ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_AUTO.s b/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_AUTO.s index 4686cdae7..08329628b 100644 --- a/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_AUTO.s +++ b/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_AUTO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x10 0x40 0x40 0x40 0 +.syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x10 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_ONLINK.s b/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_ONLINK.s index a6bdee86f..f68472358 100644 --- a/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_ONLINK.s +++ b/libc/sysv/consts/ICMP6_RR_PCOUSE_RAFLAGS_ONLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x20 0x80 0x80 0x80 0 +.syscon icmp6 ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x20 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_FORBIDDEN.s b/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_FORBIDDEN.s index 61e7caae2..f4c9efdd2 100644 --- a/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_FORBIDDEN.s +++ b/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_FORBIDDEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_RESULT_FLAGS_FORBIDDEN 0x0100 0x0100 0x0100 0x0100 0 +.syscon icmp6 ICMP6_RR_RESULT_FLAGS_FORBIDDEN 0x0100 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_OOB.s b/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_OOB.s index 69b96d789..0b0f486ec 100644 --- a/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_OOB.s +++ b/libc/sysv/consts/ICMP6_RR_RESULT_FLAGS_OOB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_RR_RESULT_FLAGS_OOB 0x0200 0x0200 0x0200 0x0200 0 +.syscon icmp6 ICMP6_RR_RESULT_FLAGS_OOB 0x0200 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/ICMP6_TIME_EXCEEDED.s b/libc/sysv/consts/ICMP6_TIME_EXCEEDED.s index 95bc2cedf..8af10114e 100644 --- a/libc/sysv/consts/ICMP6_TIME_EXCEEDED.s +++ b/libc/sysv/consts/ICMP6_TIME_EXCEEDED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_TIME_EXCEEDED 3 3 3 3 0 +.syscon icmp6 ICMP6_TIME_EXCEEDED 3 3 3 3 3 0 diff --git a/libc/sysv/consts/ICMP6_TIME_EXCEED_REASSEMBLY.s b/libc/sysv/consts/ICMP6_TIME_EXCEED_REASSEMBLY.s index 6864638a7..7752f498a 100644 --- a/libc/sysv/consts/ICMP6_TIME_EXCEED_REASSEMBLY.s +++ b/libc/sysv/consts/ICMP6_TIME_EXCEED_REASSEMBLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_TIME_EXCEED_REASSEMBLY 1 1 1 1 1 +.syscon icmp6 ICMP6_TIME_EXCEED_REASSEMBLY 1 1 1 1 1 1 diff --git a/libc/sysv/consts/ICMP6_TIME_EXCEED_TRANSIT.s b/libc/sysv/consts/ICMP6_TIME_EXCEED_TRANSIT.s index ee4449a73..d533802f8 100644 --- a/libc/sysv/consts/ICMP6_TIME_EXCEED_TRANSIT.s +++ b/libc/sysv/consts/ICMP6_TIME_EXCEED_TRANSIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon icmp6 ICMP6_TIME_EXCEED_TRANSIT 0 0 0 0 0 +.syscon icmp6 ICMP6_TIME_EXCEED_TRANSIT 0 0 0 0 0 0 diff --git a/libc/sysv/consts/ICRNL.s b/libc/sysv/consts/ICRNL.s index e1ebb1227..483dae8f3 100644 --- a/libc/sysv/consts/ICRNL.s +++ b/libc/sysv/consts/ICRNL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ICRNL 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 +.syscon termios ICRNL 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 diff --git a/libc/sysv/consts/IEXTEN.s b/libc/sysv/consts/IEXTEN.s index 66457bc10..1ec117725 100644 --- a/libc/sysv/consts/IEXTEN.s +++ b/libc/sysv/consts/IEXTEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IEXTEN 0b1000000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b1000000000000000 +.syscon termios IEXTEN 0b1000000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b1000000000000000 diff --git a/libc/sysv/consts/IFF_ALLMULTI.s b/libc/sysv/consts/IFF_ALLMULTI.s index 93009e955..436d5d9d9 100644 --- a/libc/sysv/consts/IFF_ALLMULTI.s +++ b/libc/sysv/consts/IFF_ALLMULTI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_ALLMULTI 0x0200 0x0200 0x0200 0x0200 0 +.syscon iff IFF_ALLMULTI 0x0200 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/IFF_AUTOMEDIA.s b/libc/sysv/consts/IFF_AUTOMEDIA.s index 5d9306ff3..74a68ea83 100644 --- a/libc/sysv/consts/IFF_AUTOMEDIA.s +++ b/libc/sysv/consts/IFF_AUTOMEDIA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_AUTOMEDIA 0x4000 0 0 0 0 +.syscon iff IFF_AUTOMEDIA 0x4000 0 0 0 0 0 diff --git a/libc/sysv/consts/IFF_BROADCAST.s b/libc/sysv/consts/IFF_BROADCAST.s index 268ed0b29..eed6b09fb 100644 --- a/libc/sysv/consts/IFF_BROADCAST.s +++ b/libc/sysv/consts/IFF_BROADCAST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_BROADCAST 2 2 2 2 2 +.syscon iff IFF_BROADCAST 2 2 2 2 2 2 diff --git a/libc/sysv/consts/IFF_DEBUG.s b/libc/sysv/consts/IFF_DEBUG.s index 705422099..63d931cfe 100644 --- a/libc/sysv/consts/IFF_DEBUG.s +++ b/libc/sysv/consts/IFF_DEBUG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_DEBUG 4 4 4 4 0 +.syscon iff IFF_DEBUG 4 4 4 4 4 0 diff --git a/libc/sysv/consts/IFF_DYNAMIC.s b/libc/sysv/consts/IFF_DYNAMIC.s index 8e7b66484..f8d52a9f2 100644 --- a/libc/sysv/consts/IFF_DYNAMIC.s +++ b/libc/sysv/consts/IFF_DYNAMIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_DYNAMIC 0x8000 0 0 0 0 +.syscon iff IFF_DYNAMIC 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/IFF_LOOPBACK.s b/libc/sysv/consts/IFF_LOOPBACK.s index ca13075cb..5dc217a4b 100644 --- a/libc/sysv/consts/IFF_LOOPBACK.s +++ b/libc/sysv/consts/IFF_LOOPBACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_LOOPBACK 8 8 8 8 4 +.syscon iff IFF_LOOPBACK 8 8 8 8 8 4 diff --git a/libc/sysv/consts/IFF_MASTER.s b/libc/sysv/consts/IFF_MASTER.s index f63e1bd57..735710661 100644 --- a/libc/sysv/consts/IFF_MASTER.s +++ b/libc/sysv/consts/IFF_MASTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_MASTER 0x0400 0 0 0 0 +.syscon iff IFF_MASTER 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/IFF_MULTICAST.s b/libc/sysv/consts/IFF_MULTICAST.s index 1fb6088da..2ba5144f5 100644 --- a/libc/sysv/consts/IFF_MULTICAST.s +++ b/libc/sysv/consts/IFF_MULTICAST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_MULTICAST 0x1000 0x8000 0x8000 0x8000 0x10 +.syscon iff IFF_MULTICAST 0x1000 0x8000 0x8000 0x8000 0x8000 0x10 diff --git a/libc/sysv/consts/IFF_NOARP.s b/libc/sysv/consts/IFF_NOARP.s index 3e87b9b3f..f505629b5 100644 --- a/libc/sysv/consts/IFF_NOARP.s +++ b/libc/sysv/consts/IFF_NOARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_NOARP 0x80 0x80 0x80 0x80 0 +.syscon iff IFF_NOARP 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/IFF_NOTRAILERS.s b/libc/sysv/consts/IFF_NOTRAILERS.s index 99f75be94..8248f7ca1 100644 --- a/libc/sysv/consts/IFF_NOTRAILERS.s +++ b/libc/sysv/consts/IFF_NOTRAILERS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_NOTRAILERS 0x20 0x20 0 0 0 +.syscon iff IFF_NOTRAILERS 0x20 0x20 0 0 0 0 diff --git a/libc/sysv/consts/IFF_POINTOPOINT.s b/libc/sysv/consts/IFF_POINTOPOINT.s index 982fa2436..dbc2fb26e 100644 --- a/libc/sysv/consts/IFF_POINTOPOINT.s +++ b/libc/sysv/consts/IFF_POINTOPOINT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_POINTOPOINT 0x10 0x10 0x10 0x10 0 +.syscon iff IFF_POINTOPOINT 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/IFF_PORTSEL.s b/libc/sysv/consts/IFF_PORTSEL.s index 6cf9d69e0..9da9d21b2 100644 --- a/libc/sysv/consts/IFF_PORTSEL.s +++ b/libc/sysv/consts/IFF_PORTSEL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_PORTSEL 0x2000 0 0 0 0 +.syscon iff IFF_PORTSEL 0x2000 0 0 0 0 0 diff --git a/libc/sysv/consts/IFF_PROIFF.s b/libc/sysv/consts/IFF_PROIFF.s index 9ca5bda41..65fdf04a0 100644 --- a/libc/sysv/consts/IFF_PROIFF.s +++ b/libc/sysv/consts/IFF_PROIFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_PROIFF 0x0100 0x0100 0x0100 0x0100 0 +.syscon iff IFF_PROIFF 0x0100 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/IFF_RUNNING.s b/libc/sysv/consts/IFF_RUNNING.s index f0547c1e3..6820fd513 100644 --- a/libc/sysv/consts/IFF_RUNNING.s +++ b/libc/sysv/consts/IFF_RUNNING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_RUNNING 0x40 0x40 0x40 0x40 0 +.syscon iff IFF_RUNNING 0x40 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/IFF_SLAVE.s b/libc/sysv/consts/IFF_SLAVE.s index 2454ef602..c38fbbc77 100644 --- a/libc/sysv/consts/IFF_SLAVE.s +++ b/libc/sysv/consts/IFF_SLAVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iff IFF_SLAVE 0x0800 0 0 0 0 +.syscon iff IFF_SLAVE 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/IF_NAMESIZE.s b/libc/sysv/consts/IF_NAMESIZE.s index 75a179314..7524da060 100644 --- a/libc/sysv/consts/IF_NAMESIZE.s +++ b/libc/sysv/consts/IF_NAMESIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IF_NAMESIZE 0x10 0x10 0x10 0x10 0 +.syscon misc IF_NAMESIZE 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/IGMP_MEMBERSHIP_QUERY.s b/libc/sysv/consts/IGMP_MEMBERSHIP_QUERY.s index e464a689c..288ef7d5f 100644 --- a/libc/sysv/consts/IGMP_MEMBERSHIP_QUERY.s +++ b/libc/sysv/consts/IGMP_MEMBERSHIP_QUERY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IGMP_MEMBERSHIP_QUERY 17 0 0 0 0 +.syscon misc IGMP_MEMBERSHIP_QUERY 17 0 0 0 0 0 diff --git a/libc/sysv/consts/IGNBRK.s b/libc/sysv/consts/IGNBRK.s index 20acf440e..d8fd09371 100644 --- a/libc/sysv/consts/IGNBRK.s +++ b/libc/sysv/consts/IGNBRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IGNBRK 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 +.syscon termios IGNBRK 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 diff --git a/libc/sysv/consts/IGNCR.s b/libc/sysv/consts/IGNCR.s index c48d14ea7..ac12804e0 100644 --- a/libc/sysv/consts/IGNCR.s +++ b/libc/sysv/consts/IGNCR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IGNCR 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 +.syscon termios IGNCR 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 diff --git a/libc/sysv/consts/IGNPAR.s b/libc/sysv/consts/IGNPAR.s index 3cb660c92..442ab748b 100644 --- a/libc/sysv/consts/IGNPAR.s +++ b/libc/sysv/consts/IGNPAR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IGNPAR 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 +.syscon termios IGNPAR 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 diff --git a/libc/sysv/consts/ILLEGAL_REQUEST.s b/libc/sysv/consts/ILLEGAL_REQUEST.s index 3f0c75f2e..eaf90c42b 100644 --- a/libc/sysv/consts/ILLEGAL_REQUEST.s +++ b/libc/sysv/consts/ILLEGAL_REQUEST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILLEGAL_REQUEST 5 0 0 0 0 +.syscon misc ILLEGAL_REQUEST 5 0 0 0 0 0 diff --git a/libc/sysv/consts/ILL_BADSTK.s b/libc/sysv/consts/ILL_BADSTK.s index f6b25927e..9f1a4081c 100644 --- a/libc/sysv/consts/ILL_BADSTK.s +++ b/libc/sysv/consts/ILL_BADSTK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_BADSTK 8 8 8 8 0 +.syscon misc ILL_BADSTK 8 8 8 8 8 0 diff --git a/libc/sysv/consts/ILL_COPROC.s b/libc/sysv/consts/ILL_COPROC.s index dfecd7fe1..b617702a5 100644 --- a/libc/sysv/consts/ILL_COPROC.s +++ b/libc/sysv/consts/ILL_COPROC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_COPROC 7 7 7 7 0 +.syscon misc ILL_COPROC 7 7 7 7 7 0 diff --git a/libc/sysv/consts/ILL_ILLADR.s b/libc/sysv/consts/ILL_ILLADR.s index 9357babb8..7c88108d2 100644 --- a/libc/sysv/consts/ILL_ILLADR.s +++ b/libc/sysv/consts/ILL_ILLADR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_ILLADR 3 5 3 3 0 +.syscon misc ILL_ILLADR 3 5 3 3 3 0 diff --git a/libc/sysv/consts/ILL_ILLOPC.s b/libc/sysv/consts/ILL_ILLOPC.s index 8629dbc18..915ef470e 100644 --- a/libc/sysv/consts/ILL_ILLOPC.s +++ b/libc/sysv/consts/ILL_ILLOPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_ILLOPC 1 1 1 1 0 +.syscon misc ILL_ILLOPC 1 1 1 1 1 0 diff --git a/libc/sysv/consts/ILL_ILLOPN.s b/libc/sysv/consts/ILL_ILLOPN.s index 25c58bb79..a6f43c4cb 100644 --- a/libc/sysv/consts/ILL_ILLOPN.s +++ b/libc/sysv/consts/ILL_ILLOPN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_ILLOPN 2 4 2 2 0 +.syscon misc ILL_ILLOPN 2 4 2 2 2 0 diff --git a/libc/sysv/consts/ILL_ILLTRP.s b/libc/sysv/consts/ILL_ILLTRP.s index 6541654b9..d656a362b 100644 --- a/libc/sysv/consts/ILL_ILLTRP.s +++ b/libc/sysv/consts/ILL_ILLTRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_ILLTRP 4 2 4 4 0 +.syscon misc ILL_ILLTRP 4 2 4 4 4 0 diff --git a/libc/sysv/consts/ILL_PRVOPC.s b/libc/sysv/consts/ILL_PRVOPC.s index 8bc1304e4..eb4152cf9 100644 --- a/libc/sysv/consts/ILL_PRVOPC.s +++ b/libc/sysv/consts/ILL_PRVOPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_PRVOPC 5 3 5 5 0 +.syscon misc ILL_PRVOPC 5 3 5 5 5 0 diff --git a/libc/sysv/consts/ILL_PRVREG.s b/libc/sysv/consts/ILL_PRVREG.s index 0314592e1..dc099cbf8 100644 --- a/libc/sysv/consts/ILL_PRVREG.s +++ b/libc/sysv/consts/ILL_PRVREG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ILL_PRVREG 6 6 6 6 0 +.syscon misc ILL_PRVREG 6 6 6 6 6 0 diff --git a/libc/sysv/consts/IMAXBEL.s b/libc/sysv/consts/IMAXBEL.s index e7755bf3d..598e4a941 100644 --- a/libc/sysv/consts/IMAXBEL.s +++ b/libc/sysv/consts/IMAXBEL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IMAXBEL 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 +.syscon termios IMAXBEL 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 0b0010000000000000 diff --git a/libc/sysv/consts/INADDR_ALLHOSTS_GROUP.s b/libc/sysv/consts/INADDR_ALLHOSTS_GROUP.s index 2adf919e3..91850b4e6 100644 --- a/libc/sysv/consts/INADDR_ALLHOSTS_GROUP.s +++ b/libc/sysv/consts/INADDR_ALLHOSTS_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_ALLHOSTS_GROUP 0xe0000001 0xe0000001 0xe0000001 0xe0000001 0 +.syscon misc INADDR_ALLHOSTS_GROUP 0xe0000001 0xe0000001 0xe0000001 0xe0000001 0xe0000001 0 diff --git a/libc/sysv/consts/INADDR_ALLRTRS_GROUP.s b/libc/sysv/consts/INADDR_ALLRTRS_GROUP.s index b85b96af1..5661bccec 100644 --- a/libc/sysv/consts/INADDR_ALLRTRS_GROUP.s +++ b/libc/sysv/consts/INADDR_ALLRTRS_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_ALLRTRS_GROUP 0xe0000002 0xe0000002 0xe0000002 0 0 +.syscon misc INADDR_ALLRTRS_GROUP 0xe0000002 0xe0000002 0xe0000002 0 0 0 diff --git a/libc/sysv/consts/INADDR_ANY.s b/libc/sysv/consts/INADDR_ANY.s index 77eea3adf..f8b762115 100644 --- a/libc/sysv/consts/INADDR_ANY.s +++ b/libc/sysv/consts/INADDR_ANY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_ANY 0 0 0 0 0 +.syscon misc INADDR_ANY 0 0 0 0 0 0 diff --git a/libc/sysv/consts/INADDR_BROADCAST.s b/libc/sysv/consts/INADDR_BROADCAST.s index 3c1de538f..d918bbfe4 100644 --- a/libc/sysv/consts/INADDR_BROADCAST.s +++ b/libc/sysv/consts/INADDR_BROADCAST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_BROADCAST 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff +.syscon misc INADDR_BROADCAST 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff diff --git a/libc/sysv/consts/INADDR_LOOPBACK.s b/libc/sysv/consts/INADDR_LOOPBACK.s index b1e4402a6..96f9aad71 100644 --- a/libc/sysv/consts/INADDR_LOOPBACK.s +++ b/libc/sysv/consts/INADDR_LOOPBACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_LOOPBACK 0x7f000001 0x7f000001 0x7f000001 0x7f000001 0x7f000001 +.syscon misc INADDR_LOOPBACK 0x7f000001 0x7f000001 0x7f000001 0x7f000001 0x7f000001 0x7f000001 diff --git a/libc/sysv/consts/INADDR_MAX_LOCAL_GROUP.s b/libc/sysv/consts/INADDR_MAX_LOCAL_GROUP.s index c2d2bc4df..27e3e97bd 100644 --- a/libc/sysv/consts/INADDR_MAX_LOCAL_GROUP.s +++ b/libc/sysv/consts/INADDR_MAX_LOCAL_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_MAX_LOCAL_GROUP 0xe00000ff 0xe00000ff 0xe00000ff 0xe00000ff 0 +.syscon misc INADDR_MAX_LOCAL_GROUP 0xe00000ff 0xe00000ff 0xe00000ff 0xe00000ff 0xe00000ff 0 diff --git a/libc/sysv/consts/INADDR_NONE.s b/libc/sysv/consts/INADDR_NONE.s index 16c6bcef1..597703331 100644 --- a/libc/sysv/consts/INADDR_NONE.s +++ b/libc/sysv/consts/INADDR_NONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_NONE 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff +.syscon misc INADDR_NONE 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff diff --git a/libc/sysv/consts/INADDR_UNSPEC_GROUP.s b/libc/sysv/consts/INADDR_UNSPEC_GROUP.s index 361e98130..e4089b2ab 100644 --- a/libc/sysv/consts/INADDR_UNSPEC_GROUP.s +++ b/libc/sysv/consts/INADDR_UNSPEC_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INADDR_UNSPEC_GROUP 0xe0000000 0xe0000000 0xe0000000 0xe0000000 0 +.syscon misc INADDR_UNSPEC_GROUP 0xe0000000 0xe0000000 0xe0000000 0xe0000000 0xe0000000 0 diff --git a/libc/sysv/consts/INET6_ADDRSTRLEN.s b/libc/sysv/consts/INET6_ADDRSTRLEN.s index c2b996775..be7c79a64 100644 --- a/libc/sysv/consts/INET6_ADDRSTRLEN.s +++ b/libc/sysv/consts/INET6_ADDRSTRLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 INET6_ADDRSTRLEN 46 46 46 46 65 +.syscon ipv6 INET6_ADDRSTRLEN 46 46 46 46 46 65 diff --git a/libc/sysv/consts/INET_ADDRSTRLEN.s b/libc/sysv/consts/INET_ADDRSTRLEN.s index 27a567b59..143e5db68 100644 --- a/libc/sysv/consts/INET_ADDRSTRLEN.s +++ b/libc/sysv/consts/INET_ADDRSTRLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip INET_ADDRSTRLEN 0x10 0x10 0x10 0x10 22 +.syscon ip INET_ADDRSTRLEN 0x10 0x10 0x10 0x10 0x10 22 diff --git a/libc/sysv/consts/INITIATE_RECOVERY.s b/libc/sysv/consts/INITIATE_RECOVERY.s index 4a378635a..2cb1eadde 100644 --- a/libc/sysv/consts/INITIATE_RECOVERY.s +++ b/libc/sysv/consts/INITIATE_RECOVERY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INITIATE_RECOVERY 15 0 0 0 0 +.syscon misc INITIATE_RECOVERY 15 0 0 0 0 0 diff --git a/libc/sysv/consts/INITIATOR_ERROR.s b/libc/sysv/consts/INITIATOR_ERROR.s index 27920a405..96af7004e 100644 --- a/libc/sysv/consts/INITIATOR_ERROR.s +++ b/libc/sysv/consts/INITIATOR_ERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INITIATOR_ERROR 5 0 0 0 0 +.syscon misc INITIATOR_ERROR 5 0 0 0 0 0 diff --git a/libc/sysv/consts/INIT_PROCESS.s b/libc/sysv/consts/INIT_PROCESS.s index 02a7bd984..23169763b 100644 --- a/libc/sysv/consts/INIT_PROCESS.s +++ b/libc/sysv/consts/INIT_PROCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INIT_PROCESS 5 5 5 0 0 +.syscon misc INIT_PROCESS 5 5 5 0 0 0 diff --git a/libc/sysv/consts/INLCR.s b/libc/sysv/consts/INLCR.s index 56748cd35..dc7077ec6 100644 --- a/libc/sysv/consts/INLCR.s +++ b/libc/sysv/consts/INLCR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios INLCR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 +.syscon termios INLCR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 diff --git a/libc/sysv/consts/INPCK.s b/libc/sysv/consts/INPCK.s index 8a4c66e8c..4428fce73 100644 --- a/libc/sysv/consts/INPCK.s +++ b/libc/sysv/consts/INPCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios INPCK 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 +.syscon termios INPCK 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 diff --git a/libc/sysv/consts/INQUIRY.s b/libc/sysv/consts/INQUIRY.s index 8de1f5e02..df615959b 100644 --- a/libc/sysv/consts/INQUIRY.s +++ b/libc/sysv/consts/INQUIRY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INQUIRY 18 0 0 0 0 +.syscon misc INQUIRY 18 0 0 0 0 0 diff --git a/libc/sysv/consts/INTERMEDIATE_C_GOOD.s b/libc/sysv/consts/INTERMEDIATE_C_GOOD.s index c46d3f6b7..f805492be 100644 --- a/libc/sysv/consts/INTERMEDIATE_C_GOOD.s +++ b/libc/sysv/consts/INTERMEDIATE_C_GOOD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INTERMEDIATE_C_GOOD 10 0 0 0 0 +.syscon misc INTERMEDIATE_C_GOOD 10 0 0 0 0 0 diff --git a/libc/sysv/consts/INTERMEDIATE_GOOD.s b/libc/sysv/consts/INTERMEDIATE_GOOD.s index 84bdc06f3..e9c2d4755 100644 --- a/libc/sysv/consts/INTERMEDIATE_GOOD.s +++ b/libc/sysv/consts/INTERMEDIATE_GOOD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc INTERMEDIATE_GOOD 8 0 0 0 0 +.syscon misc INTERMEDIATE_GOOD 8 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_ACCESS.s b/libc/sysv/consts/IN_ACCESS.s index a497b716e..be5925d26 100644 --- a/libc/sysv/consts/IN_ACCESS.s +++ b/libc/sysv/consts/IN_ACCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_ACCESS 1 0 0 0 0 +.syscon in IN_ACCESS 1 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_ALL_EVENTS.s b/libc/sysv/consts/IN_ALL_EVENTS.s index 92bbff305..e896d1f8f 100644 --- a/libc/sysv/consts/IN_ALL_EVENTS.s +++ b/libc/sysv/consts/IN_ALL_EVENTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_ALL_EVENTS 0x0fff 0 0 0 0 +.syscon in IN_ALL_EVENTS 0x0fff 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_ATTRIB.s b/libc/sysv/consts/IN_ATTRIB.s index b2577703a..3e0160d02 100644 --- a/libc/sysv/consts/IN_ATTRIB.s +++ b/libc/sysv/consts/IN_ATTRIB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_ATTRIB 4 0 0 0 0 +.syscon in IN_ATTRIB 4 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_CLOEXEC.s b/libc/sysv/consts/IN_CLOEXEC.s index 71f517144..03d22d22e 100644 --- a/libc/sysv/consts/IN_CLOEXEC.s +++ b/libc/sysv/consts/IN_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_CLOEXEC 0x080000 0 0 0 0 +.syscon in IN_CLOEXEC 0x080000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_CLOSE.s b/libc/sysv/consts/IN_CLOSE.s index d91572747..51c53d082 100644 --- a/libc/sysv/consts/IN_CLOSE.s +++ b/libc/sysv/consts/IN_CLOSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_CLOSE 24 0 0 0 0 +.syscon in IN_CLOSE 24 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_CLOSE_NOWRITE.s b/libc/sysv/consts/IN_CLOSE_NOWRITE.s index 6378f66b3..7e9d52ef7 100644 --- a/libc/sysv/consts/IN_CLOSE_NOWRITE.s +++ b/libc/sysv/consts/IN_CLOSE_NOWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_CLOSE_NOWRITE 0x10 0 0 0 0 +.syscon in IN_CLOSE_NOWRITE 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_CLOSE_WRITE.s b/libc/sysv/consts/IN_CLOSE_WRITE.s index 186495027..e5892fdb4 100644 --- a/libc/sysv/consts/IN_CLOSE_WRITE.s +++ b/libc/sysv/consts/IN_CLOSE_WRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_CLOSE_WRITE 8 0 0 0 0 +.syscon in IN_CLOSE_WRITE 8 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_CREATE.s b/libc/sysv/consts/IN_CREATE.s index f01ca6b29..99dc783b2 100644 --- a/libc/sysv/consts/IN_CREATE.s +++ b/libc/sysv/consts/IN_CREATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_CREATE 0x0100 0 0 0 0 +.syscon in IN_CREATE 0x0100 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_DELETE.s b/libc/sysv/consts/IN_DELETE.s index 4925012f1..9c02df48a 100644 --- a/libc/sysv/consts/IN_DELETE.s +++ b/libc/sysv/consts/IN_DELETE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_DELETE 0x0200 0 0 0 0 +.syscon in IN_DELETE 0x0200 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_DELETE_SELF.s b/libc/sysv/consts/IN_DELETE_SELF.s index 05795287c..75e628be2 100644 --- a/libc/sysv/consts/IN_DELETE_SELF.s +++ b/libc/sysv/consts/IN_DELETE_SELF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_DELETE_SELF 0x0400 0 0 0 0 +.syscon in IN_DELETE_SELF 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_DONT_FOLLOW.s b/libc/sysv/consts/IN_DONT_FOLLOW.s index 34f3b8fae..1d1a3394f 100644 --- a/libc/sysv/consts/IN_DONT_FOLLOW.s +++ b/libc/sysv/consts/IN_DONT_FOLLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_DONT_FOLLOW 0x02000000 0 0 0 0 +.syscon in IN_DONT_FOLLOW 0x02000000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_EXCL_UNLINK.s b/libc/sysv/consts/IN_EXCL_UNLINK.s index 86fcf7d8a..fcd39e6ef 100644 --- a/libc/sysv/consts/IN_EXCL_UNLINK.s +++ b/libc/sysv/consts/IN_EXCL_UNLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_EXCL_UNLINK 0x04000000 0 0 0 0 +.syscon in IN_EXCL_UNLINK 0x04000000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_IGNORED.s b/libc/sysv/consts/IN_IGNORED.s index f0d17c40f..70e100c05 100644 --- a/libc/sysv/consts/IN_IGNORED.s +++ b/libc/sysv/consts/IN_IGNORED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_IGNORED 0x8000 0 0 0 0 +.syscon in IN_IGNORED 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_ISDIR.s b/libc/sysv/consts/IN_ISDIR.s index f67d2b419..0c16d9929 100644 --- a/libc/sysv/consts/IN_ISDIR.s +++ b/libc/sysv/consts/IN_ISDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_ISDIR 0x40000000 0 0 0 0 +.syscon in IN_ISDIR 0x40000000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_LOOPBACKNET.s b/libc/sysv/consts/IN_LOOPBACKNET.s index 417b41535..080cccddb 100644 --- a/libc/sysv/consts/IN_LOOPBACKNET.s +++ b/libc/sysv/consts/IN_LOOPBACKNET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_LOOPBACKNET 127 127 127 127 0 +.syscon in IN_LOOPBACKNET 127 127 127 127 127 0 diff --git a/libc/sysv/consts/IN_MASK_ADD.s b/libc/sysv/consts/IN_MASK_ADD.s index 62661d17a..5a864b8dc 100644 --- a/libc/sysv/consts/IN_MASK_ADD.s +++ b/libc/sysv/consts/IN_MASK_ADD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_MASK_ADD 0x20000000 0 0 0 0 +.syscon in IN_MASK_ADD 0x20000000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_MODIFY.s b/libc/sysv/consts/IN_MODIFY.s index a3862415a..ec8ea7125 100644 --- a/libc/sysv/consts/IN_MODIFY.s +++ b/libc/sysv/consts/IN_MODIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_MODIFY 2 0 0 0 0 +.syscon in IN_MODIFY 2 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_MOVE.s b/libc/sysv/consts/IN_MOVE.s index e6a4845bd..bc0e4fa8c 100644 --- a/libc/sysv/consts/IN_MOVE.s +++ b/libc/sysv/consts/IN_MOVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_MOVE 192 0 0 0 0 +.syscon in IN_MOVE 192 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_MOVED_FROM.s b/libc/sysv/consts/IN_MOVED_FROM.s index 27dd33e20..028c552c7 100644 --- a/libc/sysv/consts/IN_MOVED_FROM.s +++ b/libc/sysv/consts/IN_MOVED_FROM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_MOVED_FROM 0x40 0 0 0 0 +.syscon in IN_MOVED_FROM 0x40 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_MOVED_TO.s b/libc/sysv/consts/IN_MOVED_TO.s index 6c387bdb3..d322000d7 100644 --- a/libc/sysv/consts/IN_MOVED_TO.s +++ b/libc/sysv/consts/IN_MOVED_TO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_MOVED_TO 0x80 0 0 0 0 +.syscon in IN_MOVED_TO 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_MOVE_SELF.s b/libc/sysv/consts/IN_MOVE_SELF.s index cee600209..5c2ed7a7b 100644 --- a/libc/sysv/consts/IN_MOVE_SELF.s +++ b/libc/sysv/consts/IN_MOVE_SELF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_MOVE_SELF 0x0800 0 0 0 0 +.syscon in IN_MOVE_SELF 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_NONBLOCK.s b/libc/sysv/consts/IN_NONBLOCK.s index 1c1e70fc3..0c7e2f87e 100644 --- a/libc/sysv/consts/IN_NONBLOCK.s +++ b/libc/sysv/consts/IN_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_NONBLOCK 0x0800 0 0 0 0 +.syscon in IN_NONBLOCK 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_ONESHOT.s b/libc/sysv/consts/IN_ONESHOT.s index d26f13c4b..565b2dee0 100644 --- a/libc/sysv/consts/IN_ONESHOT.s +++ b/libc/sysv/consts/IN_ONESHOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_ONESHOT 0x80000000 0 0 0 0 +.syscon in IN_ONESHOT 0x80000000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_ONLYDIR.s b/libc/sysv/consts/IN_ONLYDIR.s index 0bee2515c..161b55f0d 100644 --- a/libc/sysv/consts/IN_ONLYDIR.s +++ b/libc/sysv/consts/IN_ONLYDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_ONLYDIR 0x01000000 0 0 0 0 +.syscon in IN_ONLYDIR 0x01000000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_OPEN.s b/libc/sysv/consts/IN_OPEN.s index 2f0192bdd..bad662736 100644 --- a/libc/sysv/consts/IN_OPEN.s +++ b/libc/sysv/consts/IN_OPEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_OPEN 0x20 0 0 0 0 +.syscon in IN_OPEN 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_Q_OVERFLOW.s b/libc/sysv/consts/IN_Q_OVERFLOW.s index de417d9d4..6e3863fc5 100644 --- a/libc/sysv/consts/IN_Q_OVERFLOW.s +++ b/libc/sysv/consts/IN_Q_OVERFLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_Q_OVERFLOW 0x4000 0 0 0 0 +.syscon in IN_Q_OVERFLOW 0x4000 0 0 0 0 0 diff --git a/libc/sysv/consts/IN_UNMOUNT.s b/libc/sysv/consts/IN_UNMOUNT.s index 3fa1ac595..0bc0e8eba 100644 --- a/libc/sysv/consts/IN_UNMOUNT.s +++ b/libc/sysv/consts/IN_UNMOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon in IN_UNMOUNT 0x2000 0 0 0 0 +.syscon in IN_UNMOUNT 0x2000 0 0 0 0 0 diff --git a/libc/sysv/consts/IOV_MAX.s b/libc/sysv/consts/IOV_MAX.s index 3747ed721..aba69de3d 100644 --- a/libc/sysv/consts/IOV_MAX.s +++ b/libc/sysv/consts/IOV_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IOV_MAX 0x0400 0x0400 0x0400 0x0400 16 +.syscon misc IOV_MAX 0x0400 0x0400 0x0400 0x0400 0x0400 16 diff --git a/libc/sysv/consts/IP6F_MORE_FRAG.s b/libc/sysv/consts/IP6F_MORE_FRAG.s index 6dac59048..84d2face4 100644 --- a/libc/sysv/consts/IP6F_MORE_FRAG.s +++ b/libc/sysv/consts/IP6F_MORE_FRAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IP6F_MORE_FRAG 0x0100 0x0100 0x0100 0x0100 0x0100 +.syscon misc IP6F_MORE_FRAG 0x0100 0x0100 0x0100 0x0100 0x0100 0x0100 diff --git a/libc/sysv/consts/IP6F_OFF_MASK.s b/libc/sysv/consts/IP6F_OFF_MASK.s index d20d3a87c..b8a11478b 100644 --- a/libc/sysv/consts/IP6F_OFF_MASK.s +++ b/libc/sysv/consts/IP6F_OFF_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IP6F_OFF_MASK 0xf8ff 0xf8ff 0xf8ff 0xf8ff 0xf8ff +.syscon misc IP6F_OFF_MASK 0xf8ff 0xf8ff 0xf8ff 0xf8ff 0xf8ff 0xf8ff diff --git a/libc/sysv/consts/IP6F_RESERVED_MASK.s b/libc/sysv/consts/IP6F_RESERVED_MASK.s index 8fd6d46a9..b049085ff 100644 --- a/libc/sysv/consts/IP6F_RESERVED_MASK.s +++ b/libc/sysv/consts/IP6F_RESERVED_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IP6F_RESERVED_MASK 0x0600 0x0600 0x0600 0x0600 0x0600 +.syscon misc IP6F_RESERVED_MASK 0x0600 0x0600 0x0600 0x0600 0x0600 0x0600 diff --git a/libc/sysv/consts/IPC_CREAT.s b/libc/sysv/consts/IPC_CREAT.s index c032eb00f..f8c0027d7 100644 --- a/libc/sysv/consts/IPC_CREAT.s +++ b/libc/sysv/consts/IPC_CREAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_CREAT 0x0200 0x0200 0x0200 0x0200 0 +.syscon misc IPC_CREAT 0x0200 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/IPC_EXCL.s b/libc/sysv/consts/IPC_EXCL.s index 83b728693..c06458e7d 100644 --- a/libc/sysv/consts/IPC_EXCL.s +++ b/libc/sysv/consts/IPC_EXCL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_EXCL 0x0400 0x0400 0x0400 0x0400 0 +.syscon misc IPC_EXCL 0x0400 0x0400 0x0400 0x0400 0x0400 0 diff --git a/libc/sysv/consts/IPC_INFO.s b/libc/sysv/consts/IPC_INFO.s index ec3ec92cd..5093ce15b 100644 --- a/libc/sysv/consts/IPC_INFO.s +++ b/libc/sysv/consts/IPC_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_INFO 3 0 3 0 0 +.syscon misc IPC_INFO 3 0 3 0 0 0 diff --git a/libc/sysv/consts/IPC_NOWAIT.s b/libc/sysv/consts/IPC_NOWAIT.s index 15161176c..6b1b05341 100644 --- a/libc/sysv/consts/IPC_NOWAIT.s +++ b/libc/sysv/consts/IPC_NOWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_NOWAIT 0x0800 0x0800 0x0800 0x0800 0 +.syscon misc IPC_NOWAIT 0x0800 0x0800 0x0800 0x0800 0x0800 0 diff --git a/libc/sysv/consts/IPC_PRIVATE.s b/libc/sysv/consts/IPC_PRIVATE.s index dc6b4cb2f..7b836da1d 100644 --- a/libc/sysv/consts/IPC_PRIVATE.s +++ b/libc/sysv/consts/IPC_PRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_PRIVATE 0 0 0 0 0 +.syscon misc IPC_PRIVATE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IPC_RMID.s b/libc/sysv/consts/IPC_RMID.s index 833825eea..62fbb7235 100644 --- a/libc/sysv/consts/IPC_RMID.s +++ b/libc/sysv/consts/IPC_RMID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_RMID 0 0 0 0 0 +.syscon misc IPC_RMID 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IPC_SET.s b/libc/sysv/consts/IPC_SET.s index 1523d6043..5dfbe41e5 100644 --- a/libc/sysv/consts/IPC_SET.s +++ b/libc/sysv/consts/IPC_SET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_SET 1 1 1 1 0 +.syscon misc IPC_SET 1 1 1 1 1 0 diff --git a/libc/sysv/consts/IPC_STAT.s b/libc/sysv/consts/IPC_STAT.s index d420bfac9..f471d40a0 100644 --- a/libc/sysv/consts/IPC_STAT.s +++ b/libc/sysv/consts/IPC_STAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPC_STAT 2 2 2 2 0 +.syscon misc IPC_STAT 2 2 2 2 2 0 diff --git a/libc/sysv/consts/IPPORT_RESERVED.s b/libc/sysv/consts/IPPORT_RESERVED.s index 1d96178a2..e6559e56b 100644 --- a/libc/sysv/consts/IPPORT_RESERVED.s +++ b/libc/sysv/consts/IPPORT_RESERVED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc IPPORT_RESERVED 0x0400 0x0400 0x0400 0x0400 0x0400 +.syscon misc IPPORT_RESERVED 0x0400 0x0400 0x0400 0x0400 0x0400 0x0400 diff --git a/libc/sysv/consts/IPPROTO_AH.s b/libc/sysv/consts/IPPROTO_AH.s index 086975573..7f12ded13 100644 --- a/libc/sysv/consts/IPPROTO_AH.s +++ b/libc/sysv/consts/IPPROTO_AH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_AH 51 51 51 51 0 +.syscon iproto IPPROTO_AH 51 51 51 51 51 0 diff --git a/libc/sysv/consts/IPPROTO_BEETPH.s b/libc/sysv/consts/IPPROTO_BEETPH.s index 4b7b16bc2..36f9612a3 100644 --- a/libc/sysv/consts/IPPROTO_BEETPH.s +++ b/libc/sysv/consts/IPPROTO_BEETPH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_BEETPH 94 0 0 0 0 +.syscon iproto IPPROTO_BEETPH 94 0 0 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_COMP.s b/libc/sysv/consts/IPPROTO_COMP.s index 2d2e3ba4f..0be03c32f 100644 --- a/libc/sysv/consts/IPPROTO_COMP.s +++ b/libc/sysv/consts/IPPROTO_COMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_COMP 108 0 0 0 0 +.syscon iproto IPPROTO_COMP 108 0 0 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_DCCP.s b/libc/sysv/consts/IPPROTO_DCCP.s index fad4bc0ef..b63ab6226 100644 --- a/libc/sysv/consts/IPPROTO_DCCP.s +++ b/libc/sysv/consts/IPPROTO_DCCP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_DCCP 33 0 0 0 0 +.syscon iproto IPPROTO_DCCP 33 0 0 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_DSTOPTS.s b/libc/sysv/consts/IPPROTO_DSTOPTS.s index f1dbadef7..81a07f6ab 100644 --- a/libc/sysv/consts/IPPROTO_DSTOPTS.s +++ b/libc/sysv/consts/IPPROTO_DSTOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_DSTOPTS 60 60 60 60 0 +.syscon iproto IPPROTO_DSTOPTS 60 60 60 60 60 0 diff --git a/libc/sysv/consts/IPPROTO_EGP.s b/libc/sysv/consts/IPPROTO_EGP.s index f8f669023..06b48bd38 100644 --- a/libc/sysv/consts/IPPROTO_EGP.s +++ b/libc/sysv/consts/IPPROTO_EGP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_EGP 8 8 8 8 0 +.syscon iproto IPPROTO_EGP 8 8 8 8 8 0 diff --git a/libc/sysv/consts/IPPROTO_ENCAP.s b/libc/sysv/consts/IPPROTO_ENCAP.s index 2c6a2354a..c6d5e5cdc 100644 --- a/libc/sysv/consts/IPPROTO_ENCAP.s +++ b/libc/sysv/consts/IPPROTO_ENCAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_ENCAP 98 98 98 98 0 +.syscon iproto IPPROTO_ENCAP 98 98 98 98 98 0 diff --git a/libc/sysv/consts/IPPROTO_ESP.s b/libc/sysv/consts/IPPROTO_ESP.s index 98a889d6c..24fb27e78 100644 --- a/libc/sysv/consts/IPPROTO_ESP.s +++ b/libc/sysv/consts/IPPROTO_ESP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_ESP 50 50 50 50 0 +.syscon iproto IPPROTO_ESP 50 50 50 50 50 0 diff --git a/libc/sysv/consts/IPPROTO_FRAGMENT.s b/libc/sysv/consts/IPPROTO_FRAGMENT.s index d2bbd51e3..ff06545de 100644 --- a/libc/sysv/consts/IPPROTO_FRAGMENT.s +++ b/libc/sysv/consts/IPPROTO_FRAGMENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_FRAGMENT 44 44 44 44 0 +.syscon iproto IPPROTO_FRAGMENT 44 44 44 44 44 0 diff --git a/libc/sysv/consts/IPPROTO_GRE.s b/libc/sysv/consts/IPPROTO_GRE.s index edf276ecb..00220013e 100644 --- a/libc/sysv/consts/IPPROTO_GRE.s +++ b/libc/sysv/consts/IPPROTO_GRE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_GRE 47 47 47 47 0 +.syscon iproto IPPROTO_GRE 47 47 47 47 47 0 diff --git a/libc/sysv/consts/IPPROTO_HOPOPTS.s b/libc/sysv/consts/IPPROTO_HOPOPTS.s index 678df20f2..6e18a57d6 100644 --- a/libc/sysv/consts/IPPROTO_HOPOPTS.s +++ b/libc/sysv/consts/IPPROTO_HOPOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_HOPOPTS 0 0 0 0 0 +.syscon iproto IPPROTO_HOPOPTS 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_ICMP.s b/libc/sysv/consts/IPPROTO_ICMP.s index de7746c5c..293b0c9b1 100644 --- a/libc/sysv/consts/IPPROTO_ICMP.s +++ b/libc/sysv/consts/IPPROTO_ICMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_ICMP 1 1 1 1 1 +.syscon iproto IPPROTO_ICMP 1 1 1 1 1 1 diff --git a/libc/sysv/consts/IPPROTO_ICMPV6.s b/libc/sysv/consts/IPPROTO_ICMPV6.s index 2c00d4dff..a3ca7a95f 100644 --- a/libc/sysv/consts/IPPROTO_ICMPV6.s +++ b/libc/sysv/consts/IPPROTO_ICMPV6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_ICMPV6 58 58 58 58 0 +.syscon iproto IPPROTO_ICMPV6 58 58 58 58 58 0 diff --git a/libc/sysv/consts/IPPROTO_IDP.s b/libc/sysv/consts/IPPROTO_IDP.s index 8e68a863b..0664362c0 100644 --- a/libc/sysv/consts/IPPROTO_IDP.s +++ b/libc/sysv/consts/IPPROTO_IDP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_IDP 22 22 22 22 22 +.syscon iproto IPPROTO_IDP 22 22 22 22 22 22 diff --git a/libc/sysv/consts/IPPROTO_IGMP.s b/libc/sysv/consts/IPPROTO_IGMP.s index 3e3fa67cf..13f847dea 100644 --- a/libc/sysv/consts/IPPROTO_IGMP.s +++ b/libc/sysv/consts/IPPROTO_IGMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_IGMP 2 2 2 2 2 +.syscon iproto IPPROTO_IGMP 2 2 2 2 2 2 diff --git a/libc/sysv/consts/IPPROTO_IP.s b/libc/sysv/consts/IPPROTO_IP.s index 9f66ce5fd..94b3caba3 100644 --- a/libc/sysv/consts/IPPROTO_IP.s +++ b/libc/sysv/consts/IPPROTO_IP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_IP 0 0 0 0 0 +.syscon iproto IPPROTO_IP 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_IPIP.s b/libc/sysv/consts/IPPROTO_IPIP.s index 8697cdb06..228bb726c 100644 --- a/libc/sysv/consts/IPPROTO_IPIP.s +++ b/libc/sysv/consts/IPPROTO_IPIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_IPIP 4 4 4 4 0 +.syscon iproto IPPROTO_IPIP 4 4 4 4 4 0 diff --git a/libc/sysv/consts/IPPROTO_IPV6.s b/libc/sysv/consts/IPPROTO_IPV6.s index 25b81e73c..c00d82820 100644 --- a/libc/sysv/consts/IPPROTO_IPV6.s +++ b/libc/sysv/consts/IPPROTO_IPV6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_IPV6 41 41 41 41 0 +.syscon iproto IPPROTO_IPV6 41 41 41 41 41 0 diff --git a/libc/sysv/consts/IPPROTO_MH.s b/libc/sysv/consts/IPPROTO_MH.s index 1315d8271..899e11a81 100644 --- a/libc/sysv/consts/IPPROTO_MH.s +++ b/libc/sysv/consts/IPPROTO_MH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_MH 135 0 135 0 0 +.syscon iproto IPPROTO_MH 135 0 135 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_MPLS.s b/libc/sysv/consts/IPPROTO_MPLS.s index bb25f6dc4..333928be2 100644 --- a/libc/sysv/consts/IPPROTO_MPLS.s +++ b/libc/sysv/consts/IPPROTO_MPLS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_MPLS 137 0 137 137 0 +.syscon iproto IPPROTO_MPLS 137 0 137 137 137 0 diff --git a/libc/sysv/consts/IPPROTO_MTP.s b/libc/sysv/consts/IPPROTO_MTP.s index f8bddc193..41dbae666 100644 --- a/libc/sysv/consts/IPPROTO_MTP.s +++ b/libc/sysv/consts/IPPROTO_MTP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_MTP 92 92 92 0 0 +.syscon iproto IPPROTO_MTP 92 92 92 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_NONE.s b/libc/sysv/consts/IPPROTO_NONE.s index 0e01569b7..09970c713 100644 --- a/libc/sysv/consts/IPPROTO_NONE.s +++ b/libc/sysv/consts/IPPROTO_NONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_NONE 59 59 59 59 0 +.syscon iproto IPPROTO_NONE 59 59 59 59 59 0 diff --git a/libc/sysv/consts/IPPROTO_PIM.s b/libc/sysv/consts/IPPROTO_PIM.s index b9312306a..28d8d6ce5 100644 --- a/libc/sysv/consts/IPPROTO_PIM.s +++ b/libc/sysv/consts/IPPROTO_PIM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_PIM 103 103 103 103 0 +.syscon iproto IPPROTO_PIM 103 103 103 103 103 0 diff --git a/libc/sysv/consts/IPPROTO_PUP.s b/libc/sysv/consts/IPPROTO_PUP.s index ef88a8eb2..634535601 100644 --- a/libc/sysv/consts/IPPROTO_PUP.s +++ b/libc/sysv/consts/IPPROTO_PUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_PUP 12 12 12 12 12 +.syscon iproto IPPROTO_PUP 12 12 12 12 12 12 diff --git a/libc/sysv/consts/IPPROTO_RAW.s b/libc/sysv/consts/IPPROTO_RAW.s index fad8f4d0f..53da067f7 100644 --- a/libc/sysv/consts/IPPROTO_RAW.s +++ b/libc/sysv/consts/IPPROTO_RAW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_RAW 255 255 255 255 255 +.syscon iproto IPPROTO_RAW 255 255 255 255 255 255 diff --git a/libc/sysv/consts/IPPROTO_ROUTING.s b/libc/sysv/consts/IPPROTO_ROUTING.s index c46c03dac..cc7eedecf 100644 --- a/libc/sysv/consts/IPPROTO_ROUTING.s +++ b/libc/sysv/consts/IPPROTO_ROUTING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_ROUTING 43 43 43 43 0 +.syscon iproto IPPROTO_ROUTING 43 43 43 43 43 0 diff --git a/libc/sysv/consts/IPPROTO_RSVP.s b/libc/sysv/consts/IPPROTO_RSVP.s index d5441a72a..4ba64e987 100644 --- a/libc/sysv/consts/IPPROTO_RSVP.s +++ b/libc/sysv/consts/IPPROTO_RSVP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_RSVP 46 46 46 46 0 +.syscon iproto IPPROTO_RSVP 46 46 46 46 46 0 diff --git a/libc/sysv/consts/IPPROTO_SCTP.s b/libc/sysv/consts/IPPROTO_SCTP.s index de4c9b270..df3ccfe40 100644 --- a/libc/sysv/consts/IPPROTO_SCTP.s +++ b/libc/sysv/consts/IPPROTO_SCTP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_SCTP 132 132 132 0 0 +.syscon iproto IPPROTO_SCTP 132 132 132 0 0 0 diff --git a/libc/sysv/consts/IPPROTO_TCP.s b/libc/sysv/consts/IPPROTO_TCP.s index 48c2887de..4aebe878e 100644 --- a/libc/sysv/consts/IPPROTO_TCP.s +++ b/libc/sysv/consts/IPPROTO_TCP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_TCP 6 6 6 6 6 +.syscon iproto IPPROTO_TCP 6 6 6 6 6 6 diff --git a/libc/sysv/consts/IPPROTO_TP.s b/libc/sysv/consts/IPPROTO_TP.s index af4be7516..a13c4634c 100644 --- a/libc/sysv/consts/IPPROTO_TP.s +++ b/libc/sysv/consts/IPPROTO_TP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_TP 29 29 29 29 0 +.syscon iproto IPPROTO_TP 29 29 29 29 29 0 diff --git a/libc/sysv/consts/IPPROTO_UDP.s b/libc/sysv/consts/IPPROTO_UDP.s index 2b0f1f2e5..1d7a882a2 100644 --- a/libc/sysv/consts/IPPROTO_UDP.s +++ b/libc/sysv/consts/IPPROTO_UDP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_UDP 17 17 17 17 17 +.syscon iproto IPPROTO_UDP 17 17 17 17 17 17 diff --git a/libc/sysv/consts/IPPROTO_UDPLITE.s b/libc/sysv/consts/IPPROTO_UDPLITE.s index dbf54db8e..a6b2fb109 100644 --- a/libc/sysv/consts/IPPROTO_UDPLITE.s +++ b/libc/sysv/consts/IPPROTO_UDPLITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon iproto IPPROTO_UDPLITE 136 0 136 0 0 +.syscon iproto IPPROTO_UDPLITE 136 0 136 0 0 0 diff --git a/libc/sysv/consts/IPV6_2292DSTOPTS.s b/libc/sysv/consts/IPV6_2292DSTOPTS.s index f17f72974..7350bba5e 100644 --- a/libc/sysv/consts/IPV6_2292DSTOPTS.s +++ b/libc/sysv/consts/IPV6_2292DSTOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_2292DSTOPTS 4 23 0 0 0 +.syscon ipv6 IPV6_2292DSTOPTS 4 23 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_2292HOPLIMIT.s b/libc/sysv/consts/IPV6_2292HOPLIMIT.s index cb6217fc5..acf14398f 100644 --- a/libc/sysv/consts/IPV6_2292HOPLIMIT.s +++ b/libc/sysv/consts/IPV6_2292HOPLIMIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_2292HOPLIMIT 8 20 0 0 0 +.syscon ipv6 IPV6_2292HOPLIMIT 8 20 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_2292HOPOPTS.s b/libc/sysv/consts/IPV6_2292HOPOPTS.s index bbd1f6401..5f59ad2f7 100644 --- a/libc/sysv/consts/IPV6_2292HOPOPTS.s +++ b/libc/sysv/consts/IPV6_2292HOPOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_2292HOPOPTS 3 22 0 0 0 +.syscon ipv6 IPV6_2292HOPOPTS 3 22 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_2292PKTINFO.s b/libc/sysv/consts/IPV6_2292PKTINFO.s index bcfcdba5b..fde69871e 100644 --- a/libc/sysv/consts/IPV6_2292PKTINFO.s +++ b/libc/sysv/consts/IPV6_2292PKTINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_2292PKTINFO 2 19 0 0 0 +.syscon ipv6 IPV6_2292PKTINFO 2 19 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_2292PKTOPTIONS.s b/libc/sysv/consts/IPV6_2292PKTOPTIONS.s index 33217dfb4..955ce039d 100644 --- a/libc/sysv/consts/IPV6_2292PKTOPTIONS.s +++ b/libc/sysv/consts/IPV6_2292PKTOPTIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_2292PKTOPTIONS 6 25 0 0 0 +.syscon ipv6 IPV6_2292PKTOPTIONS 6 25 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_2292RTHDR.s b/libc/sysv/consts/IPV6_2292RTHDR.s index f895f9126..024e48b50 100644 --- a/libc/sysv/consts/IPV6_2292RTHDR.s +++ b/libc/sysv/consts/IPV6_2292RTHDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_2292RTHDR 5 24 0 0 0 +.syscon ipv6 IPV6_2292RTHDR 5 24 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_ADDRFORM.s b/libc/sysv/consts/IPV6_ADDRFORM.s index ec2042a7a..a77f77178 100644 --- a/libc/sysv/consts/IPV6_ADDRFORM.s +++ b/libc/sysv/consts/IPV6_ADDRFORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_ADDRFORM 1 0 0 0 0 +.syscon ipv6 IPV6_ADDRFORM 1 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_ADD_MEMBERSHIP.s b/libc/sysv/consts/IPV6_ADD_MEMBERSHIP.s index 832ddaf75..9ddc0a527 100644 --- a/libc/sysv/consts/IPV6_ADD_MEMBERSHIP.s +++ b/libc/sysv/consts/IPV6_ADD_MEMBERSHIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_ADD_MEMBERSHIP 20 0 0 0 12 +.syscon ipv6 IPV6_ADD_MEMBERSHIP 20 0 0 0 0 12 diff --git a/libc/sysv/consts/IPV6_AUTHHDR.s b/libc/sysv/consts/IPV6_AUTHHDR.s index 7281d5b8b..a769f727e 100644 --- a/libc/sysv/consts/IPV6_AUTHHDR.s +++ b/libc/sysv/consts/IPV6_AUTHHDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_AUTHHDR 10 0 0 0 0 +.syscon ipv6 IPV6_AUTHHDR 10 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_AUTOFLOWLABEL.s b/libc/sysv/consts/IPV6_AUTOFLOWLABEL.s index 24f972534..3e6444e22 100644 --- a/libc/sysv/consts/IPV6_AUTOFLOWLABEL.s +++ b/libc/sysv/consts/IPV6_AUTOFLOWLABEL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_AUTOFLOWLABEL 0 0 59 59 0 +.syscon ipv6 IPV6_AUTOFLOWLABEL 0 0 59 59 59 0 diff --git a/libc/sysv/consts/IPV6_CHECKSUM.s b/libc/sysv/consts/IPV6_CHECKSUM.s index a51183973..5d234b8ac 100644 --- a/libc/sysv/consts/IPV6_CHECKSUM.s +++ b/libc/sysv/consts/IPV6_CHECKSUM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_CHECKSUM 7 26 26 26 26 +.syscon ipv6 IPV6_CHECKSUM 7 26 26 26 26 26 diff --git a/libc/sysv/consts/IPV6_DONTFRAG.s b/libc/sysv/consts/IPV6_DONTFRAG.s index 481f0d90b..44cc52b7c 100644 --- a/libc/sysv/consts/IPV6_DONTFRAG.s +++ b/libc/sysv/consts/IPV6_DONTFRAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_DONTFRAG 62 0 62 62 14 +.syscon ipv6 IPV6_DONTFRAG 62 0 62 62 62 14 diff --git a/libc/sysv/consts/IPV6_DROP_MEMBERSHIP.s b/libc/sysv/consts/IPV6_DROP_MEMBERSHIP.s index d9431f83f..937faa33d 100644 --- a/libc/sysv/consts/IPV6_DROP_MEMBERSHIP.s +++ b/libc/sysv/consts/IPV6_DROP_MEMBERSHIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_DROP_MEMBERSHIP 21 0 0 0 13 +.syscon ipv6 IPV6_DROP_MEMBERSHIP 21 0 0 0 0 13 diff --git a/libc/sysv/consts/IPV6_DSTOPTS.s b/libc/sysv/consts/IPV6_DSTOPTS.s index ea23b3b33..7ee664092 100644 --- a/libc/sysv/consts/IPV6_DSTOPTS.s +++ b/libc/sysv/consts/IPV6_DSTOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_DSTOPTS 59 0 50 50 0 +.syscon ipv6 IPV6_DSTOPTS 59 0 50 50 50 0 diff --git a/libc/sysv/consts/IPV6_HDRINCL.s b/libc/sysv/consts/IPV6_HDRINCL.s index d0e9fac3d..59eeebc81 100644 --- a/libc/sysv/consts/IPV6_HDRINCL.s +++ b/libc/sysv/consts/IPV6_HDRINCL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_HDRINCL 36 0 0 0 2 +.syscon ipv6 IPV6_HDRINCL 36 0 0 0 0 2 diff --git a/libc/sysv/consts/IPV6_HOPLIMIT.s b/libc/sysv/consts/IPV6_HOPLIMIT.s index 1363ea28d..714a5fd4d 100644 --- a/libc/sysv/consts/IPV6_HOPLIMIT.s +++ b/libc/sysv/consts/IPV6_HOPLIMIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_HOPLIMIT 52 0 47 47 21 +.syscon ipv6 IPV6_HOPLIMIT 52 0 47 47 47 21 diff --git a/libc/sysv/consts/IPV6_HOPOPTS.s b/libc/sysv/consts/IPV6_HOPOPTS.s index 6e7e44397..9e5915eca 100644 --- a/libc/sysv/consts/IPV6_HOPOPTS.s +++ b/libc/sysv/consts/IPV6_HOPOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_HOPOPTS 54 0 49 49 1 +.syscon ipv6 IPV6_HOPOPTS 54 0 49 49 49 1 diff --git a/libc/sysv/consts/IPV6_IPSEC_POLICY.s b/libc/sysv/consts/IPV6_IPSEC_POLICY.s index 2180009fd..14d5b3b76 100644 --- a/libc/sysv/consts/IPV6_IPSEC_POLICY.s +++ b/libc/sysv/consts/IPV6_IPSEC_POLICY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_IPSEC_POLICY 34 28 28 0 0 +.syscon ipv6 IPV6_IPSEC_POLICY 34 28 28 0 0 0 diff --git a/libc/sysv/consts/IPV6_JOIN_ANYCAST.s b/libc/sysv/consts/IPV6_JOIN_ANYCAST.s index af4d801a7..516844ca3 100644 --- a/libc/sysv/consts/IPV6_JOIN_ANYCAST.s +++ b/libc/sysv/consts/IPV6_JOIN_ANYCAST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_JOIN_ANYCAST 27 0 0 0 0 +.syscon ipv6 IPV6_JOIN_ANYCAST 27 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_JOIN_GROUP.s b/libc/sysv/consts/IPV6_JOIN_GROUP.s index 9186b0e9d..c7eefac9f 100644 --- a/libc/sysv/consts/IPV6_JOIN_GROUP.s +++ b/libc/sysv/consts/IPV6_JOIN_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_JOIN_GROUP 20 12 12 12 12 +.syscon ipv6 IPV6_JOIN_GROUP 20 12 12 12 12 12 diff --git a/libc/sysv/consts/IPV6_LEAVE_ANYCAST.s b/libc/sysv/consts/IPV6_LEAVE_ANYCAST.s index dc34bbcb9..2f4e1afb2 100644 --- a/libc/sysv/consts/IPV6_LEAVE_ANYCAST.s +++ b/libc/sysv/consts/IPV6_LEAVE_ANYCAST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_LEAVE_ANYCAST 28 0 0 0 0 +.syscon ipv6 IPV6_LEAVE_ANYCAST 28 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_LEAVE_GROUP.s b/libc/sysv/consts/IPV6_LEAVE_GROUP.s index ff67f8990..cfb942b2f 100644 --- a/libc/sysv/consts/IPV6_LEAVE_GROUP.s +++ b/libc/sysv/consts/IPV6_LEAVE_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_LEAVE_GROUP 21 13 13 13 13 +.syscon ipv6 IPV6_LEAVE_GROUP 21 13 13 13 13 13 diff --git a/libc/sysv/consts/IPV6_MINHOPCOUNT.s b/libc/sysv/consts/IPV6_MINHOPCOUNT.s index e0fe89f01..a75077bbd 100644 --- a/libc/sysv/consts/IPV6_MINHOPCOUNT.s +++ b/libc/sysv/consts/IPV6_MINHOPCOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_MINHOPCOUNT 0 0 0 65 0 +.syscon ipv6 IPV6_MINHOPCOUNT 0 0 0 65 65 0 diff --git a/libc/sysv/consts/IPV6_MTU.s b/libc/sysv/consts/IPV6_MTU.s index 2503ea201..ac82e58e5 100644 --- a/libc/sysv/consts/IPV6_MTU.s +++ b/libc/sysv/consts/IPV6_MTU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_MTU 24 0 0 0 72 +.syscon ipv6 IPV6_MTU 24 0 0 0 0 72 diff --git a/libc/sysv/consts/IPV6_MTU_DISCOVER.s b/libc/sysv/consts/IPV6_MTU_DISCOVER.s index 94fdfe9dd..d18ec2312 100644 --- a/libc/sysv/consts/IPV6_MTU_DISCOVER.s +++ b/libc/sysv/consts/IPV6_MTU_DISCOVER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_MTU_DISCOVER 23 0 0 0 71 +.syscon ipv6 IPV6_MTU_DISCOVER 23 0 0 0 0 71 diff --git a/libc/sysv/consts/IPV6_MULTICAST_HOPS.s b/libc/sysv/consts/IPV6_MULTICAST_HOPS.s index 51b84ede2..8dd6ce585 100644 --- a/libc/sysv/consts/IPV6_MULTICAST_HOPS.s +++ b/libc/sysv/consts/IPV6_MULTICAST_HOPS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_MULTICAST_HOPS 18 10 10 10 10 +.syscon ipv6 IPV6_MULTICAST_HOPS 18 10 10 10 10 10 diff --git a/libc/sysv/consts/IPV6_MULTICAST_IF.s b/libc/sysv/consts/IPV6_MULTICAST_IF.s index 639bc118f..b7ca40314 100644 --- a/libc/sysv/consts/IPV6_MULTICAST_IF.s +++ b/libc/sysv/consts/IPV6_MULTICAST_IF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_MULTICAST_IF 17 9 9 9 9 +.syscon ipv6 IPV6_MULTICAST_IF 17 9 9 9 9 9 diff --git a/libc/sysv/consts/IPV6_MULTICAST_LOOP.s b/libc/sysv/consts/IPV6_MULTICAST_LOOP.s index 0a0f0df74..fd3a222e5 100644 --- a/libc/sysv/consts/IPV6_MULTICAST_LOOP.s +++ b/libc/sysv/consts/IPV6_MULTICAST_LOOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_MULTICAST_LOOP 19 11 11 11 11 +.syscon ipv6 IPV6_MULTICAST_LOOP 19 11 11 11 11 11 diff --git a/libc/sysv/consts/IPV6_NEXTHOP.s b/libc/sysv/consts/IPV6_NEXTHOP.s index c5b553bd0..06a1c5381 100644 --- a/libc/sysv/consts/IPV6_NEXTHOP.s +++ b/libc/sysv/consts/IPV6_NEXTHOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_NEXTHOP 9 0 48 48 0 +.syscon ipv6 IPV6_NEXTHOP 9 0 48 48 48 0 diff --git a/libc/sysv/consts/IPV6_ORIGDSTADDR.s b/libc/sysv/consts/IPV6_ORIGDSTADDR.s index b2297d5d1..b89fae7d0 100644 --- a/libc/sysv/consts/IPV6_ORIGDSTADDR.s +++ b/libc/sysv/consts/IPV6_ORIGDSTADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_ORIGDSTADDR 0 0 72 0 0 +.syscon ipv6 IPV6_ORIGDSTADDR 0 0 72 0 0 0 diff --git a/libc/sysv/consts/IPV6_PATHMTU.s b/libc/sysv/consts/IPV6_PATHMTU.s index 534f4471a..09053a08a 100644 --- a/libc/sysv/consts/IPV6_PATHMTU.s +++ b/libc/sysv/consts/IPV6_PATHMTU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PATHMTU 61 0 44 44 0 +.syscon ipv6 IPV6_PATHMTU 61 0 44 44 44 0 diff --git a/libc/sysv/consts/IPV6_PKTINFO.s b/libc/sysv/consts/IPV6_PKTINFO.s index bdd5434f8..966889a14 100644 --- a/libc/sysv/consts/IPV6_PKTINFO.s +++ b/libc/sysv/consts/IPV6_PKTINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PKTINFO 50 0 46 46 19 +.syscon ipv6 IPV6_PKTINFO 50 0 46 46 46 19 diff --git a/libc/sysv/consts/IPV6_PMTUDISC_DO.s b/libc/sysv/consts/IPV6_PMTUDISC_DO.s index 188787e81..9a5409cce 100644 --- a/libc/sysv/consts/IPV6_PMTUDISC_DO.s +++ b/libc/sysv/consts/IPV6_PMTUDISC_DO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PMTUDISC_DO 2 0 0 0 0 +.syscon ipv6 IPV6_PMTUDISC_DO 2 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_PMTUDISC_DONT.s b/libc/sysv/consts/IPV6_PMTUDISC_DONT.s index 75484f889..d29f12481 100644 --- a/libc/sysv/consts/IPV6_PMTUDISC_DONT.s +++ b/libc/sysv/consts/IPV6_PMTUDISC_DONT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PMTUDISC_DONT 0 0 0 0 0 +.syscon ipv6 IPV6_PMTUDISC_DONT 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_PMTUDISC_INTERFACE.s b/libc/sysv/consts/IPV6_PMTUDISC_INTERFACE.s index d7a8f786b..2d6055d82 100644 --- a/libc/sysv/consts/IPV6_PMTUDISC_INTERFACE.s +++ b/libc/sysv/consts/IPV6_PMTUDISC_INTERFACE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PMTUDISC_INTERFACE 4 0 0 0 0 +.syscon ipv6 IPV6_PMTUDISC_INTERFACE 4 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_PMTUDISC_OMIT.s b/libc/sysv/consts/IPV6_PMTUDISC_OMIT.s index 19a505e85..3c7673be9 100644 --- a/libc/sysv/consts/IPV6_PMTUDISC_OMIT.s +++ b/libc/sysv/consts/IPV6_PMTUDISC_OMIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PMTUDISC_OMIT 5 0 0 0 0 +.syscon ipv6 IPV6_PMTUDISC_OMIT 5 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_PMTUDISC_PROBE.s b/libc/sysv/consts/IPV6_PMTUDISC_PROBE.s index 3decbdb88..8e60e6c3f 100644 --- a/libc/sysv/consts/IPV6_PMTUDISC_PROBE.s +++ b/libc/sysv/consts/IPV6_PMTUDISC_PROBE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PMTUDISC_PROBE 3 0 0 0 0 +.syscon ipv6 IPV6_PMTUDISC_PROBE 3 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_PMTUDISC_WANT.s b/libc/sysv/consts/IPV6_PMTUDISC_WANT.s index 5152d5388..b70e9ed25 100644 --- a/libc/sysv/consts/IPV6_PMTUDISC_WANT.s +++ b/libc/sysv/consts/IPV6_PMTUDISC_WANT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_PMTUDISC_WANT 1 0 0 0 0 +.syscon ipv6 IPV6_PMTUDISC_WANT 1 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_RECVDSTOPTS.s b/libc/sysv/consts/IPV6_RECVDSTOPTS.s index 6abd8933c..0aef16b38 100644 --- a/libc/sysv/consts/IPV6_RECVDSTOPTS.s +++ b/libc/sysv/consts/IPV6_RECVDSTOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVDSTOPTS 58 0 40 40 0 +.syscon ipv6 IPV6_RECVDSTOPTS 58 0 40 40 40 0 diff --git a/libc/sysv/consts/IPV6_RECVERR.s b/libc/sysv/consts/IPV6_RECVERR.s index f6a5d7944..1a2cd9e3e 100644 --- a/libc/sysv/consts/IPV6_RECVERR.s +++ b/libc/sysv/consts/IPV6_RECVERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVERR 25 0 0 0 75 +.syscon ipv6 IPV6_RECVERR 25 0 0 0 0 75 diff --git a/libc/sysv/consts/IPV6_RECVHOPLIMIT.s b/libc/sysv/consts/IPV6_RECVHOPLIMIT.s index 1626a2b12..331aa2be8 100644 --- a/libc/sysv/consts/IPV6_RECVHOPLIMIT.s +++ b/libc/sysv/consts/IPV6_RECVHOPLIMIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVHOPLIMIT 51 0 37 37 0 +.syscon ipv6 IPV6_RECVHOPLIMIT 51 0 37 37 37 0 diff --git a/libc/sysv/consts/IPV6_RECVHOPOPTS.s b/libc/sysv/consts/IPV6_RECVHOPOPTS.s index 7aa2db629..bf294c639 100644 --- a/libc/sysv/consts/IPV6_RECVHOPOPTS.s +++ b/libc/sysv/consts/IPV6_RECVHOPOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVHOPOPTS 53 0 39 39 0 +.syscon ipv6 IPV6_RECVHOPOPTS 53 0 39 39 39 0 diff --git a/libc/sysv/consts/IPV6_RECVORIGDSTADDR.s b/libc/sysv/consts/IPV6_RECVORIGDSTADDR.s index 18af27f39..3bacb4f56 100644 --- a/libc/sysv/consts/IPV6_RECVORIGDSTADDR.s +++ b/libc/sysv/consts/IPV6_RECVORIGDSTADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVORIGDSTADDR 0 0 72 0 0 +.syscon ipv6 IPV6_RECVORIGDSTADDR 0 0 72 0 0 0 diff --git a/libc/sysv/consts/IPV6_RECVPATHMTU.s b/libc/sysv/consts/IPV6_RECVPATHMTU.s index f0f8c66ca..4176e3ea2 100644 --- a/libc/sysv/consts/IPV6_RECVPATHMTU.s +++ b/libc/sysv/consts/IPV6_RECVPATHMTU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVPATHMTU 60 0 43 43 0 +.syscon ipv6 IPV6_RECVPATHMTU 60 0 43 43 43 0 diff --git a/libc/sysv/consts/IPV6_RECVPKTINFO.s b/libc/sysv/consts/IPV6_RECVPKTINFO.s index 2987a228c..6da2baec5 100644 --- a/libc/sysv/consts/IPV6_RECVPKTINFO.s +++ b/libc/sysv/consts/IPV6_RECVPKTINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVPKTINFO 49 0 36 36 0 +.syscon ipv6 IPV6_RECVPKTINFO 49 0 36 36 36 0 diff --git a/libc/sysv/consts/IPV6_RECVRTHDR.s b/libc/sysv/consts/IPV6_RECVRTHDR.s index e6e3e442a..b6fd9d4c5 100644 --- a/libc/sysv/consts/IPV6_RECVRTHDR.s +++ b/libc/sysv/consts/IPV6_RECVRTHDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVRTHDR 56 0 38 38 38 +.syscon ipv6 IPV6_RECVRTHDR 56 0 38 38 38 38 diff --git a/libc/sysv/consts/IPV6_RECVTCLASS.s b/libc/sysv/consts/IPV6_RECVTCLASS.s index 0de82210e..3da29b8be 100644 --- a/libc/sysv/consts/IPV6_RECVTCLASS.s +++ b/libc/sysv/consts/IPV6_RECVTCLASS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RECVTCLASS 66 35 57 57 40 +.syscon ipv6 IPV6_RECVTCLASS 66 35 57 57 57 40 diff --git a/libc/sysv/consts/IPV6_ROUTER_ALERT.s b/libc/sysv/consts/IPV6_ROUTER_ALERT.s index bc67a2eb4..29f674179 100644 --- a/libc/sysv/consts/IPV6_ROUTER_ALERT.s +++ b/libc/sysv/consts/IPV6_ROUTER_ALERT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_ROUTER_ALERT 22 0 0 0 0 +.syscon ipv6 IPV6_ROUTER_ALERT 22 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_RTHDR.s b/libc/sysv/consts/IPV6_RTHDR.s index 56d3bf894..69e862c45 100644 --- a/libc/sysv/consts/IPV6_RTHDR.s +++ b/libc/sysv/consts/IPV6_RTHDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RTHDR 57 0 51 51 0x20 +.syscon ipv6 IPV6_RTHDR 57 0 51 51 51 0x20 diff --git a/libc/sysv/consts/IPV6_RTHDRDSTOPTS.s b/libc/sysv/consts/IPV6_RTHDRDSTOPTS.s index e3a6b4e20..d3fdd783f 100644 --- a/libc/sysv/consts/IPV6_RTHDRDSTOPTS.s +++ b/libc/sysv/consts/IPV6_RTHDRDSTOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RTHDRDSTOPTS 55 0 35 35 0 +.syscon ipv6 IPV6_RTHDRDSTOPTS 55 0 35 35 35 0 diff --git a/libc/sysv/consts/IPV6_RTHDR_LOOSE.s b/libc/sysv/consts/IPV6_RTHDR_LOOSE.s index 5adf2f09b..74371c0ff 100644 --- a/libc/sysv/consts/IPV6_RTHDR_LOOSE.s +++ b/libc/sysv/consts/IPV6_RTHDR_LOOSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RTHDR_LOOSE 0 0 0 0 0 +.syscon ipv6 IPV6_RTHDR_LOOSE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_RTHDR_STRICT.s b/libc/sysv/consts/IPV6_RTHDR_STRICT.s index e510b407f..8d521a75d 100644 --- a/libc/sysv/consts/IPV6_RTHDR_STRICT.s +++ b/libc/sysv/consts/IPV6_RTHDR_STRICT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RTHDR_STRICT 1 1 1 0 0 +.syscon ipv6 IPV6_RTHDR_STRICT 1 1 1 0 0 0 diff --git a/libc/sysv/consts/IPV6_RTHDR_TYPE_0.s b/libc/sysv/consts/IPV6_RTHDR_TYPE_0.s index 4f15a3a4d..226c2c76b 100644 --- a/libc/sysv/consts/IPV6_RTHDR_TYPE_0.s +++ b/libc/sysv/consts/IPV6_RTHDR_TYPE_0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RTHDR_TYPE_0 0 0 0 0 0 +.syscon ipv6 IPV6_RTHDR_TYPE_0 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_RXDSTOPTS.s b/libc/sysv/consts/IPV6_RXDSTOPTS.s index b599b7294..04d427613 100644 --- a/libc/sysv/consts/IPV6_RXDSTOPTS.s +++ b/libc/sysv/consts/IPV6_RXDSTOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RXDSTOPTS 59 0 0 0 0 +.syscon ipv6 IPV6_RXDSTOPTS 59 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_RXHOPOPTS.s b/libc/sysv/consts/IPV6_RXHOPOPTS.s index 5ca6eca53..6df028da7 100644 --- a/libc/sysv/consts/IPV6_RXHOPOPTS.s +++ b/libc/sysv/consts/IPV6_RXHOPOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_RXHOPOPTS 54 0 0 0 0 +.syscon ipv6 IPV6_RXHOPOPTS 54 0 0 0 0 0 diff --git a/libc/sysv/consts/IPV6_TCLASS.s b/libc/sysv/consts/IPV6_TCLASS.s index 0a945582f..eb28cc35d 100644 --- a/libc/sysv/consts/IPV6_TCLASS.s +++ b/libc/sysv/consts/IPV6_TCLASS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_TCLASS 67 36 61 61 39 +.syscon ipv6 IPV6_TCLASS 67 36 61 61 61 39 diff --git a/libc/sysv/consts/IPV6_UNICAST_HOPS.s b/libc/sysv/consts/IPV6_UNICAST_HOPS.s index ef64a305e..d4e3afc76 100644 --- a/libc/sysv/consts/IPV6_UNICAST_HOPS.s +++ b/libc/sysv/consts/IPV6_UNICAST_HOPS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_UNICAST_HOPS 0x10 4 4 4 4 +.syscon ipv6 IPV6_UNICAST_HOPS 0x10 4 4 4 4 4 diff --git a/libc/sysv/consts/IPV6_V6ONLY.s b/libc/sysv/consts/IPV6_V6ONLY.s index a221005c1..d17b0e0a9 100644 --- a/libc/sysv/consts/IPV6_V6ONLY.s +++ b/libc/sysv/consts/IPV6_V6ONLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_V6ONLY 26 27 27 27 27 +.syscon ipv6 IPV6_V6ONLY 26 27 27 27 27 27 diff --git a/libc/sysv/consts/IPV6_XFRM_POLICY.s b/libc/sysv/consts/IPV6_XFRM_POLICY.s index ba3677c75..801144af6 100644 --- a/libc/sysv/consts/IPV6_XFRM_POLICY.s +++ b/libc/sysv/consts/IPV6_XFRM_POLICY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ipv6 IPV6_XFRM_POLICY 35 0 0 0 0 +.syscon ipv6 IPV6_XFRM_POLICY 35 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_ADD_MEMBERSHIP.s b/libc/sysv/consts/IP_ADD_MEMBERSHIP.s index 21efd9edc..b1c42b9fd 100644 --- a/libc/sysv/consts/IP_ADD_MEMBERSHIP.s +++ b/libc/sysv/consts/IP_ADD_MEMBERSHIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_ADD_MEMBERSHIP 35 12 12 12 0 +.syscon ip IP_ADD_MEMBERSHIP 35 12 12 12 12 0 diff --git a/libc/sysv/consts/IP_ADD_SOURCE_MEMBERSHIP.s b/libc/sysv/consts/IP_ADD_SOURCE_MEMBERSHIP.s index 8f7277d8a..05429d1d0 100644 --- a/libc/sysv/consts/IP_ADD_SOURCE_MEMBERSHIP.s +++ b/libc/sysv/consts/IP_ADD_SOURCE_MEMBERSHIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_ADD_SOURCE_MEMBERSHIP 39 70 70 0 15 +.syscon ip IP_ADD_SOURCE_MEMBERSHIP 39 70 70 0 0 15 diff --git a/libc/sysv/consts/IP_BIND_ADDRESS_NO_PORT.s b/libc/sysv/consts/IP_BIND_ADDRESS_NO_PORT.s index da2327bfc..65b2f553a 100644 --- a/libc/sysv/consts/IP_BIND_ADDRESS_NO_PORT.s +++ b/libc/sysv/consts/IP_BIND_ADDRESS_NO_PORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_BIND_ADDRESS_NO_PORT 24 0 0 0 0 +.syscon ip IP_BIND_ADDRESS_NO_PORT 24 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_BLOCK_SOURCE.s b/libc/sysv/consts/IP_BLOCK_SOURCE.s index 10a2ca250..d0dd76afb 100644 --- a/libc/sysv/consts/IP_BLOCK_SOURCE.s +++ b/libc/sysv/consts/IP_BLOCK_SOURCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_BLOCK_SOURCE 38 72 72 0 17 +.syscon ip IP_BLOCK_SOURCE 38 72 72 0 0 17 diff --git a/libc/sysv/consts/IP_CHECKSUM.s b/libc/sysv/consts/IP_CHECKSUM.s index 0da729464..235e5bb48 100644 --- a/libc/sysv/consts/IP_CHECKSUM.s +++ b/libc/sysv/consts/IP_CHECKSUM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_CHECKSUM 23 0 0 0 0 +.syscon ip IP_CHECKSUM 23 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_DEFAULT_MULTICAST_LOOP.s b/libc/sysv/consts/IP_DEFAULT_MULTICAST_LOOP.s index a38b731f9..5bd31f7c8 100644 --- a/libc/sysv/consts/IP_DEFAULT_MULTICAST_LOOP.s +++ b/libc/sysv/consts/IP_DEFAULT_MULTICAST_LOOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_DEFAULT_MULTICAST_LOOP 1 1 1 1 1 +.syscon ip IP_DEFAULT_MULTICAST_LOOP 1 1 1 1 1 1 diff --git a/libc/sysv/consts/IP_DEFAULT_MULTICAST_TTL.s b/libc/sysv/consts/IP_DEFAULT_MULTICAST_TTL.s index 8308b430e..a4e0fa858 100644 --- a/libc/sysv/consts/IP_DEFAULT_MULTICAST_TTL.s +++ b/libc/sysv/consts/IP_DEFAULT_MULTICAST_TTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_DEFAULT_MULTICAST_TTL 1 1 1 1 1 +.syscon ip IP_DEFAULT_MULTICAST_TTL 1 1 1 1 1 1 diff --git a/libc/sysv/consts/IP_DROP_MEMBERSHIP.s b/libc/sysv/consts/IP_DROP_MEMBERSHIP.s index a7b6aad6e..36ae686e8 100644 --- a/libc/sysv/consts/IP_DROP_MEMBERSHIP.s +++ b/libc/sysv/consts/IP_DROP_MEMBERSHIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_DROP_MEMBERSHIP 36 13 13 13 0 +.syscon ip IP_DROP_MEMBERSHIP 36 13 13 13 13 0 diff --git a/libc/sysv/consts/IP_DROP_SOURCE_MEMBERSHIP.s b/libc/sysv/consts/IP_DROP_SOURCE_MEMBERSHIP.s index 5ea733b39..f023d3840 100644 --- a/libc/sysv/consts/IP_DROP_SOURCE_MEMBERSHIP.s +++ b/libc/sysv/consts/IP_DROP_SOURCE_MEMBERSHIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_DROP_SOURCE_MEMBERSHIP 40 71 71 0 0x10 +.syscon ip IP_DROP_SOURCE_MEMBERSHIP 40 71 71 0 0 0x10 diff --git a/libc/sysv/consts/IP_FREEBIND.s b/libc/sysv/consts/IP_FREEBIND.s index 7a26cda2c..f139276fe 100644 --- a/libc/sysv/consts/IP_FREEBIND.s +++ b/libc/sysv/consts/IP_FREEBIND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_FREEBIND 15 0 0 0 0 +.syscon ip IP_FREEBIND 15 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_HDRINCL.s b/libc/sysv/consts/IP_HDRINCL.s index 252eb82a5..35e431120 100644 --- a/libc/sysv/consts/IP_HDRINCL.s +++ b/libc/sysv/consts/IP_HDRINCL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_HDRINCL 3 2 2 2 2 +.syscon ip IP_HDRINCL 3 2 2 2 2 2 diff --git a/libc/sysv/consts/IP_IPSEC_POLICY.s b/libc/sysv/consts/IP_IPSEC_POLICY.s index eb9f945b4..09c06d96a 100644 --- a/libc/sysv/consts/IP_IPSEC_POLICY.s +++ b/libc/sysv/consts/IP_IPSEC_POLICY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_IPSEC_POLICY 0x10 21 21 0 0 +.syscon ip IP_IPSEC_POLICY 0x10 21 21 0 0 0 diff --git a/libc/sysv/consts/IP_MAX_MEMBERSHIPS.s b/libc/sysv/consts/IP_MAX_MEMBERSHIPS.s index 836d7a627..7ce7ae985 100644 --- a/libc/sysv/consts/IP_MAX_MEMBERSHIPS.s +++ b/libc/sysv/consts/IP_MAX_MEMBERSHIPS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MAX_MEMBERSHIPS 20 0x0fff 0x0fff 0x0fff 20 +.syscon ip IP_MAX_MEMBERSHIPS 20 0x0fff 0x0fff 0x0fff 0x0fff 20 diff --git a/libc/sysv/consts/IP_MINTTL.s b/libc/sysv/consts/IP_MINTTL.s index 2d9b27ac3..226a443d2 100644 --- a/libc/sysv/consts/IP_MINTTL.s +++ b/libc/sysv/consts/IP_MINTTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MINTTL 21 0 66 0x20 0 +.syscon ip IP_MINTTL 21 0 66 0x20 0x20 0 diff --git a/libc/sysv/consts/IP_MSFILTER.s b/libc/sysv/consts/IP_MSFILTER.s index bb8a60280..3336f4dd1 100644 --- a/libc/sysv/consts/IP_MSFILTER.s +++ b/libc/sysv/consts/IP_MSFILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MSFILTER 41 74 74 0 0 +.syscon ip IP_MSFILTER 41 74 74 0 0 0 diff --git a/libc/sysv/consts/IP_MTU.s b/libc/sysv/consts/IP_MTU.s index d21b914ab..393c43b55 100644 --- a/libc/sysv/consts/IP_MTU.s +++ b/libc/sysv/consts/IP_MTU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MTU 14 0 0 0 73 +.syscon ip IP_MTU 14 0 0 0 0 73 diff --git a/libc/sysv/consts/IP_MTU_DISCOVER.s b/libc/sysv/consts/IP_MTU_DISCOVER.s index 0c718584f..b24db0f06 100644 --- a/libc/sysv/consts/IP_MTU_DISCOVER.s +++ b/libc/sysv/consts/IP_MTU_DISCOVER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MTU_DISCOVER 10 0 0 0 71 +.syscon ip IP_MTU_DISCOVER 10 0 0 0 0 71 diff --git a/libc/sysv/consts/IP_MULTICAST_ALL.s b/libc/sysv/consts/IP_MULTICAST_ALL.s index 3fbcfba77..f64d854d8 100644 --- a/libc/sysv/consts/IP_MULTICAST_ALL.s +++ b/libc/sysv/consts/IP_MULTICAST_ALL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MULTICAST_ALL 49 0 0 0 0 +.syscon ip IP_MULTICAST_ALL 49 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_MULTICAST_IF.s b/libc/sysv/consts/IP_MULTICAST_IF.s index 270498418..56412c961 100644 --- a/libc/sysv/consts/IP_MULTICAST_IF.s +++ b/libc/sysv/consts/IP_MULTICAST_IF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MULTICAST_IF 0x20 9 9 9 0 +.syscon ip IP_MULTICAST_IF 0x20 9 9 9 9 0 diff --git a/libc/sysv/consts/IP_MULTICAST_LOOP.s b/libc/sysv/consts/IP_MULTICAST_LOOP.s index 6aa1d0a32..74c2a9623 100644 --- a/libc/sysv/consts/IP_MULTICAST_LOOP.s +++ b/libc/sysv/consts/IP_MULTICAST_LOOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MULTICAST_LOOP 34 11 11 11 0 +.syscon ip IP_MULTICAST_LOOP 34 11 11 11 11 0 diff --git a/libc/sysv/consts/IP_MULTICAST_TTL.s b/libc/sysv/consts/IP_MULTICAST_TTL.s index dc690e5f2..742cfe17c 100644 --- a/libc/sysv/consts/IP_MULTICAST_TTL.s +++ b/libc/sysv/consts/IP_MULTICAST_TTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_MULTICAST_TTL 33 10 10 10 0 +.syscon ip IP_MULTICAST_TTL 33 10 10 10 10 0 diff --git a/libc/sysv/consts/IP_NODEFRAG.s b/libc/sysv/consts/IP_NODEFRAG.s index 5548929fe..b337d7fec 100644 --- a/libc/sysv/consts/IP_NODEFRAG.s +++ b/libc/sysv/consts/IP_NODEFRAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_NODEFRAG 22 0 0 0 0 +.syscon ip IP_NODEFRAG 22 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_OPTIONS.s b/libc/sysv/consts/IP_OPTIONS.s index 1a6a159c9..e391b67c3 100644 --- a/libc/sysv/consts/IP_OPTIONS.s +++ b/libc/sysv/consts/IP_OPTIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_OPTIONS 4 1 1 1 1 +.syscon ip IP_OPTIONS 4 1 1 1 1 1 diff --git a/libc/sysv/consts/IP_ORIGDSTADDR.s b/libc/sysv/consts/IP_ORIGDSTADDR.s index 3ef8356d2..c64b78a2f 100644 --- a/libc/sysv/consts/IP_ORIGDSTADDR.s +++ b/libc/sysv/consts/IP_ORIGDSTADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_ORIGDSTADDR 20 0 27 0 0 +.syscon ip IP_ORIGDSTADDR 20 0 27 0 0 0 diff --git a/libc/sysv/consts/IP_PASSSEC.s b/libc/sysv/consts/IP_PASSSEC.s index 19f2f4fd6..44cbf6243 100644 --- a/libc/sysv/consts/IP_PASSSEC.s +++ b/libc/sysv/consts/IP_PASSSEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PASSSEC 18 0 0 0 0 +.syscon ip IP_PASSSEC 18 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PKTINFO.s b/libc/sysv/consts/IP_PKTINFO.s index eb83872a9..c534a3143 100644 --- a/libc/sysv/consts/IP_PKTINFO.s +++ b/libc/sysv/consts/IP_PKTINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PKTINFO 8 26 0 0 19 +.syscon ip IP_PKTINFO 8 26 0 0 0 19 diff --git a/libc/sysv/consts/IP_PKTOPTIONS.s b/libc/sysv/consts/IP_PKTOPTIONS.s index 7d39fe746..4a2846767 100644 --- a/libc/sysv/consts/IP_PKTOPTIONS.s +++ b/libc/sysv/consts/IP_PKTOPTIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PKTOPTIONS 9 0 0 0 0 +.syscon ip IP_PKTOPTIONS 9 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PMTUDISC.s b/libc/sysv/consts/IP_PMTUDISC.s index a5b037eed..c9ee63a20 100644 --- a/libc/sysv/consts/IP_PMTUDISC.s +++ b/libc/sysv/consts/IP_PMTUDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PMTUDISC 10 0 0 0 0 +.syscon ip IP_PMTUDISC 10 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PMTUDISC_DO.s b/libc/sysv/consts/IP_PMTUDISC_DO.s index 0fce070fb..b0af56be0 100644 --- a/libc/sysv/consts/IP_PMTUDISC_DO.s +++ b/libc/sysv/consts/IP_PMTUDISC_DO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PMTUDISC_DO 2 0 0 0 0 +.syscon ip IP_PMTUDISC_DO 2 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PMTUDISC_DONT.s b/libc/sysv/consts/IP_PMTUDISC_DONT.s index b31562d2b..36e121529 100644 --- a/libc/sysv/consts/IP_PMTUDISC_DONT.s +++ b/libc/sysv/consts/IP_PMTUDISC_DONT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PMTUDISC_DONT 0 0 0 0 0 +.syscon ip IP_PMTUDISC_DONT 0 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PMTUDISC_INTERFACE.s b/libc/sysv/consts/IP_PMTUDISC_INTERFACE.s index 50ff25cdd..770a9c02a 100644 --- a/libc/sysv/consts/IP_PMTUDISC_INTERFACE.s +++ b/libc/sysv/consts/IP_PMTUDISC_INTERFACE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PMTUDISC_INTERFACE 4 0 0 0 0 +.syscon ip IP_PMTUDISC_INTERFACE 4 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PMTUDISC_OMIT.s b/libc/sysv/consts/IP_PMTUDISC_OMIT.s index 47ce295fc..542f8cb71 100644 --- a/libc/sysv/consts/IP_PMTUDISC_OMIT.s +++ b/libc/sysv/consts/IP_PMTUDISC_OMIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PMTUDISC_OMIT 5 0 0 0 0 +.syscon ip IP_PMTUDISC_OMIT 5 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PMTUDISC_PROBE.s b/libc/sysv/consts/IP_PMTUDISC_PROBE.s index 7a3a769f2..f74b61286 100644 --- a/libc/sysv/consts/IP_PMTUDISC_PROBE.s +++ b/libc/sysv/consts/IP_PMTUDISC_PROBE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PMTUDISC_PROBE 3 0 0 0 0 +.syscon ip IP_PMTUDISC_PROBE 3 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_PMTUDISC_WANT.s b/libc/sysv/consts/IP_PMTUDISC_WANT.s index 8908c7e11..099a05cc6 100644 --- a/libc/sysv/consts/IP_PMTUDISC_WANT.s +++ b/libc/sysv/consts/IP_PMTUDISC_WANT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_PMTUDISC_WANT 1 0 0 0 0 +.syscon ip IP_PMTUDISC_WANT 1 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_RECVERR.s b/libc/sysv/consts/IP_RECVERR.s index 3951f802b..b12c48b57 100644 --- a/libc/sysv/consts/IP_RECVERR.s +++ b/libc/sysv/consts/IP_RECVERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_RECVERR 11 0 0 0 75 +.syscon ip IP_RECVERR 11 0 0 0 0 75 diff --git a/libc/sysv/consts/IP_RECVOPTS.s b/libc/sysv/consts/IP_RECVOPTS.s index 522bf739a..819d56856 100644 --- a/libc/sysv/consts/IP_RECVOPTS.s +++ b/libc/sysv/consts/IP_RECVOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_RECVOPTS 6 5 5 5 0 +.syscon ip IP_RECVOPTS 6 5 5 5 5 0 diff --git a/libc/sysv/consts/IP_RECVORIGDSTADDR.s b/libc/sysv/consts/IP_RECVORIGDSTADDR.s index d821453ff..9f3624757 100644 --- a/libc/sysv/consts/IP_RECVORIGDSTADDR.s +++ b/libc/sysv/consts/IP_RECVORIGDSTADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_RECVORIGDSTADDR 20 0 27 0 0 +.syscon ip IP_RECVORIGDSTADDR 20 0 27 0 0 0 diff --git a/libc/sysv/consts/IP_RECVRETOPTS.s b/libc/sysv/consts/IP_RECVRETOPTS.s index e18697f2b..dff67228a 100644 --- a/libc/sysv/consts/IP_RECVRETOPTS.s +++ b/libc/sysv/consts/IP_RECVRETOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_RECVRETOPTS 7 6 6 6 0 +.syscon ip IP_RECVRETOPTS 7 6 6 6 6 0 diff --git a/libc/sysv/consts/IP_RECVTOS.s b/libc/sysv/consts/IP_RECVTOS.s index f293ca079..4e3285810 100644 --- a/libc/sysv/consts/IP_RECVTOS.s +++ b/libc/sysv/consts/IP_RECVTOS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_RECVTOS 13 0 68 0 40 +.syscon ip IP_RECVTOS 13 0 68 0 0 40 diff --git a/libc/sysv/consts/IP_RECVTTL.s b/libc/sysv/consts/IP_RECVTTL.s index 973629338..765dfc211 100644 --- a/libc/sysv/consts/IP_RECVTTL.s +++ b/libc/sysv/consts/IP_RECVTTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_RECVTTL 12 24 65 31 21 +.syscon ip IP_RECVTTL 12 24 65 31 31 21 diff --git a/libc/sysv/consts/IP_RETOPTS.s b/libc/sysv/consts/IP_RETOPTS.s index 8c2b41a6a..12a8626d0 100644 --- a/libc/sysv/consts/IP_RETOPTS.s +++ b/libc/sysv/consts/IP_RETOPTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_RETOPTS 7 8 8 8 0 +.syscon ip IP_RETOPTS 7 8 8 8 8 0 diff --git a/libc/sysv/consts/IP_ROUTER_ALERT.s b/libc/sysv/consts/IP_ROUTER_ALERT.s index df0ee5e2e..78ea36d4c 100644 --- a/libc/sysv/consts/IP_ROUTER_ALERT.s +++ b/libc/sysv/consts/IP_ROUTER_ALERT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_ROUTER_ALERT 5 0 0 0 0 +.syscon ip IP_ROUTER_ALERT 5 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_TOS.s b/libc/sysv/consts/IP_TOS.s index 82d41d2ec..d3906132d 100644 --- a/libc/sysv/consts/IP_TOS.s +++ b/libc/sysv/consts/IP_TOS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_TOS 1 3 3 3 8 +.syscon ip IP_TOS 1 3 3 3 3 8 diff --git a/libc/sysv/consts/IP_TRANSPARENT.s b/libc/sysv/consts/IP_TRANSPARENT.s index d5735d819..9def2d8d4 100644 --- a/libc/sysv/consts/IP_TRANSPARENT.s +++ b/libc/sysv/consts/IP_TRANSPARENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_TRANSPARENT 19 0 0 0 0 +.syscon ip IP_TRANSPARENT 19 0 0 0 0 0 diff --git a/libc/sysv/consts/IP_TTL.s b/libc/sysv/consts/IP_TTL.s index 51c6be05d..41eed8d2d 100644 --- a/libc/sysv/consts/IP_TTL.s +++ b/libc/sysv/consts/IP_TTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_TTL 2 4 4 4 0 +.syscon ip IP_TTL 2 4 4 4 4 0 diff --git a/libc/sysv/consts/IP_UNBLOCK_SOURCE.s b/libc/sysv/consts/IP_UNBLOCK_SOURCE.s index 095428900..5b6a9263f 100644 --- a/libc/sysv/consts/IP_UNBLOCK_SOURCE.s +++ b/libc/sysv/consts/IP_UNBLOCK_SOURCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_UNBLOCK_SOURCE 37 73 73 0 18 +.syscon ip IP_UNBLOCK_SOURCE 37 73 73 0 0 18 diff --git a/libc/sysv/consts/IP_UNICAST_IF.s b/libc/sysv/consts/IP_UNICAST_IF.s index dd6b70400..cb8ab9407 100644 --- a/libc/sysv/consts/IP_UNICAST_IF.s +++ b/libc/sysv/consts/IP_UNICAST_IF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_UNICAST_IF 50 0 0 0 31 +.syscon ip IP_UNICAST_IF 50 0 0 0 0 31 diff --git a/libc/sysv/consts/IP_XFRM_POLICY.s b/libc/sysv/consts/IP_XFRM_POLICY.s index 1549f38ce..2afdb6b54 100644 --- a/libc/sysv/consts/IP_XFRM_POLICY.s +++ b/libc/sysv/consts/IP_XFRM_POLICY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ip IP_XFRM_POLICY 17 0 0 0 0 +.syscon ip IP_XFRM_POLICY 17 0 0 0 0 0 diff --git a/libc/sysv/consts/ISIG.s b/libc/sysv/consts/ISIG.s index 42e5cb349..9f2cf5362 100644 --- a/libc/sysv/consts/ISIG.s +++ b/libc/sysv/consts/ISIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ISIG 0b0000000000000001 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000000000001 +.syscon termios ISIG 0b0000000000000001 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000000000001 diff --git a/libc/sysv/consts/ISTRIP.s b/libc/sysv/consts/ISTRIP.s index 53965f288..91850d7cc 100644 --- a/libc/sysv/consts/ISTRIP.s +++ b/libc/sysv/consts/ISTRIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ISTRIP 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 +.syscon termios ISTRIP 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 diff --git a/libc/sysv/consts/ITIMER_PROF.s b/libc/sysv/consts/ITIMER_PROF.s index b30b66aab..ccf9585ee 100644 --- a/libc/sysv/consts/ITIMER_PROF.s +++ b/libc/sysv/consts/ITIMER_PROF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ITIMER_PROF 2 2 2 2 2 +.syscon misc ITIMER_PROF 2 2 2 2 2 2 diff --git a/libc/sysv/consts/ITIMER_REAL.s b/libc/sysv/consts/ITIMER_REAL.s index 4938e759f..a903ea931 100644 --- a/libc/sysv/consts/ITIMER_REAL.s +++ b/libc/sysv/consts/ITIMER_REAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ITIMER_REAL 0 0 0 0 0 +.syscon misc ITIMER_REAL 0 0 0 0 0 0 diff --git a/libc/sysv/consts/ITIMER_VIRTUAL.s b/libc/sysv/consts/ITIMER_VIRTUAL.s index 761c7f5d7..8190b1f61 100644 --- a/libc/sysv/consts/ITIMER_VIRTUAL.s +++ b/libc/sysv/consts/ITIMER_VIRTUAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ITIMER_VIRTUAL 1 1 1 1 1 +.syscon misc ITIMER_VIRTUAL 1 1 1 1 1 1 diff --git a/libc/sysv/consts/IUCLC.s b/libc/sysv/consts/IUCLC.s index e41be21ea..0cef477b4 100644 --- a/libc/sysv/consts/IUCLC.s +++ b/libc/sysv/consts/IUCLC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IUCLC 0b0000001000000000 0 0 0b0001000000000000 0b0000001000000000 +.syscon termios IUCLC 0b0000001000000000 0 0 0b0001000000000000 0b0001000000000000 0b0000001000000000 diff --git a/libc/sysv/consts/IUTF8.s b/libc/sysv/consts/IUTF8.s index 3dfd83e83..3a2c98fe1 100644 --- a/libc/sysv/consts/IUTF8.s +++ b/libc/sysv/consts/IUTF8.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IUTF8 0b0100000000000000 0b0100000000000000 0 0 0b0100000000000000 +.syscon termios IUTF8 0b0100000000000000 0b0100000000000000 0 0 0 0b0100000000000000 diff --git a/libc/sysv/consts/IXANY.s b/libc/sysv/consts/IXANY.s index 9b09d451a..0449ac109 100644 --- a/libc/sysv/consts/IXANY.s +++ b/libc/sysv/consts/IXANY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IXANY 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 +.syscon termios IXANY 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 0b0000100000000000 diff --git a/libc/sysv/consts/IXOFF.s b/libc/sysv/consts/IXOFF.s index 923d31b40..1b65723a7 100644 --- a/libc/sysv/consts/IXOFF.s +++ b/libc/sysv/consts/IXOFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IXOFF 0b0001000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0001000000000000 +.syscon termios IXOFF 0b0001000000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0000010000000000 0b0001000000000000 diff --git a/libc/sysv/consts/IXON.s b/libc/sysv/consts/IXON.s index 987b2fc79..461099b4e 100644 --- a/libc/sysv/consts/IXON.s +++ b/libc/sysv/consts/IXON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios IXON 0b0000010000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000010000000000 +.syscon termios IXON 0b0000010000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000001000000000 0b0000010000000000 diff --git a/libc/sysv/consts/LC_ALL.s b/libc/sysv/consts/LC_ALL.s index a7c02de1f..9039c184d 100644 --- a/libc/sysv/consts/LC_ALL.s +++ b/libc/sysv/consts/LC_ALL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_ALL 6 0 0 0 0 +.syscon misc LC_ALL 6 0 0 0 0 0 diff --git a/libc/sysv/consts/LC_ALL_MASK.s b/libc/sysv/consts/LC_ALL_MASK.s index d71f7912d..61d502fba 100644 --- a/libc/sysv/consts/LC_ALL_MASK.s +++ b/libc/sysv/consts/LC_ALL_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_ALL_MASK 0x1fbf 0 63 126 0 +.syscon misc LC_ALL_MASK 0x1fbf 0 63 126 126 0 diff --git a/libc/sysv/consts/LC_COLLATE.s b/libc/sysv/consts/LC_COLLATE.s index 3a0b1dd2d..5b131cce6 100644 --- a/libc/sysv/consts/LC_COLLATE.s +++ b/libc/sysv/consts/LC_COLLATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_COLLATE 3 1 1 1 0 +.syscon misc LC_COLLATE 3 1 1 1 1 0 diff --git a/libc/sysv/consts/LC_COLLATE_MASK.s b/libc/sysv/consts/LC_COLLATE_MASK.s index a4a461783..3fd71bde6 100644 --- a/libc/sysv/consts/LC_COLLATE_MASK.s +++ b/libc/sysv/consts/LC_COLLATE_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_COLLATE_MASK 8 0 1 2 0 +.syscon misc LC_COLLATE_MASK 8 0 1 2 2 0 diff --git a/libc/sysv/consts/LC_CTYPE.s b/libc/sysv/consts/LC_CTYPE.s index 6e8fe4f5c..670bcf36a 100644 --- a/libc/sysv/consts/LC_CTYPE.s +++ b/libc/sysv/consts/LC_CTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_CTYPE 0 2 2 2 0 +.syscon misc LC_CTYPE 0 2 2 2 2 0 diff --git a/libc/sysv/consts/LC_CTYPE_MASK.s b/libc/sysv/consts/LC_CTYPE_MASK.s index 44cfb4c0e..8c0777494 100644 --- a/libc/sysv/consts/LC_CTYPE_MASK.s +++ b/libc/sysv/consts/LC_CTYPE_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_CTYPE_MASK 1 0 2 4 0 +.syscon misc LC_CTYPE_MASK 1 0 2 4 4 0 diff --git a/libc/sysv/consts/LC_MESSAGES.s b/libc/sysv/consts/LC_MESSAGES.s index bd7445d2a..d4bed10df 100644 --- a/libc/sysv/consts/LC_MESSAGES.s +++ b/libc/sysv/consts/LC_MESSAGES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_MESSAGES 5 6 6 6 0 +.syscon misc LC_MESSAGES 5 6 6 6 6 0 diff --git a/libc/sysv/consts/LC_MESSAGES_MASK.s b/libc/sysv/consts/LC_MESSAGES_MASK.s index c34f4fe7c..caca7f449 100644 --- a/libc/sysv/consts/LC_MESSAGES_MASK.s +++ b/libc/sysv/consts/LC_MESSAGES_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_MESSAGES_MASK 0x20 0 0x20 0x40 0 +.syscon misc LC_MESSAGES_MASK 0x20 0 0x20 0x40 0x40 0 diff --git a/libc/sysv/consts/LC_MONETARY.s b/libc/sysv/consts/LC_MONETARY.s index fd7e91345..225a0b772 100644 --- a/libc/sysv/consts/LC_MONETARY.s +++ b/libc/sysv/consts/LC_MONETARY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_MONETARY 4 3 3 3 0 +.syscon misc LC_MONETARY 4 3 3 3 3 0 diff --git a/libc/sysv/consts/LC_MONETARY_MASK.s b/libc/sysv/consts/LC_MONETARY_MASK.s index 2aec4613a..7061ead1c 100644 --- a/libc/sysv/consts/LC_MONETARY_MASK.s +++ b/libc/sysv/consts/LC_MONETARY_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_MONETARY_MASK 0x10 0 4 8 0 +.syscon misc LC_MONETARY_MASK 0x10 0 4 8 8 0 diff --git a/libc/sysv/consts/LC_NUMERIC.s b/libc/sysv/consts/LC_NUMERIC.s index 74296d5b9..3f8722074 100644 --- a/libc/sysv/consts/LC_NUMERIC.s +++ b/libc/sysv/consts/LC_NUMERIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_NUMERIC 1 4 4 4 0 +.syscon misc LC_NUMERIC 1 4 4 4 4 0 diff --git a/libc/sysv/consts/LC_NUMERIC_MASK.s b/libc/sysv/consts/LC_NUMERIC_MASK.s index 4ce30676c..ce7619d37 100644 --- a/libc/sysv/consts/LC_NUMERIC_MASK.s +++ b/libc/sysv/consts/LC_NUMERIC_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_NUMERIC_MASK 2 0 8 0x10 0 +.syscon misc LC_NUMERIC_MASK 2 0 8 0x10 0x10 0 diff --git a/libc/sysv/consts/LC_TIME.s b/libc/sysv/consts/LC_TIME.s index b16d86f30..97896a342 100644 --- a/libc/sysv/consts/LC_TIME.s +++ b/libc/sysv/consts/LC_TIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_TIME 2 5 5 5 0 +.syscon misc LC_TIME 2 5 5 5 5 0 diff --git a/libc/sysv/consts/LC_TIME_MASK.s b/libc/sysv/consts/LC_TIME_MASK.s index 87b9fd990..6e59c4f56 100644 --- a/libc/sysv/consts/LC_TIME_MASK.s +++ b/libc/sysv/consts/LC_TIME_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LC_TIME_MASK 4 0 0x10 0x20 0 +.syscon misc LC_TIME_MASK 4 0 0x10 0x20 0x20 0 diff --git a/libc/sysv/consts/LINE_MAX.s b/libc/sysv/consts/LINE_MAX.s index 00ce1187d..ce18a2a59 100644 --- a/libc/sysv/consts/LINE_MAX.s +++ b/libc/sysv/consts/LINE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LINE_MAX 0x0800 0x0800 0x0800 0x0800 0 +.syscon misc LINE_MAX 0x0800 0x0800 0x0800 0x0800 0x0800 0 diff --git a/libc/sysv/consts/LINKED_CMD_COMPLETE.s b/libc/sysv/consts/LINKED_CMD_COMPLETE.s index 47fa83cb5..8a29fdfeb 100644 --- a/libc/sysv/consts/LINKED_CMD_COMPLETE.s +++ b/libc/sysv/consts/LINKED_CMD_COMPLETE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LINKED_CMD_COMPLETE 10 0 0 0 0 +.syscon misc LINKED_CMD_COMPLETE 10 0 0 0 0 0 diff --git a/libc/sysv/consts/LINKED_FLG_CMD_COMPLETE.s b/libc/sysv/consts/LINKED_FLG_CMD_COMPLETE.s index a4c80b037..a2ff8fee1 100644 --- a/libc/sysv/consts/LINKED_FLG_CMD_COMPLETE.s +++ b/libc/sysv/consts/LINKED_FLG_CMD_COMPLETE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LINKED_FLG_CMD_COMPLETE 11 0 0 0 0 +.syscon misc LINKED_FLG_CMD_COMPLETE 11 0 0 0 0 0 diff --git a/libc/sysv/consts/LIO_NOP.s b/libc/sysv/consts/LIO_NOP.s index c729a3bb0..a5df1ac01 100644 --- a/libc/sysv/consts/LIO_NOP.s +++ b/libc/sysv/consts/LIO_NOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LIO_NOP 2 0 0 0 0 +.syscon misc LIO_NOP 2 0 0 0 0 0 diff --git a/libc/sysv/consts/LIO_NOWAIT.s b/libc/sysv/consts/LIO_NOWAIT.s index aa3f7c8ca..93d339a26 100644 --- a/libc/sysv/consts/LIO_NOWAIT.s +++ b/libc/sysv/consts/LIO_NOWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LIO_NOWAIT 1 1 0 0 0 +.syscon misc LIO_NOWAIT 1 1 0 0 0 0 diff --git a/libc/sysv/consts/LIO_READ.s b/libc/sysv/consts/LIO_READ.s index 966f2127c..13b2dae45 100644 --- a/libc/sysv/consts/LIO_READ.s +++ b/libc/sysv/consts/LIO_READ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LIO_READ 0 1 2 0 0 +.syscon misc LIO_READ 0 1 2 0 0 0 diff --git a/libc/sysv/consts/LIO_WAIT.s b/libc/sysv/consts/LIO_WAIT.s index a21893aa4..ada02f2b2 100644 --- a/libc/sysv/consts/LIO_WAIT.s +++ b/libc/sysv/consts/LIO_WAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LIO_WAIT 0 2 1 0 0 +.syscon misc LIO_WAIT 0 2 1 0 0 0 diff --git a/libc/sysv/consts/LIO_WRITE.s b/libc/sysv/consts/LIO_WRITE.s index 5e70cd2ab..c591db456 100644 --- a/libc/sysv/consts/LIO_WRITE.s +++ b/libc/sysv/consts/LIO_WRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LIO_WRITE 1 2 1 0 0 +.syscon misc LIO_WRITE 1 2 1 0 0 0 diff --git a/libc/sysv/consts/LITTLE_ENDIAN.s b/libc/sysv/consts/LITTLE_ENDIAN.s index 45633723a..950e01e54 100644 --- a/libc/sysv/consts/LITTLE_ENDIAN.s +++ b/libc/sysv/consts/LITTLE_ENDIAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LITTLE_ENDIAN 0x04d2 0x04d2 0x04d2 0x04d2 0 +.syscon misc LITTLE_ENDIAN 0x04d2 0x04d2 0x04d2 0x04d2 0x04d2 0 diff --git a/libc/sysv/consts/LNKTYPE.s b/libc/sysv/consts/LNKTYPE.s index d6399fd5d..d6dafc451 100644 --- a/libc/sysv/consts/LNKTYPE.s +++ b/libc/sysv/consts/LNKTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LNKTYPE 49 49 49 49 0 +.syscon misc LNKTYPE 49 49 49 49 49 0 diff --git a/libc/sysv/consts/LOCK_EX.s b/libc/sysv/consts/LOCK_EX.s index 0fd29d055..d81552cce 100644 --- a/libc/sysv/consts/LOCK_EX.s +++ b/libc/sysv/consts/LOCK_EX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon lock LOCK_EX 2 2 2 2 2 +.syscon lock LOCK_EX 2 2 2 2 2 2 diff --git a/libc/sysv/consts/LOCK_NB.s b/libc/sysv/consts/LOCK_NB.s index b7c903fd3..6514c90ca 100644 --- a/libc/sysv/consts/LOCK_NB.s +++ b/libc/sysv/consts/LOCK_NB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon lock LOCK_NB 4 4 4 4 1 +.syscon lock LOCK_NB 4 4 4 4 4 1 diff --git a/libc/sysv/consts/LOCK_SH.s b/libc/sysv/consts/LOCK_SH.s index 0a9308f00..428e1baa4 100644 --- a/libc/sysv/consts/LOCK_SH.s +++ b/libc/sysv/consts/LOCK_SH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon lock LOCK_SH 1 1 1 1 0 +.syscon lock LOCK_SH 1 1 1 1 1 0 diff --git a/libc/sysv/consts/LOCK_UN.s b/libc/sysv/consts/LOCK_UN.s index e9aeb8ecb..e0d555d61 100644 --- a/libc/sysv/consts/LOCK_UN.s +++ b/libc/sysv/consts/LOCK_UN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon lock LOCK_UN 8 8 8 8 8 +.syscon lock LOCK_UN 8 8 8 8 8 8 diff --git a/libc/sysv/consts/LOCK_UNLOCK_CACHE.s b/libc/sysv/consts/LOCK_UNLOCK_CACHE.s index e5ba46692..3a882dae0 100644 --- a/libc/sysv/consts/LOCK_UNLOCK_CACHE.s +++ b/libc/sysv/consts/LOCK_UNLOCK_CACHE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon lock LOCK_UNLOCK_CACHE 54 0 0 0 0 +.syscon lock LOCK_UNLOCK_CACHE 54 0 0 0 0 0 diff --git a/libc/sysv/consts/LOGIN_NAME_MAX.s b/libc/sysv/consts/LOGIN_NAME_MAX.s index f3f3135c2..9157c7a34 100644 --- a/libc/sysv/consts/LOGIN_NAME_MAX.s +++ b/libc/sysv/consts/LOGIN_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LOGIN_NAME_MAX 0x0100 0 0 0x20 0 +.syscon misc LOGIN_NAME_MAX 0x0100 0 0 0x20 0x20 0 diff --git a/libc/sysv/consts/LOGIN_PROCESS.s b/libc/sysv/consts/LOGIN_PROCESS.s index 0ce32beca..36d8f2f6c 100644 --- a/libc/sysv/consts/LOGIN_PROCESS.s +++ b/libc/sysv/consts/LOGIN_PROCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc LOGIN_PROCESS 6 6 6 0 0 +.syscon misc LOGIN_PROCESS 6 6 6 0 0 0 diff --git a/libc/sysv/consts/LOG_ALERT.s b/libc/sysv/consts/LOG_ALERT.s index fc3b39d33..2446db582 100644 --- a/libc/sysv/consts/LOG_ALERT.s +++ b/libc/sysv/consts/LOG_ALERT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_ALERT 1 1 1 1 0 +.syscon log LOG_ALERT 1 1 1 1 1 0 diff --git a/libc/sysv/consts/LOG_AUTH.s b/libc/sysv/consts/LOG_AUTH.s index 7d2ec0ac9..f78a52b61 100644 --- a/libc/sysv/consts/LOG_AUTH.s +++ b/libc/sysv/consts/LOG_AUTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_AUTH 0x20 0x20 0x20 0x20 0 +.syscon log LOG_AUTH 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/LOG_CONS.s b/libc/sysv/consts/LOG_CONS.s index f0763054c..9f54261b7 100644 --- a/libc/sysv/consts/LOG_CONS.s +++ b/libc/sysv/consts/LOG_CONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_CONS 2 2 2 2 0 +.syscon log LOG_CONS 2 2 2 2 2 0 diff --git a/libc/sysv/consts/LOG_CRIT.s b/libc/sysv/consts/LOG_CRIT.s index d848003a9..ab5a7fbbd 100644 --- a/libc/sysv/consts/LOG_CRIT.s +++ b/libc/sysv/consts/LOG_CRIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_CRIT 2 2 2 2 0 +.syscon log LOG_CRIT 2 2 2 2 2 0 diff --git a/libc/sysv/consts/LOG_CRON.s b/libc/sysv/consts/LOG_CRON.s index d4c69b608..fef690e64 100644 --- a/libc/sysv/consts/LOG_CRON.s +++ b/libc/sysv/consts/LOG_CRON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_CRON 72 72 72 72 0 +.syscon log LOG_CRON 72 72 72 72 72 0 diff --git a/libc/sysv/consts/LOG_DAEMON.s b/libc/sysv/consts/LOG_DAEMON.s index 00558448d..402b70914 100644 --- a/libc/sysv/consts/LOG_DAEMON.s +++ b/libc/sysv/consts/LOG_DAEMON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_DAEMON 24 24 24 24 0 +.syscon log LOG_DAEMON 24 24 24 24 24 0 diff --git a/libc/sysv/consts/LOG_DEBUG.s b/libc/sysv/consts/LOG_DEBUG.s index e9a38b3da..c22d54926 100644 --- a/libc/sysv/consts/LOG_DEBUG.s +++ b/libc/sysv/consts/LOG_DEBUG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_DEBUG 7 7 7 7 0 +.syscon log LOG_DEBUG 7 7 7 7 7 0 diff --git a/libc/sysv/consts/LOG_EMERG.s b/libc/sysv/consts/LOG_EMERG.s index 2522b088e..5ca14dfe2 100644 --- a/libc/sysv/consts/LOG_EMERG.s +++ b/libc/sysv/consts/LOG_EMERG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_EMERG 0 0 0 0 0 +.syscon log LOG_EMERG 0 0 0 0 0 0 diff --git a/libc/sysv/consts/LOG_ERR.s b/libc/sysv/consts/LOG_ERR.s index 622047a20..392ade124 100644 --- a/libc/sysv/consts/LOG_ERR.s +++ b/libc/sysv/consts/LOG_ERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_ERR 3 3 3 3 0 +.syscon log LOG_ERR 3 3 3 3 3 0 diff --git a/libc/sysv/consts/LOG_FACMASK.s b/libc/sysv/consts/LOG_FACMASK.s index 4f680f0cd..97e69b722 100644 --- a/libc/sysv/consts/LOG_FACMASK.s +++ b/libc/sysv/consts/LOG_FACMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_FACMASK 0x03f8 0x03f8 0x03f8 0x03f8 0 +.syscon log LOG_FACMASK 0x03f8 0x03f8 0x03f8 0x03f8 0x03f8 0 diff --git a/libc/sysv/consts/LOG_INFO.s b/libc/sysv/consts/LOG_INFO.s index 21d61653a..a378a0dbb 100644 --- a/libc/sysv/consts/LOG_INFO.s +++ b/libc/sysv/consts/LOG_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_INFO 6 6 6 6 0 +.syscon log LOG_INFO 6 6 6 6 6 0 diff --git a/libc/sysv/consts/LOG_KERN.s b/libc/sysv/consts/LOG_KERN.s index ce91d5bd0..db630e46d 100644 --- a/libc/sysv/consts/LOG_KERN.s +++ b/libc/sysv/consts/LOG_KERN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_KERN 0 0 0 0 0 +.syscon log LOG_KERN 0 0 0 0 0 0 diff --git a/libc/sysv/consts/LOG_LOCAL0.s b/libc/sysv/consts/LOG_LOCAL0.s index 84d037b54..0127c9035 100644 --- a/libc/sysv/consts/LOG_LOCAL0.s +++ b/libc/sysv/consts/LOG_LOCAL0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL0 0x80 0x80 0x80 0x80 0 +.syscon log LOG_LOCAL0 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/LOG_LOCAL1.s b/libc/sysv/consts/LOG_LOCAL1.s index f48482a65..1fdd123e1 100644 --- a/libc/sysv/consts/LOG_LOCAL1.s +++ b/libc/sysv/consts/LOG_LOCAL1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL1 136 136 136 136 0 +.syscon log LOG_LOCAL1 136 136 136 136 136 0 diff --git a/libc/sysv/consts/LOG_LOCAL2.s b/libc/sysv/consts/LOG_LOCAL2.s index 6d90598ce..021acda9e 100644 --- a/libc/sysv/consts/LOG_LOCAL2.s +++ b/libc/sysv/consts/LOG_LOCAL2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL2 144 144 144 144 0 +.syscon log LOG_LOCAL2 144 144 144 144 144 0 diff --git a/libc/sysv/consts/LOG_LOCAL3.s b/libc/sysv/consts/LOG_LOCAL3.s index abaa9dd07..23056cae8 100644 --- a/libc/sysv/consts/LOG_LOCAL3.s +++ b/libc/sysv/consts/LOG_LOCAL3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL3 152 152 152 152 0 +.syscon log LOG_LOCAL3 152 152 152 152 152 0 diff --git a/libc/sysv/consts/LOG_LOCAL4.s b/libc/sysv/consts/LOG_LOCAL4.s index 6febf25b2..f559a50e3 100644 --- a/libc/sysv/consts/LOG_LOCAL4.s +++ b/libc/sysv/consts/LOG_LOCAL4.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL4 160 160 160 160 0 +.syscon log LOG_LOCAL4 160 160 160 160 160 0 diff --git a/libc/sysv/consts/LOG_LOCAL5.s b/libc/sysv/consts/LOG_LOCAL5.s index 0c3fbdff7..60b8b9035 100644 --- a/libc/sysv/consts/LOG_LOCAL5.s +++ b/libc/sysv/consts/LOG_LOCAL5.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL5 168 168 168 168 0 +.syscon log LOG_LOCAL5 168 168 168 168 168 0 diff --git a/libc/sysv/consts/LOG_LOCAL6.s b/libc/sysv/consts/LOG_LOCAL6.s index e80e9920a..c64f1ad17 100644 --- a/libc/sysv/consts/LOG_LOCAL6.s +++ b/libc/sysv/consts/LOG_LOCAL6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL6 176 176 176 176 0 +.syscon log LOG_LOCAL6 176 176 176 176 176 0 diff --git a/libc/sysv/consts/LOG_LOCAL7.s b/libc/sysv/consts/LOG_LOCAL7.s index 6917a4c79..cf20d0acf 100644 --- a/libc/sysv/consts/LOG_LOCAL7.s +++ b/libc/sysv/consts/LOG_LOCAL7.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LOCAL7 184 184 184 184 0 +.syscon log LOG_LOCAL7 184 184 184 184 184 0 diff --git a/libc/sysv/consts/LOG_LPR.s b/libc/sysv/consts/LOG_LPR.s index fcd6dda4e..736b1b021 100644 --- a/libc/sysv/consts/LOG_LPR.s +++ b/libc/sysv/consts/LOG_LPR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_LPR 48 48 48 48 0 +.syscon log LOG_LPR 48 48 48 48 48 0 diff --git a/libc/sysv/consts/LOG_MAIL.s b/libc/sysv/consts/LOG_MAIL.s index 0daeffbb5..6f09fb13b 100644 --- a/libc/sysv/consts/LOG_MAIL.s +++ b/libc/sysv/consts/LOG_MAIL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_MAIL 0x10 0x10 0x10 0x10 0 +.syscon log LOG_MAIL 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/LOG_NDELAY.s b/libc/sysv/consts/LOG_NDELAY.s index d1e7bf6b8..e65e64100 100644 --- a/libc/sysv/consts/LOG_NDELAY.s +++ b/libc/sysv/consts/LOG_NDELAY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_NDELAY 8 8 8 8 0 +.syscon log LOG_NDELAY 8 8 8 8 8 0 diff --git a/libc/sysv/consts/LOG_NEWS.s b/libc/sysv/consts/LOG_NEWS.s index 7016d0f3c..581426849 100644 --- a/libc/sysv/consts/LOG_NEWS.s +++ b/libc/sysv/consts/LOG_NEWS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_NEWS 56 56 56 56 0 +.syscon log LOG_NEWS 56 56 56 56 56 0 diff --git a/libc/sysv/consts/LOG_NFACILITIES.s b/libc/sysv/consts/LOG_NFACILITIES.s index 2484ab803..7160b109b 100644 --- a/libc/sysv/consts/LOG_NFACILITIES.s +++ b/libc/sysv/consts/LOG_NFACILITIES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_NFACILITIES 24 25 24 24 0 +.syscon log LOG_NFACILITIES 24 25 24 24 24 0 diff --git a/libc/sysv/consts/LOG_NOTICE.s b/libc/sysv/consts/LOG_NOTICE.s index ab13babec..3920a4c65 100644 --- a/libc/sysv/consts/LOG_NOTICE.s +++ b/libc/sysv/consts/LOG_NOTICE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_NOTICE 5 5 5 5 0 +.syscon log LOG_NOTICE 5 5 5 5 5 0 diff --git a/libc/sysv/consts/LOG_NOWAIT.s b/libc/sysv/consts/LOG_NOWAIT.s index 72c31a5d6..cdd0ab6f3 100644 --- a/libc/sysv/consts/LOG_NOWAIT.s +++ b/libc/sysv/consts/LOG_NOWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_NOWAIT 0x10 0x10 0x10 0x10 0 +.syscon log LOG_NOWAIT 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/LOG_ODELAY.s b/libc/sysv/consts/LOG_ODELAY.s index c9ab86d7b..0e52f9f49 100644 --- a/libc/sysv/consts/LOG_ODELAY.s +++ b/libc/sysv/consts/LOG_ODELAY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_ODELAY 4 4 4 4 0 +.syscon log LOG_ODELAY 4 4 4 4 4 0 diff --git a/libc/sysv/consts/LOG_PERROR.s b/libc/sysv/consts/LOG_PERROR.s index 8c433d145..e6e6439b9 100644 --- a/libc/sysv/consts/LOG_PERROR.s +++ b/libc/sysv/consts/LOG_PERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_PERROR 0x20 0x20 0x20 0x20 0 +.syscon log LOG_PERROR 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/LOG_PID.s b/libc/sysv/consts/LOG_PID.s index 7c221c48f..3f3ea25e1 100644 --- a/libc/sysv/consts/LOG_PID.s +++ b/libc/sysv/consts/LOG_PID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_PID 1 1 1 1 0 +.syscon log LOG_PID 1 1 1 1 1 0 diff --git a/libc/sysv/consts/LOG_PRIMASK.s b/libc/sysv/consts/LOG_PRIMASK.s index 903030abe..93b79937c 100644 --- a/libc/sysv/consts/LOG_PRIMASK.s +++ b/libc/sysv/consts/LOG_PRIMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_PRIMASK 7 7 7 7 0 +.syscon log LOG_PRIMASK 7 7 7 7 7 0 diff --git a/libc/sysv/consts/LOG_SELECT.s b/libc/sysv/consts/LOG_SELECT.s index 0a68b95e5..792e1d69b 100644 --- a/libc/sysv/consts/LOG_SELECT.s +++ b/libc/sysv/consts/LOG_SELECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_SELECT 76 0 0 0 0 +.syscon log LOG_SELECT 76 0 0 0 0 0 diff --git a/libc/sysv/consts/LOG_SENSE.s b/libc/sysv/consts/LOG_SENSE.s index bf13067a8..e60b60fdf 100644 --- a/libc/sysv/consts/LOG_SENSE.s +++ b/libc/sysv/consts/LOG_SENSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_SENSE 77 0 0 0 0 +.syscon log LOG_SENSE 77 0 0 0 0 0 diff --git a/libc/sysv/consts/LOG_SYSLOG.s b/libc/sysv/consts/LOG_SYSLOG.s index 178a01394..c9754c834 100644 --- a/libc/sysv/consts/LOG_SYSLOG.s +++ b/libc/sysv/consts/LOG_SYSLOG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_SYSLOG 40 40 40 40 0 +.syscon log LOG_SYSLOG 40 40 40 40 40 0 diff --git a/libc/sysv/consts/LOG_USER.s b/libc/sysv/consts/LOG_USER.s index b718ca127..1faeb370f 100644 --- a/libc/sysv/consts/LOG_USER.s +++ b/libc/sysv/consts/LOG_USER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_USER 8 8 8 8 0 +.syscon log LOG_USER 8 8 8 8 8 0 diff --git a/libc/sysv/consts/LOG_UUCP.s b/libc/sysv/consts/LOG_UUCP.s index 2c26b5547..b2ee8ee30 100644 --- a/libc/sysv/consts/LOG_UUCP.s +++ b/libc/sysv/consts/LOG_UUCP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_UUCP 0x40 0x40 0x40 0x40 0 +.syscon log LOG_UUCP 0x40 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/LOG_WARNING.s b/libc/sysv/consts/LOG_WARNING.s index 1608461e9..8f05efc16 100644 --- a/libc/sysv/consts/LOG_WARNING.s +++ b/libc/sysv/consts/LOG_WARNING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon log LOG_WARNING 4 4 4 4 0 +.syscon log LOG_WARNING 4 4 4 4 4 0 diff --git a/libc/sysv/consts/L_INCR.s b/libc/sysv/consts/L_INCR.s index 5f8162cbe..3ba0b1bb2 100644 --- a/libc/sysv/consts/L_INCR.s +++ b/libc/sysv/consts/L_INCR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc L_INCR 1 1 1 1 0 +.syscon misc L_INCR 1 1 1 1 1 0 diff --git a/libc/sysv/consts/L_SET.s b/libc/sysv/consts/L_SET.s index 2ba39d98b..8e103c20c 100644 --- a/libc/sysv/consts/L_SET.s +++ b/libc/sysv/consts/L_SET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc L_SET 0 0 0 0 0 +.syscon misc L_SET 0 0 0 0 0 0 diff --git a/libc/sysv/consts/L_XTND.s b/libc/sysv/consts/L_XTND.s index a42ad28a7..6662477d5 100644 --- a/libc/sysv/consts/L_XTND.s +++ b/libc/sysv/consts/L_XTND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc L_XTND 2 2 2 2 0 +.syscon misc L_XTND 2 2 2 2 2 0 diff --git a/libc/sysv/consts/MADV_DODUMP.s b/libc/sysv/consts/MADV_DODUMP.s index bbe212aca..489fbbcb8 100644 --- a/libc/sysv/consts/MADV_DODUMP.s +++ b/libc/sysv/consts/MADV_DODUMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_DODUMP 17 0 0 0 0 +.syscon madv MADV_DODUMP 17 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_DOFORK.s b/libc/sysv/consts/MADV_DOFORK.s index bc9914153..d113aa85a 100644 --- a/libc/sysv/consts/MADV_DOFORK.s +++ b/libc/sysv/consts/MADV_DOFORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_DOFORK 11 0 0 0 0 +.syscon madv MADV_DOFORK 11 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_DONTDUMP.s b/libc/sysv/consts/MADV_DONTDUMP.s index 096062447..7b3ec578c 100644 --- a/libc/sysv/consts/MADV_DONTDUMP.s +++ b/libc/sysv/consts/MADV_DONTDUMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_DONTDUMP 0x10 0 0 0 0 +.syscon madv MADV_DONTDUMP 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_DONTFORK.s b/libc/sysv/consts/MADV_DONTFORK.s index 2e4815e51..90e91dd56 100644 --- a/libc/sysv/consts/MADV_DONTFORK.s +++ b/libc/sysv/consts/MADV_DONTFORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_DONTFORK 10 0 0 0 0 +.syscon madv MADV_DONTFORK 10 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_DONTNEED.s b/libc/sysv/consts/MADV_DONTNEED.s index cf5181daa..b2efe30a7 100644 --- a/libc/sysv/consts/MADV_DONTNEED.s +++ b/libc/sysv/consts/MADV_DONTNEED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_DONTNEED 4 4 4 4 0 +.syscon madv MADV_DONTNEED 4 4 4 4 4 0 diff --git a/libc/sysv/consts/MADV_FREE.s b/libc/sysv/consts/MADV_FREE.s index b3b7d2c1e..2610d1d05 100644 --- a/libc/sysv/consts/MADV_FREE.s +++ b/libc/sysv/consts/MADV_FREE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_FREE 8 5 5 6 8 +.syscon madv MADV_FREE 8 5 5 6 6 8 diff --git a/libc/sysv/consts/MADV_HUGEPAGE.s b/libc/sysv/consts/MADV_HUGEPAGE.s index ed97e0d10..abece45d4 100644 --- a/libc/sysv/consts/MADV_HUGEPAGE.s +++ b/libc/sysv/consts/MADV_HUGEPAGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_HUGEPAGE 14 0 0 0 0 +.syscon madv MADV_HUGEPAGE 14 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_HWPOISON.s b/libc/sysv/consts/MADV_HWPOISON.s index 9a5e0cfa5..b6df49b94 100644 --- a/libc/sysv/consts/MADV_HWPOISON.s +++ b/libc/sysv/consts/MADV_HWPOISON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_HWPOISON 100 0 0 0 0 +.syscon madv MADV_HWPOISON 100 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_MERGEABLE.s b/libc/sysv/consts/MADV_MERGEABLE.s index 906c72c47..0310f6aa3 100644 --- a/libc/sysv/consts/MADV_MERGEABLE.s +++ b/libc/sysv/consts/MADV_MERGEABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_MERGEABLE 12 0 0 0 0 +.syscon madv MADV_MERGEABLE 12 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_NOHUGEPAGE.s b/libc/sysv/consts/MADV_NOHUGEPAGE.s index 7e64c61aa..59328556b 100644 --- a/libc/sysv/consts/MADV_NOHUGEPAGE.s +++ b/libc/sysv/consts/MADV_NOHUGEPAGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_NOHUGEPAGE 15 0 0 0 0 +.syscon madv MADV_NOHUGEPAGE 15 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_NORMAL.s b/libc/sysv/consts/MADV_NORMAL.s index ac6e615d0..1d6eb2331 100644 --- a/libc/sysv/consts/MADV_NORMAL.s +++ b/libc/sysv/consts/MADV_NORMAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_NORMAL 0 0 0 0 0x00000080 +.syscon madv MADV_NORMAL 0 0 0 0 0 0x00000080 diff --git a/libc/sysv/consts/MADV_RANDOM.s b/libc/sysv/consts/MADV_RANDOM.s index bbf26f975..9e22614da 100644 --- a/libc/sysv/consts/MADV_RANDOM.s +++ b/libc/sysv/consts/MADV_RANDOM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_RANDOM 1 1 1 1 0x10000000 +.syscon madv MADV_RANDOM 1 1 1 1 1 0x10000000 diff --git a/libc/sysv/consts/MADV_REMOVE.s b/libc/sysv/consts/MADV_REMOVE.s index 747758b20..676ca63fb 100644 --- a/libc/sysv/consts/MADV_REMOVE.s +++ b/libc/sysv/consts/MADV_REMOVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_REMOVE 9 0 0 0 0 +.syscon madv MADV_REMOVE 9 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_SEQUENTIAL.s b/libc/sysv/consts/MADV_SEQUENTIAL.s index 3a3fcada6..9412e12b6 100644 --- a/libc/sysv/consts/MADV_SEQUENTIAL.s +++ b/libc/sysv/consts/MADV_SEQUENTIAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_SEQUENTIAL 2 2 2 2 0x8000000 +.syscon madv MADV_SEQUENTIAL 2 2 2 2 2 0x8000000 diff --git a/libc/sysv/consts/MADV_UNMERGEABLE.s b/libc/sysv/consts/MADV_UNMERGEABLE.s index 0323dff4d..473d9e837 100644 --- a/libc/sysv/consts/MADV_UNMERGEABLE.s +++ b/libc/sysv/consts/MADV_UNMERGEABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_UNMERGEABLE 13 0 0 0 0 +.syscon madv MADV_UNMERGEABLE 13 0 0 0 0 0 diff --git a/libc/sysv/consts/MADV_WILLNEED.s b/libc/sysv/consts/MADV_WILLNEED.s index f292aabd1..05b4b896c 100644 --- a/libc/sysv/consts/MADV_WILLNEED.s +++ b/libc/sysv/consts/MADV_WILLNEED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon madv MADV_WILLNEED 3 3 3 3 3 +.syscon madv MADV_WILLNEED 3 3 3 3 3 3 diff --git a/libc/sysv/consts/MAP_32BIT.s b/libc/sysv/consts/MAP_32BIT.s index cc4b1cee2..43d0e454b 100644 --- a/libc/sysv/consts/MAP_32BIT.s +++ b/libc/sysv/consts/MAP_32BIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat MAP_32BIT 0x40 0 0x080000 0 0 +.syscon compat MAP_32BIT 0x40 0 0x080000 0 0 0 diff --git a/libc/sysv/consts/MAP_ANON.s b/libc/sysv/consts/MAP_ANON.s index 27e8bec91..d261c4388 100644 --- a/libc/sysv/consts/MAP_ANON.s +++ b/libc/sysv/consts/MAP_ANON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat MAP_ANON 0x20 0x1000 0x1000 0x1000 0x20 +.syscon compat MAP_ANON 0x20 0x1000 0x1000 0x1000 0x1000 0x20 diff --git a/libc/sysv/consts/MAP_ANONYMOUS.s b/libc/sysv/consts/MAP_ANONYMOUS.s index 048c3c5c8..990ed4ab7 100644 --- a/libc/sysv/consts/MAP_ANONYMOUS.s +++ b/libc/sysv/consts/MAP_ANONYMOUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_ANONYMOUS 0x20 0x1000 0x1000 0x1000 0x20 +.syscon mmap MAP_ANONYMOUS 0x20 0x1000 0x1000 0x1000 0x1000 0x20 diff --git a/libc/sysv/consts/MAP_CONCEAL.s b/libc/sysv/consts/MAP_CONCEAL.s index 9b1d09cfd..f4c920b73 100644 --- a/libc/sysv/consts/MAP_CONCEAL.s +++ b/libc/sysv/consts/MAP_CONCEAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_CONCEAL 0 0 0x20000 0x8000 0 +.syscon mmap MAP_CONCEAL 0 0 0x20000 0x8000 0x8000 0 diff --git a/libc/sysv/consts/MAP_DENYWRITE.s b/libc/sysv/consts/MAP_DENYWRITE.s index 1222d9cfb..f09abc41e 100644 --- a/libc/sysv/consts/MAP_DENYWRITE.s +++ b/libc/sysv/consts/MAP_DENYWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat MAP_DENYWRITE 0x0800 0 0 0 0 +.syscon compat MAP_DENYWRITE 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_EXECUTABLE.s b/libc/sysv/consts/MAP_EXECUTABLE.s index 7d4abfc9f..29605e649 100644 --- a/libc/sysv/consts/MAP_EXECUTABLE.s +++ b/libc/sysv/consts/MAP_EXECUTABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat MAP_EXECUTABLE 0x1000 0 0 0 0 +.syscon compat MAP_EXECUTABLE 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_FILE.s b/libc/sysv/consts/MAP_FILE.s index ace0f9cce..37c924910 100644 --- a/libc/sysv/consts/MAP_FILE.s +++ b/libc/sysv/consts/MAP_FILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat MAP_FILE 0 0 0 0 0 +.syscon compat MAP_FILE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_FIXED.s b/libc/sysv/consts/MAP_FIXED.s index b17c886f1..0fbef7406 100644 --- a/libc/sysv/consts/MAP_FIXED.s +++ b/libc/sysv/consts/MAP_FIXED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_FIXED 0x10 0x10 0x10 0x10 0x10 +.syscon mmap MAP_FIXED 0x10 0x10 0x10 0x10 0x10 0x10 diff --git a/libc/sysv/consts/MAP_GROWSDOWN.s b/libc/sysv/consts/MAP_GROWSDOWN.s index af235cba3..df108bbdc 100644 --- a/libc/sysv/consts/MAP_GROWSDOWN.s +++ b/libc/sysv/consts/MAP_GROWSDOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_GROWSDOWN 0x0100 0 0x0400 0x4000 0x100000 +.syscon mmap MAP_GROWSDOWN 0x0100 0 0x0400 0x4000 0x4000 0x100000 diff --git a/libc/sysv/consts/MAP_HUGETLB.s b/libc/sysv/consts/MAP_HUGETLB.s index a928f3a14..f5f3a3d60 100644 --- a/libc/sysv/consts/MAP_HUGETLB.s +++ b/libc/sysv/consts/MAP_HUGETLB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_HUGETLB 0x040000 0 0 0 0x80000000 +.syscon mmap MAP_HUGETLB 0x040000 0 0 0 0 0x80000000 diff --git a/libc/sysv/consts/MAP_HUGE_MASK.s b/libc/sysv/consts/MAP_HUGE_MASK.s index 98d89942a..13f131d71 100644 --- a/libc/sysv/consts/MAP_HUGE_MASK.s +++ b/libc/sysv/consts/MAP_HUGE_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_HUGE_MASK 63 0 0 0 0 +.syscon mmap MAP_HUGE_MASK 63 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_HUGE_SHIFT.s b/libc/sysv/consts/MAP_HUGE_SHIFT.s index d7358d9a7..8d6cba18f 100644 --- a/libc/sysv/consts/MAP_HUGE_SHIFT.s +++ b/libc/sysv/consts/MAP_HUGE_SHIFT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_HUGE_SHIFT 26 0 0 0 0 +.syscon mmap MAP_HUGE_SHIFT 26 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_LOCKED.s b/libc/sysv/consts/MAP_LOCKED.s index 49733ef4a..b32931e8e 100644 --- a/libc/sysv/consts/MAP_LOCKED.s +++ b/libc/sysv/consts/MAP_LOCKED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_LOCKED 0x2000 0 0 0 0 +.syscon mmap MAP_LOCKED 0x2000 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_NOCORE.s b/libc/sysv/consts/MAP_NOCORE.s index 57c215aa6..572f710cf 100644 --- a/libc/sysv/consts/MAP_NOCORE.s +++ b/libc/sysv/consts/MAP_NOCORE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat MAP_NOCORE 0 0 0x20000 0x8000 0 +.syscon compat MAP_NOCORE 0 0 0x20000 0x8000 0x8000 0 diff --git a/libc/sysv/consts/MAP_NONBLOCK.s b/libc/sysv/consts/MAP_NONBLOCK.s index 4db11be9a..f95d90c02 100644 --- a/libc/sysv/consts/MAP_NONBLOCK.s +++ b/libc/sysv/consts/MAP_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_NONBLOCK 0x10000 0 0 0 0 +.syscon mmap MAP_NONBLOCK 0x10000 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_NORESERVE.s b/libc/sysv/consts/MAP_NORESERVE.s index b28bf0228..063639f40 100644 --- a/libc/sysv/consts/MAP_NORESERVE.s +++ b/libc/sysv/consts/MAP_NORESERVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_NORESERVE 0x4000 0x40 0 0 0 +.syscon mmap MAP_NORESERVE 0x4000 0x40 0 0 64 0 diff --git a/libc/sysv/consts/MAP_POPULATE.s b/libc/sysv/consts/MAP_POPULATE.s index 8c7c83da4..d6e2726ed 100644 --- a/libc/sysv/consts/MAP_POPULATE.s +++ b/libc/sysv/consts/MAP_POPULATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_POPULATE 0x8000 0 0 0 0 +.syscon mmap MAP_POPULATE 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/MAP_PRIVATE.s b/libc/sysv/consts/MAP_PRIVATE.s index 56d81e921..f720fe2fa 100644 --- a/libc/sysv/consts/MAP_PRIVATE.s +++ b/libc/sysv/consts/MAP_PRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_PRIVATE 2 2 2 2 2 +.syscon mmap MAP_PRIVATE 2 2 2 2 2 2 diff --git a/libc/sysv/consts/MAP_SHARED.s b/libc/sysv/consts/MAP_SHARED.s index 2d670312b..0db3f0f80 100644 --- a/libc/sysv/consts/MAP_SHARED.s +++ b/libc/sysv/consts/MAP_SHARED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_SHARED 1 1 1 1 1 +.syscon mmap MAP_SHARED 1 1 1 1 1 1 diff --git a/libc/sysv/consts/MAP_STACK.s b/libc/sysv/consts/MAP_STACK.s index 1dca4e2f8..e22d5862a 100644 --- a/libc/sysv/consts/MAP_STACK.s +++ b/libc/sysv/consts/MAP_STACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat MAP_STACK 0x020000 0 0x0400 0x4000 0x100000 +.syscon compat MAP_STACK 0x0100 0 0x0400 0x4000 0x2000 0x100000 diff --git a/libc/sysv/consts/MAP_TYPE.s b/libc/sysv/consts/MAP_TYPE.s index d9592720a..71f3532b4 100644 --- a/libc/sysv/consts/MAP_TYPE.s +++ b/libc/sysv/consts/MAP_TYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mmap MAP_TYPE 15 0 0 0 0 +.syscon mmap MAP_TYPE 15 0 0 0 0 0 diff --git a/libc/sysv/consts/MATH_ERREXCEPT.s b/libc/sysv/consts/MATH_ERREXCEPT.s index 2b46e2082..f3bb373d9 100644 --- a/libc/sysv/consts/MATH_ERREXCEPT.s +++ b/libc/sysv/consts/MATH_ERREXCEPT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MATH_ERREXCEPT 2 2 2 2 0 +.syscon misc MATH_ERREXCEPT 2 2 2 2 2 0 diff --git a/libc/sysv/consts/MATH_ERRNO.s b/libc/sysv/consts/MATH_ERRNO.s index b4912412f..fe010b55c 100644 --- a/libc/sysv/consts/MATH_ERRNO.s +++ b/libc/sysv/consts/MATH_ERRNO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MATH_ERRNO 1 1 1 1 0 +.syscon misc MATH_ERRNO 1 1 1 1 1 0 diff --git a/libc/sysv/consts/MAXHOSTNAMELEN.s b/libc/sysv/consts/MAXHOSTNAMELEN.s index 1086779a6..22e8f0647 100644 --- a/libc/sysv/consts/MAXHOSTNAMELEN.s +++ b/libc/sysv/consts/MAXHOSTNAMELEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAXHOSTNAMELEN 0x40 0x0100 0x0100 0x0100 0 +.syscon misc MAXHOSTNAMELEN 0x40 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/MAXNAMLEN.s b/libc/sysv/consts/MAXNAMLEN.s index 557090813..c2988db37 100644 --- a/libc/sysv/consts/MAXNAMLEN.s +++ b/libc/sysv/consts/MAXNAMLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAXNAMLEN 255 255 255 255 0 +.syscon misc MAXNAMLEN 255 255 255 255 255 0 diff --git a/libc/sysv/consts/MAXPATHLEN.s b/libc/sysv/consts/MAXPATHLEN.s index 7ca37a457..d083490cd 100644 --- a/libc/sysv/consts/MAXPATHLEN.s +++ b/libc/sysv/consts/MAXPATHLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAXPATHLEN 255 255 255 255 255 +.syscon misc MAXPATHLEN 255 255 255 255 255 255 diff --git a/libc/sysv/consts/MAXQUOTAS.s b/libc/sysv/consts/MAXQUOTAS.s index a6a6a798f..8df72f7f3 100644 --- a/libc/sysv/consts/MAXQUOTAS.s +++ b/libc/sysv/consts/MAXQUOTAS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAXQUOTAS 2 2 2 2 0 +.syscon misc MAXQUOTAS 2 2 2 2 2 0 diff --git a/libc/sysv/consts/MAXSYMLINKS.s b/libc/sysv/consts/MAXSYMLINKS.s index 94f792027..168f182d4 100644 --- a/libc/sysv/consts/MAXSYMLINKS.s +++ b/libc/sysv/consts/MAXSYMLINKS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAXSYMLINKS 20 0x20 0x20 0x20 0 +.syscon misc MAXSYMLINKS 20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/MAX_DQ_TIME.s b/libc/sysv/consts/MAX_DQ_TIME.s index 8f098b688..59251449f 100644 --- a/libc/sysv/consts/MAX_DQ_TIME.s +++ b/libc/sysv/consts/MAX_DQ_TIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAX_DQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0 +.syscon misc MAX_DQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0x093a80 0 diff --git a/libc/sysv/consts/MAX_HANDLE_SZ.s b/libc/sysv/consts/MAX_HANDLE_SZ.s index e78b62d2d..0061f05e5 100644 --- a/libc/sysv/consts/MAX_HANDLE_SZ.s +++ b/libc/sysv/consts/MAX_HANDLE_SZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAX_HANDLE_SZ 0x80 0 0 0 0 +.syscon misc MAX_HANDLE_SZ 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/MAX_IQ_TIME.s b/libc/sysv/consts/MAX_IQ_TIME.s index fdacbc8cf..4d0b3167c 100644 --- a/libc/sysv/consts/MAX_IQ_TIME.s +++ b/libc/sysv/consts/MAX_IQ_TIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MAX_IQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0 +.syscon misc MAX_IQ_TIME 0x093a80 0x093a80 0x093a80 0x093a80 0x093a80 0 diff --git a/libc/sysv/consts/MCAST_BLOCK_SOURCE.s b/libc/sysv/consts/MCAST_BLOCK_SOURCE.s index 9a6db5ef3..1736dec5d 100644 --- a/libc/sysv/consts/MCAST_BLOCK_SOURCE.s +++ b/libc/sysv/consts/MCAST_BLOCK_SOURCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_BLOCK_SOURCE 43 84 84 0 43 +.syscon misc MCAST_BLOCK_SOURCE 43 84 84 0 0 43 diff --git a/libc/sysv/consts/MCAST_EXCLUDE.s b/libc/sysv/consts/MCAST_EXCLUDE.s index 657acb63c..df75e3b76 100644 --- a/libc/sysv/consts/MCAST_EXCLUDE.s +++ b/libc/sysv/consts/MCAST_EXCLUDE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_EXCLUDE 0 2 2 0 0 +.syscon misc MCAST_EXCLUDE 0 2 2 0 0 0 diff --git a/libc/sysv/consts/MCAST_INCLUDE.s b/libc/sysv/consts/MCAST_INCLUDE.s index 411232375..c9ad3e3f4 100644 --- a/libc/sysv/consts/MCAST_INCLUDE.s +++ b/libc/sysv/consts/MCAST_INCLUDE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_INCLUDE 1 1 1 0 0 +.syscon misc MCAST_INCLUDE 1 1 1 0 0 0 diff --git a/libc/sysv/consts/MCAST_JOIN_GROUP.s b/libc/sysv/consts/MCAST_JOIN_GROUP.s index cd2dd6785..ee97ff7c7 100644 --- a/libc/sysv/consts/MCAST_JOIN_GROUP.s +++ b/libc/sysv/consts/MCAST_JOIN_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_JOIN_GROUP 42 80 80 0 41 +.syscon misc MCAST_JOIN_GROUP 42 80 80 0 0 41 diff --git a/libc/sysv/consts/MCAST_JOIN_SOURCE_GROUP.s b/libc/sysv/consts/MCAST_JOIN_SOURCE_GROUP.s index 73e66cb42..3ad7c5375 100644 --- a/libc/sysv/consts/MCAST_JOIN_SOURCE_GROUP.s +++ b/libc/sysv/consts/MCAST_JOIN_SOURCE_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_JOIN_SOURCE_GROUP 46 82 82 0 45 +.syscon misc MCAST_JOIN_SOURCE_GROUP 46 82 82 0 0 45 diff --git a/libc/sysv/consts/MCAST_LEAVE_GROUP.s b/libc/sysv/consts/MCAST_LEAVE_GROUP.s index 4916fe5a2..29535383e 100644 --- a/libc/sysv/consts/MCAST_LEAVE_GROUP.s +++ b/libc/sysv/consts/MCAST_LEAVE_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_LEAVE_GROUP 45 81 81 0 42 +.syscon misc MCAST_LEAVE_GROUP 45 81 81 0 0 42 diff --git a/libc/sysv/consts/MCAST_LEAVE_SOURCE_GROUP.s b/libc/sysv/consts/MCAST_LEAVE_SOURCE_GROUP.s index 9a83d03a9..d6af74bc3 100644 --- a/libc/sysv/consts/MCAST_LEAVE_SOURCE_GROUP.s +++ b/libc/sysv/consts/MCAST_LEAVE_SOURCE_GROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_LEAVE_SOURCE_GROUP 47 83 83 0 46 +.syscon misc MCAST_LEAVE_SOURCE_GROUP 47 83 83 0 0 46 diff --git a/libc/sysv/consts/MCAST_MSFILTER.s b/libc/sysv/consts/MCAST_MSFILTER.s index 41ee57308..ffa5c5252 100644 --- a/libc/sysv/consts/MCAST_MSFILTER.s +++ b/libc/sysv/consts/MCAST_MSFILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_MSFILTER 48 0 0 0 0 +.syscon misc MCAST_MSFILTER 48 0 0 0 0 0 diff --git a/libc/sysv/consts/MCAST_UNBLOCK_SOURCE.s b/libc/sysv/consts/MCAST_UNBLOCK_SOURCE.s index 7827e232b..23cba414d 100644 --- a/libc/sysv/consts/MCAST_UNBLOCK_SOURCE.s +++ b/libc/sysv/consts/MCAST_UNBLOCK_SOURCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MCAST_UNBLOCK_SOURCE 44 85 85 0 44 +.syscon misc MCAST_UNBLOCK_SOURCE 44 85 85 0 0 44 diff --git a/libc/sysv/consts/MCL_CURRENT.s b/libc/sysv/consts/MCL_CURRENT.s index 2fe8b22d5..dc20d8ea8 100644 --- a/libc/sysv/consts/MCL_CURRENT.s +++ b/libc/sysv/consts/MCL_CURRENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mlock MCL_CURRENT 1 1 1 1 0 +.syscon mlock MCL_CURRENT 1 1 1 1 1 0 diff --git a/libc/sysv/consts/MCL_FUTURE.s b/libc/sysv/consts/MCL_FUTURE.s index 0a63806d3..e68c84973 100644 --- a/libc/sysv/consts/MCL_FUTURE.s +++ b/libc/sysv/consts/MCL_FUTURE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mlock MCL_FUTURE 2 2 2 2 0 +.syscon mlock MCL_FUTURE 2 2 2 2 2 0 diff --git a/libc/sysv/consts/MCL_ONFAULT.s b/libc/sysv/consts/MCL_ONFAULT.s index 8690ee9e6..66386676d 100644 --- a/libc/sysv/consts/MCL_ONFAULT.s +++ b/libc/sysv/consts/MCL_ONFAULT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mlock MCL_ONFAULT 4 0 0 0 0 +.syscon mlock MCL_ONFAULT 4 0 0 0 0 0 diff --git a/libc/sysv/consts/MEDIUM_ERROR.s b/libc/sysv/consts/MEDIUM_ERROR.s index 3339592b0..49c119b64 100644 --- a/libc/sysv/consts/MEDIUM_ERROR.s +++ b/libc/sysv/consts/MEDIUM_ERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MEDIUM_ERROR 3 0 0 0 0 +.syscon misc MEDIUM_ERROR 3 0 0 0 0 0 diff --git a/libc/sysv/consts/MEDIUM_SCAN.s b/libc/sysv/consts/MEDIUM_SCAN.s index 73fa4eb0e..7a34b56b5 100644 --- a/libc/sysv/consts/MEDIUM_SCAN.s +++ b/libc/sysv/consts/MEDIUM_SCAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MEDIUM_SCAN 56 0 0 0 0 +.syscon misc MEDIUM_SCAN 56 0 0 0 0 0 diff --git a/libc/sysv/consts/MESSAGE_REJECT.s b/libc/sysv/consts/MESSAGE_REJECT.s index 6078c21af..349610757 100644 --- a/libc/sysv/consts/MESSAGE_REJECT.s +++ b/libc/sysv/consts/MESSAGE_REJECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MESSAGE_REJECT 7 0 0 0 0 +.syscon misc MESSAGE_REJECT 7 0 0 0 0 0 diff --git a/libc/sysv/consts/MFD_ALLOW_SEALING.s b/libc/sysv/consts/MFD_ALLOW_SEALING.s index 9e4635eac..eda2d428f 100644 --- a/libc/sysv/consts/MFD_ALLOW_SEALING.s +++ b/libc/sysv/consts/MFD_ALLOW_SEALING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon memfd MFD_ALLOW_SEALING 2 0 0 0 0 +.syscon memfd MFD_ALLOW_SEALING 2 0 0 0 0 0 diff --git a/libc/sysv/consts/MFD_CLOEXEC.s b/libc/sysv/consts/MFD_CLOEXEC.s index 184ba683d..4da3a8c04 100644 --- a/libc/sysv/consts/MFD_CLOEXEC.s +++ b/libc/sysv/consts/MFD_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon memfd MFD_CLOEXEC 1 0 0 0 0 +.syscon memfd MFD_CLOEXEC 1 0 0 0 0 0 diff --git a/libc/sysv/consts/MINSIGSTKSZ.s b/libc/sysv/consts/MINSIGSTKSZ.s index d5e78244d..4661194a7 100644 --- a/libc/sysv/consts/MINSIGSTKSZ.s +++ b/libc/sysv/consts/MINSIGSTKSZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MINSIGSTKSZ 0x0800 0x8000 0x0800 0x3000 0 +.syscon misc MINSIGSTKSZ 0x0800 0x8000 0x0800 0x3000 0x2000 0 diff --git a/libc/sysv/consts/MISCOMPARE.s b/libc/sysv/consts/MISCOMPARE.s index 3fa7de3ae..abca7e4c6 100644 --- a/libc/sysv/consts/MISCOMPARE.s +++ b/libc/sysv/consts/MISCOMPARE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MISCOMPARE 14 0 0 0 0 +.syscon misc MISCOMPARE 14 0 0 0 0 0 diff --git a/libc/sysv/consts/MLD_LISTENER_QUERY.s b/libc/sysv/consts/MLD_LISTENER_QUERY.s index e8b84c4d4..810b43a3d 100644 --- a/libc/sysv/consts/MLD_LISTENER_QUERY.s +++ b/libc/sysv/consts/MLD_LISTENER_QUERY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MLD_LISTENER_QUERY 130 130 130 130 0 +.syscon misc MLD_LISTENER_QUERY 130 130 130 130 130 0 diff --git a/libc/sysv/consts/MLD_LISTENER_REDUCTION.s b/libc/sysv/consts/MLD_LISTENER_REDUCTION.s index 0a74730b6..c119fec4f 100644 --- a/libc/sysv/consts/MLD_LISTENER_REDUCTION.s +++ b/libc/sysv/consts/MLD_LISTENER_REDUCTION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MLD_LISTENER_REDUCTION 132 132 132 0 0 +.syscon misc MLD_LISTENER_REDUCTION 132 132 132 0 0 0 diff --git a/libc/sysv/consts/MLD_LISTENER_REPORT.s b/libc/sysv/consts/MLD_LISTENER_REPORT.s index 6b9298bbb..3a033a2d8 100644 --- a/libc/sysv/consts/MLD_LISTENER_REPORT.s +++ b/libc/sysv/consts/MLD_LISTENER_REPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MLD_LISTENER_REPORT 131 131 131 131 0 +.syscon misc MLD_LISTENER_REPORT 131 131 131 131 131 0 diff --git a/libc/sysv/consts/MMAP_PAGE_ZERO.s b/libc/sysv/consts/MMAP_PAGE_ZERO.s index 7f63d1544..31c64c6c5 100644 --- a/libc/sysv/consts/MMAP_PAGE_ZERO.s +++ b/libc/sysv/consts/MMAP_PAGE_ZERO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty MMAP_PAGE_ZERO 0x0100000 -1 -1 -1 -1 +.syscon prsnlty MMAP_PAGE_ZERO 0x0100000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/MNT_DETACH.s b/libc/sysv/consts/MNT_DETACH.s index b4eb5e76c..e44f8c408 100644 --- a/libc/sysv/consts/MNT_DETACH.s +++ b/libc/sysv/consts/MNT_DETACH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MNT_DETACH 2 0 0 0 0 +.syscon misc MNT_DETACH 2 0 0 0 0 0 diff --git a/libc/sysv/consts/MNT_EXPIRE.s b/libc/sysv/consts/MNT_EXPIRE.s index 7cb098f84..66fbb7c1b 100644 --- a/libc/sysv/consts/MNT_EXPIRE.s +++ b/libc/sysv/consts/MNT_EXPIRE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MNT_EXPIRE 4 0 0 0 0 +.syscon misc MNT_EXPIRE 4 0 0 0 0 0 diff --git a/libc/sysv/consts/MNT_FORCE.s b/libc/sysv/consts/MNT_FORCE.s index 8d32675bc..b506d6313 100644 --- a/libc/sysv/consts/MNT_FORCE.s +++ b/libc/sysv/consts/MNT_FORCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MNT_FORCE 1 0x080000 0 0x080000 0 +.syscon misc MNT_FORCE 1 0x080000 0 0x080000 0x080000 0 diff --git a/libc/sysv/consts/MODE_B.s b/libc/sysv/consts/MODE_B.s index 5a3fdbc7b..ef2b4c038 100644 --- a/libc/sysv/consts/MODE_B.s +++ b/libc/sysv/consts/MODE_B.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MODE_B 2 2 2 2 0 +.syscon misc MODE_B 2 2 2 2 2 0 diff --git a/libc/sysv/consts/MODE_C.s b/libc/sysv/consts/MODE_C.s index 20480daed..3c048ed6d 100644 --- a/libc/sysv/consts/MODE_C.s +++ b/libc/sysv/consts/MODE_C.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MODE_C 3 3 3 3 0 +.syscon misc MODE_C 3 3 3 3 3 0 diff --git a/libc/sysv/consts/MODE_S.s b/libc/sysv/consts/MODE_S.s index 604d01eb4..c4ff5c874 100644 --- a/libc/sysv/consts/MODE_S.s +++ b/libc/sysv/consts/MODE_S.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MODE_S 1 1 1 1 0 +.syscon misc MODE_S 1 1 1 1 1 0 diff --git a/libc/sysv/consts/MODE_SELECT.s b/libc/sysv/consts/MODE_SELECT.s index 5770927e5..4a3c558eb 100644 --- a/libc/sysv/consts/MODE_SELECT.s +++ b/libc/sysv/consts/MODE_SELECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MODE_SELECT 21 0 0 0 0 +.syscon misc MODE_SELECT 21 0 0 0 0 0 diff --git a/libc/sysv/consts/MODE_SELECT_10.s b/libc/sysv/consts/MODE_SELECT_10.s index e4f7f03ab..e1fa3b7ea 100644 --- a/libc/sysv/consts/MODE_SELECT_10.s +++ b/libc/sysv/consts/MODE_SELECT_10.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MODE_SELECT_10 85 0 0 0 0 +.syscon misc MODE_SELECT_10 85 0 0 0 0 0 diff --git a/libc/sysv/consts/MODE_SENSE.s b/libc/sysv/consts/MODE_SENSE.s index 38d11b8ee..11163e0d9 100644 --- a/libc/sysv/consts/MODE_SENSE.s +++ b/libc/sysv/consts/MODE_SENSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MODE_SENSE 26 0 0 0 0 +.syscon misc MODE_SENSE 26 0 0 0 0 0 diff --git a/libc/sysv/consts/MODE_SENSE_10.s b/libc/sysv/consts/MODE_SENSE_10.s index 362229d11..d8013b6be 100644 --- a/libc/sysv/consts/MODE_SENSE_10.s +++ b/libc/sysv/consts/MODE_SENSE_10.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MODE_SENSE_10 90 0 0 0 0 +.syscon misc MODE_SENSE_10 90 0 0 0 0 0 diff --git a/libc/sysv/consts/MOVE_MEDIUM.s b/libc/sysv/consts/MOVE_MEDIUM.s index 765156a68..4a22f857d 100644 --- a/libc/sysv/consts/MOVE_MEDIUM.s +++ b/libc/sysv/consts/MOVE_MEDIUM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MOVE_MEDIUM 165 0 0 0 0 +.syscon misc MOVE_MEDIUM 165 0 0 0 0 0 diff --git a/libc/sysv/consts/MQ_PRIO_MAX.s b/libc/sysv/consts/MQ_PRIO_MAX.s index 0382a3598..aec33ef46 100644 --- a/libc/sysv/consts/MQ_PRIO_MAX.s +++ b/libc/sysv/consts/MQ_PRIO_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MQ_PRIO_MAX 0x8000 0 0x40 0 0 +.syscon misc MQ_PRIO_MAX 0x8000 0 0x40 0 0 0 diff --git a/libc/sysv/consts/MREMAP_FIXED.s b/libc/sysv/consts/MREMAP_FIXED.s index be085add5..e31e94367 100644 --- a/libc/sysv/consts/MREMAP_FIXED.s +++ b/libc/sysv/consts/MREMAP_FIXED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mremap MREMAP_FIXED 2 2 2 2 2 +.syscon mremap MREMAP_FIXED 2 2 2 2 2 2 diff --git a/libc/sysv/consts/MREMAP_MAYMOVE.s b/libc/sysv/consts/MREMAP_MAYMOVE.s index 434bba8c7..3dc1b3ef2 100644 --- a/libc/sysv/consts/MREMAP_MAYMOVE.s +++ b/libc/sysv/consts/MREMAP_MAYMOVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mremap MREMAP_MAYMOVE 1 1 1 1 1 +.syscon mremap MREMAP_MAYMOVE 1 1 1 1 1 1 diff --git a/libc/sysv/consts/MSG_BATCH.s b/libc/sysv/consts/MSG_BATCH.s index 86496c42a..03ce48003 100644 --- a/libc/sysv/consts/MSG_BATCH.s +++ b/libc/sysv/consts/MSG_BATCH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_BATCH 0x040000 0 0 0 0 +.syscon msg MSG_BATCH 0x040000 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_CMSG_CLOEXEC.s b/libc/sysv/consts/MSG_CMSG_CLOEXEC.s index 006d3216e..9cd5f907a 100644 --- a/libc/sysv/consts/MSG_CMSG_CLOEXEC.s +++ b/libc/sysv/consts/MSG_CMSG_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_CMSG_CLOEXEC 0x40000000 0 0x040000 0x0800 0 +.syscon msg MSG_CMSG_CLOEXEC 0x40000000 0 0x040000 0x0800 0x0800 0 diff --git a/libc/sysv/consts/MSG_CONFIRM.s b/libc/sysv/consts/MSG_CONFIRM.s index 9ddf1ed66..9144507c7 100644 --- a/libc/sysv/consts/MSG_CONFIRM.s +++ b/libc/sysv/consts/MSG_CONFIRM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_CONFIRM 0x0800 0 0 0 0 +.syscon msg MSG_CONFIRM 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_CTRUNC.s b/libc/sysv/consts/MSG_CTRUNC.s index 4fc9cd6d7..daa8d2075 100644 --- a/libc/sysv/consts/MSG_CTRUNC.s +++ b/libc/sysv/consts/MSG_CTRUNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_CTRUNC 8 0x20 0x20 0x20 0x0200 +.syscon msg MSG_CTRUNC 8 0x20 0x20 0x20 0x20 0x0200 diff --git a/libc/sysv/consts/MSG_DONTROUTE.s b/libc/sysv/consts/MSG_DONTROUTE.s index 9fed0a654..fb4844abd 100644 --- a/libc/sysv/consts/MSG_DONTROUTE.s +++ b/libc/sysv/consts/MSG_DONTROUTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_DONTROUTE 4 4 4 4 4 +.syscon msg MSG_DONTROUTE 4 4 4 4 4 4 diff --git a/libc/sysv/consts/MSG_DONTWAIT.s b/libc/sysv/consts/MSG_DONTWAIT.s index 402cac9de..c6a543340 100644 --- a/libc/sysv/consts/MSG_DONTWAIT.s +++ b/libc/sysv/consts/MSG_DONTWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_DONTWAIT 0x40 0x80 0x80 0x80 0 +.syscon msg MSG_DONTWAIT 0x40 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/MSG_EOR.s b/libc/sysv/consts/MSG_EOR.s index bfbca95b4..5f50b1379 100644 --- a/libc/sysv/consts/MSG_EOR.s +++ b/libc/sysv/consts/MSG_EOR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_EOR 0x80 8 8 8 0 +.syscon msg MSG_EOR 0x80 8 8 8 8 0 diff --git a/libc/sysv/consts/MSG_ERRQUEUE.s b/libc/sysv/consts/MSG_ERRQUEUE.s index b7086daec..019c59a1d 100644 --- a/libc/sysv/consts/MSG_ERRQUEUE.s +++ b/libc/sysv/consts/MSG_ERRQUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_ERRQUEUE 0x2000 0 0 0 0x1000 +.syscon msg MSG_ERRQUEUE 0x2000 0 0 0 0 0x1000 diff --git a/libc/sysv/consts/MSG_EXCEPT.s b/libc/sysv/consts/MSG_EXCEPT.s index 5095a73f6..dae5d9873 100644 --- a/libc/sysv/consts/MSG_EXCEPT.s +++ b/libc/sysv/consts/MSG_EXCEPT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_EXCEPT 0x2000 0 0 0 0 +.syscon msg MSG_EXCEPT 0x2000 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_FASTOPEN.s b/libc/sysv/consts/MSG_FASTOPEN.s index dc053bd33..b3400e846 100644 --- a/libc/sysv/consts/MSG_FASTOPEN.s +++ b/libc/sysv/consts/MSG_FASTOPEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_FASTOPEN 0x20000000 0 0 0 0 +.syscon msg MSG_FASTOPEN 0x20000000 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_FIN.s b/libc/sysv/consts/MSG_FIN.s index e56149d0f..ef25696cf 100644 --- a/libc/sysv/consts/MSG_FIN.s +++ b/libc/sysv/consts/MSG_FIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_FIN 0x0200 0 0 0 0 +.syscon msg MSG_FIN 0x0200 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_INFO.s b/libc/sysv/consts/MSG_INFO.s index 7fe99bee8..c20df4cee 100644 --- a/libc/sysv/consts/MSG_INFO.s +++ b/libc/sysv/consts/MSG_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_INFO 12 0 0 0 0 +.syscon msg MSG_INFO 12 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_MORE.s b/libc/sysv/consts/MSG_MORE.s index 8913d31cf..4bdeb0949 100644 --- a/libc/sysv/consts/MSG_MORE.s +++ b/libc/sysv/consts/MSG_MORE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_MORE 0x8000 0 0 0 0 +.syscon msg MSG_MORE 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_NOERROR.s b/libc/sysv/consts/MSG_NOERROR.s index f28c1528a..c409614ac 100644 --- a/libc/sysv/consts/MSG_NOERROR.s +++ b/libc/sysv/consts/MSG_NOERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_NOERROR 0x1000 0x1000 0x1000 0x1000 0 +.syscon msg MSG_NOERROR 0x1000 0x1000 0x1000 0x1000 0x1000 0 diff --git a/libc/sysv/consts/MSG_NOSIGNAL.s b/libc/sysv/consts/MSG_NOSIGNAL.s index c19a28f82..97d1d88ba 100644 --- a/libc/sysv/consts/MSG_NOSIGNAL.s +++ b/libc/sysv/consts/MSG_NOSIGNAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_NOSIGNAL 0x4000 0 0x020000 0x0400 0 +.syscon msg MSG_NOSIGNAL 0x4000 0 0x020000 0x0400 0x0400 0 diff --git a/libc/sysv/consts/MSG_OOB.s b/libc/sysv/consts/MSG_OOB.s index dbc0289ee..3e7c606d2 100644 --- a/libc/sysv/consts/MSG_OOB.s +++ b/libc/sysv/consts/MSG_OOB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_OOB 1 1 1 1 1 +.syscon msg MSG_OOB 1 1 1 1 1 1 diff --git a/libc/sysv/consts/MSG_PARITY_ERROR.s b/libc/sysv/consts/MSG_PARITY_ERROR.s index a57a06272..f15ac359e 100644 --- a/libc/sysv/consts/MSG_PARITY_ERROR.s +++ b/libc/sysv/consts/MSG_PARITY_ERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_PARITY_ERROR 9 0 0 0 0 +.syscon msg MSG_PARITY_ERROR 9 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_PEEK.s b/libc/sysv/consts/MSG_PEEK.s index bfeb3e823..c071c5f56 100644 --- a/libc/sysv/consts/MSG_PEEK.s +++ b/libc/sysv/consts/MSG_PEEK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_PEEK 2 2 2 2 2 +.syscon msg MSG_PEEK 2 2 2 2 2 2 diff --git a/libc/sysv/consts/MSG_PROXY.s b/libc/sysv/consts/MSG_PROXY.s index bb1f550f6..611f91ba2 100644 --- a/libc/sysv/consts/MSG_PROXY.s +++ b/libc/sysv/consts/MSG_PROXY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_PROXY 0x10 0 0 0 0 +.syscon msg MSG_PROXY 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_RST.s b/libc/sysv/consts/MSG_RST.s index 230b04e80..5575d361c 100644 --- a/libc/sysv/consts/MSG_RST.s +++ b/libc/sysv/consts/MSG_RST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_RST 0x1000 0 0 0 0 +.syscon msg MSG_RST 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_STAT.s b/libc/sysv/consts/MSG_STAT.s index a3c856ddf..4020c47f9 100644 --- a/libc/sysv/consts/MSG_STAT.s +++ b/libc/sysv/consts/MSG_STAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_STAT 11 0 0 0 0 +.syscon msg MSG_STAT 11 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_SYN.s b/libc/sysv/consts/MSG_SYN.s index 46deead7e..310ede2cb 100644 --- a/libc/sysv/consts/MSG_SYN.s +++ b/libc/sysv/consts/MSG_SYN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_SYN 0x0400 0 0 0 0 +.syscon msg MSG_SYN 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/MSG_TRUNC.s b/libc/sysv/consts/MSG_TRUNC.s index 107838412..4f0f65baa 100644 --- a/libc/sysv/consts/MSG_TRUNC.s +++ b/libc/sysv/consts/MSG_TRUNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_TRUNC 0x20 0x10 0x10 0x10 0x0100 +.syscon msg MSG_TRUNC 0x20 0x10 0x10 0x10 0x10 0x0100 diff --git a/libc/sysv/consts/MSG_WAITALL.s b/libc/sysv/consts/MSG_WAITALL.s index 0051cfc4f..e4f7b819a 100644 --- a/libc/sysv/consts/MSG_WAITALL.s +++ b/libc/sysv/consts/MSG_WAITALL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_WAITALL 0x0100 0x40 0x40 0x40 8 +.syscon msg MSG_WAITALL 0x0100 0x40 0x40 0x40 0x40 8 diff --git a/libc/sysv/consts/MSG_WAITFORONE.s b/libc/sysv/consts/MSG_WAITFORONE.s index 5094452ab..d03423bd8 100644 --- a/libc/sysv/consts/MSG_WAITFORONE.s +++ b/libc/sysv/consts/MSG_WAITFORONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon msg MSG_WAITFORONE 0x010000 0 0x080000 0 0 +.syscon msg MSG_WAITFORONE 0x010000 0 0x080000 0 0x2000 0 diff --git a/libc/sysv/consts/MS_ACTIVE.s b/libc/sysv/consts/MS_ACTIVE.s index 91046f028..ed611735f 100644 --- a/libc/sysv/consts/MS_ACTIVE.s +++ b/libc/sysv/consts/MS_ACTIVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_ACTIVE 0x40000000 0 0 0 0 +.syscon mount MS_ACTIVE 0x40000000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_ASYNC.s b/libc/sysv/consts/MS_ASYNC.s index 40a839a15..a14ede551 100644 --- a/libc/sysv/consts/MS_ASYNC.s +++ b/libc/sysv/consts/MS_ASYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ms MS_ASYNC 1 1 1 1 1 +.syscon ms MS_ASYNC 1 1 1 1 1 1 diff --git a/libc/sysv/consts/MS_BIND.s b/libc/sysv/consts/MS_BIND.s index 8620f303a..e0cf268a0 100644 --- a/libc/sysv/consts/MS_BIND.s +++ b/libc/sysv/consts/MS_BIND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_BIND 0x1000 0 0 0 0 +.syscon mount MS_BIND 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_DIRSYNC.s b/libc/sysv/consts/MS_DIRSYNC.s index 1130e67a1..a73d99ab8 100644 --- a/libc/sysv/consts/MS_DIRSYNC.s +++ b/libc/sysv/consts/MS_DIRSYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_DIRSYNC 0x80 0 0 0 0 +.syscon mount MS_DIRSYNC 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_INVALIDATE.s b/libc/sysv/consts/MS_INVALIDATE.s index 79d8529be..a3f869b63 100644 --- a/libc/sysv/consts/MS_INVALIDATE.s +++ b/libc/sysv/consts/MS_INVALIDATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ms MS_INVALIDATE 2 2 2 4 0 +.syscon ms MS_INVALIDATE 2 2 2 4 2 0 diff --git a/libc/sysv/consts/MS_I_VERSION.s b/libc/sysv/consts/MS_I_VERSION.s index 05d7ec2c9..e5a141ad2 100644 --- a/libc/sysv/consts/MS_I_VERSION.s +++ b/libc/sysv/consts/MS_I_VERSION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_I_VERSION 0x800000 0 0 0 0 +.syscon mount MS_I_VERSION 0x800000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_KERNMOUNT.s b/libc/sysv/consts/MS_KERNMOUNT.s index e6a65fe97..b4f1c45e1 100644 --- a/libc/sysv/consts/MS_KERNMOUNT.s +++ b/libc/sysv/consts/MS_KERNMOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_KERNMOUNT 0x400000 0 0 0 0 +.syscon mount MS_KERNMOUNT 0x400000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_LAZYTIME.s b/libc/sysv/consts/MS_LAZYTIME.s index dcf974500..e9a99ce50 100644 --- a/libc/sysv/consts/MS_LAZYTIME.s +++ b/libc/sysv/consts/MS_LAZYTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_LAZYTIME 0x02000000 0 0 0 0 +.syscon mount MS_LAZYTIME 0x02000000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_MANDLOCK.s b/libc/sysv/consts/MS_MANDLOCK.s index 096673a0f..427e91481 100644 --- a/libc/sysv/consts/MS_MANDLOCK.s +++ b/libc/sysv/consts/MS_MANDLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_MANDLOCK 0x40 0 0 0 0 +.syscon mount MS_MANDLOCK 0x40 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_MGC_MSK.s b/libc/sysv/consts/MS_MGC_MSK.s index 3c465e5d3..004a178f9 100644 --- a/libc/sysv/consts/MS_MGC_MSK.s +++ b/libc/sysv/consts/MS_MGC_MSK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_MGC_MSK 0xffff0000 0 0 0 0 +.syscon mount MS_MGC_MSK 0xffff0000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_MGC_VAL.s b/libc/sysv/consts/MS_MGC_VAL.s index b029839f2..a65fabd05 100644 --- a/libc/sysv/consts/MS_MGC_VAL.s +++ b/libc/sysv/consts/MS_MGC_VAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_MGC_VAL 0xc0ed0000 0 0 0 0 +.syscon mount MS_MGC_VAL 0xc0ed0000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_MOVE.s b/libc/sysv/consts/MS_MOVE.s index 1fdf7d06e..fb1f0a6d2 100644 --- a/libc/sysv/consts/MS_MOVE.s +++ b/libc/sysv/consts/MS_MOVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_MOVE 0x2000 0 0 0 0 +.syscon mount MS_MOVE 0x2000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_NOATIME.s b/libc/sysv/consts/MS_NOATIME.s index c795dbe28..900d8d0ed 100644 --- a/libc/sysv/consts/MS_NOATIME.s +++ b/libc/sysv/consts/MS_NOATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_NOATIME 0x0400 0 0 0 0 +.syscon mount MS_NOATIME 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_NODEV.s b/libc/sysv/consts/MS_NODEV.s index e43823d58..a4a47efb5 100644 --- a/libc/sysv/consts/MS_NODEV.s +++ b/libc/sysv/consts/MS_NODEV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_NODEV 4 0 0 0 0 +.syscon mount MS_NODEV 4 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_NODIRATIME.s b/libc/sysv/consts/MS_NODIRATIME.s index 878545a45..adfe0a3ee 100644 --- a/libc/sysv/consts/MS_NODIRATIME.s +++ b/libc/sysv/consts/MS_NODIRATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_NODIRATIME 0x0800 0 0 0 0 +.syscon mount MS_NODIRATIME 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_NOEXEC.s b/libc/sysv/consts/MS_NOEXEC.s index 999b75c8f..35f96da7d 100644 --- a/libc/sysv/consts/MS_NOEXEC.s +++ b/libc/sysv/consts/MS_NOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_NOEXEC 8 0 0 0 0 +.syscon mount MS_NOEXEC 8 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_NOSUID.s b/libc/sysv/consts/MS_NOSUID.s index 565d1490f..c38caea84 100644 --- a/libc/sysv/consts/MS_NOSUID.s +++ b/libc/sysv/consts/MS_NOSUID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_NOSUID 2 0 0 0 0 +.syscon mount MS_NOSUID 2 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_NOUSER.s b/libc/sysv/consts/MS_NOUSER.s index bee6ac289..8a75d5035 100644 --- a/libc/sysv/consts/MS_NOUSER.s +++ b/libc/sysv/consts/MS_NOUSER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_NOUSER -2147483648 0 0 0 0 +.syscon mount MS_NOUSER -2147483648 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_POSIXACL.s b/libc/sysv/consts/MS_POSIXACL.s index 9f9e11baf..e7e7cf63d 100644 --- a/libc/sysv/consts/MS_POSIXACL.s +++ b/libc/sysv/consts/MS_POSIXACL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_POSIXACL 0x010000 0 0 0 0 +.syscon mount MS_POSIXACL 0x010000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_PRIVATE.s b/libc/sysv/consts/MS_PRIVATE.s index e9d5f376b..74bc4dc79 100644 --- a/libc/sysv/consts/MS_PRIVATE.s +++ b/libc/sysv/consts/MS_PRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_PRIVATE 0x040000 0 0 0 0 +.syscon mount MS_PRIVATE 0x040000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_RDONLY.s b/libc/sysv/consts/MS_RDONLY.s index 129b52e78..c652d2eb8 100644 --- a/libc/sysv/consts/MS_RDONLY.s +++ b/libc/sysv/consts/MS_RDONLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_RDONLY 1 0 0 0 0 +.syscon mount MS_RDONLY 1 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_REC.s b/libc/sysv/consts/MS_REC.s index fb9e2cd1b..42251a3bf 100644 --- a/libc/sysv/consts/MS_REC.s +++ b/libc/sysv/consts/MS_REC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_REC 0x4000 0 0 0 0 +.syscon mount MS_REC 0x4000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_RELATIME.s b/libc/sysv/consts/MS_RELATIME.s index 6f1d45577..725d512cc 100644 --- a/libc/sysv/consts/MS_RELATIME.s +++ b/libc/sysv/consts/MS_RELATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_RELATIME 0x200000 0 0 0 0 +.syscon mount MS_RELATIME 0x200000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_REMOUNT.s b/libc/sysv/consts/MS_REMOUNT.s index 4457bc8b0..38c49a918 100644 --- a/libc/sysv/consts/MS_REMOUNT.s +++ b/libc/sysv/consts/MS_REMOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_REMOUNT 0x20 0 0 0 0 +.syscon mount MS_REMOUNT 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_RMT_MASK.s b/libc/sysv/consts/MS_RMT_MASK.s index 6045d0c96..c7e093b61 100644 --- a/libc/sysv/consts/MS_RMT_MASK.s +++ b/libc/sysv/consts/MS_RMT_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_RMT_MASK 0x02800051 0 0 0 0 +.syscon mount MS_RMT_MASK 0x02800051 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_SHARED.s b/libc/sysv/consts/MS_SHARED.s index 8f756e5ab..33c6002b9 100644 --- a/libc/sysv/consts/MS_SHARED.s +++ b/libc/sysv/consts/MS_SHARED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_SHARED 0x100000 0 0 0 0 +.syscon mount MS_SHARED 0x100000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_SILENT.s b/libc/sysv/consts/MS_SILENT.s index b91dd347d..e66da6b6a 100644 --- a/libc/sysv/consts/MS_SILENT.s +++ b/libc/sysv/consts/MS_SILENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_SILENT 0x8000 0 0 0 0 +.syscon mount MS_SILENT 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_SLAVE.s b/libc/sysv/consts/MS_SLAVE.s index d948c2912..e01f8edb6 100644 --- a/libc/sysv/consts/MS_SLAVE.s +++ b/libc/sysv/consts/MS_SLAVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_SLAVE 0x080000 0 0 0 0 +.syscon mount MS_SLAVE 0x080000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_STRICTATIME.s b/libc/sysv/consts/MS_STRICTATIME.s index 3307fc277..d438e3592 100644 --- a/libc/sysv/consts/MS_STRICTATIME.s +++ b/libc/sysv/consts/MS_STRICTATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_STRICTATIME 0x01000000 0 0 0 0 +.syscon mount MS_STRICTATIME 0x01000000 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_SYNC.s b/libc/sysv/consts/MS_SYNC.s index 90d5d6db5..52f0e8116 100644 --- a/libc/sysv/consts/MS_SYNC.s +++ b/libc/sysv/consts/MS_SYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ms MS_SYNC 4 16 0 2 4 +.syscon ms MS_SYNC 4 16 0 2 4 4 diff --git a/libc/sysv/consts/MS_SYNCHRONOUS.s b/libc/sysv/consts/MS_SYNCHRONOUS.s index f653c16d4..54e071205 100644 --- a/libc/sysv/consts/MS_SYNCHRONOUS.s +++ b/libc/sysv/consts/MS_SYNCHRONOUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_SYNCHRONOUS 0x10 0 0 0 0 +.syscon mount MS_SYNCHRONOUS 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/MS_UNBINDABLE.s b/libc/sysv/consts/MS_UNBINDABLE.s index ecc655a92..054325e24 100644 --- a/libc/sysv/consts/MS_UNBINDABLE.s +++ b/libc/sysv/consts/MS_UNBINDABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mount MS_UNBINDABLE 0x020000 0 0 0 0 +.syscon mount MS_UNBINDABLE 0x020000 0 0 0 0 0 diff --git a/libc/sysv/consts/MTCOMPRESSION.s b/libc/sysv/consts/MTCOMPRESSION.s index 8851e19a2..9073ca324 100644 --- a/libc/sysv/consts/MTCOMPRESSION.s +++ b/libc/sysv/consts/MTCOMPRESSION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTCOMPRESSION 0x20 0 0 0 0 +.syscon misc MTCOMPRESSION 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/MTERASE.s b/libc/sysv/consts/MTERASE.s index f3b06bb1e..1ee1dc25c 100644 --- a/libc/sysv/consts/MTERASE.s +++ b/libc/sysv/consts/MTERASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTERASE 13 0 12 9 0 +.syscon misc MTERASE 13 0 12 9 9 0 diff --git a/libc/sysv/consts/MTFSFM.s b/libc/sysv/consts/MTFSFM.s index b4c0eea73..1e6d221a6 100644 --- a/libc/sysv/consts/MTFSFM.s +++ b/libc/sysv/consts/MTFSFM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTFSFM 11 0 0 0 0 +.syscon misc MTFSFM 11 0 0 0 0 0 diff --git a/libc/sysv/consts/MTLOAD.s b/libc/sysv/consts/MTLOAD.s index 1e76f211f..af58b7fba 100644 --- a/libc/sysv/consts/MTLOAD.s +++ b/libc/sysv/consts/MTLOAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTLOAD 30 0 19 0 0 +.syscon misc MTLOAD 30 0 19 0 0 0 diff --git a/libc/sysv/consts/MTLOCK.s b/libc/sysv/consts/MTLOCK.s index d33fea9ad..345cbd97d 100644 --- a/libc/sysv/consts/MTLOCK.s +++ b/libc/sysv/consts/MTLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTLOCK 28 0 0 0 0 +.syscon misc MTLOCK 28 0 0 0 0 0 diff --git a/libc/sysv/consts/MTMKPART.s b/libc/sysv/consts/MTMKPART.s index 6e86ad224..42c091d2a 100644 --- a/libc/sysv/consts/MTMKPART.s +++ b/libc/sysv/consts/MTMKPART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTMKPART 34 0 0 0 0 +.syscon misc MTMKPART 34 0 0 0 0 0 diff --git a/libc/sysv/consts/MTRAS1.s b/libc/sysv/consts/MTRAS1.s index 285128e3f..b6e63d47e 100644 --- a/libc/sysv/consts/MTRAS1.s +++ b/libc/sysv/consts/MTRAS1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTRAS1 14 0 0 0 0 +.syscon misc MTRAS1 14 0 0 0 0 0 diff --git a/libc/sysv/consts/MTRAS3.s b/libc/sysv/consts/MTRAS3.s index 423c66c6a..f830cba8c 100644 --- a/libc/sysv/consts/MTRAS3.s +++ b/libc/sysv/consts/MTRAS3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTRAS3 0x10 0 0 0 0 +.syscon misc MTRAS3 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/MTRESET.s b/libc/sysv/consts/MTRESET.s index e371485a0..8973ac381 100644 --- a/libc/sysv/consts/MTRESET.s +++ b/libc/sysv/consts/MTRESET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTRESET 0 0 0 0 0 +.syscon misc MTRESET 0 0 0 0 0 0 diff --git a/libc/sysv/consts/MTRETEN.s b/libc/sysv/consts/MTRETEN.s index 4475d6ece..62b6482d6 100644 --- a/libc/sysv/consts/MTRETEN.s +++ b/libc/sysv/consts/MTRETEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTRETEN 9 0 0 8 0 +.syscon misc MTRETEN 9 0 0 8 8 0 diff --git a/libc/sysv/consts/MTSETBLK.s b/libc/sysv/consts/MTSETBLK.s index 4dee8a01d..5f88db979 100644 --- a/libc/sysv/consts/MTSETBLK.s +++ b/libc/sysv/consts/MTSETBLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTSETBLK 20 0 0 0 0 +.syscon misc MTSETBLK 20 0 0 0 0 0 diff --git a/libc/sysv/consts/MTSETDENSITY.s b/libc/sysv/consts/MTSETDENSITY.s index 699b6f468..ec1c39358 100644 --- a/libc/sysv/consts/MTSETDENSITY.s +++ b/libc/sysv/consts/MTSETDENSITY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTSETDENSITY 21 0 0 0 0 +.syscon misc MTSETDENSITY 21 0 0 0 0 0 diff --git a/libc/sysv/consts/MTSETDRVBUFFER.s b/libc/sysv/consts/MTSETDRVBUFFER.s index 12799e28e..16436f557 100644 --- a/libc/sysv/consts/MTSETDRVBUFFER.s +++ b/libc/sysv/consts/MTSETDRVBUFFER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTSETDRVBUFFER 24 0 0 0 0 +.syscon misc MTSETDRVBUFFER 24 0 0 0 0 0 diff --git a/libc/sysv/consts/MTSETPART.s b/libc/sysv/consts/MTSETPART.s index acccc0fb6..209c700ec 100644 --- a/libc/sysv/consts/MTSETPART.s +++ b/libc/sysv/consts/MTSETPART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTSETPART 33 0 0 0 0 +.syscon misc MTSETPART 33 0 0 0 0 0 diff --git a/libc/sysv/consts/MTUNLOAD.s b/libc/sysv/consts/MTUNLOAD.s index 432770b52..68826a6d9 100644 --- a/libc/sysv/consts/MTUNLOAD.s +++ b/libc/sysv/consts/MTUNLOAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTUNLOAD 31 0 0 0 0 +.syscon misc MTUNLOAD 31 0 0 0 0 0 diff --git a/libc/sysv/consts/MTUNLOCK.s b/libc/sysv/consts/MTUNLOCK.s index 7c5748c10..4511d0813 100644 --- a/libc/sysv/consts/MTUNLOCK.s +++ b/libc/sysv/consts/MTUNLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MTUNLOCK 29 0 0 0 0 +.syscon misc MTUNLOCK 29 0 0 0 0 0 diff --git a/libc/sysv/consts/MT_ST_CAN_PARTITIONS.s b/libc/sysv/consts/MT_ST_CAN_PARTITIONS.s index 4c8acfa3f..c03fb325d 100644 --- a/libc/sysv/consts/MT_ST_CAN_PARTITIONS.s +++ b/libc/sysv/consts/MT_ST_CAN_PARTITIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MT_ST_CAN_PARTITIONS 0x0400 0 0 0 0 +.syscon misc MT_ST_CAN_PARTITIONS 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/MT_ST_HPLOADER_OFFSET.s b/libc/sysv/consts/MT_ST_HPLOADER_OFFSET.s index 23732ec70..14ea98f87 100644 --- a/libc/sysv/consts/MT_ST_HPLOADER_OFFSET.s +++ b/libc/sysv/consts/MT_ST_HPLOADER_OFFSET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MT_ST_HPLOADER_OFFSET 0x2710 0 0 0 0 +.syscon misc MT_ST_HPLOADER_OFFSET 0x2710 0 0 0 0 0 diff --git a/libc/sysv/consts/MT_ST_SCSI2LOGICAL.s b/libc/sysv/consts/MT_ST_SCSI2LOGICAL.s index a63a82aa3..8d7d6bfdd 100644 --- a/libc/sysv/consts/MT_ST_SCSI2LOGICAL.s +++ b/libc/sysv/consts/MT_ST_SCSI2LOGICAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc MT_ST_SCSI2LOGICAL 0x0800 0 0 0 0 +.syscon misc MT_ST_SCSI2LOGICAL 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/NBBY.s b/libc/sysv/consts/NBBY.s index b9d2d802b..825cd6ee4 100644 --- a/libc/sysv/consts/NBBY.s +++ b/libc/sysv/consts/NBBY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NBBY 8 8 8 8 0 +.syscon misc NBBY 8 8 8 8 8 0 diff --git a/libc/sysv/consts/NCARGS.s b/libc/sysv/consts/NCARGS.s index f597706cb..9491893ae 100644 --- a/libc/sysv/consts/NCARGS.s +++ b/libc/sysv/consts/NCARGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NCARGS 0x020000 0x040000 0x040000 0x040000 0 +.syscon misc NCARGS 0x020000 0x040000 0x040000 0x040000 0x040000 0 diff --git a/libc/sysv/consts/NCCS.s b/libc/sysv/consts/NCCS.s index c09b7ede3..4f262d0de 100644 --- a/libc/sysv/consts/NCCS.s +++ b/libc/sysv/consts/NCCS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NCCS 32 32 32 32 32 +.syscon termios NCCS 32 32 32 32 20 32 diff --git a/libc/sysv/consts/ND_NA_FLAG_OVERRIDE.s b/libc/sysv/consts/ND_NA_FLAG_OVERRIDE.s index 42837e0d8..81a161a9a 100644 --- a/libc/sysv/consts/ND_NA_FLAG_OVERRIDE.s +++ b/libc/sysv/consts/ND_NA_FLAG_OVERRIDE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_NA_FLAG_OVERRIDE 0x20 0x20 0x20 0x20 0x20000000 +.syscon nd ND_NA_FLAG_OVERRIDE 0x20 0x20 0x20 0x20 0x20 0x20000000 diff --git a/libc/sysv/consts/ND_NA_FLAG_ROUTER.s b/libc/sysv/consts/ND_NA_FLAG_ROUTER.s index 9fc2b3d24..a4dbc5491 100644 --- a/libc/sysv/consts/ND_NA_FLAG_ROUTER.s +++ b/libc/sysv/consts/ND_NA_FLAG_ROUTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_NA_FLAG_ROUTER 0x80 0x80 0x80 0x80 0x80000000 +.syscon nd ND_NA_FLAG_ROUTER 0x80 0x80 0x80 0x80 0x80 0x80000000 diff --git a/libc/sysv/consts/ND_NA_FLAG_SOLICITED.s b/libc/sysv/consts/ND_NA_FLAG_SOLICITED.s index 9fafa66f4..97be853c1 100644 --- a/libc/sysv/consts/ND_NA_FLAG_SOLICITED.s +++ b/libc/sysv/consts/ND_NA_FLAG_SOLICITED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_NA_FLAG_SOLICITED 0x40 0x40 0x40 0x40 0x40000000 +.syscon nd ND_NA_FLAG_SOLICITED 0x40 0x40 0x40 0x40 0x40 0x40000000 diff --git a/libc/sysv/consts/ND_NEIGHBOR_ADVERT.s b/libc/sysv/consts/ND_NEIGHBOR_ADVERT.s index 5868710f8..a096e639d 100644 --- a/libc/sysv/consts/ND_NEIGHBOR_ADVERT.s +++ b/libc/sysv/consts/ND_NEIGHBOR_ADVERT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_NEIGHBOR_ADVERT 136 136 136 136 0 +.syscon nd ND_NEIGHBOR_ADVERT 136 136 136 136 136 0 diff --git a/libc/sysv/consts/ND_NEIGHBOR_SOLICIT.s b/libc/sysv/consts/ND_NEIGHBOR_SOLICIT.s index 61697ca59..5607d0d86 100644 --- a/libc/sysv/consts/ND_NEIGHBOR_SOLICIT.s +++ b/libc/sysv/consts/ND_NEIGHBOR_SOLICIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_NEIGHBOR_SOLICIT 135 135 135 135 0 +.syscon nd ND_NEIGHBOR_SOLICIT 135 135 135 135 135 0 diff --git a/libc/sysv/consts/ND_RA_FLAG_HOME_AGENT.s b/libc/sysv/consts/ND_RA_FLAG_HOME_AGENT.s index fc72b9e3d..e49f031a0 100644 --- a/libc/sysv/consts/ND_RA_FLAG_HOME_AGENT.s +++ b/libc/sysv/consts/ND_RA_FLAG_HOME_AGENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_RA_FLAG_HOME_AGENT 0x20 0 0 0 0x20 +.syscon nd ND_RA_FLAG_HOME_AGENT 0x20 0 0 0 0 0x20 diff --git a/libc/sysv/consts/ND_RA_FLAG_MANAGED.s b/libc/sysv/consts/ND_RA_FLAG_MANAGED.s index 1b502333d..2ba416792 100644 --- a/libc/sysv/consts/ND_RA_FLAG_MANAGED.s +++ b/libc/sysv/consts/ND_RA_FLAG_MANAGED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_RA_FLAG_MANAGED 0x80 0x80 0x80 0x80 0x80 +.syscon nd ND_RA_FLAG_MANAGED 0x80 0x80 0x80 0x80 0x80 0x80 diff --git a/libc/sysv/consts/ND_RA_FLAG_OTHER.s b/libc/sysv/consts/ND_RA_FLAG_OTHER.s index 1c7bdb663..1da30cdc9 100644 --- a/libc/sysv/consts/ND_RA_FLAG_OTHER.s +++ b/libc/sysv/consts/ND_RA_FLAG_OTHER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_RA_FLAG_OTHER 0x40 0x40 0x40 0x40 0x40 +.syscon nd ND_RA_FLAG_OTHER 0x40 0x40 0x40 0x40 0x40 0x40 diff --git a/libc/sysv/consts/ND_REDIRECT.s b/libc/sysv/consts/ND_REDIRECT.s index 8c0fd82ac..67220bdf0 100644 --- a/libc/sysv/consts/ND_REDIRECT.s +++ b/libc/sysv/consts/ND_REDIRECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_REDIRECT 137 137 137 137 0 +.syscon nd ND_REDIRECT 137 137 137 137 137 0 diff --git a/libc/sysv/consts/ND_ROUTER_ADVERT.s b/libc/sysv/consts/ND_ROUTER_ADVERT.s index 8cb77903d..c8934b5cb 100644 --- a/libc/sysv/consts/ND_ROUTER_ADVERT.s +++ b/libc/sysv/consts/ND_ROUTER_ADVERT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_ROUTER_ADVERT 134 134 134 134 0 +.syscon nd ND_ROUTER_ADVERT 134 134 134 134 134 0 diff --git a/libc/sysv/consts/ND_ROUTER_SOLICIT.s b/libc/sysv/consts/ND_ROUTER_SOLICIT.s index 78e96a54f..8d20618be 100644 --- a/libc/sysv/consts/ND_ROUTER_SOLICIT.s +++ b/libc/sysv/consts/ND_ROUTER_SOLICIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nd ND_ROUTER_SOLICIT 133 133 133 133 0 +.syscon nd ND_ROUTER_SOLICIT 133 133 133 133 133 0 diff --git a/libc/sysv/consts/NETGRAPHDISC.s b/libc/sysv/consts/NETGRAPHDISC.s index 035486b2e..2b00cf08d 100644 --- a/libc/sysv/consts/NETGRAPHDISC.s +++ b/libc/sysv/consts/NETGRAPHDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NETGRAPHDISC 0 0 0x6 0 -1 +.syscon termios NETGRAPHDISC 0 0 0x6 0 0 -1 diff --git a/libc/sysv/consts/NEW_TIME.s b/libc/sysv/consts/NEW_TIME.s index 9e4ca718b..4e3edf24a 100644 --- a/libc/sysv/consts/NEW_TIME.s +++ b/libc/sysv/consts/NEW_TIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NEW_TIME 3 4 3 0 0 +.syscon misc NEW_TIME 3 4 3 0 0 0 diff --git a/libc/sysv/consts/NFDBITS.s b/libc/sysv/consts/NFDBITS.s index 3745c67e7..d83fefc51 100644 --- a/libc/sysv/consts/NFDBITS.s +++ b/libc/sysv/consts/NFDBITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NFDBITS 0x40 0x20 0x40 0x20 0 +.syscon misc NFDBITS 0x40 0x20 0x40 0x20 0x20 0 diff --git a/libc/sysv/consts/NGREG.s b/libc/sysv/consts/NGREG.s index 8dd9b8ede..c87d759ad 100644 --- a/libc/sysv/consts/NGREG.s +++ b/libc/sysv/consts/NGREG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NGREG 23 0 0 0 0 +.syscon misc NGREG 23 0 0 0 0 0 diff --git a/libc/sysv/consts/NGROUPS.s b/libc/sysv/consts/NGROUPS.s index 062481a3d..cca9eb8fb 100644 --- a/libc/sysv/consts/NGROUPS.s +++ b/libc/sysv/consts/NGROUPS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NGROUPS 0x010000 0x10 0x0400 0x10 0 +.syscon misc NGROUPS 0x010000 0x10 0x0400 0x10 0x10 0 diff --git a/libc/sysv/consts/NGROUPS_MAX.s b/libc/sysv/consts/NGROUPS_MAX.s index e153de277..0f586edb6 100644 --- a/libc/sysv/consts/NGROUPS_MAX.s +++ b/libc/sysv/consts/NGROUPS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NGROUPS_MAX 0x010000 0x10 0x03ff 0x10 0 +.syscon misc NGROUPS_MAX 0x010000 0x10 0x03ff 0x10 0x10 0 diff --git a/libc/sysv/consts/NI_DGRAM.s b/libc/sysv/consts/NI_DGRAM.s index 249806ba0..d8c821c50 100644 --- a/libc/sysv/consts/NI_DGRAM.s +++ b/libc/sysv/consts/NI_DGRAM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_DGRAM 0x10 0x10 0x10 0x10 0x10 +.syscon misc NI_DGRAM 0x10 0x10 0x10 0x10 0x10 0x10 diff --git a/libc/sysv/consts/NI_MAXHOST.s b/libc/sysv/consts/NI_MAXHOST.s index cf0b12ed1..02a6ffedd 100644 --- a/libc/sysv/consts/NI_MAXHOST.s +++ b/libc/sysv/consts/NI_MAXHOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_MAXHOST 0x0401 0x0401 0x0401 0x0100 0x0401 +.syscon misc NI_MAXHOST 0x0401 0x0401 0x0401 0x0100 0x0100 0x0401 diff --git a/libc/sysv/consts/NI_MAXSERV.s b/libc/sysv/consts/NI_MAXSERV.s index 15502b5e3..7e850183f 100644 --- a/libc/sysv/consts/NI_MAXSERV.s +++ b/libc/sysv/consts/NI_MAXSERV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_MAXSERV 0x20 0x20 0x20 0x20 0x20 +.syscon misc NI_MAXSERV 0x20 0x20 0x20 0x20 0x20 0x20 diff --git a/libc/sysv/consts/NI_NAMEREQD.s b/libc/sysv/consts/NI_NAMEREQD.s index beaf6f403..2a466c575 100644 --- a/libc/sysv/consts/NI_NAMEREQD.s +++ b/libc/sysv/consts/NI_NAMEREQD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_NAMEREQD 8 4 4 8 4 +.syscon misc NI_NAMEREQD 8 4 4 8 8 4 diff --git a/libc/sysv/consts/NI_NOFQDN.s b/libc/sysv/consts/NI_NOFQDN.s index eb6ce0045..22dda8ac7 100644 --- a/libc/sysv/consts/NI_NOFQDN.s +++ b/libc/sysv/consts/NI_NOFQDN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_NOFQDN 4 1 1 4 1 +.syscon misc NI_NOFQDN 4 1 1 4 4 1 diff --git a/libc/sysv/consts/NI_NUMERICHOST.s b/libc/sysv/consts/NI_NUMERICHOST.s index d3e78b945..52c63039f 100644 --- a/libc/sysv/consts/NI_NUMERICHOST.s +++ b/libc/sysv/consts/NI_NUMERICHOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_NUMERICHOST 1 2 2 1 2 +.syscon misc NI_NUMERICHOST 1 2 2 1 1 2 diff --git a/libc/sysv/consts/NI_NUMERICSCOPE.s b/libc/sysv/consts/NI_NUMERICSCOPE.s index 8c4cc4933..77be6d88c 100644 --- a/libc/sysv/consts/NI_NUMERICSCOPE.s +++ b/libc/sysv/consts/NI_NUMERICSCOPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_NUMERICSCOPE 0 0 0x20 0 0 +.syscon misc NI_NUMERICSCOPE 0 0 0x20 0 0 0 diff --git a/libc/sysv/consts/NI_NUMERICSERV.s b/libc/sysv/consts/NI_NUMERICSERV.s index 01830a591..7eb53a5cc 100644 --- a/libc/sysv/consts/NI_NUMERICSERV.s +++ b/libc/sysv/consts/NI_NUMERICSERV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NI_NUMERICSERV 2 8 8 2 8 +.syscon misc NI_NUMERICSERV 2 8 8 2 2 8 diff --git a/libc/sysv/consts/NL0.s b/libc/sysv/consts/NL0.s index 00ead766b..fec9b3aad 100644 --- a/libc/sysv/consts/NL0.s +++ b/libc/sysv/consts/NL0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NL0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 +.syscon termios NL0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 diff --git a/libc/sysv/consts/NL1.s b/libc/sysv/consts/NL1.s index 71a5c296a..98b693735 100644 --- a/libc/sysv/consts/NL1.s +++ b/libc/sysv/consts/NL1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NL1 0b0000000100000000 0b000000000100000000 0b000000000100000000 0 0b0000000100000000 +.syscon termios NL1 0b0000000100000000 0b000000000100000000 0b000000000100000000 0 0 0b0000000100000000 diff --git a/libc/sysv/consts/NL2.s b/libc/sysv/consts/NL2.s index e45cdaaab..2c6d284a0 100644 --- a/libc/sysv/consts/NL2.s +++ b/libc/sysv/consts/NL2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NL2 0 0b000000001000000000 0b000000001000000000 0 0 +.syscon termios NL2 0 0b000000001000000000 0b000000001000000000 0 0 0 diff --git a/libc/sysv/consts/NL3.s b/libc/sysv/consts/NL3.s index 9d4a07cd1..b488c6c64 100644 --- a/libc/sysv/consts/NL3.s +++ b/libc/sysv/consts/NL3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NL3 0 0b000000001100000000 0b000000001100000000 0 0 +.syscon termios NL3 0 0b000000001100000000 0b000000001100000000 0 0 0 diff --git a/libc/sysv/consts/NLDLY.s b/libc/sysv/consts/NLDLY.s index be274617a..b2f4bfcf9 100644 --- a/libc/sysv/consts/NLDLY.s +++ b/libc/sysv/consts/NLDLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NLDLY 0b0000000100000000 0b000000001100000000 0b000000001100000000 0 0b0000000100000000 +.syscon termios NLDLY 0b0000000100000000 0b000000001100000000 0b000000001100000000 0 0 0b0000000100000000 diff --git a/libc/sysv/consts/NL_ARGMAX.s b/libc/sysv/consts/NL_ARGMAX.s index 76648ea2c..91da09813 100644 --- a/libc/sysv/consts/NL_ARGMAX.s +++ b/libc/sysv/consts/NL_ARGMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_ARGMAX 0x1000 9 0x1000 9 0 +.syscon misc NL_ARGMAX 0x1000 9 0x1000 9 9 0 diff --git a/libc/sysv/consts/NL_CAT_LOCALE.s b/libc/sysv/consts/NL_CAT_LOCALE.s index 257594158..b1d2ccdad 100644 --- a/libc/sysv/consts/NL_CAT_LOCALE.s +++ b/libc/sysv/consts/NL_CAT_LOCALE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_CAT_LOCALE 1 1 1 1 0 +.syscon misc NL_CAT_LOCALE 1 1 1 1 1 0 diff --git a/libc/sysv/consts/NL_LANGMAX.s b/libc/sysv/consts/NL_LANGMAX.s index d84bb146f..74a58677d 100644 --- a/libc/sysv/consts/NL_LANGMAX.s +++ b/libc/sysv/consts/NL_LANGMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_LANGMAX 0x0800 14 31 14 0 +.syscon misc NL_LANGMAX 0x0800 14 31 14 14 0 diff --git a/libc/sysv/consts/NL_MSGMAX.s b/libc/sysv/consts/NL_MSGMAX.s index 7c1eecfba..c848b4886 100644 --- a/libc/sysv/consts/NL_MSGMAX.s +++ b/libc/sysv/consts/NL_MSGMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_MSGMAX 0x7fffffff 0x7fff 0x7fff 0x7fff 0 +.syscon misc NL_MSGMAX 0x7fffffff 0x7fff 0x7fff 0x7fff 0x7fff 0 diff --git a/libc/sysv/consts/NL_NMAX.s b/libc/sysv/consts/NL_NMAX.s index aa57278e0..421c27393 100644 --- a/libc/sysv/consts/NL_NMAX.s +++ b/libc/sysv/consts/NL_NMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_NMAX 0x7fffffff 1 1 0 0 +.syscon misc NL_NMAX 0x7fffffff 1 1 0 0 0 diff --git a/libc/sysv/consts/NL_SETD.s b/libc/sysv/consts/NL_SETD.s index 249d2136a..405f20678 100644 --- a/libc/sysv/consts/NL_SETD.s +++ b/libc/sysv/consts/NL_SETD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_SETD 1 1 0 1 0 +.syscon misc NL_SETD 1 1 0 1 1 0 diff --git a/libc/sysv/consts/NL_SETMAX.s b/libc/sysv/consts/NL_SETMAX.s index f7c77b027..8b34d93ff 100644 --- a/libc/sysv/consts/NL_SETMAX.s +++ b/libc/sysv/consts/NL_SETMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_SETMAX 0x7fffffff 255 255 255 0 +.syscon misc NL_SETMAX 0x7fffffff 255 255 255 255 0 diff --git a/libc/sysv/consts/NL_TEXTMAX.s b/libc/sysv/consts/NL_TEXTMAX.s index 0e78baf92..f0d0896af 100644 --- a/libc/sysv/consts/NL_TEXTMAX.s +++ b/libc/sysv/consts/NL_TEXTMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NL_TEXTMAX 0x7fffffff 0x0800 0x0800 255 0 +.syscon misc NL_TEXTMAX 0x7fffffff 0x0800 0x0800 255 255 0 diff --git a/libc/sysv/consts/NMEADISC.s b/libc/sysv/consts/NMEADISC.s index d5a39582a..082fb9ad8 100644 --- a/libc/sysv/consts/NMEADISC.s +++ b/libc/sysv/consts/NMEADISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NMEADISC 0 0 0 0x7 -1 +.syscon termios NMEADISC 0 0 0 0x7 0x7 -1 diff --git a/libc/sysv/consts/NOEXPR.s b/libc/sysv/consts/NOEXPR.s index d9f63c691..093fdbbfc 100644 --- a/libc/sysv/consts/NOEXPR.s +++ b/libc/sysv/consts/NOEXPR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NOEXPR 0x050001 53 53 49 0 +.syscon misc NOEXPR 0x050001 53 53 49 49 0 diff --git a/libc/sysv/consts/NOFILE.s b/libc/sysv/consts/NOFILE.s index 0a6c1bc4a..76427aade 100644 --- a/libc/sysv/consts/NOFILE.s +++ b/libc/sysv/consts/NOFILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NOFILE 0x0100 0x0100 0x40 0x40 0 +.syscon misc NOFILE 0x0100 0x0100 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/NOFLSH.s b/libc/sysv/consts/NOFLSH.s index a472f8534..166c5f54c 100644 --- a/libc/sysv/consts/NOFLSH.s +++ b/libc/sysv/consts/NOFLSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios NOFLSH 0b0000000010000000 2147483648 2147483648 2147483648 0b0000000010000000 +.syscon termios NOFLSH 0b0000000010000000 2147483648 2147483648 2147483648 2147483648 0b0000000010000000 diff --git a/libc/sysv/consts/NOGROUP.s b/libc/sysv/consts/NOGROUP.s index b55766547..b08b15ee4 100644 --- a/libc/sysv/consts/NOGROUP.s +++ b/libc/sysv/consts/NOGROUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NOGROUP -1 0xffff 0xffff 0xffff 0 +.syscon misc NOGROUP -1 0xffff 0xffff 0xffff 0xffff 0 diff --git a/libc/sysv/consts/NOSTR.s b/libc/sysv/consts/NOSTR.s index 4e97a24e6..2349c4a38 100644 --- a/libc/sysv/consts/NOSTR.s +++ b/libc/sysv/consts/NOSTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NOSTR 0x050003 55 55 48 0 +.syscon misc NOSTR 0x050003 55 55 48 48 0 diff --git a/libc/sysv/consts/NO_ADDRESS.s b/libc/sysv/consts/NO_ADDRESS.s index d0b47d784..db3e29978 100644 --- a/libc/sysv/consts/NO_ADDRESS.s +++ b/libc/sysv/consts/NO_ADDRESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NO_ADDRESS 4 4 4 4 0x2afc +.syscon misc NO_ADDRESS 4 4 4 4 4 0x2afc diff --git a/libc/sysv/consts/NO_DATA.s b/libc/sysv/consts/NO_DATA.s index d89530b2b..e59d4262a 100644 --- a/libc/sysv/consts/NO_DATA.s +++ b/libc/sysv/consts/NO_DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NO_DATA 4 4 4 4 0x2afc +.syscon misc NO_DATA 4 4 4 4 4 0x2afc diff --git a/libc/sysv/consts/NO_RECOVERY.s b/libc/sysv/consts/NO_RECOVERY.s index df4b4078e..586e410d0 100644 --- a/libc/sysv/consts/NO_RECOVERY.s +++ b/libc/sysv/consts/NO_RECOVERY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NO_RECOVERY 3 3 3 3 0x2afb +.syscon misc NO_RECOVERY 3 3 3 3 3 0x2afb diff --git a/libc/sysv/consts/NO_SENSE.s b/libc/sysv/consts/NO_SENSE.s index cbce28e62..464989b70 100644 --- a/libc/sysv/consts/NO_SENSE.s +++ b/libc/sysv/consts/NO_SENSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NO_SENSE 0 0 0 0 0 +.syscon misc NO_SENSE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/NR_DQHASH.s b/libc/sysv/consts/NR_DQHASH.s index 405d60d14..9faecc6ed 100644 --- a/libc/sysv/consts/NR_DQHASH.s +++ b/libc/sysv/consts/NR_DQHASH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NR_DQHASH 43 0 0 0 0 +.syscon misc NR_DQHASH 43 0 0 0 0 0 diff --git a/libc/sysv/consts/NR_DQUOTS.s b/libc/sysv/consts/NR_DQUOTS.s index 33e8de66c..5a1935576 100644 --- a/libc/sysv/consts/NR_DQUOTS.s +++ b/libc/sysv/consts/NR_DQUOTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NR_DQUOTS 0x0100 0 0 0 0 +.syscon misc NR_DQUOTS 0x0100 0 0 0 0 0 diff --git a/libc/sysv/consts/NS_DSA_MAX_BYTES.s b/libc/sysv/consts/NS_DSA_MAX_BYTES.s index 9e4033d1a..6c15aff90 100644 --- a/libc/sysv/consts/NS_DSA_MAX_BYTES.s +++ b/libc/sysv/consts/NS_DSA_MAX_BYTES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_DSA_MAX_BYTES 405 405 405 0 0 +.syscon misc NS_DSA_MAX_BYTES 405 405 405 0 0 0 diff --git a/libc/sysv/consts/NS_DSA_MIN_SIZE.s b/libc/sysv/consts/NS_DSA_MIN_SIZE.s index 791c8603d..0705d3743 100644 --- a/libc/sysv/consts/NS_DSA_MIN_SIZE.s +++ b/libc/sysv/consts/NS_DSA_MIN_SIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_DSA_MIN_SIZE 213 213 213 0 0 +.syscon misc NS_DSA_MIN_SIZE 213 213 213 0 0 0 diff --git a/libc/sysv/consts/NS_DSA_SIG_SIZE.s b/libc/sysv/consts/NS_DSA_SIG_SIZE.s index 060e73b77..5348b2eab 100644 --- a/libc/sysv/consts/NS_DSA_SIG_SIZE.s +++ b/libc/sysv/consts/NS_DSA_SIG_SIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_DSA_SIG_SIZE 41 41 41 0 0 +.syscon misc NS_DSA_SIG_SIZE 41 41 41 0 0 0 diff --git a/libc/sysv/consts/NS_KEY_PROT_DNSSEC.s b/libc/sysv/consts/NS_KEY_PROT_DNSSEC.s index f9c427415..6242cd70b 100644 --- a/libc/sysv/consts/NS_KEY_PROT_DNSSEC.s +++ b/libc/sysv/consts/NS_KEY_PROT_DNSSEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_KEY_PROT_DNSSEC 3 3 3 0 0 +.syscon misc NS_KEY_PROT_DNSSEC 3 3 3 0 0 0 diff --git a/libc/sysv/consts/NS_KEY_PROT_EMAIL.s b/libc/sysv/consts/NS_KEY_PROT_EMAIL.s index 0efbd4881..c80c92b53 100644 --- a/libc/sysv/consts/NS_KEY_PROT_EMAIL.s +++ b/libc/sysv/consts/NS_KEY_PROT_EMAIL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_KEY_PROT_EMAIL 2 2 2 0 0 +.syscon misc NS_KEY_PROT_EMAIL 2 2 2 0 0 0 diff --git a/libc/sysv/consts/NS_KEY_PROT_IPSEC.s b/libc/sysv/consts/NS_KEY_PROT_IPSEC.s index 6d235689d..810d30e61 100644 --- a/libc/sysv/consts/NS_KEY_PROT_IPSEC.s +++ b/libc/sysv/consts/NS_KEY_PROT_IPSEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_KEY_PROT_IPSEC 4 4 4 0 0 +.syscon misc NS_KEY_PROT_IPSEC 4 4 4 0 0 0 diff --git a/libc/sysv/consts/NS_KEY_PROT_TLS.s b/libc/sysv/consts/NS_KEY_PROT_TLS.s index e9e26281a..b49a356a5 100644 --- a/libc/sysv/consts/NS_KEY_PROT_TLS.s +++ b/libc/sysv/consts/NS_KEY_PROT_TLS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_KEY_PROT_TLS 1 1 1 0 0 +.syscon misc NS_KEY_PROT_TLS 1 1 1 0 0 0 diff --git a/libc/sysv/consts/NS_KEY_RESERVED_BITMASK2.s b/libc/sysv/consts/NS_KEY_RESERVED_BITMASK2.s index 858c953ee..1e9f8b176 100644 --- a/libc/sysv/consts/NS_KEY_RESERVED_BITMASK2.s +++ b/libc/sysv/consts/NS_KEY_RESERVED_BITMASK2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_KEY_RESERVED_BITMASK2 0xffff 0xffff 0xffff 0 0 +.syscon misc NS_KEY_RESERVED_BITMASK2 0xffff 0xffff 0xffff 0 0 0 diff --git a/libc/sysv/consts/NS_NXT_MAX.s b/libc/sysv/consts/NS_NXT_MAX.s index 7270536f4..e915a0b13 100644 --- a/libc/sysv/consts/NS_NXT_MAX.s +++ b/libc/sysv/consts/NS_NXT_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_NXT_MAX 127 127 127 0 0 +.syscon misc NS_NXT_MAX 127 127 127 0 0 0 diff --git a/libc/sysv/consts/NS_OPT_DNSSEC_OK.s b/libc/sysv/consts/NS_OPT_DNSSEC_OK.s index e2708a3d3..eb8ecbc1f 100644 --- a/libc/sysv/consts/NS_OPT_DNSSEC_OK.s +++ b/libc/sysv/consts/NS_OPT_DNSSEC_OK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_OPT_DNSSEC_OK 0x8000 0x8000 0x8000 0 0 +.syscon misc NS_OPT_DNSSEC_OK 0x8000 0x8000 0x8000 0 0 0 diff --git a/libc/sysv/consts/NS_TSIG_ERROR_FORMERR.s b/libc/sysv/consts/NS_TSIG_ERROR_FORMERR.s index 84faa52d0..00c36f23b 100644 --- a/libc/sysv/consts/NS_TSIG_ERROR_FORMERR.s +++ b/libc/sysv/consts/NS_TSIG_ERROR_FORMERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_TSIG_ERROR_FORMERR -12 -12 -12 0 0 +.syscon misc NS_TSIG_ERROR_FORMERR -12 -12 -12 0 0 0 diff --git a/libc/sysv/consts/NS_TSIG_ERROR_NO_SPACE.s b/libc/sysv/consts/NS_TSIG_ERROR_NO_SPACE.s index 5c718d607..fd8de1121 100644 --- a/libc/sysv/consts/NS_TSIG_ERROR_NO_SPACE.s +++ b/libc/sysv/consts/NS_TSIG_ERROR_NO_SPACE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_TSIG_ERROR_NO_SPACE -11 -11 -11 0 0 +.syscon misc NS_TSIG_ERROR_NO_SPACE -11 -11 -11 0 0 0 diff --git a/libc/sysv/consts/NS_TSIG_ERROR_NO_TSIG.s b/libc/sysv/consts/NS_TSIG_ERROR_NO_TSIG.s index c4ba84ea0..a65e2465c 100644 --- a/libc/sysv/consts/NS_TSIG_ERROR_NO_TSIG.s +++ b/libc/sysv/consts/NS_TSIG_ERROR_NO_TSIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_TSIG_ERROR_NO_TSIG -10 -10 -10 0 0 +.syscon misc NS_TSIG_ERROR_NO_TSIG -10 -10 -10 0 0 0 diff --git a/libc/sysv/consts/NS_TSIG_FUDGE.s b/libc/sysv/consts/NS_TSIG_FUDGE.s index 242fe02be..1c768f425 100644 --- a/libc/sysv/consts/NS_TSIG_FUDGE.s +++ b/libc/sysv/consts/NS_TSIG_FUDGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_TSIG_FUDGE 300 300 300 0 0 +.syscon misc NS_TSIG_FUDGE 300 300 300 0 0 0 diff --git a/libc/sysv/consts/NS_TSIG_TCP_COUNT.s b/libc/sysv/consts/NS_TSIG_TCP_COUNT.s index 5554f7876..890e3e9e2 100644 --- a/libc/sysv/consts/NS_TSIG_TCP_COUNT.s +++ b/libc/sysv/consts/NS_TSIG_TCP_COUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc NS_TSIG_TCP_COUNT 100 100 100 0 0 +.syscon misc NS_TSIG_TCP_COUNT 100 100 100 0 0 0 diff --git a/libc/sysv/consts/NZERO.s b/libc/sysv/consts/NZERO.s index 9864a9b9e..12c46b479 100644 --- a/libc/sysv/consts/NZERO.s +++ b/libc/sysv/consts/NZERO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prio NZERO 20 20 20 20 20 +.syscon prio NZERO 20 20 20 20 20 20 diff --git a/libc/sysv/consts/N_6PACK.s b/libc/sysv/consts/N_6PACK.s index 5eddb6ac3..319c80076 100644 --- a/libc/sysv/consts/N_6PACK.s +++ b/libc/sysv/consts/N_6PACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_6PACK 7 0 0 0 0 +.syscon misc N_6PACK 7 0 0 0 0 0 diff --git a/libc/sysv/consts/N_AX25.s b/libc/sysv/consts/N_AX25.s index 4ddac44b3..7c268a588 100644 --- a/libc/sysv/consts/N_AX25.s +++ b/libc/sysv/consts/N_AX25.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_AX25 5 0 0 0 0 +.syscon misc N_AX25 5 0 0 0 0 0 diff --git a/libc/sysv/consts/N_HCI.s b/libc/sysv/consts/N_HCI.s index bb82146a1..138b88a95 100644 --- a/libc/sysv/consts/N_HCI.s +++ b/libc/sysv/consts/N_HCI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_HCI 15 0 0 0 0 +.syscon misc N_HCI 15 0 0 0 0 0 diff --git a/libc/sysv/consts/N_HDLC.s b/libc/sysv/consts/N_HDLC.s index 18f321a3d..bc9096136 100644 --- a/libc/sysv/consts/N_HDLC.s +++ b/libc/sysv/consts/N_HDLC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_HDLC 13 0 0 0 0 +.syscon misc N_HDLC 13 0 0 0 0 0 diff --git a/libc/sysv/consts/N_IRDA.s b/libc/sysv/consts/N_IRDA.s index f9ddd4ffe..6ea28219b 100644 --- a/libc/sysv/consts/N_IRDA.s +++ b/libc/sysv/consts/N_IRDA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_IRDA 11 0 0 0 0 +.syscon misc N_IRDA 11 0 0 0 0 0 diff --git a/libc/sysv/consts/N_MASC.s b/libc/sysv/consts/N_MASC.s index 412e69205..1c09a371a 100644 --- a/libc/sysv/consts/N_MASC.s +++ b/libc/sysv/consts/N_MASC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_MASC 8 0 0 0 0 +.syscon misc N_MASC 8 0 0 0 0 0 diff --git a/libc/sysv/consts/N_MOUSE.s b/libc/sysv/consts/N_MOUSE.s index aa59cd513..8ccad88e3 100644 --- a/libc/sysv/consts/N_MOUSE.s +++ b/libc/sysv/consts/N_MOUSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_MOUSE 2 0 0 0 0 +.syscon misc N_MOUSE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/N_PPP.s b/libc/sysv/consts/N_PPP.s index 1d3f15fff..aa2f09fb9 100644 --- a/libc/sysv/consts/N_PPP.s +++ b/libc/sysv/consts/N_PPP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_PPP 3 0 0 0 0 +.syscon misc N_PPP 3 0 0 0 0 0 diff --git a/libc/sysv/consts/N_PROFIBUS_FDL.s b/libc/sysv/consts/N_PROFIBUS_FDL.s index 9e2088cbc..bd48216ce 100644 --- a/libc/sysv/consts/N_PROFIBUS_FDL.s +++ b/libc/sysv/consts/N_PROFIBUS_FDL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_PROFIBUS_FDL 10 0 0 0 0 +.syscon misc N_PROFIBUS_FDL 10 0 0 0 0 0 diff --git a/libc/sysv/consts/N_R3964.s b/libc/sysv/consts/N_R3964.s index 48c1232ac..3ae642bcb 100644 --- a/libc/sysv/consts/N_R3964.s +++ b/libc/sysv/consts/N_R3964.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_R3964 9 0 0 0 0 +.syscon misc N_R3964 9 0 0 0 0 0 diff --git a/libc/sysv/consts/N_SLIP.s b/libc/sysv/consts/N_SLIP.s index 192c4eaab..86360ec9b 100644 --- a/libc/sysv/consts/N_SLIP.s +++ b/libc/sysv/consts/N_SLIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_SLIP 1 0 0 0 0 +.syscon misc N_SLIP 1 0 0 0 0 0 diff --git a/libc/sysv/consts/N_SMSBLOCK.s b/libc/sysv/consts/N_SMSBLOCK.s index 07d99c898..8c756cf5a 100644 --- a/libc/sysv/consts/N_SMSBLOCK.s +++ b/libc/sysv/consts/N_SMSBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_SMSBLOCK 12 0 0 0 0 +.syscon misc N_SMSBLOCK 12 0 0 0 0 0 diff --git a/libc/sysv/consts/N_STRIP.s b/libc/sysv/consts/N_STRIP.s index f46b6193f..5e064a654 100644 --- a/libc/sysv/consts/N_STRIP.s +++ b/libc/sysv/consts/N_STRIP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_STRIP 4 0 0 0 0 +.syscon misc N_STRIP 4 0 0 0 0 0 diff --git a/libc/sysv/consts/N_SYNC_PPP.s b/libc/sysv/consts/N_SYNC_PPP.s index 95ba3e3aa..98dc3684a 100644 --- a/libc/sysv/consts/N_SYNC_PPP.s +++ b/libc/sysv/consts/N_SYNC_PPP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_SYNC_PPP 14 0 0 0 0 +.syscon misc N_SYNC_PPP 14 0 0 0 0 0 diff --git a/libc/sysv/consts/N_TTY.s b/libc/sysv/consts/N_TTY.s index 8e70accf2..e0a7c90c4 100644 --- a/libc/sysv/consts/N_TTY.s +++ b/libc/sysv/consts/N_TTY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_TTY 0 0 0 0 0 +.syscon misc N_TTY 0 0 0 0 0 0 diff --git a/libc/sysv/consts/N_X25.s b/libc/sysv/consts/N_X25.s index d1aa35156..b1f456b32 100644 --- a/libc/sysv/consts/N_X25.s +++ b/libc/sysv/consts/N_X25.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc N_X25 6 0 0 0 0 +.syscon misc N_X25 6 0 0 0 0 0 diff --git a/libc/sysv/consts/OCRNL.s b/libc/sysv/consts/OCRNL.s index 878c58c0e..ae6de92e2 100644 --- a/libc/sysv/consts/OCRNL.s +++ b/libc/sysv/consts/OCRNL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios OCRNL 0b0000000000001000 0b000000000000010000 0b000000000000010000 0b0000000000010000 0b0000000000001000 +.syscon termios OCRNL 0b0000000000001000 0b000000000000010000 0b000000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000001000 diff --git a/libc/sysv/consts/OFDEL.s b/libc/sysv/consts/OFDEL.s index 8298a1f6f..2e83c101a 100644 --- a/libc/sysv/consts/OFDEL.s +++ b/libc/sysv/consts/OFDEL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios OFDEL 0b0000000010000000 0b100000000000000000 0 0 0b0000000010000000 +.syscon termios OFDEL 0b0000000010000000 0b100000000000000000 0 0 0 0b0000000010000000 diff --git a/libc/sysv/consts/OFILL.s b/libc/sysv/consts/OFILL.s index 254b1874f..db18c6fc7 100644 --- a/libc/sysv/consts/OFILL.s +++ b/libc/sysv/consts/OFILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios OFILL 0b0000000001000000 0b000000000010000000 0 0 0b0000000001000000 +.syscon termios OFILL 0b0000000001000000 0b000000000010000000 0 0 0 0b0000000001000000 diff --git a/libc/sysv/consts/OLCUC.s b/libc/sysv/consts/OLCUC.s index 0bc7375a1..5593bfc98 100644 --- a/libc/sysv/consts/OLCUC.s +++ b/libc/sysv/consts/OLCUC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios OLCUC 0b0000000000000010 0b000000000000000000 0 0b0000000000100000 0b0000000000000010 +.syscon termios OLCUC 0b0000000000000010 0b000000000000000000 0 0b0000000000100000 0b0000000000100000 0b0000000000000010 diff --git a/libc/sysv/consts/OLD_TIME.s b/libc/sysv/consts/OLD_TIME.s index 08dc9d14b..694dc16a6 100644 --- a/libc/sysv/consts/OLD_TIME.s +++ b/libc/sysv/consts/OLD_TIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc OLD_TIME 4 3 2 0 0 +.syscon misc OLD_TIME 4 3 2 0 0 0 diff --git a/libc/sysv/consts/ONLCR.s b/libc/sysv/consts/ONLCR.s index e6cd7c31b..0e1b56957 100644 --- a/libc/sysv/consts/ONLCR.s +++ b/libc/sysv/consts/ONLCR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ONLCR 0b0000000000000100 0b000000000000000010 0b000000000000000010 0b0000000000000010 0b0000000000000100 +.syscon termios ONLCR 0b0000000000000100 0b000000000000000010 0b000000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000100 diff --git a/libc/sysv/consts/ONLRET.s b/libc/sysv/consts/ONLRET.s index a3d5f6696..36eee04a1 100644 --- a/libc/sysv/consts/ONLRET.s +++ b/libc/sysv/consts/ONLRET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ONLRET 0b0000000000100000 0b000000000001000000 0b000000000001000000 0b0000000010000000 0b0000000000100000 +.syscon termios ONLRET 0b0000000000100000 0b000000000001000000 0b000000000001000000 0b0000000010000000 0b0000000010000000 0b0000000000100000 diff --git a/libc/sysv/consts/ONOCR.s b/libc/sysv/consts/ONOCR.s index a61333d99..f410cafa3 100644 --- a/libc/sysv/consts/ONOCR.s +++ b/libc/sysv/consts/ONOCR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios ONOCR 0b0000000000010000 0b000000000000100000 0b000000000000100000 0b0000000001000000 0b0000000000010000 +.syscon termios ONOCR 0b0000000000010000 0b000000000000100000 0b000000000000100000 0b0000000001000000 0b0000000001000000 0b0000000000010000 diff --git a/libc/sysv/consts/OPOST.s b/libc/sysv/consts/OPOST.s index 6cb75d46f..c0e7f9b6f 100644 --- a/libc/sysv/consts/OPOST.s +++ b/libc/sysv/consts/OPOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios OPOST 0b0000000000000001 0b000000000000000001 0b000000000000000001 0b0000000000000001 0b0000000000000001 +.syscon termios OPOST 0b0000000000000001 0b000000000000000001 0b000000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 diff --git a/libc/sysv/consts/ORDERED_QUEUE_TAG.s b/libc/sysv/consts/ORDERED_QUEUE_TAG.s index f27059df3..d8a1b52f9 100644 --- a/libc/sysv/consts/ORDERED_QUEUE_TAG.s +++ b/libc/sysv/consts/ORDERED_QUEUE_TAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ORDERED_QUEUE_TAG 34 0 0 0 0 +.syscon misc ORDERED_QUEUE_TAG 34 0 0 0 0 0 diff --git a/libc/sysv/consts/ORIG_RAX.s b/libc/sysv/consts/ORIG_RAX.s index 366b4ff0c..f8cf9503e 100644 --- a/libc/sysv/consts/ORIG_RAX.s +++ b/libc/sysv/consts/ORIG_RAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ORIG_RAX 15 0 0 0 0 +.syscon misc ORIG_RAX 15 0 0 0 0 0 diff --git a/libc/sysv/consts/O_ACCMODE.s b/libc/sysv/consts/O_ACCMODE.s index d46a77153..dfeec7d24 100644 --- a/libc/sysv/consts/O_ACCMODE.s +++ b/libc/sysv/consts/O_ACCMODE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_ACCMODE 3 3 3 3 0xE0000000 +.syscon open O_ACCMODE 3 3 3 3 3 0xE0000000 diff --git a/libc/sysv/consts/O_APPEND.s b/libc/sysv/consts/O_APPEND.s index fb91c0704..8798a6f63 100644 --- a/libc/sysv/consts/O_APPEND.s +++ b/libc/sysv/consts/O_APPEND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_APPEND 0x0400 8 8 8 0x00000004 +.syscon open O_APPEND 0x0400 8 8 8 8 0x00000004 diff --git a/libc/sysv/consts/O_ASYNC.s b/libc/sysv/consts/O_ASYNC.s index 6f233ec76..bd0830ae8 100644 --- a/libc/sysv/consts/O_ASYNC.s +++ b/libc/sysv/consts/O_ASYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_ASYNC 0x2000 0x40 0x40 0x40 0 +.syscon open O_ASYNC 0x2000 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/O_CLOEXEC.s b/libc/sysv/consts/O_CLOEXEC.s index 0390887f3..bc648380b 100644 --- a/libc/sysv/consts/O_CLOEXEC.s +++ b/libc/sysv/consts/O_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x00080000 +.syscon open O_CLOEXEC 0x080000 0x01000000 0x100000 0x010000 0x400000 0x00080000 diff --git a/libc/sysv/consts/O_CREAT.s b/libc/sysv/consts/O_CREAT.s index 43c53e0ad..00cf6f5d0 100644 --- a/libc/sysv/consts/O_CREAT.s +++ b/libc/sysv/consts/O_CREAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_CREAT 0x40 0x0200 0x0200 0x0200 0x00000040 +.syscon open O_CREAT 0x40 0x0200 0x0200 0x0200 0x0200 0x00000040 diff --git a/libc/sysv/consts/O_DIRECT.s b/libc/sysv/consts/O_DIRECT.s index dd8868e75..9ed06e953 100644 --- a/libc/sysv/consts/O_DIRECT.s +++ b/libc/sysv/consts/O_DIRECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_DIRECT 0x4000 0 0x010000 0 0x00200000 +.syscon open O_DIRECT 0x4000 0 0x010000 0 0x80000 0x00200000 diff --git a/libc/sysv/consts/O_DIRECTORY.s b/libc/sysv/consts/O_DIRECTORY.s index 72a3af842..63efac655 100644 --- a/libc/sysv/consts/O_DIRECTORY.s +++ b/libc/sysv/consts/O_DIRECTORY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_DIRECTORY 0x010000 0x100000 0x020000 0x020000 0x02000000 +.syscon open O_DIRECTORY 0x010000 0x100000 0x020000 0x020000 0x200000 0x02000000 diff --git a/libc/sysv/consts/O_DSYNC.s b/libc/sysv/consts/O_DSYNC.s index bf1907eed..078a1206e 100644 --- a/libc/sysv/consts/O_DSYNC.s +++ b/libc/sysv/consts/O_DSYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_DSYNC 0x1000 0x400000 0 0x80 0 +.syscon open O_DSYNC 0x1000 0x400000 0 0x80 0x10000 0 diff --git a/libc/sysv/consts/O_EXCL.s b/libc/sysv/consts/O_EXCL.s index 46cd799d2..636f558c2 100644 --- a/libc/sysv/consts/O_EXCL.s +++ b/libc/sysv/consts/O_EXCL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_EXCL 0x80 0x0800 0x0800 0x0800 0x00000080 +.syscon open O_EXCL 0x80 0x0800 0x0800 0x0800 0x0800 0x00000080 diff --git a/libc/sysv/consts/O_EXEC.s b/libc/sysv/consts/O_EXEC.s index 4597d7240..e1ee63705 100644 --- a/libc/sysv/consts/O_EXEC.s +++ b/libc/sysv/consts/O_EXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_EXEC 0 0 0x040000 0 0 +.syscon open O_EXEC 0 0 0x040000 0 0x4000000 0 diff --git a/libc/sysv/consts/O_LARGEFILE.s b/libc/sysv/consts/O_LARGEFILE.s index a2d61c0ac..983a13ed3 100644 --- a/libc/sysv/consts/O_LARGEFILE.s +++ b/libc/sysv/consts/O_LARGEFILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat O_LARGEFILE 0 0 0 0 0 +.syscon compat O_LARGEFILE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/O_NDELAY.s b/libc/sysv/consts/O_NDELAY.s index d1218aa8e..46efa00be 100644 --- a/libc/sysv/consts/O_NDELAY.s +++ b/libc/sysv/consts/O_NDELAY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_NDELAY 0x0800 4 4 4 0 +.syscon open O_NDELAY 0x0800 4 4 4 4 0 diff --git a/libc/sysv/consts/O_NOATIME.s b/libc/sysv/consts/O_NOATIME.s index 5f5d01ab0..e2794549e 100644 --- a/libc/sysv/consts/O_NOATIME.s +++ b/libc/sysv/consts/O_NOATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_NOATIME 0x040000 0 0 0 0 +.syscon open O_NOATIME 0x040000 0 0 0 0 0 diff --git a/libc/sysv/consts/O_NOCTTY.s b/libc/sysv/consts/O_NOCTTY.s index b85a89b06..f42459072 100644 --- a/libc/sysv/consts/O_NOCTTY.s +++ b/libc/sysv/consts/O_NOCTTY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_NOCTTY 0x0100 0x020000 0x8000 0x8000 0 +.syscon open O_NOCTTY 0x0100 0x020000 0x8000 0x8000 0x8000 0 diff --git a/libc/sysv/consts/O_NOFOLLOW.s b/libc/sysv/consts/O_NOFOLLOW.s index 90c3a09f8..285f1122e 100644 --- a/libc/sysv/consts/O_NOFOLLOW.s +++ b/libc/sysv/consts/O_NOFOLLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_NOFOLLOW 0x020000 0x0100 0x0100 0x0100 0 +.syscon open O_NOFOLLOW 0x020000 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/O_NONBLOCK.s b/libc/sysv/consts/O_NONBLOCK.s index d94745329..4894525ef 100644 --- a/libc/sysv/consts/O_NONBLOCK.s +++ b/libc/sysv/consts/O_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_NONBLOCK 0x0800 4 4 4 0x00000800 +.syscon open O_NONBLOCK 0x0800 4 4 4 4 0x00000800 diff --git a/libc/sysv/consts/O_PATH.s b/libc/sysv/consts/O_PATH.s index 2f01f35f1..7e3230080 100644 --- a/libc/sysv/consts/O_PATH.s +++ b/libc/sysv/consts/O_PATH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_PATH 0x200000 0 0 0 0 +.syscon open O_PATH 0x200000 0 0 0 0 0 diff --git a/libc/sysv/consts/O_RDONLY.s b/libc/sysv/consts/O_RDONLY.s index 5bb4e01e7..c9afa07d2 100644 --- a/libc/sysv/consts/O_RDONLY.s +++ b/libc/sysv/consts/O_RDONLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_RDONLY 0 0 0 0 0xA0000000 +.syscon open O_RDONLY 0 0 0 0 0 0xA0000000 diff --git a/libc/sysv/consts/O_RDWR.s b/libc/sysv/consts/O_RDWR.s index 1a1dd54ba..79f23c98d 100644 --- a/libc/sysv/consts/O_RDWR.s +++ b/libc/sysv/consts/O_RDWR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_RDWR 2 2 2 2 0xE0000000 +.syscon open O_RDWR 2 2 2 2 2 0xE0000000 diff --git a/libc/sysv/consts/O_RSYNC.s b/libc/sysv/consts/O_RSYNC.s index 550d9761f..0ac504a87 100644 --- a/libc/sysv/consts/O_RSYNC.s +++ b/libc/sysv/consts/O_RSYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_RSYNC 0x101000 0 0 0x80 0 +.syscon open O_RSYNC 0x101000 0 0 0x80 0x20000 0 diff --git a/libc/sysv/consts/O_SPARSE.s b/libc/sysv/consts/O_SPARSE.s index cfe68fcdf..cd31c751e 100644 --- a/libc/sysv/consts/O_SPARSE.s +++ b/libc/sysv/consts/O_SPARSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_SPARSE 0 0 0 0 0x00040000 +.syscon open O_SPARSE 0 0 0 0 0 0x00040000 diff --git a/libc/sysv/consts/O_SYNC.s b/libc/sysv/consts/O_SYNC.s index 43da10c53..5591c801b 100644 --- a/libc/sysv/consts/O_SYNC.s +++ b/libc/sysv/consts/O_SYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_SYNC 0x101000 0x80 0x80 0x80 0 +.syscon open O_SYNC 0x101000 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/O_TMPFILE.s b/libc/sysv/consts/O_TMPFILE.s index 719d64c4d..9499278d6 100644 --- a/libc/sysv/consts/O_TMPFILE.s +++ b/libc/sysv/consts/O_TMPFILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_TMPFILE 0x410000 0 0 0 0x04000100 +.syscon open O_TMPFILE 0x410000 0 0 0 0 0x04000100 diff --git a/libc/sysv/consts/O_TRUNC.s b/libc/sysv/consts/O_TRUNC.s index 2b670c050..89d19b980 100644 --- a/libc/sysv/consts/O_TRUNC.s +++ b/libc/sysv/consts/O_TRUNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_TRUNC 0x0200 0x0400 0x0400 0x0400 0x00000200 +.syscon open O_TRUNC 0x0200 0x0400 0x0400 0x0400 0x0400 0x00000200 diff --git a/libc/sysv/consts/O_TTY_INIT.s b/libc/sysv/consts/O_TTY_INIT.s index 8b645f4f4..a2876be45 100644 --- a/libc/sysv/consts/O_TTY_INIT.s +++ b/libc/sysv/consts/O_TTY_INIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_TTY_INIT 0 0 0x080000 0 0 +.syscon open O_TTY_INIT 0 0 0x080000 0 0 0 diff --git a/libc/sysv/consts/O_WRONLY.s b/libc/sysv/consts/O_WRONLY.s index 3ec7a9517..0ef70bdfb 100644 --- a/libc/sysv/consts/O_WRONLY.s +++ b/libc/sysv/consts/O_WRONLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon open O_WRONLY 1 1 1 1 0x40000000 +.syscon open O_WRONLY 1 1 1 1 1 0x40000000 diff --git a/libc/sysv/consts/PARENB.s b/libc/sysv/consts/PARENB.s index 251c18245..8679cf5d9 100644 --- a/libc/sysv/consts/PARENB.s +++ b/libc/sysv/consts/PARENB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios PARENB 0x0100 0x1000 0x1000 0x1000 0 +.syscon termios PARENB 0x0100 0x1000 0x1000 0x1000 0x1000 0 diff --git a/libc/sysv/consts/PARMRK.s b/libc/sysv/consts/PARMRK.s index d418978b5..331e1d909 100644 --- a/libc/sysv/consts/PARMRK.s +++ b/libc/sysv/consts/PARMRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios PARMRK 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 +.syscon termios PARMRK 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 diff --git a/libc/sysv/consts/PARODD.s b/libc/sysv/consts/PARODD.s index 636f71409..a5ff67e39 100644 --- a/libc/sysv/consts/PARODD.s +++ b/libc/sysv/consts/PARODD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios PARODD 0x0200 0x2000 0x2000 0x2000 0 +.syscon termios PARODD 0x0200 0x2000 0x2000 0x2000 0x2000 0 diff --git a/libc/sysv/consts/PENDIN.s b/libc/sysv/consts/PENDIN.s index fbdc44148..3caf8f7f4 100644 --- a/libc/sysv/consts/PENDIN.s +++ b/libc/sysv/consts/PENDIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios PENDIN 0b0100000000000000 536870912 536870912 536870912 0b0100000000000000 +.syscon termios PENDIN 0b0100000000000000 536870912 536870912 536870912 536870912 0b0100000000000000 diff --git a/libc/sysv/consts/PERSISTENT_RESERVE_IN.s b/libc/sysv/consts/PERSISTENT_RESERVE_IN.s index c0b8a244d..573868209 100644 --- a/libc/sysv/consts/PERSISTENT_RESERVE_IN.s +++ b/libc/sysv/consts/PERSISTENT_RESERVE_IN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PERSISTENT_RESERVE_IN 94 0 0 0 0 +.syscon misc PERSISTENT_RESERVE_IN 94 0 0 0 0 0 diff --git a/libc/sysv/consts/PERSISTENT_RESERVE_OUT.s b/libc/sysv/consts/PERSISTENT_RESERVE_OUT.s index 9d8b05a77..9854a7c15 100644 --- a/libc/sysv/consts/PERSISTENT_RESERVE_OUT.s +++ b/libc/sysv/consts/PERSISTENT_RESERVE_OUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PERSISTENT_RESERVE_OUT 95 0 0 0 0 +.syscon misc PERSISTENT_RESERVE_OUT 95 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_ALG.s b/libc/sysv/consts/PF_ALG.s index 9927a3846..540b0bfcb 100644 --- a/libc/sysv/consts/PF_ALG.s +++ b/libc/sysv/consts/PF_ALG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ALG 38 0 0 0 0 +.syscon pf PF_ALG 38 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_APPLETALK.s b/libc/sysv/consts/PF_APPLETALK.s index a391534ab..c04055671 100644 --- a/libc/sysv/consts/PF_APPLETALK.s +++ b/libc/sysv/consts/PF_APPLETALK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_APPLETALK 5 0x10 0x10 0x10 0x10 +.syscon pf PF_APPLETALK 5 0x10 0x10 0x10 0x10 0x10 diff --git a/libc/sysv/consts/PF_ASH.s b/libc/sysv/consts/PF_ASH.s index 07584ef00..13621bd7c 100644 --- a/libc/sysv/consts/PF_ASH.s +++ b/libc/sysv/consts/PF_ASH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ASH 18 0 0 0 0 +.syscon pf PF_ASH 18 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_ATMPVC.s b/libc/sysv/consts/PF_ATMPVC.s index b7ccacdfd..fd071acdd 100644 --- a/libc/sysv/consts/PF_ATMPVC.s +++ b/libc/sysv/consts/PF_ATMPVC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ATMPVC 8 0 0 0 0 +.syscon pf PF_ATMPVC 8 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_ATMSVC.s b/libc/sysv/consts/PF_ATMSVC.s index 8b2b3a9e6..96876f5c3 100644 --- a/libc/sysv/consts/PF_ATMSVC.s +++ b/libc/sysv/consts/PF_ATMSVC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ATMSVC 20 0 0 0 0 +.syscon pf PF_ATMSVC 20 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_AX25.s b/libc/sysv/consts/PF_AX25.s index 44481f66e..bea958c76 100644 --- a/libc/sysv/consts/PF_AX25.s +++ b/libc/sysv/consts/PF_AX25.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_AX25 3 0 0 0 0 +.syscon pf PF_AX25 3 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_BLUETOOTH.s b/libc/sysv/consts/PF_BLUETOOTH.s index 41013a11d..05c2f3b44 100644 --- a/libc/sysv/consts/PF_BLUETOOTH.s +++ b/libc/sysv/consts/PF_BLUETOOTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_BLUETOOTH 31 0 36 0x20 0 +.syscon pf PF_BLUETOOTH 31 0 36 0x20 0x20 0 diff --git a/libc/sysv/consts/PF_BRIDGE.s b/libc/sysv/consts/PF_BRIDGE.s index 4567cc7f8..f20beb7f3 100644 --- a/libc/sysv/consts/PF_BRIDGE.s +++ b/libc/sysv/consts/PF_BRIDGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_BRIDGE 7 0 0 0 0 +.syscon pf PF_BRIDGE 7 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_CAIF.s b/libc/sysv/consts/PF_CAIF.s index 1d0519af3..c7106fea5 100644 --- a/libc/sysv/consts/PF_CAIF.s +++ b/libc/sysv/consts/PF_CAIF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_CAIF 37 0 0 0 0 +.syscon pf PF_CAIF 37 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_CAN.s b/libc/sysv/consts/PF_CAN.s index 100d62126..1a5882730 100644 --- a/libc/sysv/consts/PF_CAN.s +++ b/libc/sysv/consts/PF_CAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_CAN 29 0 0 0 0 +.syscon pf PF_CAN 29 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_ECONET.s b/libc/sysv/consts/PF_ECONET.s index ceb313cc0..ca3c7bfc1 100644 --- a/libc/sysv/consts/PF_ECONET.s +++ b/libc/sysv/consts/PF_ECONET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ECONET 19 0 0 0 0 +.syscon pf PF_ECONET 19 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_FILE.s b/libc/sysv/consts/PF_FILE.s index d3d97874b..5ad7c983f 100644 --- a/libc/sysv/consts/PF_FILE.s +++ b/libc/sysv/consts/PF_FILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_FILE 1 0 0 0 0 +.syscon pf PF_FILE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_IB.s b/libc/sysv/consts/PF_IB.s index a97c54a99..8d0cf76b5 100644 --- a/libc/sysv/consts/PF_IB.s +++ b/libc/sysv/consts/PF_IB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_IB 27 0 0 0 0 +.syscon pf PF_IB 27 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_IEEE802154.s b/libc/sysv/consts/PF_IEEE802154.s index 7a669e6a3..01fcb1ac3 100644 --- a/libc/sysv/consts/PF_IEEE802154.s +++ b/libc/sysv/consts/PF_IEEE802154.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_IEEE802154 36 0 0 0 0 +.syscon pf PF_IEEE802154 36 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_INET.s b/libc/sysv/consts/PF_INET.s index b1462bb27..dee568e43 100644 --- a/libc/sysv/consts/PF_INET.s +++ b/libc/sysv/consts/PF_INET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_INET 2 2 2 2 0 +.syscon pf PF_INET 2 2 2 2 2 0 diff --git a/libc/sysv/consts/PF_INET6.s b/libc/sysv/consts/PF_INET6.s index 16690feb7..53c00cf24 100644 --- a/libc/sysv/consts/PF_INET6.s +++ b/libc/sysv/consts/PF_INET6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_INET6 10 30 28 24 23 +.syscon pf PF_INET6 10 30 28 24 24 23 diff --git a/libc/sysv/consts/PF_IPX.s b/libc/sysv/consts/PF_IPX.s index 8731d656f..6b5f25f6d 100644 --- a/libc/sysv/consts/PF_IPX.s +++ b/libc/sysv/consts/PF_IPX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_IPX 4 23 23 23 0 +.syscon pf PF_IPX 4 23 23 23 23 0 diff --git a/libc/sysv/consts/PF_IRDA.s b/libc/sysv/consts/PF_IRDA.s index f28cb719a..895c1aacc 100644 --- a/libc/sysv/consts/PF_IRDA.s +++ b/libc/sysv/consts/PF_IRDA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_IRDA 23 0 0 0 0 +.syscon pf PF_IRDA 23 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_ISDN.s b/libc/sysv/consts/PF_ISDN.s index e0894fff9..07b237851 100644 --- a/libc/sysv/consts/PF_ISDN.s +++ b/libc/sysv/consts/PF_ISDN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ISDN 34 28 26 26 0 +.syscon pf PF_ISDN 34 28 26 26 26 0 diff --git a/libc/sysv/consts/PF_IUCV.s b/libc/sysv/consts/PF_IUCV.s index 74d521fe2..e6347ad7c 100644 --- a/libc/sysv/consts/PF_IUCV.s +++ b/libc/sysv/consts/PF_IUCV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_IUCV 0x20 0 0 0 0 +.syscon pf PF_IUCV 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_KCM.s b/libc/sysv/consts/PF_KCM.s index b4e9c857d..cf42692b0 100644 --- a/libc/sysv/consts/PF_KCM.s +++ b/libc/sysv/consts/PF_KCM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_KCM 41 0 0 0 0 +.syscon pf PF_KCM 41 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_KEY.s b/libc/sysv/consts/PF_KEY.s index 4063d073d..021e50776 100644 --- a/libc/sysv/consts/PF_KEY.s +++ b/libc/sysv/consts/PF_KEY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_KEY 15 29 27 30 0 +.syscon pf PF_KEY 15 29 27 30 30 0 diff --git a/libc/sysv/consts/PF_LLC.s b/libc/sysv/consts/PF_LLC.s index 78a310e10..ef4e63fc2 100644 --- a/libc/sysv/consts/PF_LLC.s +++ b/libc/sysv/consts/PF_LLC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_LLC 26 0 0 0 0 +.syscon pf PF_LLC 26 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_LOCAL.s b/libc/sysv/consts/PF_LOCAL.s index 334c0aa70..ce60d90c4 100644 --- a/libc/sysv/consts/PF_LOCAL.s +++ b/libc/sysv/consts/PF_LOCAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_LOCAL 1 1 1 1 0 +.syscon pf PF_LOCAL 1 1 1 1 1 0 diff --git a/libc/sysv/consts/PF_MAX.s b/libc/sysv/consts/PF_MAX.s index a36a1438f..af366840a 100644 --- a/libc/sysv/consts/PF_MAX.s +++ b/libc/sysv/consts/PF_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_MAX 42 40 42 36 35 +.syscon pf PF_MAX 42 40 42 36 36 35 diff --git a/libc/sysv/consts/PF_MPLS.s b/libc/sysv/consts/PF_MPLS.s index 6e267d952..9fa41a82e 100644 --- a/libc/sysv/consts/PF_MPLS.s +++ b/libc/sysv/consts/PF_MPLS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_MPLS 28 0 0 33 0 +.syscon pf PF_MPLS 28 0 0 33 33 0 diff --git a/libc/sysv/consts/PF_NETBEUI.s b/libc/sysv/consts/PF_NETBEUI.s index 3657f2599..5261dec70 100644 --- a/libc/sysv/consts/PF_NETBEUI.s +++ b/libc/sysv/consts/PF_NETBEUI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_NETBEUI 13 0 0 0 0 +.syscon pf PF_NETBEUI 13 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_NETLINK.s b/libc/sysv/consts/PF_NETLINK.s index 163056a93..c1b8dd0a8 100644 --- a/libc/sysv/consts/PF_NETLINK.s +++ b/libc/sysv/consts/PF_NETLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_NETLINK 0x10 0 0 0 0 +.syscon pf PF_NETLINK 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_NETROM.s b/libc/sysv/consts/PF_NETROM.s index 8a306025a..65de070e0 100644 --- a/libc/sysv/consts/PF_NETROM.s +++ b/libc/sysv/consts/PF_NETROM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_NETROM 6 0 0 0 0 +.syscon pf PF_NETROM 6 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_NFC.s b/libc/sysv/consts/PF_NFC.s index 4f20d5559..b02ff6ed6 100644 --- a/libc/sysv/consts/PF_NFC.s +++ b/libc/sysv/consts/PF_NFC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_NFC 39 0 0 0 0 +.syscon pf PF_NFC 39 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_PACKET.s b/libc/sysv/consts/PF_PACKET.s index 6edd3d73e..4222fe4a5 100644 --- a/libc/sysv/consts/PF_PACKET.s +++ b/libc/sysv/consts/PF_PACKET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_PACKET 17 0 0 0 0 +.syscon pf PF_PACKET 17 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_PHONET.s b/libc/sysv/consts/PF_PHONET.s index 37fe30de5..a756f26f3 100644 --- a/libc/sysv/consts/PF_PHONET.s +++ b/libc/sysv/consts/PF_PHONET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_PHONET 35 0 0 0 0 +.syscon pf PF_PHONET 35 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_PPPOX.s b/libc/sysv/consts/PF_PPPOX.s index 9394a0f56..be3e35883 100644 --- a/libc/sysv/consts/PF_PPPOX.s +++ b/libc/sysv/consts/PF_PPPOX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_PPPOX 24 0 0 0 0 +.syscon pf PF_PPPOX 24 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_RDS.s b/libc/sysv/consts/PF_RDS.s index 1ed719bb0..2d7c35443 100644 --- a/libc/sysv/consts/PF_RDS.s +++ b/libc/sysv/consts/PF_RDS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_RDS 21 0 0 0 0 +.syscon pf PF_RDS 21 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_ROSE.s b/libc/sysv/consts/PF_ROSE.s index 4bd31b223..18e2c20a6 100644 --- a/libc/sysv/consts/PF_ROSE.s +++ b/libc/sysv/consts/PF_ROSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ROSE 11 0 0 0 0 +.syscon pf PF_ROSE 11 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_ROUTE.s b/libc/sysv/consts/PF_ROUTE.s index e39e5b318..1b32308fb 100644 --- a/libc/sysv/consts/PF_ROUTE.s +++ b/libc/sysv/consts/PF_ROUTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_ROUTE 0x10 17 17 17 0 +.syscon pf PF_ROUTE 0x10 17 17 17 17 0 diff --git a/libc/sysv/consts/PF_RXRPC.s b/libc/sysv/consts/PF_RXRPC.s index 0363b3f00..2e4bb5e23 100644 --- a/libc/sysv/consts/PF_RXRPC.s +++ b/libc/sysv/consts/PF_RXRPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_RXRPC 33 0 0 0 0 +.syscon pf PF_RXRPC 33 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_SECURITY.s b/libc/sysv/consts/PF_SECURITY.s index ebdf7b56b..256a18d0e 100644 --- a/libc/sysv/consts/PF_SECURITY.s +++ b/libc/sysv/consts/PF_SECURITY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_SECURITY 14 0 0 0 0 +.syscon pf PF_SECURITY 14 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_SNA.s b/libc/sysv/consts/PF_SNA.s index fd6efc4d3..7bcd6638c 100644 --- a/libc/sysv/consts/PF_SNA.s +++ b/libc/sysv/consts/PF_SNA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_SNA 22 11 11 11 11 +.syscon pf PF_SNA 22 11 11 11 11 11 diff --git a/libc/sysv/consts/PF_TIPC.s b/libc/sysv/consts/PF_TIPC.s index 545cdb5af..eedc19c3e 100644 --- a/libc/sysv/consts/PF_TIPC.s +++ b/libc/sysv/consts/PF_TIPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_TIPC 30 0 0 0 0 +.syscon pf PF_TIPC 30 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_UNIX.s b/libc/sysv/consts/PF_UNIX.s index c9f8c84cc..bac9fd751 100644 --- a/libc/sysv/consts/PF_UNIX.s +++ b/libc/sysv/consts/PF_UNIX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_UNIX 1 1 1 1 1 +.syscon pf PF_UNIX 1 1 1 1 1 1 diff --git a/libc/sysv/consts/PF_UNSPEC.s b/libc/sysv/consts/PF_UNSPEC.s index 3dc1510ba..0c37551c0 100644 --- a/libc/sysv/consts/PF_UNSPEC.s +++ b/libc/sysv/consts/PF_UNSPEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_UNSPEC 0 0 0 0 0 +.syscon pf PF_UNSPEC 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_VSOCK.s b/libc/sysv/consts/PF_VSOCK.s index 0f1c5fac2..52ab62e45 100644 --- a/libc/sysv/consts/PF_VSOCK.s +++ b/libc/sysv/consts/PF_VSOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_VSOCK 40 0 0 0 0 +.syscon pf PF_VSOCK 40 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_WANPIPE.s b/libc/sysv/consts/PF_WANPIPE.s index 68e89a51b..b3e4c4509 100644 --- a/libc/sysv/consts/PF_WANPIPE.s +++ b/libc/sysv/consts/PF_WANPIPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_WANPIPE 25 0 0 0 0 +.syscon pf PF_WANPIPE 25 0 0 0 0 0 diff --git a/libc/sysv/consts/PF_X25.s b/libc/sysv/consts/PF_X25.s index 2c13ca729..6dddf0838 100644 --- a/libc/sysv/consts/PF_X25.s +++ b/libc/sysv/consts/PF_X25.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pf PF_X25 9 0 0 0 0 +.syscon pf PF_X25 9 0 0 0 0 0 diff --git a/libc/sysv/consts/PIPE_BUF.s b/libc/sysv/consts/PIPE_BUF.s index d7c41afad..7ae7e0bc6 100644 --- a/libc/sysv/consts/PIPE_BUF.s +++ b/libc/sysv/consts/PIPE_BUF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PIPE_BUF 0x1000 0x0200 0x0200 0x0200 0 +.syscon misc PIPE_BUF 0x1000 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/PM_STR.s b/libc/sysv/consts/PM_STR.s index 0bc25e008..c63fb67cc 100644 --- a/libc/sysv/consts/PM_STR.s +++ b/libc/sysv/consts/PM_STR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PM_STR 0x020027 6 6 5 0 +.syscon misc PM_STR 0x020027 6 6 5 5 0 diff --git a/libc/sysv/consts/POLLERR.s b/libc/sysv/consts/POLLERR.s index e407418e2..581bedb37 100644 --- a/libc/sysv/consts/POLLERR.s +++ b/libc/sysv/consts/POLLERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLERR 8 8 8 8 1 +.syscon poll POLLERR 8 8 8 8 8 1 diff --git a/libc/sysv/consts/POLLHUP.s b/libc/sysv/consts/POLLHUP.s index a5e32108a..9145cf5dc 100644 --- a/libc/sysv/consts/POLLHUP.s +++ b/libc/sysv/consts/POLLHUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLHUP 0x10 0x10 0x10 0x10 2 +.syscon poll POLLHUP 0x10 0x10 0x10 0x10 0x10 2 diff --git a/libc/sysv/consts/POLLIN.s b/libc/sysv/consts/POLLIN.s index 4d46e8d98..6ab478b15 100644 --- a/libc/sysv/consts/POLLIN.s +++ b/libc/sysv/consts/POLLIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLIN 1 1 1 1 0x300 +.syscon poll POLLIN 1 1 1 1 1 0x300 diff --git a/libc/sysv/consts/POLLNVAL.s b/libc/sysv/consts/POLLNVAL.s index 0f1fe07ba..fa57c3483 100644 --- a/libc/sysv/consts/POLLNVAL.s +++ b/libc/sysv/consts/POLLNVAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLNVAL 0x20 0x20 0x20 0x20 4 +.syscon poll POLLNVAL 0x20 0x20 0x20 0x20 0x20 4 diff --git a/libc/sysv/consts/POLLOUT.s b/libc/sysv/consts/POLLOUT.s index 304864c5b..0a3e6e349 100644 --- a/libc/sysv/consts/POLLOUT.s +++ b/libc/sysv/consts/POLLOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLOUT 4 4 4 4 0x10 +.syscon poll POLLOUT 4 4 4 4 4 0x10 diff --git a/libc/sysv/consts/POLLPRI.s b/libc/sysv/consts/POLLPRI.s index 1b3fadcb9..1db448e6e 100644 --- a/libc/sysv/consts/POLLPRI.s +++ b/libc/sysv/consts/POLLPRI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLPRI 2 2 2 2 0x0400 +.syscon poll POLLPRI 2 2 2 2 2 0x0400 diff --git a/libc/sysv/consts/POLLRDBAND.s b/libc/sysv/consts/POLLRDBAND.s index fce65c8ed..ace8189b3 100644 --- a/libc/sysv/consts/POLLRDBAND.s +++ b/libc/sysv/consts/POLLRDBAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLRDBAND 0x80 0x80 0x80 0x80 0x0200 +.syscon poll POLLRDBAND 0x80 0x80 0x80 0x80 0x80 0x0200 diff --git a/libc/sysv/consts/POLLRDHUP.s b/libc/sysv/consts/POLLRDHUP.s index 3e3a4f7d6..dd0d09839 100644 --- a/libc/sysv/consts/POLLRDHUP.s +++ b/libc/sysv/consts/POLLRDHUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLRDHUP 0x2000 0x10 0x10 0x10 2 +.syscon poll POLLRDHUP 0x2000 0x10 0x10 0x10 0x10 2 diff --git a/libc/sysv/consts/POLLRDNORM.s b/libc/sysv/consts/POLLRDNORM.s index 93afdc21c..0a37c3fe9 100644 --- a/libc/sysv/consts/POLLRDNORM.s +++ b/libc/sysv/consts/POLLRDNORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLRDNORM 0x40 0x40 0x40 0x40 0x0100 +.syscon poll POLLRDNORM 0x40 0x40 0x40 0x40 0x40 0x0100 diff --git a/libc/sysv/consts/POLLWRBAND.s b/libc/sysv/consts/POLLWRBAND.s index 485d871c8..ae6c95d55 100644 --- a/libc/sysv/consts/POLLWRBAND.s +++ b/libc/sysv/consts/POLLWRBAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLWRBAND 0x0200 0x0100 0x0100 0x0100 0x20 +.syscon poll POLLWRBAND 0x0200 0x0100 0x0100 0x0100 0x0100 0x20 diff --git a/libc/sysv/consts/POLLWRNORM.s b/libc/sysv/consts/POLLWRNORM.s index 4df8e7319..5eb829273 100644 --- a/libc/sysv/consts/POLLWRNORM.s +++ b/libc/sysv/consts/POLLWRNORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon poll POLLWRNORM 0x0100 4 4 4 0x10 +.syscon poll POLLWRNORM 0x0100 4 4 4 4 0x10 diff --git a/libc/sysv/consts/POLL_ERR.s b/libc/sysv/consts/POLL_ERR.s index 7ef3813d9..b47321eda 100644 --- a/libc/sysv/consts/POLL_ERR.s +++ b/libc/sysv/consts/POLL_ERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigpoll POLL_ERR 4 4 4 0 0 +.syscon sigpoll POLL_ERR 4 4 4 0 0 0 diff --git a/libc/sysv/consts/POLL_HUP.s b/libc/sysv/consts/POLL_HUP.s index 4644c0964..0f0f34627 100644 --- a/libc/sysv/consts/POLL_HUP.s +++ b/libc/sysv/consts/POLL_HUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigpoll POLL_HUP 6 6 6 0 0 +.syscon sigpoll POLL_HUP 6 6 6 0 0 0 diff --git a/libc/sysv/consts/POLL_IN.s b/libc/sysv/consts/POLL_IN.s index 1e64e2479..567885b1d 100644 --- a/libc/sysv/consts/POLL_IN.s +++ b/libc/sysv/consts/POLL_IN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigpoll POLL_IN 1 1 1 0 0 +.syscon sigpoll POLL_IN 1 1 1 0 0 0 diff --git a/libc/sysv/consts/POLL_MSG.s b/libc/sysv/consts/POLL_MSG.s index 30e526414..187011369 100644 --- a/libc/sysv/consts/POLL_MSG.s +++ b/libc/sysv/consts/POLL_MSG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigpoll POLL_MSG 3 3 3 0 0 +.syscon sigpoll POLL_MSG 3 3 3 0 0 0 diff --git a/libc/sysv/consts/POLL_OUT.s b/libc/sysv/consts/POLL_OUT.s index 154b0247c..5a78e4738 100644 --- a/libc/sysv/consts/POLL_OUT.s +++ b/libc/sysv/consts/POLL_OUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigpoll POLL_OUT 2 2 2 0 0 +.syscon sigpoll POLL_OUT 2 2 2 0 0 0 diff --git a/libc/sysv/consts/POLL_PRI.s b/libc/sysv/consts/POLL_PRI.s index f1a3d5a5e..5570e49f8 100644 --- a/libc/sysv/consts/POLL_PRI.s +++ b/libc/sysv/consts/POLL_PRI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigpoll POLL_PRI 5 5 5 0 0 +.syscon sigpoll POLL_PRI 5 5 5 0 0 0 diff --git a/libc/sysv/consts/POSIX_FADV_DONTNEED.s b/libc/sysv/consts/POSIX_FADV_DONTNEED.s index 71d5969e4..6155b67ae 100644 --- a/libc/sysv/consts/POSIX_FADV_DONTNEED.s +++ b/libc/sysv/consts/POSIX_FADV_DONTNEED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_FADV_DONTNEED 4 0 4 4 0 +.syscon compat POSIX_FADV_DONTNEED 4 0 4 4 4 0 diff --git a/libc/sysv/consts/POSIX_FADV_NOREUSE.s b/libc/sysv/consts/POSIX_FADV_NOREUSE.s index 535114499..80baa4d81 100644 --- a/libc/sysv/consts/POSIX_FADV_NOREUSE.s +++ b/libc/sysv/consts/POSIX_FADV_NOREUSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon fadv POSIX_FADV_NOREUSE 5 0 5 0 0 +.syscon fadv POSIX_FADV_NOREUSE 5 0 5 0 5 0 diff --git a/libc/sysv/consts/POSIX_FADV_NORMAL.s b/libc/sysv/consts/POSIX_FADV_NORMAL.s index cda98ae18..7616f1a97 100644 --- a/libc/sysv/consts/POSIX_FADV_NORMAL.s +++ b/libc/sysv/consts/POSIX_FADV_NORMAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_FADV_NORMAL 0 0 0 0 0x00000080 +.syscon compat POSIX_FADV_NORMAL 0 0 0 0 0 0x00000080 diff --git a/libc/sysv/consts/POSIX_FADV_RANDOM.s b/libc/sysv/consts/POSIX_FADV_RANDOM.s index eb0ed0de7..4eb5d4da2 100644 --- a/libc/sysv/consts/POSIX_FADV_RANDOM.s +++ b/libc/sysv/consts/POSIX_FADV_RANDOM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_FADV_RANDOM 1 0 1 1 0x10000000 +.syscon compat POSIX_FADV_RANDOM 1 0 1 1 1 0x10000000 diff --git a/libc/sysv/consts/POSIX_FADV_SEQUENTIAL.s b/libc/sysv/consts/POSIX_FADV_SEQUENTIAL.s index e9817e5ea..0df933017 100644 --- a/libc/sysv/consts/POSIX_FADV_SEQUENTIAL.s +++ b/libc/sysv/consts/POSIX_FADV_SEQUENTIAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_FADV_SEQUENTIAL 2 0 2 2 0x8000000 +.syscon compat POSIX_FADV_SEQUENTIAL 2 0 2 2 2 0x8000000 diff --git a/libc/sysv/consts/POSIX_FADV_WILLNEED.s b/libc/sysv/consts/POSIX_FADV_WILLNEED.s index b9046c128..e5caa958d 100644 --- a/libc/sysv/consts/POSIX_FADV_WILLNEED.s +++ b/libc/sysv/consts/POSIX_FADV_WILLNEED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_FADV_WILLNEED 3 0 3 3 3 +.syscon compat POSIX_FADV_WILLNEED 3 0 3 3 3 3 diff --git a/libc/sysv/consts/POSIX_MADV_DONTNEED.s b/libc/sysv/consts/POSIX_MADV_DONTNEED.s index 64a2305e5..754991480 100644 --- a/libc/sysv/consts/POSIX_MADV_DONTNEED.s +++ b/libc/sysv/consts/POSIX_MADV_DONTNEED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_MADV_DONTNEED 4 4 4 4 0 +.syscon compat POSIX_MADV_DONTNEED 4 4 4 4 4 0 diff --git a/libc/sysv/consts/POSIX_MADV_NORMAL.s b/libc/sysv/consts/POSIX_MADV_NORMAL.s index e5a3be4ab..58c3ff85e 100644 --- a/libc/sysv/consts/POSIX_MADV_NORMAL.s +++ b/libc/sysv/consts/POSIX_MADV_NORMAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_MADV_NORMAL 0 0 0 0 0x00000080 +.syscon compat POSIX_MADV_NORMAL 0 0 0 0 0 0x00000080 diff --git a/libc/sysv/consts/POSIX_MADV_RANDOM.s b/libc/sysv/consts/POSIX_MADV_RANDOM.s index 36c820663..ca318f581 100644 --- a/libc/sysv/consts/POSIX_MADV_RANDOM.s +++ b/libc/sysv/consts/POSIX_MADV_RANDOM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_MADV_RANDOM 1 1 1 1 0x10000000 +.syscon compat POSIX_MADV_RANDOM 1 1 1 1 1 0x10000000 diff --git a/libc/sysv/consts/POSIX_MADV_SEQUENTIAL.s b/libc/sysv/consts/POSIX_MADV_SEQUENTIAL.s index c67d9b7f2..5d5feb66a 100644 --- a/libc/sysv/consts/POSIX_MADV_SEQUENTIAL.s +++ b/libc/sysv/consts/POSIX_MADV_SEQUENTIAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_MADV_SEQUENTIAL 2 2 2 2 0x8000000 +.syscon compat POSIX_MADV_SEQUENTIAL 2 2 2 2 2 0x8000000 diff --git a/libc/sysv/consts/POSIX_MADV_WILLNEED.s b/libc/sysv/consts/POSIX_MADV_WILLNEED.s index 24cb2b7ca..6db9478f7 100644 --- a/libc/sysv/consts/POSIX_MADV_WILLNEED.s +++ b/libc/sysv/consts/POSIX_MADV_WILLNEED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat POSIX_MADV_WILLNEED 3 3 3 3 3 +.syscon compat POSIX_MADV_WILLNEED 3 3 3 3 3 3 diff --git a/libc/sysv/consts/PPPDISC.s b/libc/sysv/consts/PPPDISC.s index 43c16da53..dc5071ddf 100644 --- a/libc/sysv/consts/PPPDISC.s +++ b/libc/sysv/consts/PPPDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios PPPDISC 0 0x5 0x5 0x5 -1 +.syscon termios PPPDISC 0 0x5 0x5 0x5 0x5 -1 diff --git a/libc/sysv/consts/PRELIM.s b/libc/sysv/consts/PRELIM.s index 78e75ad86..0b4564745 100644 --- a/libc/sysv/consts/PRELIM.s +++ b/libc/sysv/consts/PRELIM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PRELIM 1 1 1 1 0 +.syscon misc PRELIM 1 1 1 1 1 0 diff --git a/libc/sysv/consts/PRE_FETCH.s b/libc/sysv/consts/PRE_FETCH.s index 54700a13e..bc32f9ead 100644 --- a/libc/sysv/consts/PRE_FETCH.s +++ b/libc/sysv/consts/PRE_FETCH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PRE_FETCH 52 0 0 0 0 +.syscon misc PRE_FETCH 52 0 0 0 0 0 diff --git a/libc/sysv/consts/PRIO_MAX.s b/libc/sysv/consts/PRIO_MAX.s index 5859f72e9..604fbe928 100644 --- a/libc/sysv/consts/PRIO_MAX.s +++ b/libc/sysv/consts/PRIO_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prio PRIO_MAX 20 20 20 20 20 +.syscon prio PRIO_MAX 20 20 20 20 20 20 diff --git a/libc/sysv/consts/PRIO_MIN.s b/libc/sysv/consts/PRIO_MIN.s index 9a896509d..5d59dee85 100644 --- a/libc/sysv/consts/PRIO_MIN.s +++ b/libc/sysv/consts/PRIO_MIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prio PRIO_MIN -20 -20 -20 -20 -20 +.syscon prio PRIO_MIN -20 -20 -20 -20 -20 -20 diff --git a/libc/sysv/consts/PRIO_PGRP.s b/libc/sysv/consts/PRIO_PGRP.s index dee566fbb..2fe388dec 100644 --- a/libc/sysv/consts/PRIO_PGRP.s +++ b/libc/sysv/consts/PRIO_PGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prio PRIO_PGRP 1 1 1 1 1 +.syscon prio PRIO_PGRP 1 1 1 1 1 1 diff --git a/libc/sysv/consts/PRIO_PROCESS.s b/libc/sysv/consts/PRIO_PROCESS.s index e2d1105d5..f68378f8a 100644 --- a/libc/sysv/consts/PRIO_PROCESS.s +++ b/libc/sysv/consts/PRIO_PROCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prio PRIO_PROCESS 0 0 0 0 0 +.syscon prio PRIO_PROCESS 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PRIO_USER.s b/libc/sysv/consts/PRIO_USER.s index c640b8812..effd7dbff 100644 --- a/libc/sysv/consts/PRIO_USER.s +++ b/libc/sysv/consts/PRIO_USER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prio PRIO_USER 2 2 2 2 2 +.syscon prio PRIO_USER 2 2 2 2 2 2 diff --git a/libc/sysv/consts/PROT_EXEC.s b/libc/sysv/consts/PROT_EXEC.s index 28608a6ce..586521af5 100644 --- a/libc/sysv/consts/PROT_EXEC.s +++ b/libc/sysv/consts/PROT_EXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mprot PROT_EXEC 4 4 4 4 4 +.syscon mprot PROT_EXEC 4 4 4 4 4 4 diff --git a/libc/sysv/consts/PROT_GROWSDOWN.s b/libc/sysv/consts/PROT_GROWSDOWN.s index 97351e9b6..3feacba1b 100644 --- a/libc/sysv/consts/PROT_GROWSDOWN.s +++ b/libc/sysv/consts/PROT_GROWSDOWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mprot PROT_GROWSDOWN 0x01000000 0 0 0 0 +.syscon mprot PROT_GROWSDOWN 0x01000000 0 0 0 0 0 diff --git a/libc/sysv/consts/PROT_GROWSUP.s b/libc/sysv/consts/PROT_GROWSUP.s index 9a6df1239..ec5cbda5f 100644 --- a/libc/sysv/consts/PROT_GROWSUP.s +++ b/libc/sysv/consts/PROT_GROWSUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mprot PROT_GROWSUP 0x02000000 0 0 0 0 +.syscon mprot PROT_GROWSUP 0x02000000 0 0 0 0 0 diff --git a/libc/sysv/consts/PROT_NONE.s b/libc/sysv/consts/PROT_NONE.s index 182d68bfb..4a68c9596 100644 --- a/libc/sysv/consts/PROT_NONE.s +++ b/libc/sysv/consts/PROT_NONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mprot PROT_NONE 0 0 0 0 0 +.syscon mprot PROT_NONE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PROT_READ.s b/libc/sysv/consts/PROT_READ.s index ed096d355..fd9f11d38 100644 --- a/libc/sysv/consts/PROT_READ.s +++ b/libc/sysv/consts/PROT_READ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mprot PROT_READ 1 1 1 1 1 +.syscon mprot PROT_READ 1 1 1 1 1 1 diff --git a/libc/sysv/consts/PROT_WRITE.s b/libc/sysv/consts/PROT_WRITE.s index 98582ac15..07ad1d7a6 100644 --- a/libc/sysv/consts/PROT_WRITE.s +++ b/libc/sysv/consts/PROT_WRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon mprot PROT_WRITE 2 2 2 2 2 +.syscon mprot PROT_WRITE 2 2 2 2 2 2 diff --git a/libc/sysv/consts/PR_CAPBSET_DROP.s b/libc/sysv/consts/PR_CAPBSET_DROP.s index 159947c09..555193258 100644 --- a/libc/sysv/consts/PR_CAPBSET_DROP.s +++ b/libc/sysv/consts/PR_CAPBSET_DROP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_CAPBSET_DROP 24 0 0 0 0 +.syscon pr PR_CAPBSET_DROP 24 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_CAPBSET_READ.s b/libc/sysv/consts/PR_CAPBSET_READ.s index daa5e38f7..e3684d24e 100644 --- a/libc/sysv/consts/PR_CAPBSET_READ.s +++ b/libc/sysv/consts/PR_CAPBSET_READ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_CAPBSET_READ 23 0 0 0 0 +.syscon pr PR_CAPBSET_READ 23 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_CAP_AMBIENT.s b/libc/sysv/consts/PR_CAP_AMBIENT.s index a02268007..c83fed236 100644 --- a/libc/sysv/consts/PR_CAP_AMBIENT.s +++ b/libc/sysv/consts/PR_CAP_AMBIENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_CAP_AMBIENT 47 0 0 0 0 +.syscon pr PR_CAP_AMBIENT 47 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_CAP_AMBIENT_CLEAR_ALL.s b/libc/sysv/consts/PR_CAP_AMBIENT_CLEAR_ALL.s index ddf03789d..41e1fa549 100644 --- a/libc/sysv/consts/PR_CAP_AMBIENT_CLEAR_ALL.s +++ b/libc/sysv/consts/PR_CAP_AMBIENT_CLEAR_ALL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_CAP_AMBIENT_CLEAR_ALL 4 0 0 0 0 +.syscon pr PR_CAP_AMBIENT_CLEAR_ALL 4 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_CAP_AMBIENT_IS_SET.s b/libc/sysv/consts/PR_CAP_AMBIENT_IS_SET.s index 3ad982a49..f46c7f5d3 100644 --- a/libc/sysv/consts/PR_CAP_AMBIENT_IS_SET.s +++ b/libc/sysv/consts/PR_CAP_AMBIENT_IS_SET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_CAP_AMBIENT_IS_SET 1 0 0 0 0 +.syscon pr PR_CAP_AMBIENT_IS_SET 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_CAP_AMBIENT_LOWER.s b/libc/sysv/consts/PR_CAP_AMBIENT_LOWER.s index 2ea60874b..efe94dfad 100644 --- a/libc/sysv/consts/PR_CAP_AMBIENT_LOWER.s +++ b/libc/sysv/consts/PR_CAP_AMBIENT_LOWER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_CAP_AMBIENT_LOWER 3 0 0 0 0 +.syscon pr PR_CAP_AMBIENT_LOWER 3 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_CAP_AMBIENT_RAISE.s b/libc/sysv/consts/PR_CAP_AMBIENT_RAISE.s index ab3cf9456..6f665c15f 100644 --- a/libc/sysv/consts/PR_CAP_AMBIENT_RAISE.s +++ b/libc/sysv/consts/PR_CAP_AMBIENT_RAISE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_CAP_AMBIENT_RAISE 2 0 0 0 0 +.syscon pr PR_CAP_AMBIENT_RAISE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_ENDIAN_BIG.s b/libc/sysv/consts/PR_ENDIAN_BIG.s index 310fca8a7..e8fb97812 100644 --- a/libc/sysv/consts/PR_ENDIAN_BIG.s +++ b/libc/sysv/consts/PR_ENDIAN_BIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_ENDIAN_BIG 0 0 0 0 0 +.syscon pr PR_ENDIAN_BIG 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_ENDIAN_LITTLE.s b/libc/sysv/consts/PR_ENDIAN_LITTLE.s index 345e1f720..ed454ed48 100644 --- a/libc/sysv/consts/PR_ENDIAN_LITTLE.s +++ b/libc/sysv/consts/PR_ENDIAN_LITTLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_ENDIAN_LITTLE 1 0 0 0 0 +.syscon pr PR_ENDIAN_LITTLE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_ENDIAN_PPC_LITTLE.s b/libc/sysv/consts/PR_ENDIAN_PPC_LITTLE.s index 0a3431074..b5b7b2d26 100644 --- a/libc/sysv/consts/PR_ENDIAN_PPC_LITTLE.s +++ b/libc/sysv/consts/PR_ENDIAN_PPC_LITTLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_ENDIAN_PPC_LITTLE 2 0 0 0 0 +.syscon pr PR_ENDIAN_PPC_LITTLE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FPEMU_NOPRINT.s b/libc/sysv/consts/PR_FPEMU_NOPRINT.s index 04fecb2a4..6a9e6d6eb 100644 --- a/libc/sysv/consts/PR_FPEMU_NOPRINT.s +++ b/libc/sysv/consts/PR_FPEMU_NOPRINT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FPEMU_NOPRINT 1 0 0 0 0 +.syscon pr PR_FPEMU_NOPRINT 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FPEMU_SIGFPE.s b/libc/sysv/consts/PR_FPEMU_SIGFPE.s index 749e6f78c..e39b1443f 100644 --- a/libc/sysv/consts/PR_FPEMU_SIGFPE.s +++ b/libc/sysv/consts/PR_FPEMU_SIGFPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FPEMU_SIGFPE 2 0 0 0 0 +.syscon pr PR_FPEMU_SIGFPE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_ASYNC.s b/libc/sysv/consts/PR_FP_EXC_ASYNC.s index 49dc6622a..1b0bad753 100644 --- a/libc/sysv/consts/PR_FP_EXC_ASYNC.s +++ b/libc/sysv/consts/PR_FP_EXC_ASYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_ASYNC 2 0 0 0 0 +.syscon pr PR_FP_EXC_ASYNC 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_DISABLED.s b/libc/sysv/consts/PR_FP_EXC_DISABLED.s index 64bef2638..e281d09f1 100644 --- a/libc/sysv/consts/PR_FP_EXC_DISABLED.s +++ b/libc/sysv/consts/PR_FP_EXC_DISABLED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_DISABLED 0 0 0 0 0 +.syscon pr PR_FP_EXC_DISABLED 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_DIV.s b/libc/sysv/consts/PR_FP_EXC_DIV.s index 62a417890..fef788757 100644 --- a/libc/sysv/consts/PR_FP_EXC_DIV.s +++ b/libc/sysv/consts/PR_FP_EXC_DIV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_DIV 0x010000 0 0 0 0 +.syscon pr PR_FP_EXC_DIV 0x010000 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_INV.s b/libc/sysv/consts/PR_FP_EXC_INV.s index c6fc77721..926390c5e 100644 --- a/libc/sysv/consts/PR_FP_EXC_INV.s +++ b/libc/sysv/consts/PR_FP_EXC_INV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_INV 0x100000 0 0 0 0 +.syscon pr PR_FP_EXC_INV 0x100000 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_NONRECOV.s b/libc/sysv/consts/PR_FP_EXC_NONRECOV.s index 8717c25ed..49dbad4f8 100644 --- a/libc/sysv/consts/PR_FP_EXC_NONRECOV.s +++ b/libc/sysv/consts/PR_FP_EXC_NONRECOV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_NONRECOV 1 0 0 0 0 +.syscon pr PR_FP_EXC_NONRECOV 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_OVF.s b/libc/sysv/consts/PR_FP_EXC_OVF.s index 8741a70f6..17161d4c6 100644 --- a/libc/sysv/consts/PR_FP_EXC_OVF.s +++ b/libc/sysv/consts/PR_FP_EXC_OVF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_OVF 0x020000 0 0 0 0 +.syscon pr PR_FP_EXC_OVF 0x020000 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_PRECISE.s b/libc/sysv/consts/PR_FP_EXC_PRECISE.s index 004c09a13..e005ade89 100644 --- a/libc/sysv/consts/PR_FP_EXC_PRECISE.s +++ b/libc/sysv/consts/PR_FP_EXC_PRECISE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_PRECISE 3 0 0 0 0 +.syscon pr PR_FP_EXC_PRECISE 3 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_RES.s b/libc/sysv/consts/PR_FP_EXC_RES.s index a60bb4288..dd6245567 100644 --- a/libc/sysv/consts/PR_FP_EXC_RES.s +++ b/libc/sysv/consts/PR_FP_EXC_RES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_RES 0x080000 0 0 0 0 +.syscon pr PR_FP_EXC_RES 0x080000 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_SW_ENABLE.s b/libc/sysv/consts/PR_FP_EXC_SW_ENABLE.s index 8a66f55f7..0b4454285 100644 --- a/libc/sysv/consts/PR_FP_EXC_SW_ENABLE.s +++ b/libc/sysv/consts/PR_FP_EXC_SW_ENABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_SW_ENABLE 0x80 0 0 0 0 +.syscon pr PR_FP_EXC_SW_ENABLE 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_EXC_UND.s b/libc/sysv/consts/PR_FP_EXC_UND.s index 6ea0d945c..04f4de560 100644 --- a/libc/sysv/consts/PR_FP_EXC_UND.s +++ b/libc/sysv/consts/PR_FP_EXC_UND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_EXC_UND 0x040000 0 0 0 0 +.syscon pr PR_FP_EXC_UND 0x040000 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_MODE_FR.s b/libc/sysv/consts/PR_FP_MODE_FR.s index a883bab6a..3a2299454 100644 --- a/libc/sysv/consts/PR_FP_MODE_FR.s +++ b/libc/sysv/consts/PR_FP_MODE_FR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_MODE_FR 1 0 0 0 0 +.syscon pr PR_FP_MODE_FR 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_FP_MODE_FRE.s b/libc/sysv/consts/PR_FP_MODE_FRE.s index bc41751c2..223db84e3 100644 --- a/libc/sysv/consts/PR_FP_MODE_FRE.s +++ b/libc/sysv/consts/PR_FP_MODE_FRE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_FP_MODE_FRE 2 0 0 0 0 +.syscon pr PR_FP_MODE_FRE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_CHILD_SUBREAPER.s b/libc/sysv/consts/PR_GET_CHILD_SUBREAPER.s index 625ed9bd7..9b28a7121 100644 --- a/libc/sysv/consts/PR_GET_CHILD_SUBREAPER.s +++ b/libc/sysv/consts/PR_GET_CHILD_SUBREAPER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_CHILD_SUBREAPER 37 0 0 0 0 +.syscon pr PR_GET_CHILD_SUBREAPER 37 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_DUMPABLE.s b/libc/sysv/consts/PR_GET_DUMPABLE.s index 70c3df118..8ffe664e6 100644 --- a/libc/sysv/consts/PR_GET_DUMPABLE.s +++ b/libc/sysv/consts/PR_GET_DUMPABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_DUMPABLE 3 0 0 0 0 +.syscon pr PR_GET_DUMPABLE 3 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_ENDIAN.s b/libc/sysv/consts/PR_GET_ENDIAN.s index fdf5ec1a6..2b5099696 100644 --- a/libc/sysv/consts/PR_GET_ENDIAN.s +++ b/libc/sysv/consts/PR_GET_ENDIAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_ENDIAN 19 0 0 0 0 +.syscon pr PR_GET_ENDIAN 19 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_FPEMU.s b/libc/sysv/consts/PR_GET_FPEMU.s index aa6406ba9..fdf6b00da 100644 --- a/libc/sysv/consts/PR_GET_FPEMU.s +++ b/libc/sysv/consts/PR_GET_FPEMU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_FPEMU 9 0 0 0 0 +.syscon pr PR_GET_FPEMU 9 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_FPEXC.s b/libc/sysv/consts/PR_GET_FPEXC.s index c03ed3c8b..1917d8258 100644 --- a/libc/sysv/consts/PR_GET_FPEXC.s +++ b/libc/sysv/consts/PR_GET_FPEXC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_FPEXC 11 0 0 0 0 +.syscon pr PR_GET_FPEXC 11 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_FP_MODE.s b/libc/sysv/consts/PR_GET_FP_MODE.s index 3c71ef636..bb2412e18 100644 --- a/libc/sysv/consts/PR_GET_FP_MODE.s +++ b/libc/sysv/consts/PR_GET_FP_MODE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_FP_MODE 46 0 0 0 0 +.syscon pr PR_GET_FP_MODE 46 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_KEEPCAPS.s b/libc/sysv/consts/PR_GET_KEEPCAPS.s index 79d01d73a..a52ae2073 100644 --- a/libc/sysv/consts/PR_GET_KEEPCAPS.s +++ b/libc/sysv/consts/PR_GET_KEEPCAPS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_KEEPCAPS 7 0 0 0 0 +.syscon pr PR_GET_KEEPCAPS 7 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_NAME.s b/libc/sysv/consts/PR_GET_NAME.s index 9890bd7f5..731062082 100644 --- a/libc/sysv/consts/PR_GET_NAME.s +++ b/libc/sysv/consts/PR_GET_NAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_NAME 0x10 0 0 0 0 +.syscon pr PR_GET_NAME 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_NO_NEW_PRIVS.s b/libc/sysv/consts/PR_GET_NO_NEW_PRIVS.s index dc08f3b5b..e9ef2ce8d 100644 --- a/libc/sysv/consts/PR_GET_NO_NEW_PRIVS.s +++ b/libc/sysv/consts/PR_GET_NO_NEW_PRIVS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_NO_NEW_PRIVS 39 0 0 0 0 +.syscon pr PR_GET_NO_NEW_PRIVS 39 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_PDEATHSIG.s b/libc/sysv/consts/PR_GET_PDEATHSIG.s index 3d2b6e60e..fa686b862 100644 --- a/libc/sysv/consts/PR_GET_PDEATHSIG.s +++ b/libc/sysv/consts/PR_GET_PDEATHSIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_PDEATHSIG 2 0 0 0 0 +.syscon pr PR_GET_PDEATHSIG 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_SECCOMP.s b/libc/sysv/consts/PR_GET_SECCOMP.s index 8ebb5a8b4..90c4c5207 100644 --- a/libc/sysv/consts/PR_GET_SECCOMP.s +++ b/libc/sysv/consts/PR_GET_SECCOMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_SECCOMP 21 0 0 0 0 +.syscon pr PR_GET_SECCOMP 21 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_SECUREBITS.s b/libc/sysv/consts/PR_GET_SECUREBITS.s index 229f79c83..10a9966e6 100644 --- a/libc/sysv/consts/PR_GET_SECUREBITS.s +++ b/libc/sysv/consts/PR_GET_SECUREBITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_SECUREBITS 27 0 0 0 0 +.syscon pr PR_GET_SECUREBITS 27 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_SPECULATION_CTRL.s b/libc/sysv/consts/PR_GET_SPECULATION_CTRL.s index 1eede9e26..1478e9b98 100644 --- a/libc/sysv/consts/PR_GET_SPECULATION_CTRL.s +++ b/libc/sysv/consts/PR_GET_SPECULATION_CTRL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_SPECULATION_CTRL 52 0 0 0 0 +.syscon pr PR_GET_SPECULATION_CTRL 52 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_THP_DISABLE.s b/libc/sysv/consts/PR_GET_THP_DISABLE.s index adbb48168..fdbe6291f 100644 --- a/libc/sysv/consts/PR_GET_THP_DISABLE.s +++ b/libc/sysv/consts/PR_GET_THP_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_THP_DISABLE 42 0 0 0 0 +.syscon pr PR_GET_THP_DISABLE 42 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_TID_ADDRESS.s b/libc/sysv/consts/PR_GET_TID_ADDRESS.s index 0a9791bd1..25eebd8e0 100644 --- a/libc/sysv/consts/PR_GET_TID_ADDRESS.s +++ b/libc/sysv/consts/PR_GET_TID_ADDRESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_TID_ADDRESS 40 0 0 0 0 +.syscon pr PR_GET_TID_ADDRESS 40 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_TIMERSLACK.s b/libc/sysv/consts/PR_GET_TIMERSLACK.s index 3b4f4bab9..1b03699d2 100644 --- a/libc/sysv/consts/PR_GET_TIMERSLACK.s +++ b/libc/sysv/consts/PR_GET_TIMERSLACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_TIMERSLACK 30 0 0 0 0 +.syscon pr PR_GET_TIMERSLACK 30 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_TIMING.s b/libc/sysv/consts/PR_GET_TIMING.s index c649405f5..b12a96902 100644 --- a/libc/sysv/consts/PR_GET_TIMING.s +++ b/libc/sysv/consts/PR_GET_TIMING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_TIMING 13 0 0 0 0 +.syscon pr PR_GET_TIMING 13 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_TSC.s b/libc/sysv/consts/PR_GET_TSC.s index d751d0586..4dbe34452 100644 --- a/libc/sysv/consts/PR_GET_TSC.s +++ b/libc/sysv/consts/PR_GET_TSC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_TSC 25 0 0 0 0 +.syscon pr PR_GET_TSC 25 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_GET_UNALIGN.s b/libc/sysv/consts/PR_GET_UNALIGN.s index c904cd2f3..49a6597d0 100644 --- a/libc/sysv/consts/PR_GET_UNALIGN.s +++ b/libc/sysv/consts/PR_GET_UNALIGN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_GET_UNALIGN 5 0 0 0 0 +.syscon pr PR_GET_UNALIGN 5 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MCE_KILL.s b/libc/sysv/consts/PR_MCE_KILL.s index 4000ddf2e..054ca0b01 100644 --- a/libc/sysv/consts/PR_MCE_KILL.s +++ b/libc/sysv/consts/PR_MCE_KILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MCE_KILL 33 0 0 0 0 +.syscon pr PR_MCE_KILL 33 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MCE_KILL_CLEAR.s b/libc/sysv/consts/PR_MCE_KILL_CLEAR.s index 1835fedee..f819d052a 100644 --- a/libc/sysv/consts/PR_MCE_KILL_CLEAR.s +++ b/libc/sysv/consts/PR_MCE_KILL_CLEAR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MCE_KILL_CLEAR 0 0 0 0 0 +.syscon pr PR_MCE_KILL_CLEAR 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MCE_KILL_DEFAULT.s b/libc/sysv/consts/PR_MCE_KILL_DEFAULT.s index 3db684e10..a9156e538 100644 --- a/libc/sysv/consts/PR_MCE_KILL_DEFAULT.s +++ b/libc/sysv/consts/PR_MCE_KILL_DEFAULT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MCE_KILL_DEFAULT 2 0 0 0 0 +.syscon pr PR_MCE_KILL_DEFAULT 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MCE_KILL_EARLY.s b/libc/sysv/consts/PR_MCE_KILL_EARLY.s index 6512b2e8c..86772016c 100644 --- a/libc/sysv/consts/PR_MCE_KILL_EARLY.s +++ b/libc/sysv/consts/PR_MCE_KILL_EARLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MCE_KILL_EARLY 1 0 0 0 0 +.syscon pr PR_MCE_KILL_EARLY 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MCE_KILL_GET.s b/libc/sysv/consts/PR_MCE_KILL_GET.s index fe0fa6baa..5508f6bdc 100644 --- a/libc/sysv/consts/PR_MCE_KILL_GET.s +++ b/libc/sysv/consts/PR_MCE_KILL_GET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MCE_KILL_GET 34 0 0 0 0 +.syscon pr PR_MCE_KILL_GET 34 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MCE_KILL_LATE.s b/libc/sysv/consts/PR_MCE_KILL_LATE.s index f87233923..7ef24b6b8 100644 --- a/libc/sysv/consts/PR_MCE_KILL_LATE.s +++ b/libc/sysv/consts/PR_MCE_KILL_LATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MCE_KILL_LATE 0 0 0 0 0 +.syscon pr PR_MCE_KILL_LATE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MCE_KILL_SET.s b/libc/sysv/consts/PR_MCE_KILL_SET.s index 9a191acff..e674d5178 100644 --- a/libc/sysv/consts/PR_MCE_KILL_SET.s +++ b/libc/sysv/consts/PR_MCE_KILL_SET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MCE_KILL_SET 1 0 0 0 0 +.syscon pr PR_MCE_KILL_SET 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MPX_DISABLE_MANAGEMENT.s b/libc/sysv/consts/PR_MPX_DISABLE_MANAGEMENT.s index b724f55b0..1dc5347bc 100644 --- a/libc/sysv/consts/PR_MPX_DISABLE_MANAGEMENT.s +++ b/libc/sysv/consts/PR_MPX_DISABLE_MANAGEMENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MPX_DISABLE_MANAGEMENT 44 0 0 0 0 +.syscon pr PR_MPX_DISABLE_MANAGEMENT 44 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_MPX_ENABLE_MANAGEMENT.s b/libc/sysv/consts/PR_MPX_ENABLE_MANAGEMENT.s index 7c1868341..07213d527 100644 --- a/libc/sysv/consts/PR_MPX_ENABLE_MANAGEMENT.s +++ b/libc/sysv/consts/PR_MPX_ENABLE_MANAGEMENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_MPX_ENABLE_MANAGEMENT 43 0 0 0 0 +.syscon pr PR_MPX_ENABLE_MANAGEMENT 43 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_CHILD_SUBREAPER.s b/libc/sysv/consts/PR_SET_CHILD_SUBREAPER.s index e03cf9e66..c43bbb679 100644 --- a/libc/sysv/consts/PR_SET_CHILD_SUBREAPER.s +++ b/libc/sysv/consts/PR_SET_CHILD_SUBREAPER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_CHILD_SUBREAPER 36 0 0 0 0 +.syscon pr PR_SET_CHILD_SUBREAPER 36 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_DUMPABLE.s b/libc/sysv/consts/PR_SET_DUMPABLE.s index c737c23de..e2d7a4bee 100644 --- a/libc/sysv/consts/PR_SET_DUMPABLE.s +++ b/libc/sysv/consts/PR_SET_DUMPABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_DUMPABLE 4 0 0 0 0 +.syscon pr PR_SET_DUMPABLE 4 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_ENDIAN.s b/libc/sysv/consts/PR_SET_ENDIAN.s index 0533b9f08..200d83879 100644 --- a/libc/sysv/consts/PR_SET_ENDIAN.s +++ b/libc/sysv/consts/PR_SET_ENDIAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_ENDIAN 20 0 0 0 0 +.syscon pr PR_SET_ENDIAN 20 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_FPEMU.s b/libc/sysv/consts/PR_SET_FPEMU.s index c554b1419..4658032d2 100644 --- a/libc/sysv/consts/PR_SET_FPEMU.s +++ b/libc/sysv/consts/PR_SET_FPEMU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_FPEMU 10 0 0 0 0 +.syscon pr PR_SET_FPEMU 10 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_FPEXC.s b/libc/sysv/consts/PR_SET_FPEXC.s index d7ed5bde8..a594fbfb7 100644 --- a/libc/sysv/consts/PR_SET_FPEXC.s +++ b/libc/sysv/consts/PR_SET_FPEXC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_FPEXC 12 0 0 0 0 +.syscon pr PR_SET_FPEXC 12 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_FP_MODE.s b/libc/sysv/consts/PR_SET_FP_MODE.s index 68403310a..85682dbad 100644 --- a/libc/sysv/consts/PR_SET_FP_MODE.s +++ b/libc/sysv/consts/PR_SET_FP_MODE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_FP_MODE 45 0 0 0 0 +.syscon pr PR_SET_FP_MODE 45 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_KEEPCAPS.s b/libc/sysv/consts/PR_SET_KEEPCAPS.s index 8c55945c5..f8fceb12d 100644 --- a/libc/sysv/consts/PR_SET_KEEPCAPS.s +++ b/libc/sysv/consts/PR_SET_KEEPCAPS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_KEEPCAPS 8 0 0 0 0 +.syscon pr PR_SET_KEEPCAPS 8 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM.s b/libc/sysv/consts/PR_SET_MM.s index 7d2a42190..022086de4 100644 --- a/libc/sysv/consts/PR_SET_MM.s +++ b/libc/sysv/consts/PR_SET_MM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM 35 0 0 0 0 +.syscon pr PR_SET_MM 35 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_ARG_END.s b/libc/sysv/consts/PR_SET_MM_ARG_END.s index 9c2d91321..e65087f30 100644 --- a/libc/sysv/consts/PR_SET_MM_ARG_END.s +++ b/libc/sysv/consts/PR_SET_MM_ARG_END.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_ARG_END 9 0 0 0 0 +.syscon pr PR_SET_MM_ARG_END 9 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_ARG_START.s b/libc/sysv/consts/PR_SET_MM_ARG_START.s index 48d80c183..0f569b48f 100644 --- a/libc/sysv/consts/PR_SET_MM_ARG_START.s +++ b/libc/sysv/consts/PR_SET_MM_ARG_START.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_ARG_START 8 0 0 0 0 +.syscon pr PR_SET_MM_ARG_START 8 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_AUXV.s b/libc/sysv/consts/PR_SET_MM_AUXV.s index a9fb7e89f..1f3ceb47a 100644 --- a/libc/sysv/consts/PR_SET_MM_AUXV.s +++ b/libc/sysv/consts/PR_SET_MM_AUXV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_AUXV 12 0 0 0 0 +.syscon pr PR_SET_MM_AUXV 12 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_BRK.s b/libc/sysv/consts/PR_SET_MM_BRK.s index bc858125e..701226eee 100644 --- a/libc/sysv/consts/PR_SET_MM_BRK.s +++ b/libc/sysv/consts/PR_SET_MM_BRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_BRK 7 0 0 0 0 +.syscon pr PR_SET_MM_BRK 7 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_END_CODE.s b/libc/sysv/consts/PR_SET_MM_END_CODE.s index b2f5eed49..7c6412c15 100644 --- a/libc/sysv/consts/PR_SET_MM_END_CODE.s +++ b/libc/sysv/consts/PR_SET_MM_END_CODE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_END_CODE 2 0 0 0 0 +.syscon pr PR_SET_MM_END_CODE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_END_DATA.s b/libc/sysv/consts/PR_SET_MM_END_DATA.s index d798408f7..e51290676 100644 --- a/libc/sysv/consts/PR_SET_MM_END_DATA.s +++ b/libc/sysv/consts/PR_SET_MM_END_DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_END_DATA 4 0 0 0 0 +.syscon pr PR_SET_MM_END_DATA 4 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_ENV_END.s b/libc/sysv/consts/PR_SET_MM_ENV_END.s index 7f815f7d8..afe4007e5 100644 --- a/libc/sysv/consts/PR_SET_MM_ENV_END.s +++ b/libc/sysv/consts/PR_SET_MM_ENV_END.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_ENV_END 11 0 0 0 0 +.syscon pr PR_SET_MM_ENV_END 11 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_ENV_START.s b/libc/sysv/consts/PR_SET_MM_ENV_START.s index 7ef70b49e..7b980e3fb 100644 --- a/libc/sysv/consts/PR_SET_MM_ENV_START.s +++ b/libc/sysv/consts/PR_SET_MM_ENV_START.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_ENV_START 10 0 0 0 0 +.syscon pr PR_SET_MM_ENV_START 10 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_EXE_FILE.s b/libc/sysv/consts/PR_SET_MM_EXE_FILE.s index ff951cc97..09c07819f 100644 --- a/libc/sysv/consts/PR_SET_MM_EXE_FILE.s +++ b/libc/sysv/consts/PR_SET_MM_EXE_FILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_EXE_FILE 13 0 0 0 0 +.syscon pr PR_SET_MM_EXE_FILE 13 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_MAP.s b/libc/sysv/consts/PR_SET_MM_MAP.s index b63b3c775..ea4da60e0 100644 --- a/libc/sysv/consts/PR_SET_MM_MAP.s +++ b/libc/sysv/consts/PR_SET_MM_MAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_MAP 14 0 0 0 0 +.syscon pr PR_SET_MM_MAP 14 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_MAP_SIZE.s b/libc/sysv/consts/PR_SET_MM_MAP_SIZE.s index 30db96d61..553f74ab7 100644 --- a/libc/sysv/consts/PR_SET_MM_MAP_SIZE.s +++ b/libc/sysv/consts/PR_SET_MM_MAP_SIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_MAP_SIZE 15 0 0 0 0 +.syscon pr PR_SET_MM_MAP_SIZE 15 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_START_BRK.s b/libc/sysv/consts/PR_SET_MM_START_BRK.s index e8e80b2b4..63ee6c585 100644 --- a/libc/sysv/consts/PR_SET_MM_START_BRK.s +++ b/libc/sysv/consts/PR_SET_MM_START_BRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_START_BRK 6 0 0 0 0 +.syscon pr PR_SET_MM_START_BRK 6 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_START_CODE.s b/libc/sysv/consts/PR_SET_MM_START_CODE.s index ba2d6121e..ef4535a78 100644 --- a/libc/sysv/consts/PR_SET_MM_START_CODE.s +++ b/libc/sysv/consts/PR_SET_MM_START_CODE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_START_CODE 1 0 0 0 0 +.syscon pr PR_SET_MM_START_CODE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_START_DATA.s b/libc/sysv/consts/PR_SET_MM_START_DATA.s index 003ba9c66..0c9cfeabd 100644 --- a/libc/sysv/consts/PR_SET_MM_START_DATA.s +++ b/libc/sysv/consts/PR_SET_MM_START_DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_START_DATA 3 0 0 0 0 +.syscon pr PR_SET_MM_START_DATA 3 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_MM_START_STACK.s b/libc/sysv/consts/PR_SET_MM_START_STACK.s index f82e74cde..f81929d5b 100644 --- a/libc/sysv/consts/PR_SET_MM_START_STACK.s +++ b/libc/sysv/consts/PR_SET_MM_START_STACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_MM_START_STACK 5 0 0 0 0 +.syscon pr PR_SET_MM_START_STACK 5 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_NAME.s b/libc/sysv/consts/PR_SET_NAME.s index 7b37e1467..8cffa89c4 100644 --- a/libc/sysv/consts/PR_SET_NAME.s +++ b/libc/sysv/consts/PR_SET_NAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_NAME 15 0 0 0 0 +.syscon pr PR_SET_NAME 15 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_NO_NEW_PRIVS.s b/libc/sysv/consts/PR_SET_NO_NEW_PRIVS.s index 0a4f3499f..6987927e8 100644 --- a/libc/sysv/consts/PR_SET_NO_NEW_PRIVS.s +++ b/libc/sysv/consts/PR_SET_NO_NEW_PRIVS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_NO_NEW_PRIVS 38 0 0 0 0 +.syscon pr PR_SET_NO_NEW_PRIVS 38 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_PDEATHSIG.s b/libc/sysv/consts/PR_SET_PDEATHSIG.s index 9412a6210..5c554fee4 100644 --- a/libc/sysv/consts/PR_SET_PDEATHSIG.s +++ b/libc/sysv/consts/PR_SET_PDEATHSIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_PDEATHSIG 1 0 0 0 0 +.syscon pr PR_SET_PDEATHSIG 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_PTRACER.s b/libc/sysv/consts/PR_SET_PTRACER.s index 7dd4ecff3..a56f32a10 100644 --- a/libc/sysv/consts/PR_SET_PTRACER.s +++ b/libc/sysv/consts/PR_SET_PTRACER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_PTRACER 0x59616d61 0 0 0 0 +.syscon pr PR_SET_PTRACER 0x59616d61 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_PTRACER_ANY.s b/libc/sysv/consts/PR_SET_PTRACER_ANY.s index 4144ffc1a..7ef633812 100644 --- a/libc/sysv/consts/PR_SET_PTRACER_ANY.s +++ b/libc/sysv/consts/PR_SET_PTRACER_ANY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_PTRACER_ANY -1 0 0 0 0 +.syscon pr PR_SET_PTRACER_ANY -1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_SECCOMP.s b/libc/sysv/consts/PR_SET_SECCOMP.s index ce3e4c21d..4d891738f 100644 --- a/libc/sysv/consts/PR_SET_SECCOMP.s +++ b/libc/sysv/consts/PR_SET_SECCOMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_SECCOMP 22 0 0 0 0 +.syscon pr PR_SET_SECCOMP 22 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_SECUREBITS.s b/libc/sysv/consts/PR_SET_SECUREBITS.s index cfad2f6f7..64cee598d 100644 --- a/libc/sysv/consts/PR_SET_SECUREBITS.s +++ b/libc/sysv/consts/PR_SET_SECUREBITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_SECUREBITS 28 0 0 0 0 +.syscon pr PR_SET_SECUREBITS 28 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_SPECULATION_CTRL.s b/libc/sysv/consts/PR_SET_SPECULATION_CTRL.s index dcfd76592..50a73918e 100644 --- a/libc/sysv/consts/PR_SET_SPECULATION_CTRL.s +++ b/libc/sysv/consts/PR_SET_SPECULATION_CTRL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_SPECULATION_CTRL 53 0 0 0 0 +.syscon pr PR_SET_SPECULATION_CTRL 53 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_THP_DISABLE.s b/libc/sysv/consts/PR_SET_THP_DISABLE.s index 6bbb4d4ad..c47911247 100644 --- a/libc/sysv/consts/PR_SET_THP_DISABLE.s +++ b/libc/sysv/consts/PR_SET_THP_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_THP_DISABLE 41 0 0 0 0 +.syscon pr PR_SET_THP_DISABLE 41 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_TIMERSLACK.s b/libc/sysv/consts/PR_SET_TIMERSLACK.s index 3f71ab887..7f498391e 100644 --- a/libc/sysv/consts/PR_SET_TIMERSLACK.s +++ b/libc/sysv/consts/PR_SET_TIMERSLACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_TIMERSLACK 29 0 0 0 0 +.syscon pr PR_SET_TIMERSLACK 29 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_TIMING.s b/libc/sysv/consts/PR_SET_TIMING.s index ad462d758..771feeee3 100644 --- a/libc/sysv/consts/PR_SET_TIMING.s +++ b/libc/sysv/consts/PR_SET_TIMING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_TIMING 14 0 0 0 0 +.syscon pr PR_SET_TIMING 14 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_TSC.s b/libc/sysv/consts/PR_SET_TSC.s index 9aad89c1c..eb2874e81 100644 --- a/libc/sysv/consts/PR_SET_TSC.s +++ b/libc/sysv/consts/PR_SET_TSC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_TSC 26 0 0 0 0 +.syscon pr PR_SET_TSC 26 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SET_UNALIGN.s b/libc/sysv/consts/PR_SET_UNALIGN.s index 59c262244..17fcf125e 100644 --- a/libc/sysv/consts/PR_SET_UNALIGN.s +++ b/libc/sysv/consts/PR_SET_UNALIGN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SET_UNALIGN 6 0 0 0 0 +.syscon pr PR_SET_UNALIGN 6 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SPEC_DISABLE.s b/libc/sysv/consts/PR_SPEC_DISABLE.s index 49b86dfab..5ac3e5630 100644 --- a/libc/sysv/consts/PR_SPEC_DISABLE.s +++ b/libc/sysv/consts/PR_SPEC_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SPEC_DISABLE 4 0 0 0 0 +.syscon pr PR_SPEC_DISABLE 4 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SPEC_ENABLE.s b/libc/sysv/consts/PR_SPEC_ENABLE.s index f0716991d..32284669c 100644 --- a/libc/sysv/consts/PR_SPEC_ENABLE.s +++ b/libc/sysv/consts/PR_SPEC_ENABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SPEC_ENABLE 2 0 0 0 0 +.syscon pr PR_SPEC_ENABLE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SPEC_FORCE_DISABLE.s b/libc/sysv/consts/PR_SPEC_FORCE_DISABLE.s index ced34b817..f3fa23b37 100644 --- a/libc/sysv/consts/PR_SPEC_FORCE_DISABLE.s +++ b/libc/sysv/consts/PR_SPEC_FORCE_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SPEC_FORCE_DISABLE 8 0 0 0 0 +.syscon pr PR_SPEC_FORCE_DISABLE 8 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SPEC_NOT_AFFECTED.s b/libc/sysv/consts/PR_SPEC_NOT_AFFECTED.s index b4bb35fc3..da9a8d879 100644 --- a/libc/sysv/consts/PR_SPEC_NOT_AFFECTED.s +++ b/libc/sysv/consts/PR_SPEC_NOT_AFFECTED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SPEC_NOT_AFFECTED 0 0 0 0 0 +.syscon pr PR_SPEC_NOT_AFFECTED 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SPEC_PRCTL.s b/libc/sysv/consts/PR_SPEC_PRCTL.s index 89bbb1ecd..e62582a84 100644 --- a/libc/sysv/consts/PR_SPEC_PRCTL.s +++ b/libc/sysv/consts/PR_SPEC_PRCTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SPEC_PRCTL 1 0 0 0 0 +.syscon pr PR_SPEC_PRCTL 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_SPEC_STORE_BYPASS.s b/libc/sysv/consts/PR_SPEC_STORE_BYPASS.s index f289b76f4..95c91baf2 100644 --- a/libc/sysv/consts/PR_SPEC_STORE_BYPASS.s +++ b/libc/sysv/consts/PR_SPEC_STORE_BYPASS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_SPEC_STORE_BYPASS 0 0 0 0 0 +.syscon pr PR_SPEC_STORE_BYPASS 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_TASK_PERF_EVENTS_DISABLE.s b/libc/sysv/consts/PR_TASK_PERF_EVENTS_DISABLE.s index 4f109ff69..2d420e484 100644 --- a/libc/sysv/consts/PR_TASK_PERF_EVENTS_DISABLE.s +++ b/libc/sysv/consts/PR_TASK_PERF_EVENTS_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_TASK_PERF_EVENTS_DISABLE 31 0 0 0 0 +.syscon pr PR_TASK_PERF_EVENTS_DISABLE 31 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_TASK_PERF_EVENTS_ENABLE.s b/libc/sysv/consts/PR_TASK_PERF_EVENTS_ENABLE.s index 54329c7ea..580780f59 100644 --- a/libc/sysv/consts/PR_TASK_PERF_EVENTS_ENABLE.s +++ b/libc/sysv/consts/PR_TASK_PERF_EVENTS_ENABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_TASK_PERF_EVENTS_ENABLE 0x20 0 0 0 0 +.syscon pr PR_TASK_PERF_EVENTS_ENABLE 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_TIMING_STATISTICAL.s b/libc/sysv/consts/PR_TIMING_STATISTICAL.s index f0c7e5bdb..0633fbfb4 100644 --- a/libc/sysv/consts/PR_TIMING_STATISTICAL.s +++ b/libc/sysv/consts/PR_TIMING_STATISTICAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_TIMING_STATISTICAL 0 0 0 0 0 +.syscon pr PR_TIMING_STATISTICAL 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_TIMING_TIMESTAMP.s b/libc/sysv/consts/PR_TIMING_TIMESTAMP.s index a468444f0..612c48c4b 100644 --- a/libc/sysv/consts/PR_TIMING_TIMESTAMP.s +++ b/libc/sysv/consts/PR_TIMING_TIMESTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_TIMING_TIMESTAMP 1 0 0 0 0 +.syscon pr PR_TIMING_TIMESTAMP 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_TSC_ENABLE.s b/libc/sysv/consts/PR_TSC_ENABLE.s index a34f19100..b08e13900 100644 --- a/libc/sysv/consts/PR_TSC_ENABLE.s +++ b/libc/sysv/consts/PR_TSC_ENABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_TSC_ENABLE 1 0 0 0 0 +.syscon pr PR_TSC_ENABLE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_TSC_SIGSEGV.s b/libc/sysv/consts/PR_TSC_SIGSEGV.s index 363f49552..18387c26d 100644 --- a/libc/sysv/consts/PR_TSC_SIGSEGV.s +++ b/libc/sysv/consts/PR_TSC_SIGSEGV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_TSC_SIGSEGV 2 0 0 0 0 +.syscon pr PR_TSC_SIGSEGV 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_UNALIGN_NOPRINT.s b/libc/sysv/consts/PR_UNALIGN_NOPRINT.s index e1a580bc5..c3ebf16b5 100644 --- a/libc/sysv/consts/PR_UNALIGN_NOPRINT.s +++ b/libc/sysv/consts/PR_UNALIGN_NOPRINT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_UNALIGN_NOPRINT 1 0 0 0 0 +.syscon pr PR_UNALIGN_NOPRINT 1 0 0 0 0 0 diff --git a/libc/sysv/consts/PR_UNALIGN_SIGBUS.s b/libc/sysv/consts/PR_UNALIGN_SIGBUS.s index c1135deb5..57fc2d389 100644 --- a/libc/sysv/consts/PR_UNALIGN_SIGBUS.s +++ b/libc/sysv/consts/PR_UNALIGN_SIGBUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pr PR_UNALIGN_SIGBUS 2 0 0 0 0 +.syscon pr PR_UNALIGN_SIGBUS 2 0 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_BARRIER_SERIAL_THREAD.s b/libc/sysv/consts/PTHREAD_BARRIER_SERIAL_THREAD.s index ad3572bbf..a0c699837 100644 --- a/libc/sysv/consts/PTHREAD_BARRIER_SERIAL_THREAD.s +++ b/libc/sysv/consts/PTHREAD_BARRIER_SERIAL_THREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_BARRIER_SERIAL_THREAD -1 0 -1 -1 0 +.syscon misc PTHREAD_BARRIER_SERIAL_THREAD -1 0 -1 -1 -1 0 diff --git a/libc/sysv/consts/PTHREAD_CANCEL_ASYNCHRONOUS.s b/libc/sysv/consts/PTHREAD_CANCEL_ASYNCHRONOUS.s index 37e6bbba6..37b3bac25 100644 --- a/libc/sysv/consts/PTHREAD_CANCEL_ASYNCHRONOUS.s +++ b/libc/sysv/consts/PTHREAD_CANCEL_ASYNCHRONOUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_CANCEL_ASYNCHRONOUS 1 0 2 2 0 +.syscon misc PTHREAD_CANCEL_ASYNCHRONOUS 1 0 2 2 2 0 diff --git a/libc/sysv/consts/PTHREAD_CANCEL_DEFERRED.s b/libc/sysv/consts/PTHREAD_CANCEL_DEFERRED.s index bfa18321e..8567e306a 100644 --- a/libc/sysv/consts/PTHREAD_CANCEL_DEFERRED.s +++ b/libc/sysv/consts/PTHREAD_CANCEL_DEFERRED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_CANCEL_DEFERRED 0 2 0 0 0 +.syscon misc PTHREAD_CANCEL_DEFERRED 0 2 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_CANCEL_DISABLE.s b/libc/sysv/consts/PTHREAD_CANCEL_DISABLE.s index 7643ce899..c6ce7f9f7 100644 --- a/libc/sysv/consts/PTHREAD_CANCEL_DISABLE.s +++ b/libc/sysv/consts/PTHREAD_CANCEL_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_CANCEL_DISABLE 1 0 1 1 0 +.syscon misc PTHREAD_CANCEL_DISABLE 1 0 1 1 1 0 diff --git a/libc/sysv/consts/PTHREAD_CANCEL_ENABLE.s b/libc/sysv/consts/PTHREAD_CANCEL_ENABLE.s index fe4f6325a..92c293aa4 100644 --- a/libc/sysv/consts/PTHREAD_CANCEL_ENABLE.s +++ b/libc/sysv/consts/PTHREAD_CANCEL_ENABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_CANCEL_ENABLE 0 1 0 0 0 +.syscon misc PTHREAD_CANCEL_ENABLE 0 1 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_CREATE_DETACHED.s b/libc/sysv/consts/PTHREAD_CREATE_DETACHED.s index 46f45fec5..c8f869183 100644 --- a/libc/sysv/consts/PTHREAD_CREATE_DETACHED.s +++ b/libc/sysv/consts/PTHREAD_CREATE_DETACHED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_CREATE_DETACHED 1 2 1 1 0 +.syscon misc PTHREAD_CREATE_DETACHED 1 2 1 1 1 0 diff --git a/libc/sysv/consts/PTHREAD_CREATE_JOINABLE.s b/libc/sysv/consts/PTHREAD_CREATE_JOINABLE.s index 79d48b6b6..e3d3e4548 100644 --- a/libc/sysv/consts/PTHREAD_CREATE_JOINABLE.s +++ b/libc/sysv/consts/PTHREAD_CREATE_JOINABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_CREATE_JOINABLE 0 1 0 0 0 +.syscon misc PTHREAD_CREATE_JOINABLE 0 1 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_DESTRUCTOR_ITERATIONS.s b/libc/sysv/consts/PTHREAD_DESTRUCTOR_ITERATIONS.s index 9d6263624..702c57d06 100644 --- a/libc/sysv/consts/PTHREAD_DESTRUCTOR_ITERATIONS.s +++ b/libc/sysv/consts/PTHREAD_DESTRUCTOR_ITERATIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 0 +.syscon misc PTHREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 4 0 diff --git a/libc/sysv/consts/PTHREAD_EXPLICIT_SCHED.s b/libc/sysv/consts/PTHREAD_EXPLICIT_SCHED.s index 3427a95da..d918dd4bb 100644 --- a/libc/sysv/consts/PTHREAD_EXPLICIT_SCHED.s +++ b/libc/sysv/consts/PTHREAD_EXPLICIT_SCHED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_EXPLICIT_SCHED 1 2 0 0 0 +.syscon misc PTHREAD_EXPLICIT_SCHED 1 2 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_INHERIT_SCHED.s b/libc/sysv/consts/PTHREAD_INHERIT_SCHED.s index f798ec4fc..cd21ea2e9 100644 --- a/libc/sysv/consts/PTHREAD_INHERIT_SCHED.s +++ b/libc/sysv/consts/PTHREAD_INHERIT_SCHED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_INHERIT_SCHED 0 1 4 4 0 +.syscon misc PTHREAD_INHERIT_SCHED 0 1 4 4 4 0 diff --git a/libc/sysv/consts/PTHREAD_KEYS_MAX.s b/libc/sysv/consts/PTHREAD_KEYS_MAX.s index c8c4d188c..c0aa6df78 100644 --- a/libc/sysv/consts/PTHREAD_KEYS_MAX.s +++ b/libc/sysv/consts/PTHREAD_KEYS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_KEYS_MAX 0x0400 0x0200 0x0100 0x0100 0 +.syscon misc PTHREAD_KEYS_MAX 0x0400 0x0200 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/PTHREAD_MUTEX_DEFAULT.s b/libc/sysv/consts/PTHREAD_MUTEX_DEFAULT.s index 36b9443bd..dda97445e 100644 --- a/libc/sysv/consts/PTHREAD_MUTEX_DEFAULT.s +++ b/libc/sysv/consts/PTHREAD_MUTEX_DEFAULT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_MUTEX_DEFAULT 0 0 1 4 0 +.syscon misc PTHREAD_MUTEX_DEFAULT 0 0 1 4 4 0 diff --git a/libc/sysv/consts/PTHREAD_MUTEX_ERRORCHECK.s b/libc/sysv/consts/PTHREAD_MUTEX_ERRORCHECK.s index 98849ba20..45a893153 100644 --- a/libc/sysv/consts/PTHREAD_MUTEX_ERRORCHECK.s +++ b/libc/sysv/consts/PTHREAD_MUTEX_ERRORCHECK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_MUTEX_ERRORCHECK 0 1 0 1 0 +.syscon misc PTHREAD_MUTEX_ERRORCHECK 0 1 0 1 1 0 diff --git a/libc/sysv/consts/PTHREAD_MUTEX_NORMAL.s b/libc/sysv/consts/PTHREAD_MUTEX_NORMAL.s index beea84b65..ea759107a 100644 --- a/libc/sysv/consts/PTHREAD_MUTEX_NORMAL.s +++ b/libc/sysv/consts/PTHREAD_MUTEX_NORMAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_MUTEX_NORMAL 0 0 0 3 0 +.syscon misc PTHREAD_MUTEX_NORMAL 0 0 0 3 3 0 diff --git a/libc/sysv/consts/PTHREAD_MUTEX_RECURSIVE.s b/libc/sysv/consts/PTHREAD_MUTEX_RECURSIVE.s index b8dd83816..e11d4df3b 100644 --- a/libc/sysv/consts/PTHREAD_MUTEX_RECURSIVE.s +++ b/libc/sysv/consts/PTHREAD_MUTEX_RECURSIVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_MUTEX_RECURSIVE 0 2 0 2 0 +.syscon misc PTHREAD_MUTEX_RECURSIVE 0 2 0 2 2 0 diff --git a/libc/sysv/consts/PTHREAD_MUTEX_ROBUST.s b/libc/sysv/consts/PTHREAD_MUTEX_ROBUST.s index 280c78809..4822eaed0 100644 --- a/libc/sysv/consts/PTHREAD_MUTEX_ROBUST.s +++ b/libc/sysv/consts/PTHREAD_MUTEX_ROBUST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_MUTEX_ROBUST 0 0 1 0 0 +.syscon misc PTHREAD_MUTEX_ROBUST 0 0 1 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_MUTEX_STALLED.s b/libc/sysv/consts/PTHREAD_MUTEX_STALLED.s index 8b3ef1284..0b3cc51a8 100644 --- a/libc/sysv/consts/PTHREAD_MUTEX_STALLED.s +++ b/libc/sysv/consts/PTHREAD_MUTEX_STALLED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_MUTEX_STALLED 0 0 0 0 0 +.syscon misc PTHREAD_MUTEX_STALLED 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_PRIO_INHERIT.s b/libc/sysv/consts/PTHREAD_PRIO_INHERIT.s index 6832d50e8..f2383108a 100644 --- a/libc/sysv/consts/PTHREAD_PRIO_INHERIT.s +++ b/libc/sysv/consts/PTHREAD_PRIO_INHERIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_PRIO_INHERIT 0 1 1 1 0 +.syscon misc PTHREAD_PRIO_INHERIT 0 1 1 1 1 0 diff --git a/libc/sysv/consts/PTHREAD_PRIO_NONE.s b/libc/sysv/consts/PTHREAD_PRIO_NONE.s index a809c290d..9d0db2ac7 100644 --- a/libc/sysv/consts/PTHREAD_PRIO_NONE.s +++ b/libc/sysv/consts/PTHREAD_PRIO_NONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_PRIO_NONE 0 0 0 0 0 +.syscon misc PTHREAD_PRIO_NONE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_PRIO_PROTECT.s b/libc/sysv/consts/PTHREAD_PRIO_PROTECT.s index 0ef1b0627..37e193d31 100644 --- a/libc/sysv/consts/PTHREAD_PRIO_PROTECT.s +++ b/libc/sysv/consts/PTHREAD_PRIO_PROTECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_PRIO_PROTECT 0 2 2 2 0 +.syscon misc PTHREAD_PRIO_PROTECT 0 2 2 2 2 0 diff --git a/libc/sysv/consts/PTHREAD_PROCESS_PRIVATE.s b/libc/sysv/consts/PTHREAD_PROCESS_PRIVATE.s index 37c211e46..bd0272169 100644 --- a/libc/sysv/consts/PTHREAD_PROCESS_PRIVATE.s +++ b/libc/sysv/consts/PTHREAD_PROCESS_PRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_PROCESS_PRIVATE 0 2 0 0 0 +.syscon misc PTHREAD_PROCESS_PRIVATE 0 2 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_PROCESS_SHARED.s b/libc/sysv/consts/PTHREAD_PROCESS_SHARED.s index 156968626..2db3d6f28 100644 --- a/libc/sysv/consts/PTHREAD_PROCESS_SHARED.s +++ b/libc/sysv/consts/PTHREAD_PROCESS_SHARED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_PROCESS_SHARED 1 1 1 1 0 +.syscon misc PTHREAD_PROCESS_SHARED 1 1 1 1 1 0 diff --git a/libc/sysv/consts/PTHREAD_SCOPE_PROCESS.s b/libc/sysv/consts/PTHREAD_SCOPE_PROCESS.s index 6b1c0446c..ec74c5916 100644 --- a/libc/sysv/consts/PTHREAD_SCOPE_PROCESS.s +++ b/libc/sysv/consts/PTHREAD_SCOPE_PROCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_SCOPE_PROCESS 1 2 0 0 0 +.syscon misc PTHREAD_SCOPE_PROCESS 1 2 0 0 0 0 diff --git a/libc/sysv/consts/PTHREAD_SCOPE_SYSTEM.s b/libc/sysv/consts/PTHREAD_SCOPE_SYSTEM.s index 7dde92daa..6a672e2ba 100644 --- a/libc/sysv/consts/PTHREAD_SCOPE_SYSTEM.s +++ b/libc/sysv/consts/PTHREAD_SCOPE_SYSTEM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_SCOPE_SYSTEM 0 1 2 2 0 +.syscon misc PTHREAD_SCOPE_SYSTEM 0 1 2 2 2 0 diff --git a/libc/sysv/consts/PTHREAD_STACK_MIN.s b/libc/sysv/consts/PTHREAD_STACK_MIN.s index 3c24944cf..4ac85bbfe 100644 --- a/libc/sysv/consts/PTHREAD_STACK_MIN.s +++ b/libc/sysv/consts/PTHREAD_STACK_MIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc PTHREAD_STACK_MIN 0x4000 0x2000 0x0800 0x1000 0 +.syscon misc PTHREAD_STACK_MIN 0x4000 0x2000 0x0800 0x1000 0x1000 0 diff --git a/libc/sysv/consts/PTMGET.s b/libc/sysv/consts/PTMGET.s index 6e7c37a5c..3be787906 100644 --- a/libc/sysv/consts/PTMGET.s +++ b/libc/sysv/consts/PTMGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty PTMGET 0 0 0 0x40287401 -1 +.syscon pty PTMGET 0 0 0 0x40287401 0x40287401 -1 diff --git a/libc/sysv/consts/PTRACE_ATTACH.s b/libc/sysv/consts/PTRACE_ATTACH.s index b9f82e63d..1e4b32c6d 100644 --- a/libc/sysv/consts/PTRACE_ATTACH.s +++ b/libc/sysv/consts/PTRACE_ATTACH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_ATTACH 16 10 10 9 -1 +.syscon ptrace PTRACE_ATTACH 16 10 10 9 -1 -1 diff --git a/libc/sysv/consts/PTRACE_CONT.s b/libc/sysv/consts/PTRACE_CONT.s index 0b9e395d1..a7c5e7a78 100644 --- a/libc/sysv/consts/PTRACE_CONT.s +++ b/libc/sysv/consts/PTRACE_CONT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_CONT 7 7 7 7 -1 +.syscon ptrace PTRACE_CONT 7 7 7 7 -1 -1 diff --git a/libc/sysv/consts/PTRACE_DETACH.s b/libc/sysv/consts/PTRACE_DETACH.s index f074177d6..4b1aec8b3 100644 --- a/libc/sysv/consts/PTRACE_DETACH.s +++ b/libc/sysv/consts/PTRACE_DETACH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_DETACH 17 11 11 10 -1 +.syscon ptrace PTRACE_DETACH 17 11 11 10 -1 -1 diff --git a/libc/sysv/consts/PTRACE_EVENT_CLONE.s b/libc/sysv/consts/PTRACE_EVENT_CLONE.s index ab860f4b3..c0bd1e9ec 100644 --- a/libc/sysv/consts/PTRACE_EVENT_CLONE.s +++ b/libc/sysv/consts/PTRACE_EVENT_CLONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_EVENT_CLONE 3 -1 -1 -1 -1 +.syscon ptrace PTRACE_EVENT_CLONE 3 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_EVENT_EXEC.s b/libc/sysv/consts/PTRACE_EVENT_EXEC.s index be0847bd8..deeed7f6e 100644 --- a/libc/sysv/consts/PTRACE_EVENT_EXEC.s +++ b/libc/sysv/consts/PTRACE_EVENT_EXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_EVENT_EXEC 4 -1 -1 -1 -1 +.syscon ptrace PTRACE_EVENT_EXEC 4 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_EVENT_EXIT.s b/libc/sysv/consts/PTRACE_EVENT_EXIT.s index fcd29b80d..c167b40f5 100644 --- a/libc/sysv/consts/PTRACE_EVENT_EXIT.s +++ b/libc/sysv/consts/PTRACE_EVENT_EXIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_EVENT_EXIT 6 -1 -1 -1 -1 +.syscon ptrace PTRACE_EVENT_EXIT 6 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_EVENT_FORK.s b/libc/sysv/consts/PTRACE_EVENT_FORK.s index a38d00b4d..c88982830 100644 --- a/libc/sysv/consts/PTRACE_EVENT_FORK.s +++ b/libc/sysv/consts/PTRACE_EVENT_FORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_EVENT_FORK 1 -1 -1 -1 -1 +.syscon ptrace PTRACE_EVENT_FORK 1 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_EVENT_VFORK.s b/libc/sysv/consts/PTRACE_EVENT_VFORK.s index 374f1675d..102960439 100644 --- a/libc/sysv/consts/PTRACE_EVENT_VFORK.s +++ b/libc/sysv/consts/PTRACE_EVENT_VFORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_EVENT_VFORK 2 -1 -1 -1 -1 +.syscon ptrace PTRACE_EVENT_VFORK 2 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_EVENT_VFORK_DONE.s b/libc/sysv/consts/PTRACE_EVENT_VFORK_DONE.s index 6e56553f0..b091ce5de 100644 --- a/libc/sysv/consts/PTRACE_EVENT_VFORK_DONE.s +++ b/libc/sysv/consts/PTRACE_EVENT_VFORK_DONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_EVENT_VFORK_DONE 5 -1 -1 -1 -1 +.syscon ptrace PTRACE_EVENT_VFORK_DONE 5 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_GETEVENTMSG.s b/libc/sysv/consts/PTRACE_GETEVENTMSG.s index 6df8aa8e7..d89ddd85f 100644 --- a/libc/sysv/consts/PTRACE_GETEVENTMSG.s +++ b/libc/sysv/consts/PTRACE_GETEVENTMSG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_GETEVENTMSG 0x4201 -1 -1 -1 -1 +.syscon ptrace PTRACE_GETEVENTMSG 0x4201 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_GETFPREGS.s b/libc/sysv/consts/PTRACE_GETFPREGS.s index 83151635c..429fd9c72 100644 --- a/libc/sysv/consts/PTRACE_GETFPREGS.s +++ b/libc/sysv/consts/PTRACE_GETFPREGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_GETFPREGS 14 -1 35 35 -1 +.syscon ptrace PTRACE_GETFPREGS 14 -1 35 35 -1 -1 diff --git a/libc/sysv/consts/PTRACE_GETFPXREGS.s b/libc/sysv/consts/PTRACE_GETFPXREGS.s index ec64db9c0..11cfbe0a4 100644 --- a/libc/sysv/consts/PTRACE_GETFPXREGS.s +++ b/libc/sysv/consts/PTRACE_GETFPXREGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_GETFPXREGS 18 -1 -1 -1 -1 +.syscon ptrace PTRACE_GETFPXREGS 18 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_GETREGS.s b/libc/sysv/consts/PTRACE_GETREGS.s index 990f2deb0..fd974e845 100644 --- a/libc/sysv/consts/PTRACE_GETREGS.s +++ b/libc/sysv/consts/PTRACE_GETREGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_GETREGS 12 -1 33 33 -1 +.syscon ptrace PTRACE_GETREGS 12 -1 33 33 -1 -1 diff --git a/libc/sysv/consts/PTRACE_GETREGSET.s b/libc/sysv/consts/PTRACE_GETREGSET.s index b8c1be06b..e251aaa6f 100644 --- a/libc/sysv/consts/PTRACE_GETREGSET.s +++ b/libc/sysv/consts/PTRACE_GETREGSET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_GETREGSET 0x4204 -1 -1 -1 -1 +.syscon ptrace PTRACE_GETREGSET 0x4204 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_GETSIGINFO.s b/libc/sysv/consts/PTRACE_GETSIGINFO.s index 858e0c531..c6f8823c0 100644 --- a/libc/sysv/consts/PTRACE_GETSIGINFO.s +++ b/libc/sysv/consts/PTRACE_GETSIGINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_GETSIGINFO 0x4202 -1 -1 -1 -1 +.syscon ptrace PTRACE_GETSIGINFO 0x4202 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_GETSIGMASK.s b/libc/sysv/consts/PTRACE_GETSIGMASK.s index 310c8f321..e1aacf68f 100644 --- a/libc/sysv/consts/PTRACE_GETSIGMASK.s +++ b/libc/sysv/consts/PTRACE_GETSIGMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_GETSIGMASK 0x420a -1 -1 -1 -1 +.syscon ptrace PTRACE_GETSIGMASK 0x420a -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_INTERRUPT.s b/libc/sysv/consts/PTRACE_INTERRUPT.s index 09dd03933..5fb07796f 100644 --- a/libc/sysv/consts/PTRACE_INTERRUPT.s +++ b/libc/sysv/consts/PTRACE_INTERRUPT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_INTERRUPT 0x4207 -1 -1 -1 -1 +.syscon ptrace PTRACE_INTERRUPT 0x4207 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_KILL.s b/libc/sysv/consts/PTRACE_KILL.s index 87d870d47..058d3ca20 100644 --- a/libc/sysv/consts/PTRACE_KILL.s +++ b/libc/sysv/consts/PTRACE_KILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_KILL 8 8 8 8 -1 +.syscon ptrace PTRACE_KILL 8 8 8 8 -1 -1 diff --git a/libc/sysv/consts/PTRACE_LISTEN.s b/libc/sysv/consts/PTRACE_LISTEN.s index b9f3e87f6..5ece4527b 100644 --- a/libc/sysv/consts/PTRACE_LISTEN.s +++ b/libc/sysv/consts/PTRACE_LISTEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_LISTEN 0x4208 -1 -1 -1 -1 +.syscon ptrace PTRACE_LISTEN 0x4208 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_MASK.s b/libc/sysv/consts/PTRACE_O_MASK.s index 2af8df3ff..602d4ee4d 100644 --- a/libc/sysv/consts/PTRACE_O_MASK.s +++ b/libc/sysv/consts/PTRACE_O_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_MASK 0x007f -1 -1 -1 -1 +.syscon ptrace PTRACE_O_MASK 0x007f -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_TRACECLONE.s b/libc/sysv/consts/PTRACE_O_TRACECLONE.s index ab087c375..6cb1e843c 100644 --- a/libc/sysv/consts/PTRACE_O_TRACECLONE.s +++ b/libc/sysv/consts/PTRACE_O_TRACECLONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_TRACECLONE 0x0008 -1 -1 -1 -1 +.syscon ptrace PTRACE_O_TRACECLONE 0x0008 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_TRACEEXEC.s b/libc/sysv/consts/PTRACE_O_TRACEEXEC.s index a4d7bbd24..2d090e35d 100644 --- a/libc/sysv/consts/PTRACE_O_TRACEEXEC.s +++ b/libc/sysv/consts/PTRACE_O_TRACEEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_TRACEEXEC 0x0010 -1 -1 -1 -1 +.syscon ptrace PTRACE_O_TRACEEXEC 0x0010 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_TRACEEXIT.s b/libc/sysv/consts/PTRACE_O_TRACEEXIT.s index 83b8a7b18..fb0fb15d8 100644 --- a/libc/sysv/consts/PTRACE_O_TRACEEXIT.s +++ b/libc/sysv/consts/PTRACE_O_TRACEEXIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_TRACEEXIT 0x0040 -1 -1 -1 -1 +.syscon ptrace PTRACE_O_TRACEEXIT 0x0040 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_TRACEFORK.s b/libc/sysv/consts/PTRACE_O_TRACEFORK.s index e0f255180..fd0286b66 100644 --- a/libc/sysv/consts/PTRACE_O_TRACEFORK.s +++ b/libc/sysv/consts/PTRACE_O_TRACEFORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_TRACEFORK 0x0002 -1 -1 -1 -1 +.syscon ptrace PTRACE_O_TRACEFORK 0x0002 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_TRACESYSGOOD.s b/libc/sysv/consts/PTRACE_O_TRACESYSGOOD.s index a4a33c868..48aac4c0a 100644 --- a/libc/sysv/consts/PTRACE_O_TRACESYSGOOD.s +++ b/libc/sysv/consts/PTRACE_O_TRACESYSGOOD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_TRACESYSGOOD 0x0001 -1 -1 -1 -1 +.syscon ptrace PTRACE_O_TRACESYSGOOD 0x0001 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_TRACEVFORK.s b/libc/sysv/consts/PTRACE_O_TRACEVFORK.s index b3ea27ce8..83b1323ce 100644 --- a/libc/sysv/consts/PTRACE_O_TRACEVFORK.s +++ b/libc/sysv/consts/PTRACE_O_TRACEVFORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_TRACEVFORK 0x0004 -1 -1 -1 -1 +.syscon ptrace PTRACE_O_TRACEVFORK 0x0004 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_O_TRACEVFORKDONE.s b/libc/sysv/consts/PTRACE_O_TRACEVFORKDONE.s index 17fc3b79d..ba547aead 100644 --- a/libc/sysv/consts/PTRACE_O_TRACEVFORKDONE.s +++ b/libc/sysv/consts/PTRACE_O_TRACEVFORKDONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_O_TRACEVFORKDONE 0x0020 -1 -1 -1 -1 +.syscon ptrace PTRACE_O_TRACEVFORKDONE 0x0020 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_PEEKDATA.s b/libc/sysv/consts/PTRACE_PEEKDATA.s index d2a44f72a..951412c44 100644 --- a/libc/sysv/consts/PTRACE_PEEKDATA.s +++ b/libc/sysv/consts/PTRACE_PEEKDATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_PEEKDATA 2 2 2 2 -1 +.syscon ptrace PTRACE_PEEKDATA 2 2 2 2 -1 -1 diff --git a/libc/sysv/consts/PTRACE_PEEKSIGINFO.s b/libc/sysv/consts/PTRACE_PEEKSIGINFO.s index a723285a6..3517e4b6f 100644 --- a/libc/sysv/consts/PTRACE_PEEKSIGINFO.s +++ b/libc/sysv/consts/PTRACE_PEEKSIGINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_PEEKSIGINFO 0x4209 -1 -1 -1 -1 +.syscon ptrace PTRACE_PEEKSIGINFO 0x4209 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_PEEKTEXT.s b/libc/sysv/consts/PTRACE_PEEKTEXT.s index 5e04db05f..ce72b9887 100644 --- a/libc/sysv/consts/PTRACE_PEEKTEXT.s +++ b/libc/sysv/consts/PTRACE_PEEKTEXT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_PEEKTEXT 1 1 1 1 -1 +.syscon ptrace PTRACE_PEEKTEXT 1 1 1 1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_PEEKUSER.s b/libc/sysv/consts/PTRACE_PEEKUSER.s index d568de872..d94134bc8 100644 --- a/libc/sysv/consts/PTRACE_PEEKUSER.s +++ b/libc/sysv/consts/PTRACE_PEEKUSER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_PEEKUSER 3 3 -1 -1 -1 +.syscon ptrace PTRACE_PEEKUSER 3 3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_POKEDATA.s b/libc/sysv/consts/PTRACE_POKEDATA.s index 60c5061da..998b7b406 100644 --- a/libc/sysv/consts/PTRACE_POKEDATA.s +++ b/libc/sysv/consts/PTRACE_POKEDATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_POKEDATA 5 5 5 5 -1 +.syscon ptrace PTRACE_POKEDATA 5 5 5 5 -1 -1 diff --git a/libc/sysv/consts/PTRACE_POKETEXT.s b/libc/sysv/consts/PTRACE_POKETEXT.s index 73d6314e6..0e11e328e 100644 --- a/libc/sysv/consts/PTRACE_POKETEXT.s +++ b/libc/sysv/consts/PTRACE_POKETEXT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_POKETEXT 4 4 4 4 -1 +.syscon ptrace PTRACE_POKETEXT 4 4 4 4 -1 -1 diff --git a/libc/sysv/consts/PTRACE_POKEUSER.s b/libc/sysv/consts/PTRACE_POKEUSER.s index 1ca71ea34..90f21a2f0 100644 --- a/libc/sysv/consts/PTRACE_POKEUSER.s +++ b/libc/sysv/consts/PTRACE_POKEUSER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_POKEUSER 6 6 -1 -1 -1 +.syscon ptrace PTRACE_POKEUSER 6 6 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SECCOMP_GET_FILTER.s b/libc/sysv/consts/PTRACE_SECCOMP_GET_FILTER.s index 57c810d1f..094ef28b7 100644 --- a/libc/sysv/consts/PTRACE_SECCOMP_GET_FILTER.s +++ b/libc/sysv/consts/PTRACE_SECCOMP_GET_FILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c -1 -1 -1 -1 +.syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SEIZE.s b/libc/sysv/consts/PTRACE_SEIZE.s index aebc574d8..d2e4641ee 100644 --- a/libc/sysv/consts/PTRACE_SEIZE.s +++ b/libc/sysv/consts/PTRACE_SEIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SEIZE 0x4206 -1 -1 -1 -1 +.syscon ptrace PTRACE_SEIZE 0x4206 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SETFPREGS.s b/libc/sysv/consts/PTRACE_SETFPREGS.s index 8ff22473e..a89d04651 100644 --- a/libc/sysv/consts/PTRACE_SETFPREGS.s +++ b/libc/sysv/consts/PTRACE_SETFPREGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SETFPREGS 15 -1 36 36 -1 +.syscon ptrace PTRACE_SETFPREGS 15 -1 36 36 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SETFPXREGS.s b/libc/sysv/consts/PTRACE_SETFPXREGS.s index c98589774..0edfdfc14 100644 --- a/libc/sysv/consts/PTRACE_SETFPXREGS.s +++ b/libc/sysv/consts/PTRACE_SETFPXREGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SETFPXREGS 19 -1 -1 -1 -1 +.syscon ptrace PTRACE_SETFPXREGS 19 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SETOPTIONS.s b/libc/sysv/consts/PTRACE_SETOPTIONS.s index 4da8ff83d..793c3764d 100644 --- a/libc/sysv/consts/PTRACE_SETOPTIONS.s +++ b/libc/sysv/consts/PTRACE_SETOPTIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SETOPTIONS 0x4200 -1 -1 -1 -1 +.syscon ptrace PTRACE_SETOPTIONS 0x4200 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SETREGS.s b/libc/sysv/consts/PTRACE_SETREGS.s index 534d65bd7..f9458e722 100644 --- a/libc/sysv/consts/PTRACE_SETREGS.s +++ b/libc/sysv/consts/PTRACE_SETREGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SETREGS 13 -1 34 34 -1 +.syscon ptrace PTRACE_SETREGS 13 -1 34 34 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SETREGSET.s b/libc/sysv/consts/PTRACE_SETREGSET.s index 5a3d4a95b..dbabddb54 100644 --- a/libc/sysv/consts/PTRACE_SETREGSET.s +++ b/libc/sysv/consts/PTRACE_SETREGSET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SETREGSET 0x4205 -1 -1 -1 -1 +.syscon ptrace PTRACE_SETREGSET 0x4205 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SETSIGINFO.s b/libc/sysv/consts/PTRACE_SETSIGINFO.s index 2127309e4..3abfdaa7b 100644 --- a/libc/sysv/consts/PTRACE_SETSIGINFO.s +++ b/libc/sysv/consts/PTRACE_SETSIGINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SETSIGINFO 0x4203 -1 -1 -1 -1 +.syscon ptrace PTRACE_SETSIGINFO 0x4203 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SETSIGMASK.s b/libc/sysv/consts/PTRACE_SETSIGMASK.s index dda80a923..43e3f0a66 100644 --- a/libc/sysv/consts/PTRACE_SETSIGMASK.s +++ b/libc/sysv/consts/PTRACE_SETSIGMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SETSIGMASK 0x420b -1 -1 -1 -1 +.syscon ptrace PTRACE_SETSIGMASK 0x420b -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SINGLESTEP.s b/libc/sysv/consts/PTRACE_SINGLESTEP.s index d2071d28d..e624c8abd 100644 --- a/libc/sysv/consts/PTRACE_SINGLESTEP.s +++ b/libc/sysv/consts/PTRACE_SINGLESTEP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SINGLESTEP 9 9 9 32 -1 +.syscon ptrace PTRACE_SINGLESTEP 9 9 9 32 -1 -1 diff --git a/libc/sysv/consts/PTRACE_SYSCALL.s b/libc/sysv/consts/PTRACE_SYSCALL.s index 27d9c84e7..90b1a6230 100644 --- a/libc/sysv/consts/PTRACE_SYSCALL.s +++ b/libc/sysv/consts/PTRACE_SYSCALL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_SYSCALL 24 -1 22 -1 -1 +.syscon ptrace PTRACE_SYSCALL 24 -1 22 -1 -1 -1 diff --git a/libc/sysv/consts/PTRACE_TRACEME.s b/libc/sysv/consts/PTRACE_TRACEME.s index ec4967259..4a4af6eea 100644 --- a/libc/sysv/consts/PTRACE_TRACEME.s +++ b/libc/sysv/consts/PTRACE_TRACEME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ptrace PTRACE_TRACEME 0 0 0 0 -1 +.syscon ptrace PTRACE_TRACEME 0 0 0 0 -1 -1 diff --git a/libc/sysv/consts/QUEUE_FULL.s b/libc/sysv/consts/QUEUE_FULL.s index 3612ce94f..74707b93a 100644 --- a/libc/sysv/consts/QUEUE_FULL.s +++ b/libc/sysv/consts/QUEUE_FULL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc QUEUE_FULL 20 0 0 0 0 +.syscon misc QUEUE_FULL 20 0 0 0 0 0 diff --git a/libc/sysv/consts/Q_GETFMT.s b/libc/sysv/consts/Q_GETFMT.s index ee8774756..90aec3859 100644 --- a/libc/sysv/consts/Q_GETFMT.s +++ b/libc/sysv/consts/Q_GETFMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_GETFMT 0x800004 0 0 0 0 +.syscon misc Q_GETFMT 0x800004 0 0 0 0 0 diff --git a/libc/sysv/consts/Q_GETINFO.s b/libc/sysv/consts/Q_GETINFO.s index 457f2b991..45343a7e0 100644 --- a/libc/sysv/consts/Q_GETINFO.s +++ b/libc/sysv/consts/Q_GETINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_GETINFO 0x800005 0 0 0 0 +.syscon misc Q_GETINFO 0x800005 0 0 0 0 0 diff --git a/libc/sysv/consts/Q_GETQUOTA.s b/libc/sysv/consts/Q_GETQUOTA.s index f09ed381f..92205b645 100644 --- a/libc/sysv/consts/Q_GETQUOTA.s +++ b/libc/sysv/consts/Q_GETQUOTA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_GETQUOTA 0x800007 768 0x0700 768 0 +.syscon misc Q_GETQUOTA 0x800007 768 0x0700 768 768 0 diff --git a/libc/sysv/consts/Q_QUOTAOFF.s b/libc/sysv/consts/Q_QUOTAOFF.s index 6107c8933..ee8a97c35 100644 --- a/libc/sysv/consts/Q_QUOTAOFF.s +++ b/libc/sysv/consts/Q_QUOTAOFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_QUOTAOFF 0x800003 0x0200 0x0200 0x0200 0 +.syscon misc Q_QUOTAOFF 0x800003 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/Q_QUOTAON.s b/libc/sysv/consts/Q_QUOTAON.s index 7ebe831c7..e8f8747fb 100644 --- a/libc/sysv/consts/Q_QUOTAON.s +++ b/libc/sysv/consts/Q_QUOTAON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_QUOTAON 0x800002 0x0100 0x0100 0x0100 0 +.syscon misc Q_QUOTAON 0x800002 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/Q_SETINFO.s b/libc/sysv/consts/Q_SETINFO.s index 018615e58..92c85eb47 100644 --- a/libc/sysv/consts/Q_SETINFO.s +++ b/libc/sysv/consts/Q_SETINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_SETINFO 0x800006 0 0 0 0 +.syscon misc Q_SETINFO 0x800006 0 0 0 0 0 diff --git a/libc/sysv/consts/Q_SETQUOTA.s b/libc/sysv/consts/Q_SETQUOTA.s index 868a4126c..b90ecbb60 100644 --- a/libc/sysv/consts/Q_SETQUOTA.s +++ b/libc/sysv/consts/Q_SETQUOTA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_SETQUOTA 0x800008 0x0400 0x0800 0x0400 0 +.syscon misc Q_SETQUOTA 0x800008 0x0400 0x0800 0x0400 0x0400 0 diff --git a/libc/sysv/consts/Q_SYNC.s b/libc/sysv/consts/Q_SYNC.s index 8d02c34fe..04dac79d0 100644 --- a/libc/sysv/consts/Q_SYNC.s +++ b/libc/sysv/consts/Q_SYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc Q_SYNC 0x800001 0x0600 0x0600 0x0600 0 +.syscon misc Q_SYNC 0x800001 0x0600 0x0600 0x0600 0x0600 0 diff --git a/libc/sysv/consts/RADIXCHAR.s b/libc/sysv/consts/RADIXCHAR.s index e03afb0c8..fd9a3ec06 100644 --- a/libc/sysv/consts/RADIXCHAR.s +++ b/libc/sysv/consts/RADIXCHAR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RADIXCHAR 0x010000 50 50 44 0 +.syscon misc RADIXCHAR 0x010000 50 50 44 44 0 diff --git a/libc/sysv/consts/RB_AUTOBOOT.s b/libc/sysv/consts/RB_AUTOBOOT.s index bc3cd0c6b..439b124e7 100644 --- a/libc/sysv/consts/RB_AUTOBOOT.s +++ b/libc/sysv/consts/RB_AUTOBOOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RB_AUTOBOOT 0x01234567 0 0 0 0 +.syscon misc RB_AUTOBOOT 0x01234567 0 0 0 0 0 diff --git a/libc/sysv/consts/RB_DISABLE_CAD.s b/libc/sysv/consts/RB_DISABLE_CAD.s index 4a38fa9ba..4b322de30 100644 --- a/libc/sysv/consts/RB_DISABLE_CAD.s +++ b/libc/sysv/consts/RB_DISABLE_CAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RB_DISABLE_CAD 0 0 0 0 0 +.syscon misc RB_DISABLE_CAD 0 0 0 0 0 0 diff --git a/libc/sysv/consts/RB_ENABLE_CAD.s b/libc/sysv/consts/RB_ENABLE_CAD.s index 0697f6d4a..63cc1ba2f 100644 --- a/libc/sysv/consts/RB_ENABLE_CAD.s +++ b/libc/sysv/consts/RB_ENABLE_CAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RB_ENABLE_CAD 0x89abcdef 0 0 0 0 +.syscon misc RB_ENABLE_CAD 0x89abcdef 0 0 0 0 0 diff --git a/libc/sysv/consts/RB_HALT_SYSTEM.s b/libc/sysv/consts/RB_HALT_SYSTEM.s index 38f0dbb58..322592f04 100644 --- a/libc/sysv/consts/RB_HALT_SYSTEM.s +++ b/libc/sysv/consts/RB_HALT_SYSTEM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RB_HALT_SYSTEM 0xcdef0123 0 0 0 0 +.syscon misc RB_HALT_SYSTEM 0xcdef0123 0 0 0 0 0 diff --git a/libc/sysv/consts/RB_KEXEC.s b/libc/sysv/consts/RB_KEXEC.s index 9feae9d4d..72f4a14d3 100644 --- a/libc/sysv/consts/RB_KEXEC.s +++ b/libc/sysv/consts/RB_KEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RB_KEXEC 0x45584543 0 0 0 0 +.syscon misc RB_KEXEC 0x45584543 0 0 0 0 0 diff --git a/libc/sysv/consts/RB_POWER_OFF.s b/libc/sysv/consts/RB_POWER_OFF.s index ffcf1074c..6cb781dcc 100644 --- a/libc/sysv/consts/RB_POWER_OFF.s +++ b/libc/sysv/consts/RB_POWER_OFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RB_POWER_OFF 0x4321fedc 0 0 0 0 +.syscon misc RB_POWER_OFF 0x4321fedc 0 0 0 0 0 diff --git a/libc/sysv/consts/RB_SW_SUSPEND.s b/libc/sysv/consts/RB_SW_SUSPEND.s index 679cb88a1..74746b45a 100644 --- a/libc/sysv/consts/RB_SW_SUSPEND.s +++ b/libc/sysv/consts/RB_SW_SUSPEND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RB_SW_SUSPEND 0xd000fce2 0 0 0 0 +.syscon misc RB_SW_SUSPEND 0xd000fce2 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_10.s b/libc/sysv/consts/READ_10.s index e6aae0298..960fa65bd 100644 --- a/libc/sysv/consts/READ_10.s +++ b/libc/sysv/consts/READ_10.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_10 40 0 0 0 0 +.syscon misc READ_10 40 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_12.s b/libc/sysv/consts/READ_12.s index 03fa39cbe..2846a4f33 100644 --- a/libc/sysv/consts/READ_12.s +++ b/libc/sysv/consts/READ_12.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_12 168 0 0 0 0 +.syscon misc READ_12 168 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_6.s b/libc/sysv/consts/READ_6.s index 2d5f7add2..49866ca73 100644 --- a/libc/sysv/consts/READ_6.s +++ b/libc/sysv/consts/READ_6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_6 8 0 0 0 0 +.syscon misc READ_6 8 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_BLOCK_LIMITS.s b/libc/sysv/consts/READ_BLOCK_LIMITS.s index b6c5d3b88..aef4fda96 100644 --- a/libc/sysv/consts/READ_BLOCK_LIMITS.s +++ b/libc/sysv/consts/READ_BLOCK_LIMITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_BLOCK_LIMITS 5 0 0 0 0 +.syscon misc READ_BLOCK_LIMITS 5 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_BUFFER.s b/libc/sysv/consts/READ_BUFFER.s index 6ffd70275..b2c694362 100644 --- a/libc/sysv/consts/READ_BUFFER.s +++ b/libc/sysv/consts/READ_BUFFER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_BUFFER 60 0 0 0 0 +.syscon misc READ_BUFFER 60 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_CAPACITY.s b/libc/sysv/consts/READ_CAPACITY.s index 5a8f67453..917a42184 100644 --- a/libc/sysv/consts/READ_CAPACITY.s +++ b/libc/sysv/consts/READ_CAPACITY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_CAPACITY 37 0 0 0 0 +.syscon misc READ_CAPACITY 37 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_DEFECT_DATA.s b/libc/sysv/consts/READ_DEFECT_DATA.s index 57bb23a8c..1e393a69b 100644 --- a/libc/sysv/consts/READ_DEFECT_DATA.s +++ b/libc/sysv/consts/READ_DEFECT_DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_DEFECT_DATA 55 0 0 0 0 +.syscon misc READ_DEFECT_DATA 55 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_ELEMENT_STATUS.s b/libc/sysv/consts/READ_ELEMENT_STATUS.s index 7ac7678e0..e3480b994 100644 --- a/libc/sysv/consts/READ_ELEMENT_STATUS.s +++ b/libc/sysv/consts/READ_ELEMENT_STATUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_ELEMENT_STATUS 184 0 0 0 0 +.syscon misc READ_ELEMENT_STATUS 184 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_IMPLIES_EXEC.s b/libc/sysv/consts/READ_IMPLIES_EXEC.s index 665b60374..e8d877124 100644 --- a/libc/sysv/consts/READ_IMPLIES_EXEC.s +++ b/libc/sysv/consts/READ_IMPLIES_EXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty READ_IMPLIES_EXEC 0x0400000 -1 -1 -1 -1 +.syscon prsnlty READ_IMPLIES_EXEC 0x0400000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/READ_LONG.s b/libc/sysv/consts/READ_LONG.s index 1f0c5893b..959c6fd93 100644 --- a/libc/sysv/consts/READ_LONG.s +++ b/libc/sysv/consts/READ_LONG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_LONG 62 0 0 0 0 +.syscon misc READ_LONG 62 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_POSITION.s b/libc/sysv/consts/READ_POSITION.s index 710cbe5d7..3f215b5ae 100644 --- a/libc/sysv/consts/READ_POSITION.s +++ b/libc/sysv/consts/READ_POSITION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_POSITION 52 0 0 0 0 +.syscon misc READ_POSITION 52 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_REVERSE.s b/libc/sysv/consts/READ_REVERSE.s index 3bda8796e..8a5203d1f 100644 --- a/libc/sysv/consts/READ_REVERSE.s +++ b/libc/sysv/consts/READ_REVERSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_REVERSE 15 0 0 0 0 +.syscon misc READ_REVERSE 15 0 0 0 0 0 diff --git a/libc/sysv/consts/READ_TOC.s b/libc/sysv/consts/READ_TOC.s index b7f1a3659..74db90737 100644 --- a/libc/sysv/consts/READ_TOC.s +++ b/libc/sysv/consts/READ_TOC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc READ_TOC 67 0 0 0 0 +.syscon misc READ_TOC 67 0 0 0 0 0 diff --git a/libc/sysv/consts/REASSIGN_BLOCKS.s b/libc/sysv/consts/REASSIGN_BLOCKS.s index a7f03a32e..3ac41c6b7 100644 --- a/libc/sysv/consts/REASSIGN_BLOCKS.s +++ b/libc/sysv/consts/REASSIGN_BLOCKS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc REASSIGN_BLOCKS 7 0 0 0 0 +.syscon misc REASSIGN_BLOCKS 7 0 0 0 0 0 diff --git a/libc/sysv/consts/RECEIVE_DIAGNOSTIC.s b/libc/sysv/consts/RECEIVE_DIAGNOSTIC.s index e7c3af494..ea06ad770 100644 --- a/libc/sysv/consts/RECEIVE_DIAGNOSTIC.s +++ b/libc/sysv/consts/RECEIVE_DIAGNOSTIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RECEIVE_DIAGNOSTIC 28 0 0 0 0 +.syscon misc RECEIVE_DIAGNOSTIC 28 0 0 0 0 0 diff --git a/libc/sysv/consts/RECOVERED_ERROR.s b/libc/sysv/consts/RECOVERED_ERROR.s index 654bda36b..d9edf6e56 100644 --- a/libc/sysv/consts/RECOVERED_ERROR.s +++ b/libc/sysv/consts/RECOVERED_ERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RECOVERED_ERROR 1 0 0 0 0 +.syscon misc RECOVERED_ERROR 1 0 0 0 0 0 diff --git a/libc/sysv/consts/RECOVER_BUFFERED_DATA.s b/libc/sysv/consts/RECOVER_BUFFERED_DATA.s index aa2e668b2..26aca2c0d 100644 --- a/libc/sysv/consts/RECOVER_BUFFERED_DATA.s +++ b/libc/sysv/consts/RECOVER_BUFFERED_DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RECOVER_BUFFERED_DATA 20 0 0 0 0 +.syscon misc RECOVER_BUFFERED_DATA 20 0 0 0 0 0 diff --git a/libc/sysv/consts/REC_EOF.s b/libc/sysv/consts/REC_EOF.s index 30a304999..39f13d2a6 100644 --- a/libc/sysv/consts/REC_EOF.s +++ b/libc/sysv/consts/REC_EOF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc REC_EOF 2 2 2 2 0 +.syscon misc REC_EOF 2 2 2 2 2 0 diff --git a/libc/sysv/consts/REC_EOR.s b/libc/sysv/consts/REC_EOR.s index 08a301384..676912cf2 100644 --- a/libc/sysv/consts/REC_EOR.s +++ b/libc/sysv/consts/REC_EOR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc REC_EOR 1 1 1 1 0 +.syscon misc REC_EOR 1 1 1 1 1 0 diff --git a/libc/sysv/consts/REC_ESC.s b/libc/sysv/consts/REC_ESC.s index ec341ba74..b44eab77b 100644 --- a/libc/sysv/consts/REC_ESC.s +++ b/libc/sysv/consts/REC_ESC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc REC_ESC -1 -1 -1 -1 0 +.syscon misc REC_ESC -1 -1 -1 -1 -1 0 diff --git a/libc/sysv/consts/REGTYPE.s b/libc/sysv/consts/REGTYPE.s index d3a241e13..ba3825298 100644 --- a/libc/sysv/consts/REGTYPE.s +++ b/libc/sysv/consts/REGTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc REGTYPE 48 48 48 48 0 +.syscon misc REGTYPE 48 48 48 48 48 0 diff --git a/libc/sysv/consts/RELEASE_RECOVERY.s b/libc/sysv/consts/RELEASE_RECOVERY.s index cc77283b6..ac83919f8 100644 --- a/libc/sysv/consts/RELEASE_RECOVERY.s +++ b/libc/sysv/consts/RELEASE_RECOVERY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RELEASE_RECOVERY 0x10 0 0 0 0 +.syscon misc RELEASE_RECOVERY 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/REQUEST_SENSE.s b/libc/sysv/consts/REQUEST_SENSE.s index 6e95ee25d..3f94d3194 100644 --- a/libc/sysv/consts/REQUEST_SENSE.s +++ b/libc/sysv/consts/REQUEST_SENSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc REQUEST_SENSE 3 0 0 0 0 +.syscon misc REQUEST_SENSE 3 0 0 0 0 0 diff --git a/libc/sysv/consts/RESERVATION_CONFLICT.s b/libc/sysv/consts/RESERVATION_CONFLICT.s index a66777b87..5324c327a 100644 --- a/libc/sysv/consts/RESERVATION_CONFLICT.s +++ b/libc/sysv/consts/RESERVATION_CONFLICT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RESERVATION_CONFLICT 12 0 0 0 0 +.syscon misc RESERVATION_CONFLICT 12 0 0 0 0 0 diff --git a/libc/sysv/consts/RESERVE.s b/libc/sysv/consts/RESERVE.s index 5c1a9d8e9..247c75b7b 100644 --- a/libc/sysv/consts/RESERVE.s +++ b/libc/sysv/consts/RESERVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RESERVE 22 0 0 0 0 +.syscon misc RESERVE 22 0 0 0 0 0 diff --git a/libc/sysv/consts/RESERVE_10.s b/libc/sysv/consts/RESERVE_10.s index ecfe6caab..8baef34bc 100644 --- a/libc/sysv/consts/RESERVE_10.s +++ b/libc/sysv/consts/RESERVE_10.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RESERVE_10 86 0 0 0 0 +.syscon misc RESERVE_10 86 0 0 0 0 0 diff --git a/libc/sysv/consts/RESTORE_POINTERS.s b/libc/sysv/consts/RESTORE_POINTERS.s index e51412154..e492e19ba 100644 --- a/libc/sysv/consts/RESTORE_POINTERS.s +++ b/libc/sysv/consts/RESTORE_POINTERS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RESTORE_POINTERS 3 0 0 0 0 +.syscon misc RESTORE_POINTERS 3 0 0 0 0 0 diff --git a/libc/sysv/consts/RES_PRF_CLASS.s b/libc/sysv/consts/RES_PRF_CLASS.s index 23137443d..dad9e5934 100644 --- a/libc/sysv/consts/RES_PRF_CLASS.s +++ b/libc/sysv/consts/RES_PRF_CLASS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RES_PRF_CLASS 4 4 4 4 0 +.syscon misc RES_PRF_CLASS 4 4 4 4 4 0 diff --git a/libc/sysv/consts/REZERO_UNIT.s b/libc/sysv/consts/REZERO_UNIT.s index 2004a8470..bd2f4d850 100644 --- a/libc/sysv/consts/REZERO_UNIT.s +++ b/libc/sysv/consts/REZERO_UNIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc REZERO_UNIT 1 0 0 0 0 +.syscon misc REZERO_UNIT 1 0 0 0 0 0 diff --git a/libc/sysv/consts/RE_DUP_MAX.s b/libc/sysv/consts/RE_DUP_MAX.s index a29a36799..351ce33c1 100644 --- a/libc/sysv/consts/RE_DUP_MAX.s +++ b/libc/sysv/consts/RE_DUP_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RE_DUP_MAX 0x7fff 255 255 255 0 +.syscon misc RE_DUP_MAX 0x7fff 255 255 255 255 0 diff --git a/libc/sysv/consts/RHF_GUARANTEE_START_INIT.s b/libc/sysv/consts/RHF_GUARANTEE_START_INIT.s index 46b1e5346..0f6836cb6 100644 --- a/libc/sysv/consts/RHF_GUARANTEE_START_INIT.s +++ b/libc/sysv/consts/RHF_GUARANTEE_START_INIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RHF_GUARANTEE_START_INIT 0x80 0 0 0 0 +.syscon misc RHF_GUARANTEE_START_INIT 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/RHF_NO_LIBRARY_REPLACEMENT.s b/libc/sysv/consts/RHF_NO_LIBRARY_REPLACEMENT.s index 2b3d3f723..b24f3adf6 100644 --- a/libc/sysv/consts/RHF_NO_LIBRARY_REPLACEMENT.s +++ b/libc/sysv/consts/RHF_NO_LIBRARY_REPLACEMENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RHF_NO_LIBRARY_REPLACEMENT 4 0 0 0 0 +.syscon misc RHF_NO_LIBRARY_REPLACEMENT 4 0 0 0 0 0 diff --git a/libc/sysv/consts/RLIMIT_AS.s b/libc/sysv/consts/RLIMIT_AS.s index a559be940..f0bde701b 100644 --- a/libc/sysv/consts/RLIMIT_AS.s +++ b/libc/sysv/consts/RLIMIT_AS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_AS 9 5 10 -1 -1 +.syscon rlim RLIMIT_AS 9 5 10 -1 -1 -1 diff --git a/libc/sysv/consts/RLIMIT_CORE.s b/libc/sysv/consts/RLIMIT_CORE.s index 88b7cd5f3..5483755d4 100644 --- a/libc/sysv/consts/RLIMIT_CORE.s +++ b/libc/sysv/consts/RLIMIT_CORE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_CORE 4 4 4 4 -1 +.syscon rlim RLIMIT_CORE 4 4 4 4 4 -1 diff --git a/libc/sysv/consts/RLIMIT_CPU.s b/libc/sysv/consts/RLIMIT_CPU.s index 6635bff43..5c684ee7e 100644 --- a/libc/sysv/consts/RLIMIT_CPU.s +++ b/libc/sysv/consts/RLIMIT_CPU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_CPU 0 0 0 0 -1 +.syscon rlim RLIMIT_CPU 0 0 0 0 0 -1 diff --git a/libc/sysv/consts/RLIMIT_DATA.s b/libc/sysv/consts/RLIMIT_DATA.s index b4e29317a..3d8436321 100644 --- a/libc/sysv/consts/RLIMIT_DATA.s +++ b/libc/sysv/consts/RLIMIT_DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_DATA 2 2 2 2 -1 +.syscon rlim RLIMIT_DATA 2 2 2 2 2 -1 diff --git a/libc/sysv/consts/RLIMIT_FSIZE.s b/libc/sysv/consts/RLIMIT_FSIZE.s index 509cbd757..0b0797313 100644 --- a/libc/sysv/consts/RLIMIT_FSIZE.s +++ b/libc/sysv/consts/RLIMIT_FSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_FSIZE 1 1 1 1 -1 +.syscon rlim RLIMIT_FSIZE 1 1 1 1 1 -1 diff --git a/libc/sysv/consts/RLIMIT_LOCKS.s b/libc/sysv/consts/RLIMIT_LOCKS.s index c84284344..68fad4c21 100644 --- a/libc/sysv/consts/RLIMIT_LOCKS.s +++ b/libc/sysv/consts/RLIMIT_LOCKS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_LOCKS 10 -1 -1 -1 -1 +.syscon rlim RLIMIT_LOCKS 10 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/RLIMIT_MEMLOCK.s b/libc/sysv/consts/RLIMIT_MEMLOCK.s index d464e863c..abda04273 100644 --- a/libc/sysv/consts/RLIMIT_MEMLOCK.s +++ b/libc/sysv/consts/RLIMIT_MEMLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_MEMLOCK 8 6 6 6 -1 +.syscon rlim RLIMIT_MEMLOCK 8 6 6 6 6 -1 diff --git a/libc/sysv/consts/RLIMIT_MSGQUEUE.s b/libc/sysv/consts/RLIMIT_MSGQUEUE.s index 392be10e3..0b5318454 100644 --- a/libc/sysv/consts/RLIMIT_MSGQUEUE.s +++ b/libc/sysv/consts/RLIMIT_MSGQUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_MSGQUEUE 12 -1 -1 -1 -1 +.syscon rlim RLIMIT_MSGQUEUE 12 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/RLIMIT_NICE.s b/libc/sysv/consts/RLIMIT_NICE.s index b1ee6135f..23496b2e5 100644 --- a/libc/sysv/consts/RLIMIT_NICE.s +++ b/libc/sysv/consts/RLIMIT_NICE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_NICE 13 -1 -1 -1 -1 +.syscon rlim RLIMIT_NICE 13 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/RLIMIT_NLIMITS.s b/libc/sysv/consts/RLIMIT_NLIMITS.s index a1b78f2d7..5aa07b69a 100644 --- a/libc/sysv/consts/RLIMIT_NLIMITS.s +++ b/libc/sysv/consts/RLIMIT_NLIMITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_NLIMITS 16 -1 -1 -1 -1 +.syscon rlim RLIMIT_NLIMITS 16 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/RLIMIT_NOFILE.s b/libc/sysv/consts/RLIMIT_NOFILE.s index 30c03455a..224517949 100644 --- a/libc/sysv/consts/RLIMIT_NOFILE.s +++ b/libc/sysv/consts/RLIMIT_NOFILE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_NOFILE 7 8 8 8 -1 +.syscon rlim RLIMIT_NOFILE 7 8 8 8 8 -1 diff --git a/libc/sysv/consts/RLIMIT_NPROC.s b/libc/sysv/consts/RLIMIT_NPROC.s index 3313c2285..02efe942c 100644 --- a/libc/sysv/consts/RLIMIT_NPROC.s +++ b/libc/sysv/consts/RLIMIT_NPROC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_NPROC 6 7 7 7 -1 +.syscon rlim RLIMIT_NPROC 6 7 7 7 7 -1 diff --git a/libc/sysv/consts/RLIMIT_RSS.s b/libc/sysv/consts/RLIMIT_RSS.s index 2bc0d92cc..500fa25cc 100644 --- a/libc/sysv/consts/RLIMIT_RSS.s +++ b/libc/sysv/consts/RLIMIT_RSS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_RSS 5 5 5 5 -1 +.syscon rlim RLIMIT_RSS 5 5 5 5 5 -1 diff --git a/libc/sysv/consts/RLIMIT_RTPRIO.s b/libc/sysv/consts/RLIMIT_RTPRIO.s index 4dec9e6be..3e49999cf 100644 --- a/libc/sysv/consts/RLIMIT_RTPRIO.s +++ b/libc/sysv/consts/RLIMIT_RTPRIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_RTPRIO 14 -1 -1 -1 -1 +.syscon rlim RLIMIT_RTPRIO 14 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/RLIMIT_SIGPENDING.s b/libc/sysv/consts/RLIMIT_SIGPENDING.s index c869191f3..c160c8a05 100644 --- a/libc/sysv/consts/RLIMIT_SIGPENDING.s +++ b/libc/sysv/consts/RLIMIT_SIGPENDING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_SIGPENDING 11 -1 -1 -1 -1 +.syscon rlim RLIMIT_SIGPENDING 11 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/RLIMIT_STACK.s b/libc/sysv/consts/RLIMIT_STACK.s index 33eb17501..28b98fc62 100644 --- a/libc/sysv/consts/RLIMIT_STACK.s +++ b/libc/sysv/consts/RLIMIT_STACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rlim RLIMIT_STACK 3 3 3 3 -1 +.syscon rlim RLIMIT_STACK 3 3 3 3 3 -1 diff --git a/libc/sysv/consts/RLIM_INFINITY.s b/libc/sysv/consts/RLIM_INFINITY.s index 16dbbf9a3..312803a39 100644 --- a/libc/sysv/consts/RLIM_INFINITY.s +++ b/libc/sysv/consts/RLIM_INFINITY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RLIM_INFINITY -1 0 0x7fffffffffffffff 0 0 +.syscon misc RLIM_INFINITY -1 0 0x7fffffffffffffff 0 0 0 diff --git a/libc/sysv/consts/RLIM_NLIMITS.s b/libc/sysv/consts/RLIM_NLIMITS.s index b4ccd8abe..737305dbc 100644 --- a/libc/sysv/consts/RLIM_NLIMITS.s +++ b/libc/sysv/consts/RLIM_NLIMITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RLIM_NLIMITS 0x10 9 15 9 0 +.syscon misc RLIM_NLIMITS 0x10 9 15 9 9 0 diff --git a/libc/sysv/consts/RLIM_SAVED_CUR.s b/libc/sysv/consts/RLIM_SAVED_CUR.s index 567d7d991..7acb8119a 100644 --- a/libc/sysv/consts/RLIM_SAVED_CUR.s +++ b/libc/sysv/consts/RLIM_SAVED_CUR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RLIM_SAVED_CUR -1 0 0x7fffffffffffffff 0 0 +.syscon misc RLIM_SAVED_CUR -1 0 0x7fffffffffffffff 0 0 0 diff --git a/libc/sysv/consts/RLIM_SAVED_MAX.s b/libc/sysv/consts/RLIM_SAVED_MAX.s index 12ae5e323..c2a173cee 100644 --- a/libc/sysv/consts/RLIM_SAVED_MAX.s +++ b/libc/sysv/consts/RLIM_SAVED_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RLIM_SAVED_MAX -1 0 0x7fffffffffffffff 0 0 +.syscon misc RLIM_SAVED_MAX -1 0 0x7fffffffffffffff 0 0 0 diff --git a/libc/sysv/consts/RPM_PCO_ADD.s b/libc/sysv/consts/RPM_PCO_ADD.s index c6036029f..dbaaff476 100644 --- a/libc/sysv/consts/RPM_PCO_ADD.s +++ b/libc/sysv/consts/RPM_PCO_ADD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RPM_PCO_ADD 1 1 1 1 0 +.syscon misc RPM_PCO_ADD 1 1 1 1 1 0 diff --git a/libc/sysv/consts/RPM_PCO_CHANGE.s b/libc/sysv/consts/RPM_PCO_CHANGE.s index 3f40740ea..3b5f00dae 100644 --- a/libc/sysv/consts/RPM_PCO_CHANGE.s +++ b/libc/sysv/consts/RPM_PCO_CHANGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RPM_PCO_CHANGE 2 2 2 2 0 +.syscon misc RPM_PCO_CHANGE 2 2 2 2 2 0 diff --git a/libc/sysv/consts/RPM_PCO_SETGLOBAL.s b/libc/sysv/consts/RPM_PCO_SETGLOBAL.s index 485bd1aef..43b5378a0 100644 --- a/libc/sysv/consts/RPM_PCO_SETGLOBAL.s +++ b/libc/sysv/consts/RPM_PCO_SETGLOBAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RPM_PCO_SETGLOBAL 3 3 3 3 0 +.syscon misc RPM_PCO_SETGLOBAL 3 3 3 3 3 0 diff --git a/libc/sysv/consts/RRQ.s b/libc/sysv/consts/RRQ.s index a5468b01f..01451fce2 100644 --- a/libc/sysv/consts/RRQ.s +++ b/libc/sysv/consts/RRQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RRQ 1 1 1 1 0 +.syscon misc RRQ 1 1 1 1 1 0 diff --git a/libc/sysv/consts/RTCF_DOREDIRECT.s b/libc/sysv/consts/RTCF_DOREDIRECT.s index d812b81d1..3f12f378b 100644 --- a/libc/sysv/consts/RTCF_DOREDIRECT.s +++ b/libc/sysv/consts/RTCF_DOREDIRECT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTCF_DOREDIRECT 0x01000000 0 0 0 0 +.syscon misc RTCF_DOREDIRECT 0x01000000 0 0 0 0 0 diff --git a/libc/sysv/consts/RTF_NOFORWARD.s b/libc/sysv/consts/RTF_NOFORWARD.s index 2768d667f..e56cc074c 100644 --- a/libc/sysv/consts/RTF_NOFORWARD.s +++ b/libc/sysv/consts/RTF_NOFORWARD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTF_NOFORWARD 0x1000 0 0 0 0 +.syscon misc RTF_NOFORWARD 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/RTF_NOPMTUDISC.s b/libc/sysv/consts/RTF_NOPMTUDISC.s index 1224dbe4f..95e2346bb 100644 --- a/libc/sysv/consts/RTF_NOPMTUDISC.s +++ b/libc/sysv/consts/RTF_NOPMTUDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTF_NOPMTUDISC 0x4000 0 0 0 0 +.syscon misc RTF_NOPMTUDISC 0x4000 0 0 0 0 0 diff --git a/libc/sysv/consts/RTLD_DI_LINKMAP.s b/libc/sysv/consts/RTLD_DI_LINKMAP.s index 7a1057240..29a4d4ec3 100644 --- a/libc/sysv/consts/RTLD_DI_LINKMAP.s +++ b/libc/sysv/consts/RTLD_DI_LINKMAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTLD_DI_LINKMAP 0 0 2 0 0 +.syscon misc RTLD_DI_LINKMAP 0 0 2 0 0 0 diff --git a/libc/sysv/consts/RTLD_GLOBAL.s b/libc/sysv/consts/RTLD_GLOBAL.s index 1051e7381..89308c417 100644 --- a/libc/sysv/consts/RTLD_GLOBAL.s +++ b/libc/sysv/consts/RTLD_GLOBAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTLD_GLOBAL 0x0100 8 0x0100 0x0100 0 +.syscon misc RTLD_GLOBAL 0x0100 8 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/RTLD_LAZY.s b/libc/sysv/consts/RTLD_LAZY.s index e98c5edd3..1d4c0ff3f 100644 --- a/libc/sysv/consts/RTLD_LAZY.s +++ b/libc/sysv/consts/RTLD_LAZY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTLD_LAZY 1 1 1 1 0 +.syscon misc RTLD_LAZY 1 1 1 1 1 0 diff --git a/libc/sysv/consts/RTLD_LOCAL.s b/libc/sysv/consts/RTLD_LOCAL.s index 459d02f94..5720a74e4 100644 --- a/libc/sysv/consts/RTLD_LOCAL.s +++ b/libc/sysv/consts/RTLD_LOCAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTLD_LOCAL 0 4 0 0 0 +.syscon misc RTLD_LOCAL 0 4 0 0 0 0 diff --git a/libc/sysv/consts/RTLD_NODELETE.s b/libc/sysv/consts/RTLD_NODELETE.s index bc55f91f7..b37f6136e 100644 --- a/libc/sysv/consts/RTLD_NODELETE.s +++ b/libc/sysv/consts/RTLD_NODELETE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTLD_NODELETE 0x1000 0x80 0x1000 0 0 +.syscon misc RTLD_NODELETE 0x1000 0x80 0x1000 0 0 0 diff --git a/libc/sysv/consts/RTLD_NOLOAD.s b/libc/sysv/consts/RTLD_NOLOAD.s index 1304d822f..914519511 100644 --- a/libc/sysv/consts/RTLD_NOLOAD.s +++ b/libc/sysv/consts/RTLD_NOLOAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTLD_NOLOAD 4 0x10 0x2000 0 0 +.syscon misc RTLD_NOLOAD 4 0x10 0x2000 0 0 0 diff --git a/libc/sysv/consts/RTLD_NOW.s b/libc/sysv/consts/RTLD_NOW.s index e61c95476..d3e9fc9cd 100644 --- a/libc/sysv/consts/RTLD_NOW.s +++ b/libc/sysv/consts/RTLD_NOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RTLD_NOW 2 2 2 2 0 +.syscon misc RTLD_NOW 2 2 2 2 2 0 diff --git a/libc/sysv/consts/RUN_LVL.s b/libc/sysv/consts/RUN_LVL.s index cd44fca79..ff932e3d1 100644 --- a/libc/sysv/consts/RUN_LVL.s +++ b/libc/sysv/consts/RUN_LVL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc RUN_LVL 1 1 0 0 0 +.syscon misc RUN_LVL 1 1 0 0 0 0 diff --git a/libc/sysv/consts/RUSAGE_CHILDREN.s b/libc/sysv/consts/RUSAGE_CHILDREN.s index a25bc6701..4eb56b2b6 100644 --- a/libc/sysv/consts/RUSAGE_CHILDREN.s +++ b/libc/sysv/consts/RUSAGE_CHILDREN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rusage RUSAGE_CHILDREN -1 -1 -1 -1 99 +.syscon rusage RUSAGE_CHILDREN -1 -1 -1 -1 -1 99 diff --git a/libc/sysv/consts/RUSAGE_SELF.s b/libc/sysv/consts/RUSAGE_SELF.s index b2ed1841a..215e6b087 100644 --- a/libc/sysv/consts/RUSAGE_SELF.s +++ b/libc/sysv/consts/RUSAGE_SELF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rusage RUSAGE_SELF 0 0 0 0 0 +.syscon rusage RUSAGE_SELF 0 0 0 0 0 0 diff --git a/libc/sysv/consts/RUSAGE_THREAD.s b/libc/sysv/consts/RUSAGE_THREAD.s index 2d007212c..e30422cad 100644 --- a/libc/sysv/consts/RUSAGE_THREAD.s +++ b/libc/sysv/consts/RUSAGE_THREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon rusage RUSAGE_THREAD 1 99 1 1 1 +.syscon rusage RUSAGE_THREAD 1 99 1 1 1 1 diff --git a/libc/sysv/consts/R_OK.s b/libc/sysv/consts/R_OK.s index 2353a9cf3..ed577f1dd 100644 --- a/libc/sysv/consts/R_OK.s +++ b/libc/sysv/consts/R_OK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon access R_OK 4 4 4 4 0x80000000 +.syscon access R_OK 4 4 4 4 4 0x80000000 diff --git a/libc/sysv/consts/SARMAG.s b/libc/sysv/consts/SARMAG.s index b3cae7a1f..b7ccc8fb1 100644 --- a/libc/sysv/consts/SARMAG.s +++ b/libc/sysv/consts/SARMAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SARMAG 8 8 8 8 0 +.syscon misc SARMAG 8 8 8 8 8 0 diff --git a/libc/sysv/consts/SAVE_POINTERS.s b/libc/sysv/consts/SAVE_POINTERS.s index ea0d10fd5..064b311d7 100644 --- a/libc/sysv/consts/SAVE_POINTERS.s +++ b/libc/sysv/consts/SAVE_POINTERS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SAVE_POINTERS 2 0 0 0 0 +.syscon misc SAVE_POINTERS 2 0 0 0 0 0 diff --git a/libc/sysv/consts/SA_NOCLDSTOP.s b/libc/sysv/consts/SA_NOCLDSTOP.s index ed4733d64..695d1fd81 100644 --- a/libc/sysv/consts/SA_NOCLDSTOP.s +++ b/libc/sysv/consts/SA_NOCLDSTOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_NOCLDSTOP 1 8 8 8 0 +.syscon sigact SA_NOCLDSTOP 1 8 8 8 8 0 diff --git a/libc/sysv/consts/SA_NOCLDWAIT.s b/libc/sysv/consts/SA_NOCLDWAIT.s index 90910f7a4..ba78ba4b0 100644 --- a/libc/sysv/consts/SA_NOCLDWAIT.s +++ b/libc/sysv/consts/SA_NOCLDWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_NOCLDWAIT 2 0x20 0x20 0x20 0 +.syscon sigact SA_NOCLDWAIT 2 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/SA_NODEFER.s b/libc/sysv/consts/SA_NODEFER.s index 3522c99f7..ceec9462b 100644 --- a/libc/sysv/consts/SA_NODEFER.s +++ b/libc/sysv/consts/SA_NODEFER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_NODEFER 0x40000000 0x10 0x10 0x10 0 +.syscon sigact SA_NODEFER 0x40000000 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/SA_NOMASK.s b/libc/sysv/consts/SA_NOMASK.s index 3beb654d1..dcc0f6869 100644 --- a/libc/sysv/consts/SA_NOMASK.s +++ b/libc/sysv/consts/SA_NOMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_NOMASK 0x40000000 0x10 0x10 0x10 0 +.syscon sigact SA_NOMASK 0x40000000 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/SA_ONESHOT.s b/libc/sysv/consts/SA_ONESHOT.s index 152d612f1..b1db52af4 100644 --- a/libc/sysv/consts/SA_ONESHOT.s +++ b/libc/sysv/consts/SA_ONESHOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_ONESHOT 0x80000000 0 0 0 0 +.syscon sigact SA_ONESHOT 0x80000000 0 0 0 0 0 diff --git a/libc/sysv/consts/SA_ONSTACK.s b/libc/sysv/consts/SA_ONSTACK.s index fbfefb278..d707d2569 100644 --- a/libc/sysv/consts/SA_ONSTACK.s +++ b/libc/sysv/consts/SA_ONSTACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_ONSTACK 0x08000000 1 1 1 0 +.syscon sigact SA_ONSTACK 0x08000000 1 1 1 1 0 diff --git a/libc/sysv/consts/SA_RESETHAND.s b/libc/sysv/consts/SA_RESETHAND.s index e4a67f557..14d0c72ed 100644 --- a/libc/sysv/consts/SA_RESETHAND.s +++ b/libc/sysv/consts/SA_RESETHAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_RESETHAND 0x80000000 4 4 4 0 +.syscon sigact SA_RESETHAND 0x80000000 4 4 4 4 0 diff --git a/libc/sysv/consts/SA_RESTART.s b/libc/sysv/consts/SA_RESTART.s index c0174b174..c897ab036 100644 --- a/libc/sysv/consts/SA_RESTART.s +++ b/libc/sysv/consts/SA_RESTART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_RESTART 0x10000000 2 2 2 0 +.syscon sigact SA_RESTART 0x10000000 2 2 2 2 0 diff --git a/libc/sysv/consts/SA_RESTORER.s b/libc/sysv/consts/SA_RESTORER.s index 196cb7b3d..cd6e6dbfe 100644 --- a/libc/sysv/consts/SA_RESTORER.s +++ b/libc/sysv/consts/SA_RESTORER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_RESTORER 0x04000000 0 0 0 0 +.syscon sigact SA_RESTORER 0x04000000 0 0 0 0 0 diff --git a/libc/sysv/consts/SA_SIGINFO.s b/libc/sysv/consts/SA_SIGINFO.s index 1518b6ab4..652a06f92 100644 --- a/libc/sysv/consts/SA_SIGINFO.s +++ b/libc/sysv/consts/SA_SIGINFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sigact SA_SIGINFO 4 0x40 0x40 0x40 0 +.syscon sigact SA_SIGINFO 4 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/SCHED_BATCH.s b/libc/sysv/consts/SCHED_BATCH.s index 04c881fbe..bd0a4c562 100644 --- a/libc/sysv/consts/SCHED_BATCH.s +++ b/libc/sysv/consts/SCHED_BATCH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCHED_BATCH 3 0 0 0 0 +.syscon misc SCHED_BATCH 3 0 0 0 0 0 diff --git a/libc/sysv/consts/SCHED_FIFO.s b/libc/sysv/consts/SCHED_FIFO.s index d5482c912..235fb17de 100644 --- a/libc/sysv/consts/SCHED_FIFO.s +++ b/libc/sysv/consts/SCHED_FIFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCHED_FIFO 1 4 1 1 0 +.syscon misc SCHED_FIFO 1 4 1 1 1 0 diff --git a/libc/sysv/consts/SCHED_IDLE.s b/libc/sysv/consts/SCHED_IDLE.s index 838d16cbe..46351070d 100644 --- a/libc/sysv/consts/SCHED_IDLE.s +++ b/libc/sysv/consts/SCHED_IDLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCHED_IDLE 5 0 0 0 0 +.syscon misc SCHED_IDLE 5 0 0 0 0 0 diff --git a/libc/sysv/consts/SCHED_OTHER.s b/libc/sysv/consts/SCHED_OTHER.s index 85a27da97..b8f3e5aec 100644 --- a/libc/sysv/consts/SCHED_OTHER.s +++ b/libc/sysv/consts/SCHED_OTHER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCHED_OTHER 0 1 2 2 0 +.syscon misc SCHED_OTHER 0 1 2 2 2 0 diff --git a/libc/sysv/consts/SCHED_RESET_ON_FORK.s b/libc/sysv/consts/SCHED_RESET_ON_FORK.s index 5f3c678d8..0dd1d547c 100644 --- a/libc/sysv/consts/SCHED_RESET_ON_FORK.s +++ b/libc/sysv/consts/SCHED_RESET_ON_FORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCHED_RESET_ON_FORK 0x40000000 0 0 0 0 +.syscon misc SCHED_RESET_ON_FORK 0x40000000 0 0 0 0 0 diff --git a/libc/sysv/consts/SCHED_RR.s b/libc/sysv/consts/SCHED_RR.s index fbbb0a84e..2c45c2ded 100644 --- a/libc/sysv/consts/SCHED_RR.s +++ b/libc/sysv/consts/SCHED_RR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCHED_RR 2 2 3 3 0 +.syscon misc SCHED_RR 2 2 3 3 3 0 diff --git a/libc/sysv/consts/SCM_CREDENTIALS.s b/libc/sysv/consts/SCM_CREDENTIALS.s index 212b253ac..b29e72471 100644 --- a/libc/sysv/consts/SCM_CREDENTIALS.s +++ b/libc/sysv/consts/SCM_CREDENTIALS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCM_CREDENTIALS 2 0 0 0 0 +.syscon misc SCM_CREDENTIALS 2 0 0 0 0 0 diff --git a/libc/sysv/consts/SCM_RIGHTS.s b/libc/sysv/consts/SCM_RIGHTS.s index db6e8bd9c..3fea9109f 100644 --- a/libc/sysv/consts/SCM_RIGHTS.s +++ b/libc/sysv/consts/SCM_RIGHTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCM_RIGHTS 1 1 1 1 0 +.syscon misc SCM_RIGHTS 1 1 1 1 1 0 diff --git a/libc/sysv/consts/SCM_TIMESTAMP.s b/libc/sysv/consts/SCM_TIMESTAMP.s index e63f7844d..94f3a0bfa 100644 --- a/libc/sysv/consts/SCM_TIMESTAMP.s +++ b/libc/sysv/consts/SCM_TIMESTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCM_TIMESTAMP 29 2 2 4 0 +.syscon misc SCM_TIMESTAMP 29 2 2 4 8 0 diff --git a/libc/sysv/consts/SCM_TIMESTAMPING.s b/libc/sysv/consts/SCM_TIMESTAMPING.s index 18a1b492f..cf962d5be 100644 --- a/libc/sysv/consts/SCM_TIMESTAMPING.s +++ b/libc/sysv/consts/SCM_TIMESTAMPING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCM_TIMESTAMPING 37 0 0 0 0 +.syscon misc SCM_TIMESTAMPING 37 0 0 0 0 0 diff --git a/libc/sysv/consts/SCM_TIMESTAMPNS.s b/libc/sysv/consts/SCM_TIMESTAMPNS.s index 3481ef455..0eb3309a6 100644 --- a/libc/sysv/consts/SCM_TIMESTAMPNS.s +++ b/libc/sysv/consts/SCM_TIMESTAMPNS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCM_TIMESTAMPNS 35 0 0 0 0 +.syscon misc SCM_TIMESTAMPNS 35 0 0 0 0 0 diff --git a/libc/sysv/consts/SCM_WIFI_STATUS.s b/libc/sysv/consts/SCM_WIFI_STATUS.s index 1c0c24874..df9202e3d 100644 --- a/libc/sysv/consts/SCM_WIFI_STATUS.s +++ b/libc/sysv/consts/SCM_WIFI_STATUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCM_WIFI_STATUS 41 0 0 0 0 +.syscon misc SCM_WIFI_STATUS 41 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_BENCHMARK_COMMAND.s b/libc/sysv/consts/SCSI_IOCTL_BENCHMARK_COMMAND.s index a83fc7172..c232064fb 100644 --- a/libc/sysv/consts/SCSI_IOCTL_BENCHMARK_COMMAND.s +++ b/libc/sysv/consts/SCSI_IOCTL_BENCHMARK_COMMAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_BENCHMARK_COMMAND 3 0 0 0 0 +.syscon misc SCSI_IOCTL_BENCHMARK_COMMAND 3 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_DOORLOCK.s b/libc/sysv/consts/SCSI_IOCTL_DOORLOCK.s index 87b6c794c..466919d8d 100644 --- a/libc/sysv/consts/SCSI_IOCTL_DOORLOCK.s +++ b/libc/sysv/consts/SCSI_IOCTL_DOORLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_DOORLOCK 0x5380 0 0 0 0 +.syscon misc SCSI_IOCTL_DOORLOCK 0x5380 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_DOORUNLOCK.s b/libc/sysv/consts/SCSI_IOCTL_DOORUNLOCK.s index f35d01182..2c93720f2 100644 --- a/libc/sysv/consts/SCSI_IOCTL_DOORUNLOCK.s +++ b/libc/sysv/consts/SCSI_IOCTL_DOORUNLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_DOORUNLOCK 0x5381 0 0 0 0 +.syscon misc SCSI_IOCTL_DOORUNLOCK 0x5381 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_GET_BUS_NUMBER.s b/libc/sysv/consts/SCSI_IOCTL_GET_BUS_NUMBER.s index 588c3a30f..876c3ecc7 100644 --- a/libc/sysv/consts/SCSI_IOCTL_GET_BUS_NUMBER.s +++ b/libc/sysv/consts/SCSI_IOCTL_GET_BUS_NUMBER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_GET_BUS_NUMBER 0x5386 0 0 0 0 +.syscon misc SCSI_IOCTL_GET_BUS_NUMBER 0x5386 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_GET_IDLUN.s b/libc/sysv/consts/SCSI_IOCTL_GET_IDLUN.s index 059462b1e..493309e72 100644 --- a/libc/sysv/consts/SCSI_IOCTL_GET_IDLUN.s +++ b/libc/sysv/consts/SCSI_IOCTL_GET_IDLUN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_GET_IDLUN 0x5382 0 0 0 0 +.syscon misc SCSI_IOCTL_GET_IDLUN 0x5382 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_PROBE_HOST.s b/libc/sysv/consts/SCSI_IOCTL_PROBE_HOST.s index 8aada19eb..2a1292deb 100644 --- a/libc/sysv/consts/SCSI_IOCTL_PROBE_HOST.s +++ b/libc/sysv/consts/SCSI_IOCTL_PROBE_HOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_PROBE_HOST 0x5385 0 0 0 0 +.syscon misc SCSI_IOCTL_PROBE_HOST 0x5385 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_SEND_COMMAND.s b/libc/sysv/consts/SCSI_IOCTL_SEND_COMMAND.s index e022a5e22..7424c9443 100644 --- a/libc/sysv/consts/SCSI_IOCTL_SEND_COMMAND.s +++ b/libc/sysv/consts/SCSI_IOCTL_SEND_COMMAND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_SEND_COMMAND 1 0 0 0 0 +.syscon misc SCSI_IOCTL_SEND_COMMAND 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_START_UNIT.s b/libc/sysv/consts/SCSI_IOCTL_START_UNIT.s index 6c3b424fa..b040da8c3 100644 --- a/libc/sysv/consts/SCSI_IOCTL_START_UNIT.s +++ b/libc/sysv/consts/SCSI_IOCTL_START_UNIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_START_UNIT 5 0 0 0 0 +.syscon misc SCSI_IOCTL_START_UNIT 5 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_STOP_UNIT.s b/libc/sysv/consts/SCSI_IOCTL_STOP_UNIT.s index a64ebaa79..84407930d 100644 --- a/libc/sysv/consts/SCSI_IOCTL_STOP_UNIT.s +++ b/libc/sysv/consts/SCSI_IOCTL_STOP_UNIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_STOP_UNIT 6 0 0 0 0 +.syscon misc SCSI_IOCTL_STOP_UNIT 6 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_SYNC.s b/libc/sysv/consts/SCSI_IOCTL_SYNC.s index 24858c7d0..32975ee16 100644 --- a/libc/sysv/consts/SCSI_IOCTL_SYNC.s +++ b/libc/sysv/consts/SCSI_IOCTL_SYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_SYNC 4 0 0 0 0 +.syscon misc SCSI_IOCTL_SYNC 4 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_TAGGED_DISABLE.s b/libc/sysv/consts/SCSI_IOCTL_TAGGED_DISABLE.s index 4fe155868..d8dee58dc 100644 --- a/libc/sysv/consts/SCSI_IOCTL_TAGGED_DISABLE.s +++ b/libc/sysv/consts/SCSI_IOCTL_TAGGED_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_TAGGED_DISABLE 0x5384 0 0 0 0 +.syscon misc SCSI_IOCTL_TAGGED_DISABLE 0x5384 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_TAGGED_ENABLE.s b/libc/sysv/consts/SCSI_IOCTL_TAGGED_ENABLE.s index 1ee525b11..5ebc274c3 100644 --- a/libc/sysv/consts/SCSI_IOCTL_TAGGED_ENABLE.s +++ b/libc/sysv/consts/SCSI_IOCTL_TAGGED_ENABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_TAGGED_ENABLE 0x5383 0 0 0 0 +.syscon misc SCSI_IOCTL_TAGGED_ENABLE 0x5383 0 0 0 0 0 diff --git a/libc/sysv/consts/SCSI_IOCTL_TEST_UNIT_READY.s b/libc/sysv/consts/SCSI_IOCTL_TEST_UNIT_READY.s index dfd80a04c..65b496923 100644 --- a/libc/sysv/consts/SCSI_IOCTL_TEST_UNIT_READY.s +++ b/libc/sysv/consts/SCSI_IOCTL_TEST_UNIT_READY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SCSI_IOCTL_TEST_UNIT_READY 2 0 0 0 0 +.syscon misc SCSI_IOCTL_TEST_UNIT_READY 2 0 0 0 0 0 diff --git a/libc/sysv/consts/SEARCH_EQUAL.s b/libc/sysv/consts/SEARCH_EQUAL.s index 27ee05219..ad26d5c10 100644 --- a/libc/sysv/consts/SEARCH_EQUAL.s +++ b/libc/sysv/consts/SEARCH_EQUAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEARCH_EQUAL 49 0 0 0 0 +.syscon misc SEARCH_EQUAL 49 0 0 0 0 0 diff --git a/libc/sysv/consts/SEARCH_EQUAL_12.s b/libc/sysv/consts/SEARCH_EQUAL_12.s index ac455b307..8aca2c049 100644 --- a/libc/sysv/consts/SEARCH_EQUAL_12.s +++ b/libc/sysv/consts/SEARCH_EQUAL_12.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEARCH_EQUAL_12 177 0 0 0 0 +.syscon misc SEARCH_EQUAL_12 177 0 0 0 0 0 diff --git a/libc/sysv/consts/SEARCH_HIGH.s b/libc/sysv/consts/SEARCH_HIGH.s index 0381f76c8..cae26450f 100644 --- a/libc/sysv/consts/SEARCH_HIGH.s +++ b/libc/sysv/consts/SEARCH_HIGH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEARCH_HIGH 48 0 0 0 0 +.syscon misc SEARCH_HIGH 48 0 0 0 0 0 diff --git a/libc/sysv/consts/SEARCH_HIGH_12.s b/libc/sysv/consts/SEARCH_HIGH_12.s index f9327f669..261bc03d2 100644 --- a/libc/sysv/consts/SEARCH_HIGH_12.s +++ b/libc/sysv/consts/SEARCH_HIGH_12.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEARCH_HIGH_12 176 0 0 0 0 +.syscon misc SEARCH_HIGH_12 176 0 0 0 0 0 diff --git a/libc/sysv/consts/SEARCH_LOW.s b/libc/sysv/consts/SEARCH_LOW.s index ec9aa162b..ceadcdcd4 100644 --- a/libc/sysv/consts/SEARCH_LOW.s +++ b/libc/sysv/consts/SEARCH_LOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEARCH_LOW 50 0 0 0 0 +.syscon misc SEARCH_LOW 50 0 0 0 0 0 diff --git a/libc/sysv/consts/SEARCH_LOW_12.s b/libc/sysv/consts/SEARCH_LOW_12.s index 94424c7bd..a52c49411 100644 --- a/libc/sysv/consts/SEARCH_LOW_12.s +++ b/libc/sysv/consts/SEARCH_LOW_12.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEARCH_LOW_12 178 0 0 0 0 +.syscon misc SEARCH_LOW_12 178 0 0 0 0 0 diff --git a/libc/sysv/consts/SEGSIZE.s b/libc/sysv/consts/SEGSIZE.s index c8bebdc86..f588375e5 100644 --- a/libc/sysv/consts/SEGSIZE.s +++ b/libc/sysv/consts/SEGSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEGSIZE 0x0200 0x0200 0x0200 0x0200 0 +.syscon misc SEGSIZE 0x0200 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/SEGV_ACCERR.s b/libc/sysv/consts/SEGV_ACCERR.s index 271716609..42acddc56 100644 --- a/libc/sysv/consts/SEGV_ACCERR.s +++ b/libc/sysv/consts/SEGV_ACCERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEGV_ACCERR 2 2 2 2 0 +.syscon misc SEGV_ACCERR 2 2 2 2 2 0 diff --git a/libc/sysv/consts/SEGV_MAPERR.s b/libc/sysv/consts/SEGV_MAPERR.s index 906326d89..3712d4c49 100644 --- a/libc/sysv/consts/SEGV_MAPERR.s +++ b/libc/sysv/consts/SEGV_MAPERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEGV_MAPERR 1 1 1 1 0 +.syscon misc SEGV_MAPERR 1 1 1 1 1 0 diff --git a/libc/sysv/consts/SEM_INFO.s b/libc/sysv/consts/SEM_INFO.s index 2c273007e..acb08dd48 100644 --- a/libc/sysv/consts/SEM_INFO.s +++ b/libc/sysv/consts/SEM_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEM_INFO 19 0 11 0 0 +.syscon misc SEM_INFO 19 0 11 0 0 0 diff --git a/libc/sysv/consts/SEM_STAT.s b/libc/sysv/consts/SEM_STAT.s index aa3aeb061..974b0a885 100644 --- a/libc/sysv/consts/SEM_STAT.s +++ b/libc/sysv/consts/SEM_STAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEM_STAT 18 0 10 0 0 +.syscon misc SEM_STAT 18 0 10 0 0 0 diff --git a/libc/sysv/consts/SEM_VALUE_MAX.s b/libc/sysv/consts/SEM_VALUE_MAX.s index eb7615718..28603c989 100644 --- a/libc/sysv/consts/SEM_VALUE_MAX.s +++ b/libc/sysv/consts/SEM_VALUE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEM_VALUE_MAX 0x7fffffff 0x7fff 0x7fffffff 0xffffffff 0 +.syscon misc SEM_VALUE_MAX 0x7fffffff 0x7fff 0x7fffffff 0xffffffff 0xffffffff 0 diff --git a/libc/sysv/consts/SEND_DIAGNOSTIC.s b/libc/sysv/consts/SEND_DIAGNOSTIC.s index a41711e99..f0d94645d 100644 --- a/libc/sysv/consts/SEND_DIAGNOSTIC.s +++ b/libc/sysv/consts/SEND_DIAGNOSTIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEND_DIAGNOSTIC 29 0 0 0 0 +.syscon misc SEND_DIAGNOSTIC 29 0 0 0 0 0 diff --git a/libc/sysv/consts/SEND_VOLUME_TAG.s b/libc/sysv/consts/SEND_VOLUME_TAG.s index f3d767eee..df982efb5 100644 --- a/libc/sysv/consts/SEND_VOLUME_TAG.s +++ b/libc/sysv/consts/SEND_VOLUME_TAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SEND_VOLUME_TAG 182 0 0 0 0 +.syscon misc SEND_VOLUME_TAG 182 0 0 0 0 0 diff --git a/libc/sysv/consts/SET_LIMITS.s b/libc/sysv/consts/SET_LIMITS.s index f0fefc1c4..e4c4daeed 100644 --- a/libc/sysv/consts/SET_LIMITS.s +++ b/libc/sysv/consts/SET_LIMITS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SET_LIMITS 51 0 0 0 0 +.syscon misc SET_LIMITS 51 0 0 0 0 0 diff --git a/libc/sysv/consts/SET_WINDOW.s b/libc/sysv/consts/SET_WINDOW.s index 4be13b1c1..8201289e0 100644 --- a/libc/sysv/consts/SET_WINDOW.s +++ b/libc/sysv/consts/SET_WINDOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SET_WINDOW 36 0 0 0 0 +.syscon misc SET_WINDOW 36 0 0 0 0 0 diff --git a/libc/sysv/consts/SFD_CLOEXEC.s b/libc/sysv/consts/SFD_CLOEXEC.s index 880bd7035..02e1ca4ca 100644 --- a/libc/sysv/consts/SFD_CLOEXEC.s +++ b/libc/sysv/consts/SFD_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SFD_CLOEXEC 0x080000 0 0 0 0 +.syscon misc SFD_CLOEXEC 0x080000 0 0 0 0 0 diff --git a/libc/sysv/consts/SFD_NONBLOCK.s b/libc/sysv/consts/SFD_NONBLOCK.s index c7067021f..e1752728c 100644 --- a/libc/sysv/consts/SFD_NONBLOCK.s +++ b/libc/sysv/consts/SFD_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SFD_NONBLOCK 0x0800 0 0 0 0 +.syscon misc SFD_NONBLOCK 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_BIG_BUFF.s b/libc/sysv/consts/SG_BIG_BUFF.s index a7729f501..73fa47849 100644 --- a/libc/sysv/consts/SG_BIG_BUFF.s +++ b/libc/sysv/consts/SG_BIG_BUFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_BIG_BUFF 0x8000 0 0 0 0 +.syscon sg SG_BIG_BUFF 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEFAULT_RETRIES.s b/libc/sysv/consts/SG_DEFAULT_RETRIES.s index 61bf09079..274b9c04a 100644 --- a/libc/sysv/consts/SG_DEFAULT_RETRIES.s +++ b/libc/sysv/consts/SG_DEFAULT_RETRIES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEFAULT_RETRIES 1 0 0 0 0 +.syscon sg SG_DEFAULT_RETRIES 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEFAULT_TIMEOUT.s b/libc/sysv/consts/SG_DEFAULT_TIMEOUT.s index 4590501dd..64a235666 100644 --- a/libc/sysv/consts/SG_DEFAULT_TIMEOUT.s +++ b/libc/sysv/consts/SG_DEFAULT_TIMEOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEFAULT_TIMEOUT 0x1770 0 0 0 0 +.syscon sg SG_DEFAULT_TIMEOUT 0x1770 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEF_COMMAND_Q.s b/libc/sysv/consts/SG_DEF_COMMAND_Q.s index 01d34dca6..a16d163f9 100644 --- a/libc/sysv/consts/SG_DEF_COMMAND_Q.s +++ b/libc/sysv/consts/SG_DEF_COMMAND_Q.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEF_COMMAND_Q 0 0 0 0 0 +.syscon sg SG_DEF_COMMAND_Q 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEF_FORCE_LOW_DMA.s b/libc/sysv/consts/SG_DEF_FORCE_LOW_DMA.s index eea649902..c3f4faa5e 100644 --- a/libc/sysv/consts/SG_DEF_FORCE_LOW_DMA.s +++ b/libc/sysv/consts/SG_DEF_FORCE_LOW_DMA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEF_FORCE_LOW_DMA 0 0 0 0 0 +.syscon sg SG_DEF_FORCE_LOW_DMA 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEF_FORCE_PACK_ID.s b/libc/sysv/consts/SG_DEF_FORCE_PACK_ID.s index 740c162a4..287d72db2 100644 --- a/libc/sysv/consts/SG_DEF_FORCE_PACK_ID.s +++ b/libc/sysv/consts/SG_DEF_FORCE_PACK_ID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEF_FORCE_PACK_ID 0 0 0 0 0 +.syscon sg SG_DEF_FORCE_PACK_ID 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEF_KEEP_ORPHAN.s b/libc/sysv/consts/SG_DEF_KEEP_ORPHAN.s index 8c965ca2b..f6b8c7242 100644 --- a/libc/sysv/consts/SG_DEF_KEEP_ORPHAN.s +++ b/libc/sysv/consts/SG_DEF_KEEP_ORPHAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEF_KEEP_ORPHAN 0 0 0 0 0 +.syscon sg SG_DEF_KEEP_ORPHAN 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEF_RESERVED_SIZE.s b/libc/sysv/consts/SG_DEF_RESERVED_SIZE.s index 5cd90d6f0..8d23065ab 100644 --- a/libc/sysv/consts/SG_DEF_RESERVED_SIZE.s +++ b/libc/sysv/consts/SG_DEF_RESERVED_SIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEF_RESERVED_SIZE 0x8000 0 0 0 0 +.syscon sg SG_DEF_RESERVED_SIZE 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DEF_UNDERRUN_FLAG.s b/libc/sysv/consts/SG_DEF_UNDERRUN_FLAG.s index ae512de32..f8c2f949e 100644 --- a/libc/sysv/consts/SG_DEF_UNDERRUN_FLAG.s +++ b/libc/sysv/consts/SG_DEF_UNDERRUN_FLAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DEF_UNDERRUN_FLAG 0 0 0 0 0 +.syscon sg SG_DEF_UNDERRUN_FLAG 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DXFER_FROM_DEV.s b/libc/sysv/consts/SG_DXFER_FROM_DEV.s index 67851bb7e..294189baa 100644 --- a/libc/sysv/consts/SG_DXFER_FROM_DEV.s +++ b/libc/sysv/consts/SG_DXFER_FROM_DEV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DXFER_FROM_DEV -3 0 0 0 0 +.syscon sg SG_DXFER_FROM_DEV -3 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DXFER_NONE.s b/libc/sysv/consts/SG_DXFER_NONE.s index c0977a1cc..2ce316c2f 100644 --- a/libc/sysv/consts/SG_DXFER_NONE.s +++ b/libc/sysv/consts/SG_DXFER_NONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DXFER_NONE -1 0 0 0 0 +.syscon sg SG_DXFER_NONE -1 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DXFER_TO_DEV.s b/libc/sysv/consts/SG_DXFER_TO_DEV.s index 55e13d2e2..e44947be4 100644 --- a/libc/sysv/consts/SG_DXFER_TO_DEV.s +++ b/libc/sysv/consts/SG_DXFER_TO_DEV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DXFER_TO_DEV -2 0 0 0 0 +.syscon sg SG_DXFER_TO_DEV -2 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_DXFER_TO_FROM_DEV.s b/libc/sysv/consts/SG_DXFER_TO_FROM_DEV.s index 47d0c50f9..0628ca0a0 100644 --- a/libc/sysv/consts/SG_DXFER_TO_FROM_DEV.s +++ b/libc/sysv/consts/SG_DXFER_TO_FROM_DEV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_DXFER_TO_FROM_DEV -4 0 0 0 0 +.syscon sg SG_DXFER_TO_FROM_DEV -4 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_EMULATED_HOST.s b/libc/sysv/consts/SG_EMULATED_HOST.s index a3d85eb5d..3233935bf 100644 --- a/libc/sysv/consts/SG_EMULATED_HOST.s +++ b/libc/sysv/consts/SG_EMULATED_HOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_EMULATED_HOST 0x2203 0 0 0 0 +.syscon sg SG_EMULATED_HOST 0x2203 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_FLAG_DIRECT_IO.s b/libc/sysv/consts/SG_FLAG_DIRECT_IO.s index fe3c41af1..8876d699a 100644 --- a/libc/sysv/consts/SG_FLAG_DIRECT_IO.s +++ b/libc/sysv/consts/SG_FLAG_DIRECT_IO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_FLAG_DIRECT_IO 1 0 0 0 0 +.syscon sg SG_FLAG_DIRECT_IO 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_FLAG_LUN_INHIBIT.s b/libc/sysv/consts/SG_FLAG_LUN_INHIBIT.s index fbc736397..633a0021d 100644 --- a/libc/sysv/consts/SG_FLAG_LUN_INHIBIT.s +++ b/libc/sysv/consts/SG_FLAG_LUN_INHIBIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_FLAG_LUN_INHIBIT 2 0 0 0 0 +.syscon sg SG_FLAG_LUN_INHIBIT 2 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_FLAG_NO_DXFER.s b/libc/sysv/consts/SG_FLAG_NO_DXFER.s index 75b4359ac..798e03b84 100644 --- a/libc/sysv/consts/SG_FLAG_NO_DXFER.s +++ b/libc/sysv/consts/SG_FLAG_NO_DXFER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_FLAG_NO_DXFER 0x010000 0 0 0 0 +.syscon sg SG_FLAG_NO_DXFER 0x010000 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_COMMAND_Q.s b/libc/sysv/consts/SG_GET_COMMAND_Q.s index e67502058..a9f7781fc 100644 --- a/libc/sysv/consts/SG_GET_COMMAND_Q.s +++ b/libc/sysv/consts/SG_GET_COMMAND_Q.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_COMMAND_Q 0x2270 0 0 0 0 +.syscon sg SG_GET_COMMAND_Q 0x2270 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_KEEP_ORPHAN.s b/libc/sysv/consts/SG_GET_KEEP_ORPHAN.s index 8d6fa5d34..25ce4443b 100644 --- a/libc/sysv/consts/SG_GET_KEEP_ORPHAN.s +++ b/libc/sysv/consts/SG_GET_KEEP_ORPHAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_KEEP_ORPHAN 0x2288 0 0 0 0 +.syscon sg SG_GET_KEEP_ORPHAN 0x2288 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_LOW_DMA.s b/libc/sysv/consts/SG_GET_LOW_DMA.s index 96db553ed..39433d449 100644 --- a/libc/sysv/consts/SG_GET_LOW_DMA.s +++ b/libc/sysv/consts/SG_GET_LOW_DMA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_LOW_DMA 0x227a 0 0 0 0 +.syscon sg SG_GET_LOW_DMA 0x227a 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_NUM_WAITING.s b/libc/sysv/consts/SG_GET_NUM_WAITING.s index e9e3be4b3..e6e9258c9 100644 --- a/libc/sysv/consts/SG_GET_NUM_WAITING.s +++ b/libc/sysv/consts/SG_GET_NUM_WAITING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_NUM_WAITING 0x227d 0 0 0 0 +.syscon sg SG_GET_NUM_WAITING 0x227d 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_PACK_ID.s b/libc/sysv/consts/SG_GET_PACK_ID.s index fc8155350..46cbad208 100644 --- a/libc/sysv/consts/SG_GET_PACK_ID.s +++ b/libc/sysv/consts/SG_GET_PACK_ID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_PACK_ID 0x227c 0 0 0 0 +.syscon sg SG_GET_PACK_ID 0x227c 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_REQUEST_TABLE.s b/libc/sysv/consts/SG_GET_REQUEST_TABLE.s index 3b9dfea0b..a9aef313f 100644 --- a/libc/sysv/consts/SG_GET_REQUEST_TABLE.s +++ b/libc/sysv/consts/SG_GET_REQUEST_TABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_REQUEST_TABLE 0x2286 0 0 0 0 +.syscon sg SG_GET_REQUEST_TABLE 0x2286 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_RESERVED_SIZE.s b/libc/sysv/consts/SG_GET_RESERVED_SIZE.s index 412a2993b..629489b09 100644 --- a/libc/sysv/consts/SG_GET_RESERVED_SIZE.s +++ b/libc/sysv/consts/SG_GET_RESERVED_SIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_RESERVED_SIZE 0x2272 0 0 0 0 +.syscon sg SG_GET_RESERVED_SIZE 0x2272 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_SCSI_ID.s b/libc/sysv/consts/SG_GET_SCSI_ID.s index 1ceaec839..badb79ad9 100644 --- a/libc/sysv/consts/SG_GET_SCSI_ID.s +++ b/libc/sysv/consts/SG_GET_SCSI_ID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_SCSI_ID 0x2276 0 0 0 0 +.syscon sg SG_GET_SCSI_ID 0x2276 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_SG_TABLESIZE.s b/libc/sysv/consts/SG_GET_SG_TABLESIZE.s index 790fa013b..756c26a89 100644 --- a/libc/sysv/consts/SG_GET_SG_TABLESIZE.s +++ b/libc/sysv/consts/SG_GET_SG_TABLESIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_SG_TABLESIZE 0x227f 0 0 0 0 +.syscon sg SG_GET_SG_TABLESIZE 0x227f 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_TIMEOUT.s b/libc/sysv/consts/SG_GET_TIMEOUT.s index 9c61b8543..755f1d953 100644 --- a/libc/sysv/consts/SG_GET_TIMEOUT.s +++ b/libc/sysv/consts/SG_GET_TIMEOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_TIMEOUT 0x2202 0 0 0 0 +.syscon sg SG_GET_TIMEOUT 0x2202 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_TRANSFORM.s b/libc/sysv/consts/SG_GET_TRANSFORM.s index d5fb9441a..ad616a549 100644 --- a/libc/sysv/consts/SG_GET_TRANSFORM.s +++ b/libc/sysv/consts/SG_GET_TRANSFORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_TRANSFORM 0x2205 0 0 0 0 +.syscon sg SG_GET_TRANSFORM 0x2205 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_GET_VERSION_NUM.s b/libc/sysv/consts/SG_GET_VERSION_NUM.s index 2cf8330da..e744a3507 100644 --- a/libc/sysv/consts/SG_GET_VERSION_NUM.s +++ b/libc/sysv/consts/SG_GET_VERSION_NUM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_GET_VERSION_NUM 0x2282 0 0 0 0 +.syscon sg SG_GET_VERSION_NUM 0x2282 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_INFO_CHECK.s b/libc/sysv/consts/SG_INFO_CHECK.s index 44539a620..6e9630d03 100644 --- a/libc/sysv/consts/SG_INFO_CHECK.s +++ b/libc/sysv/consts/SG_INFO_CHECK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_INFO_CHECK 1 0 0 0 0 +.syscon sg SG_INFO_CHECK 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_INFO_DIRECT_IO.s b/libc/sysv/consts/SG_INFO_DIRECT_IO.s index da0ce7506..96adb4184 100644 --- a/libc/sysv/consts/SG_INFO_DIRECT_IO.s +++ b/libc/sysv/consts/SG_INFO_DIRECT_IO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_INFO_DIRECT_IO 2 0 0 0 0 +.syscon sg SG_INFO_DIRECT_IO 2 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_INFO_DIRECT_IO_MASK.s b/libc/sysv/consts/SG_INFO_DIRECT_IO_MASK.s index 96b236034..b8f9dec7e 100644 --- a/libc/sysv/consts/SG_INFO_DIRECT_IO_MASK.s +++ b/libc/sysv/consts/SG_INFO_DIRECT_IO_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_INFO_DIRECT_IO_MASK 6 0 0 0 0 +.syscon sg SG_INFO_DIRECT_IO_MASK 6 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_INFO_INDIRECT_IO.s b/libc/sysv/consts/SG_INFO_INDIRECT_IO.s index c3d561d5a..27ffa6fd3 100644 --- a/libc/sysv/consts/SG_INFO_INDIRECT_IO.s +++ b/libc/sysv/consts/SG_INFO_INDIRECT_IO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_INFO_INDIRECT_IO 0 0 0 0 0 +.syscon sg SG_INFO_INDIRECT_IO 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_INFO_MIXED_IO.s b/libc/sysv/consts/SG_INFO_MIXED_IO.s index e1df200e7..ed1970e02 100644 --- a/libc/sysv/consts/SG_INFO_MIXED_IO.s +++ b/libc/sysv/consts/SG_INFO_MIXED_IO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_INFO_MIXED_IO 4 0 0 0 0 +.syscon sg SG_INFO_MIXED_IO 4 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_INFO_OK.s b/libc/sysv/consts/SG_INFO_OK.s index bb5b6f264..223f79716 100644 --- a/libc/sysv/consts/SG_INFO_OK.s +++ b/libc/sysv/consts/SG_INFO_OK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_INFO_OK 0 0 0 0 0 +.syscon sg SG_INFO_OK 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_INFO_OK_MASK.s b/libc/sysv/consts/SG_INFO_OK_MASK.s index 1929854e2..26a64cb56 100644 --- a/libc/sysv/consts/SG_INFO_OK_MASK.s +++ b/libc/sysv/consts/SG_INFO_OK_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_INFO_OK_MASK 1 0 0 0 0 +.syscon sg SG_INFO_OK_MASK 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_IO.s b/libc/sysv/consts/SG_IO.s index 638a0beaa..08d0d3c54 100644 --- a/libc/sysv/consts/SG_IO.s +++ b/libc/sysv/consts/SG_IO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_IO 0x2285 0 0 0 0 +.syscon sg SG_IO 0x2285 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_MAX_QUEUE.s b/libc/sysv/consts/SG_MAX_QUEUE.s index 945c955cf..20149a9d3 100644 --- a/libc/sysv/consts/SG_MAX_QUEUE.s +++ b/libc/sysv/consts/SG_MAX_QUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_MAX_QUEUE 0x10 0 0 0 0 +.syscon sg SG_MAX_QUEUE 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_MAX_SENSE.s b/libc/sysv/consts/SG_MAX_SENSE.s index 6f09a6856..5f3ff1bf1 100644 --- a/libc/sysv/consts/SG_MAX_SENSE.s +++ b/libc/sysv/consts/SG_MAX_SENSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_MAX_SENSE 0x10 0 0 0 0 +.syscon sg SG_MAX_SENSE 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_NEXT_CMD_LEN.s b/libc/sysv/consts/SG_NEXT_CMD_LEN.s index 7340fbb3e..c9384feb6 100644 --- a/libc/sysv/consts/SG_NEXT_CMD_LEN.s +++ b/libc/sysv/consts/SG_NEXT_CMD_LEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_NEXT_CMD_LEN 0x2283 0 0 0 0 +.syscon sg SG_NEXT_CMD_LEN 0x2283 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SCATTER_SZ.s b/libc/sysv/consts/SG_SCATTER_SZ.s index 57705ee8d..3e0fdeca8 100644 --- a/libc/sysv/consts/SG_SCATTER_SZ.s +++ b/libc/sysv/consts/SG_SCATTER_SZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SCATTER_SZ 0x8000 0 0 0 0 +.syscon sg SG_SCATTER_SZ 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SCSI_RESET.s b/libc/sysv/consts/SG_SCSI_RESET.s index 351d567fe..5885990fa 100644 --- a/libc/sysv/consts/SG_SCSI_RESET.s +++ b/libc/sysv/consts/SG_SCSI_RESET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SCSI_RESET 0x2284 0 0 0 0 +.syscon sg SG_SCSI_RESET 0x2284 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SCSI_RESET_BUS.s b/libc/sysv/consts/SG_SCSI_RESET_BUS.s index 46afe0e2d..d88182680 100644 --- a/libc/sysv/consts/SG_SCSI_RESET_BUS.s +++ b/libc/sysv/consts/SG_SCSI_RESET_BUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SCSI_RESET_BUS 2 0 0 0 0 +.syscon sg SG_SCSI_RESET_BUS 2 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SCSI_RESET_DEVICE.s b/libc/sysv/consts/SG_SCSI_RESET_DEVICE.s index 4bdada0bf..db9a0a7c9 100644 --- a/libc/sysv/consts/SG_SCSI_RESET_DEVICE.s +++ b/libc/sysv/consts/SG_SCSI_RESET_DEVICE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SCSI_RESET_DEVICE 1 0 0 0 0 +.syscon sg SG_SCSI_RESET_DEVICE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SCSI_RESET_HOST.s b/libc/sysv/consts/SG_SCSI_RESET_HOST.s index a604470d1..36d887f72 100644 --- a/libc/sysv/consts/SG_SCSI_RESET_HOST.s +++ b/libc/sysv/consts/SG_SCSI_RESET_HOST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SCSI_RESET_HOST 3 0 0 0 0 +.syscon sg SG_SCSI_RESET_HOST 3 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SCSI_RESET_NOTHING.s b/libc/sysv/consts/SG_SCSI_RESET_NOTHING.s index f5b362c58..64356b136 100644 --- a/libc/sysv/consts/SG_SCSI_RESET_NOTHING.s +++ b/libc/sysv/consts/SG_SCSI_RESET_NOTHING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SCSI_RESET_NOTHING 0 0 0 0 0 +.syscon sg SG_SCSI_RESET_NOTHING 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_COMMAND_Q.s b/libc/sysv/consts/SG_SET_COMMAND_Q.s index 00b6b4d34..61a70441c 100644 --- a/libc/sysv/consts/SG_SET_COMMAND_Q.s +++ b/libc/sysv/consts/SG_SET_COMMAND_Q.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_COMMAND_Q 0x2271 0 0 0 0 +.syscon sg SG_SET_COMMAND_Q 0x2271 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_DEBUG.s b/libc/sysv/consts/SG_SET_DEBUG.s index fa6b7f3f1..63ae220db 100644 --- a/libc/sysv/consts/SG_SET_DEBUG.s +++ b/libc/sysv/consts/SG_SET_DEBUG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_DEBUG 0x227e 0 0 0 0 +.syscon sg SG_SET_DEBUG 0x227e 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_FORCE_LOW_DMA.s b/libc/sysv/consts/SG_SET_FORCE_LOW_DMA.s index a38728fd8..13de081b5 100644 --- a/libc/sysv/consts/SG_SET_FORCE_LOW_DMA.s +++ b/libc/sysv/consts/SG_SET_FORCE_LOW_DMA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_FORCE_LOW_DMA 0x2279 0 0 0 0 +.syscon sg SG_SET_FORCE_LOW_DMA 0x2279 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_FORCE_PACK_ID.s b/libc/sysv/consts/SG_SET_FORCE_PACK_ID.s index 8b9957347..17f94498f 100644 --- a/libc/sysv/consts/SG_SET_FORCE_PACK_ID.s +++ b/libc/sysv/consts/SG_SET_FORCE_PACK_ID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_FORCE_PACK_ID 0x227b 0 0 0 0 +.syscon sg SG_SET_FORCE_PACK_ID 0x227b 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_KEEP_ORPHAN.s b/libc/sysv/consts/SG_SET_KEEP_ORPHAN.s index 346f618d6..9912c4b66 100644 --- a/libc/sysv/consts/SG_SET_KEEP_ORPHAN.s +++ b/libc/sysv/consts/SG_SET_KEEP_ORPHAN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_KEEP_ORPHAN 0x2287 0 0 0 0 +.syscon sg SG_SET_KEEP_ORPHAN 0x2287 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_RESERVED_SIZE.s b/libc/sysv/consts/SG_SET_RESERVED_SIZE.s index 74683101f..29d729fe2 100644 --- a/libc/sysv/consts/SG_SET_RESERVED_SIZE.s +++ b/libc/sysv/consts/SG_SET_RESERVED_SIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_RESERVED_SIZE 0x2275 0 0 0 0 +.syscon sg SG_SET_RESERVED_SIZE 0x2275 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_TIMEOUT.s b/libc/sysv/consts/SG_SET_TIMEOUT.s index e150c15e5..42499c7f3 100644 --- a/libc/sysv/consts/SG_SET_TIMEOUT.s +++ b/libc/sysv/consts/SG_SET_TIMEOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_TIMEOUT 0x2201 0 0 0 0 +.syscon sg SG_SET_TIMEOUT 0x2201 0 0 0 0 0 diff --git a/libc/sysv/consts/SG_SET_TRANSFORM.s b/libc/sysv/consts/SG_SET_TRANSFORM.s index 693c0249f..7d151f811 100644 --- a/libc/sysv/consts/SG_SET_TRANSFORM.s +++ b/libc/sysv/consts/SG_SET_TRANSFORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sg SG_SET_TRANSFORM 0x2204 0 0 0 0 +.syscon sg SG_SET_TRANSFORM 0x2204 0 0 0 0 0 diff --git a/libc/sysv/consts/SHMLBA.s b/libc/sysv/consts/SHMLBA.s index 80ad60597..46b471ea1 100644 --- a/libc/sysv/consts/SHMLBA.s +++ b/libc/sysv/consts/SHMLBA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SHMLBA 0 0x1000 0x1000 0x1000 0 +.syscon misc SHMLBA 0 0x1000 0x1000 0x1000 0x1000 0 diff --git a/libc/sysv/consts/SHM_DEST.s b/libc/sysv/consts/SHM_DEST.s index 0d8c7d6fc..1804e9605 100644 --- a/libc/sysv/consts/SHM_DEST.s +++ b/libc/sysv/consts/SHM_DEST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_DEST 0x0200 0 0 0 0 +.syscon shm SHM_DEST 0x0200 0 0 0 0 0 diff --git a/libc/sysv/consts/SHM_EXEC.s b/libc/sysv/consts/SHM_EXEC.s index 3e7f79075..81e1f5fea 100644 --- a/libc/sysv/consts/SHM_EXEC.s +++ b/libc/sysv/consts/SHM_EXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_EXEC 0x8000 0 0 0 0 +.syscon shm SHM_EXEC 0x8000 0 0 0 0 0 diff --git a/libc/sysv/consts/SHM_HUGETLB.s b/libc/sysv/consts/SHM_HUGETLB.s index 46d06ad1a..bd469a595 100644 --- a/libc/sysv/consts/SHM_HUGETLB.s +++ b/libc/sysv/consts/SHM_HUGETLB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_HUGETLB 0x0800 0 0 0 0 +.syscon shm SHM_HUGETLB 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/SHM_INFO.s b/libc/sysv/consts/SHM_INFO.s index 480b5ca01..8a6fe5053 100644 --- a/libc/sysv/consts/SHM_INFO.s +++ b/libc/sysv/consts/SHM_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_INFO 14 0 14 0 0 +.syscon shm SHM_INFO 14 0 14 0 0 0 diff --git a/libc/sysv/consts/SHM_LOCK.s b/libc/sysv/consts/SHM_LOCK.s index bccbc57f9..159052434 100644 --- a/libc/sysv/consts/SHM_LOCK.s +++ b/libc/sysv/consts/SHM_LOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_LOCK 11 0 11 3 0 +.syscon shm SHM_LOCK 11 0 11 3 3 0 diff --git a/libc/sysv/consts/SHM_LOCKED.s b/libc/sysv/consts/SHM_LOCKED.s index ba3d877f4..6923fb171 100644 --- a/libc/sysv/consts/SHM_LOCKED.s +++ b/libc/sysv/consts/SHM_LOCKED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_LOCKED 0x0400 0 0 0 0 +.syscon shm SHM_LOCKED 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/SHM_NORESERVE.s b/libc/sysv/consts/SHM_NORESERVE.s index 99a138025..788992443 100644 --- a/libc/sysv/consts/SHM_NORESERVE.s +++ b/libc/sysv/consts/SHM_NORESERVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_NORESERVE 0x1000 0 0 0 0 +.syscon shm SHM_NORESERVE 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/SHM_R.s b/libc/sysv/consts/SHM_R.s index 0b0c4440f..4f8578477 100644 --- a/libc/sysv/consts/SHM_R.s +++ b/libc/sysv/consts/SHM_R.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_R 0x0100 0x0100 0x0100 0x0100 0 +.syscon shm SHM_R 0x0100 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/SHM_RDONLY.s b/libc/sysv/consts/SHM_RDONLY.s index ee446259a..0584e0e90 100644 --- a/libc/sysv/consts/SHM_RDONLY.s +++ b/libc/sysv/consts/SHM_RDONLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_RDONLY 0x1000 0x1000 0x1000 0x1000 0 +.syscon shm SHM_RDONLY 0x1000 0x1000 0x1000 0x1000 0x1000 0 diff --git a/libc/sysv/consts/SHM_REMAP.s b/libc/sysv/consts/SHM_REMAP.s index ad429e0c6..93008c5f6 100644 --- a/libc/sysv/consts/SHM_REMAP.s +++ b/libc/sysv/consts/SHM_REMAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_REMAP 0x4000 0 0 0 0 +.syscon shm SHM_REMAP 0x4000 0 0 0 0 0 diff --git a/libc/sysv/consts/SHM_RND.s b/libc/sysv/consts/SHM_RND.s index b51e60d09..a2adf3e8c 100644 --- a/libc/sysv/consts/SHM_RND.s +++ b/libc/sysv/consts/SHM_RND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_RND 0x2000 0x2000 0x2000 0x2000 0 +.syscon shm SHM_RND 0x2000 0x2000 0x2000 0x2000 0x2000 0 diff --git a/libc/sysv/consts/SHM_STAT.s b/libc/sysv/consts/SHM_STAT.s index 4e6eadcfa..6f32e801e 100644 --- a/libc/sysv/consts/SHM_STAT.s +++ b/libc/sysv/consts/SHM_STAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_STAT 13 0 13 0 0 +.syscon shm SHM_STAT 13 0 13 0 0 0 diff --git a/libc/sysv/consts/SHM_UNLOCK.s b/libc/sysv/consts/SHM_UNLOCK.s index 975272aa6..01edfed15 100644 --- a/libc/sysv/consts/SHM_UNLOCK.s +++ b/libc/sysv/consts/SHM_UNLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_UNLOCK 12 0 12 4 0 +.syscon shm SHM_UNLOCK 12 0 12 4 4 0 diff --git a/libc/sysv/consts/SHM_W.s b/libc/sysv/consts/SHM_W.s index 1e609a919..1756fe0a0 100644 --- a/libc/sysv/consts/SHM_W.s +++ b/libc/sysv/consts/SHM_W.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon shm SHM_W 0x80 0x80 0x80 0x80 0 +.syscon shm SHM_W 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/SHORT_INODE.s b/libc/sysv/consts/SHORT_INODE.s index e3fc41767..fdaaa8589 100644 --- a/libc/sysv/consts/SHORT_INODE.s +++ b/libc/sysv/consts/SHORT_INODE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty SHORT_INODE 0x1000000 -1 -1 -1 -1 +.syscon prsnlty SHORT_INODE 0x1000000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/SHUT_RD.s b/libc/sysv/consts/SHUT_RD.s index 0187100e7..8f190234d 100644 --- a/libc/sysv/consts/SHUT_RD.s +++ b/libc/sysv/consts/SHUT_RD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SHUT_RD 0 0 0 0 0 +.syscon misc SHUT_RD 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SHUT_RDWR.s b/libc/sysv/consts/SHUT_RDWR.s index 3f20b04d3..0199bfe5a 100644 --- a/libc/sysv/consts/SHUT_RDWR.s +++ b/libc/sysv/consts/SHUT_RDWR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SHUT_RDWR 2 2 2 2 2 +.syscon misc SHUT_RDWR 2 2 2 2 2 2 diff --git a/libc/sysv/consts/SHUT_WR.s b/libc/sysv/consts/SHUT_WR.s index 116578a32..eecb2d78f 100644 --- a/libc/sysv/consts/SHUT_WR.s +++ b/libc/sysv/consts/SHUT_WR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SHUT_WR 1 1 1 1 1 +.syscon misc SHUT_WR 1 1 1 1 1 1 diff --git a/libc/sysv/consts/SIGABRT.s b/libc/sysv/consts/SIGABRT.s index bb158e1ad..c755a0719 100644 --- a/libc/sysv/consts/SIGABRT.s +++ b/libc/sysv/consts/SIGABRT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGABRT 6 6 6 6 6 +.syscon sig SIGABRT 6 6 6 6 6 6 diff --git a/libc/sysv/consts/SIGALRM.s b/libc/sysv/consts/SIGALRM.s index 4f6fec111..7582f2517 100644 --- a/libc/sysv/consts/SIGALRM.s +++ b/libc/sysv/consts/SIGALRM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGALRM 14 14 14 14 14 +.syscon sig SIGALRM 14 14 14 14 14 14 diff --git a/libc/sysv/consts/SIGBUS.s b/libc/sysv/consts/SIGBUS.s index b0331dfab..6909c6165 100644 --- a/libc/sysv/consts/SIGBUS.s +++ b/libc/sysv/consts/SIGBUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGBUS 7 10 10 10 7 +.syscon sig SIGBUS 7 10 10 10 10 7 diff --git a/libc/sysv/consts/SIGCHLD.s b/libc/sysv/consts/SIGCHLD.s index 4fd02e67d..9db593be1 100644 --- a/libc/sysv/consts/SIGCHLD.s +++ b/libc/sysv/consts/SIGCHLD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGCHLD 17 20 20 20 17 +.syscon sig SIGCHLD 17 20 20 20 20 17 diff --git a/libc/sysv/consts/SIGCONT.s b/libc/sysv/consts/SIGCONT.s index 4cc74b898..413d71984 100644 --- a/libc/sysv/consts/SIGCONT.s +++ b/libc/sysv/consts/SIGCONT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGCONT 18 19 19 19 18 +.syscon sig SIGCONT 18 19 19 19 19 18 diff --git a/libc/sysv/consts/SIGEV_NONE.s b/libc/sysv/consts/SIGEV_NONE.s index 3e3b62c5b..2a54df1c9 100644 --- a/libc/sysv/consts/SIGEV_NONE.s +++ b/libc/sysv/consts/SIGEV_NONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIGEV_NONE 1 0 0 0 0 +.syscon misc SIGEV_NONE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SIGEV_SIGNAL.s b/libc/sysv/consts/SIGEV_SIGNAL.s index 1f8ed6638..a7652fb59 100644 --- a/libc/sysv/consts/SIGEV_SIGNAL.s +++ b/libc/sysv/consts/SIGEV_SIGNAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIGEV_SIGNAL 0 1 1 0 0 +.syscon misc SIGEV_SIGNAL 0 1 1 0 1 0 diff --git a/libc/sysv/consts/SIGEV_THREAD.s b/libc/sysv/consts/SIGEV_THREAD.s index 6769e91a5..4e3118063 100644 --- a/libc/sysv/consts/SIGEV_THREAD.s +++ b/libc/sysv/consts/SIGEV_THREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIGEV_THREAD 2 3 2 0 0 +.syscon misc SIGEV_THREAD 2 3 2 0 2 0 diff --git a/libc/sysv/consts/SIGFPE.s b/libc/sysv/consts/SIGFPE.s index 845a92b15..a5eec44f0 100644 --- a/libc/sysv/consts/SIGFPE.s +++ b/libc/sysv/consts/SIGFPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGFPE 8 8 8 8 8 +.syscon sig SIGFPE 8 8 8 8 8 8 diff --git a/libc/sysv/consts/SIGHUP.s b/libc/sysv/consts/SIGHUP.s index 32b777306..3aeb53f2a 100644 --- a/libc/sysv/consts/SIGHUP.s +++ b/libc/sysv/consts/SIGHUP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGHUP 1 1 1 1 1 +.syscon sig SIGHUP 1 1 1 1 1 1 diff --git a/libc/sysv/consts/SIGILL.s b/libc/sysv/consts/SIGILL.s index 58df857c3..a8e733cfc 100644 --- a/libc/sysv/consts/SIGILL.s +++ b/libc/sysv/consts/SIGILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGILL 4 4 4 4 4 +.syscon sig SIGILL 4 4 4 4 4 4 diff --git a/libc/sysv/consts/SIGINT.s b/libc/sysv/consts/SIGINT.s index a5bdf21ea..914eb6577 100644 --- a/libc/sysv/consts/SIGINT.s +++ b/libc/sysv/consts/SIGINT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGINT 2 2 2 2 2 +.syscon sig SIGINT 2 2 2 2 2 2 diff --git a/libc/sysv/consts/SIGIO.s b/libc/sysv/consts/SIGIO.s index ded429b3c..80f26ce15 100644 --- a/libc/sysv/consts/SIGIO.s +++ b/libc/sysv/consts/SIGIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGIO 29 23 23 23 29 +.syscon sig SIGIO 29 23 23 23 23 29 diff --git a/libc/sysv/consts/SIGIOT.s b/libc/sysv/consts/SIGIOT.s index 8c7d6efd3..6fd78efe5 100644 --- a/libc/sysv/consts/SIGIOT.s +++ b/libc/sysv/consts/SIGIOT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGIOT 6 6 6 6 6 +.syscon sig SIGIOT 6 6 6 6 6 6 diff --git a/libc/sysv/consts/SIGKILL.s b/libc/sysv/consts/SIGKILL.s index 7f4defa28..4ad30c85a 100644 --- a/libc/sysv/consts/SIGKILL.s +++ b/libc/sysv/consts/SIGKILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGKILL 9 9 9 9 9 +.syscon sig SIGKILL 9 9 9 9 9 9 diff --git a/libc/sysv/consts/SIGPIPE.s b/libc/sysv/consts/SIGPIPE.s index e1b23179a..0f47c7c30 100644 --- a/libc/sysv/consts/SIGPIPE.s +++ b/libc/sysv/consts/SIGPIPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGPIPE 13 13 13 13 13 +.syscon sig SIGPIPE 13 13 13 13 13 13 diff --git a/libc/sysv/consts/SIGPOLL.s b/libc/sysv/consts/SIGPOLL.s index 36c6e42c3..bfcd9abb7 100644 --- a/libc/sysv/consts/SIGPOLL.s +++ b/libc/sysv/consts/SIGPOLL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGPOLL 29 0 0 0 29 +.syscon sig SIGPOLL 29 0 0 0 0 29 diff --git a/libc/sysv/consts/SIGPROF.s b/libc/sysv/consts/SIGPROF.s index a44e23476..b43caa37f 100644 --- a/libc/sysv/consts/SIGPROF.s +++ b/libc/sysv/consts/SIGPROF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGPROF 27 27 27 27 27 +.syscon sig SIGPROF 27 27 27 27 27 27 diff --git a/libc/sysv/consts/SIGPWR.s b/libc/sysv/consts/SIGPWR.s index eb7f8ed98..b6dc91b26 100644 --- a/libc/sysv/consts/SIGPWR.s +++ b/libc/sysv/consts/SIGPWR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGPWR 30 0 0 0 30 +.syscon sig SIGPWR 30 0 0 0 32 30 diff --git a/libc/sysv/consts/SIGQUIT.s b/libc/sysv/consts/SIGQUIT.s index 657fc2057..cce52ca55 100644 --- a/libc/sysv/consts/SIGQUIT.s +++ b/libc/sysv/consts/SIGQUIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGQUIT 3 3 3 3 3 +.syscon sig SIGQUIT 3 3 3 3 3 3 diff --git a/libc/sysv/consts/SIGRTMAX.s b/libc/sysv/consts/SIGRTMAX.s index e3edcadba..fc0d1a86d 100644 --- a/libc/sysv/consts/SIGRTMAX.s +++ b/libc/sysv/consts/SIGRTMAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGRTMAX 0 0 126 0 0 +.syscon sig SIGRTMAX 0 0 126 0 63 0 diff --git a/libc/sysv/consts/SIGRTMIN.s b/libc/sysv/consts/SIGRTMIN.s index ca89bfd66..0ac246096 100644 --- a/libc/sysv/consts/SIGRTMIN.s +++ b/libc/sysv/consts/SIGRTMIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGRTMIN 0 0 65 0 0 +.syscon sig SIGRTMIN 0 0 65 0 33 0 diff --git a/libc/sysv/consts/SIGSEGV.s b/libc/sysv/consts/SIGSEGV.s index 4f8da8b5f..13a0c05bb 100644 --- a/libc/sysv/consts/SIGSEGV.s +++ b/libc/sysv/consts/SIGSEGV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGSEGV 11 11 11 11 11 +.syscon sig SIGSEGV 11 11 11 11 11 11 diff --git a/libc/sysv/consts/SIGSTKFLT.s b/libc/sysv/consts/SIGSTKFLT.s index e986d404a..df54183d7 100644 --- a/libc/sysv/consts/SIGSTKFLT.s +++ b/libc/sysv/consts/SIGSTKFLT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGSTKFLT 0x10 0 0 0 0x10 +.syscon sig SIGSTKFLT 0x10 0 0 0 0 0x10 diff --git a/libc/sysv/consts/SIGSTKSZ.s b/libc/sysv/consts/SIGSTKSZ.s index e02067c62..cc075820e 100644 --- a/libc/sysv/consts/SIGSTKSZ.s +++ b/libc/sysv/consts/SIGSTKSZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGSTKSZ 0x2000 0x020000 0x8800 0x7000 0x2000 +.syscon sig SIGSTKSZ 0x2000 0x020000 0x8800 0x7000 0x7000 0x2000 diff --git a/libc/sysv/consts/SIGSTOP.s b/libc/sysv/consts/SIGSTOP.s index 1438f22c2..094bfa0b8 100644 --- a/libc/sysv/consts/SIGSTOP.s +++ b/libc/sysv/consts/SIGSTOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGSTOP 19 17 17 17 19 +.syscon sig SIGSTOP 19 17 17 17 17 19 diff --git a/libc/sysv/consts/SIGSYS.s b/libc/sysv/consts/SIGSYS.s index d13c13909..1d40d2040 100644 --- a/libc/sysv/consts/SIGSYS.s +++ b/libc/sysv/consts/SIGSYS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGSYS 31 12 12 12 31 +.syscon sig SIGSYS 31 12 12 12 12 31 diff --git a/libc/sysv/consts/SIGTERM.s b/libc/sysv/consts/SIGTERM.s index 2ba40385d..76f4d0ea6 100644 --- a/libc/sysv/consts/SIGTERM.s +++ b/libc/sysv/consts/SIGTERM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGTERM 15 15 15 15 15 +.syscon sig SIGTERM 15 15 15 15 15 15 diff --git a/libc/sysv/consts/SIGTRAP.s b/libc/sysv/consts/SIGTRAP.s index 5dc5770be..c9e45a41a 100644 --- a/libc/sysv/consts/SIGTRAP.s +++ b/libc/sysv/consts/SIGTRAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGTRAP 5 5 5 5 5 +.syscon sig SIGTRAP 5 5 5 5 5 5 diff --git a/libc/sysv/consts/SIGTSTP.s b/libc/sysv/consts/SIGTSTP.s index cfa45fbd2..5e406487e 100644 --- a/libc/sysv/consts/SIGTSTP.s +++ b/libc/sysv/consts/SIGTSTP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGTSTP 20 18 18 18 20 +.syscon sig SIGTSTP 20 18 18 18 18 20 diff --git a/libc/sysv/consts/SIGTTIN.s b/libc/sysv/consts/SIGTTIN.s index 5a71fb70a..8181243b8 100644 --- a/libc/sysv/consts/SIGTTIN.s +++ b/libc/sysv/consts/SIGTTIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGTTIN 21 21 21 21 21 +.syscon sig SIGTTIN 21 21 21 21 21 21 diff --git a/libc/sysv/consts/SIGTTOU.s b/libc/sysv/consts/SIGTTOU.s index 35538d061..775d20ac6 100644 --- a/libc/sysv/consts/SIGTTOU.s +++ b/libc/sysv/consts/SIGTTOU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGTTOU 22 22 22 22 22 +.syscon sig SIGTTOU 22 22 22 22 22 22 diff --git a/libc/sysv/consts/SIGUNUSED.s b/libc/sysv/consts/SIGUNUSED.s index ba71f6857..e8b2040f5 100644 --- a/libc/sysv/consts/SIGUNUSED.s +++ b/libc/sysv/consts/SIGUNUSED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGUNUSED 31 0 0 0 31 +.syscon sig SIGUNUSED 31 0 0 0 0 31 diff --git a/libc/sysv/consts/SIGURG.s b/libc/sysv/consts/SIGURG.s index d57f6f772..f382d9b37 100644 --- a/libc/sysv/consts/SIGURG.s +++ b/libc/sysv/consts/SIGURG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGURG 23 0x10 0x10 0x10 23 +.syscon sig SIGURG 23 0x10 0x10 0x10 0x10 23 diff --git a/libc/sysv/consts/SIGUSR1.s b/libc/sysv/consts/SIGUSR1.s index 07faf27a0..63af88917 100644 --- a/libc/sysv/consts/SIGUSR1.s +++ b/libc/sysv/consts/SIGUSR1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGUSR1 10 30 30 30 10 +.syscon sig SIGUSR1 10 30 30 30 30 10 diff --git a/libc/sysv/consts/SIGUSR2.s b/libc/sysv/consts/SIGUSR2.s index e4bacc8c8..d1609fd4c 100644 --- a/libc/sysv/consts/SIGUSR2.s +++ b/libc/sysv/consts/SIGUSR2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGUSR2 12 31 31 31 12 +.syscon sig SIGUSR2 12 31 31 31 31 12 diff --git a/libc/sysv/consts/SIGVTALRM.s b/libc/sysv/consts/SIGVTALRM.s index 06cccbefc..7ca63d0b1 100644 --- a/libc/sysv/consts/SIGVTALRM.s +++ b/libc/sysv/consts/SIGVTALRM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGVTALRM 26 26 26 26 26 +.syscon sig SIGVTALRM 26 26 26 26 26 26 diff --git a/libc/sysv/consts/SIGWINCH.s b/libc/sysv/consts/SIGWINCH.s index 0f7c0b83a..5216f67fb 100644 --- a/libc/sysv/consts/SIGWINCH.s +++ b/libc/sysv/consts/SIGWINCH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGWINCH 28 28 28 28 28 +.syscon sig SIGWINCH 28 28 28 28 28 28 diff --git a/libc/sysv/consts/SIGXCPU.s b/libc/sysv/consts/SIGXCPU.s index 09387e866..c7ef84777 100644 --- a/libc/sysv/consts/SIGXCPU.s +++ b/libc/sysv/consts/SIGXCPU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGXCPU 24 24 24 24 24 +.syscon sig SIGXCPU 24 24 24 24 24 24 diff --git a/libc/sysv/consts/SIGXFSZ.s b/libc/sysv/consts/SIGXFSZ.s index 46395b3d7..c16975e28 100644 --- a/libc/sysv/consts/SIGXFSZ.s +++ b/libc/sysv/consts/SIGXFSZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sig SIGXFSZ 25 25 25 25 25 +.syscon sig SIGXFSZ 25 25 25 25 25 25 diff --git a/libc/sysv/consts/SIG_ATOMIC_MIN.s b/libc/sysv/consts/SIG_ATOMIC_MIN.s index 411c50900..4a222855a 100644 --- a/libc/sysv/consts/SIG_ATOMIC_MIN.s +++ b/libc/sysv/consts/SIG_ATOMIC_MIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIG_ATOMIC_MIN -2147483648 -2147483648 -9223372036854775808 -2147483648 0 +.syscon misc SIG_ATOMIC_MIN -2147483648 -2147483648 -9223372036854775808 -2147483648 -2147483648 0 diff --git a/libc/sysv/consts/SIG_BLOCK.s b/libc/sysv/consts/SIG_BLOCK.s index cab61db3e..8d0281a3d 100644 --- a/libc/sysv/consts/SIG_BLOCK.s +++ b/libc/sysv/consts/SIG_BLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIG_BLOCK 0 1 1 1 0 +.syscon misc SIG_BLOCK 0 1 1 1 1 0 diff --git a/libc/sysv/consts/SIG_SETMASK.s b/libc/sysv/consts/SIG_SETMASK.s index a5350d2ac..6e8347940 100644 --- a/libc/sysv/consts/SIG_SETMASK.s +++ b/libc/sysv/consts/SIG_SETMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIG_SETMASK 2 3 3 3 0 +.syscon misc SIG_SETMASK 2 3 3 3 3 0 diff --git a/libc/sysv/consts/SIG_UNBLOCK.s b/libc/sysv/consts/SIG_UNBLOCK.s index 841e946cf..c6167f1da 100644 --- a/libc/sysv/consts/SIG_UNBLOCK.s +++ b/libc/sysv/consts/SIG_UNBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIG_UNBLOCK 1 2 2 2 0 +.syscon misc SIG_UNBLOCK 1 2 2 2 2 0 diff --git a/libc/sysv/consts/SIMPLE_QUEUE_TAG.s b/libc/sysv/consts/SIMPLE_QUEUE_TAG.s index 7c1df949e..f1f45d98e 100644 --- a/libc/sysv/consts/SIMPLE_QUEUE_TAG.s +++ b/libc/sysv/consts/SIMPLE_QUEUE_TAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SIMPLE_QUEUE_TAG 0x20 0 0 0 0 +.syscon misc SIMPLE_QUEUE_TAG 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCADDDLCI.s b/libc/sysv/consts/SIOCADDDLCI.s index 6a2a21e82..c01045b37 100644 --- a/libc/sysv/consts/SIOCADDDLCI.s +++ b/libc/sysv/consts/SIOCADDDLCI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCADDDLCI 0x8980 0 0 0 0 +.syscon sio SIOCADDDLCI 0x8980 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCADDMULTI.s b/libc/sysv/consts/SIOCADDMULTI.s index 68f99041b..602394754 100644 --- a/libc/sysv/consts/SIOCADDMULTI.s +++ b/libc/sysv/consts/SIOCADDMULTI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCADDMULTI 0x8931 0x80206931 0x80206931 0x80206931 0 +.syscon sio SIOCADDMULTI 0x8931 0x80206931 0x80206931 0x80206931 0x80206931 0 diff --git a/libc/sysv/consts/SIOCADDRT.s b/libc/sysv/consts/SIOCADDRT.s index 5902e46c3..5ba946c07 100644 --- a/libc/sysv/consts/SIOCADDRT.s +++ b/libc/sysv/consts/SIOCADDRT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCADDRT 0x890b 0 0 0 0 +.syscon sio SIOCADDRT 0x890b 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCATMARK.s b/libc/sysv/consts/SIOCATMARK.s index 590c93386..9e2e70864 100644 --- a/libc/sysv/consts/SIOCATMARK.s +++ b/libc/sysv/consts/SIOCATMARK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCATMARK 0x8905 0x40047307 0x40047307 0x40047307 0 +.syscon sio SIOCATMARK 0x8905 0x40047307 0x40047307 0x40047307 0x40047307 0 diff --git a/libc/sysv/consts/SIOCDARP.s b/libc/sysv/consts/SIOCDARP.s index 20f89c319..3ee0f6e40 100644 --- a/libc/sysv/consts/SIOCDARP.s +++ b/libc/sysv/consts/SIOCDARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCDARP 0x8953 0 0 0 0 +.syscon sio SIOCDARP 0x8953 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCDELDLCI.s b/libc/sysv/consts/SIOCDELDLCI.s index d15cb689b..e5b2483c4 100644 --- a/libc/sysv/consts/SIOCDELDLCI.s +++ b/libc/sysv/consts/SIOCDELDLCI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCDELDLCI 0x8981 0 0 0 0 +.syscon sio SIOCDELDLCI 0x8981 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCDELMULTI.s b/libc/sysv/consts/SIOCDELMULTI.s index 874f8cad6..3b525be4e 100644 --- a/libc/sysv/consts/SIOCDELMULTI.s +++ b/libc/sysv/consts/SIOCDELMULTI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCDELMULTI 0x8932 0x80206932 0x80206932 0x80206932 0 +.syscon sio SIOCDELMULTI 0x8932 0x80206932 0x80206932 0x80206932 0x80206932 0 diff --git a/libc/sysv/consts/SIOCDELRT.s b/libc/sysv/consts/SIOCDELRT.s index 5d59f01f7..872876c05 100644 --- a/libc/sysv/consts/SIOCDELRT.s +++ b/libc/sysv/consts/SIOCDELRT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCDELRT 0x890c 0 0 0 0 +.syscon sio SIOCDELRT 0x890c 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCDEVPRIVATE.s b/libc/sysv/consts/SIOCDEVPRIVATE.s index ef507654c..fcadacebc 100644 --- a/libc/sysv/consts/SIOCDEVPRIVATE.s +++ b/libc/sysv/consts/SIOCDEVPRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCDEVPRIVATE 0x89f0 0 0 0 0 +.syscon sio SIOCDEVPRIVATE 0x89f0 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCDIFADDR.s b/libc/sysv/consts/SIOCDIFADDR.s index dfefd0c5a..ceb300707 100644 --- a/libc/sysv/consts/SIOCDIFADDR.s +++ b/libc/sysv/consts/SIOCDIFADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCDIFADDR 0x8936 0x80206919 0x80206919 0x80206919 0 +.syscon sio SIOCDIFADDR 0x8936 0x80206919 0x80206919 0x80206919 0x80206919 0 diff --git a/libc/sysv/consts/SIOCDRARP.s b/libc/sysv/consts/SIOCDRARP.s index ae34fd876..b0aaa08b7 100644 --- a/libc/sysv/consts/SIOCDRARP.s +++ b/libc/sysv/consts/SIOCDRARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCDRARP 0x8960 0 0 0 0 +.syscon sio SIOCDRARP 0x8960 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGARP.s b/libc/sysv/consts/SIOCGARP.s index 7bb280506..4a570dde3 100644 --- a/libc/sysv/consts/SIOCGARP.s +++ b/libc/sysv/consts/SIOCGARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGARP 0x8954 0 0 0 0 +.syscon sio SIOCGARP 0x8954 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFADDR.s b/libc/sysv/consts/SIOCGIFADDR.s index 2e3e35d41..d0f464dd9 100644 --- a/libc/sysv/consts/SIOCGIFADDR.s +++ b/libc/sysv/consts/SIOCGIFADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFADDR 0x8915 0xc0206921 0xc0206921 0xc0206921 0 +.syscon sio SIOCGIFADDR 0x8915 0xc0206921 0xc0206921 0xc0206921 0xc0206921 0 diff --git a/libc/sysv/consts/SIOCGIFBR.s b/libc/sysv/consts/SIOCGIFBR.s index 11d4680dc..80df7dfe8 100644 --- a/libc/sysv/consts/SIOCGIFBR.s +++ b/libc/sysv/consts/SIOCGIFBR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFBR 0x8940 0 0 0 0 +.syscon sio SIOCGIFBR 0x8940 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFBRDADDR.s b/libc/sysv/consts/SIOCGIFBRDADDR.s index 13719a770..ec93e040e 100644 --- a/libc/sysv/consts/SIOCGIFBRDADDR.s +++ b/libc/sysv/consts/SIOCGIFBRDADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFBRDADDR 0x8919 0xc0206923 0xc0206923 0xc0206923 0 +.syscon sio SIOCGIFBRDADDR 0x8919 0xc0206923 0xc0206923 0xc0206923 0xc0206923 0 diff --git a/libc/sysv/consts/SIOCGIFCONF.s b/libc/sysv/consts/SIOCGIFCONF.s index 3bde47940..3d3adc5d5 100644 --- a/libc/sysv/consts/SIOCGIFCONF.s +++ b/libc/sysv/consts/SIOCGIFCONF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFCONF 0x8912 0xc00c6924 0xc0106924 0xc0106924 0 +.syscon sio SIOCGIFCONF 0x8912 0xc00c6924 0xc0106924 0xc0106924 0xc0106924 0 diff --git a/libc/sysv/consts/SIOCGIFCOUNT.s b/libc/sysv/consts/SIOCGIFCOUNT.s index 1f5636e8f..ff114832f 100644 --- a/libc/sysv/consts/SIOCGIFCOUNT.s +++ b/libc/sysv/consts/SIOCGIFCOUNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFCOUNT 0x8938 0 0 0 0 +.syscon sio SIOCGIFCOUNT 0x8938 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFDSTADDR.s b/libc/sysv/consts/SIOCGIFDSTADDR.s index 9b942851f..cd2ed0e35 100644 --- a/libc/sysv/consts/SIOCGIFDSTADDR.s +++ b/libc/sysv/consts/SIOCGIFDSTADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFDSTADDR 0x8917 0xc0206922 0xc0206922 0xc0206922 0 +.syscon sio SIOCGIFDSTADDR 0x8917 0xc0206922 0xc0206922 0xc0206922 0xc0206922 0 diff --git a/libc/sysv/consts/SIOCGIFENCAP.s b/libc/sysv/consts/SIOCGIFENCAP.s index 7361e2d8e..db239cfeb 100644 --- a/libc/sysv/consts/SIOCGIFENCAP.s +++ b/libc/sysv/consts/SIOCGIFENCAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFENCAP 0x8925 0 0 0 0 +.syscon sio SIOCGIFENCAP 0x8925 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFFLAGS.s b/libc/sysv/consts/SIOCGIFFLAGS.s index f967074e2..949263107 100644 --- a/libc/sysv/consts/SIOCGIFFLAGS.s +++ b/libc/sysv/consts/SIOCGIFFLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFFLAGS 0x8913 0xc0206911 0xc0206911 0xc0206911 0 +.syscon sio SIOCGIFFLAGS 0x8913 0xc0206911 0xc0206911 0xc0206911 0xc0206911 0 diff --git a/libc/sysv/consts/SIOCGIFHWADDR.s b/libc/sysv/consts/SIOCGIFHWADDR.s index b0224254a..e92d927d6 100644 --- a/libc/sysv/consts/SIOCGIFHWADDR.s +++ b/libc/sysv/consts/SIOCGIFHWADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFHWADDR 0x8927 0 0 0 0 +.syscon sio SIOCGIFHWADDR 0x8927 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFINDEX.s b/libc/sysv/consts/SIOCGIFINDEX.s index 816ffd22a..327948ab2 100644 --- a/libc/sysv/consts/SIOCGIFINDEX.s +++ b/libc/sysv/consts/SIOCGIFINDEX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFINDEX 0x8933 0 0xc0206920 0 0 +.syscon sio SIOCGIFINDEX 0x8933 0 0xc0206920 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFMAP.s b/libc/sysv/consts/SIOCGIFMAP.s index 4dfa6d7d4..7afd2c849 100644 --- a/libc/sysv/consts/SIOCGIFMAP.s +++ b/libc/sysv/consts/SIOCGIFMAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFMAP 0x8970 0 0 0 0 +.syscon sio SIOCGIFMAP 0x8970 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFMEM.s b/libc/sysv/consts/SIOCGIFMEM.s index bbef59f59..0d61a8007 100644 --- a/libc/sysv/consts/SIOCGIFMEM.s +++ b/libc/sysv/consts/SIOCGIFMEM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFMEM 0x891f 0 0 0 0 +.syscon sio SIOCGIFMEM 0x891f 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFMETRIC.s b/libc/sysv/consts/SIOCGIFMETRIC.s index eb2d3875b..863c16851 100644 --- a/libc/sysv/consts/SIOCGIFMETRIC.s +++ b/libc/sysv/consts/SIOCGIFMETRIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFMETRIC 0x891d 0xc0206917 0xc0206917 0xc0206917 0 +.syscon sio SIOCGIFMETRIC 0x891d 0xc0206917 0xc0206917 0xc0206917 0xc0206917 0 diff --git a/libc/sysv/consts/SIOCGIFMTU.s b/libc/sysv/consts/SIOCGIFMTU.s index b5718bbf6..873ab5276 100644 --- a/libc/sysv/consts/SIOCGIFMTU.s +++ b/libc/sysv/consts/SIOCGIFMTU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFMTU 0x8921 0xc0206933 0xc0206933 0xc020697e 0 +.syscon sio SIOCGIFMTU 0x8921 0xc0206933 0xc0206933 0xc020697e 0xc020697e 0 diff --git a/libc/sysv/consts/SIOCGIFNAME.s b/libc/sysv/consts/SIOCGIFNAME.s index 9f3a8582f..0cf48048c 100644 --- a/libc/sysv/consts/SIOCGIFNAME.s +++ b/libc/sysv/consts/SIOCGIFNAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFNAME 0x8910 0 0 0 0 +.syscon sio SIOCGIFNAME 0x8910 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFNETMASK.s b/libc/sysv/consts/SIOCGIFNETMASK.s index 45442abe5..9ccac429d 100644 --- a/libc/sysv/consts/SIOCGIFNETMASK.s +++ b/libc/sysv/consts/SIOCGIFNETMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFNETMASK 0x891b 0xc0206925 0xc0206925 0xc0206925 0 +.syscon sio SIOCGIFNETMASK 0x891b 0xc0206925 0xc0206925 0xc0206925 0xc0206925 0 diff --git a/libc/sysv/consts/SIOCGIFPFLAGS.s b/libc/sysv/consts/SIOCGIFPFLAGS.s index 6b8f95ceb..7689e4099 100644 --- a/libc/sysv/consts/SIOCGIFPFLAGS.s +++ b/libc/sysv/consts/SIOCGIFPFLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFPFLAGS 0x8935 0 0 0 0 +.syscon sio SIOCGIFPFLAGS 0x8935 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFSLAVE.s b/libc/sysv/consts/SIOCGIFSLAVE.s index 94a38d9ed..5c38f6980 100644 --- a/libc/sysv/consts/SIOCGIFSLAVE.s +++ b/libc/sysv/consts/SIOCGIFSLAVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFSLAVE 0x8929 0 0 0 0 +.syscon sio SIOCGIFSLAVE 0x8929 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGIFTXQLEN.s b/libc/sysv/consts/SIOCGIFTXQLEN.s index 0508bd5d9..b14b9cb0e 100644 --- a/libc/sysv/consts/SIOCGIFTXQLEN.s +++ b/libc/sysv/consts/SIOCGIFTXQLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGIFTXQLEN 0x8942 0 0 0 0 +.syscon sio SIOCGIFTXQLEN 0x8942 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGPGRP.s b/libc/sysv/consts/SIOCGPGRP.s index db113e3ec..4ce5b44d9 100644 --- a/libc/sysv/consts/SIOCGPGRP.s +++ b/libc/sysv/consts/SIOCGPGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGPGRP 0x8904 0x40047309 0x40047309 0x40047309 0 +.syscon sio SIOCGPGRP 0x8904 0x40047309 0x40047309 0x40047309 0x40047309 0 diff --git a/libc/sysv/consts/SIOCGRARP.s b/libc/sysv/consts/SIOCGRARP.s index 82723f115..e34741858 100644 --- a/libc/sysv/consts/SIOCGRARP.s +++ b/libc/sysv/consts/SIOCGRARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGRARP 0x8961 0 0 0 0 +.syscon sio SIOCGRARP 0x8961 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGSTAMP.s b/libc/sysv/consts/SIOCGSTAMP.s index 100910371..cd2357908 100644 --- a/libc/sysv/consts/SIOCGSTAMP.s +++ b/libc/sysv/consts/SIOCGSTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGSTAMP 0x8906 0 0 0 0 +.syscon sio SIOCGSTAMP 0x8906 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCGSTAMPNS.s b/libc/sysv/consts/SIOCGSTAMPNS.s index f34696ae0..31d587118 100644 --- a/libc/sysv/consts/SIOCGSTAMPNS.s +++ b/libc/sysv/consts/SIOCGSTAMPNS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCGSTAMPNS 0x8907 0 0 0 0 +.syscon sio SIOCGSTAMPNS 0x8907 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCPROTOPRIVATE.s b/libc/sysv/consts/SIOCPROTOPRIVATE.s index 783d85b99..6daf8bf2e 100644 --- a/libc/sysv/consts/SIOCPROTOPRIVATE.s +++ b/libc/sysv/consts/SIOCPROTOPRIVATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCPROTOPRIVATE 0x89e0 0 0 0 0 +.syscon sio SIOCPROTOPRIVATE 0x89e0 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCRTMSG.s b/libc/sysv/consts/SIOCRTMSG.s index ed3e7b524..6d1938a9f 100644 --- a/libc/sysv/consts/SIOCRTMSG.s +++ b/libc/sysv/consts/SIOCRTMSG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCRTMSG 0x890d 0 0 0 0 +.syscon sio SIOCRTMSG 0x890d 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSARP.s b/libc/sysv/consts/SIOCSARP.s index 238141af9..c09c769c3 100644 --- a/libc/sysv/consts/SIOCSARP.s +++ b/libc/sysv/consts/SIOCSARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSARP 0x8955 0 0 0 0 +.syscon sio SIOCSARP 0x8955 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFADDR.s b/libc/sysv/consts/SIOCSIFADDR.s index ae2c90691..d162defd4 100644 --- a/libc/sysv/consts/SIOCSIFADDR.s +++ b/libc/sysv/consts/SIOCSIFADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFADDR 0x8916 0x8020690c 0x8020690c 0x8020690c 0 +.syscon sio SIOCSIFADDR 0x8916 0x8020690c 0x8020690c 0x8020690c 0x8020690c 0 diff --git a/libc/sysv/consts/SIOCSIFBR.s b/libc/sysv/consts/SIOCSIFBR.s index 4a12a8fda..434dca150 100644 --- a/libc/sysv/consts/SIOCSIFBR.s +++ b/libc/sysv/consts/SIOCSIFBR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFBR 0x8941 0 0 0 0 +.syscon sio SIOCSIFBR 0x8941 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFBRDADDR.s b/libc/sysv/consts/SIOCSIFBRDADDR.s index d679b1016..76e2f0366 100644 --- a/libc/sysv/consts/SIOCSIFBRDADDR.s +++ b/libc/sysv/consts/SIOCSIFBRDADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFBRDADDR 0x891a 0x80206913 0x80206913 0x80206913 0 +.syscon sio SIOCSIFBRDADDR 0x891a 0x80206913 0x80206913 0x80206913 0x80206913 0 diff --git a/libc/sysv/consts/SIOCSIFDSTADDR.s b/libc/sysv/consts/SIOCSIFDSTADDR.s index 7788e223b..e183eed23 100644 --- a/libc/sysv/consts/SIOCSIFDSTADDR.s +++ b/libc/sysv/consts/SIOCSIFDSTADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFDSTADDR 0x8918 0x8020690e 0x8020690e 0x8020690e 0 +.syscon sio SIOCSIFDSTADDR 0x8918 0x8020690e 0x8020690e 0x8020690e 0x8020690e 0 diff --git a/libc/sysv/consts/SIOCSIFENCAP.s b/libc/sysv/consts/SIOCSIFENCAP.s index 88c0f046c..d889994ff 100644 --- a/libc/sysv/consts/SIOCSIFENCAP.s +++ b/libc/sysv/consts/SIOCSIFENCAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFENCAP 0x8926 0 0 0 0 +.syscon sio SIOCSIFENCAP 0x8926 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFFLAGS.s b/libc/sysv/consts/SIOCSIFFLAGS.s index 41d9bc528..4c5440ee6 100644 --- a/libc/sysv/consts/SIOCSIFFLAGS.s +++ b/libc/sysv/consts/SIOCSIFFLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFFLAGS 0x8914 0x80206910 0x80206910 0x80206910 0 +.syscon sio SIOCSIFFLAGS 0x8914 0x80206910 0x80206910 0x80206910 0x80206910 0 diff --git a/libc/sysv/consts/SIOCSIFHWADDR.s b/libc/sysv/consts/SIOCSIFHWADDR.s index f1ad854cf..a10d77424 100644 --- a/libc/sysv/consts/SIOCSIFHWADDR.s +++ b/libc/sysv/consts/SIOCSIFHWADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFHWADDR 0x8924 0 0 0 0 +.syscon sio SIOCSIFHWADDR 0x8924 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFHWBROADCAST.s b/libc/sysv/consts/SIOCSIFHWBROADCAST.s index bad5efe50..bacbaa8a8 100644 --- a/libc/sysv/consts/SIOCSIFHWBROADCAST.s +++ b/libc/sysv/consts/SIOCSIFHWBROADCAST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFHWBROADCAST 0x8937 0 0 0 0 +.syscon sio SIOCSIFHWBROADCAST 0x8937 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFLINK.s b/libc/sysv/consts/SIOCSIFLINK.s index fedb8a38a..07f3d5275 100644 --- a/libc/sysv/consts/SIOCSIFLINK.s +++ b/libc/sysv/consts/SIOCSIFLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFLINK 0x8911 0 0 0 0 +.syscon sio SIOCSIFLINK 0x8911 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFMAP.s b/libc/sysv/consts/SIOCSIFMAP.s index e23fb663b..ad5764f83 100644 --- a/libc/sysv/consts/SIOCSIFMAP.s +++ b/libc/sysv/consts/SIOCSIFMAP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFMAP 0x8971 0 0 0 0 +.syscon sio SIOCSIFMAP 0x8971 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFMEM.s b/libc/sysv/consts/SIOCSIFMEM.s index afd8a95b5..547836cf8 100644 --- a/libc/sysv/consts/SIOCSIFMEM.s +++ b/libc/sysv/consts/SIOCSIFMEM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFMEM 0x8920 0 0 0 0 +.syscon sio SIOCSIFMEM 0x8920 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFMETRIC.s b/libc/sysv/consts/SIOCSIFMETRIC.s index db78ed651..368a62860 100644 --- a/libc/sysv/consts/SIOCSIFMETRIC.s +++ b/libc/sysv/consts/SIOCSIFMETRIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFMETRIC 0x891e 0x80206918 0x80206918 0x80206918 0 +.syscon sio SIOCSIFMETRIC 0x891e 0x80206918 0x80206918 0x80206918 0x80206918 0 diff --git a/libc/sysv/consts/SIOCSIFMTU.s b/libc/sysv/consts/SIOCSIFMTU.s index a18a2b881..b9a3529a0 100644 --- a/libc/sysv/consts/SIOCSIFMTU.s +++ b/libc/sysv/consts/SIOCSIFMTU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFMTU 0x8922 0x80206934 0x80206934 0x8020697f 0 +.syscon sio SIOCSIFMTU 0x8922 0x80206934 0x80206934 0x8020697f 0x8020697f 0 diff --git a/libc/sysv/consts/SIOCSIFNAME.s b/libc/sysv/consts/SIOCSIFNAME.s index eac538cd7..52e3f22a7 100644 --- a/libc/sysv/consts/SIOCSIFNAME.s +++ b/libc/sysv/consts/SIOCSIFNAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFNAME 0x8923 0 0x80206928 0 0 +.syscon sio SIOCSIFNAME 0x8923 0 0x80206928 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFNETMASK.s b/libc/sysv/consts/SIOCSIFNETMASK.s index 33ebc0c5d..1e6fe240b 100644 --- a/libc/sysv/consts/SIOCSIFNETMASK.s +++ b/libc/sysv/consts/SIOCSIFNETMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFNETMASK 0x891c 0x80206916 0x80206916 0x80206916 0 +.syscon sio SIOCSIFNETMASK 0x891c 0x80206916 0x80206916 0x80206916 0x80206916 0 diff --git a/libc/sysv/consts/SIOCSIFPFLAGS.s b/libc/sysv/consts/SIOCSIFPFLAGS.s index 845b43e2a..c5ba57fd2 100644 --- a/libc/sysv/consts/SIOCSIFPFLAGS.s +++ b/libc/sysv/consts/SIOCSIFPFLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFPFLAGS 0x8934 0 0 0 0 +.syscon sio SIOCSIFPFLAGS 0x8934 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFSLAVE.s b/libc/sysv/consts/SIOCSIFSLAVE.s index 0d7e24b02..189c5f020 100644 --- a/libc/sysv/consts/SIOCSIFSLAVE.s +++ b/libc/sysv/consts/SIOCSIFSLAVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFSLAVE 0x8930 0 0 0 0 +.syscon sio SIOCSIFSLAVE 0x8930 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSIFTXQLEN.s b/libc/sysv/consts/SIOCSIFTXQLEN.s index eeae72f79..08292ad35 100644 --- a/libc/sysv/consts/SIOCSIFTXQLEN.s +++ b/libc/sysv/consts/SIOCSIFTXQLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSIFTXQLEN 0x8943 0 0 0 0 +.syscon sio SIOCSIFTXQLEN 0x8943 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOCSPGRP.s b/libc/sysv/consts/SIOCSPGRP.s index 211bf4098..56ed14998 100644 --- a/libc/sysv/consts/SIOCSPGRP.s +++ b/libc/sysv/consts/SIOCSPGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSPGRP 0x8902 0x80047308 0x80047308 0x80047308 0 +.syscon sio SIOCSPGRP 0x8902 0x80047308 0x80047308 0x80047308 0x80047308 0 diff --git a/libc/sysv/consts/SIOCSRARP.s b/libc/sysv/consts/SIOCSRARP.s index 229bdbdb8..3e39cdb7e 100644 --- a/libc/sysv/consts/SIOCSRARP.s +++ b/libc/sysv/consts/SIOCSRARP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOCSRARP 0x8962 0 0 0 0 +.syscon sio SIOCSRARP 0x8962 0 0 0 0 0 diff --git a/libc/sysv/consts/SIOGIFINDEX.s b/libc/sysv/consts/SIOGIFINDEX.s index f9f40bc01..69bc7b9be 100644 --- a/libc/sysv/consts/SIOGIFINDEX.s +++ b/libc/sysv/consts/SIOGIFINDEX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sio SIOGIFINDEX 0x8933 0 0 0 0 +.syscon sio SIOGIFINDEX 0x8933 0 0 0 0 0 diff --git a/libc/sysv/consts/SI_ASYNCIO.s b/libc/sysv/consts/SI_ASYNCIO.s index 438bf1c79..86e5a6e0d 100644 --- a/libc/sysv/consts/SI_ASYNCIO.s +++ b/libc/sysv/consts/SI_ASYNCIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_ASYNCIO -4 0x010004 0x010004 0 0 +.syscon misc SI_ASYNCIO -4 0x010004 0x010004 0 0 0 diff --git a/libc/sysv/consts/SI_ASYNCNL.s b/libc/sysv/consts/SI_ASYNCNL.s index 3dc927f01..c7d853b06 100644 --- a/libc/sysv/consts/SI_ASYNCNL.s +++ b/libc/sysv/consts/SI_ASYNCNL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_ASYNCNL -60 0 0 0 0 +.syscon misc SI_ASYNCNL -60 0 0 0 0 0 diff --git a/libc/sysv/consts/SI_KERNEL.s b/libc/sysv/consts/SI_KERNEL.s index db25b0592..5e3ad66d4 100644 --- a/libc/sysv/consts/SI_KERNEL.s +++ b/libc/sysv/consts/SI_KERNEL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_KERNEL 0x80 0 0x010006 0 0 +.syscon misc SI_KERNEL 0x80 0 0x010006 0 0 0 diff --git a/libc/sysv/consts/SI_LOAD_SHIFT.s b/libc/sysv/consts/SI_LOAD_SHIFT.s index 3366521f5..087af5b07 100644 --- a/libc/sysv/consts/SI_LOAD_SHIFT.s +++ b/libc/sysv/consts/SI_LOAD_SHIFT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_LOAD_SHIFT 0x10 0 0 0 0 +.syscon misc SI_LOAD_SHIFT 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/SI_MESGQ.s b/libc/sysv/consts/SI_MESGQ.s index 021115ac5..df07db580 100644 --- a/libc/sysv/consts/SI_MESGQ.s +++ b/libc/sysv/consts/SI_MESGQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_MESGQ -3 0x010005 0x010005 0 0 +.syscon misc SI_MESGQ -3 0x010005 0x010005 0 0 0 diff --git a/libc/sysv/consts/SI_QUEUE.s b/libc/sysv/consts/SI_QUEUE.s index 23e73d2ac..497f0df2e 100644 --- a/libc/sysv/consts/SI_QUEUE.s +++ b/libc/sysv/consts/SI_QUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_QUEUE -1 0x010002 0x010002 -2 0 +.syscon misc SI_QUEUE -1 0x010002 0x010002 -2 -2 0 diff --git a/libc/sysv/consts/SI_SIGIO.s b/libc/sysv/consts/SI_SIGIO.s index 0d518e88b..e4b9aaed0 100644 --- a/libc/sysv/consts/SI_SIGIO.s +++ b/libc/sysv/consts/SI_SIGIO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_SIGIO -5 0 0 0 0 +.syscon misc SI_SIGIO -5 0 0 0 0 0 diff --git a/libc/sysv/consts/SI_TIMER.s b/libc/sysv/consts/SI_TIMER.s index 53371f174..d9f99fcb4 100644 --- a/libc/sysv/consts/SI_TIMER.s +++ b/libc/sysv/consts/SI_TIMER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_TIMER -2 0x010003 0x010003 -3 0 +.syscon misc SI_TIMER -2 0x010003 0x010003 -3 -3 0 diff --git a/libc/sysv/consts/SI_TKILL.s b/libc/sysv/consts/SI_TKILL.s index 3160046e5..5268e88ca 100644 --- a/libc/sysv/consts/SI_TKILL.s +++ b/libc/sysv/consts/SI_TKILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_TKILL -6 0 0 0 0 +.syscon misc SI_TKILL -6 0 0 0 0 0 diff --git a/libc/sysv/consts/SI_USER.s b/libc/sysv/consts/SI_USER.s index 8159c1512..76a619d38 100644 --- a/libc/sysv/consts/SI_USER.s +++ b/libc/sysv/consts/SI_USER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SI_USER 0 0x010001 0x010001 0 0 +.syscon misc SI_USER 0 0x010001 0x010001 0 0 0 diff --git a/libc/sysv/consts/SLIPDISC.s b/libc/sysv/consts/SLIPDISC.s index 275be5d8e..13a671f10 100644 --- a/libc/sysv/consts/SLIPDISC.s +++ b/libc/sysv/consts/SLIPDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios SLIPDISC 0 0x4 0x4 0x4 -1 +.syscon termios SLIPDISC 0 0x4 0x4 0x4 0x4 -1 diff --git a/libc/sysv/consts/SOCK_CLOEXEC.s b/libc/sysv/consts/SOCK_CLOEXEC.s index 819449f19..5cbd92a3f 100644 --- a/libc/sysv/consts/SOCK_CLOEXEC.s +++ b/libc/sysv/consts/SOCK_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_CLOEXEC 0x080000 0x080000 0x10000000 0x8000 0x00080000 +.syscon sock SOCK_CLOEXEC 0x080000 0x080000 0x10000000 0x8000 0x10000000 0x00080000 diff --git a/libc/sysv/consts/SOCK_DCCP.s b/libc/sysv/consts/SOCK_DCCP.s index 8793b3aec..833003e98 100644 --- a/libc/sysv/consts/SOCK_DCCP.s +++ b/libc/sysv/consts/SOCK_DCCP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_DCCP 6 0 0 0 0 +.syscon sock SOCK_DCCP 6 0 0 0 0 0 diff --git a/libc/sysv/consts/SOCK_DGRAM.s b/libc/sysv/consts/SOCK_DGRAM.s index 53cefd096..9f61a02a6 100644 --- a/libc/sysv/consts/SOCK_DGRAM.s +++ b/libc/sysv/consts/SOCK_DGRAM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_DGRAM 2 2 2 2 2 +.syscon sock SOCK_DGRAM 2 2 2 2 2 2 diff --git a/libc/sysv/consts/SOCK_NONBLOCK.s b/libc/sysv/consts/SOCK_NONBLOCK.s index 0ca0a8fef..b50ac5d12 100644 --- a/libc/sysv/consts/SOCK_NONBLOCK.s +++ b/libc/sysv/consts/SOCK_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_NONBLOCK 0x0800 0x0800 0x20000000 0x4000 0x00000800 +.syscon sock SOCK_NONBLOCK 0x0800 0x0800 0x20000000 0x4000 0x20000000 0x00000800 diff --git a/libc/sysv/consts/SOCK_PACKET.s b/libc/sysv/consts/SOCK_PACKET.s index 092a43fb4..0e4bc2f84 100644 --- a/libc/sysv/consts/SOCK_PACKET.s +++ b/libc/sysv/consts/SOCK_PACKET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_PACKET 10 0 0 0 0 +.syscon sock SOCK_PACKET 10 0 0 0 0 0 diff --git a/libc/sysv/consts/SOCK_RAW.s b/libc/sysv/consts/SOCK_RAW.s index e2cb216d0..cdb6f7e7b 100644 --- a/libc/sysv/consts/SOCK_RAW.s +++ b/libc/sysv/consts/SOCK_RAW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_RAW 3 3 3 3 3 +.syscon sock SOCK_RAW 3 3 3 3 3 3 diff --git a/libc/sysv/consts/SOCK_RDM.s b/libc/sysv/consts/SOCK_RDM.s index d70ee75f4..32c6bae82 100644 --- a/libc/sysv/consts/SOCK_RDM.s +++ b/libc/sysv/consts/SOCK_RDM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_RDM 4 4 4 4 4 +.syscon sock SOCK_RDM 4 4 4 4 4 4 diff --git a/libc/sysv/consts/SOCK_SEQPACKET.s b/libc/sysv/consts/SOCK_SEQPACKET.s index 1d8314c30..b7fc26323 100644 --- a/libc/sysv/consts/SOCK_SEQPACKET.s +++ b/libc/sysv/consts/SOCK_SEQPACKET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_SEQPACKET 5 5 5 5 5 +.syscon sock SOCK_SEQPACKET 5 5 5 5 5 5 diff --git a/libc/sysv/consts/SOCK_STREAM.s b/libc/sysv/consts/SOCK_STREAM.s index 541a4dfa9..33c1e881e 100644 --- a/libc/sysv/consts/SOCK_STREAM.s +++ b/libc/sysv/consts/SOCK_STREAM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sock SOCK_STREAM 1 1 1 1 1 +.syscon sock SOCK_STREAM 1 1 1 1 1 1 diff --git a/libc/sysv/consts/SOL_AAL.s b/libc/sysv/consts/SOL_AAL.s index 6064525e3..4492f92e9 100644 --- a/libc/sysv/consts/SOL_AAL.s +++ b/libc/sysv/consts/SOL_AAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_AAL 265 0 0 0 0 +.syscon sol SOL_AAL 265 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_ALG.s b/libc/sysv/consts/SOL_ALG.s index 1abc6d5a7..63533f5b4 100644 --- a/libc/sysv/consts/SOL_ALG.s +++ b/libc/sysv/consts/SOL_ALG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_ALG 279 0 0 0 0 +.syscon sol SOL_ALG 279 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_ATM.s b/libc/sysv/consts/SOL_ATM.s index a314d7ba3..1c49042c4 100644 --- a/libc/sysv/consts/SOL_ATM.s +++ b/libc/sysv/consts/SOL_ATM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_ATM 264 0 0 0 0 +.syscon sol SOL_ATM 264 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_BLUETOOTH.s b/libc/sysv/consts/SOL_BLUETOOTH.s index 58e9e802f..adf4c76f3 100644 --- a/libc/sysv/consts/SOL_BLUETOOTH.s +++ b/libc/sysv/consts/SOL_BLUETOOTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_BLUETOOTH 274 0 0 0 0 +.syscon sol SOL_BLUETOOTH 274 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_CAIF.s b/libc/sysv/consts/SOL_CAIF.s index 81921176e..880f65edb 100644 --- a/libc/sysv/consts/SOL_CAIF.s +++ b/libc/sysv/consts/SOL_CAIF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_CAIF 278 0 0 0 0 +.syscon sol SOL_CAIF 278 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_DCCP.s b/libc/sysv/consts/SOL_DCCP.s index 73eec4719..c9f01f19e 100644 --- a/libc/sysv/consts/SOL_DCCP.s +++ b/libc/sysv/consts/SOL_DCCP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_DCCP 269 0 0 0 0 +.syscon sol SOL_DCCP 269 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_DECNET.s b/libc/sysv/consts/SOL_DECNET.s index 4fc51acd5..bb7b100ca 100644 --- a/libc/sysv/consts/SOL_DECNET.s +++ b/libc/sysv/consts/SOL_DECNET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_DECNET 261 0 0 0 0 +.syscon sol SOL_DECNET 261 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_ICMPV6.s b/libc/sysv/consts/SOL_ICMPV6.s index ca8b99825..2df807a8f 100644 --- a/libc/sysv/consts/SOL_ICMPV6.s +++ b/libc/sysv/consts/SOL_ICMPV6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_ICMPV6 58 58 58 58 0 +.syscon sol SOL_ICMPV6 58 58 58 58 58 0 diff --git a/libc/sysv/consts/SOL_IP.s b/libc/sysv/consts/SOL_IP.s index 258861723..eeccac1ad 100644 --- a/libc/sysv/consts/SOL_IP.s +++ b/libc/sysv/consts/SOL_IP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_IP 0 0 0 0 0 +.syscon sol SOL_IP 0 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_IPV6.s b/libc/sysv/consts/SOL_IPV6.s index c9419ceb4..c9d1d84ba 100644 --- a/libc/sysv/consts/SOL_IPV6.s +++ b/libc/sysv/consts/SOL_IPV6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_IPV6 41 41 41 41 41 +.syscon sol SOL_IPV6 41 41 41 41 41 41 diff --git a/libc/sysv/consts/SOL_IRDA.s b/libc/sysv/consts/SOL_IRDA.s index 1a3a1ce7a..a46ed0bc0 100644 --- a/libc/sysv/consts/SOL_IRDA.s +++ b/libc/sysv/consts/SOL_IRDA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_IRDA 266 0 0 0 0 +.syscon sol SOL_IRDA 266 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_IUCV.s b/libc/sysv/consts/SOL_IUCV.s index 47d21502d..8a9282020 100644 --- a/libc/sysv/consts/SOL_IUCV.s +++ b/libc/sysv/consts/SOL_IUCV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_IUCV 277 0 0 0 0 +.syscon sol SOL_IUCV 277 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_KCM.s b/libc/sysv/consts/SOL_KCM.s index 3d15625cc..547e7839e 100644 --- a/libc/sysv/consts/SOL_KCM.s +++ b/libc/sysv/consts/SOL_KCM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_KCM 281 0 0 0 0 +.syscon sol SOL_KCM 281 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_LLC.s b/libc/sysv/consts/SOL_LLC.s index bcf9a459e..899db09d4 100644 --- a/libc/sysv/consts/SOL_LLC.s +++ b/libc/sysv/consts/SOL_LLC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_LLC 268 0 0 0 0 +.syscon sol SOL_LLC 268 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_NETBEUI.s b/libc/sysv/consts/SOL_NETBEUI.s index 6ceab1e9c..98e198bfa 100644 --- a/libc/sysv/consts/SOL_NETBEUI.s +++ b/libc/sysv/consts/SOL_NETBEUI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_NETBEUI 267 0 0 0 0 +.syscon sol SOL_NETBEUI 267 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_NETLINK.s b/libc/sysv/consts/SOL_NETLINK.s index 306930be6..51086ee30 100644 --- a/libc/sysv/consts/SOL_NETLINK.s +++ b/libc/sysv/consts/SOL_NETLINK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_NETLINK 270 0 0 0 0 +.syscon sol SOL_NETLINK 270 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_NFC.s b/libc/sysv/consts/SOL_NFC.s index 5a9bbfedb..1c39ab0ce 100644 --- a/libc/sysv/consts/SOL_NFC.s +++ b/libc/sysv/consts/SOL_NFC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_NFC 280 0 0 0 0 +.syscon sol SOL_NFC 280 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_PACKET.s b/libc/sysv/consts/SOL_PACKET.s index 555673087..9fa1563ef 100644 --- a/libc/sysv/consts/SOL_PACKET.s +++ b/libc/sysv/consts/SOL_PACKET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_PACKET 263 0 0 0 0 +.syscon sol SOL_PACKET 263 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_PNPIPE.s b/libc/sysv/consts/SOL_PNPIPE.s index c3a8e7dc9..342192995 100644 --- a/libc/sysv/consts/SOL_PNPIPE.s +++ b/libc/sysv/consts/SOL_PNPIPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_PNPIPE 275 0 0 0 0 +.syscon sol SOL_PNPIPE 275 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_PPPOL2TP.s b/libc/sysv/consts/SOL_PPPOL2TP.s index 04b984b8c..bb4985408 100644 --- a/libc/sysv/consts/SOL_PPPOL2TP.s +++ b/libc/sysv/consts/SOL_PPPOL2TP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_PPPOL2TP 273 0 0 0 0 +.syscon sol SOL_PPPOL2TP 273 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_RAW.s b/libc/sysv/consts/SOL_RAW.s index ec01f99a4..a7be2f44c 100644 --- a/libc/sysv/consts/SOL_RAW.s +++ b/libc/sysv/consts/SOL_RAW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_RAW 255 0 0 0 0 +.syscon sol SOL_RAW 255 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_RDS.s b/libc/sysv/consts/SOL_RDS.s index 509472788..0fef75850 100644 --- a/libc/sysv/consts/SOL_RDS.s +++ b/libc/sysv/consts/SOL_RDS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_RDS 276 0 0 0 0 +.syscon sol SOL_RDS 276 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_RXRPC.s b/libc/sysv/consts/SOL_RXRPC.s index d068f0c02..662fa9102 100644 --- a/libc/sysv/consts/SOL_RXRPC.s +++ b/libc/sysv/consts/SOL_RXRPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_RXRPC 272 0 0 0 0 +.syscon sol SOL_RXRPC 272 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_SOCKET.s b/libc/sysv/consts/SOL_SOCKET.s index 854a42af0..5f6de1fb6 100644 --- a/libc/sysv/consts/SOL_SOCKET.s +++ b/libc/sysv/consts/SOL_SOCKET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_SOCKET 1 0xffff 0xffff 0xffff 0xffff +.syscon sol SOL_SOCKET 1 0xffff 0xffff 0xffff 0xffff 0xffff diff --git a/libc/sysv/consts/SOL_TCP.s b/libc/sysv/consts/SOL_TCP.s index db5f02d2b..858209140 100644 --- a/libc/sysv/consts/SOL_TCP.s +++ b/libc/sysv/consts/SOL_TCP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_TCP 6 6 6 6 6 +.syscon sol SOL_TCP 6 6 6 6 6 6 diff --git a/libc/sysv/consts/SOL_TIPC.s b/libc/sysv/consts/SOL_TIPC.s index a7428ac22..350bca488 100644 --- a/libc/sysv/consts/SOL_TIPC.s +++ b/libc/sysv/consts/SOL_TIPC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_TIPC 271 0 0 0 0 +.syscon sol SOL_TIPC 271 0 0 0 0 0 diff --git a/libc/sysv/consts/SOL_UDP.s b/libc/sysv/consts/SOL_UDP.s index c2d5350d8..aa1372c98 100644 --- a/libc/sysv/consts/SOL_UDP.s +++ b/libc/sysv/consts/SOL_UDP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_UDP 17 17 17 17 17 +.syscon sol SOL_UDP 17 17 17 17 17 17 diff --git a/libc/sysv/consts/SOL_X25.s b/libc/sysv/consts/SOL_X25.s index f2930acd4..1a239b107 100644 --- a/libc/sysv/consts/SOL_X25.s +++ b/libc/sysv/consts/SOL_X25.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon sol SOL_X25 262 0 0 0 0 +.syscon sol SOL_X25 262 0 0 0 0 0 diff --git a/libc/sysv/consts/SOMAXCONN.s b/libc/sysv/consts/SOMAXCONN.s index 73f639454..b1112d844 100644 --- a/libc/sysv/consts/SOMAXCONN.s +++ b/libc/sysv/consts/SOMAXCONN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SOMAXCONN 0x80 0x80 0x80 0x80 0x7fffffff +.syscon misc SOMAXCONN 0x80 0x80 0x80 0x80 0x80 0x7fffffff diff --git a/libc/sysv/consts/SO_ACCEPTCONN.s b/libc/sysv/consts/SO_ACCEPTCONN.s index b377ebeae..b6202b162 100644 --- a/libc/sysv/consts/SO_ACCEPTCONN.s +++ b/libc/sysv/consts/SO_ACCEPTCONN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_ACCEPTCONN 30 2 2 2 2 +.syscon so SO_ACCEPTCONN 30 2 2 2 2 2 diff --git a/libc/sysv/consts/SO_ATTACH_BPF.s b/libc/sysv/consts/SO_ATTACH_BPF.s index 323cb5800..2af6534b0 100644 --- a/libc/sysv/consts/SO_ATTACH_BPF.s +++ b/libc/sysv/consts/SO_ATTACH_BPF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_ATTACH_BPF 50 0 0 0 0 +.syscon so SO_ATTACH_BPF 50 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_ATTACH_FILTER.s b/libc/sysv/consts/SO_ATTACH_FILTER.s index e7d9f68dc..93a50d18d 100644 --- a/libc/sysv/consts/SO_ATTACH_FILTER.s +++ b/libc/sysv/consts/SO_ATTACH_FILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_ATTACH_FILTER 26 0 0 0 0 +.syscon so SO_ATTACH_FILTER 26 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_ATTACH_REUSEPORT_CBPF.s b/libc/sysv/consts/SO_ATTACH_REUSEPORT_CBPF.s index 8c74dba6b..57a75c45e 100644 --- a/libc/sysv/consts/SO_ATTACH_REUSEPORT_CBPF.s +++ b/libc/sysv/consts/SO_ATTACH_REUSEPORT_CBPF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_ATTACH_REUSEPORT_CBPF 51 0 0 0 0 +.syscon so SO_ATTACH_REUSEPORT_CBPF 51 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_ATTACH_REUSEPORT_EBPF.s b/libc/sysv/consts/SO_ATTACH_REUSEPORT_EBPF.s index c6622194e..1d003ddce 100644 --- a/libc/sysv/consts/SO_ATTACH_REUSEPORT_EBPF.s +++ b/libc/sysv/consts/SO_ATTACH_REUSEPORT_EBPF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_ATTACH_REUSEPORT_EBPF 52 0 0 0 0 +.syscon so SO_ATTACH_REUSEPORT_EBPF 52 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_BINDTODEVICE.s b/libc/sysv/consts/SO_BINDTODEVICE.s index b6c824ffb..afe267092 100644 --- a/libc/sysv/consts/SO_BINDTODEVICE.s +++ b/libc/sysv/consts/SO_BINDTODEVICE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_BINDTODEVICE 25 0 0 0 0 +.syscon so SO_BINDTODEVICE 25 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_BPF_EXTENSIONS.s b/libc/sysv/consts/SO_BPF_EXTENSIONS.s index 55d46986e..7dde2fed0 100644 --- a/libc/sysv/consts/SO_BPF_EXTENSIONS.s +++ b/libc/sysv/consts/SO_BPF_EXTENSIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_BPF_EXTENSIONS 48 0 0 0 0 +.syscon so SO_BPF_EXTENSIONS 48 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_BROADCAST.s b/libc/sysv/consts/SO_BROADCAST.s index e7a5cef44..d58d3c774 100644 --- a/libc/sysv/consts/SO_BROADCAST.s +++ b/libc/sysv/consts/SO_BROADCAST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_BROADCAST 6 0x20 0x20 0x20 0x20 +.syscon so SO_BROADCAST 6 0x20 0x20 0x20 0x20 0x20 diff --git a/libc/sysv/consts/SO_BSDCOMPAT.s b/libc/sysv/consts/SO_BSDCOMPAT.s index 1ca56c25c..759a1d50a 100644 --- a/libc/sysv/consts/SO_BSDCOMPAT.s +++ b/libc/sysv/consts/SO_BSDCOMPAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_BSDCOMPAT 14 0 0 0 0 +.syscon so SO_BSDCOMPAT 14 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_BUSY_POLL.s b/libc/sysv/consts/SO_BUSY_POLL.s index d9ac8d1f7..7070e6a0f 100644 --- a/libc/sysv/consts/SO_BUSY_POLL.s +++ b/libc/sysv/consts/SO_BUSY_POLL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_BUSY_POLL 46 0 0 0 0 +.syscon so SO_BUSY_POLL 46 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_CNX_ADVICE.s b/libc/sysv/consts/SO_CNX_ADVICE.s index ef8742b52..48f326206 100644 --- a/libc/sysv/consts/SO_CNX_ADVICE.s +++ b/libc/sysv/consts/SO_CNX_ADVICE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_CNX_ADVICE 53 0 0 0 0 +.syscon so SO_CNX_ADVICE 53 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_DEBUG.s b/libc/sysv/consts/SO_DEBUG.s index 7ef09d66a..e75b690c5 100644 --- a/libc/sysv/consts/SO_DEBUG.s +++ b/libc/sysv/consts/SO_DEBUG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_DEBUG 1 1 1 1 1 +.syscon so SO_DEBUG 1 1 1 1 1 1 diff --git a/libc/sysv/consts/SO_DETACH_BPF.s b/libc/sysv/consts/SO_DETACH_BPF.s index ed1a4febd..ddb826445 100644 --- a/libc/sysv/consts/SO_DETACH_BPF.s +++ b/libc/sysv/consts/SO_DETACH_BPF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_DETACH_BPF 27 0 0 0 0 +.syscon so SO_DETACH_BPF 27 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_DETACH_FILTER.s b/libc/sysv/consts/SO_DETACH_FILTER.s index e90bd1ce5..5c8d9965c 100644 --- a/libc/sysv/consts/SO_DETACH_FILTER.s +++ b/libc/sysv/consts/SO_DETACH_FILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_DETACH_FILTER 27 0 0 0 0 +.syscon so SO_DETACH_FILTER 27 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_DOMAIN.s b/libc/sysv/consts/SO_DOMAIN.s index 44409a84b..7b243102a 100644 --- a/libc/sysv/consts/SO_DOMAIN.s +++ b/libc/sysv/consts/SO_DOMAIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_DOMAIN 39 0 0x1019 0 0 +.syscon so SO_DOMAIN 39 0 0x1019 0 0 0 diff --git a/libc/sysv/consts/SO_DONTROUTE.s b/libc/sysv/consts/SO_DONTROUTE.s index 88dd2266a..8f0dd36d2 100644 --- a/libc/sysv/consts/SO_DONTROUTE.s +++ b/libc/sysv/consts/SO_DONTROUTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_DONTROUTE 5 0x10 0x10 0x10 0x10 +.syscon so SO_DONTROUTE 5 0x10 0x10 0x10 0x10 0x10 diff --git a/libc/sysv/consts/SO_ERROR.s b/libc/sysv/consts/SO_ERROR.s index a525771c3..9ad1b721c 100644 --- a/libc/sysv/consts/SO_ERROR.s +++ b/libc/sysv/consts/SO_ERROR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_ERROR 4 0x1007 0x1007 0x1007 0x1007 +.syscon so SO_ERROR 4 0x1007 0x1007 0x1007 0x1007 0x1007 diff --git a/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.s b/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.s index 7c4f540ee..22271266c 100644 --- a/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.s +++ b/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_EXCLUSIVEADDRUSE -1 -1 -1 -1 0xfffffffb +.syscon so SO_EXCLUSIVEADDRUSE -1 -1 -1 -1 -1 0xfffffffb diff --git a/libc/sysv/consts/SO_GET_FILTER.s b/libc/sysv/consts/SO_GET_FILTER.s index 8a1586b5e..358829fd0 100644 --- a/libc/sysv/consts/SO_GET_FILTER.s +++ b/libc/sysv/consts/SO_GET_FILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_GET_FILTER 26 0 0 0 0 +.syscon so SO_GET_FILTER 26 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_INCOMING_CPU.s b/libc/sysv/consts/SO_INCOMING_CPU.s index 9d3565de1..857f1321e 100644 --- a/libc/sysv/consts/SO_INCOMING_CPU.s +++ b/libc/sysv/consts/SO_INCOMING_CPU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_INCOMING_CPU 49 0 0 0 0 +.syscon so SO_INCOMING_CPU 49 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_KEEPALIVE.s b/libc/sysv/consts/SO_KEEPALIVE.s index 58dafcaeb..aecded854 100644 --- a/libc/sysv/consts/SO_KEEPALIVE.s +++ b/libc/sysv/consts/SO_KEEPALIVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_KEEPALIVE 9 8 8 8 8 +.syscon so SO_KEEPALIVE 9 8 8 8 8 8 diff --git a/libc/sysv/consts/SO_LINGER.s b/libc/sysv/consts/SO_LINGER.s index 8fa70192f..037bc9582 100644 --- a/libc/sysv/consts/SO_LINGER.s +++ b/libc/sysv/consts/SO_LINGER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_LINGER 13 0x80 0x80 0x80 0x80 +.syscon so SO_LINGER 13 0x80 0x80 0x80 0x80 0x80 diff --git a/libc/sysv/consts/SO_LOCK_FILTER.s b/libc/sysv/consts/SO_LOCK_FILTER.s index 0594486b6..b3b565a8b 100644 --- a/libc/sysv/consts/SO_LOCK_FILTER.s +++ b/libc/sysv/consts/SO_LOCK_FILTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_LOCK_FILTER 44 0 0 0 0 +.syscon so SO_LOCK_FILTER 44 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_MARK.s b/libc/sysv/consts/SO_MARK.s index fdc8143b0..10ab69031 100644 --- a/libc/sysv/consts/SO_MARK.s +++ b/libc/sysv/consts/SO_MARK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_MARK 36 0 0 0 0 +.syscon so SO_MARK 36 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_MAX_PACING_RATE.s b/libc/sysv/consts/SO_MAX_PACING_RATE.s index ecc16172f..c0d2899dc 100644 --- a/libc/sysv/consts/SO_MAX_PACING_RATE.s +++ b/libc/sysv/consts/SO_MAX_PACING_RATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_MAX_PACING_RATE 47 0 0x1018 0 0 +.syscon so SO_MAX_PACING_RATE 47 0 0x1018 0 0 0 diff --git a/libc/sysv/consts/SO_NOFCS.s b/libc/sysv/consts/SO_NOFCS.s index 061a01036..e4f6a1ca7 100644 --- a/libc/sysv/consts/SO_NOFCS.s +++ b/libc/sysv/consts/SO_NOFCS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_NOFCS 43 0 0 0 0 +.syscon so SO_NOFCS 43 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_NO_CHECK.s b/libc/sysv/consts/SO_NO_CHECK.s index 96ec45a13..04eb80f34 100644 --- a/libc/sysv/consts/SO_NO_CHECK.s +++ b/libc/sysv/consts/SO_NO_CHECK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_NO_CHECK 11 0 0 0 0 +.syscon so SO_NO_CHECK 11 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_OOBINLINE.s b/libc/sysv/consts/SO_OOBINLINE.s index e4d030937..8b4151fb3 100644 --- a/libc/sysv/consts/SO_OOBINLINE.s +++ b/libc/sysv/consts/SO_OOBINLINE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_OOBINLINE 10 0x0100 0x0100 0x0100 0x0100 +.syscon so SO_OOBINLINE 10 0x0100 0x0100 0x0100 0x0100 0x0100 diff --git a/libc/sysv/consts/SO_PASSCRED.s b/libc/sysv/consts/SO_PASSCRED.s index a4aaf66f1..5ce90a4cd 100644 --- a/libc/sysv/consts/SO_PASSCRED.s +++ b/libc/sysv/consts/SO_PASSCRED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PASSCRED 0x10 0 0 0 0 +.syscon so SO_PASSCRED 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_PASSSEC.s b/libc/sysv/consts/SO_PASSSEC.s index e17803783..a780c40f2 100644 --- a/libc/sysv/consts/SO_PASSSEC.s +++ b/libc/sysv/consts/SO_PASSSEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PASSSEC 34 0 0 0 0 +.syscon so SO_PASSSEC 34 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_PEEK_OFF.s b/libc/sysv/consts/SO_PEEK_OFF.s index 1912a6b69..7f4f8fa87 100644 --- a/libc/sysv/consts/SO_PEEK_OFF.s +++ b/libc/sysv/consts/SO_PEEK_OFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PEEK_OFF 42 0 0 0 0 +.syscon so SO_PEEK_OFF 42 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_PEERCRED.s b/libc/sysv/consts/SO_PEERCRED.s index b4bbc831d..259681272 100644 --- a/libc/sysv/consts/SO_PEERCRED.s +++ b/libc/sysv/consts/SO_PEERCRED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PEERCRED 17 0 0 0x1022 0 +.syscon so SO_PEERCRED 17 0 0 0x1022 0x1022 0 diff --git a/libc/sysv/consts/SO_PEERNAME.s b/libc/sysv/consts/SO_PEERNAME.s index 8e163d718..4298b638e 100644 --- a/libc/sysv/consts/SO_PEERNAME.s +++ b/libc/sysv/consts/SO_PEERNAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PEERNAME 28 0 0 0 0 +.syscon so SO_PEERNAME 28 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_PEERSEC.s b/libc/sysv/consts/SO_PEERSEC.s index ff5eccd40..dac042e14 100644 --- a/libc/sysv/consts/SO_PEERSEC.s +++ b/libc/sysv/consts/SO_PEERSEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PEERSEC 31 0 0 0 0 +.syscon so SO_PEERSEC 31 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_PRIORITY.s b/libc/sysv/consts/SO_PRIORITY.s index 6550adfb7..9d640160b 100644 --- a/libc/sysv/consts/SO_PRIORITY.s +++ b/libc/sysv/consts/SO_PRIORITY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PRIORITY 12 0 0 0 0 +.syscon so SO_PRIORITY 12 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_PROTOCOL.s b/libc/sysv/consts/SO_PROTOCOL.s index f067605c5..9f4b943c5 100644 --- a/libc/sysv/consts/SO_PROTOCOL.s +++ b/libc/sysv/consts/SO_PROTOCOL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_PROTOCOL 38 0 0x1016 0 0 +.syscon so SO_PROTOCOL 38 0 0x1016 0 0 0 diff --git a/libc/sysv/consts/SO_RCVBUF.s b/libc/sysv/consts/SO_RCVBUF.s index 367c33310..7578233fa 100644 --- a/libc/sysv/consts/SO_RCVBUF.s +++ b/libc/sysv/consts/SO_RCVBUF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_RCVBUF 8 0x1002 0x1002 0x1002 0x1002 +.syscon so SO_RCVBUF 8 0x1002 0x1002 0x1002 0x1002 0x1002 diff --git a/libc/sysv/consts/SO_RCVBUFFORCE.s b/libc/sysv/consts/SO_RCVBUFFORCE.s index 665fb0f13..176f0b960 100644 --- a/libc/sysv/consts/SO_RCVBUFFORCE.s +++ b/libc/sysv/consts/SO_RCVBUFFORCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_RCVBUFFORCE 33 0 0 0 0 +.syscon so SO_RCVBUFFORCE 33 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_RCVLOWAT.s b/libc/sysv/consts/SO_RCVLOWAT.s index 4b7105d4d..5673562be 100644 --- a/libc/sysv/consts/SO_RCVLOWAT.s +++ b/libc/sysv/consts/SO_RCVLOWAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_RCVLOWAT 18 0x1004 0x1004 0x1004 0x1004 +.syscon so SO_RCVLOWAT 18 0x1004 0x1004 0x1004 0x1004 0x1004 diff --git a/libc/sysv/consts/SO_RCVTIMEO.s b/libc/sysv/consts/SO_RCVTIMEO.s index 317777f2a..032b86890 100644 --- a/libc/sysv/consts/SO_RCVTIMEO.s +++ b/libc/sysv/consts/SO_RCVTIMEO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_RCVTIMEO 20 0x1006 0x1006 0x1006 0x1006 +.syscon so SO_RCVTIMEO 20 0x1006 0x1006 0x1006 0x100c 0x1006 diff --git a/libc/sysv/consts/SO_REUSEADDR.s b/libc/sysv/consts/SO_REUSEADDR.s index 503f3b27f..0698570bc 100644 --- a/libc/sysv/consts/SO_REUSEADDR.s +++ b/libc/sysv/consts/SO_REUSEADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_REUSEADDR 2 4 4 4 -1 +.syscon so SO_REUSEADDR 2 4 4 4 4 -1 diff --git a/libc/sysv/consts/SO_REUSEPORT.s b/libc/sysv/consts/SO_REUSEPORT.s index bc3edc8c3..36a2a7892 100644 --- a/libc/sysv/consts/SO_REUSEPORT.s +++ b/libc/sysv/consts/SO_REUSEPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_REUSEPORT 15 0x0200 0x0200 0x0200 4 +.syscon so SO_REUSEPORT 15 0x0200 0x0200 0x0200 0x0200 4 diff --git a/libc/sysv/consts/SO_RXQ_OVFL.s b/libc/sysv/consts/SO_RXQ_OVFL.s index d9ff0ca7b..9e5ad4677 100644 --- a/libc/sysv/consts/SO_RXQ_OVFL.s +++ b/libc/sysv/consts/SO_RXQ_OVFL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_RXQ_OVFL 40 0 0 0 0 +.syscon so SO_RXQ_OVFL 40 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_SECURITY_AUTHENTICATION.s b/libc/sysv/consts/SO_SECURITY_AUTHENTICATION.s index eda21f2b2..36c17da14 100644 --- a/libc/sysv/consts/SO_SECURITY_AUTHENTICATION.s +++ b/libc/sysv/consts/SO_SECURITY_AUTHENTICATION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SECURITY_AUTHENTICATION 22 0 0 0 0 +.syscon so SO_SECURITY_AUTHENTICATION 22 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_SECURITY_ENCRYPTION_NETWORK.s b/libc/sysv/consts/SO_SECURITY_ENCRYPTION_NETWORK.s index e2107e2cc..b3c09a28b 100644 --- a/libc/sysv/consts/SO_SECURITY_ENCRYPTION_NETWORK.s +++ b/libc/sysv/consts/SO_SECURITY_ENCRYPTION_NETWORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SECURITY_ENCRYPTION_NETWORK 24 0 0 0 0 +.syscon so SO_SECURITY_ENCRYPTION_NETWORK 24 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_SECURITY_ENCRYPTION_TRANSPORT.s b/libc/sysv/consts/SO_SECURITY_ENCRYPTION_TRANSPORT.s index ce16be293..cca410024 100644 --- a/libc/sysv/consts/SO_SECURITY_ENCRYPTION_TRANSPORT.s +++ b/libc/sysv/consts/SO_SECURITY_ENCRYPTION_TRANSPORT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SECURITY_ENCRYPTION_TRANSPORT 23 0 0 0 0 +.syscon so SO_SECURITY_ENCRYPTION_TRANSPORT 23 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_SELECT_ERR_QUEUE.s b/libc/sysv/consts/SO_SELECT_ERR_QUEUE.s index 13fea5ccc..1c7b17dc8 100644 --- a/libc/sysv/consts/SO_SELECT_ERR_QUEUE.s +++ b/libc/sysv/consts/SO_SELECT_ERR_QUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SELECT_ERR_QUEUE 45 0 0 0 0 +.syscon so SO_SELECT_ERR_QUEUE 45 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_SNDBUF.s b/libc/sysv/consts/SO_SNDBUF.s index d9ceafa15..c5692bede 100644 --- a/libc/sysv/consts/SO_SNDBUF.s +++ b/libc/sysv/consts/SO_SNDBUF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SNDBUF 7 0x1001 0x1001 0x1001 0x1001 +.syscon so SO_SNDBUF 7 0x1001 0x1001 0x1001 0x1001 0x1001 diff --git a/libc/sysv/consts/SO_SNDBUFFORCE.s b/libc/sysv/consts/SO_SNDBUFFORCE.s index 90e65b1a7..ffaa33cd2 100644 --- a/libc/sysv/consts/SO_SNDBUFFORCE.s +++ b/libc/sysv/consts/SO_SNDBUFFORCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SNDBUFFORCE 0x20 0 0 0 0 +.syscon so SO_SNDBUFFORCE 0x20 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_SNDLOWAT.s b/libc/sysv/consts/SO_SNDLOWAT.s index 708a693e4..edf36b5c8 100644 --- a/libc/sysv/consts/SO_SNDLOWAT.s +++ b/libc/sysv/consts/SO_SNDLOWAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SNDLOWAT 19 0x1003 0x1003 0x1003 0x1003 +.syscon so SO_SNDLOWAT 19 0x1003 0x1003 0x1003 0x1003 0x1003 diff --git a/libc/sysv/consts/SO_SNDTIMEO.s b/libc/sysv/consts/SO_SNDTIMEO.s index f528c5ee4..2d8a528f9 100644 --- a/libc/sysv/consts/SO_SNDTIMEO.s +++ b/libc/sysv/consts/SO_SNDTIMEO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_SNDTIMEO 21 0x1005 0x1005 0x1005 0x1005 +.syscon so SO_SNDTIMEO 21 0x1005 0x1005 0x1005 0x100b 0x1005 diff --git a/libc/sysv/consts/SO_TIMESTAMP.s b/libc/sysv/consts/SO_TIMESTAMP.s index 0b130c1b8..3019c5348 100644 --- a/libc/sysv/consts/SO_TIMESTAMP.s +++ b/libc/sysv/consts/SO_TIMESTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_TIMESTAMP 29 0x0400 0x0400 0x0800 0 +.syscon so SO_TIMESTAMP 29 0x0400 0x0400 0x0800 0x2000 0 diff --git a/libc/sysv/consts/SO_TIMESTAMPING.s b/libc/sysv/consts/SO_TIMESTAMPING.s index 039a90785..c601d645c 100644 --- a/libc/sysv/consts/SO_TIMESTAMPING.s +++ b/libc/sysv/consts/SO_TIMESTAMPING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_TIMESTAMPING 37 0 0 0 0 +.syscon so SO_TIMESTAMPING 37 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_TIMESTAMPNS.s b/libc/sysv/consts/SO_TIMESTAMPNS.s index bb7c021c4..5bc2f0873 100644 --- a/libc/sysv/consts/SO_TIMESTAMPNS.s +++ b/libc/sysv/consts/SO_TIMESTAMPNS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_TIMESTAMPNS 35 0 0 0 0 +.syscon so SO_TIMESTAMPNS 35 0 0 0 0 0 diff --git a/libc/sysv/consts/SO_TYPE.s b/libc/sysv/consts/SO_TYPE.s index e03d84d57..d2f087fe3 100644 --- a/libc/sysv/consts/SO_TYPE.s +++ b/libc/sysv/consts/SO_TYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_TYPE 3 0x1008 0x1008 0x1008 0x1008 +.syscon so SO_TYPE 3 0x1008 0x1008 0x1008 0x1008 0x1008 diff --git a/libc/sysv/consts/SO_WIFI_STATUS.s b/libc/sysv/consts/SO_WIFI_STATUS.s index 51aac8ad0..586e5a10b 100644 --- a/libc/sysv/consts/SO_WIFI_STATUS.s +++ b/libc/sysv/consts/SO_WIFI_STATUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon so SO_WIFI_STATUS 41 0 0 0 0 +.syscon so SO_WIFI_STATUS 41 0 0 0 0 0 diff --git a/libc/sysv/consts/SPACE.s b/libc/sysv/consts/SPACE.s index 0814ebcc7..0e3d528f0 100644 --- a/libc/sysv/consts/SPACE.s +++ b/libc/sysv/consts/SPACE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SPACE 17 0 0 0 0 +.syscon misc SPACE 17 0 0 0 0 0 diff --git a/libc/sysv/consts/SPLICE_F_GIFT.s b/libc/sysv/consts/SPLICE_F_GIFT.s index c3fc7cb8e..c6c5ab8cb 100644 --- a/libc/sysv/consts/SPLICE_F_GIFT.s +++ b/libc/sysv/consts/SPLICE_F_GIFT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon splice SPLICE_F_GIFT 8 0 0 0 0 +.syscon splice SPLICE_F_GIFT 8 0 0 0 0 0 diff --git a/libc/sysv/consts/SPLICE_F_MORE.s b/libc/sysv/consts/SPLICE_F_MORE.s index 4abf53547..ae9dd9b8f 100644 --- a/libc/sysv/consts/SPLICE_F_MORE.s +++ b/libc/sysv/consts/SPLICE_F_MORE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon splice SPLICE_F_MORE 4 0 0 0 0 +.syscon splice SPLICE_F_MORE 4 0 0 0 0 0 diff --git a/libc/sysv/consts/SPLICE_F_MOVE.s b/libc/sysv/consts/SPLICE_F_MOVE.s index fec501b6b..ea8b3ab7e 100644 --- a/libc/sysv/consts/SPLICE_F_MOVE.s +++ b/libc/sysv/consts/SPLICE_F_MOVE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon splice SPLICE_F_MOVE 1 0 0 0 0 +.syscon splice SPLICE_F_MOVE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SPLICE_F_NONBLOCK.s b/libc/sysv/consts/SPLICE_F_NONBLOCK.s index 7c5fee509..c5f51ffb8 100644 --- a/libc/sysv/consts/SPLICE_F_NONBLOCK.s +++ b/libc/sysv/consts/SPLICE_F_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon splice SPLICE_F_NONBLOCK 2 0 0 0 0 +.syscon splice SPLICE_F_NONBLOCK 2 0 0 0 0 0 diff --git a/libc/sysv/consts/SS_DISABLE.s b/libc/sysv/consts/SS_DISABLE.s index ed9195ee9..a68ad6a1f 100644 --- a/libc/sysv/consts/SS_DISABLE.s +++ b/libc/sysv/consts/SS_DISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SS_DISABLE 2 4 4 4 0 +.syscon misc SS_DISABLE 2 4 4 4 4 0 diff --git a/libc/sysv/consts/SS_ONSTACK.s b/libc/sysv/consts/SS_ONSTACK.s index 62f064886..d75870bd4 100644 --- a/libc/sysv/consts/SS_ONSTACK.s +++ b/libc/sysv/consts/SS_ONSTACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SS_ONSTACK 1 1 1 1 0 +.syscon misc SS_ONSTACK 1 1 1 1 1 0 diff --git a/libc/sysv/consts/START_STOP.s b/libc/sysv/consts/START_STOP.s index 573ff5a10..1c8217fed 100644 --- a/libc/sysv/consts/START_STOP.s +++ b/libc/sysv/consts/START_STOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc START_STOP 27 0 0 0 0 +.syscon misc START_STOP 27 0 0 0 0 0 diff --git a/libc/sysv/consts/STATUS_MASK.s b/libc/sysv/consts/STATUS_MASK.s index 445ff1f94..6b98645d9 100644 --- a/libc/sysv/consts/STATUS_MASK.s +++ b/libc/sysv/consts/STATUS_MASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc STATUS_MASK 62 0 0 0 0 +.syscon misc STATUS_MASK 62 0 0 0 0 0 diff --git a/libc/sysv/consts/STA_RONLY.s b/libc/sysv/consts/STA_RONLY.s index a2e063509..4c39ea0af 100644 --- a/libc/sysv/consts/STA_RONLY.s +++ b/libc/sysv/consts/STA_RONLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc STA_RONLY 0xff00 0 0xff00 0 0 +.syscon misc STA_RONLY 0xff00 0 0xff00 0 0 0 diff --git a/libc/sysv/consts/STICKY_TIMEOUTS.s b/libc/sysv/consts/STICKY_TIMEOUTS.s index 83e9fbb2f..4846e9940 100644 --- a/libc/sysv/consts/STICKY_TIMEOUTS.s +++ b/libc/sysv/consts/STICKY_TIMEOUTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty STICKY_TIMEOUTS 0x4000000 -1 -1 -1 -1 +.syscon prsnlty STICKY_TIMEOUTS 0x4000000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/STRIPDISC.s b/libc/sysv/consts/STRIPDISC.s index 017bd4184..6f84561cc 100644 --- a/libc/sysv/consts/STRIPDISC.s +++ b/libc/sysv/consts/STRIPDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios STRIPDISC 0 0 0 0x6 -1 +.syscon termios STRIPDISC 0 0 0 0x6 0x6 -1 diff --git a/libc/sysv/consts/STRU_F.s b/libc/sysv/consts/STRU_F.s index b995ce4fd..012bbf771 100644 --- a/libc/sysv/consts/STRU_F.s +++ b/libc/sysv/consts/STRU_F.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc STRU_F 1 1 1 1 0 +.syscon misc STRU_F 1 1 1 1 1 0 diff --git a/libc/sysv/consts/STRU_P.s b/libc/sysv/consts/STRU_P.s index 372dc3730..9d6456a09 100644 --- a/libc/sysv/consts/STRU_P.s +++ b/libc/sysv/consts/STRU_P.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc STRU_P 3 3 3 3 0 +.syscon misc STRU_P 3 3 3 3 3 0 diff --git a/libc/sysv/consts/STRU_R.s b/libc/sysv/consts/STRU_R.s index 71814a2ef..676a4caeb 100644 --- a/libc/sysv/consts/STRU_R.s +++ b/libc/sysv/consts/STRU_R.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc STRU_R 2 2 2 2 0 +.syscon misc STRU_R 2 2 2 2 2 0 diff --git a/libc/sysv/consts/ST_APPEND.s b/libc/sysv/consts/ST_APPEND.s index 4030aa769..47b78a214 100644 --- a/libc/sysv/consts/ST_APPEND.s +++ b/libc/sysv/consts/ST_APPEND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_APPEND 0x0100 0 0 0 0 +.syscon misc ST_APPEND 0x0100 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_IMMUTABLE.s b/libc/sysv/consts/ST_IMMUTABLE.s index 17cef1715..bacb6d75a 100644 --- a/libc/sysv/consts/ST_IMMUTABLE.s +++ b/libc/sysv/consts/ST_IMMUTABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_IMMUTABLE 0x0200 0 0 0 0 +.syscon misc ST_IMMUTABLE 0x0200 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_MANDLOCK.s b/libc/sysv/consts/ST_MANDLOCK.s index a2fce1052..0f1272670 100644 --- a/libc/sysv/consts/ST_MANDLOCK.s +++ b/libc/sysv/consts/ST_MANDLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_MANDLOCK 0x40 0 0 0 0 +.syscon misc ST_MANDLOCK 0x40 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_NOATIME.s b/libc/sysv/consts/ST_NOATIME.s index e6ed74e2e..b933812f3 100644 --- a/libc/sysv/consts/ST_NOATIME.s +++ b/libc/sysv/consts/ST_NOATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_NOATIME 0x0400 0 0 0 0 +.syscon misc ST_NOATIME 0x0400 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_NODEV.s b/libc/sysv/consts/ST_NODEV.s index 2a1b081a6..e534098b7 100644 --- a/libc/sysv/consts/ST_NODEV.s +++ b/libc/sysv/consts/ST_NODEV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_NODEV 4 0 0 0 0 +.syscon misc ST_NODEV 4 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_NODIRATIME.s b/libc/sysv/consts/ST_NODIRATIME.s index f74791c4d..4533b6283 100644 --- a/libc/sysv/consts/ST_NODIRATIME.s +++ b/libc/sysv/consts/ST_NODIRATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_NODIRATIME 0x0800 0 0 0 0 +.syscon misc ST_NODIRATIME 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_NOEXEC.s b/libc/sysv/consts/ST_NOEXEC.s index f44763e27..63fef153b 100644 --- a/libc/sysv/consts/ST_NOEXEC.s +++ b/libc/sysv/consts/ST_NOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_NOEXEC 8 0 0 0 0 +.syscon misc ST_NOEXEC 8 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_NOSUID.s b/libc/sysv/consts/ST_NOSUID.s index b5cbdb621..dc9d75ad0 100644 --- a/libc/sysv/consts/ST_NOSUID.s +++ b/libc/sysv/consts/ST_NOSUID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_NOSUID 2 2 2 2 0 +.syscon misc ST_NOSUID 2 2 2 2 2 0 diff --git a/libc/sysv/consts/ST_RDONLY.s b/libc/sysv/consts/ST_RDONLY.s index 503ec2af2..01c1b5bbe 100644 --- a/libc/sysv/consts/ST_RDONLY.s +++ b/libc/sysv/consts/ST_RDONLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_RDONLY 1 1 1 1 0 +.syscon misc ST_RDONLY 1 1 1 1 1 0 diff --git a/libc/sysv/consts/ST_RELATIME.s b/libc/sysv/consts/ST_RELATIME.s index 787b52688..426f95a06 100644 --- a/libc/sysv/consts/ST_RELATIME.s +++ b/libc/sysv/consts/ST_RELATIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_RELATIME 0x1000 0 0 0 0 +.syscon misc ST_RELATIME 0x1000 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_SYNCHRONOUS.s b/libc/sysv/consts/ST_SYNCHRONOUS.s index 528923db7..99529a322 100644 --- a/libc/sysv/consts/ST_SYNCHRONOUS.s +++ b/libc/sysv/consts/ST_SYNCHRONOUS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_SYNCHRONOUS 0x10 0 0 0 0 +.syscon misc ST_SYNCHRONOUS 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/ST_WRITE.s b/libc/sysv/consts/ST_WRITE.s index e545f3cb8..3a1b2744f 100644 --- a/libc/sysv/consts/ST_WRITE.s +++ b/libc/sysv/consts/ST_WRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc ST_WRITE 0x80 0 0 0 0 +.syscon misc ST_WRITE 0x80 0 0 0 0 0 diff --git a/libc/sysv/consts/SUBCMDMASK.s b/libc/sysv/consts/SUBCMDMASK.s index 413bd5126..c6855cfb6 100644 --- a/libc/sysv/consts/SUBCMDMASK.s +++ b/libc/sysv/consts/SUBCMDMASK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SUBCMDMASK 255 255 255 255 0 +.syscon misc SUBCMDMASK 255 255 255 255 255 0 diff --git a/libc/sysv/consts/SUBCMDSHIFT.s b/libc/sysv/consts/SUBCMDSHIFT.s index 2a769479b..9eff06fda 100644 --- a/libc/sysv/consts/SUBCMDSHIFT.s +++ b/libc/sysv/consts/SUBCMDSHIFT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SUBCMDSHIFT 8 8 8 8 0 +.syscon misc SUBCMDSHIFT 8 8 8 8 8 0 diff --git a/libc/sysv/consts/SWAP_FLAG_DISCARD.s b/libc/sysv/consts/SWAP_FLAG_DISCARD.s index 4eab87861..f28a5db63 100644 --- a/libc/sysv/consts/SWAP_FLAG_DISCARD.s +++ b/libc/sysv/consts/SWAP_FLAG_DISCARD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SWAP_FLAG_DISCARD 0x010000 0 0 0 0 +.syscon misc SWAP_FLAG_DISCARD 0x010000 0 0 0 0 0 diff --git a/libc/sysv/consts/SYMLOOP_MAX.s b/libc/sysv/consts/SYMLOOP_MAX.s index 6f1949430..040388daf 100644 --- a/libc/sysv/consts/SYMLOOP_MAX.s +++ b/libc/sysv/consts/SYMLOOP_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SYMLOOP_MAX 0 0 0 0x20 0 +.syscon misc SYMLOOP_MAX 0 0 0 0x20 0x20 0 diff --git a/libc/sysv/consts/SYMTYPE.s b/libc/sysv/consts/SYMTYPE.s index e20dcacc6..317c74481 100644 --- a/libc/sysv/consts/SYMTYPE.s +++ b/libc/sysv/consts/SYMTYPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SYMTYPE 50 50 50 50 0 +.syscon misc SYMTYPE 50 50 50 50 50 0 diff --git a/libc/sysv/consts/SYNCHRONIZE_CACHE.s b/libc/sysv/consts/SYNCHRONIZE_CACHE.s index 915182d5d..573e426f4 100644 --- a/libc/sysv/consts/SYNCHRONIZE_CACHE.s +++ b/libc/sysv/consts/SYNCHRONIZE_CACHE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SYNCHRONIZE_CACHE 53 0 0 0 0 +.syscon misc SYNCHRONIZE_CACHE 53 0 0 0 0 0 diff --git a/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_AFTER.s b/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_AFTER.s index 4b46fd6a2..98d61a61f 100644 --- a/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_AFTER.s +++ b/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_AFTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SYNC_FILE_RANGE_WAIT_AFTER 4 0 0 0 0 +.syscon misc SYNC_FILE_RANGE_WAIT_AFTER 4 0 0 0 0 0 diff --git a/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_BEFORE.s b/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_BEFORE.s index 03bb34084..8dca86c7b 100644 --- a/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_BEFORE.s +++ b/libc/sysv/consts/SYNC_FILE_RANGE_WAIT_BEFORE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SYNC_FILE_RANGE_WAIT_BEFORE 1 0 0 0 0 +.syscon misc SYNC_FILE_RANGE_WAIT_BEFORE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/SYNC_FILE_RANGE_WRITE.s b/libc/sysv/consts/SYNC_FILE_RANGE_WRITE.s index fc310f585..0d29c1b57 100644 --- a/libc/sysv/consts/SYNC_FILE_RANGE_WRITE.s +++ b/libc/sysv/consts/SYNC_FILE_RANGE_WRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc SYNC_FILE_RANGE_WRITE 2 0 0 0 0 +.syscon misc SYNC_FILE_RANGE_WRITE 2 0 0 0 0 0 diff --git a/libc/sysv/consts/S_IEXEC.s b/libc/sysv/consts/S_IEXEC.s index 9e238581f..9cf838e56 100644 --- a/libc/sysv/consts/S_IEXEC.s +++ b/libc/sysv/consts/S_IEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IEXEC 00100 00100 00100 00100 00100 +.syscon stat S_IEXEC 00100 00100 00100 00100 00100 00100 diff --git a/libc/sysv/consts/S_IFBLK.s b/libc/sysv/consts/S_IFBLK.s index 2358c53ba..40a87f7d2 100644 --- a/libc/sysv/consts/S_IFBLK.s +++ b/libc/sysv/consts/S_IFBLK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFBLK 0060000 0060000 0060000 0060000 0060000 +.syscon stat S_IFBLK 0060000 0060000 0060000 0060000 0060000 0060000 diff --git a/libc/sysv/consts/S_IFCHR.s b/libc/sysv/consts/S_IFCHR.s index ad661d020..e3593ddc5 100644 --- a/libc/sysv/consts/S_IFCHR.s +++ b/libc/sysv/consts/S_IFCHR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFCHR 0020000 0020000 0020000 0020000 0020000 +.syscon stat S_IFCHR 0020000 0020000 0020000 0020000 0020000 0020000 diff --git a/libc/sysv/consts/S_IFDIR.s b/libc/sysv/consts/S_IFDIR.s index 819d9c0b8..8c735c140 100644 --- a/libc/sysv/consts/S_IFDIR.s +++ b/libc/sysv/consts/S_IFDIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFDIR 0040000 0040000 0040000 0040000 0040000 +.syscon stat S_IFDIR 0040000 0040000 0040000 0040000 0040000 0040000 diff --git a/libc/sysv/consts/S_IFIFO.s b/libc/sysv/consts/S_IFIFO.s index ed197b430..b819622f0 100644 --- a/libc/sysv/consts/S_IFIFO.s +++ b/libc/sysv/consts/S_IFIFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFIFO 0010000 0010000 0010000 0010000 0010000 +.syscon stat S_IFIFO 0010000 0010000 0010000 0010000 0010000 0010000 diff --git a/libc/sysv/consts/S_IFLNK.s b/libc/sysv/consts/S_IFLNK.s index 805dc5963..2d4481873 100644 --- a/libc/sysv/consts/S_IFLNK.s +++ b/libc/sysv/consts/S_IFLNK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFLNK 0120000 0120000 0120000 0120000 0120000 +.syscon stat S_IFLNK 0120000 0120000 0120000 0120000 0120000 0120000 diff --git a/libc/sysv/consts/S_IFMT.s b/libc/sysv/consts/S_IFMT.s index 36b21d68f..760fca2da 100644 --- a/libc/sysv/consts/S_IFMT.s +++ b/libc/sysv/consts/S_IFMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFMT 0170000 0170000 0170000 0170000 0170000 +.syscon stat S_IFMT 0170000 0170000 0170000 0170000 0170000 0170000 diff --git a/libc/sysv/consts/S_IFREG.s b/libc/sysv/consts/S_IFREG.s index 8c1f30fbd..ce54d8ffb 100644 --- a/libc/sysv/consts/S_IFREG.s +++ b/libc/sysv/consts/S_IFREG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFREG 0100000 0100000 0100000 0100000 0100000 +.syscon stat S_IFREG 0100000 0100000 0100000 0100000 0100000 0100000 diff --git a/libc/sysv/consts/S_IFSOCK.s b/libc/sysv/consts/S_IFSOCK.s index 325b213cc..b14f6d55d 100644 --- a/libc/sysv/consts/S_IFSOCK.s +++ b/libc/sysv/consts/S_IFSOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IFSOCK 0140000 0140000 0140000 0140000 0140000 +.syscon stat S_IFSOCK 0140000 0140000 0140000 0140000 0140000 0140000 diff --git a/libc/sysv/consts/S_IREAD.s b/libc/sysv/consts/S_IREAD.s index 8b3c4ac7d..a0716ff67 100644 --- a/libc/sysv/consts/S_IREAD.s +++ b/libc/sysv/consts/S_IREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IREAD 00400 00400 00400 00400 00400 +.syscon stat S_IREAD 00400 00400 00400 00400 00400 00400 diff --git a/libc/sysv/consts/S_IRGRP.s b/libc/sysv/consts/S_IRGRP.s index a28a4e96b..c269384dc 100644 --- a/libc/sysv/consts/S_IRGRP.s +++ b/libc/sysv/consts/S_IRGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IRGRP 00040 00040 00040 00040 00040 +.syscon stat S_IRGRP 00040 00040 00040 00040 00040 00040 diff --git a/libc/sysv/consts/S_IROTH.s b/libc/sysv/consts/S_IROTH.s index d26604e76..edde5f9e4 100644 --- a/libc/sysv/consts/S_IROTH.s +++ b/libc/sysv/consts/S_IROTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IROTH 00004 00004 00004 00004 00004 +.syscon stat S_IROTH 00004 00004 00004 00004 00004 00004 diff --git a/libc/sysv/consts/S_IRUSR.s b/libc/sysv/consts/S_IRUSR.s index 93e907a34..3c9caf3a4 100644 --- a/libc/sysv/consts/S_IRUSR.s +++ b/libc/sysv/consts/S_IRUSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IRUSR 00400 00400 00400 00400 00400 +.syscon stat S_IRUSR 00400 00400 00400 00400 00400 00400 diff --git a/libc/sysv/consts/S_IRWXG.s b/libc/sysv/consts/S_IRWXG.s index 2fa3beec7..b56c95207 100644 --- a/libc/sysv/consts/S_IRWXG.s +++ b/libc/sysv/consts/S_IRWXG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IRWXG 00070 00070 00070 00070 00070 +.syscon stat S_IRWXG 00070 00070 00070 00070 00070 00070 diff --git a/libc/sysv/consts/S_IRWXO.s b/libc/sysv/consts/S_IRWXO.s index e89889526..a1192a29d 100644 --- a/libc/sysv/consts/S_IRWXO.s +++ b/libc/sysv/consts/S_IRWXO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IRWXO 00007 00007 00007 00007 00007 +.syscon stat S_IRWXO 00007 00007 00007 00007 00007 00007 diff --git a/libc/sysv/consts/S_IRWXU.s b/libc/sysv/consts/S_IRWXU.s index a8dac4574..32bab9b48 100644 --- a/libc/sysv/consts/S_IRWXU.s +++ b/libc/sysv/consts/S_IRWXU.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IRWXU 00700 00700 00700 00700 00700 +.syscon stat S_IRWXU 00700 00700 00700 00700 00700 00700 diff --git a/libc/sysv/consts/S_ISGID.s b/libc/sysv/consts/S_ISGID.s index 1a0ffff55..2be575b19 100644 --- a/libc/sysv/consts/S_ISGID.s +++ b/libc/sysv/consts/S_ISGID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_ISGID 02000 02000 02000 02000 02000 +.syscon stat S_ISGID 02000 02000 02000 02000 02000 02000 diff --git a/libc/sysv/consts/S_ISUID.s b/libc/sysv/consts/S_ISUID.s index e45853e38..6d7d622e9 100644 --- a/libc/sysv/consts/S_ISUID.s +++ b/libc/sysv/consts/S_ISUID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_ISUID 04000 04000 04000 04000 04000 +.syscon stat S_ISUID 04000 04000 04000 04000 04000 04000 diff --git a/libc/sysv/consts/S_ISVTX.s b/libc/sysv/consts/S_ISVTX.s index 32209799e..aea77ab2b 100644 --- a/libc/sysv/consts/S_ISVTX.s +++ b/libc/sysv/consts/S_ISVTX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_ISVTX 01000 01000 01000 01000 01000 +.syscon stat S_ISVTX 01000 01000 01000 01000 01000 01000 diff --git a/libc/sysv/consts/S_IWGRP.s b/libc/sysv/consts/S_IWGRP.s index e6bde2d2c..b9bfd7466 100644 --- a/libc/sysv/consts/S_IWGRP.s +++ b/libc/sysv/consts/S_IWGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IWGRP 00020 00020 00020 00020 00020 +.syscon stat S_IWGRP 00020 00020 00020 00020 00020 00020 diff --git a/libc/sysv/consts/S_IWOTH.s b/libc/sysv/consts/S_IWOTH.s index ee021292f..dd0ac3151 100644 --- a/libc/sysv/consts/S_IWOTH.s +++ b/libc/sysv/consts/S_IWOTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IWOTH 00002 00002 00002 00002 00002 +.syscon stat S_IWOTH 00002 00002 00002 00002 00002 00002 diff --git a/libc/sysv/consts/S_IWRITE.s b/libc/sysv/consts/S_IWRITE.s index 475fbeeb8..3144b974d 100644 --- a/libc/sysv/consts/S_IWRITE.s +++ b/libc/sysv/consts/S_IWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IWRITE 00200 00200 00200 00200 00200 +.syscon stat S_IWRITE 00200 00200 00200 00200 00200 00200 diff --git a/libc/sysv/consts/S_IWUSR.s b/libc/sysv/consts/S_IWUSR.s index 401732094..5f23404d9 100644 --- a/libc/sysv/consts/S_IWUSR.s +++ b/libc/sysv/consts/S_IWUSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IWUSR 00200 00200 00200 00200 00200 +.syscon stat S_IWUSR 00200 00200 00200 00200 00200 00200 diff --git a/libc/sysv/consts/S_IXGRP.s b/libc/sysv/consts/S_IXGRP.s index 65b5013e2..8ea5bbba3 100644 --- a/libc/sysv/consts/S_IXGRP.s +++ b/libc/sysv/consts/S_IXGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IXGRP 00010 00010 00010 00010 00010 +.syscon stat S_IXGRP 00010 00010 00010 00010 00010 00010 diff --git a/libc/sysv/consts/S_IXOTH.s b/libc/sysv/consts/S_IXOTH.s index 4d1c3aeba..009983642 100644 --- a/libc/sysv/consts/S_IXOTH.s +++ b/libc/sysv/consts/S_IXOTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IXOTH 00001 00001 00001 00001 00001 +.syscon stat S_IXOTH 00001 00001 00001 00001 00001 00001 diff --git a/libc/sysv/consts/S_IXUSR.s b/libc/sysv/consts/S_IXUSR.s index c6730c851..1f3ff9be7 100644 --- a/libc/sysv/consts/S_IXUSR.s +++ b/libc/sysv/consts/S_IXUSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon stat S_IXUSR 00100 00100 00100 00100 00100 +.syscon stat S_IXUSR 00100 00100 00100 00100 00100 00100 diff --git a/libc/sysv/consts/TAB0.s b/libc/sysv/consts/TAB0.s index 796290a81..c06faf55a 100644 --- a/libc/sysv/consts/TAB0.s +++ b/libc/sysv/consts/TAB0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TAB0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 +.syscon termios TAB0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 diff --git a/libc/sysv/consts/TAB1.s b/libc/sysv/consts/TAB1.s index fb8a213bc..21f474954 100644 --- a/libc/sysv/consts/TAB1.s +++ b/libc/sysv/consts/TAB1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TAB1 0b0000100000000000 0b000000010000000000 0b000000010000000000 0 0b0000100000000000 +.syscon termios TAB1 0b0000100000000000 0b000000010000000000 0b000000010000000000 0 0 0b0000100000000000 diff --git a/libc/sysv/consts/TAB2.s b/libc/sysv/consts/TAB2.s index cd494dd94..f85ac1fa8 100644 --- a/libc/sysv/consts/TAB2.s +++ b/libc/sysv/consts/TAB2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TAB2 0b0001000000000000 0b000000100000000000 0b000000100000000000 0 0b0001000000000000 +.syscon termios TAB2 0b0001000000000000 0b000000100000000000 0b000000100000000000 0 0 0b0001000000000000 diff --git a/libc/sysv/consts/TAB3.s b/libc/sysv/consts/TAB3.s index 450910018..6f031bb0b 100644 --- a/libc/sysv/consts/TAB3.s +++ b/libc/sysv/consts/TAB3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TAB3 0b0001100000000000 0b000000000000000100 0b000000000000000100 0 0b0001100000000000 +.syscon termios TAB3 0b0001100000000000 0b000000000000000100 0b000000000000000100 0 0 0b0001100000000000 diff --git a/libc/sysv/consts/TABDLY.s b/libc/sysv/consts/TABDLY.s index bb01ba863..cd330ae6c 100644 --- a/libc/sysv/consts/TABDLY.s +++ b/libc/sysv/consts/TABDLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TABDLY 0b0001100000000000 0b000000110000000100 0b000000000000000100 0 0b0001100000000000 +.syscon termios TABDLY 0b0001100000000000 0b000000110000000100 0b000000000000000100 0 0 0b0001100000000000 diff --git a/libc/sysv/consts/TABLDISC.s b/libc/sysv/consts/TABLDISC.s index 9b4614309..74716433a 100644 --- a/libc/sysv/consts/TABLDISC.s +++ b/libc/sysv/consts/TABLDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TABLDISC 0 0x3 0 0x3 -1 +.syscon termios TABLDISC 0 0x3 0 0x3 0x3 -1 diff --git a/libc/sysv/consts/TCFLSH.s b/libc/sysv/consts/TCFLSH.s index 339a0bc26..ceab82075 100644 --- a/libc/sysv/consts/TCFLSH.s +++ b/libc/sysv/consts/TCFLSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCFLSH 0x540b 0 0 0 0 +.syscon misc TCFLSH 0x540b 0 0 0 0 0 diff --git a/libc/sysv/consts/TCGETS.s b/libc/sysv/consts/TCGETS.s index c5e422337..078417cac 100644 --- a/libc/sysv/consts/TCGETS.s +++ b/libc/sysv/consts/TCGETS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TCGETS 0x5401 0x40487413 0x402c7413 0x402c7413 -1 +.syscon termios TCGETS 0x5401 0x40487413 0x402c7413 0x402c7413 0x402c7413 -1 diff --git a/libc/sysv/consts/TCIFLUSH.s b/libc/sysv/consts/TCIFLUSH.s index 24aba687e..658c02ee2 100644 --- a/libc/sysv/consts/TCIFLUSH.s +++ b/libc/sysv/consts/TCIFLUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCIFLUSH 0 1 1 1 0 +.syscon misc TCIFLUSH 0 1 1 1 1 0 diff --git a/libc/sysv/consts/TCIOFF.s b/libc/sysv/consts/TCIOFF.s index 226b82a7f..3ef041c79 100644 --- a/libc/sysv/consts/TCIOFF.s +++ b/libc/sysv/consts/TCIOFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCIOFF 2 3 3 3 0 +.syscon misc TCIOFF 2 3 3 3 3 0 diff --git a/libc/sysv/consts/TCIOFLUSH.s b/libc/sysv/consts/TCIOFLUSH.s index f53189092..8e046d24d 100644 --- a/libc/sysv/consts/TCIOFLUSH.s +++ b/libc/sysv/consts/TCIOFLUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCIOFLUSH 2 3 3 3 0 +.syscon misc TCIOFLUSH 2 3 3 3 3 0 diff --git a/libc/sysv/consts/TCION.s b/libc/sysv/consts/TCION.s index 3809b979e..8d9ed6102 100644 --- a/libc/sysv/consts/TCION.s +++ b/libc/sysv/consts/TCION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCION 3 4 4 4 0 +.syscon misc TCION 3 4 4 4 4 0 diff --git a/libc/sysv/consts/TCOFLUSH.s b/libc/sysv/consts/TCOFLUSH.s index 184766d7d..1a7be19b6 100644 --- a/libc/sysv/consts/TCOFLUSH.s +++ b/libc/sysv/consts/TCOFLUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCOFLUSH 1 2 2 2 0 +.syscon misc TCOFLUSH 1 2 2 2 2 0 diff --git a/libc/sysv/consts/TCOOFF.s b/libc/sysv/consts/TCOOFF.s index 639bdad4f..f278761ce 100644 --- a/libc/sysv/consts/TCOOFF.s +++ b/libc/sysv/consts/TCOOFF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCOOFF 0 1 1 1 0 +.syscon misc TCOOFF 0 1 1 1 1 0 diff --git a/libc/sysv/consts/TCOON.s b/libc/sysv/consts/TCOON.s index a573703fc..c72c9b0e2 100644 --- a/libc/sysv/consts/TCOON.s +++ b/libc/sysv/consts/TCOON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCOON 1 2 2 2 0 +.syscon misc TCOON 1 2 2 2 2 0 diff --git a/libc/sysv/consts/TCPOLEN_MAXSEG.s b/libc/sysv/consts/TCPOLEN_MAXSEG.s index 72ca1f1fb..382758800 100644 --- a/libc/sysv/consts/TCPOLEN_MAXSEG.s +++ b/libc/sysv/consts/TCPOLEN_MAXSEG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOLEN_MAXSEG 4 4 4 4 0 +.syscon misc TCPOLEN_MAXSEG 4 4 4 4 4 0 diff --git a/libc/sysv/consts/TCPOLEN_SACK_PERMITTED.s b/libc/sysv/consts/TCPOLEN_SACK_PERMITTED.s index bbe9ab041..ae9f02f4f 100644 --- a/libc/sysv/consts/TCPOLEN_SACK_PERMITTED.s +++ b/libc/sysv/consts/TCPOLEN_SACK_PERMITTED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOLEN_SACK_PERMITTED 2 2 2 2 0 +.syscon misc TCPOLEN_SACK_PERMITTED 2 2 2 2 2 0 diff --git a/libc/sysv/consts/TCPOLEN_TIMESTAMP.s b/libc/sysv/consts/TCPOLEN_TIMESTAMP.s index 2ee2ec4d0..0036f39a9 100644 --- a/libc/sysv/consts/TCPOLEN_TIMESTAMP.s +++ b/libc/sysv/consts/TCPOLEN_TIMESTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOLEN_TIMESTAMP 10 10 10 10 0 +.syscon misc TCPOLEN_TIMESTAMP 10 10 10 10 10 0 diff --git a/libc/sysv/consts/TCPOLEN_WINDOW.s b/libc/sysv/consts/TCPOLEN_WINDOW.s index f431a4e50..d88c71357 100644 --- a/libc/sysv/consts/TCPOLEN_WINDOW.s +++ b/libc/sysv/consts/TCPOLEN_WINDOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOLEN_WINDOW 3 3 3 3 0 +.syscon misc TCPOLEN_WINDOW 3 3 3 3 3 0 diff --git a/libc/sysv/consts/TCPOPT_EOL.s b/libc/sysv/consts/TCPOPT_EOL.s index 4e073f964..5c30a491b 100644 --- a/libc/sysv/consts/TCPOPT_EOL.s +++ b/libc/sysv/consts/TCPOPT_EOL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOPT_EOL 0 0 0 0 0 +.syscon misc TCPOPT_EOL 0 0 0 0 0 0 diff --git a/libc/sysv/consts/TCPOPT_MAXSEG.s b/libc/sysv/consts/TCPOPT_MAXSEG.s index a7b58421d..bdaed46fd 100644 --- a/libc/sysv/consts/TCPOPT_MAXSEG.s +++ b/libc/sysv/consts/TCPOPT_MAXSEG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOPT_MAXSEG 2 2 2 2 0 +.syscon misc TCPOPT_MAXSEG 2 2 2 2 2 0 diff --git a/libc/sysv/consts/TCPOPT_NOP.s b/libc/sysv/consts/TCPOPT_NOP.s index 2fd8efe15..75241f57d 100644 --- a/libc/sysv/consts/TCPOPT_NOP.s +++ b/libc/sysv/consts/TCPOPT_NOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOPT_NOP 1 1 1 1 0 +.syscon misc TCPOPT_NOP 1 1 1 1 1 0 diff --git a/libc/sysv/consts/TCPOPT_SACK.s b/libc/sysv/consts/TCPOPT_SACK.s index 9a61a9993..35e4d3bdb 100644 --- a/libc/sysv/consts/TCPOPT_SACK.s +++ b/libc/sysv/consts/TCPOPT_SACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOPT_SACK 5 5 5 5 0 +.syscon misc TCPOPT_SACK 5 5 5 5 5 0 diff --git a/libc/sysv/consts/TCPOPT_SACK_PERMITTED.s b/libc/sysv/consts/TCPOPT_SACK_PERMITTED.s index f756072ce..48736d312 100644 --- a/libc/sysv/consts/TCPOPT_SACK_PERMITTED.s +++ b/libc/sysv/consts/TCPOPT_SACK_PERMITTED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOPT_SACK_PERMITTED 4 4 4 4 0 +.syscon misc TCPOPT_SACK_PERMITTED 4 4 4 4 4 0 diff --git a/libc/sysv/consts/TCPOPT_TIMESTAMP.s b/libc/sysv/consts/TCPOPT_TIMESTAMP.s index 316d6bf08..1e3ff791c 100644 --- a/libc/sysv/consts/TCPOPT_TIMESTAMP.s +++ b/libc/sysv/consts/TCPOPT_TIMESTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOPT_TIMESTAMP 8 8 8 8 0 +.syscon misc TCPOPT_TIMESTAMP 8 8 8 8 8 0 diff --git a/libc/sysv/consts/TCPOPT_WINDOW.s b/libc/sysv/consts/TCPOPT_WINDOW.s index 6f0de30c4..ca8306f72 100644 --- a/libc/sysv/consts/TCPOPT_WINDOW.s +++ b/libc/sysv/consts/TCPOPT_WINDOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TCPOPT_WINDOW 3 3 3 3 0 +.syscon misc TCPOPT_WINDOW 3 3 3 3 3 0 diff --git a/libc/sysv/consts/TCP_CC_INFO.s b/libc/sysv/consts/TCP_CC_INFO.s index 4d2b13465..e26f8a792 100644 --- a/libc/sysv/consts/TCP_CC_INFO.s +++ b/libc/sysv/consts/TCP_CC_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_CC_INFO 26 0 0 0 0 +.syscon tcp TCP_CC_INFO 26 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_CONGESTION.s b/libc/sysv/consts/TCP_CONGESTION.s index f13290fd0..d90f49ab3 100644 --- a/libc/sysv/consts/TCP_CONGESTION.s +++ b/libc/sysv/consts/TCP_CONGESTION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_CONGESTION 13 0 0x40 0 0 +.syscon tcp TCP_CONGESTION 13 0 0x40 0 0 0 diff --git a/libc/sysv/consts/TCP_COOKIE_TRANSACTIONS.s b/libc/sysv/consts/TCP_COOKIE_TRANSACTIONS.s index b931f12b4..b6fd894a9 100644 --- a/libc/sysv/consts/TCP_COOKIE_TRANSACTIONS.s +++ b/libc/sysv/consts/TCP_COOKIE_TRANSACTIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_COOKIE_TRANSACTIONS 15 0 0 0 0 +.syscon tcp TCP_COOKIE_TRANSACTIONS 15 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_CORK.s b/libc/sysv/consts/TCP_CORK.s index b6c397db8..bfd19e5ba 100644 --- a/libc/sysv/consts/TCP_CORK.s +++ b/libc/sysv/consts/TCP_CORK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_CORK 3 0 0 0 0 +.syscon tcp TCP_CORK 3 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_DEFER_ACCEPT.s b/libc/sysv/consts/TCP_DEFER_ACCEPT.s index 7ec130745..838700069 100644 --- a/libc/sysv/consts/TCP_DEFER_ACCEPT.s +++ b/libc/sysv/consts/TCP_DEFER_ACCEPT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_DEFER_ACCEPT 9 0 0 0 0 +.syscon tcp TCP_DEFER_ACCEPT 9 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_FASTOPEN.s b/libc/sysv/consts/TCP_FASTOPEN.s index 44d9b32ae..4bde7c83c 100644 --- a/libc/sysv/consts/TCP_FASTOPEN.s +++ b/libc/sysv/consts/TCP_FASTOPEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_FASTOPEN 23 261 0x0401 0 15 +.syscon tcp TCP_FASTOPEN 23 261 0x0401 0 0 15 diff --git a/libc/sysv/consts/TCP_INFO.s b/libc/sysv/consts/TCP_INFO.s index 3fc31e2f5..11279f50c 100644 --- a/libc/sysv/consts/TCP_INFO.s +++ b/libc/sysv/consts/TCP_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_INFO 11 0 0x20 0 0 +.syscon tcp TCP_INFO 11 0 0x20 0 0 0 diff --git a/libc/sysv/consts/TCP_KEEPCNT.s b/libc/sysv/consts/TCP_KEEPCNT.s index ca7d3b280..feb3092f1 100644 --- a/libc/sysv/consts/TCP_KEEPCNT.s +++ b/libc/sysv/consts/TCP_KEEPCNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_KEEPCNT 6 0x102 0x400 0 0 +.syscon tcp TCP_KEEPCNT 6 0x102 0x400 0 0 0 diff --git a/libc/sysv/consts/TCP_KEEPIDLE.s b/libc/sysv/consts/TCP_KEEPIDLE.s index 6bfe73d4f..2bd5decc4 100644 --- a/libc/sysv/consts/TCP_KEEPIDLE.s +++ b/libc/sysv/consts/TCP_KEEPIDLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_KEEPIDLE 4 0 0x100 0 0 +.syscon tcp TCP_KEEPIDLE 4 0 0x100 0 0 0 diff --git a/libc/sysv/consts/TCP_KEEPINTVL.s b/libc/sysv/consts/TCP_KEEPINTVL.s index 21c804e64..60b12ca46 100644 --- a/libc/sysv/consts/TCP_KEEPINTVL.s +++ b/libc/sysv/consts/TCP_KEEPINTVL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_KEEPINTVL 5 0x101 0x200 0 0 +.syscon tcp TCP_KEEPINTVL 5 0x101 0x200 0 0 0 diff --git a/libc/sysv/consts/TCP_LINGER2.s b/libc/sysv/consts/TCP_LINGER2.s index 26a6091c8..fc1f77f4c 100644 --- a/libc/sysv/consts/TCP_LINGER2.s +++ b/libc/sysv/consts/TCP_LINGER2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_LINGER2 8 0 0 0 0 +.syscon tcp TCP_LINGER2 8 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_MAXSEG.s b/libc/sysv/consts/TCP_MAXSEG.s index 539459063..04a0ae2e1 100644 --- a/libc/sysv/consts/TCP_MAXSEG.s +++ b/libc/sysv/consts/TCP_MAXSEG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_MAXSEG 2 2 2 2 0 +.syscon tcp TCP_MAXSEG 2 2 2 2 2 0 diff --git a/libc/sysv/consts/TCP_MD5SIG.s b/libc/sysv/consts/TCP_MD5SIG.s index 6ba95fadc..788b0380a 100644 --- a/libc/sysv/consts/TCP_MD5SIG.s +++ b/libc/sysv/consts/TCP_MD5SIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_MD5SIG 14 0 0x10 4 0 +.syscon tcp TCP_MD5SIG 14 0 0x10 4 4 0 diff --git a/libc/sysv/consts/TCP_MD5SIG_MAXKEYLEN.s b/libc/sysv/consts/TCP_MD5SIG_MAXKEYLEN.s index 88ee62f41..91ba1c768 100644 --- a/libc/sysv/consts/TCP_MD5SIG_MAXKEYLEN.s +++ b/libc/sysv/consts/TCP_MD5SIG_MAXKEYLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_MD5SIG_MAXKEYLEN 80 0 0 0 0 +.syscon tcp TCP_MD5SIG_MAXKEYLEN 80 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_NODELAY.s b/libc/sysv/consts/TCP_NODELAY.s index 1d06769d0..c57ead211 100644 --- a/libc/sysv/consts/TCP_NODELAY.s +++ b/libc/sysv/consts/TCP_NODELAY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_NODELAY 1 1 1 1 1 +.syscon tcp TCP_NODELAY 1 1 1 1 1 1 diff --git a/libc/sysv/consts/TCP_NOTSENT_LOWAT.s b/libc/sysv/consts/TCP_NOTSENT_LOWAT.s index fbb6c19fb..12c65cb47 100644 --- a/libc/sysv/consts/TCP_NOTSENT_LOWAT.s +++ b/libc/sysv/consts/TCP_NOTSENT_LOWAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_NOTSENT_LOWAT 25 513 0 0 0 +.syscon tcp TCP_NOTSENT_LOWAT 25 513 0 0 0 0 diff --git a/libc/sysv/consts/TCP_QUEUE_SEQ.s b/libc/sysv/consts/TCP_QUEUE_SEQ.s index 73595e736..4838a05b9 100644 --- a/libc/sysv/consts/TCP_QUEUE_SEQ.s +++ b/libc/sysv/consts/TCP_QUEUE_SEQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_QUEUE_SEQ 21 0 0 0 0 +.syscon tcp TCP_QUEUE_SEQ 21 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_QUICKACK.s b/libc/sysv/consts/TCP_QUICKACK.s index a542b4cc7..a99aaf693 100644 --- a/libc/sysv/consts/TCP_QUICKACK.s +++ b/libc/sysv/consts/TCP_QUICKACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_QUICKACK 12 0 0 0 0 +.syscon tcp TCP_QUICKACK 12 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_REPAIR.s b/libc/sysv/consts/TCP_REPAIR.s index 2814a7346..286d587e5 100644 --- a/libc/sysv/consts/TCP_REPAIR.s +++ b/libc/sysv/consts/TCP_REPAIR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_REPAIR 19 0 0 0 0 +.syscon tcp TCP_REPAIR 19 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_REPAIR_OPTIONS.s b/libc/sysv/consts/TCP_REPAIR_OPTIONS.s index 2a064d045..9e959434b 100644 --- a/libc/sysv/consts/TCP_REPAIR_OPTIONS.s +++ b/libc/sysv/consts/TCP_REPAIR_OPTIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_REPAIR_OPTIONS 22 0 0 0 0 +.syscon tcp TCP_REPAIR_OPTIONS 22 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_REPAIR_QUEUE.s b/libc/sysv/consts/TCP_REPAIR_QUEUE.s index b8e798ba2..8d257194f 100644 --- a/libc/sysv/consts/TCP_REPAIR_QUEUE.s +++ b/libc/sysv/consts/TCP_REPAIR_QUEUE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_REPAIR_QUEUE 20 0 0 0 0 +.syscon tcp TCP_REPAIR_QUEUE 20 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_SAVED_SYN.s b/libc/sysv/consts/TCP_SAVED_SYN.s index 9a9461b96..1c5a9b921 100644 --- a/libc/sysv/consts/TCP_SAVED_SYN.s +++ b/libc/sysv/consts/TCP_SAVED_SYN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_SAVED_SYN 28 0 0 0 0 +.syscon tcp TCP_SAVED_SYN 28 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_SAVE_SYN.s b/libc/sysv/consts/TCP_SAVE_SYN.s index 8511583f0..da74a4fe0 100644 --- a/libc/sysv/consts/TCP_SAVE_SYN.s +++ b/libc/sysv/consts/TCP_SAVE_SYN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_SAVE_SYN 27 0 0 0 0 +.syscon tcp TCP_SAVE_SYN 27 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_SYNCNT.s b/libc/sysv/consts/TCP_SYNCNT.s index 3db9733be..10e0713fe 100644 --- a/libc/sysv/consts/TCP_SYNCNT.s +++ b/libc/sysv/consts/TCP_SYNCNT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_SYNCNT 7 0 0 0 0 +.syscon tcp TCP_SYNCNT 7 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_THIN_DUPACK.s b/libc/sysv/consts/TCP_THIN_DUPACK.s index bdeebfa53..46847b043 100644 --- a/libc/sysv/consts/TCP_THIN_DUPACK.s +++ b/libc/sysv/consts/TCP_THIN_DUPACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_THIN_DUPACK 17 0 0 0 0 +.syscon tcp TCP_THIN_DUPACK 17 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_THIN_LINEAR_TIMEOUTS.s b/libc/sysv/consts/TCP_THIN_LINEAR_TIMEOUTS.s index b9f4c2ce6..c6005f4e6 100644 --- a/libc/sysv/consts/TCP_THIN_LINEAR_TIMEOUTS.s +++ b/libc/sysv/consts/TCP_THIN_LINEAR_TIMEOUTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_THIN_LINEAR_TIMEOUTS 16 0 0 0 0 +.syscon tcp TCP_THIN_LINEAR_TIMEOUTS 16 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_TIMESTAMP.s b/libc/sysv/consts/TCP_TIMESTAMP.s index 6ea9f891b..02509bb73 100644 --- a/libc/sysv/consts/TCP_TIMESTAMP.s +++ b/libc/sysv/consts/TCP_TIMESTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_TIMESTAMP 24 0 0 0 0 +.syscon tcp TCP_TIMESTAMP 24 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_USER_TIMEOUT.s b/libc/sysv/consts/TCP_USER_TIMEOUT.s index 87c072cd5..7eb46798f 100644 --- a/libc/sysv/consts/TCP_USER_TIMEOUT.s +++ b/libc/sysv/consts/TCP_USER_TIMEOUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_USER_TIMEOUT 18 0 0 0 0 +.syscon tcp TCP_USER_TIMEOUT 18 0 0 0 0 0 diff --git a/libc/sysv/consts/TCP_WINDOW_CLAMP.s b/libc/sysv/consts/TCP_WINDOW_CLAMP.s index 3a5f39f24..8fd1c2e0d 100644 --- a/libc/sysv/consts/TCP_WINDOW_CLAMP.s +++ b/libc/sysv/consts/TCP_WINDOW_CLAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon tcp TCP_WINDOW_CLAMP 10 0 0 0 0 +.syscon tcp TCP_WINDOW_CLAMP 10 0 0 0 0 0 diff --git a/libc/sysv/consts/TCSADRAIN.s b/libc/sysv/consts/TCSADRAIN.s index 5c3a686cb..aab42bc1d 100644 --- a/libc/sysv/consts/TCSADRAIN.s +++ b/libc/sysv/consts/TCSADRAIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TCSADRAIN 1 1 1 1 1 +.syscon termios TCSADRAIN 1 1 1 1 1 1 diff --git a/libc/sysv/consts/TCSAFLUSH.s b/libc/sysv/consts/TCSAFLUSH.s index 43b5d3b88..5aa346372 100644 --- a/libc/sysv/consts/TCSAFLUSH.s +++ b/libc/sysv/consts/TCSAFLUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TCSAFLUSH 2 2 2 2 2 +.syscon termios TCSAFLUSH 2 2 2 2 2 2 diff --git a/libc/sysv/consts/TCSANOW.s b/libc/sysv/consts/TCSANOW.s index bc95b30f7..e47268501 100644 --- a/libc/sysv/consts/TCSANOW.s +++ b/libc/sysv/consts/TCSANOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TCSANOW 0 0 0 0 0 +.syscon termios TCSANOW 0 0 0 0 0 0 diff --git a/libc/sysv/consts/TCSETS.s b/libc/sysv/consts/TCSETS.s index d4b16eb6e..bc82835ae 100644 --- a/libc/sysv/consts/TCSETS.s +++ b/libc/sysv/consts/TCSETS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TCSETS 0x5402 0x80487414 0x802c7414 0x802c7414 0x5402 +.syscon termios TCSETS 0x5402 0x80487414 0x802c7414 0x802c7414 0x802c7414 0x5402 diff --git a/libc/sysv/consts/TCSETSF.s b/libc/sysv/consts/TCSETSF.s index 2efecba46..348655fd3 100644 --- a/libc/sysv/consts/TCSETSF.s +++ b/libc/sysv/consts/TCSETSF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TCSETSF 0x5404 0x80487416 0x802c7416 0x802c7416 0x5404 +.syscon termios TCSETSF 0x5404 0x80487416 0x802c7416 0x802c7416 0x802c7416 0x5404 diff --git a/libc/sysv/consts/TCSETSW.s b/libc/sysv/consts/TCSETSW.s index 76105c631..b316f0139 100644 --- a/libc/sysv/consts/TCSETSW.s +++ b/libc/sysv/consts/TCSETSW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TCSETSW 0x5403 0x80487415 0x802c7415 0x802c7415 0x5403 +.syscon termios TCSETSW 0x5403 0x80487415 0x802c7415 0x802c7415 0x802c7415 0x5403 diff --git a/libc/sysv/consts/TELOPT_NAOL.s b/libc/sysv/consts/TELOPT_NAOL.s index 84a35ac66..07ac01055 100644 --- a/libc/sysv/consts/TELOPT_NAOL.s +++ b/libc/sysv/consts/TELOPT_NAOL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TELOPT_NAOL 8 8 8 8 0 +.syscon misc TELOPT_NAOL 8 8 8 8 8 0 diff --git a/libc/sysv/consts/TELOPT_NAOP.s b/libc/sysv/consts/TELOPT_NAOP.s index bea28cd9e..f4b866064 100644 --- a/libc/sysv/consts/TELOPT_NAOP.s +++ b/libc/sysv/consts/TELOPT_NAOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TELOPT_NAOP 9 9 9 9 0 +.syscon misc TELOPT_NAOP 9 9 9 9 9 0 diff --git a/libc/sysv/consts/TELOPT_NEW_ENVIRON.s b/libc/sysv/consts/TELOPT_NEW_ENVIRON.s index 04269d90a..05e0656b9 100644 --- a/libc/sysv/consts/TELOPT_NEW_ENVIRON.s +++ b/libc/sysv/consts/TELOPT_NEW_ENVIRON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TELOPT_NEW_ENVIRON 39 39 39 39 0 +.syscon misc TELOPT_NEW_ENVIRON 39 39 39 39 39 0 diff --git a/libc/sysv/consts/TELOPT_OLD_ENVIRON.s b/libc/sysv/consts/TELOPT_OLD_ENVIRON.s index fd5399c66..3aa4b6554 100644 --- a/libc/sysv/consts/TELOPT_OLD_ENVIRON.s +++ b/libc/sysv/consts/TELOPT_OLD_ENVIRON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TELOPT_OLD_ENVIRON 36 36 36 36 0 +.syscon misc TELOPT_OLD_ENVIRON 36 36 36 36 36 0 diff --git a/libc/sysv/consts/TEST_UNIT_READY.s b/libc/sysv/consts/TEST_UNIT_READY.s index a3c846fcd..4a689b6d9 100644 --- a/libc/sysv/consts/TEST_UNIT_READY.s +++ b/libc/sysv/consts/TEST_UNIT_READY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TEST_UNIT_READY 0 0 0 0 0 +.syscon misc TEST_UNIT_READY 0 0 0 0 0 0 diff --git a/libc/sysv/consts/TFD_CLOEXEC.s b/libc/sysv/consts/TFD_CLOEXEC.s index dbd2d84fb..84aa20032 100644 --- a/libc/sysv/consts/TFD_CLOEXEC.s +++ b/libc/sysv/consts/TFD_CLOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TFD_CLOEXEC 0x080000 0 0 0 0 +.syscon misc TFD_CLOEXEC 0x080000 0 0 0 0 0 diff --git a/libc/sysv/consts/TFD_NONBLOCK.s b/libc/sysv/consts/TFD_NONBLOCK.s index c4b766c52..220aaf0e4 100644 --- a/libc/sysv/consts/TFD_NONBLOCK.s +++ b/libc/sysv/consts/TFD_NONBLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TFD_NONBLOCK 0x0800 0 0 0 0 +.syscon misc TFD_NONBLOCK 0x0800 0 0 0 0 0 diff --git a/libc/sysv/consts/TFD_TIMER_ABSTIME.s b/libc/sysv/consts/TFD_TIMER_ABSTIME.s index c5aaca5a7..777e231a9 100644 --- a/libc/sysv/consts/TFD_TIMER_ABSTIME.s +++ b/libc/sysv/consts/TFD_TIMER_ABSTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TFD_TIMER_ABSTIME 1 0 0 0 0 +.syscon misc TFD_TIMER_ABSTIME 1 0 0 0 0 0 diff --git a/libc/sysv/consts/TGEXEC.s b/libc/sysv/consts/TGEXEC.s index 75acd1e94..c15dfa46a 100644 --- a/libc/sysv/consts/TGEXEC.s +++ b/libc/sysv/consts/TGEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TGEXEC 8 8 8 8 0 +.syscon misc TGEXEC 8 8 8 8 8 0 diff --git a/libc/sysv/consts/TGREAD.s b/libc/sysv/consts/TGREAD.s index c39e5ed93..6672e9f52 100644 --- a/libc/sysv/consts/TGREAD.s +++ b/libc/sysv/consts/TGREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TGREAD 0x20 0x20 0x20 0x20 0 +.syscon misc TGREAD 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/TGWRITE.s b/libc/sysv/consts/TGWRITE.s index 268eba073..c2dc8629f 100644 --- a/libc/sysv/consts/TGWRITE.s +++ b/libc/sysv/consts/TGWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TGWRITE 0x10 0x10 0x10 0x10 0 +.syscon misc TGWRITE 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/THOUSEP.s b/libc/sysv/consts/THOUSEP.s index 323ab47c4..5452e660f 100644 --- a/libc/sysv/consts/THOUSEP.s +++ b/libc/sysv/consts/THOUSEP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc THOUSEP 0x010001 51 51 45 0 +.syscon misc THOUSEP 0x010001 51 51 45 45 0 diff --git a/libc/sysv/consts/TH_ACK.s b/libc/sysv/consts/TH_ACK.s index 638f3e9c3..3f5c46218 100644 --- a/libc/sysv/consts/TH_ACK.s +++ b/libc/sysv/consts/TH_ACK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TH_ACK 16 16 16 16 16 +.syscon misc TH_ACK 16 16 16 16 16 16 diff --git a/libc/sysv/consts/TH_FIN.s b/libc/sysv/consts/TH_FIN.s index eab04751f..33fb81588 100644 --- a/libc/sysv/consts/TH_FIN.s +++ b/libc/sysv/consts/TH_FIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TH_FIN 1 1 1 1 1 +.syscon misc TH_FIN 1 1 1 1 1 1 diff --git a/libc/sysv/consts/TH_PUSH.s b/libc/sysv/consts/TH_PUSH.s index 331456211..849c40d08 100644 --- a/libc/sysv/consts/TH_PUSH.s +++ b/libc/sysv/consts/TH_PUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TH_PUSH 8 8 8 8 0 +.syscon misc TH_PUSH 8 8 8 8 8 0 diff --git a/libc/sysv/consts/TH_RST.s b/libc/sysv/consts/TH_RST.s index d8dbf32ca..e9435abd7 100644 --- a/libc/sysv/consts/TH_RST.s +++ b/libc/sysv/consts/TH_RST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TH_RST 4 4 4 4 4 +.syscon misc TH_RST 4 4 4 4 4 4 diff --git a/libc/sysv/consts/TH_SYN.s b/libc/sysv/consts/TH_SYN.s index 46c3b0d35..9514f6e32 100644 --- a/libc/sysv/consts/TH_SYN.s +++ b/libc/sysv/consts/TH_SYN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TH_SYN 2 2 2 2 2 +.syscon misc TH_SYN 2 2 2 2 2 2 diff --git a/libc/sysv/consts/TH_URG.s b/libc/sysv/consts/TH_URG.s index d22ab9216..127dca9f7 100644 --- a/libc/sysv/consts/TH_URG.s +++ b/libc/sysv/consts/TH_URG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TH_URG 32 32 32 32 32 +.syscon misc TH_URG 32 32 32 32 32 32 diff --git a/libc/sysv/consts/TIMER_ABSTIME.s b/libc/sysv/consts/TIMER_ABSTIME.s index 990293057..e69fd58fa 100644 --- a/libc/sysv/consts/TIMER_ABSTIME.s +++ b/libc/sysv/consts/TIMER_ABSTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TIMER_ABSTIME 1 0 1 1 0 +.syscon misc TIMER_ABSTIME 1 0 1 1 1 0 diff --git a/libc/sysv/consts/TIME_UTC.s b/libc/sysv/consts/TIME_UTC.s index df67fd6e4..f6b7363fc 100644 --- a/libc/sysv/consts/TIME_UTC.s +++ b/libc/sysv/consts/TIME_UTC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TIME_UTC 1 0 1 0 0 +.syscon misc TIME_UTC 1 0 1 0 0 0 diff --git a/libc/sysv/consts/TIOCCBRK.s b/libc/sysv/consts/TIOCCBRK.s index e7ccd231d..9841a0f33 100644 --- a/libc/sysv/consts/TIOCCBRK.s +++ b/libc/sysv/consts/TIOCCBRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCCBRK 0x5428 0x2000747a 0x2000747a 0x2000747a -1 +.syscon termios TIOCCBRK 0x5428 0x2000747a 0x2000747a 0x2000747a 0x2000747a -1 diff --git a/libc/sysv/consts/TIOCCDTR.s b/libc/sysv/consts/TIOCCDTR.s index 8e3592a27..88463c550 100644 --- a/libc/sysv/consts/TIOCCDTR.s +++ b/libc/sysv/consts/TIOCCDTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCCDTR 0 0x20007478 0x20007478 0x20007478 -1 +.syscon termios TIOCCDTR 0 0x20007478 0x20007478 0x20007478 0x20007478 -1 diff --git a/libc/sysv/consts/TIOCCHKVERAUTH.s b/libc/sysv/consts/TIOCCHKVERAUTH.s index 06ef8a283..3c5275e14 100644 --- a/libc/sysv/consts/TIOCCHKVERAUTH.s +++ b/libc/sysv/consts/TIOCCHKVERAUTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCCHKVERAUTH 0 0 0 0x2000741e -1 +.syscon termios TIOCCHKVERAUTH 0 0 0 0x2000741e 0x2000741e -1 diff --git a/libc/sysv/consts/TIOCCONS.s b/libc/sysv/consts/TIOCCONS.s index 2e187c36b..6457d859d 100644 --- a/libc/sysv/consts/TIOCCONS.s +++ b/libc/sysv/consts/TIOCCONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCCONS 0x541d 0x80047462 0x80047462 0x80047462 -1 +.syscon termios TIOCCONS 0x541d 0x80047462 0x80047462 0x80047462 0x80047462 -1 diff --git a/libc/sysv/consts/TIOCDRAIN.s b/libc/sysv/consts/TIOCDRAIN.s index de2c685a3..cb26199ed 100644 --- a/libc/sysv/consts/TIOCDRAIN.s +++ b/libc/sysv/consts/TIOCDRAIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCDRAIN 0 0x2000745e 0x2000745e 0x2000745e -1 +.syscon termios TIOCDRAIN 0 0x2000745e 0x2000745e 0x2000745e 0x2000745e -1 diff --git a/libc/sysv/consts/TIOCEXT.s b/libc/sysv/consts/TIOCEXT.s index 273adb5d2..f3a1bcb24 100644 --- a/libc/sysv/consts/TIOCEXT.s +++ b/libc/sysv/consts/TIOCEXT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCEXT 0 0x80047460 0x80047460 0x80047460 -1 +.syscon termios TIOCEXT 0 0x80047460 0x80047460 0x80047460 0x80047460 -1 diff --git a/libc/sysv/consts/TIOCFLAG_CLOCAL.s b/libc/sysv/consts/TIOCFLAG_CLOCAL.s index 168be03a4..038873bff 100644 --- a/libc/sysv/consts/TIOCFLAG_CLOCAL.s +++ b/libc/sysv/consts/TIOCFLAG_CLOCAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCFLAG_CLOCAL 0 0 0 0x2 -1 +.syscon termios TIOCFLAG_CLOCAL 0 0 0 0x2 0x2 -1 diff --git a/libc/sysv/consts/TIOCFLAG_MDMBUF.s b/libc/sysv/consts/TIOCFLAG_MDMBUF.s index 2bf31a857..f1c363c8e 100644 --- a/libc/sysv/consts/TIOCFLAG_MDMBUF.s +++ b/libc/sysv/consts/TIOCFLAG_MDMBUF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCFLAG_MDMBUF 0 0 0 0x8 -1 +.syscon termios TIOCFLAG_MDMBUF 0 0 0 0x8 0x8 -1 diff --git a/libc/sysv/consts/TIOCFLAG_PPS.s b/libc/sysv/consts/TIOCFLAG_PPS.s index 2933d5525..3fe5521d4 100644 --- a/libc/sysv/consts/TIOCFLAG_PPS.s +++ b/libc/sysv/consts/TIOCFLAG_PPS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCFLAG_PPS 0 0 0 0x10 -1 +.syscon termios TIOCFLAG_PPS 0 0 0 0x10 0x10 -1 diff --git a/libc/sysv/consts/TIOCFLAG_SOFTCAR.s b/libc/sysv/consts/TIOCFLAG_SOFTCAR.s index 887e4c164..04614a567 100644 --- a/libc/sysv/consts/TIOCFLAG_SOFTCAR.s +++ b/libc/sysv/consts/TIOCFLAG_SOFTCAR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCFLAG_SOFTCAR 0 0 0 0x1 -1 +.syscon termios TIOCFLAG_SOFTCAR 0 0 0 0x1 0x1 -1 diff --git a/libc/sysv/consts/TIOCFLUSH.s b/libc/sysv/consts/TIOCFLUSH.s index f860d6482..aff6911e9 100644 --- a/libc/sysv/consts/TIOCFLUSH.s +++ b/libc/sysv/consts/TIOCFLUSH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCFLUSH 0 0x80047410 0x80047410 0x80047410 -1 +.syscon termios TIOCFLUSH 0 0x80047410 0x80047410 0x80047410 0x80047410 -1 diff --git a/libc/sysv/consts/TIOCGDRAINWAIT.s b/libc/sysv/consts/TIOCGDRAINWAIT.s index a68c73195..6d23dc685 100644 --- a/libc/sysv/consts/TIOCGDRAINWAIT.s +++ b/libc/sysv/consts/TIOCGDRAINWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGDRAINWAIT 0 0x40047456 0x40047456 0 -1 +.syscon termios TIOCGDRAINWAIT 0 0x40047456 0x40047456 0 0 -1 diff --git a/libc/sysv/consts/TIOCGETA.s b/libc/sysv/consts/TIOCGETA.s index 6e208f99c..72ed29556 100644 --- a/libc/sysv/consts/TIOCGETA.s +++ b/libc/sysv/consts/TIOCGETA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat TIOCGETA 0x5401 0x40487413 0x402c7413 0x402c7413 -1 +.syscon compat TIOCGETA 0x5401 0x40487413 0x402c7413 0x402c7413 0x402c7413 -1 diff --git a/libc/sysv/consts/TIOCGETD.s b/libc/sysv/consts/TIOCGETD.s index 2097273c7..befd6e8d5 100644 --- a/libc/sysv/consts/TIOCGETD.s +++ b/libc/sysv/consts/TIOCGETD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGETD 0x5424 0x4004741a 0x4004741a 0x4004741a -1 +.syscon termios TIOCGETD 0x5424 0x4004741a 0x4004741a 0x4004741a 0x4004741a -1 diff --git a/libc/sysv/consts/TIOCGFLAGS.s b/libc/sysv/consts/TIOCGFLAGS.s index 5800eedd7..16853ca82 100644 --- a/libc/sysv/consts/TIOCGFLAGS.s +++ b/libc/sysv/consts/TIOCGFLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGFLAGS 0 0 0 0x4004745d -1 +.syscon termios TIOCGFLAGS 0 0 0 0x4004745d 0x4004745d -1 diff --git a/libc/sysv/consts/TIOCGPGRP.s b/libc/sysv/consts/TIOCGPGRP.s index 563054f70..1fd455b8a 100644 --- a/libc/sysv/consts/TIOCGPGRP.s +++ b/libc/sysv/consts/TIOCGPGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGPGRP 0x540f 0x40047477 0x40047477 0x40047477 -1 +.syscon termios TIOCGPGRP 0x540f 0x40047477 0x40047477 0x40047477 0x40047477 -1 diff --git a/libc/sysv/consts/TIOCGPTN.s b/libc/sysv/consts/TIOCGPTN.s index c78d95324..5fb35e970 100644 --- a/libc/sysv/consts/TIOCGPTN.s +++ b/libc/sysv/consts/TIOCGPTN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGPTN 0x80045430 0 0x4004740f 0 -1 +.syscon termios TIOCGPTN 0x80045430 0 0x4004740f 0 0 -1 diff --git a/libc/sysv/consts/TIOCGSID.s b/libc/sysv/consts/TIOCGSID.s index 0389957a3..aa86dfa1e 100644 --- a/libc/sysv/consts/TIOCGSID.s +++ b/libc/sysv/consts/TIOCGSID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGSID 0x5429 0 0x40047463 0x40047463 -1 +.syscon termios TIOCGSID 0x5429 0 0x40047463 0x40047463 0x40047463 -1 diff --git a/libc/sysv/consts/TIOCGTSTAMP.s b/libc/sysv/consts/TIOCGTSTAMP.s index 3fdef4b95..d1548c0bc 100644 --- a/libc/sysv/consts/TIOCGTSTAMP.s +++ b/libc/sysv/consts/TIOCGTSTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGTSTAMP 0 0 0 0x4010745b -1 +.syscon termios TIOCGTSTAMP 0 0 0 0x4010745b 0x4010745b -1 diff --git a/libc/sysv/consts/TIOCGWINSZ.s b/libc/sysv/consts/TIOCGWINSZ.s index 8419f528a..6d56d2710 100644 --- a/libc/sysv/consts/TIOCGWINSZ.s +++ b/libc/sysv/consts/TIOCGWINSZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCGWINSZ 0x5413 1074295912 1074295912 1074295912 0x5413 +.syscon termios TIOCGWINSZ 0x5413 1074295912 1074295912 1074295912 1074295912 0x5413 diff --git a/libc/sysv/consts/TIOCINQ.s b/libc/sysv/consts/TIOCINQ.s index 5aaaa0af5..55d06c94d 100644 --- a/libc/sysv/consts/TIOCINQ.s +++ b/libc/sysv/consts/TIOCINQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon ioctl TIOCINQ 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f +.syscon ioctl TIOCINQ 0x541b 0x4004667f 0x4004667f 0x4004667f 0x4004667f 0x4004667f diff --git a/libc/sysv/consts/TIOCMBIC.s b/libc/sysv/consts/TIOCMBIC.s index 00312a6c2..e37306342 100644 --- a/libc/sysv/consts/TIOCMBIC.s +++ b/libc/sysv/consts/TIOCMBIC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCMBIC 0x5417 0x8004746b 0x8004746b 0x8004746b -1 +.syscon modem TIOCMBIC 0x5417 0x8004746b 0x8004746b 0x8004746b 0x8004746b -1 diff --git a/libc/sysv/consts/TIOCMBIS.s b/libc/sysv/consts/TIOCMBIS.s index 7faec84ff..0f7ffabb7 100644 --- a/libc/sysv/consts/TIOCMBIS.s +++ b/libc/sysv/consts/TIOCMBIS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCMBIS 0x5416 0x8004746c 0x8004746c 0x8004746c -1 +.syscon modem TIOCMBIS 0x5416 0x8004746c 0x8004746c 0x8004746c 0x8004746c -1 diff --git a/libc/sysv/consts/TIOCMGET.s b/libc/sysv/consts/TIOCMGET.s index db6612dc8..b70031d1f 100644 --- a/libc/sysv/consts/TIOCMGET.s +++ b/libc/sysv/consts/TIOCMGET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCMGET 0x5415 0x4004746a 0x4004746a 0x4004746a -1 +.syscon modem TIOCMGET 0x5415 0x4004746a 0x4004746a 0x4004746a 0x4004746a -1 diff --git a/libc/sysv/consts/TIOCMODG.s b/libc/sysv/consts/TIOCMODG.s index d27e37ba7..f181725de 100644 --- a/libc/sysv/consts/TIOCMODG.s +++ b/libc/sysv/consts/TIOCMODG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCMODG 0 0x40047403 0 0x4004746a -1 +.syscon modem TIOCMODG 0 0x40047403 0 0x4004746a 0x4004746a -1 diff --git a/libc/sysv/consts/TIOCMODS.s b/libc/sysv/consts/TIOCMODS.s index a376f7435..0dbe5d859 100644 --- a/libc/sysv/consts/TIOCMODS.s +++ b/libc/sysv/consts/TIOCMODS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCMODS 0 0x80047404 0 0x8004746d -1 +.syscon modem TIOCMODS 0 0x80047404 0 0x8004746d 0x8004746d -1 diff --git a/libc/sysv/consts/TIOCMSDTRWAIT.s b/libc/sysv/consts/TIOCMSDTRWAIT.s index dd0ae4131..495ebe22e 100644 --- a/libc/sysv/consts/TIOCMSDTRWAIT.s +++ b/libc/sysv/consts/TIOCMSDTRWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCMSDTRWAIT 0 0x8004745b 0x8004745b 0 -1 +.syscon modem TIOCMSDTRWAIT 0 0x8004745b 0x8004745b 0 0 -1 diff --git a/libc/sysv/consts/TIOCMSET.s b/libc/sysv/consts/TIOCMSET.s index 7a80f02ee..fa3e54f9b 100644 --- a/libc/sysv/consts/TIOCMSET.s +++ b/libc/sysv/consts/TIOCMSET.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCMSET 0x5418 0x8004746d 0x8004746d 0x8004746d -1 +.syscon modem TIOCMSET 0x5418 0x8004746d 0x8004746d 0x8004746d 0x8004746d -1 diff --git a/libc/sysv/consts/TIOCM_CAR.s b/libc/sysv/consts/TIOCM_CAR.s index 5a19a7f25..0cc763b20 100644 --- a/libc/sysv/consts/TIOCM_CAR.s +++ b/libc/sysv/consts/TIOCM_CAR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_CAR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 +.syscon modem TIOCM_CAR 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 diff --git a/libc/sysv/consts/TIOCM_CD.s b/libc/sysv/consts/TIOCM_CD.s index 9ae781dd5..d4d65f3ad 100644 --- a/libc/sysv/consts/TIOCM_CD.s +++ b/libc/sysv/consts/TIOCM_CD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_CD 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 +.syscon modem TIOCM_CD 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 0b0000000001000000 diff --git a/libc/sysv/consts/TIOCM_CTS.s b/libc/sysv/consts/TIOCM_CTS.s index 3939a89d3..0ce3a3b56 100644 --- a/libc/sysv/consts/TIOCM_CTS.s +++ b/libc/sysv/consts/TIOCM_CTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_CTS 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 +.syscon modem TIOCM_CTS 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 0b0000000000100000 diff --git a/libc/sysv/consts/TIOCM_DCD.s b/libc/sysv/consts/TIOCM_DCD.s index 99a4967bf..451938669 100644 --- a/libc/sysv/consts/TIOCM_DCD.s +++ b/libc/sysv/consts/TIOCM_DCD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_DCD 0 0 0x40 0 -1 +.syscon modem TIOCM_DCD 0 0 0x40 0 0 -1 diff --git a/libc/sysv/consts/TIOCM_DSR.s b/libc/sysv/consts/TIOCM_DSR.s index 2c7cc1a8f..07e43d5d1 100644 --- a/libc/sysv/consts/TIOCM_DSR.s +++ b/libc/sysv/consts/TIOCM_DSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_DSR 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 +.syscon modem TIOCM_DSR 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 0b0000000100000000 diff --git a/libc/sysv/consts/TIOCM_DTR.s b/libc/sysv/consts/TIOCM_DTR.s index fd0c6c3d2..dec50e291 100644 --- a/libc/sysv/consts/TIOCM_DTR.s +++ b/libc/sysv/consts/TIOCM_DTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_DTR 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 +.syscon modem TIOCM_DTR 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 0b0000000000000010 diff --git a/libc/sysv/consts/TIOCM_LE.s b/libc/sysv/consts/TIOCM_LE.s index cb97e4a27..474c27487 100644 --- a/libc/sysv/consts/TIOCM_LE.s +++ b/libc/sysv/consts/TIOCM_LE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_LE 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 +.syscon modem TIOCM_LE 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 0b0000000000000001 diff --git a/libc/sysv/consts/TIOCM_RI.s b/libc/sysv/consts/TIOCM_RI.s index a52bcea6c..89c21de66 100644 --- a/libc/sysv/consts/TIOCM_RI.s +++ b/libc/sysv/consts/TIOCM_RI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_RI 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 +.syscon modem TIOCM_RI 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 diff --git a/libc/sysv/consts/TIOCM_RNG.s b/libc/sysv/consts/TIOCM_RNG.s index 814701b35..54f0a75f6 100644 --- a/libc/sysv/consts/TIOCM_RNG.s +++ b/libc/sysv/consts/TIOCM_RNG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_RNG 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 +.syscon modem TIOCM_RNG 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 0b0000000010000000 diff --git a/libc/sysv/consts/TIOCM_RTS.s b/libc/sysv/consts/TIOCM_RTS.s index e98e432cc..737a5877e 100644 --- a/libc/sysv/consts/TIOCM_RTS.s +++ b/libc/sysv/consts/TIOCM_RTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_RTS 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 +.syscon modem TIOCM_RTS 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 0b0000000000000100 diff --git a/libc/sysv/consts/TIOCM_SR.s b/libc/sysv/consts/TIOCM_SR.s index 6fa7c3ba7..5a924801c 100644 --- a/libc/sysv/consts/TIOCM_SR.s +++ b/libc/sysv/consts/TIOCM_SR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_SR 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 +.syscon modem TIOCM_SR 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 0b0000000000010000 diff --git a/libc/sysv/consts/TIOCM_ST.s b/libc/sysv/consts/TIOCM_ST.s index ac2acf33f..06e09a792 100644 --- a/libc/sysv/consts/TIOCM_ST.s +++ b/libc/sysv/consts/TIOCM_ST.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon modem TIOCM_ST 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 +.syscon modem TIOCM_ST 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 0b0000000000001000 diff --git a/libc/sysv/consts/TIOCNOTTY.s b/libc/sysv/consts/TIOCNOTTY.s index f6d1f260d..ae2deb6dc 100644 --- a/libc/sysv/consts/TIOCNOTTY.s +++ b/libc/sysv/consts/TIOCNOTTY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCNOTTY 0x5422 0x20007471 0x20007471 0x20007471 -1 +.syscon termios TIOCNOTTY 0x5422 0x20007471 0x20007471 0x20007471 0x20007471 -1 diff --git a/libc/sysv/consts/TIOCNXCL.s b/libc/sysv/consts/TIOCNXCL.s index 723dbced9..7dd9ff90a 100644 --- a/libc/sysv/consts/TIOCNXCL.s +++ b/libc/sysv/consts/TIOCNXCL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCNXCL 0x540d 0x2000740e 0x2000740e 0x2000740e -1 +.syscon termios TIOCNXCL 0x540d 0x2000740e 0x2000740e 0x2000740e 0x2000740e -1 diff --git a/libc/sysv/consts/TIOCOUTQ.s b/libc/sysv/consts/TIOCOUTQ.s index 9fd4d6006..29da56123 100644 --- a/libc/sysv/consts/TIOCOUTQ.s +++ b/libc/sysv/consts/TIOCOUTQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCOUTQ 0x5411 0x40047473 0x40047473 0x40047473 -1 +.syscon termios TIOCOUTQ 0x5411 0x40047473 0x40047473 0x40047473 0x40047473 -1 diff --git a/libc/sysv/consts/TIOCPKT.s b/libc/sysv/consts/TIOCPKT.s index f7baf555e..ad5249b19 100644 --- a/libc/sysv/consts/TIOCPKT.s +++ b/libc/sysv/consts/TIOCPKT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT 0x5420 0x80047470 0x80047470 0x80047470 -1 +.syscon pty TIOCPKT 0x5420 0x80047470 0x80047470 0x80047470 0x80047470 -1 diff --git a/libc/sysv/consts/TIOCPKT_DATA.s b/libc/sysv/consts/TIOCPKT_DATA.s index 558167355..3657bdbde 100644 --- a/libc/sysv/consts/TIOCPKT_DATA.s +++ b/libc/sysv/consts/TIOCPKT_DATA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_DATA 0 0 0 0 0 +.syscon pty TIOCPKT_DATA 0 0 0 0 0 0 diff --git a/libc/sysv/consts/TIOCPKT_DOSTOP.s b/libc/sysv/consts/TIOCPKT_DOSTOP.s index c61f29391..15b2d8b58 100644 --- a/libc/sysv/consts/TIOCPKT_DOSTOP.s +++ b/libc/sysv/consts/TIOCPKT_DOSTOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_DOSTOP 32 32 32 32 32 +.syscon pty TIOCPKT_DOSTOP 32 32 32 32 32 32 diff --git a/libc/sysv/consts/TIOCPKT_FLUSHREAD.s b/libc/sysv/consts/TIOCPKT_FLUSHREAD.s index dc60a2ef6..be09eaa8a 100644 --- a/libc/sysv/consts/TIOCPKT_FLUSHREAD.s +++ b/libc/sysv/consts/TIOCPKT_FLUSHREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_FLUSHREAD 1 1 1 1 1 +.syscon pty TIOCPKT_FLUSHREAD 1 1 1 1 1 1 diff --git a/libc/sysv/consts/TIOCPKT_FLUSHWRITE.s b/libc/sysv/consts/TIOCPKT_FLUSHWRITE.s index a3ba7aa8e..7ddc31cd6 100644 --- a/libc/sysv/consts/TIOCPKT_FLUSHWRITE.s +++ b/libc/sysv/consts/TIOCPKT_FLUSHWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_FLUSHWRITE 2 2 2 2 2 +.syscon pty TIOCPKT_FLUSHWRITE 2 2 2 2 2 2 diff --git a/libc/sysv/consts/TIOCPKT_IOCTL.s b/libc/sysv/consts/TIOCPKT_IOCTL.s index 6e79b5c50..79540fcdc 100644 --- a/libc/sysv/consts/TIOCPKT_IOCTL.s +++ b/libc/sysv/consts/TIOCPKT_IOCTL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_IOCTL 64 64 64 64 64 +.syscon pty TIOCPKT_IOCTL 64 64 64 64 64 64 diff --git a/libc/sysv/consts/TIOCPKT_NOSTOP.s b/libc/sysv/consts/TIOCPKT_NOSTOP.s index 412189543..ecaa90f7a 100644 --- a/libc/sysv/consts/TIOCPKT_NOSTOP.s +++ b/libc/sysv/consts/TIOCPKT_NOSTOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_NOSTOP 16 16 16 16 16 +.syscon pty TIOCPKT_NOSTOP 16 16 16 16 16 16 diff --git a/libc/sysv/consts/TIOCPKT_START.s b/libc/sysv/consts/TIOCPKT_START.s index aa807a6c8..4ea740914 100644 --- a/libc/sysv/consts/TIOCPKT_START.s +++ b/libc/sysv/consts/TIOCPKT_START.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_START 8 8 8 8 8 +.syscon pty TIOCPKT_START 8 8 8 8 8 8 diff --git a/libc/sysv/consts/TIOCPKT_STOP.s b/libc/sysv/consts/TIOCPKT_STOP.s index 1b2bb7581..c8280bebe 100644 --- a/libc/sysv/consts/TIOCPKT_STOP.s +++ b/libc/sysv/consts/TIOCPKT_STOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCPKT_STOP 4 4 4 4 4 +.syscon pty TIOCPKT_STOP 4 4 4 4 4 4 diff --git a/libc/sysv/consts/TIOCPTMASTER.s b/libc/sysv/consts/TIOCPTMASTER.s index 8fd2cbeea..55ef8689e 100644 --- a/libc/sysv/consts/TIOCPTMASTER.s +++ b/libc/sysv/consts/TIOCPTMASTER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCPTMASTER 0 0 0x2000741c 0 -1 +.syscon termios TIOCPTMASTER 0 0 0x2000741c 0 0 -1 diff --git a/libc/sysv/consts/TIOCREMOTE.s b/libc/sysv/consts/TIOCREMOTE.s index 0edb3999c..5efb12a52 100644 --- a/libc/sysv/consts/TIOCREMOTE.s +++ b/libc/sysv/consts/TIOCREMOTE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCREMOTE 0 0x80047469 0 0x80047469 -1 +.syscon termios TIOCREMOTE 0 0x80047469 0 0x80047469 0x80047469 -1 diff --git a/libc/sysv/consts/TIOCSBRK.s b/libc/sysv/consts/TIOCSBRK.s index e398bfa76..72a94223c 100644 --- a/libc/sysv/consts/TIOCSBRK.s +++ b/libc/sysv/consts/TIOCSBRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSBRK 0x5427 0x2000747b 0x2000747b 0x2000747b -1 +.syscon termios TIOCSBRK 0x5427 0x2000747b 0x2000747b 0x2000747b 0x2000747b -1 diff --git a/libc/sysv/consts/TIOCSCTTY.s b/libc/sysv/consts/TIOCSCTTY.s index b868a1e29..61dfd09e5 100644 --- a/libc/sysv/consts/TIOCSCTTY.s +++ b/libc/sysv/consts/TIOCSCTTY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSCTTY 0x540e 0x20007461 0x20007461 0x20007461 -1 +.syscon termios TIOCSCTTY 0x540e 0x20007461 0x20007461 0x20007461 0x20007461 -1 diff --git a/libc/sysv/consts/TIOCSDRAINWAIT.s b/libc/sysv/consts/TIOCSDRAINWAIT.s index 6c0dfa470..221c52bef 100644 --- a/libc/sysv/consts/TIOCSDRAINWAIT.s +++ b/libc/sysv/consts/TIOCSDRAINWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSDRAINWAIT 0 0x80047457 0x80047457 0 -1 +.syscon termios TIOCSDRAINWAIT 0 0x80047457 0x80047457 0 0 -1 diff --git a/libc/sysv/consts/TIOCSDTR.s b/libc/sysv/consts/TIOCSDTR.s index c2716ff62..687289797 100644 --- a/libc/sysv/consts/TIOCSDTR.s +++ b/libc/sysv/consts/TIOCSDTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSDTR 0 0x20007479 0x20007479 0x20007479 -1 +.syscon termios TIOCSDTR 0 0x20007479 0x20007479 0x20007479 0x20007479 -1 diff --git a/libc/sysv/consts/TIOCSERGETLSR.s b/libc/sysv/consts/TIOCSERGETLSR.s index e096f3511..5b2885c08 100644 --- a/libc/sysv/consts/TIOCSERGETLSR.s +++ b/libc/sysv/consts/TIOCSERGETLSR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSERGETLSR 0x5459 0 0 0 0 +.syscon termios TIOCSERGETLSR 0x5459 0 0 0 0 0 diff --git a/libc/sysv/consts/TIOCSERGETMULTI.s b/libc/sysv/consts/TIOCSERGETMULTI.s index f4927e888..4eb0dfcd5 100644 --- a/libc/sysv/consts/TIOCSERGETMULTI.s +++ b/libc/sysv/consts/TIOCSERGETMULTI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSERGETMULTI 0x545a 0 0 0 0 +.syscon termios TIOCSERGETMULTI 0x545a 0 0 0 0 0 diff --git a/libc/sysv/consts/TIOCSERSETMULTI.s b/libc/sysv/consts/TIOCSERSETMULTI.s index 95b2626eb..68f959b49 100644 --- a/libc/sysv/consts/TIOCSERSETMULTI.s +++ b/libc/sysv/consts/TIOCSERSETMULTI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSERSETMULTI 0x545b 0 0 0 0 +.syscon termios TIOCSERSETMULTI 0x545b 0 0 0 0 0 diff --git a/libc/sysv/consts/TIOCSER_TEMT.s b/libc/sysv/consts/TIOCSER_TEMT.s index b412417ba..155dd30f1 100644 --- a/libc/sysv/consts/TIOCSER_TEMT.s +++ b/libc/sysv/consts/TIOCSER_TEMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSER_TEMT 1 0 0 0 0 +.syscon termios TIOCSER_TEMT 1 0 0 0 0 0 diff --git a/libc/sysv/consts/TIOCSETA.s b/libc/sysv/consts/TIOCSETA.s index 6706f696f..ae8b36acf 100644 --- a/libc/sysv/consts/TIOCSETA.s +++ b/libc/sysv/consts/TIOCSETA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat TIOCSETA 0x5402 0x80487414 0x802c7414 0x802c7414 0x5402 +.syscon compat TIOCSETA 0x5402 0x80487414 0x802c7414 0x802c7414 0x802c7414 0x5402 diff --git a/libc/sysv/consts/TIOCSETAF.s b/libc/sysv/consts/TIOCSETAF.s index 5f75db0c7..ae957c22c 100644 --- a/libc/sysv/consts/TIOCSETAF.s +++ b/libc/sysv/consts/TIOCSETAF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat TIOCSETAF 0x5404 0x80487416 0x802c7416 0x802c7416 0x5402 +.syscon compat TIOCSETAF 0x5404 0x80487416 0x802c7416 0x802c7416 0x802c7416 0x5402 diff --git a/libc/sysv/consts/TIOCSETAW.s b/libc/sysv/consts/TIOCSETAW.s index 5197487d7..0a0a689a2 100644 --- a/libc/sysv/consts/TIOCSETAW.s +++ b/libc/sysv/consts/TIOCSETAW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon compat TIOCSETAW 0x5403 0x80487415 0x802c7415 0x802c7415 0x5403 +.syscon compat TIOCSETAW 0x5403 0x80487415 0x802c7415 0x802c7415 0x802c7415 0x5403 diff --git a/libc/sysv/consts/TIOCSETD.s b/libc/sysv/consts/TIOCSETD.s index 0d6418698..f5b52b2cf 100644 --- a/libc/sysv/consts/TIOCSETD.s +++ b/libc/sysv/consts/TIOCSETD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSETD 0x5423 0x8004741b 0x8004741b 0x8004741b -1 +.syscon termios TIOCSETD 0x5423 0x8004741b 0x8004741b 0x8004741b 0x8004741b -1 diff --git a/libc/sysv/consts/TIOCSETVERAUTH.s b/libc/sysv/consts/TIOCSETVERAUTH.s index b8501fde6..d25434473 100644 --- a/libc/sysv/consts/TIOCSETVERAUTH.s +++ b/libc/sysv/consts/TIOCSETVERAUTH.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSETVERAUTH 0 0 0 0x8004741c -1 +.syscon termios TIOCSETVERAUTH 0 0 0 0x8004741c 0x8004741c -1 diff --git a/libc/sysv/consts/TIOCSFLAGS.s b/libc/sysv/consts/TIOCSFLAGS.s index 65b3773dd..1f2fd0569 100644 --- a/libc/sysv/consts/TIOCSFLAGS.s +++ b/libc/sysv/consts/TIOCSFLAGS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSFLAGS 0 0 0 0x8004745c -1 +.syscon termios TIOCSFLAGS 0 0 0 0x8004745c 0x8004745c -1 diff --git a/libc/sysv/consts/TIOCSIG.s b/libc/sysv/consts/TIOCSIG.s index d20070b4a..7971cae3c 100644 --- a/libc/sysv/consts/TIOCSIG.s +++ b/libc/sysv/consts/TIOCSIG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSIG 0x40045436 0x2000745f 0x2004745f 0x8004745f -1 +.syscon termios TIOCSIG 0x40045436 0x2000745f 0x2004745f 0x8004745f 0x8004745f -1 diff --git a/libc/sysv/consts/TIOCSPGRP.s b/libc/sysv/consts/TIOCSPGRP.s index d8b6f2b7c..eaacbb0ee 100644 --- a/libc/sysv/consts/TIOCSPGRP.s +++ b/libc/sysv/consts/TIOCSPGRP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSPGRP 0x5410 0x80047476 0x80047476 0x80047476 -1 +.syscon termios TIOCSPGRP 0x5410 0x80047476 0x80047476 0x80047476 0x80047476 -1 diff --git a/libc/sysv/consts/TIOCSPTLCK.s b/libc/sysv/consts/TIOCSPTLCK.s index 68d4107a1..4313b0ff8 100644 --- a/libc/sysv/consts/TIOCSPTLCK.s +++ b/libc/sysv/consts/TIOCSPTLCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon pty TIOCSPTLCK 0x40045431 0 0 0 -1 +.syscon pty TIOCSPTLCK 0x40045431 0 0 0 0 -1 diff --git a/libc/sysv/consts/TIOCSTART.s b/libc/sysv/consts/TIOCSTART.s index 1162777ca..b01fa2474 100644 --- a/libc/sysv/consts/TIOCSTART.s +++ b/libc/sysv/consts/TIOCSTART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSTART 0 0x2000746e 0x2000746e 0x2000746e -1 +.syscon termios TIOCSTART 0 0x2000746e 0x2000746e 0x2000746e 0x2000746e -1 diff --git a/libc/sysv/consts/TIOCSTAT.s b/libc/sysv/consts/TIOCSTAT.s index 1e7ac40e3..747a92de2 100644 --- a/libc/sysv/consts/TIOCSTAT.s +++ b/libc/sysv/consts/TIOCSTAT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSTAT 0 0x20007465 0x20007465 0x20007465 -1 +.syscon termios TIOCSTAT 0 0x20007465 0x20007465 0x20007465 0x20007465 -1 diff --git a/libc/sysv/consts/TIOCSTI.s b/libc/sysv/consts/TIOCSTI.s index 54e48a336..de47c8c5e 100644 --- a/libc/sysv/consts/TIOCSTI.s +++ b/libc/sysv/consts/TIOCSTI.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSTI 0x5412 0x80017472 0x80017472 0 -1 +.syscon termios TIOCSTI 0x5412 0x80017472 0x80017472 0 0 -1 diff --git a/libc/sysv/consts/TIOCSTSTAMP.s b/libc/sysv/consts/TIOCSTSTAMP.s index 794b98f41..7a6122400 100644 --- a/libc/sysv/consts/TIOCSTSTAMP.s +++ b/libc/sysv/consts/TIOCSTSTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSTSTAMP 0 0 0 0x8008745a -1 +.syscon termios TIOCSTSTAMP 0 0 0 0x8008745a 0x8008745a -1 diff --git a/libc/sysv/consts/TIOCSWINSZ.s b/libc/sysv/consts/TIOCSWINSZ.s index fd5ac68f3..d41654f74 100644 --- a/libc/sysv/consts/TIOCSWINSZ.s +++ b/libc/sysv/consts/TIOCSWINSZ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCSWINSZ 0x5414 0x80087467 0x80087467 0x80087467 0x5414 +.syscon termios TIOCSWINSZ 0x5414 0x80087467 0x80087467 0x80087467 0x80087467 0x5414 diff --git a/libc/sysv/consts/TIOCTIMESTAMP.s b/libc/sysv/consts/TIOCTIMESTAMP.s index 45c35c6e6..11f87c6b5 100644 --- a/libc/sysv/consts/TIOCTIMESTAMP.s +++ b/libc/sysv/consts/TIOCTIMESTAMP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCTIMESTAMP 0 0x40107459 0x40107459 0 -1 +.syscon termios TIOCTIMESTAMP 0 0x40107459 0x40107459 0 0 -1 diff --git a/libc/sysv/consts/TIOCUCNTL_CBRK.s b/libc/sysv/consts/TIOCUCNTL_CBRK.s index c9c695a5a..f62ea4f68 100644 --- a/libc/sysv/consts/TIOCUCNTL_CBRK.s +++ b/libc/sysv/consts/TIOCUCNTL_CBRK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TIOCUCNTL_CBRK 0 0 0 0x7a -1 +.syscon termios TIOCUCNTL_CBRK 0 0 0 0x7a 0x7a -1 diff --git a/libc/sysv/consts/TMAGLEN.s b/libc/sysv/consts/TMAGLEN.s index 833da7631..f7204fdfe 100644 --- a/libc/sysv/consts/TMAGLEN.s +++ b/libc/sysv/consts/TMAGLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TMAGLEN 6 6 6 6 0 +.syscon misc TMAGLEN 6 6 6 6 6 0 diff --git a/libc/sysv/consts/TMP_MAX.s b/libc/sysv/consts/TMP_MAX.s index a42dcd6cb..3989222a2 100644 --- a/libc/sysv/consts/TMP_MAX.s +++ b/libc/sysv/consts/TMP_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TMP_MAX 0x03a2f8 0x1269ae40 0x1269ae40 0x7fffffff 0 +.syscon misc TMP_MAX 0x03a2f8 0x1269ae40 0x1269ae40 0x7fffffff 0x7fffffff 0 diff --git a/libc/sysv/consts/TOEXEC.s b/libc/sysv/consts/TOEXEC.s index 6cbe33bcc..9e1e00879 100644 --- a/libc/sysv/consts/TOEXEC.s +++ b/libc/sysv/consts/TOEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TOEXEC 1 1 1 1 0 +.syscon misc TOEXEC 1 1 1 1 1 0 diff --git a/libc/sysv/consts/TOREAD.s b/libc/sysv/consts/TOREAD.s index 4225031b5..73ec706db 100644 --- a/libc/sysv/consts/TOREAD.s +++ b/libc/sysv/consts/TOREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TOREAD 4 4 4 4 0 +.syscon misc TOREAD 4 4 4 4 4 0 diff --git a/libc/sysv/consts/TOSTOP.s b/libc/sysv/consts/TOSTOP.s index 0a595ed13..49670f06c 100644 --- a/libc/sysv/consts/TOSTOP.s +++ b/libc/sysv/consts/TOSTOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TOSTOP 0b0000000100000000 4194304 4194304 4194304 0b0000000100000000 +.syscon termios TOSTOP 0b0000000100000000 4194304 4194304 4194304 4194304 0b0000000100000000 diff --git a/libc/sysv/consts/TOWRITE.s b/libc/sysv/consts/TOWRITE.s index d3718aa7c..25a8233b3 100644 --- a/libc/sysv/consts/TOWRITE.s +++ b/libc/sysv/consts/TOWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TOWRITE 2 2 2 2 0 +.syscon misc TOWRITE 2 2 2 2 2 0 diff --git a/libc/sysv/consts/TRANSIENT.s b/libc/sysv/consts/TRANSIENT.s index f9414a7c6..0e5f39d57 100644 --- a/libc/sysv/consts/TRANSIENT.s +++ b/libc/sysv/consts/TRANSIENT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TRANSIENT 4 4 4 4 0 +.syscon misc TRANSIENT 4 4 4 4 4 0 diff --git a/libc/sysv/consts/TRAP_BRKPT.s b/libc/sysv/consts/TRAP_BRKPT.s index 61085617a..65b1c7a70 100644 --- a/libc/sysv/consts/TRAP_BRKPT.s +++ b/libc/sysv/consts/TRAP_BRKPT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TRAP_BRKPT 1 1 1 1 0 +.syscon misc TRAP_BRKPT 1 1 1 1 1 0 diff --git a/libc/sysv/consts/TRAP_TRACE.s b/libc/sysv/consts/TRAP_TRACE.s index 808579965..0c0f1da2e 100644 --- a/libc/sysv/consts/TRAP_TRACE.s +++ b/libc/sysv/consts/TRAP_TRACE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TRAP_TRACE 2 2 2 2 0 +.syscon misc TRAP_TRACE 2 2 2 2 2 0 diff --git a/libc/sysv/consts/TRY_AGAIN.s b/libc/sysv/consts/TRY_AGAIN.s index 0e98c99e4..b72325cbe 100644 --- a/libc/sysv/consts/TRY_AGAIN.s +++ b/libc/sysv/consts/TRY_AGAIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TRY_AGAIN 2 2 2 2 0x2afa +.syscon misc TRY_AGAIN 2 2 2 2 2 0x2afa diff --git a/libc/sysv/consts/TSGID.s b/libc/sysv/consts/TSGID.s index 29b6c5a27..f7d8e9f43 100644 --- a/libc/sysv/consts/TSGID.s +++ b/libc/sysv/consts/TSGID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TSGID 0x0400 0x0400 0x0400 0x0400 0 +.syscon misc TSGID 0x0400 0x0400 0x0400 0x0400 0x0400 0 diff --git a/libc/sysv/consts/TSS_DTOR_ITERATIONS.s b/libc/sysv/consts/TSS_DTOR_ITERATIONS.s index 59349b5a3..d72b6eb2a 100644 --- a/libc/sysv/consts/TSS_DTOR_ITERATIONS.s +++ b/libc/sysv/consts/TSS_DTOR_ITERATIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TSS_DTOR_ITERATIONS 0 0 4 0 0 +.syscon misc TSS_DTOR_ITERATIONS 0 0 4 0 0 0 diff --git a/libc/sysv/consts/TSUID.s b/libc/sysv/consts/TSUID.s index ae7a78edc..100194f69 100644 --- a/libc/sysv/consts/TSUID.s +++ b/libc/sysv/consts/TSUID.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TSUID 0x0800 0x0800 0x0800 0x0800 0 +.syscon misc TSUID 0x0800 0x0800 0x0800 0x0800 0x0800 0 diff --git a/libc/sysv/consts/TSVTX.s b/libc/sysv/consts/TSVTX.s index eb18f1a4b..4426435b8 100644 --- a/libc/sysv/consts/TSVTX.s +++ b/libc/sysv/consts/TSVTX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TSVTX 0x0200 0x0200 0x0200 0x0200 0 +.syscon misc TSVTX 0x0200 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/TTYDEF_CFLAG.s b/libc/sysv/consts/TTYDEF_CFLAG.s index e14dc2584..894dcb895 100644 --- a/libc/sysv/consts/TTYDEF_CFLAG.s +++ b/libc/sysv/consts/TTYDEF_CFLAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TTYDEF_CFLAG 0x05a0 0x4b00 0x4b00 0x4b00 0 +.syscon misc TTYDEF_CFLAG 0x05a0 0x4b00 0x4b00 0x4b00 0x4b00 0 diff --git a/libc/sysv/consts/TTYDEF_IFLAG.s b/libc/sysv/consts/TTYDEF_IFLAG.s index 266163aaf..613357138 100644 --- a/libc/sysv/consts/TTYDEF_IFLAG.s +++ b/libc/sysv/consts/TTYDEF_IFLAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TTYDEF_IFLAG 0x2d22 0x2b02 0x2b02 0x2b02 0 +.syscon misc TTYDEF_IFLAG 0x2d22 0x2b02 0x2b02 0x2b02 0x2b02 0 diff --git a/libc/sysv/consts/TTYDEF_LFLAG.s b/libc/sysv/consts/TTYDEF_LFLAG.s index a2a3a5064..b146f93a2 100644 --- a/libc/sysv/consts/TTYDEF_LFLAG.s +++ b/libc/sysv/consts/TTYDEF_LFLAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TTYDEF_LFLAG 0x8a1b 0x05cb 0x05cb 0x05cb 0 +.syscon misc TTYDEF_LFLAG 0x8a1b 0x05cb 0x05cb 0x05cb 0x05cb 0 diff --git a/libc/sysv/consts/TTYDEF_OFLAG.s b/libc/sysv/consts/TTYDEF_OFLAG.s index 11d9a4051..b6214ee40 100644 --- a/libc/sysv/consts/TTYDEF_OFLAG.s +++ b/libc/sysv/consts/TTYDEF_OFLAG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TTYDEF_OFLAG 0x1805 3 3 7 0 +.syscon misc TTYDEF_OFLAG 0x1805 3 3 7 7 0 diff --git a/libc/sysv/consts/TTYDEF_SPEED.s b/libc/sysv/consts/TTYDEF_SPEED.s index f9f8c0f11..12cb6e7ec 100644 --- a/libc/sysv/consts/TTYDEF_SPEED.s +++ b/libc/sysv/consts/TTYDEF_SPEED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TTYDEF_SPEED 13 0x2580 0x2580 0x2580 0 +.syscon misc TTYDEF_SPEED 13 0x2580 0x2580 0x2580 0x2580 0 diff --git a/libc/sysv/consts/TTYDISC.s b/libc/sysv/consts/TTYDISC.s index cf8f666f6..133d66aa3 100644 --- a/libc/sysv/consts/TTYDISC.s +++ b/libc/sysv/consts/TTYDISC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios TTYDISC 0 0 0 0 -1 +.syscon termios TTYDISC 0 0 0 0 0 -1 diff --git a/libc/sysv/consts/TTY_NAME_MAX.s b/libc/sysv/consts/TTY_NAME_MAX.s index f28e7235a..5f205ebc4 100644 --- a/libc/sysv/consts/TTY_NAME_MAX.s +++ b/libc/sysv/consts/TTY_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TTY_NAME_MAX 0x20 0 0 260 0 +.syscon misc TTY_NAME_MAX 0x20 0 0 260 260 0 diff --git a/libc/sysv/consts/TUEXEC.s b/libc/sysv/consts/TUEXEC.s index 8a83f8475..a5dd244d1 100644 --- a/libc/sysv/consts/TUEXEC.s +++ b/libc/sysv/consts/TUEXEC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TUEXEC 0x40 0x40 0x40 0x40 0 +.syscon misc TUEXEC 0x40 0x40 0x40 0x40 0x40 0 diff --git a/libc/sysv/consts/TUREAD.s b/libc/sysv/consts/TUREAD.s index aca55bf1f..b71218f58 100644 --- a/libc/sysv/consts/TUREAD.s +++ b/libc/sysv/consts/TUREAD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TUREAD 0x0100 0x0100 0x0100 0x0100 0 +.syscon misc TUREAD 0x0100 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/TUWRITE.s b/libc/sysv/consts/TUWRITE.s index 34582bb04..3021ac37e 100644 --- a/libc/sysv/consts/TUWRITE.s +++ b/libc/sysv/consts/TUWRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TUWRITE 0x80 0x80 0x80 0x80 0 +.syscon misc TUWRITE 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/TVERSLEN.s b/libc/sysv/consts/TVERSLEN.s index c9aecb0a7..4611eb4d3 100644 --- a/libc/sysv/consts/TVERSLEN.s +++ b/libc/sysv/consts/TVERSLEN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TVERSLEN 2 2 2 2 0 +.syscon misc TVERSLEN 2 2 2 2 2 0 diff --git a/libc/sysv/consts/TYPE_A.s b/libc/sysv/consts/TYPE_A.s index 31558886c..42f95ba4a 100644 --- a/libc/sysv/consts/TYPE_A.s +++ b/libc/sysv/consts/TYPE_A.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_A 1 1 1 1 0 +.syscon misc TYPE_A 1 1 1 1 1 0 diff --git a/libc/sysv/consts/TYPE_DISK.s b/libc/sysv/consts/TYPE_DISK.s index 08c0ef77f..0555dfdf4 100644 --- a/libc/sysv/consts/TYPE_DISK.s +++ b/libc/sysv/consts/TYPE_DISK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_DISK 0 0 0 0 0 +.syscon misc TYPE_DISK 0 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_E.s b/libc/sysv/consts/TYPE_E.s index 057a5a481..511053e09 100644 --- a/libc/sysv/consts/TYPE_E.s +++ b/libc/sysv/consts/TYPE_E.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_E 2 2 2 2 0 +.syscon misc TYPE_E 2 2 2 2 2 0 diff --git a/libc/sysv/consts/TYPE_ENCLOSURE.s b/libc/sysv/consts/TYPE_ENCLOSURE.s index fef74caef..c1c8705e5 100644 --- a/libc/sysv/consts/TYPE_ENCLOSURE.s +++ b/libc/sysv/consts/TYPE_ENCLOSURE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_ENCLOSURE 13 0 0 0 0 +.syscon misc TYPE_ENCLOSURE 13 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_I.s b/libc/sysv/consts/TYPE_I.s index a3177cedf..dc12cac54 100644 --- a/libc/sysv/consts/TYPE_I.s +++ b/libc/sysv/consts/TYPE_I.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_I 3 3 3 3 0 +.syscon misc TYPE_I 3 3 3 3 3 0 diff --git a/libc/sysv/consts/TYPE_L.s b/libc/sysv/consts/TYPE_L.s index 913b8a223..349ba254d 100644 --- a/libc/sysv/consts/TYPE_L.s +++ b/libc/sysv/consts/TYPE_L.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_L 4 4 4 4 0 +.syscon misc TYPE_L 4 4 4 4 4 0 diff --git a/libc/sysv/consts/TYPE_MEDIUM_CHANGER.s b/libc/sysv/consts/TYPE_MEDIUM_CHANGER.s index 87ed0a142..033c2d8ae 100644 --- a/libc/sysv/consts/TYPE_MEDIUM_CHANGER.s +++ b/libc/sysv/consts/TYPE_MEDIUM_CHANGER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_MEDIUM_CHANGER 8 0 0 0 0 +.syscon misc TYPE_MEDIUM_CHANGER 8 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_MOD.s b/libc/sysv/consts/TYPE_MOD.s index 6e00a2612..4516a8676 100644 --- a/libc/sysv/consts/TYPE_MOD.s +++ b/libc/sysv/consts/TYPE_MOD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_MOD 7 0 0 0 0 +.syscon misc TYPE_MOD 7 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_NO_LUN.s b/libc/sysv/consts/TYPE_NO_LUN.s index 07921e640..9dab9e109 100644 --- a/libc/sysv/consts/TYPE_NO_LUN.s +++ b/libc/sysv/consts/TYPE_NO_LUN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_NO_LUN 127 0 0 0 0 +.syscon misc TYPE_NO_LUN 127 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_PROCESSOR.s b/libc/sysv/consts/TYPE_PROCESSOR.s index 9eb87b5cd..fd59aab5e 100644 --- a/libc/sysv/consts/TYPE_PROCESSOR.s +++ b/libc/sysv/consts/TYPE_PROCESSOR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_PROCESSOR 3 0 0 0 0 +.syscon misc TYPE_PROCESSOR 3 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_ROM.s b/libc/sysv/consts/TYPE_ROM.s index 525ae35ee..a3eb30356 100644 --- a/libc/sysv/consts/TYPE_ROM.s +++ b/libc/sysv/consts/TYPE_ROM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_ROM 5 0 0 0 0 +.syscon misc TYPE_ROM 5 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_SCANNER.s b/libc/sysv/consts/TYPE_SCANNER.s index 5f6f68ba7..87b32f209 100644 --- a/libc/sysv/consts/TYPE_SCANNER.s +++ b/libc/sysv/consts/TYPE_SCANNER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_SCANNER 6 0 0 0 0 +.syscon misc TYPE_SCANNER 6 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_TAPE.s b/libc/sysv/consts/TYPE_TAPE.s index fc4dbc108..f219f6fff 100644 --- a/libc/sysv/consts/TYPE_TAPE.s +++ b/libc/sysv/consts/TYPE_TAPE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_TAPE 1 0 0 0 0 +.syscon misc TYPE_TAPE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/TYPE_WORM.s b/libc/sysv/consts/TYPE_WORM.s index 29d6cc6ef..2948d07b5 100644 --- a/libc/sysv/consts/TYPE_WORM.s +++ b/libc/sysv/consts/TYPE_WORM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc TYPE_WORM 4 0 0 0 0 +.syscon misc TYPE_WORM 4 0 0 0 0 0 diff --git a/libc/sysv/consts/T_FMT.s b/libc/sysv/consts/T_FMT.s index e206f9b96..2a7a77a57 100644 --- a/libc/sysv/consts/T_FMT.s +++ b/libc/sysv/consts/T_FMT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc T_FMT 0x02002a 3 3 2 0 +.syscon misc T_FMT 0x02002a 3 3 2 2 0 diff --git a/libc/sysv/consts/T_FMT_AMPM.s b/libc/sysv/consts/T_FMT_AMPM.s index b347deb9c..d1cd0e091 100644 --- a/libc/sysv/consts/T_FMT_AMPM.s +++ b/libc/sysv/consts/T_FMT_AMPM.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc T_FMT_AMPM 0x02002b 4 4 3 0 +.syscon misc T_FMT_AMPM 0x02002b 4 4 3 3 0 diff --git a/libc/sysv/consts/UDP_ENCAP_ESPINUDP_NON_IKE.s b/libc/sysv/consts/UDP_ENCAP_ESPINUDP_NON_IKE.s index 86dcb206a..b3b7b8225 100644 --- a/libc/sysv/consts/UDP_ENCAP_ESPINUDP_NON_IKE.s +++ b/libc/sysv/consts/UDP_ENCAP_ESPINUDP_NON_IKE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UDP_ENCAP_ESPINUDP_NON_IKE 1 0 1 0 0 +.syscon misc UDP_ENCAP_ESPINUDP_NON_IKE 1 0 1 0 0 0 diff --git a/libc/sysv/consts/UDP_NO_CHECK6_RX.s b/libc/sysv/consts/UDP_NO_CHECK6_RX.s index a6dad40e9..8ac9bf164 100644 --- a/libc/sysv/consts/UDP_NO_CHECK6_RX.s +++ b/libc/sysv/consts/UDP_NO_CHECK6_RX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UDP_NO_CHECK6_RX 102 0 0 0 0 +.syscon misc UDP_NO_CHECK6_RX 102 0 0 0 0 0 diff --git a/libc/sysv/consts/UDP_NO_CHECK6_TX.s b/libc/sysv/consts/UDP_NO_CHECK6_TX.s index b2bf12d10..7214a14c9 100644 --- a/libc/sysv/consts/UDP_NO_CHECK6_TX.s +++ b/libc/sysv/consts/UDP_NO_CHECK6_TX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UDP_NO_CHECK6_TX 101 0 0 0 0 +.syscon misc UDP_NO_CHECK6_TX 101 0 0 0 0 0 diff --git a/libc/sysv/consts/UIO_MAXIOV.s b/libc/sysv/consts/UIO_MAXIOV.s index 5f0883aa8..335579499 100644 --- a/libc/sysv/consts/UIO_MAXIOV.s +++ b/libc/sysv/consts/UIO_MAXIOV.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UIO_MAXIOV 0x0400 0 0 0x0400 0 +.syscon misc UIO_MAXIOV 0x0400 0 0 0x0400 0x0400 0 diff --git a/libc/sysv/consts/UL_GETFSIZE.s b/libc/sysv/consts/UL_GETFSIZE.s index 486db9a9d..efa64a60f 100644 --- a/libc/sysv/consts/UL_GETFSIZE.s +++ b/libc/sysv/consts/UL_GETFSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UL_GETFSIZE 1 1 1 0 0 +.syscon misc UL_GETFSIZE 1 1 1 0 0 0 diff --git a/libc/sysv/consts/UL_SETFSIZE.s b/libc/sysv/consts/UL_SETFSIZE.s index 5d1b21595..a638ceff7 100644 --- a/libc/sysv/consts/UL_SETFSIZE.s +++ b/libc/sysv/consts/UL_SETFSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UL_SETFSIZE 2 2 2 0 0 +.syscon misc UL_SETFSIZE 2 2 2 0 0 0 diff --git a/libc/sysv/consts/UMOUNT_NOFOLLOW.s b/libc/sysv/consts/UMOUNT_NOFOLLOW.s index e3dac7415..22188ed26 100644 --- a/libc/sysv/consts/UMOUNT_NOFOLLOW.s +++ b/libc/sysv/consts/UMOUNT_NOFOLLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UMOUNT_NOFOLLOW 8 0 0 0 0 +.syscon misc UMOUNT_NOFOLLOW 8 0 0 0 0 0 diff --git a/libc/sysv/consts/UNAME26.s b/libc/sysv/consts/UNAME26.s index f168a638b..8d5ec27f5 100644 --- a/libc/sysv/consts/UNAME26.s +++ b/libc/sysv/consts/UNAME26.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty UNAME26 0x0020000 -1 -1 -1 -1 +.syscon prsnlty UNAME26 0x0020000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/UNIT_ATTENTION.s b/libc/sysv/consts/UNIT_ATTENTION.s index f1e89adb3..1368378ed 100644 --- a/libc/sysv/consts/UNIT_ATTENTION.s +++ b/libc/sysv/consts/UNIT_ATTENTION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UNIT_ATTENTION 6 0 0 0 0 +.syscon misc UNIT_ATTENTION 6 0 0 0 0 0 diff --git a/libc/sysv/consts/UPDATE_BLOCK.s b/libc/sysv/consts/UPDATE_BLOCK.s index 223a487a7..66b7d1b3f 100644 --- a/libc/sysv/consts/UPDATE_BLOCK.s +++ b/libc/sysv/consts/UPDATE_BLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UPDATE_BLOCK 61 0 0 0 0 +.syscon misc UPDATE_BLOCK 61 0 0 0 0 0 diff --git a/libc/sysv/consts/USER_PROCESS.s b/libc/sysv/consts/USER_PROCESS.s index c735c3a9b..6245cf726 100644 --- a/libc/sysv/consts/USER_PROCESS.s +++ b/libc/sysv/consts/USER_PROCESS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc USER_PROCESS 7 7 4 0 0 +.syscon misc USER_PROCESS 7 7 4 0 0 0 diff --git a/libc/sysv/consts/USRQUOTA.s b/libc/sysv/consts/USRQUOTA.s index 2e5309d09..7b9768f3d 100644 --- a/libc/sysv/consts/USRQUOTA.s +++ b/libc/sysv/consts/USRQUOTA.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc USRQUOTA 0 0 0 0 0 +.syscon misc USRQUOTA 0 0 0 0 0 0 diff --git a/libc/sysv/consts/UTIME_NOW.s b/libc/sysv/consts/UTIME_NOW.s index 610beeb16..11727eb64 100644 --- a/libc/sysv/consts/UTIME_NOW.s +++ b/libc/sysv/consts/UTIME_NOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon utime UTIME_NOW 0x3fffffff 0x3fffffff -1 -2 0x3fffffff +.syscon utime UTIME_NOW 0x3fffffff 0x3fffffff -1 -2 0x3fffffff -2 diff --git a/libc/sysv/consts/UTIME_OMIT.s b/libc/sysv/consts/UTIME_OMIT.s index 6a6d6d3ac..e7a1c3fcc 100644 --- a/libc/sysv/consts/UTIME_OMIT.s +++ b/libc/sysv/consts/UTIME_OMIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon utime UTIME_OMIT 0x3ffffffe 0x3ffffffe -2 -1 0x3ffffffe +.syscon utime UTIME_OMIT 0x3ffffffe 0x3ffffffe -2 -1 0x3ffffffe -1 diff --git a/libc/sysv/consts/UT_HOSTSIZE.s b/libc/sysv/consts/UT_HOSTSIZE.s index d6482ae94..ac4e5bb51 100644 --- a/libc/sysv/consts/UT_HOSTSIZE.s +++ b/libc/sysv/consts/UT_HOSTSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UT_HOSTSIZE 0x0100 0x10 0 0x0100 0 +.syscon misc UT_HOSTSIZE 0x0100 0x10 0 0x0100 0x0100 0 diff --git a/libc/sysv/consts/UT_LINESIZE.s b/libc/sysv/consts/UT_LINESIZE.s index 983c7c8ec..08cb2ca27 100644 --- a/libc/sysv/consts/UT_LINESIZE.s +++ b/libc/sysv/consts/UT_LINESIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UT_LINESIZE 0x20 8 0 8 0 +.syscon misc UT_LINESIZE 0x20 8 0 8 8 0 diff --git a/libc/sysv/consts/UT_NAMESIZE.s b/libc/sysv/consts/UT_NAMESIZE.s index 53183f3b9..3e05f471b 100644 --- a/libc/sysv/consts/UT_NAMESIZE.s +++ b/libc/sysv/consts/UT_NAMESIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc UT_NAMESIZE 0x20 8 0 0x20 0 +.syscon misc UT_NAMESIZE 0x20 8 0 0x20 0x20 0 diff --git a/libc/sysv/consts/VDISCARD.s b/libc/sysv/consts/VDISCARD.s index 866ee7042..697b7adc3 100644 --- a/libc/sysv/consts/VDISCARD.s +++ b/libc/sysv/consts/VDISCARD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VDISCARD 13 15 15 15 0 +.syscon termios VDISCARD 13 15 15 15 15 0 diff --git a/libc/sysv/consts/VEOF.s b/libc/sysv/consts/VEOF.s index 578cd1501..8793b8756 100644 --- a/libc/sysv/consts/VEOF.s +++ b/libc/sysv/consts/VEOF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VEOF 4 0 0 0 0 +.syscon termios VEOF 4 0 0 0 0 0 diff --git a/libc/sysv/consts/VEOL.s b/libc/sysv/consts/VEOL.s index 55454584a..edb27273e 100644 --- a/libc/sysv/consts/VEOL.s +++ b/libc/sysv/consts/VEOL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VEOL 11 1 1 1 0 +.syscon termios VEOL 11 1 1 1 1 0 diff --git a/libc/sysv/consts/VEOL2.s b/libc/sysv/consts/VEOL2.s index eae1cd06b..64bd62e60 100644 --- a/libc/sysv/consts/VEOL2.s +++ b/libc/sysv/consts/VEOL2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VEOL2 16 2 2 2 0 +.syscon termios VEOL2 16 2 2 2 2 0 diff --git a/libc/sysv/consts/VERASE.s b/libc/sysv/consts/VERASE.s index 4e0fa78d1..b4a494ccc 100644 --- a/libc/sysv/consts/VERASE.s +++ b/libc/sysv/consts/VERASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VERASE 2 3 3 3 0 +.syscon termios VERASE 2 3 3 3 3 0 diff --git a/libc/sysv/consts/VERIFY.s b/libc/sysv/consts/VERIFY.s index a0cae5277..36aa1e347 100644 --- a/libc/sysv/consts/VERIFY.s +++ b/libc/sysv/consts/VERIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VERIFY 47 0 0 0 0 +.syscon termios VERIFY 47 0 0 0 0 0 diff --git a/libc/sysv/consts/VINTR.s b/libc/sysv/consts/VINTR.s index e1c52a120..f7d982b4a 100644 --- a/libc/sysv/consts/VINTR.s +++ b/libc/sysv/consts/VINTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VINTR 0 8 8 8 0 +.syscon termios VINTR 0 8 8 8 8 0 diff --git a/libc/sysv/consts/VKILL.s b/libc/sysv/consts/VKILL.s index adb9809e4..3bdfba07d 100644 --- a/libc/sysv/consts/VKILL.s +++ b/libc/sysv/consts/VKILL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VKILL 3 5 5 5 0 +.syscon termios VKILL 3 5 5 5 5 0 diff --git a/libc/sysv/consts/VLNEXT.s b/libc/sysv/consts/VLNEXT.s index 7f956ce3d..9c47fb05d 100644 --- a/libc/sysv/consts/VLNEXT.s +++ b/libc/sysv/consts/VLNEXT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VLNEXT 15 14 14 14 0 +.syscon termios VLNEXT 15 14 14 14 14 0 diff --git a/libc/sysv/consts/VMIN.s b/libc/sysv/consts/VMIN.s index 0c29076dd..090cfba97 100644 --- a/libc/sysv/consts/VMIN.s +++ b/libc/sysv/consts/VMIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VMIN 6 16 16 16 0 +.syscon termios VMIN 6 16 16 16 16 0 diff --git a/libc/sysv/consts/VOLUME_OVERFLOW.s b/libc/sysv/consts/VOLUME_OVERFLOW.s index 7a55dd9ed..cfd2886e7 100644 --- a/libc/sysv/consts/VOLUME_OVERFLOW.s +++ b/libc/sysv/consts/VOLUME_OVERFLOW.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc VOLUME_OVERFLOW 13 0 0 0 0 +.syscon misc VOLUME_OVERFLOW 13 0 0 0 0 0 diff --git a/libc/sysv/consts/VQUIT.s b/libc/sysv/consts/VQUIT.s index c8ee8e9c4..57d44959d 100644 --- a/libc/sysv/consts/VQUIT.s +++ b/libc/sysv/consts/VQUIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VQUIT 1 9 9 9 0 +.syscon termios VQUIT 1 9 9 9 9 0 diff --git a/libc/sysv/consts/VREPRINT.s b/libc/sysv/consts/VREPRINT.s index 2c631e315..918b52df4 100644 --- a/libc/sysv/consts/VREPRINT.s +++ b/libc/sysv/consts/VREPRINT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VREPRINT 12 6 6 6 0 +.syscon termios VREPRINT 12 6 6 6 6 0 diff --git a/libc/sysv/consts/VSTART.s b/libc/sysv/consts/VSTART.s index b5879e61a..fd9280f88 100644 --- a/libc/sysv/consts/VSTART.s +++ b/libc/sysv/consts/VSTART.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VSTART 8 12 12 12 0 +.syscon termios VSTART 8 12 12 12 12 0 diff --git a/libc/sysv/consts/VSTOP.s b/libc/sysv/consts/VSTOP.s index abeae143c..8caf1a044 100644 --- a/libc/sysv/consts/VSTOP.s +++ b/libc/sysv/consts/VSTOP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VSTOP 9 13 13 13 0 +.syscon termios VSTOP 9 13 13 13 13 0 diff --git a/libc/sysv/consts/VSUSP.s b/libc/sysv/consts/VSUSP.s index e2ecefa6d..1278a554b 100644 --- a/libc/sysv/consts/VSUSP.s +++ b/libc/sysv/consts/VSUSP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VSUSP 10 10 10 10 0 +.syscon termios VSUSP 10 10 10 10 10 0 diff --git a/libc/sysv/consts/VSWTC.s b/libc/sysv/consts/VSWTC.s index 2b141c48c..0a52113d7 100644 --- a/libc/sysv/consts/VSWTC.s +++ b/libc/sysv/consts/VSWTC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VSWTC 7 0 0 0 0 +.syscon termios VSWTC 7 0 0 0 0 0 diff --git a/libc/sysv/consts/VT0.s b/libc/sysv/consts/VT0.s index 42169c6c5..80eefc0f0 100644 --- a/libc/sysv/consts/VT0.s +++ b/libc/sysv/consts/VT0.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VT0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0b0000000000000000 +.syscon termios VT0 0b0000000000000000 0b000000000000000000 0b000000000000000000 0 0 0b0000000000000000 diff --git a/libc/sysv/consts/VT1.s b/libc/sysv/consts/VT1.s index 4d107bc08..b3fdac6db 100644 --- a/libc/sysv/consts/VT1.s +++ b/libc/sysv/consts/VT1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VT1 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0b0100000000000000 +.syscon termios VT1 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0 0b0100000000000000 diff --git a/libc/sysv/consts/VTDLY.s b/libc/sysv/consts/VTDLY.s index 3b7b23144..a685b8e66 100644 --- a/libc/sysv/consts/VTDLY.s +++ b/libc/sysv/consts/VTDLY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VTDLY 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0b0100000000000000 +.syscon termios VTDLY 0b0100000000000000 0b010000000000000000 0b010000000000000000 0 0 0b0100000000000000 diff --git a/libc/sysv/consts/VTIME.s b/libc/sysv/consts/VTIME.s index a30500399..be04cb00c 100644 --- a/libc/sysv/consts/VTIME.s +++ b/libc/sysv/consts/VTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VTIME 5 17 17 17 0 +.syscon termios VTIME 5 17 17 17 17 0 diff --git a/libc/sysv/consts/VWERASE.s b/libc/sysv/consts/VWERASE.s index 18cfe82a4..79d7ecd69 100644 --- a/libc/sysv/consts/VWERASE.s +++ b/libc/sysv/consts/VWERASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios VWERASE 14 4 4 4 0 +.syscon termios VWERASE 14 4 4 4 4 0 diff --git a/libc/sysv/consts/WCONTINUED.s b/libc/sysv/consts/WCONTINUED.s index c7abe517f..9ad325119 100644 --- a/libc/sysv/consts/WCONTINUED.s +++ b/libc/sysv/consts/WCONTINUED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon waitpid WCONTINUED 8 0x10 4 8 0 +.syscon waitpid WCONTINUED 8 0x10 4 8 16 0 diff --git a/libc/sysv/consts/WEOF.s b/libc/sysv/consts/WEOF.s index 44d934dd0..fd34016bf 100644 --- a/libc/sysv/consts/WEOF.s +++ b/libc/sysv/consts/WEOF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WEOF 0xffffffff -1 -1 -1 -1 +.syscon misc WEOF 0xffffffff -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/WEXITED.s b/libc/sysv/consts/WEXITED.s index 0e66ce7f8..eb8bfd22d 100644 --- a/libc/sysv/consts/WEXITED.s +++ b/libc/sysv/consts/WEXITED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon waitid WEXITED 4 4 0x10 0 0 +.syscon waitid WEXITED 4 4 0x10 0 32 0 diff --git a/libc/sysv/consts/WHOLE_SECONDS.s b/libc/sysv/consts/WHOLE_SECONDS.s index 5638d4895..c71c13091 100644 --- a/libc/sysv/consts/WHOLE_SECONDS.s +++ b/libc/sysv/consts/WHOLE_SECONDS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon prsnlty WHOLE_SECONDS 0x2000000 -1 -1 -1 -1 +.syscon prsnlty WHOLE_SECONDS 0x2000000 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/WNOHANG.s b/libc/sysv/consts/WNOHANG.s index 8ac8b014b..48e48fce5 100644 --- a/libc/sysv/consts/WNOHANG.s +++ b/libc/sysv/consts/WNOHANG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon waitpid WNOHANG 1 1 1 1 0 +.syscon waitpid WNOHANG 1 1 1 1 1 0 diff --git a/libc/sysv/consts/WNOWAIT.s b/libc/sysv/consts/WNOWAIT.s index a012a1e1d..7f763b07e 100644 --- a/libc/sysv/consts/WNOWAIT.s +++ b/libc/sysv/consts/WNOWAIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon waitid WNOWAIT 0x01000000 0x20 8 0 0 +.syscon waitid WNOWAIT 0x01000000 0x20 8 0 0x10000 0 diff --git a/libc/sysv/consts/WORD_BIT.s b/libc/sysv/consts/WORD_BIT.s index 2159fa86d..c88579888 100644 --- a/libc/sysv/consts/WORD_BIT.s +++ b/libc/sysv/consts/WORD_BIT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WORD_BIT 0x20 0x20 0x20 0x20 0 +.syscon misc WORD_BIT 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/WRDE_APPEND.s b/libc/sysv/consts/WRDE_APPEND.s index 54657b2db..54743b4c8 100644 --- a/libc/sysv/consts/WRDE_APPEND.s +++ b/libc/sysv/consts/WRDE_APPEND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_APPEND 0 1 1 0 0 +.syscon misc WRDE_APPEND 0 1 1 0 0 0 diff --git a/libc/sysv/consts/WRDE_BADCHAR.s b/libc/sysv/consts/WRDE_BADCHAR.s index 4d66371b9..783162239 100644 --- a/libc/sysv/consts/WRDE_BADCHAR.s +++ b/libc/sysv/consts/WRDE_BADCHAR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_BADCHAR 0 1 1 0 0 +.syscon misc WRDE_BADCHAR 0 1 1 0 0 0 diff --git a/libc/sysv/consts/WRDE_BADVAL.s b/libc/sysv/consts/WRDE_BADVAL.s index c5b0950f3..4fc39d79b 100644 --- a/libc/sysv/consts/WRDE_BADVAL.s +++ b/libc/sysv/consts/WRDE_BADVAL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_BADVAL 0 2 2 0 0 +.syscon misc WRDE_BADVAL 0 2 2 0 0 0 diff --git a/libc/sysv/consts/WRDE_CMDSUB.s b/libc/sysv/consts/WRDE_CMDSUB.s index 6c0f67b49..bd0a68a3c 100644 --- a/libc/sysv/consts/WRDE_CMDSUB.s +++ b/libc/sysv/consts/WRDE_CMDSUB.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_CMDSUB 0 3 3 0 0 +.syscon misc WRDE_CMDSUB 0 3 3 0 0 0 diff --git a/libc/sysv/consts/WRDE_DOOFFS.s b/libc/sysv/consts/WRDE_DOOFFS.s index 8465bc344..5b87cf0c1 100644 --- a/libc/sysv/consts/WRDE_DOOFFS.s +++ b/libc/sysv/consts/WRDE_DOOFFS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_DOOFFS 0 2 2 0 0 +.syscon misc WRDE_DOOFFS 0 2 2 0 0 0 diff --git a/libc/sysv/consts/WRDE_NOCMD.s b/libc/sysv/consts/WRDE_NOCMD.s index 333ef0da7..a1d0c5f17 100644 --- a/libc/sysv/consts/WRDE_NOCMD.s +++ b/libc/sysv/consts/WRDE_NOCMD.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_NOCMD 0 4 4 0 0 +.syscon misc WRDE_NOCMD 0 4 4 0 0 0 diff --git a/libc/sysv/consts/WRDE_NOSPACE.s b/libc/sysv/consts/WRDE_NOSPACE.s index c8d504cbc..5a73ea213 100644 --- a/libc/sysv/consts/WRDE_NOSPACE.s +++ b/libc/sysv/consts/WRDE_NOSPACE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_NOSPACE 0 4 4 0 0 +.syscon misc WRDE_NOSPACE 0 4 4 0 0 0 diff --git a/libc/sysv/consts/WRDE_NOSYS.s b/libc/sysv/consts/WRDE_NOSYS.s index dd55320a2..6fc575201 100644 --- a/libc/sysv/consts/WRDE_NOSYS.s +++ b/libc/sysv/consts/WRDE_NOSYS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_NOSYS 0 5 5 0 0 +.syscon misc WRDE_NOSYS 0 5 5 0 0 0 diff --git a/libc/sysv/consts/WRDE_REUSE.s b/libc/sysv/consts/WRDE_REUSE.s index bc63e0094..5be636d1b 100644 --- a/libc/sysv/consts/WRDE_REUSE.s +++ b/libc/sysv/consts/WRDE_REUSE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_REUSE 0 8 8 0 0 +.syscon misc WRDE_REUSE 0 8 8 0 0 0 diff --git a/libc/sysv/consts/WRDE_SHOWERR.s b/libc/sysv/consts/WRDE_SHOWERR.s index 8d508f2c2..d847e6628 100644 --- a/libc/sysv/consts/WRDE_SHOWERR.s +++ b/libc/sysv/consts/WRDE_SHOWERR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_SHOWERR 0 0x10 0x10 0 0 +.syscon misc WRDE_SHOWERR 0 0x10 0x10 0 0 0 diff --git a/libc/sysv/consts/WRDE_SYNTAX.s b/libc/sysv/consts/WRDE_SYNTAX.s index 97775b5b3..2009553d0 100644 --- a/libc/sysv/consts/WRDE_SYNTAX.s +++ b/libc/sysv/consts/WRDE_SYNTAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_SYNTAX 0 6 6 0 0 +.syscon misc WRDE_SYNTAX 0 6 6 0 0 0 diff --git a/libc/sysv/consts/WRDE_UNDEF.s b/libc/sysv/consts/WRDE_UNDEF.s index f1192b19e..41c1dc0bb 100644 --- a/libc/sysv/consts/WRDE_UNDEF.s +++ b/libc/sysv/consts/WRDE_UNDEF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRDE_UNDEF 0 0x20 0x20 0 0 +.syscon misc WRDE_UNDEF 0 0x20 0x20 0 0 0 diff --git a/libc/sysv/consts/WRITE_10.s b/libc/sysv/consts/WRITE_10.s index 48073a970..10085fca9 100644 --- a/libc/sysv/consts/WRITE_10.s +++ b/libc/sysv/consts/WRITE_10.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_10 42 0 0 0 0 +.syscon misc WRITE_10 42 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_12.s b/libc/sysv/consts/WRITE_12.s index 9af0c6339..04ce09a02 100644 --- a/libc/sysv/consts/WRITE_12.s +++ b/libc/sysv/consts/WRITE_12.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_12 170 0 0 0 0 +.syscon misc WRITE_12 170 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_6.s b/libc/sysv/consts/WRITE_6.s index 9bb2c0eb5..76189349e 100644 --- a/libc/sysv/consts/WRITE_6.s +++ b/libc/sysv/consts/WRITE_6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_6 10 0 0 0 0 +.syscon misc WRITE_6 10 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_BUFFER.s b/libc/sysv/consts/WRITE_BUFFER.s index 63afd0389..ce283d371 100644 --- a/libc/sysv/consts/WRITE_BUFFER.s +++ b/libc/sysv/consts/WRITE_BUFFER.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_BUFFER 59 0 0 0 0 +.syscon misc WRITE_BUFFER 59 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_FILEMARKS.s b/libc/sysv/consts/WRITE_FILEMARKS.s index 8b4d08ff2..4caf32d4d 100644 --- a/libc/sysv/consts/WRITE_FILEMARKS.s +++ b/libc/sysv/consts/WRITE_FILEMARKS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_FILEMARKS 0x10 0 0 0 0 +.syscon misc WRITE_FILEMARKS 0x10 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_LONG.s b/libc/sysv/consts/WRITE_LONG.s index ab5e38283..c9847125e 100644 --- a/libc/sysv/consts/WRITE_LONG.s +++ b/libc/sysv/consts/WRITE_LONG.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_LONG 63 0 0 0 0 +.syscon misc WRITE_LONG 63 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_LONG_2.s b/libc/sysv/consts/WRITE_LONG_2.s index 449234030..3bfcb0902 100644 --- a/libc/sysv/consts/WRITE_LONG_2.s +++ b/libc/sysv/consts/WRITE_LONG_2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_LONG_2 234 0 0 0 0 +.syscon misc WRITE_LONG_2 234 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_SAME.s b/libc/sysv/consts/WRITE_SAME.s index a1112131d..4f220b4b6 100644 --- a/libc/sysv/consts/WRITE_SAME.s +++ b/libc/sysv/consts/WRITE_SAME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_SAME 65 0 0 0 0 +.syscon misc WRITE_SAME 65 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_VERIFY.s b/libc/sysv/consts/WRITE_VERIFY.s index b6d1de679..c9dd4cfd0 100644 --- a/libc/sysv/consts/WRITE_VERIFY.s +++ b/libc/sysv/consts/WRITE_VERIFY.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_VERIFY 46 0 0 0 0 +.syscon misc WRITE_VERIFY 46 0 0 0 0 0 diff --git a/libc/sysv/consts/WRITE_VERIFY_12.s b/libc/sysv/consts/WRITE_VERIFY_12.s index 37a967897..a3dbbf2b6 100644 --- a/libc/sysv/consts/WRITE_VERIFY_12.s +++ b/libc/sysv/consts/WRITE_VERIFY_12.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRITE_VERIFY_12 174 0 0 0 0 +.syscon misc WRITE_VERIFY_12 174 0 0 0 0 0 diff --git a/libc/sysv/consts/WRQ.s b/libc/sysv/consts/WRQ.s index 11962583c..6795b7f49 100644 --- a/libc/sysv/consts/WRQ.s +++ b/libc/sysv/consts/WRQ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc WRQ 2 2 2 2 0 +.syscon misc WRQ 2 2 2 2 2 0 diff --git a/libc/sysv/consts/WSTOPPED.s b/libc/sysv/consts/WSTOPPED.s index 6bcf8b870..0f88c1752 100644 --- a/libc/sysv/consts/WSTOPPED.s +++ b/libc/sysv/consts/WSTOPPED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon waitid WSTOPPED 2 8 2 0 0 +.syscon waitid WSTOPPED 2 8 2 0 2 0 diff --git a/libc/sysv/consts/WUNTRACED.s b/libc/sysv/consts/WUNTRACED.s index f1b19eadc..9de93812a 100644 --- a/libc/sysv/consts/WUNTRACED.s +++ b/libc/sysv/consts/WUNTRACED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon waitpid WUNTRACED 2 2 2 2 0 +.syscon waitpid WUNTRACED 2 2 2 2 2 0 diff --git a/libc/sysv/consts/W_OK.s b/libc/sysv/consts/W_OK.s index e9c157627..dd9ec866a 100644 --- a/libc/sysv/consts/W_OK.s +++ b/libc/sysv/consts/W_OK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon access W_OK 2 2 2 2 0x40000000 +.syscon access W_OK 2 2 2 2 2 0x40000000 diff --git a/libc/sysv/consts/XATTR_CREATE.s b/libc/sysv/consts/XATTR_CREATE.s index 6b73bd55a..053940a56 100644 --- a/libc/sysv/consts/XATTR_CREATE.s +++ b/libc/sysv/consts/XATTR_CREATE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc XATTR_CREATE 1 2 0 0 0 +.syscon misc XATTR_CREATE 1 2 0 0 0 0 diff --git a/libc/sysv/consts/XATTR_REPLACE.s b/libc/sysv/consts/XATTR_REPLACE.s index 36747f7c5..1c1631eb0 100644 --- a/libc/sysv/consts/XATTR_REPLACE.s +++ b/libc/sysv/consts/XATTR_REPLACE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc XATTR_REPLACE 2 4 0 0 0 +.syscon misc XATTR_REPLACE 2 4 0 0 0 0 diff --git a/libc/sysv/consts/XCASE.s b/libc/sysv/consts/XCASE.s index 59b228bcc..375329e40 100644 --- a/libc/sysv/consts/XCASE.s +++ b/libc/sysv/consts/XCASE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios XCASE 0b0000000000000100 0 0 16777216 0b0000000000000100 +.syscon termios XCASE 0b0000000000000100 0 0 16777216 16777216 0b0000000000000100 diff --git a/libc/sysv/consts/XTABS.s b/libc/sysv/consts/XTABS.s index d9aad5839..48c155dd4 100644 --- a/libc/sysv/consts/XTABS.s +++ b/libc/sysv/consts/XTABS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon termios XTABS 0b0001100000000000 0b000000000000000000 0b000000110000000000 0 0b0001100000000000 +.syscon termios XTABS 0b0001100000000000 0b000000000000000000 0b000000110000000000 0 0 0b0001100000000000 diff --git a/libc/sysv/consts/X_OK.s b/libc/sysv/consts/X_OK.s index 470d18aa1..012ae7c9c 100644 --- a/libc/sysv/consts/X_OK.s +++ b/libc/sysv/consts/X_OK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon access X_OK 1 1 1 1 0xa0000000 +.syscon access X_OK 1 1 1 1 1 0xa0000000 diff --git a/libc/sysv/consts/YESEXPR.s b/libc/sysv/consts/YESEXPR.s index 85a61e002..cdd103bf9 100644 --- a/libc/sysv/consts/YESEXPR.s +++ b/libc/sysv/consts/YESEXPR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc YESEXPR 0x050000 52 52 47 0 +.syscon misc YESEXPR 0x050000 52 52 47 47 0 diff --git a/libc/sysv/consts/YESSTR.s b/libc/sysv/consts/YESSTR.s index 01f2a4f47..45e2a90a8 100644 --- a/libc/sysv/consts/YESSTR.s +++ b/libc/sysv/consts/YESSTR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc YESSTR 0x050002 54 54 46 0 +.syscon misc YESSTR 0x050002 54 54 46 46 0 diff --git a/libc/sysv/consts/_IOC_NONE.s b/libc/sysv/consts/_IOC_NONE.s index a71298ffe..73d852eef 100644 --- a/libc/sysv/consts/_IOC_NONE.s +++ b/libc/sysv/consts/_IOC_NONE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _IOC_NONE 0 0 0 0 0 +.syscon misc _IOC_NONE 0 0 0 0 0 0 diff --git a/libc/sysv/consts/_IOC_READ.s b/libc/sysv/consts/_IOC_READ.s index d32687d73..d477fa6b6 100644 --- a/libc/sysv/consts/_IOC_READ.s +++ b/libc/sysv/consts/_IOC_READ.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _IOC_READ 2 0 0 0 0 +.syscon misc _IOC_READ 2 0 0 0 0 0 diff --git a/libc/sysv/consts/_IOC_WRITE.s b/libc/sysv/consts/_IOC_WRITE.s index 72a73b2ae..2b79d27b7 100644 --- a/libc/sysv/consts/_IOC_WRITE.s +++ b/libc/sysv/consts/_IOC_WRITE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _IOC_WRITE 1 0 0 0 0 +.syscon misc _IOC_WRITE 1 0 0 0 0 0 diff --git a/libc/sysv/consts/_LINUX_QUOTA_VERSION.s b/libc/sysv/consts/_LINUX_QUOTA_VERSION.s index 69a84ae62..0067d7a86 100644 --- a/libc/sysv/consts/_LINUX_QUOTA_VERSION.s +++ b/libc/sysv/consts/_LINUX_QUOTA_VERSION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _LINUX_QUOTA_VERSION 2 0 0 0 0 +.syscon misc _LINUX_QUOTA_VERSION 2 0 0 0 0 0 diff --git a/libc/sysv/consts/_POSIX2_BC_BASE_MAX.s b/libc/sysv/consts/_POSIX2_BC_BASE_MAX.s index 2179d49d5..f15cce85c 100644 --- a/libc/sysv/consts/_POSIX2_BC_BASE_MAX.s +++ b/libc/sysv/consts/_POSIX2_BC_BASE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_BC_BASE_MAX 99 99 99 99 0 +.syscon misc _POSIX2_BC_BASE_MAX 99 99 99 99 99 0 diff --git a/libc/sysv/consts/_POSIX2_BC_DIM_MAX.s b/libc/sysv/consts/_POSIX2_BC_DIM_MAX.s index 9327500dd..285d8db06 100644 --- a/libc/sysv/consts/_POSIX2_BC_DIM_MAX.s +++ b/libc/sysv/consts/_POSIX2_BC_DIM_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_BC_DIM_MAX 0x0800 0x0800 0x0800 0x0800 0 +.syscon misc _POSIX2_BC_DIM_MAX 0x0800 0x0800 0x0800 0x0800 0x0800 0 diff --git a/libc/sysv/consts/_POSIX2_BC_SCALE_MAX.s b/libc/sysv/consts/_POSIX2_BC_SCALE_MAX.s index 62ce1e1c5..750080543 100644 --- a/libc/sysv/consts/_POSIX2_BC_SCALE_MAX.s +++ b/libc/sysv/consts/_POSIX2_BC_SCALE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_BC_SCALE_MAX 99 99 99 99 0 +.syscon misc _POSIX2_BC_SCALE_MAX 99 99 99 99 99 0 diff --git a/libc/sysv/consts/_POSIX2_BC_STRING_MAX.s b/libc/sysv/consts/_POSIX2_BC_STRING_MAX.s index b028f0a00..b47c5a3db 100644 --- a/libc/sysv/consts/_POSIX2_BC_STRING_MAX.s +++ b/libc/sysv/consts/_POSIX2_BC_STRING_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x03e8 0 +.syscon misc _POSIX2_BC_STRING_MAX 0x03e8 0x03e8 0x03e8 0x03e8 0x03e8 0 diff --git a/libc/sysv/consts/_POSIX2_CHARCLASS_NAME_MAX.s b/libc/sysv/consts/_POSIX2_CHARCLASS_NAME_MAX.s index 25d078631..b71c94fa1 100644 --- a/libc/sysv/consts/_POSIX2_CHARCLASS_NAME_MAX.s +++ b/libc/sysv/consts/_POSIX2_CHARCLASS_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_CHARCLASS_NAME_MAX 14 14 14 14 0 +.syscon misc _POSIX2_CHARCLASS_NAME_MAX 14 14 14 14 14 0 diff --git a/libc/sysv/consts/_POSIX2_COLL_WEIGHTS_MAX.s b/libc/sysv/consts/_POSIX2_COLL_WEIGHTS_MAX.s index 50f4f6a3d..ef4a7beae 100644 --- a/libc/sysv/consts/_POSIX2_COLL_WEIGHTS_MAX.s +++ b/libc/sysv/consts/_POSIX2_COLL_WEIGHTS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_COLL_WEIGHTS_MAX 2 2 2 2 0 +.syscon misc _POSIX2_COLL_WEIGHTS_MAX 2 2 2 2 2 0 diff --git a/libc/sysv/consts/_POSIX2_C_BIND.s b/libc/sysv/consts/_POSIX2_C_BIND.s index e6718534b..d5817f5d5 100644 --- a/libc/sysv/consts/_POSIX2_C_BIND.s +++ b/libc/sysv/consts/_POSIX2_C_BIND.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_C_BIND 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon misc _POSIX2_C_BIND 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX2_EXPR_NEST_MAX.s b/libc/sysv/consts/_POSIX2_EXPR_NEST_MAX.s index cfce99737..6c9ba07a5 100644 --- a/libc/sysv/consts/_POSIX2_EXPR_NEST_MAX.s +++ b/libc/sysv/consts/_POSIX2_EXPR_NEST_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0 +.syscon misc _POSIX2_EXPR_NEST_MAX 0x20 0x20 0x20 0x20 0x20 0 diff --git a/libc/sysv/consts/_POSIX2_LINE_MAX.s b/libc/sysv/consts/_POSIX2_LINE_MAX.s index 1934c2c17..ab0a00004 100644 --- a/libc/sysv/consts/_POSIX2_LINE_MAX.s +++ b/libc/sysv/consts/_POSIX2_LINE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_LINE_MAX 0x0800 0x0800 0x0800 0x0800 0 +.syscon misc _POSIX2_LINE_MAX 0x0800 0x0800 0x0800 0x0800 0x0800 0 diff --git a/libc/sysv/consts/_POSIX2_RE_DUP_MAX.s b/libc/sysv/consts/_POSIX2_RE_DUP_MAX.s index 9258b9cff..6247a3fee 100644 --- a/libc/sysv/consts/_POSIX2_RE_DUP_MAX.s +++ b/libc/sysv/consts/_POSIX2_RE_DUP_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_RE_DUP_MAX 255 255 255 255 0 +.syscon misc _POSIX2_RE_DUP_MAX 255 255 255 255 255 0 diff --git a/libc/sysv/consts/_POSIX2_VERSION.s b/libc/sysv/consts/_POSIX2_VERSION.s index ffdd9d8b9..6d48aa170 100644 --- a/libc/sysv/consts/_POSIX2_VERSION.s +++ b/libc/sysv/consts/_POSIX2_VERSION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _POSIX2_VERSION 0x031069 0x030db0 0x030a2c 0x031069 0 +.syscon misc _POSIX2_VERSION 0x031069 0x030db0 0x030a2c 0x031069 0x031069 0 diff --git a/libc/sysv/consts/_POSIX_ADVISORY_INFO.s b/libc/sysv/consts/_POSIX_ADVISORY_INFO.s index 05721bb69..f64f720b0 100644 --- a/libc/sysv/consts/_POSIX_ADVISORY_INFO.s +++ b/libc/sysv/consts/_POSIX_ADVISORY_INFO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_ADVISORY_INFO 0x031069 -1 0x030db0 -1 0 +.syscon posix _POSIX_ADVISORY_INFO 0x031069 -1 0x030db0 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_AIO_LISTIO_MAX.s b/libc/sysv/consts/_POSIX_AIO_LISTIO_MAX.s index 1fa223af0..50451fdeb 100644 --- a/libc/sysv/consts/_POSIX_AIO_LISTIO_MAX.s +++ b/libc/sysv/consts/_POSIX_AIO_LISTIO_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_AIO_LISTIO_MAX 2 2 2 0 0 +.syscon posix _POSIX_AIO_LISTIO_MAX 2 2 2 0 0 0 diff --git a/libc/sysv/consts/_POSIX_AIO_MAX.s b/libc/sysv/consts/_POSIX_AIO_MAX.s index 094887338..7cf904ad2 100644 --- a/libc/sysv/consts/_POSIX_AIO_MAX.s +++ b/libc/sysv/consts/_POSIX_AIO_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_AIO_MAX 1 1 1 0 0 +.syscon posix _POSIX_AIO_MAX 1 1 1 0 0 0 diff --git a/libc/sysv/consts/_POSIX_ARG_MAX.s b/libc/sysv/consts/_POSIX_ARG_MAX.s index 94bc014bd..e8f06e832 100644 --- a/libc/sysv/consts/_POSIX_ARG_MAX.s +++ b/libc/sysv/consts/_POSIX_ARG_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_ARG_MAX 0x1000 0x1000 0x1000 0x1000 0 +.syscon posix _POSIX_ARG_MAX 0x1000 0x1000 0x1000 0x1000 0x1000 0 diff --git a/libc/sysv/consts/_POSIX_ASYNCHRONOUS_IO.s b/libc/sysv/consts/_POSIX_ASYNCHRONOUS_IO.s index 26ef4c343..457179f81 100644 --- a/libc/sysv/consts/_POSIX_ASYNCHRONOUS_IO.s +++ b/libc/sysv/consts/_POSIX_ASYNCHRONOUS_IO.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_ASYNCHRONOUS_IO 0x031069 -1 0x030db0 -1 0 +.syscon posix _POSIX_ASYNCHRONOUS_IO 0x031069 -1 0x030db0 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_BARRIERS.s b/libc/sysv/consts/_POSIX_BARRIERS.s index 363268a90..9f43d1e5b 100644 --- a/libc/sysv/consts/_POSIX_BARRIERS.s +++ b/libc/sysv/consts/_POSIX_BARRIERS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_BARRIERS 0x031069 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_BARRIERS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_CHILD_MAX.s b/libc/sysv/consts/_POSIX_CHILD_MAX.s index 077a49883..facabee47 100644 --- a/libc/sysv/consts/_POSIX_CHILD_MAX.s +++ b/libc/sysv/consts/_POSIX_CHILD_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_CHILD_MAX 25 25 25 25 0 +.syscon posix _POSIX_CHILD_MAX 25 25 25 25 25 0 diff --git a/libc/sysv/consts/_POSIX_CHOWN_RESTRICTED.s b/libc/sysv/consts/_POSIX_CHOWN_RESTRICTED.s index cca770ddf..7b9896b2d 100644 --- a/libc/sysv/consts/_POSIX_CHOWN_RESTRICTED.s +++ b/libc/sysv/consts/_POSIX_CHOWN_RESTRICTED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_CHOWN_RESTRICTED 0 0x030db0 1 1 0 +.syscon posix _POSIX_CHOWN_RESTRICTED 0 0x030db0 1 1 1 0 diff --git a/libc/sysv/consts/_POSIX_CLOCKRES_MIN.s b/libc/sysv/consts/_POSIX_CLOCKRES_MIN.s index 9c72496dc..91d055a20 100644 --- a/libc/sysv/consts/_POSIX_CLOCKRES_MIN.s +++ b/libc/sysv/consts/_POSIX_CLOCKRES_MIN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_CLOCKRES_MIN 0x01312d00 0 0x01312d00 0x01312d00 0 +.syscon posix _POSIX_CLOCKRES_MIN 0x01312d00 0 0x01312d00 0x01312d00 0x01312d00 0 diff --git a/libc/sysv/consts/_POSIX_CLOCK_SELECTION.s b/libc/sysv/consts/_POSIX_CLOCK_SELECTION.s index 83421ef72..674394473 100644 --- a/libc/sysv/consts/_POSIX_CLOCK_SELECTION.s +++ b/libc/sysv/consts/_POSIX_CLOCK_SELECTION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_CLOCK_SELECTION 0x031069 -1 -1 -1 0 +.syscon posix _POSIX_CLOCK_SELECTION 0x031069 -1 -1 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_CPUTIME.s b/libc/sysv/consts/_POSIX_CPUTIME.s index 1eedf341e..e3bebf083 100644 --- a/libc/sysv/consts/_POSIX_CPUTIME.s +++ b/libc/sysv/consts/_POSIX_CPUTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_CPUTIME 0 -1 0x030db0 0x031069 0 +.syscon posix _POSIX_CPUTIME 0 -1 0x030db0 0x031069 0x031069 0 diff --git a/libc/sysv/consts/_POSIX_DELAYTIMER_MAX.s b/libc/sysv/consts/_POSIX_DELAYTIMER_MAX.s index eb22be0c3..8e860207e 100644 --- a/libc/sysv/consts/_POSIX_DELAYTIMER_MAX.s +++ b/libc/sysv/consts/_POSIX_DELAYTIMER_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_DELAYTIMER_MAX 0x20 0x20 0x20 0 0 +.syscon posix _POSIX_DELAYTIMER_MAX 0x20 0x20 0x20 0 0 0 diff --git a/libc/sysv/consts/_POSIX_FSYNC.s b/libc/sysv/consts/_POSIX_FSYNC.s index 3fe9a49a9..e953f93f3 100644 --- a/libc/sysv/consts/_POSIX_FSYNC.s +++ b/libc/sysv/consts/_POSIX_FSYNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_FSYNC 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon posix _POSIX_FSYNC 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_HOST_NAME_MAX.s b/libc/sysv/consts/_POSIX_HOST_NAME_MAX.s index 62dfd04ab..03ed0cfb9 100644 --- a/libc/sysv/consts/_POSIX_HOST_NAME_MAX.s +++ b/libc/sysv/consts/_POSIX_HOST_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_HOST_NAME_MAX 255 255 255 255 0 +.syscon posix _POSIX_HOST_NAME_MAX 255 255 255 255 255 0 diff --git a/libc/sysv/consts/_POSIX_IPV6.s b/libc/sysv/consts/_POSIX_IPV6.s index 14347752f..00bf20af6 100644 --- a/libc/sysv/consts/_POSIX_IPV6.s +++ b/libc/sysv/consts/_POSIX_IPV6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_IPV6 0x031069 0x030db0 0 0 0 +.syscon posix _POSIX_IPV6 0x031069 0x030db0 0 0 0 0 diff --git a/libc/sysv/consts/_POSIX_JOB_CONTROL.s b/libc/sysv/consts/_POSIX_JOB_CONTROL.s index 187f77349..3c2ea92b1 100644 --- a/libc/sysv/consts/_POSIX_JOB_CONTROL.s +++ b/libc/sysv/consts/_POSIX_JOB_CONTROL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_JOB_CONTROL 1 0x030db0 1 1 0 +.syscon posix _POSIX_JOB_CONTROL 1 0x030db0 1 1 1 0 diff --git a/libc/sysv/consts/_POSIX_LINK_MAX.s b/libc/sysv/consts/_POSIX_LINK_MAX.s index 48aae2df4..e0e966978 100644 --- a/libc/sysv/consts/_POSIX_LINK_MAX.s +++ b/libc/sysv/consts/_POSIX_LINK_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_LINK_MAX 8 8 8 8 0 +.syscon posix _POSIX_LINK_MAX 8 8 8 8 8 0 diff --git a/libc/sysv/consts/_POSIX_LOGIN_NAME_MAX.s b/libc/sysv/consts/_POSIX_LOGIN_NAME_MAX.s index 9c95b05a5..6ea8b7ad1 100644 --- a/libc/sysv/consts/_POSIX_LOGIN_NAME_MAX.s +++ b/libc/sysv/consts/_POSIX_LOGIN_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_LOGIN_NAME_MAX 9 9 9 9 0 +.syscon posix _POSIX_LOGIN_NAME_MAX 9 9 9 9 9 0 diff --git a/libc/sysv/consts/_POSIX_MAPPED_FILES.s b/libc/sysv/consts/_POSIX_MAPPED_FILES.s index 3671666d0..b2844f916 100644 --- a/libc/sysv/consts/_POSIX_MAPPED_FILES.s +++ b/libc/sysv/consts/_POSIX_MAPPED_FILES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MAPPED_FILES 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon posix _POSIX_MAPPED_FILES 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_MAX_CANON.s b/libc/sysv/consts/_POSIX_MAX_CANON.s index 5491ad427..5df542db2 100644 --- a/libc/sysv/consts/_POSIX_MAX_CANON.s +++ b/libc/sysv/consts/_POSIX_MAX_CANON.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MAX_CANON 255 255 255 255 0 +.syscon posix _POSIX_MAX_CANON 255 255 255 255 255 0 diff --git a/libc/sysv/consts/_POSIX_MAX_INPUT.s b/libc/sysv/consts/_POSIX_MAX_INPUT.s index 144a63777..2f8b1f264 100644 --- a/libc/sysv/consts/_POSIX_MAX_INPUT.s +++ b/libc/sysv/consts/_POSIX_MAX_INPUT.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MAX_INPUT 255 255 255 255 0 +.syscon posix _POSIX_MAX_INPUT 255 255 255 255 255 0 diff --git a/libc/sysv/consts/_POSIX_MEMLOCK.s b/libc/sysv/consts/_POSIX_MEMLOCK.s index a609d2552..71fc5977a 100644 --- a/libc/sysv/consts/_POSIX_MEMLOCK.s +++ b/libc/sysv/consts/_POSIX_MEMLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MEMLOCK 0x031069 -1 -1 0x030db0 0 +.syscon posix _POSIX_MEMLOCK 0x031069 -1 -1 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_MEMLOCK_RANGE.s b/libc/sysv/consts/_POSIX_MEMLOCK_RANGE.s index 3d86891ce..924272ee4 100644 --- a/libc/sysv/consts/_POSIX_MEMLOCK_RANGE.s +++ b/libc/sysv/consts/_POSIX_MEMLOCK_RANGE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MEMLOCK_RANGE 0x031069 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_MEMLOCK_RANGE 0x031069 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_MEMORY_PROTECTION.s b/libc/sysv/consts/_POSIX_MEMORY_PROTECTION.s index f551795f4..0328d4308 100644 --- a/libc/sysv/consts/_POSIX_MEMORY_PROTECTION.s +++ b/libc/sysv/consts/_POSIX_MEMORY_PROTECTION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MEMORY_PROTECTION 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon posix _POSIX_MEMORY_PROTECTION 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_MESSAGE_PASSING.s b/libc/sysv/consts/_POSIX_MESSAGE_PASSING.s index 2edb2c913..165a8c886 100644 --- a/libc/sysv/consts/_POSIX_MESSAGE_PASSING.s +++ b/libc/sysv/consts/_POSIX_MESSAGE_PASSING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MESSAGE_PASSING 0x031069 -1 0x030db0 -1 0 +.syscon posix _POSIX_MESSAGE_PASSING 0x031069 -1 0x030db0 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_MONOTONIC_CLOCK.s b/libc/sysv/consts/_POSIX_MONOTONIC_CLOCK.s index ca235d9fe..161dc36aa 100644 --- a/libc/sysv/consts/_POSIX_MONOTONIC_CLOCK.s +++ b/libc/sysv/consts/_POSIX_MONOTONIC_CLOCK.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MONOTONIC_CLOCK 0 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_MONOTONIC_CLOCK 0 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_MQ_OPEN_MAX.s b/libc/sysv/consts/_POSIX_MQ_OPEN_MAX.s index 6fcb512af..037615591 100644 --- a/libc/sysv/consts/_POSIX_MQ_OPEN_MAX.s +++ b/libc/sysv/consts/_POSIX_MQ_OPEN_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MQ_OPEN_MAX 8 8 8 0 0 +.syscon posix _POSIX_MQ_OPEN_MAX 8 8 8 0 0 0 diff --git a/libc/sysv/consts/_POSIX_MQ_PRIO_MAX.s b/libc/sysv/consts/_POSIX_MQ_PRIO_MAX.s index 8a59f20a8..5d67aaa09 100644 --- a/libc/sysv/consts/_POSIX_MQ_PRIO_MAX.s +++ b/libc/sysv/consts/_POSIX_MQ_PRIO_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_MQ_PRIO_MAX 0x20 0x20 0x20 0 0 +.syscon posix _POSIX_MQ_PRIO_MAX 0x20 0x20 0x20 0 0 0 diff --git a/libc/sysv/consts/_POSIX_NAME_MAX.s b/libc/sysv/consts/_POSIX_NAME_MAX.s index 1bf0744e7..b19ca188f 100644 --- a/libc/sysv/consts/_POSIX_NAME_MAX.s +++ b/libc/sysv/consts/_POSIX_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_NAME_MAX 14 14 14 14 14 +.syscon posix _POSIX_NAME_MAX 14 14 14 14 14 14 diff --git a/libc/sysv/consts/_POSIX_NGROUPS_MAX.s b/libc/sysv/consts/_POSIX_NGROUPS_MAX.s index 6b9054592..c70288639 100644 --- a/libc/sysv/consts/_POSIX_NGROUPS_MAX.s +++ b/libc/sysv/consts/_POSIX_NGROUPS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_NGROUPS_MAX 8 8 8 8 0 +.syscon posix _POSIX_NGROUPS_MAX 8 8 8 8 8 0 diff --git a/libc/sysv/consts/_POSIX_NO_TRUNC.s b/libc/sysv/consts/_POSIX_NO_TRUNC.s index 329973868..233ff02c6 100644 --- a/libc/sysv/consts/_POSIX_NO_TRUNC.s +++ b/libc/sysv/consts/_POSIX_NO_TRUNC.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_NO_TRUNC 1 0x030db0 1 1 0 +.syscon posix _POSIX_NO_TRUNC 1 0x030db0 1 1 1 0 diff --git a/libc/sysv/consts/_POSIX_OPEN_MAX.s b/libc/sysv/consts/_POSIX_OPEN_MAX.s index 6e2f8a727..bc0ac2f45 100644 --- a/libc/sysv/consts/_POSIX_OPEN_MAX.s +++ b/libc/sysv/consts/_POSIX_OPEN_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_OPEN_MAX 20 20 20 20 20 +.syscon posix _POSIX_OPEN_MAX 20 20 20 20 20 20 diff --git a/libc/sysv/consts/_POSIX_PATH_MAX.s b/libc/sysv/consts/_POSIX_PATH_MAX.s index 1f14a108e..a24093a14 100644 --- a/libc/sysv/consts/_POSIX_PATH_MAX.s +++ b/libc/sysv/consts/_POSIX_PATH_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_PATH_MAX 255 255 255 255 255 +.syscon posix _POSIX_PATH_MAX 255 255 255 255 255 255 diff --git a/libc/sysv/consts/_POSIX_PIPE_BUF.s b/libc/sysv/consts/_POSIX_PIPE_BUF.s index d3b7db7fc..73dd428cc 100644 --- a/libc/sysv/consts/_POSIX_PIPE_BUF.s +++ b/libc/sysv/consts/_POSIX_PIPE_BUF.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_PIPE_BUF 0x0200 0x0200 0x0200 0x0200 0 +.syscon posix _POSIX_PIPE_BUF 0x0200 0x0200 0x0200 0x0200 0x0200 0 diff --git a/libc/sysv/consts/_POSIX_RAW_SOCKETS.s b/libc/sysv/consts/_POSIX_RAW_SOCKETS.s index 8fbcab739..a71b242d8 100644 --- a/libc/sysv/consts/_POSIX_RAW_SOCKETS.s +++ b/libc/sysv/consts/_POSIX_RAW_SOCKETS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_RAW_SOCKETS 0x031069 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_RAW_SOCKETS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_READER_WRITER_LOCKS.s b/libc/sysv/consts/_POSIX_READER_WRITER_LOCKS.s index f22c08849..da933e565 100644 --- a/libc/sysv/consts/_POSIX_READER_WRITER_LOCKS.s +++ b/libc/sysv/consts/_POSIX_READER_WRITER_LOCKS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_READER_WRITER_LOCKS 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon posix _POSIX_READER_WRITER_LOCKS 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_REALTIME_SIGNALS.s b/libc/sysv/consts/_POSIX_REALTIME_SIGNALS.s index 1f5832a2f..cc2eb69e3 100644 --- a/libc/sysv/consts/_POSIX_REALTIME_SIGNALS.s +++ b/libc/sysv/consts/_POSIX_REALTIME_SIGNALS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_REALTIME_SIGNALS 0x031069 -1 0x030db0 -1 0 +.syscon posix _POSIX_REALTIME_SIGNALS 0x031069 -1 0x030db0 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_REGEXP.s b/libc/sysv/consts/_POSIX_REGEXP.s index 3f52cb507..14000d970 100644 --- a/libc/sysv/consts/_POSIX_REGEXP.s +++ b/libc/sysv/consts/_POSIX_REGEXP.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_REGEXP 1 0x030db0 1 1 0 +.syscon posix _POSIX_REGEXP 1 0x030db0 1 1 1 0 diff --git a/libc/sysv/consts/_POSIX_RE_DUP_MAX.s b/libc/sysv/consts/_POSIX_RE_DUP_MAX.s index 4bc31b1e9..0f64736fe 100644 --- a/libc/sysv/consts/_POSIX_RE_DUP_MAX.s +++ b/libc/sysv/consts/_POSIX_RE_DUP_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_RE_DUP_MAX 255 255 255 255 0 +.syscon posix _POSIX_RE_DUP_MAX 255 255 255 255 255 0 diff --git a/libc/sysv/consts/_POSIX_RTSIG_MAX.s b/libc/sysv/consts/_POSIX_RTSIG_MAX.s index f86a9f07b..8cef5cab0 100644 --- a/libc/sysv/consts/_POSIX_RTSIG_MAX.s +++ b/libc/sysv/consts/_POSIX_RTSIG_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_RTSIG_MAX 8 8 8 0 0 +.syscon posix _POSIX_RTSIG_MAX 8 8 8 0 0 0 diff --git a/libc/sysv/consts/_POSIX_SAVED_IDS.s b/libc/sysv/consts/_POSIX_SAVED_IDS.s index 8c6821126..8aa772a1a 100644 --- a/libc/sysv/consts/_POSIX_SAVED_IDS.s +++ b/libc/sysv/consts/_POSIX_SAVED_IDS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SAVED_IDS 1 0x030db0 0 1 0 +.syscon posix _POSIX_SAVED_IDS 1 0x030db0 0 1 1 0 diff --git a/libc/sysv/consts/_POSIX_SEMAPHORES.s b/libc/sysv/consts/_POSIX_SEMAPHORES.s index 5133b691c..022bd42b2 100644 --- a/libc/sysv/consts/_POSIX_SEMAPHORES.s +++ b/libc/sysv/consts/_POSIX_SEMAPHORES.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SEMAPHORES 0x031069 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_SEMAPHORES 0x031069 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_SEM_NSEMS_MAX.s b/libc/sysv/consts/_POSIX_SEM_NSEMS_MAX.s index c057b192d..7fc7e7d18 100644 --- a/libc/sysv/consts/_POSIX_SEM_NSEMS_MAX.s +++ b/libc/sysv/consts/_POSIX_SEM_NSEMS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SEM_NSEMS_MAX 0x0100 0x0100 0x0100 0x0100 0 +.syscon posix _POSIX_SEM_NSEMS_MAX 0x0100 0x0100 0x0100 0x0100 0x0100 0 diff --git a/libc/sysv/consts/_POSIX_SEM_VALUE_MAX.s b/libc/sysv/consts/_POSIX_SEM_VALUE_MAX.s index 1f6c3d997..9bc04c168 100644 --- a/libc/sysv/consts/_POSIX_SEM_VALUE_MAX.s +++ b/libc/sysv/consts/_POSIX_SEM_VALUE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SEM_VALUE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0 +.syscon posix _POSIX_SEM_VALUE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0x7fff 0 diff --git a/libc/sysv/consts/_POSIX_SHARED_MEMORY_OBJECTS.s b/libc/sysv/consts/_POSIX_SHARED_MEMORY_OBJECTS.s index 036968460..185777ff0 100644 --- a/libc/sysv/consts/_POSIX_SHARED_MEMORY_OBJECTS.s +++ b/libc/sysv/consts/_POSIX_SHARED_MEMORY_OBJECTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SHARED_MEMORY_OBJECTS 0x031069 -1 0x030db0 0x031069 0 +.syscon posix _POSIX_SHARED_MEMORY_OBJECTS 0x031069 -1 0x030db0 0x031069 0x031069 0 diff --git a/libc/sysv/consts/_POSIX_SHELL.s b/libc/sysv/consts/_POSIX_SHELL.s index 42939f858..bc751373d 100644 --- a/libc/sysv/consts/_POSIX_SHELL.s +++ b/libc/sysv/consts/_POSIX_SHELL.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SHELL 1 0x030db0 1 1 0 +.syscon posix _POSIX_SHELL 1 0x030db0 1 1 1 0 diff --git a/libc/sysv/consts/_POSIX_SIGQUEUE_MAX.s b/libc/sysv/consts/_POSIX_SIGQUEUE_MAX.s index 865119142..209bc365c 100644 --- a/libc/sysv/consts/_POSIX_SIGQUEUE_MAX.s +++ b/libc/sysv/consts/_POSIX_SIGQUEUE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SIGQUEUE_MAX 0x20 0x20 0x20 0 0 +.syscon posix _POSIX_SIGQUEUE_MAX 0x20 0x20 0x20 0 0 0 diff --git a/libc/sysv/consts/_POSIX_SPAWN.s b/libc/sysv/consts/_POSIX_SPAWN.s index a78164626..367f85b67 100644 --- a/libc/sysv/consts/_POSIX_SPAWN.s +++ b/libc/sysv/consts/_POSIX_SPAWN.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SPAWN 0x031069 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_SPAWN 0x031069 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_SPIN_LOCKS.s b/libc/sysv/consts/_POSIX_SPIN_LOCKS.s index 0c22d3cac..49725b5a9 100644 --- a/libc/sysv/consts/_POSIX_SPIN_LOCKS.s +++ b/libc/sysv/consts/_POSIX_SPIN_LOCKS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SPIN_LOCKS 0x031069 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_SPIN_LOCKS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_SSIZE_MAX.s b/libc/sysv/consts/_POSIX_SSIZE_MAX.s index 37d55b749..a924079ca 100644 --- a/libc/sysv/consts/_POSIX_SSIZE_MAX.s +++ b/libc/sysv/consts/_POSIX_SSIZE_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SSIZE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0 +.syscon posix _POSIX_SSIZE_MAX 0x7fff 0x7fff 0x7fff 0x7fff 0x7fff 0 diff --git a/libc/sysv/consts/_POSIX_SS_REPL_MAX.s b/libc/sysv/consts/_POSIX_SS_REPL_MAX.s index 52822883e..4bb823a75 100644 --- a/libc/sysv/consts/_POSIX_SS_REPL_MAX.s +++ b/libc/sysv/consts/_POSIX_SS_REPL_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SS_REPL_MAX 0 4 4 0 0 +.syscon posix _POSIX_SS_REPL_MAX 0 4 4 0 0 0 diff --git a/libc/sysv/consts/_POSIX_STREAM_MAX.s b/libc/sysv/consts/_POSIX_STREAM_MAX.s index 3de97c6e6..1771a3f9a 100644 --- a/libc/sysv/consts/_POSIX_STREAM_MAX.s +++ b/libc/sysv/consts/_POSIX_STREAM_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_STREAM_MAX 8 8 8 8 0 +.syscon posix _POSIX_STREAM_MAX 8 8 8 8 8 0 diff --git a/libc/sysv/consts/_POSIX_SYMLINK_MAX.s b/libc/sysv/consts/_POSIX_SYMLINK_MAX.s index 93cce4a24..0c303b8ab 100644 --- a/libc/sysv/consts/_POSIX_SYMLINK_MAX.s +++ b/libc/sysv/consts/_POSIX_SYMLINK_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SYMLINK_MAX 255 255 255 255 0 +.syscon posix _POSIX_SYMLINK_MAX 255 255 255 255 255 0 diff --git a/libc/sysv/consts/_POSIX_SYMLOOP_MAX.s b/libc/sysv/consts/_POSIX_SYMLOOP_MAX.s index 25c79517b..47b6b6015 100644 --- a/libc/sysv/consts/_POSIX_SYMLOOP_MAX.s +++ b/libc/sysv/consts/_POSIX_SYMLOOP_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_SYMLOOP_MAX 8 8 8 8 0 +.syscon posix _POSIX_SYMLOOP_MAX 8 8 8 8 8 0 diff --git a/libc/sysv/consts/_POSIX_THREADS.s b/libc/sysv/consts/_POSIX_THREADS.s index e9a8ad0d8..d50c1b237 100644 --- a/libc/sysv/consts/_POSIX_THREADS.s +++ b/libc/sysv/consts/_POSIX_THREADS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREADS 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon posix _POSIX_THREADS 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKADDR.s b/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKADDR.s index 4670e65ea..3415ee229 100644 --- a/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKADDR.s +++ b/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKADDR.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_ATTR_STACKADDR 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon posix _POSIX_THREAD_ATTR_STACKADDR 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKSIZE.s b/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKSIZE.s index 5c0bafaf8..d75955de8 100644 --- a/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKSIZE.s +++ b/libc/sysv/consts/_POSIX_THREAD_ATTR_STACKSIZE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_ATTR_STACKSIZE 0x031069 0x030db0 0x030db0 0x030db0 0 +.syscon posix _POSIX_THREAD_ATTR_STACKSIZE 0x031069 0x030db0 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_CPUTIME.s b/libc/sysv/consts/_POSIX_THREAD_CPUTIME.s index 975369aa2..51ef237e3 100644 --- a/libc/sysv/consts/_POSIX_THREAD_CPUTIME.s +++ b/libc/sysv/consts/_POSIX_THREAD_CPUTIME.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_CPUTIME 0 -1 0x030db0 0x031069 0 +.syscon posix _POSIX_THREAD_CPUTIME 0 -1 0x030db0 0x031069 0x031069 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_DESTRUCTOR_ITERATIONS.s b/libc/sysv/consts/_POSIX_THREAD_DESTRUCTOR_ITERATIONS.s index e1afebfc7..109794132 100644 --- a/libc/sysv/consts/_POSIX_THREAD_DESTRUCTOR_ITERATIONS.s +++ b/libc/sysv/consts/_POSIX_THREAD_DESTRUCTOR_ITERATIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 0 +.syscon posix _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4 4 4 4 4 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_KEYS_MAX.s b/libc/sysv/consts/_POSIX_THREAD_KEYS_MAX.s index 93e6f99e6..dd229f75f 100644 --- a/libc/sysv/consts/_POSIX_THREAD_KEYS_MAX.s +++ b/libc/sysv/consts/_POSIX_THREAD_KEYS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_KEYS_MAX 0x80 0x80 0x80 0x80 0 +.syscon posix _POSIX_THREAD_KEYS_MAX 0x80 0x80 0x80 0x80 0x80 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_PRIORITY_SCHEDULING.s b/libc/sysv/consts/_POSIX_THREAD_PRIORITY_SCHEDULING.s index be8d3f031..b5a03f285 100644 --- a/libc/sysv/consts/_POSIX_THREAD_PRIORITY_SCHEDULING.s +++ b/libc/sysv/consts/_POSIX_THREAD_PRIORITY_SCHEDULING.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_PRIORITY_SCHEDULING 0x031069 -1 0x030db0 -1 0 +.syscon posix _POSIX_THREAD_PRIORITY_SCHEDULING 0x031069 -1 0x030db0 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_PROCESS_SHARED.s b/libc/sysv/consts/_POSIX_THREAD_PROCESS_SHARED.s index 58896f0b2..fcbb3efea 100644 --- a/libc/sysv/consts/_POSIX_THREAD_PROCESS_SHARED.s +++ b/libc/sysv/consts/_POSIX_THREAD_PROCESS_SHARED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_PROCESS_SHARED 0x031069 0x030db0 0x030db0 -1 0 +.syscon posix _POSIX_THREAD_PROCESS_SHARED 0x031069 0x030db0 0x030db0 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_SAFE_FUNCTIONS.s b/libc/sysv/consts/_POSIX_THREAD_SAFE_FUNCTIONS.s index 43c528c94..078ae0570 100644 --- a/libc/sysv/consts/_POSIX_THREAD_SAFE_FUNCTIONS.s +++ b/libc/sysv/consts/_POSIX_THREAD_SAFE_FUNCTIONS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_SAFE_FUNCTIONS 0x031069 0x030db0 -1 0x030db0 0 +.syscon posix _POSIX_THREAD_SAFE_FUNCTIONS 0x031069 0x030db0 -1 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_THREAD_THREADS_MAX.s b/libc/sysv/consts/_POSIX_THREAD_THREADS_MAX.s index b19e90cb1..299c8f38b 100644 --- a/libc/sysv/consts/_POSIX_THREAD_THREADS_MAX.s +++ b/libc/sysv/consts/_POSIX_THREAD_THREADS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_THREAD_THREADS_MAX 0x40 0x40 0x40 4 0 +.syscon posix _POSIX_THREAD_THREADS_MAX 0x40 0x40 0x40 4 4 0 diff --git a/libc/sysv/consts/_POSIX_TIMEOUTS.s b/libc/sysv/consts/_POSIX_TIMEOUTS.s index f6161dd68..42f593ce3 100644 --- a/libc/sysv/consts/_POSIX_TIMEOUTS.s +++ b/libc/sysv/consts/_POSIX_TIMEOUTS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TIMEOUTS 0x031069 -1 0x030db0 0x030db0 0 +.syscon posix _POSIX_TIMEOUTS 0x031069 -1 0x030db0 0x030db0 0x030db0 0 diff --git a/libc/sysv/consts/_POSIX_TIMERS.s b/libc/sysv/consts/_POSIX_TIMERS.s index 2408b7639..f6ec62700 100644 --- a/libc/sysv/consts/_POSIX_TIMERS.s +++ b/libc/sysv/consts/_POSIX_TIMERS.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TIMERS 0x031069 -1 0x030db0 -1 0 +.syscon posix _POSIX_TIMERS 0x031069 -1 0x030db0 -1 -1 0 diff --git a/libc/sysv/consts/_POSIX_TIMER_MAX.s b/libc/sysv/consts/_POSIX_TIMER_MAX.s index 7d74ac342..02c3a5a1c 100644 --- a/libc/sysv/consts/_POSIX_TIMER_MAX.s +++ b/libc/sysv/consts/_POSIX_TIMER_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TIMER_MAX 0x20 0x20 0x20 0 0 +.syscon posix _POSIX_TIMER_MAX 0x20 0x20 0x20 0 0 0 diff --git a/libc/sysv/consts/_POSIX_TRACE_EVENT_NAME_MAX.s b/libc/sysv/consts/_POSIX_TRACE_EVENT_NAME_MAX.s index b32644c9c..1a1b256e2 100644 --- a/libc/sysv/consts/_POSIX_TRACE_EVENT_NAME_MAX.s +++ b/libc/sysv/consts/_POSIX_TRACE_EVENT_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TRACE_EVENT_NAME_MAX 0 30 30 0 0 +.syscon posix _POSIX_TRACE_EVENT_NAME_MAX 0 30 30 0 0 0 diff --git a/libc/sysv/consts/_POSIX_TRACE_NAME_MAX.s b/libc/sysv/consts/_POSIX_TRACE_NAME_MAX.s index db988a09a..03828a162 100644 --- a/libc/sysv/consts/_POSIX_TRACE_NAME_MAX.s +++ b/libc/sysv/consts/_POSIX_TRACE_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TRACE_NAME_MAX 0 8 8 0 0 +.syscon posix _POSIX_TRACE_NAME_MAX 0 8 8 0 0 0 diff --git a/libc/sysv/consts/_POSIX_TRACE_SYS_MAX.s b/libc/sysv/consts/_POSIX_TRACE_SYS_MAX.s index d456fc8d9..fde8db6b9 100644 --- a/libc/sysv/consts/_POSIX_TRACE_SYS_MAX.s +++ b/libc/sysv/consts/_POSIX_TRACE_SYS_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TRACE_SYS_MAX 0 8 8 0 0 +.syscon posix _POSIX_TRACE_SYS_MAX 0 8 8 0 0 0 diff --git a/libc/sysv/consts/_POSIX_TRACE_USER_EVENT_MAX.s b/libc/sysv/consts/_POSIX_TRACE_USER_EVENT_MAX.s index babb65a18..514583db0 100644 --- a/libc/sysv/consts/_POSIX_TRACE_USER_EVENT_MAX.s +++ b/libc/sysv/consts/_POSIX_TRACE_USER_EVENT_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TRACE_USER_EVENT_MAX 0 0x20 0x20 0 0 +.syscon posix _POSIX_TRACE_USER_EVENT_MAX 0 0x20 0x20 0 0 0 diff --git a/libc/sysv/consts/_POSIX_TTY_NAME_MAX.s b/libc/sysv/consts/_POSIX_TTY_NAME_MAX.s index bcedd20ab..d114c6001 100644 --- a/libc/sysv/consts/_POSIX_TTY_NAME_MAX.s +++ b/libc/sysv/consts/_POSIX_TTY_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TTY_NAME_MAX 9 9 9 9 0 +.syscon posix _POSIX_TTY_NAME_MAX 9 9 9 9 9 0 diff --git a/libc/sysv/consts/_POSIX_TZNAME_MAX.s b/libc/sysv/consts/_POSIX_TZNAME_MAX.s index afbe8b73a..92211424d 100644 --- a/libc/sysv/consts/_POSIX_TZNAME_MAX.s +++ b/libc/sysv/consts/_POSIX_TZNAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_TZNAME_MAX 6 6 6 6 0 +.syscon posix _POSIX_TZNAME_MAX 6 6 6 6 6 0 diff --git a/libc/sysv/consts/_POSIX_V6_LP64_OFF64.s b/libc/sysv/consts/_POSIX_V6_LP64_OFF64.s index 97ab1b02d..420ff3d57 100644 --- a/libc/sysv/consts/_POSIX_V6_LP64_OFF64.s +++ b/libc/sysv/consts/_POSIX_V6_LP64_OFF64.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_V6_LP64_OFF64 1 1 0 0 0 +.syscon posix _POSIX_V6_LP64_OFF64 1 1 0 0 0 0 diff --git a/libc/sysv/consts/_POSIX_V7_LP64_OFF64.s b/libc/sysv/consts/_POSIX_V7_LP64_OFF64.s index 7424cddca..9c458dc48 100644 --- a/libc/sysv/consts/_POSIX_V7_LP64_OFF64.s +++ b/libc/sysv/consts/_POSIX_V7_LP64_OFF64.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_V7_LP64_OFF64 1 1 0 0 0 +.syscon posix _POSIX_V7_LP64_OFF64 1 1 0 0 0 0 diff --git a/libc/sysv/consts/_POSIX_VDISABLE.s b/libc/sysv/consts/_POSIX_VDISABLE.s index ec31f1d34..1996b78c5 100644 --- a/libc/sysv/consts/_POSIX_VDISABLE.s +++ b/libc/sysv/consts/_POSIX_VDISABLE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_VDISABLE 0 255 255 255 0 +.syscon posix _POSIX_VDISABLE 0 255 255 255 255 0 diff --git a/libc/sysv/consts/_POSIX_VERSION.s b/libc/sysv/consts/_POSIX_VERSION.s index f7e4e3d8c..807248268 100644 --- a/libc/sysv/consts/_POSIX_VERSION.s +++ b/libc/sysv/consts/_POSIX_VERSION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon posix _POSIX_VERSION 0x031069 0x030db0 0x030db0 0x031069 0 +.syscon posix _POSIX_VERSION 0x031069 0x030db0 0x030db0 0x031069 0x031069 0 diff --git a/libc/sysv/consts/_SEM_SEMUN_UNDEFINED.s b/libc/sysv/consts/_SEM_SEMUN_UNDEFINED.s index 569e402f5..186f694a3 100644 --- a/libc/sysv/consts/_SEM_SEMUN_UNDEFINED.s +++ b/libc/sysv/consts/_SEM_SEMUN_UNDEFINED.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _SEM_SEMUN_UNDEFINED 1 0 0 0 0 +.syscon misc _SEM_SEMUN_UNDEFINED 1 0 0 0 0 0 diff --git a/libc/sysv/consts/_XOPEN_ENH_I18N.s b/libc/sysv/consts/_XOPEN_ENH_I18N.s index 33a294546..ca50f77c6 100644 --- a/libc/sysv/consts/_XOPEN_ENH_I18N.s +++ b/libc/sysv/consts/_XOPEN_ENH_I18N.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _XOPEN_ENH_I18N 1 1 -1 -1 0 +.syscon misc _XOPEN_ENH_I18N 1 1 -1 -1 -1 0 diff --git a/libc/sysv/consts/_XOPEN_IOV_MAX.s b/libc/sysv/consts/_XOPEN_IOV_MAX.s index 98a903d2d..2da1b418f 100644 --- a/libc/sysv/consts/_XOPEN_IOV_MAX.s +++ b/libc/sysv/consts/_XOPEN_IOV_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _XOPEN_IOV_MAX 0x10 0x10 0x10 0x10 0 +.syscon misc _XOPEN_IOV_MAX 0x10 0x10 0x10 0x10 0x10 0 diff --git a/libc/sysv/consts/_XOPEN_NAME_MAX.s b/libc/sysv/consts/_XOPEN_NAME_MAX.s index dd8aa9d9c..5d1153c34 100644 --- a/libc/sysv/consts/_XOPEN_NAME_MAX.s +++ b/libc/sysv/consts/_XOPEN_NAME_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _XOPEN_NAME_MAX 63 63 63 63 63 +.syscon misc _XOPEN_NAME_MAX 63 63 63 63 63 63 diff --git a/libc/sysv/consts/_XOPEN_PATH_MAX.s b/libc/sysv/consts/_XOPEN_PATH_MAX.s index d07af13a6..bfe8ab235 100644 --- a/libc/sysv/consts/_XOPEN_PATH_MAX.s +++ b/libc/sysv/consts/_XOPEN_PATH_MAX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _XOPEN_PATH_MAX 255 255 255 255 255 +.syscon misc _XOPEN_PATH_MAX 255 255 255 255 255 255 diff --git a/libc/sysv/consts/_XOPEN_SOURCE.s b/libc/sysv/consts/_XOPEN_SOURCE.s index 1e94f0c2f..eb1459603 100644 --- a/libc/sysv/consts/_XOPEN_SOURCE.s +++ b/libc/sysv/consts/_XOPEN_SOURCE.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _XOPEN_SOURCE 700 0 0 0 0 +.syscon misc _XOPEN_SOURCE 700 0 0 0 0 0 diff --git a/libc/sysv/consts/_XOPEN_UNIX.s b/libc/sysv/consts/_XOPEN_UNIX.s index d72ca5d73..dbeeabb17 100644 --- a/libc/sysv/consts/_XOPEN_UNIX.s +++ b/libc/sysv/consts/_XOPEN_UNIX.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _XOPEN_UNIX 1 1 -1 -1 0 +.syscon misc _XOPEN_UNIX 1 1 -1 -1 -1 0 diff --git a/libc/sysv/consts/_XOPEN_VERSION.s b/libc/sysv/consts/_XOPEN_VERSION.s index a77f95fd2..be139801d 100644 --- a/libc/sysv/consts/_XOPEN_VERSION.s +++ b/libc/sysv/consts/_XOPEN_VERSION.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon misc _XOPEN_VERSION 700 600 0 0 0 +.syscon misc _XOPEN_VERSION 700 600 0 0 0 0 diff --git a/libc/sysv/consts/__NR___mac_syscall.s b/libc/sysv/consts/__NR___mac_syscall.s index a05a468b5..bfdef89a2 100644 --- a/libc/sysv/consts/__NR___mac_syscall.s +++ b/libc/sysv/consts/__NR___mac_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR___mac_syscall -1 0x200017d -1 -1 -1 +.syscon nr __NR___mac_syscall -1 0x200017d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR___sysctl.s b/libc/sysv/consts/__NR___sysctl.s index a0af422bf..d16a1495b 100644 --- a/libc/sysv/consts/__NR___sysctl.s +++ b/libc/sysv/consts/__NR___sysctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR___sysctl -1 -1 0x00ca -1 -1 +.syscon nr __NR___sysctl -1 -1 0x00ca -1 -1 -1 diff --git a/libc/sysv/consts/__NR__sysctl.s b/libc/sysv/consts/__NR__sysctl.s index 630bbc27c..fdc856b12 100644 --- a/libc/sysv/consts/__NR__sysctl.s +++ b/libc/sysv/consts/__NR__sysctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR__sysctl 0x009c -1 -1 -1 -1 +.syscon nr __NR__sysctl 0x009c -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR__umtx_op.s b/libc/sysv/consts/__NR__umtx_op.s index 3cf8f4023..13bc89092 100644 --- a/libc/sysv/consts/__NR__umtx_op.s +++ b/libc/sysv/consts/__NR__umtx_op.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR__umtx_op -1 -1 0x01c6 -1 -1 +.syscon nr __NR__umtx_op -1 -1 0x01c6 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_abort2.s b/libc/sysv/consts/__NR_abort2.s index 598d0a34d..46725994f 100644 --- a/libc/sysv/consts/__NR_abort2.s +++ b/libc/sysv/consts/__NR_abort2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_abort2 -1 -1 0x01cf -1 -1 +.syscon nr __NR_abort2 -1 -1 0x01cf -1 -1 -1 diff --git a/libc/sysv/consts/__NR_abort_with_payload.s b/libc/sysv/consts/__NR_abort_with_payload.s index 9b1354288..173b7c9f8 100644 --- a/libc/sysv/consts/__NR_abort_with_payload.s +++ b/libc/sysv/consts/__NR_abort_with_payload.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_abort_with_payload -1 0x2000209 -1 -1 -1 +.syscon nr __NR_abort_with_payload -1 0x2000209 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_accept.s b/libc/sysv/consts/__NR_accept.s index 7573349bb..a85ff91e9 100644 --- a/libc/sysv/consts/__NR_accept.s +++ b/libc/sysv/consts/__NR_accept.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_accept 0x002b 0x200001e 0x0063 0x001e -1 +.syscon nr __NR_accept 0x002b 0x200001e 0x0063 0x001e 0x01e -1 diff --git a/libc/sysv/consts/__NR_accept4.s b/libc/sysv/consts/__NR_accept4.s index 95b3eeba5..0cf3e54b2 100644 --- a/libc/sysv/consts/__NR_accept4.s +++ b/libc/sysv/consts/__NR_accept4.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_accept4 0x0120 -1 0x021d 0x005d -1 +.syscon nr __NR_accept4 0x0120 -1 0x021d 0x005d -1 -1 diff --git a/libc/sysv/consts/__NR_accept_nocancel.s b/libc/sysv/consts/__NR_accept_nocancel.s index 1f113c0ee..24d6174d7 100644 --- a/libc/sysv/consts/__NR_accept_nocancel.s +++ b/libc/sysv/consts/__NR_accept_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_accept_nocancel -1 0x2000194 -1 -1 -1 +.syscon nr __NR_accept_nocancel -1 0x2000194 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_access.s b/libc/sysv/consts/__NR_access.s index afca0fcfb..76984d5cc 100644 --- a/libc/sysv/consts/__NR_access.s +++ b/libc/sysv/consts/__NR_access.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_access 0x0015 0x2000021 0x0021 0x0021 -1 +.syscon nr __NR_access 0x0015 0x2000021 0x0021 0x0021 0x021 -1 diff --git a/libc/sysv/consts/__NR_access_extended.s b/libc/sysv/consts/__NR_access_extended.s index 73e58dd0a..73d367191 100644 --- a/libc/sysv/consts/__NR_access_extended.s +++ b/libc/sysv/consts/__NR_access_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_access_extended -1 0x200011c -1 -1 -1 +.syscon nr __NR_access_extended -1 0x200011c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acct.s b/libc/sysv/consts/__NR_acct.s index 9c529a8ba..53d3c1275 100644 --- a/libc/sysv/consts/__NR_acct.s +++ b/libc/sysv/consts/__NR_acct.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acct 0x00a3 0x2000033 0x0033 0x0033 -1 +.syscon nr __NR_acct 0x00a3 0x2000033 0x0033 0x0033 0x033 -1 diff --git a/libc/sysv/consts/__NR_acl_aclcheck_fd.s b/libc/sysv/consts/__NR_acl_aclcheck_fd.s index 6ac35b8f9..4e55fd786 100644 --- a/libc/sysv/consts/__NR_acl_aclcheck_fd.s +++ b/libc/sysv/consts/__NR_acl_aclcheck_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_aclcheck_fd -1 -1 0x0162 -1 -1 +.syscon nr __NR_acl_aclcheck_fd -1 -1 0x0162 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_aclcheck_file.s b/libc/sysv/consts/__NR_acl_aclcheck_file.s index a823bca06..53a0d300d 100644 --- a/libc/sysv/consts/__NR_acl_aclcheck_file.s +++ b/libc/sysv/consts/__NR_acl_aclcheck_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_aclcheck_file -1 -1 0x0161 -1 -1 +.syscon nr __NR_acl_aclcheck_file -1 -1 0x0161 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_aclcheck_link.s b/libc/sysv/consts/__NR_acl_aclcheck_link.s index ae5efba5c..2dd06b546 100644 --- a/libc/sysv/consts/__NR_acl_aclcheck_link.s +++ b/libc/sysv/consts/__NR_acl_aclcheck_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_aclcheck_link -1 -1 0x01ac -1 -1 +.syscon nr __NR_acl_aclcheck_link -1 -1 0x01ac -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_delete_fd.s b/libc/sysv/consts/__NR_acl_delete_fd.s index b95bc6b2e..3c48dc148 100644 --- a/libc/sysv/consts/__NR_acl_delete_fd.s +++ b/libc/sysv/consts/__NR_acl_delete_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_delete_fd -1 -1 0x0160 -1 -1 +.syscon nr __NR_acl_delete_fd -1 -1 0x0160 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_delete_file.s b/libc/sysv/consts/__NR_acl_delete_file.s index f1ab266da..db97d8d8d 100644 --- a/libc/sysv/consts/__NR_acl_delete_file.s +++ b/libc/sysv/consts/__NR_acl_delete_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_delete_file -1 -1 0x015f -1 -1 +.syscon nr __NR_acl_delete_file -1 -1 0x015f -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_delete_link.s b/libc/sysv/consts/__NR_acl_delete_link.s index 0684879d0..e0571c318 100644 --- a/libc/sysv/consts/__NR_acl_delete_link.s +++ b/libc/sysv/consts/__NR_acl_delete_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_delete_link -1 -1 0x01ab -1 -1 +.syscon nr __NR_acl_delete_link -1 -1 0x01ab -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_get_fd.s b/libc/sysv/consts/__NR_acl_get_fd.s index 8b675540f..d7a11bc33 100644 --- a/libc/sysv/consts/__NR_acl_get_fd.s +++ b/libc/sysv/consts/__NR_acl_get_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_get_fd -1 -1 0x015d -1 -1 +.syscon nr __NR_acl_get_fd -1 -1 0x015d -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_get_file.s b/libc/sysv/consts/__NR_acl_get_file.s index 1c62edf4e..0a6d45e6a 100644 --- a/libc/sysv/consts/__NR_acl_get_file.s +++ b/libc/sysv/consts/__NR_acl_get_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_get_file -1 -1 0x015b -1 -1 +.syscon nr __NR_acl_get_file -1 -1 0x015b -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_get_link.s b/libc/sysv/consts/__NR_acl_get_link.s index 51d59cf4c..3992aa911 100644 --- a/libc/sysv/consts/__NR_acl_get_link.s +++ b/libc/sysv/consts/__NR_acl_get_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_get_link -1 -1 0x01a9 -1 -1 +.syscon nr __NR_acl_get_link -1 -1 0x01a9 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_set_fd.s b/libc/sysv/consts/__NR_acl_set_fd.s index 84fad44de..a5eb4332a 100644 --- a/libc/sysv/consts/__NR_acl_set_fd.s +++ b/libc/sysv/consts/__NR_acl_set_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_set_fd -1 -1 0x015e -1 -1 +.syscon nr __NR_acl_set_fd -1 -1 0x015e -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_set_file.s b/libc/sysv/consts/__NR_acl_set_file.s index 96641b5bd..a67b2733f 100644 --- a/libc/sysv/consts/__NR_acl_set_file.s +++ b/libc/sysv/consts/__NR_acl_set_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_set_file -1 -1 0x015c -1 -1 +.syscon nr __NR_acl_set_file -1 -1 0x015c -1 -1 -1 diff --git a/libc/sysv/consts/__NR_acl_set_link.s b/libc/sysv/consts/__NR_acl_set_link.s index 48ca9418d..8648cfd26 100644 --- a/libc/sysv/consts/__NR_acl_set_link.s +++ b/libc/sysv/consts/__NR_acl_set_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_acl_set_link -1 -1 0x01aa -1 -1 +.syscon nr __NR_acl_set_link -1 -1 0x01aa -1 -1 -1 diff --git a/libc/sysv/consts/__NR_add_key.s b/libc/sysv/consts/__NR_add_key.s index d70897b5d..ce673eede 100644 --- a/libc/sysv/consts/__NR_add_key.s +++ b/libc/sysv/consts/__NR_add_key.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_add_key 0x00f8 -1 -1 -1 -1 +.syscon nr __NR_add_key 0x00f8 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_adjfreq.s b/libc/sysv/consts/__NR_adjfreq.s index 64ef97268..fe9e6a515 100644 --- a/libc/sysv/consts/__NR_adjfreq.s +++ b/libc/sysv/consts/__NR_adjfreq.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_adjfreq -1 -1 -1 0x0131 -1 +.syscon nr __NR_adjfreq -1 -1 -1 0x0131 -1 -1 diff --git a/libc/sysv/consts/__NR_adjtime.s b/libc/sysv/consts/__NR_adjtime.s index b142f7b8c..4df889f35 100644 --- a/libc/sysv/consts/__NR_adjtime.s +++ b/libc/sysv/consts/__NR_adjtime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_adjtime -1 0x200008c 0x008c 0x008c -1 +.syscon nr __NR_adjtime -1 0x200008c 0x008c 0x008c 0x1a5 -1 diff --git a/libc/sysv/consts/__NR_adjtimex.s b/libc/sysv/consts/__NR_adjtimex.s index eed4c2333..cc4458698 100644 --- a/libc/sysv/consts/__NR_adjtimex.s +++ b/libc/sysv/consts/__NR_adjtimex.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_adjtimex 0x009f -1 -1 -1 -1 +.syscon nr __NR_adjtimex 0x009f -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_afs3_syscall.s b/libc/sysv/consts/__NR_afs3_syscall.s index e5ffd379d..e806b47d1 100644 --- a/libc/sysv/consts/__NR_afs3_syscall.s +++ b/libc/sysv/consts/__NR_afs3_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_afs3_syscall -1 -1 0x0179 -1 -1 +.syscon nr __NR_afs3_syscall -1 -1 0x0179 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_aio_cancel.s b/libc/sysv/consts/__NR_aio_cancel.s index b57fa4951..ee3c09990 100644 --- a/libc/sysv/consts/__NR_aio_cancel.s +++ b/libc/sysv/consts/__NR_aio_cancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_cancel -1 0x200013c 0x013c -1 -1 +.syscon nr __NR_aio_cancel -1 0x200013c 0x013c -1 0x18f -1 diff --git a/libc/sysv/consts/__NR_aio_error.s b/libc/sysv/consts/__NR_aio_error.s index 51ea831de..da5881c59 100644 --- a/libc/sysv/consts/__NR_aio_error.s +++ b/libc/sysv/consts/__NR_aio_error.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_error -1 0x200013d 0x013d -1 -1 +.syscon nr __NR_aio_error -1 0x200013d 0x013d -1 0x190 -1 diff --git a/libc/sysv/consts/__NR_aio_fsync.s b/libc/sysv/consts/__NR_aio_fsync.s index 576d41166..62821cf42 100644 --- a/libc/sysv/consts/__NR_aio_fsync.s +++ b/libc/sysv/consts/__NR_aio_fsync.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_fsync -1 0x2000139 0x01d1 -1 -1 +.syscon nr __NR_aio_fsync -1 0x2000139 0x01d1 -1 0x191 -1 diff --git a/libc/sysv/consts/__NR_aio_mlock.s b/libc/sysv/consts/__NR_aio_mlock.s index 679c30c52..709bdfe63 100644 --- a/libc/sysv/consts/__NR_aio_mlock.s +++ b/libc/sysv/consts/__NR_aio_mlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_mlock -1 -1 0x021f -1 -1 +.syscon nr __NR_aio_mlock -1 -1 0x021f -1 -1 -1 diff --git a/libc/sysv/consts/__NR_aio_read.s b/libc/sysv/consts/__NR_aio_read.s index 80c44cfb2..ed59215db 100644 --- a/libc/sysv/consts/__NR_aio_read.s +++ b/libc/sysv/consts/__NR_aio_read.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_read -1 0x200013e 0x013e -1 -1 +.syscon nr __NR_aio_read -1 0x200013e 0x013e -1 0x192 -1 diff --git a/libc/sysv/consts/__NR_aio_return.s b/libc/sysv/consts/__NR_aio_return.s index ac809d11b..9ada000d5 100644 --- a/libc/sysv/consts/__NR_aio_return.s +++ b/libc/sysv/consts/__NR_aio_return.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_return -1 0x200013a 0x013a -1 -1 +.syscon nr __NR_aio_return -1 0x200013a 0x013a -1 0x193 -1 diff --git a/libc/sysv/consts/__NR_aio_suspend.s b/libc/sysv/consts/__NR_aio_suspend.s index 128b68a77..ad98b5f41 100644 --- a/libc/sysv/consts/__NR_aio_suspend.s +++ b/libc/sysv/consts/__NR_aio_suspend.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_suspend -1 0x200013b 0x013b -1 -1 +.syscon nr __NR_aio_suspend -1 0x200013b 0x013b -1 0x1b6 -1 diff --git a/libc/sysv/consts/__NR_aio_suspend_nocancel.s b/libc/sysv/consts/__NR_aio_suspend_nocancel.s index 838bb6df2..6129aa7ce 100644 --- a/libc/sysv/consts/__NR_aio_suspend_nocancel.s +++ b/libc/sysv/consts/__NR_aio_suspend_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_suspend_nocancel -1 0x20001a5 -1 -1 -1 +.syscon nr __NR_aio_suspend_nocancel -1 0x20001a5 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_aio_waitcomplete.s b/libc/sysv/consts/__NR_aio_waitcomplete.s index 01d34645f..fe3b2792f 100644 --- a/libc/sysv/consts/__NR_aio_waitcomplete.s +++ b/libc/sysv/consts/__NR_aio_waitcomplete.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_waitcomplete -1 -1 0x0167 -1 -1 +.syscon nr __NR_aio_waitcomplete -1 -1 0x0167 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_aio_write.s b/libc/sysv/consts/__NR_aio_write.s index 9cf8ad49c..bd94f9cb6 100644 --- a/libc/sysv/consts/__NR_aio_write.s +++ b/libc/sysv/consts/__NR_aio_write.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_aio_write -1 0x200013f 0x013f -1 -1 +.syscon nr __NR_aio_write -1 0x200013f 0x013f -1 0x195 -1 diff --git a/libc/sysv/consts/__NR_alarm.s b/libc/sysv/consts/__NR_alarm.s index bf4bd8a9f..d057f736f 100644 --- a/libc/sysv/consts/__NR_alarm.s +++ b/libc/sysv/consts/__NR_alarm.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_alarm 0x0025 -1 -1 -1 -1 +.syscon nr __NR_alarm 0x0025 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_arch_prctl.s b/libc/sysv/consts/__NR_arch_prctl.s index e6ad75e84..f13f85d2a 100644 --- a/libc/sysv/consts/__NR_arch_prctl.s +++ b/libc/sysv/consts/__NR_arch_prctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_arch_prctl 0x009e -1 0x00a5 0x00a5 -1 +.syscon nr __NR_arch_prctl 0x009e -1 0x00a5 0x00a5 -1 -1 diff --git a/libc/sysv/consts/__NR_audit.s b/libc/sysv/consts/__NR_audit.s index 34a5987aa..040599af6 100644 --- a/libc/sysv/consts/__NR_audit.s +++ b/libc/sysv/consts/__NR_audit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_audit -1 0x200015e 0x01bd -1 -1 +.syscon nr __NR_audit -1 0x200015e 0x01bd -1 -1 -1 diff --git a/libc/sysv/consts/__NR_audit_session_join.s b/libc/sysv/consts/__NR_audit_session_join.s index b7bd8069b..8f83c219f 100644 --- a/libc/sysv/consts/__NR_audit_session_join.s +++ b/libc/sysv/consts/__NR_audit_session_join.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_audit_session_join -1 0x20001ad -1 -1 -1 +.syscon nr __NR_audit_session_join -1 0x20001ad -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_audit_session_port.s b/libc/sysv/consts/__NR_audit_session_port.s index fafd5fd50..26b38ca1a 100644 --- a/libc/sysv/consts/__NR_audit_session_port.s +++ b/libc/sysv/consts/__NR_audit_session_port.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_audit_session_port -1 0x20001b0 -1 -1 -1 +.syscon nr __NR_audit_session_port -1 0x20001b0 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_audit_session_self.s b/libc/sysv/consts/__NR_audit_session_self.s index e737d45cd..0c151478e 100644 --- a/libc/sysv/consts/__NR_audit_session_self.s +++ b/libc/sysv/consts/__NR_audit_session_self.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_audit_session_self -1 0x20001ac -1 -1 -1 +.syscon nr __NR_audit_session_self -1 0x20001ac -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_auditctl.s b/libc/sysv/consts/__NR_auditctl.s index 5f80abe14..54a0484bf 100644 --- a/libc/sysv/consts/__NR_auditctl.s +++ b/libc/sysv/consts/__NR_auditctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_auditctl -1 0x2000167 0x01c5 -1 -1 +.syscon nr __NR_auditctl -1 0x2000167 0x01c5 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_auditon.s b/libc/sysv/consts/__NR_auditon.s index db581ac9d..2716d65f3 100644 --- a/libc/sysv/consts/__NR_auditon.s +++ b/libc/sysv/consts/__NR_auditon.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_auditon -1 0x200015f 0x01be -1 -1 +.syscon nr __NR_auditon -1 0x200015f 0x01be -1 -1 -1 diff --git a/libc/sysv/consts/__NR_bind.s b/libc/sysv/consts/__NR_bind.s index d2f69b071..3b36bbb4c 100644 --- a/libc/sysv/consts/__NR_bind.s +++ b/libc/sysv/consts/__NR_bind.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_bind 0x0031 0x2000068 0x0068 0x0068 -1 +.syscon nr __NR_bind 0x0031 0x2000068 0x0068 0x0068 0x068 -1 diff --git a/libc/sysv/consts/__NR_bindat.s b/libc/sysv/consts/__NR_bindat.s index fabb6cd87..9bf6821e6 100644 --- a/libc/sysv/consts/__NR_bindat.s +++ b/libc/sysv/consts/__NR_bindat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_bindat -1 -1 0x021a -1 -1 +.syscon nr __NR_bindat -1 -1 0x021a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_bpf.s b/libc/sysv/consts/__NR_bpf.s index 8e261a0dc..afb8e0d19 100644 --- a/libc/sysv/consts/__NR_bpf.s +++ b/libc/sysv/consts/__NR_bpf.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_bpf 0x0141 -1 -1 -1 -1 +.syscon nr __NR_bpf 0x0141 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_break.s b/libc/sysv/consts/__NR_break.s index 8ade349f2..2236f7390 100644 --- a/libc/sysv/consts/__NR_break.s +++ b/libc/sysv/consts/__NR_break.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_break -1 -1 0x0011 -1 -1 +.syscon nr __NR_break -1 -1 0x0011 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_bsdthread_create.s b/libc/sysv/consts/__NR_bsdthread_create.s index b0170bc96..0b4dee7da 100644 --- a/libc/sysv/consts/__NR_bsdthread_create.s +++ b/libc/sysv/consts/__NR_bsdthread_create.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_bsdthread_create -1 0x2000168 -1 -1 -1 +.syscon nr __NR_bsdthread_create -1 0x2000168 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_bsdthread_ctl.s b/libc/sysv/consts/__NR_bsdthread_ctl.s index 4ffb6cd54..63f3a4896 100644 --- a/libc/sysv/consts/__NR_bsdthread_ctl.s +++ b/libc/sysv/consts/__NR_bsdthread_ctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_bsdthread_ctl -1 0x20001de -1 -1 -1 +.syscon nr __NR_bsdthread_ctl -1 0x20001de -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_bsdthread_register.s b/libc/sysv/consts/__NR_bsdthread_register.s index 56aa9bd71..4c60015f6 100644 --- a/libc/sysv/consts/__NR_bsdthread_register.s +++ b/libc/sysv/consts/__NR_bsdthread_register.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_bsdthread_register -1 0x200016e -1 -1 -1 +.syscon nr __NR_bsdthread_register -1 0x200016e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_bsdthread_terminate.s b/libc/sysv/consts/__NR_bsdthread_terminate.s index cce307889..6c0e4baf3 100644 --- a/libc/sysv/consts/__NR_bsdthread_terminate.s +++ b/libc/sysv/consts/__NR_bsdthread_terminate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_bsdthread_terminate -1 0x2000169 -1 -1 -1 +.syscon nr __NR_bsdthread_terminate -1 0x2000169 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_enter.s b/libc/sysv/consts/__NR_cap_enter.s index b4b9b9f85..5c85ade31 100644 --- a/libc/sysv/consts/__NR_cap_enter.s +++ b/libc/sysv/consts/__NR_cap_enter.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_enter -1 -1 0x0204 -1 -1 +.syscon nr __NR_cap_enter -1 -1 0x0204 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_fcntls_get.s b/libc/sysv/consts/__NR_cap_fcntls_get.s index 618ef5c10..cc0f07b62 100644 --- a/libc/sysv/consts/__NR_cap_fcntls_get.s +++ b/libc/sysv/consts/__NR_cap_fcntls_get.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_fcntls_get -1 -1 0x0219 -1 -1 +.syscon nr __NR_cap_fcntls_get -1 -1 0x0219 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_fcntls_limit.s b/libc/sysv/consts/__NR_cap_fcntls_limit.s index 221391c48..c487d6f99 100644 --- a/libc/sysv/consts/__NR_cap_fcntls_limit.s +++ b/libc/sysv/consts/__NR_cap_fcntls_limit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_fcntls_limit -1 -1 0x0218 -1 -1 +.syscon nr __NR_cap_fcntls_limit -1 -1 0x0218 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_getmode.s b/libc/sysv/consts/__NR_cap_getmode.s index dcf90ec95..9d4dba87b 100644 --- a/libc/sysv/consts/__NR_cap_getmode.s +++ b/libc/sysv/consts/__NR_cap_getmode.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_getmode -1 -1 0x0205 -1 -1 +.syscon nr __NR_cap_getmode -1 -1 0x0205 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_ioctls_get.s b/libc/sysv/consts/__NR_cap_ioctls_get.s index b5459f9d4..8b55a50b4 100644 --- a/libc/sysv/consts/__NR_cap_ioctls_get.s +++ b/libc/sysv/consts/__NR_cap_ioctls_get.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_ioctls_get -1 -1 0x0217 -1 -1 +.syscon nr __NR_cap_ioctls_get -1 -1 0x0217 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_ioctls_limit.s b/libc/sysv/consts/__NR_cap_ioctls_limit.s index 264f5a6ef..bfeec6deb 100644 --- a/libc/sysv/consts/__NR_cap_ioctls_limit.s +++ b/libc/sysv/consts/__NR_cap_ioctls_limit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_ioctls_limit -1 -1 0x0216 -1 -1 +.syscon nr __NR_cap_ioctls_limit -1 -1 0x0216 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_rights_get.s b/libc/sysv/consts/__NR_cap_rights_get.s index a0008825a..4113d3ce0 100644 --- a/libc/sysv/consts/__NR_cap_rights_get.s +++ b/libc/sysv/consts/__NR_cap_rights_get.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_rights_get -1 -1 0x0203 -1 -1 +.syscon nr __NR_cap_rights_get -1 -1 0x0203 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cap_rights_limit.s b/libc/sysv/consts/__NR_cap_rights_limit.s index 372bb041f..28139c922 100644 --- a/libc/sysv/consts/__NR_cap_rights_limit.s +++ b/libc/sysv/consts/__NR_cap_rights_limit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cap_rights_limit -1 -1 0x0215 -1 -1 +.syscon nr __NR_cap_rights_limit -1 -1 0x0215 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_capget.s b/libc/sysv/consts/__NR_capget.s index 5e17889a9..8354fcc19 100644 --- a/libc/sysv/consts/__NR_capget.s +++ b/libc/sysv/consts/__NR_capget.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_capget 0x007d -1 -1 -1 -1 +.syscon nr __NR_capget 0x007d -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_capset.s b/libc/sysv/consts/__NR_capset.s index b92531998..64c36cdc9 100644 --- a/libc/sysv/consts/__NR_capset.s +++ b/libc/sysv/consts/__NR_capset.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_capset 0x007e -1 -1 -1 -1 +.syscon nr __NR_capset 0x007e -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_change_fdguard_np.s b/libc/sysv/consts/__NR_change_fdguard_np.s index 27d867beb..8a201a755 100644 --- a/libc/sysv/consts/__NR_change_fdguard_np.s +++ b/libc/sysv/consts/__NR_change_fdguard_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_change_fdguard_np -1 0x20001bc -1 -1 -1 +.syscon nr __NR_change_fdguard_np -1 0x20001bc -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_chdir.s b/libc/sysv/consts/__NR_chdir.s index 3664cb2c7..e29925f76 100644 --- a/libc/sysv/consts/__NR_chdir.s +++ b/libc/sysv/consts/__NR_chdir.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_chdir 0x0050 0x200000c 0x000c 0x000c -1 +.syscon nr __NR_chdir 0x0050 0x200000c 0x000c 0x000c 0x00c -1 diff --git a/libc/sysv/consts/__NR_chflags.s b/libc/sysv/consts/__NR_chflags.s index 214bb3308..6adae8e0a 100644 --- a/libc/sysv/consts/__NR_chflags.s +++ b/libc/sysv/consts/__NR_chflags.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_chflags -1 0x2000022 0x0022 0x0022 -1 +.syscon nr __NR_chflags -1 0x2000022 0x0022 0x0022 0x022 -1 diff --git a/libc/sysv/consts/__NR_chflagsat.s b/libc/sysv/consts/__NR_chflagsat.s index 647ace9f7..f928eb211 100644 --- a/libc/sysv/consts/__NR_chflagsat.s +++ b/libc/sysv/consts/__NR_chflagsat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_chflagsat -1 -1 0x021c 0x006b -1 +.syscon nr __NR_chflagsat -1 -1 0x021c 0x006b -1 -1 diff --git a/libc/sysv/consts/__NR_chmod.s b/libc/sysv/consts/__NR_chmod.s index 4033d0488..22a158e4a 100644 --- a/libc/sysv/consts/__NR_chmod.s +++ b/libc/sysv/consts/__NR_chmod.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_chmod 0x005a 0x200000f 0x000f 0x000f -1 +.syscon nr __NR_chmod 0x005a 0x200000f 0x000f 0x000f 0x00f -1 diff --git a/libc/sysv/consts/__NR_chmod_extended.s b/libc/sysv/consts/__NR_chmod_extended.s index 340d899a9..7162ab871 100644 --- a/libc/sysv/consts/__NR_chmod_extended.s +++ b/libc/sysv/consts/__NR_chmod_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_chmod_extended -1 0x200011a -1 -1 -1 +.syscon nr __NR_chmod_extended -1 0x200011a -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_chown.s b/libc/sysv/consts/__NR_chown.s index 8d308811c..418bc59be 100644 --- a/libc/sysv/consts/__NR_chown.s +++ b/libc/sysv/consts/__NR_chown.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_chown 0x005c 0x2000010 0x0010 0x0010 -1 +.syscon nr __NR_chown 0x005c 0x2000010 0x0010 0x0010 0x010 -1 diff --git a/libc/sysv/consts/__NR_chroot.s b/libc/sysv/consts/__NR_chroot.s index de716208b..196287d4f 100644 --- a/libc/sysv/consts/__NR_chroot.s +++ b/libc/sysv/consts/__NR_chroot.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_chroot 0x00a1 0x200003d 0x003d 0x003d -1 +.syscon nr __NR_chroot 0x00a1 0x200003d 0x003d 0x003d 0x03d -1 diff --git a/libc/sysv/consts/__NR_clock_adjtime.s b/libc/sysv/consts/__NR_clock_adjtime.s index e2c8ed27b..727dfccbe 100644 --- a/libc/sysv/consts/__NR_clock_adjtime.s +++ b/libc/sysv/consts/__NR_clock_adjtime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clock_adjtime 0x0131 -1 -1 -1 -1 +.syscon nr __NR_clock_adjtime 0x0131 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_clock_getcpuclockid2.s b/libc/sysv/consts/__NR_clock_getcpuclockid2.s index 0f24ac79f..8fdc3211f 100644 --- a/libc/sysv/consts/__NR_clock_getcpuclockid2.s +++ b/libc/sysv/consts/__NR_clock_getcpuclockid2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clock_getcpuclockid2 -1 -1 0x00f7 -1 -1 +.syscon nr __NR_clock_getcpuclockid2 -1 -1 0x00f7 -1 0x1e2 -1 diff --git a/libc/sysv/consts/__NR_clock_getres.s b/libc/sysv/consts/__NR_clock_getres.s index 36e480433..c03ce582e 100644 --- a/libc/sysv/consts/__NR_clock_getres.s +++ b/libc/sysv/consts/__NR_clock_getres.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clock_getres 0x00e5 -1 0x00ea 0x0059 -1 +.syscon nr __NR_clock_getres 0x00e5 -1 0x00ea 0x0059 0x1ad -1 diff --git a/libc/sysv/consts/__NR_clock_gettime.s b/libc/sysv/consts/__NR_clock_gettime.s index f80f8144b..eed561911 100644 --- a/libc/sysv/consts/__NR_clock_gettime.s +++ b/libc/sysv/consts/__NR_clock_gettime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clock_gettime 0x00e4 -1 0x00e8 0x0057 -1 +.syscon nr __NR_clock_gettime 0x00e4 -1 0x00e8 0x0057 0x1ab -1 diff --git a/libc/sysv/consts/__NR_clock_nanosleep.s b/libc/sysv/consts/__NR_clock_nanosleep.s index 31b0d35d2..bd11540ae 100644 --- a/libc/sysv/consts/__NR_clock_nanosleep.s +++ b/libc/sysv/consts/__NR_clock_nanosleep.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clock_nanosleep 0x00e6 -1 0x00f4 -1 -1 +.syscon nr __NR_clock_nanosleep 0x00e6 -1 0x00f4 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_clock_settime.s b/libc/sysv/consts/__NR_clock_settime.s index 058afa844..8e3d50e6f 100644 --- a/libc/sysv/consts/__NR_clock_settime.s +++ b/libc/sysv/consts/__NR_clock_settime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clock_settime 0x00e3 -1 0x00e9 0x0058 -1 +.syscon nr __NR_clock_settime 0x00e3 -1 0x00e9 0x0058 0x1ac -1 diff --git a/libc/sysv/consts/__NR_clone.s b/libc/sysv/consts/__NR_clone.s index f2e42b14d..fa2ef56ba 100644 --- a/libc/sysv/consts/__NR_clone.s +++ b/libc/sysv/consts/__NR_clone.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clone 0x0038 -1 -1 -1 -1 +.syscon nr __NR_clone 0x0038 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_clonefileat.s b/libc/sysv/consts/__NR_clonefileat.s index d42f4f7bf..0a10161f5 100644 --- a/libc/sysv/consts/__NR_clonefileat.s +++ b/libc/sysv/consts/__NR_clonefileat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_clonefileat -1 0x20001ce -1 -1 -1 +.syscon nr __NR_clonefileat -1 0x20001ce -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_close.s b/libc/sysv/consts/__NR_close.s index 795f2302b..0ac96041f 100644 --- a/libc/sysv/consts/__NR_close.s +++ b/libc/sysv/consts/__NR_close.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_close 0x0003 0x2000006 0x0006 0x0006 -1 +.syscon nr __NR_close 0x0003 0x2000006 0x0006 0x0006 0x006 -1 diff --git a/libc/sysv/consts/__NR_close_nocancel.s b/libc/sysv/consts/__NR_close_nocancel.s index 315dfd1e7..c4c510120 100644 --- a/libc/sysv/consts/__NR_close_nocancel.s +++ b/libc/sysv/consts/__NR_close_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_close_nocancel -1 0x200018f -1 -1 -1 +.syscon nr __NR_close_nocancel -1 0x200018f -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_closefrom.s b/libc/sysv/consts/__NR_closefrom.s index 9d93b873e..d9fd24213 100644 --- a/libc/sysv/consts/__NR_closefrom.s +++ b/libc/sysv/consts/__NR_closefrom.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_closefrom -1 -1 0x01fd 0x011f -1 +.syscon nr __NR_closefrom -1 -1 0x01fd 0x011f -1 -1 diff --git a/libc/sysv/consts/__NR_coalition.s b/libc/sysv/consts/__NR_coalition.s index 982b2b849..b620e068d 100644 --- a/libc/sysv/consts/__NR_coalition.s +++ b/libc/sysv/consts/__NR_coalition.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_coalition -1 0x20001ca -1 -1 -1 +.syscon nr __NR_coalition -1 0x20001ca -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_coalition_info.s b/libc/sysv/consts/__NR_coalition_info.s index 81a7d67f3..3f42faa77 100644 --- a/libc/sysv/consts/__NR_coalition_info.s +++ b/libc/sysv/consts/__NR_coalition_info.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_coalition_info -1 0x20001cb -1 -1 -1 +.syscon nr __NR_coalition_info -1 0x20001cb -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_connect.s b/libc/sysv/consts/__NR_connect.s index 9091f5d4d..2f0ebf6d4 100644 --- a/libc/sysv/consts/__NR_connect.s +++ b/libc/sysv/consts/__NR_connect.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_connect 0x002a 0x2000062 0x0062 0x0062 -1 +.syscon nr __NR_connect 0x002a 0x2000062 0x0062 0x0062 0x062 -1 diff --git a/libc/sysv/consts/__NR_connect_nocancel.s b/libc/sysv/consts/__NR_connect_nocancel.s index 92b17a718..b5ba2568f 100644 --- a/libc/sysv/consts/__NR_connect_nocancel.s +++ b/libc/sysv/consts/__NR_connect_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_connect_nocancel -1 0x2000199 -1 -1 -1 +.syscon nr __NR_connect_nocancel -1 0x2000199 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_connectat.s b/libc/sysv/consts/__NR_connectat.s index a12b5992b..c16357243 100644 --- a/libc/sysv/consts/__NR_connectat.s +++ b/libc/sysv/consts/__NR_connectat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_connectat -1 -1 0x021b -1 -1 +.syscon nr __NR_connectat -1 -1 0x021b -1 -1 -1 diff --git a/libc/sysv/consts/__NR_connectx.s b/libc/sysv/consts/__NR_connectx.s index f982e29b9..5a05d90d7 100644 --- a/libc/sysv/consts/__NR_connectx.s +++ b/libc/sysv/consts/__NR_connectx.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_connectx -1 0x20001bf -1 -1 -1 +.syscon nr __NR_connectx -1 0x20001bf -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_copy_file_range.s b/libc/sysv/consts/__NR_copy_file_range.s index 49d796d07..37c0cc934 100644 --- a/libc/sysv/consts/__NR_copy_file_range.s +++ b/libc/sysv/consts/__NR_copy_file_range.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_copy_file_range 0x0146 -1 -1 -1 -1 +.syscon nr __NR_copy_file_range 0x0146 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_copyfile.s b/libc/sysv/consts/__NR_copyfile.s index a336fe6c6..fc53573ab 100644 --- a/libc/sysv/consts/__NR_copyfile.s +++ b/libc/sysv/consts/__NR_copyfile.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_copyfile -1 0x20000e3 -1 -1 -1 +.syscon nr __NR_copyfile -1 0x20000e3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cpuset.s b/libc/sysv/consts/__NR_cpuset.s index fd26f3298..1d2db9407 100644 --- a/libc/sysv/consts/__NR_cpuset.s +++ b/libc/sysv/consts/__NR_cpuset.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cpuset -1 -1 0x01e4 -1 -1 +.syscon nr __NR_cpuset -1 -1 0x01e4 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cpuset_getaffinity.s b/libc/sysv/consts/__NR_cpuset_getaffinity.s index 148a0ac21..ce115c960 100644 --- a/libc/sysv/consts/__NR_cpuset_getaffinity.s +++ b/libc/sysv/consts/__NR_cpuset_getaffinity.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cpuset_getaffinity -1 -1 0x01e7 -1 -1 +.syscon nr __NR_cpuset_getaffinity -1 -1 0x01e7 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cpuset_getdomain.s b/libc/sysv/consts/__NR_cpuset_getdomain.s index fe1517379..8457560de 100644 --- a/libc/sysv/consts/__NR_cpuset_getdomain.s +++ b/libc/sysv/consts/__NR_cpuset_getdomain.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cpuset_getdomain -1 -1 0x0231 -1 -1 +.syscon nr __NR_cpuset_getdomain -1 -1 0x0231 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cpuset_getid.s b/libc/sysv/consts/__NR_cpuset_getid.s index 3d87d5006..21ba60064 100644 --- a/libc/sysv/consts/__NR_cpuset_getid.s +++ b/libc/sysv/consts/__NR_cpuset_getid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cpuset_getid -1 -1 0x01e6 -1 -1 +.syscon nr __NR_cpuset_getid -1 -1 0x01e6 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cpuset_setaffinity.s b/libc/sysv/consts/__NR_cpuset_setaffinity.s index 955cc76b9..9380b2d7a 100644 --- a/libc/sysv/consts/__NR_cpuset_setaffinity.s +++ b/libc/sysv/consts/__NR_cpuset_setaffinity.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cpuset_setaffinity -1 -1 0x01e8 -1 -1 +.syscon nr __NR_cpuset_setaffinity -1 -1 0x01e8 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cpuset_setdomain.s b/libc/sysv/consts/__NR_cpuset_setdomain.s index 27669c607..7098eba44 100644 --- a/libc/sysv/consts/__NR_cpuset_setdomain.s +++ b/libc/sysv/consts/__NR_cpuset_setdomain.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cpuset_setdomain -1 -1 0x0232 -1 -1 +.syscon nr __NR_cpuset_setdomain -1 -1 0x0232 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_cpuset_setid.s b/libc/sysv/consts/__NR_cpuset_setid.s index 0a63efc6b..5f4c7d0e3 100644 --- a/libc/sysv/consts/__NR_cpuset_setid.s +++ b/libc/sysv/consts/__NR_cpuset_setid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_cpuset_setid -1 -1 0x01e5 -1 -1 +.syscon nr __NR_cpuset_setid -1 -1 0x01e5 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_creat.s b/libc/sysv/consts/__NR_creat.s index a7838fc01..597bcca6e 100644 --- a/libc/sysv/consts/__NR_creat.s +++ b/libc/sysv/consts/__NR_creat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_creat 0x0055 -1 0x0008 -1 -1 +.syscon nr __NR_creat 0x0055 -1 0x0008 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_csops.s b/libc/sysv/consts/__NR_csops.s index b2e9c12b8..c517df32b 100644 --- a/libc/sysv/consts/__NR_csops.s +++ b/libc/sysv/consts/__NR_csops.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_csops -1 0x20000a9 -1 -1 -1 +.syscon nr __NR_csops -1 0x20000a9 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_csops_audittoken.s b/libc/sysv/consts/__NR_csops_audittoken.s index b1a27dbff..f77b47e8c 100644 --- a/libc/sysv/consts/__NR_csops_audittoken.s +++ b/libc/sysv/consts/__NR_csops_audittoken.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_csops_audittoken -1 0x20000aa -1 -1 -1 +.syscon nr __NR_csops_audittoken -1 0x20000aa -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_csrctl.s b/libc/sysv/consts/__NR_csrctl.s index 45ce217c9..005558c4a 100644 --- a/libc/sysv/consts/__NR_csrctl.s +++ b/libc/sysv/consts/__NR_csrctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_csrctl -1 0x20001e3 -1 -1 -1 +.syscon nr __NR_csrctl -1 0x20001e3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_delete.s b/libc/sysv/consts/__NR_delete.s index b9c9a554d..4ee2653eb 100644 --- a/libc/sysv/consts/__NR_delete.s +++ b/libc/sysv/consts/__NR_delete.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_delete -1 0x20000e2 -1 -1 -1 +.syscon nr __NR_delete -1 0x20000e2 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_delete_module.s b/libc/sysv/consts/__NR_delete_module.s index 28b5ad1b1..b2e80b297 100644 --- a/libc/sysv/consts/__NR_delete_module.s +++ b/libc/sysv/consts/__NR_delete_module.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_delete_module 0x00b0 -1 -1 -1 -1 +.syscon nr __NR_delete_module 0x00b0 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_disable_threadsignal.s b/libc/sysv/consts/__NR_disable_threadsignal.s index 805f9e940..a2bd914f5 100644 --- a/libc/sysv/consts/__NR_disable_threadsignal.s +++ b/libc/sysv/consts/__NR_disable_threadsignal.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_disable_threadsignal -1 0x200014b -1 -1 -1 +.syscon nr __NR_disable_threadsignal -1 0x200014b -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_disconnectx.s b/libc/sysv/consts/__NR_disconnectx.s index b94200cfb..5aaa8ab14 100644 --- a/libc/sysv/consts/__NR_disconnectx.s +++ b/libc/sysv/consts/__NR_disconnectx.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_disconnectx -1 0x20001c0 -1 -1 -1 +.syscon nr __NR_disconnectx -1 0x20001c0 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_dup.s b/libc/sysv/consts/__NR_dup.s index e2cd286fc..8db727ba6 100644 --- a/libc/sysv/consts/__NR_dup.s +++ b/libc/sysv/consts/__NR_dup.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_dup 0x0020 0x2000029 0x0029 0x0029 -1 +.syscon nr __NR_dup 0x0020 0x2000029 0x0029 0x0029 0x029 -1 diff --git a/libc/sysv/consts/__NR_dup2.s b/libc/sysv/consts/__NR_dup2.s index 9a4405709..e2ee93097 100644 --- a/libc/sysv/consts/__NR_dup2.s +++ b/libc/sysv/consts/__NR_dup2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_dup2 0x0021 0x200005a 0x005a 0x005a -1 +.syscon nr __NR_dup2 0x0021 0x200005a 0x005a 0x005a 0x05a -1 diff --git a/libc/sysv/consts/__NR_dup3.s b/libc/sysv/consts/__NR_dup3.s index d28e5b92e..bbd9741c5 100644 --- a/libc/sysv/consts/__NR_dup3.s +++ b/libc/sysv/consts/__NR_dup3.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_dup3 0x0124 -1 -1 0x0066 -1 +.syscon nr __NR_dup3 0x0124 -1 -1 0x0066 0x1c6 -1 diff --git a/libc/sysv/consts/__NR_eaccess.s b/libc/sysv/consts/__NR_eaccess.s index f912fa0ec..e59080623 100644 --- a/libc/sysv/consts/__NR_eaccess.s +++ b/libc/sysv/consts/__NR_eaccess.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_eaccess -1 -1 0x0178 -1 -1 +.syscon nr __NR_eaccess -1 -1 0x0178 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_epoll_create.s b/libc/sysv/consts/__NR_epoll_create.s index d6ac88e70..7372afb92 100644 --- a/libc/sysv/consts/__NR_epoll_create.s +++ b/libc/sysv/consts/__NR_epoll_create.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_epoll_create 0x00d5 -1 -1 -1 -1 +.syscon nr __NR_epoll_create 0x00d5 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_epoll_create1.s b/libc/sysv/consts/__NR_epoll_create1.s index 917cc7944..1e5c1ee90 100644 --- a/libc/sysv/consts/__NR_epoll_create1.s +++ b/libc/sysv/consts/__NR_epoll_create1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_epoll_create1 0x0123 -1 -1 -1 -1 +.syscon nr __NR_epoll_create1 0x0123 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_epoll_ctl.s b/libc/sysv/consts/__NR_epoll_ctl.s index 3490827ca..4eedeeb12 100644 --- a/libc/sysv/consts/__NR_epoll_ctl.s +++ b/libc/sysv/consts/__NR_epoll_ctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_epoll_ctl 0x00e9 -1 -1 -1 -1 +.syscon nr __NR_epoll_ctl 0x00e9 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_epoll_pwait.s b/libc/sysv/consts/__NR_epoll_pwait.s index 090f4d9a7..d261c5b03 100644 --- a/libc/sysv/consts/__NR_epoll_pwait.s +++ b/libc/sysv/consts/__NR_epoll_pwait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_epoll_pwait 0x0119 -1 -1 -1 -1 +.syscon nr __NR_epoll_pwait 0x0119 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_epoll_wait.s b/libc/sysv/consts/__NR_epoll_wait.s index da0336580..450cef7ee 100644 --- a/libc/sysv/consts/__NR_epoll_wait.s +++ b/libc/sysv/consts/__NR_epoll_wait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_epoll_wait 0x00e8 -1 -1 -1 -1 +.syscon nr __NR_epoll_wait 0x00e8 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_eventfd.s b/libc/sysv/consts/__NR_eventfd.s index 46313ac24..d14958b2c 100644 --- a/libc/sysv/consts/__NR_eventfd.s +++ b/libc/sysv/consts/__NR_eventfd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_eventfd 0x011c -1 -1 -1 -1 +.syscon nr __NR_eventfd 0x011c -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_eventfd2.s b/libc/sysv/consts/__NR_eventfd2.s index 5ab12bb86..4e4cb5ee4 100644 --- a/libc/sysv/consts/__NR_eventfd2.s +++ b/libc/sysv/consts/__NR_eventfd2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_eventfd2 0x0122 -1 -1 -1 -1 +.syscon nr __NR_eventfd2 0x0122 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_exchangedata.s b/libc/sysv/consts/__NR_exchangedata.s index 99491699d..367b29a89 100644 --- a/libc/sysv/consts/__NR_exchangedata.s +++ b/libc/sysv/consts/__NR_exchangedata.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_exchangedata -1 0x20000df -1 -1 -1 +.syscon nr __NR_exchangedata -1 0x20000df -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_execve.s b/libc/sysv/consts/__NR_execve.s index 32121ba33..2ab3aabb9 100644 --- a/libc/sysv/consts/__NR_execve.s +++ b/libc/sysv/consts/__NR_execve.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_execve 0x003b 0x200003b 0x003b 0x003b -1 +.syscon nr __NR_execve 0x003b 0x200003b 0x003b 0x003b 0x03b -1 diff --git a/libc/sysv/consts/__NR_execveat.s b/libc/sysv/consts/__NR_execveat.s index 3aa438383..088b4a2c6 100644 --- a/libc/sysv/consts/__NR_execveat.s +++ b/libc/sysv/consts/__NR_execveat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_execveat 0x0142 -1 -1 -1 -1 +.syscon nr __NR_execveat 0x0142 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_exit.s b/libc/sysv/consts/__NR_exit.s index 33f6f7813..0798d0908 100644 --- a/libc/sysv/consts/__NR_exit.s +++ b/libc/sysv/consts/__NR_exit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_exit 0x003c 0x2000001 0x0001 0x0001 -1 +.syscon nr __NR_exit 0x003c 0x2000001 0x0001 0x0001 0x001 -1 diff --git a/libc/sysv/consts/__NR_exit_group.s b/libc/sysv/consts/__NR_exit_group.s index 020cb358c..297b4c3c4 100644 --- a/libc/sysv/consts/__NR_exit_group.s +++ b/libc/sysv/consts/__NR_exit_group.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_exit_group 0x00e7 0x2000001 0x0001 0x0001 -1 +.syscon nr __NR_exit_group 0x00e7 0x2000001 0x0001 0x0001 0x001 -1 diff --git a/libc/sysv/consts/__NR_extattr_delete_fd.s b/libc/sysv/consts/__NR_extattr_delete_fd.s index 06eb23ed3..67483ed97 100644 --- a/libc/sysv/consts/__NR_extattr_delete_fd.s +++ b/libc/sysv/consts/__NR_extattr_delete_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_delete_fd -1 -1 0x0175 -1 -1 +.syscon nr __NR_extattr_delete_fd -1 -1 0x0175 -1 0x16e -1 diff --git a/libc/sysv/consts/__NR_extattr_delete_file.s b/libc/sysv/consts/__NR_extattr_delete_file.s index ba7576fe9..4a8c2aba1 100644 --- a/libc/sysv/consts/__NR_extattr_delete_file.s +++ b/libc/sysv/consts/__NR_extattr_delete_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_delete_file -1 -1 0x0166 -1 -1 +.syscon nr __NR_extattr_delete_file -1 -1 0x0166 -1 0x16b -1 diff --git a/libc/sysv/consts/__NR_extattr_delete_link.s b/libc/sysv/consts/__NR_extattr_delete_link.s index 51feed4c4..1bd60f12a 100644 --- a/libc/sysv/consts/__NR_extattr_delete_link.s +++ b/libc/sysv/consts/__NR_extattr_delete_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_delete_link -1 -1 0x019e -1 -1 +.syscon nr __NR_extattr_delete_link -1 -1 0x019e -1 0x171 -1 diff --git a/libc/sysv/consts/__NR_extattr_get_fd.s b/libc/sysv/consts/__NR_extattr_get_fd.s index d080ffb56..09c45107e 100644 --- a/libc/sysv/consts/__NR_extattr_get_fd.s +++ b/libc/sysv/consts/__NR_extattr_get_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_get_fd -1 -1 0x0174 -1 -1 +.syscon nr __NR_extattr_get_fd -1 -1 0x0174 -1 0x16d -1 diff --git a/libc/sysv/consts/__NR_extattr_get_file.s b/libc/sysv/consts/__NR_extattr_get_file.s index 64136633b..ead90503d 100644 --- a/libc/sysv/consts/__NR_extattr_get_file.s +++ b/libc/sysv/consts/__NR_extattr_get_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_get_file -1 -1 0x0165 -1 -1 +.syscon nr __NR_extattr_get_file -1 -1 0x0165 -1 0x16a -1 diff --git a/libc/sysv/consts/__NR_extattr_get_link.s b/libc/sysv/consts/__NR_extattr_get_link.s index 5e6969888..ef7a911d1 100644 --- a/libc/sysv/consts/__NR_extattr_get_link.s +++ b/libc/sysv/consts/__NR_extattr_get_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_get_link -1 -1 0x019d -1 -1 +.syscon nr __NR_extattr_get_link -1 -1 0x019d -1 0x170 -1 diff --git a/libc/sysv/consts/__NR_extattr_list_fd.s b/libc/sysv/consts/__NR_extattr_list_fd.s index c4f9fa241..3abc14bcf 100644 --- a/libc/sysv/consts/__NR_extattr_list_fd.s +++ b/libc/sysv/consts/__NR_extattr_list_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_list_fd -1 -1 0x01b5 -1 -1 +.syscon nr __NR_extattr_list_fd -1 -1 0x01b5 -1 0x172 -1 diff --git a/libc/sysv/consts/__NR_extattr_list_file.s b/libc/sysv/consts/__NR_extattr_list_file.s index ba7e33d2b..52abc8747 100644 --- a/libc/sysv/consts/__NR_extattr_list_file.s +++ b/libc/sysv/consts/__NR_extattr_list_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_list_file -1 -1 0x01b6 -1 -1 +.syscon nr __NR_extattr_list_file -1 -1 0x01b6 -1 0x173 -1 diff --git a/libc/sysv/consts/__NR_extattr_list_link.s b/libc/sysv/consts/__NR_extattr_list_link.s index e3f44acbf..e54bdafaa 100644 --- a/libc/sysv/consts/__NR_extattr_list_link.s +++ b/libc/sysv/consts/__NR_extattr_list_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_list_link -1 -1 0x01b7 -1 -1 +.syscon nr __NR_extattr_list_link -1 -1 0x01b7 -1 0x174 -1 diff --git a/libc/sysv/consts/__NR_extattr_set_fd.s b/libc/sysv/consts/__NR_extattr_set_fd.s index 76ff97039..b2cfe1e43 100644 --- a/libc/sysv/consts/__NR_extattr_set_fd.s +++ b/libc/sysv/consts/__NR_extattr_set_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_set_fd -1 -1 0x0173 -1 -1 +.syscon nr __NR_extattr_set_fd -1 -1 0x0173 -1 0x16c -1 diff --git a/libc/sysv/consts/__NR_extattr_set_file.s b/libc/sysv/consts/__NR_extattr_set_file.s index 857fed369..eac5ff10b 100644 --- a/libc/sysv/consts/__NR_extattr_set_file.s +++ b/libc/sysv/consts/__NR_extattr_set_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_set_file -1 -1 0x0164 -1 -1 +.syscon nr __NR_extattr_set_file -1 -1 0x0164 -1 0x169 -1 diff --git a/libc/sysv/consts/__NR_extattr_set_link.s b/libc/sysv/consts/__NR_extattr_set_link.s index 963b8ee51..fe391ea06 100644 --- a/libc/sysv/consts/__NR_extattr_set_link.s +++ b/libc/sysv/consts/__NR_extattr_set_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattr_set_link -1 -1 0x019c -1 -1 +.syscon nr __NR_extattr_set_link -1 -1 0x019c -1 0x16f -1 diff --git a/libc/sysv/consts/__NR_extattrctl.s b/libc/sysv/consts/__NR_extattrctl.s index e72f0b124..423b204ec 100644 --- a/libc/sysv/consts/__NR_extattrctl.s +++ b/libc/sysv/consts/__NR_extattrctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_extattrctl -1 -1 0x0163 -1 -1 +.syscon nr __NR_extattrctl -1 -1 0x0163 -1 0x168 -1 diff --git a/libc/sysv/consts/__NR_faccessat.s b/libc/sysv/consts/__NR_faccessat.s index 0723e7278..e1d181569 100644 --- a/libc/sysv/consts/__NR_faccessat.s +++ b/libc/sysv/consts/__NR_faccessat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_faccessat 0x010d 0x20001d2 0x01e9 0x0139 -1 +.syscon nr __NR_faccessat 0x010d 0x20001d2 0x01e9 0x0139 0x1ce -1 diff --git a/libc/sysv/consts/__NR_fadvise.s b/libc/sysv/consts/__NR_fadvise.s index 647a487af..4b96e45fd 100644 --- a/libc/sysv/consts/__NR_fadvise.s +++ b/libc/sysv/consts/__NR_fadvise.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fadvise 0x00dd -1 0x0213 -1 -1 +.syscon nr __NR_fadvise 0x00dd -1 0x0213 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fallocate.s b/libc/sysv/consts/__NR_fallocate.s index 286d7913f..24a0ebca7 100644 --- a/libc/sysv/consts/__NR_fallocate.s +++ b/libc/sysv/consts/__NR_fallocate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fallocate 0x011d -1 -1 -1 -1 +.syscon nr __NR_fallocate 0x011d -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fanotify_init.s b/libc/sysv/consts/__NR_fanotify_init.s index 1392d03e8..971eccbdf 100644 --- a/libc/sysv/consts/__NR_fanotify_init.s +++ b/libc/sysv/consts/__NR_fanotify_init.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fanotify_init 0x012c -1 -1 -1 -1 +.syscon nr __NR_fanotify_init 0x012c -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fanotify_mark.s b/libc/sysv/consts/__NR_fanotify_mark.s index 38c447889..79347b419 100644 --- a/libc/sysv/consts/__NR_fanotify_mark.s +++ b/libc/sysv/consts/__NR_fanotify_mark.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fanotify_mark 0x012d -1 -1 -1 -1 +.syscon nr __NR_fanotify_mark 0x012d -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fchdir.s b/libc/sysv/consts/__NR_fchdir.s index 2006ba0f1..57018f6ee 100644 --- a/libc/sysv/consts/__NR_fchdir.s +++ b/libc/sysv/consts/__NR_fchdir.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fchdir 0x0051 0x200000d 0x000d 0x000d -1 +.syscon nr __NR_fchdir 0x0051 0x200000d 0x000d 0x000d 0x00d -1 diff --git a/libc/sysv/consts/__NR_fchflags.s b/libc/sysv/consts/__NR_fchflags.s index 39e2be335..9bee6c364 100644 --- a/libc/sysv/consts/__NR_fchflags.s +++ b/libc/sysv/consts/__NR_fchflags.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fchflags -1 0x2000023 0x0023 0x0023 -1 +.syscon nr __NR_fchflags -1 0x2000023 0x0023 0x0023 0x023 -1 diff --git a/libc/sysv/consts/__NR_fchmod.s b/libc/sysv/consts/__NR_fchmod.s index d59a77801..9adea7783 100644 --- a/libc/sysv/consts/__NR_fchmod.s +++ b/libc/sysv/consts/__NR_fchmod.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fchmod 0x005b 0x200007c 0x007c 0x007c -1 +.syscon nr __NR_fchmod 0x005b 0x200007c 0x007c 0x007c 0x07c -1 diff --git a/libc/sysv/consts/__NR_fchmod_extended.s b/libc/sysv/consts/__NR_fchmod_extended.s index b05f6cfec..d4e8d0bc4 100644 --- a/libc/sysv/consts/__NR_fchmod_extended.s +++ b/libc/sysv/consts/__NR_fchmod_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fchmod_extended -1 0x200011b -1 -1 -1 +.syscon nr __NR_fchmod_extended -1 0x200011b -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fchmodat.s b/libc/sysv/consts/__NR_fchmodat.s index 01fdd2584..dc148e115 100644 --- a/libc/sysv/consts/__NR_fchmodat.s +++ b/libc/sysv/consts/__NR_fchmodat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fchmodat 0x010c 0x20001d3 0x01ea 0x013a -1 +.syscon nr __NR_fchmodat 0x010c 0x20001d3 0x01ea 0x013a 0x1cf -1 diff --git a/libc/sysv/consts/__NR_fchown.s b/libc/sysv/consts/__NR_fchown.s index c754381ed..bbf314418 100644 --- a/libc/sysv/consts/__NR_fchown.s +++ b/libc/sysv/consts/__NR_fchown.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fchown 0x005d 0x200007b 0x007b 0x007b -1 +.syscon nr __NR_fchown 0x005d 0x200007b 0x007b 0x007b 0x07b -1 diff --git a/libc/sysv/consts/__NR_fchownat.s b/libc/sysv/consts/__NR_fchownat.s index 83b0aedee..ab910a12a 100644 --- a/libc/sysv/consts/__NR_fchownat.s +++ b/libc/sysv/consts/__NR_fchownat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fchownat 0x0104 0x20001d4 0x01eb 0x013b -1 +.syscon nr __NR_fchownat 0x0104 0x20001d4 0x01eb 0x013b 0x1d0 -1 diff --git a/libc/sysv/consts/__NR_fclonefileat.s b/libc/sysv/consts/__NR_fclonefileat.s index e10e10bdb..691bac7d2 100644 --- a/libc/sysv/consts/__NR_fclonefileat.s +++ b/libc/sysv/consts/__NR_fclonefileat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fclonefileat -1 0x2000205 -1 -1 -1 +.syscon nr __NR_fclonefileat -1 0x2000205 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fcntl.s b/libc/sysv/consts/__NR_fcntl.s index edc49d123..3919eece5 100644 --- a/libc/sysv/consts/__NR_fcntl.s +++ b/libc/sysv/consts/__NR_fcntl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fcntl 0x0048 0x200005c 0x005c 0x005c -1 +.syscon nr __NR_fcntl 0x0048 0x200005c 0x005c 0x005c 0x05c -1 diff --git a/libc/sysv/consts/__NR_fcntl_nocancel.s b/libc/sysv/consts/__NR_fcntl_nocancel.s index 9125950b5..494658327 100644 --- a/libc/sysv/consts/__NR_fcntl_nocancel.s +++ b/libc/sysv/consts/__NR_fcntl_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fcntl_nocancel -1 0x2000196 -1 -1 -1 +.syscon nr __NR_fcntl_nocancel -1 0x2000196 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fdatasync.s b/libc/sysv/consts/__NR_fdatasync.s index c28094920..4b88d51b8 100644 --- a/libc/sysv/consts/__NR_fdatasync.s +++ b/libc/sysv/consts/__NR_fdatasync.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fdatasync 0x004b 0x20000bb 0x0226 0x005f -1 +.syscon nr __NR_fdatasync 0x004b 0x20000bb 0x0226 0x005f 0x0f1 -1 diff --git a/libc/sysv/consts/__NR_fexecve.s b/libc/sysv/consts/__NR_fexecve.s index d47072e13..8d426df5d 100644 --- a/libc/sysv/consts/__NR_fexecve.s +++ b/libc/sysv/consts/__NR_fexecve.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fexecve -1 -1 0x01ec -1 -1 +.syscon nr __NR_fexecve -1 -1 0x01ec -1 0x1d1 -1 diff --git a/libc/sysv/consts/__NR_ffclock_getcounter.s b/libc/sysv/consts/__NR_ffclock_getcounter.s index 17e8117c4..09255c63b 100644 --- a/libc/sysv/consts/__NR_ffclock_getcounter.s +++ b/libc/sysv/consts/__NR_ffclock_getcounter.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ffclock_getcounter -1 -1 0x00f1 -1 -1 +.syscon nr __NR_ffclock_getcounter -1 -1 0x00f1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ffclock_getestimate.s b/libc/sysv/consts/__NR_ffclock_getestimate.s index ddf85250c..4d20a325a 100644 --- a/libc/sysv/consts/__NR_ffclock_getestimate.s +++ b/libc/sysv/consts/__NR_ffclock_getestimate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ffclock_getestimate -1 -1 0x00f3 -1 -1 +.syscon nr __NR_ffclock_getestimate -1 -1 0x00f3 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ffclock_setestimate.s b/libc/sysv/consts/__NR_ffclock_setestimate.s index 688abf791..1683944eb 100644 --- a/libc/sysv/consts/__NR_ffclock_setestimate.s +++ b/libc/sysv/consts/__NR_ffclock_setestimate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ffclock_setestimate -1 -1 0x00f2 -1 -1 +.syscon nr __NR_ffclock_setestimate -1 -1 0x00f2 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ffsctl.s b/libc/sysv/consts/__NR_ffsctl.s index 5d1274f91..03fbbc474 100644 --- a/libc/sysv/consts/__NR_ffsctl.s +++ b/libc/sysv/consts/__NR_ffsctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ffsctl -1 0x20000f5 -1 -1 -1 +.syscon nr __NR_ffsctl -1 0x20000f5 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fgetattrlist.s b/libc/sysv/consts/__NR_fgetattrlist.s index d2afcb1a5..4588df23e 100644 --- a/libc/sysv/consts/__NR_fgetattrlist.s +++ b/libc/sysv/consts/__NR_fgetattrlist.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fgetattrlist -1 0x20000e4 -1 -1 -1 +.syscon nr __NR_fgetattrlist -1 0x20000e4 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fgetxattr.s b/libc/sysv/consts/__NR_fgetxattr.s index 28e389fb5..4c7485f30 100644 --- a/libc/sysv/consts/__NR_fgetxattr.s +++ b/libc/sysv/consts/__NR_fgetxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fgetxattr 0x00c1 0x20000eb -1 -1 -1 +.syscon nr __NR_fgetxattr 0x00c1 0x20000eb -1 -1 0x17c -1 diff --git a/libc/sysv/consts/__NR_fhlink.s b/libc/sysv/consts/__NR_fhlink.s index f5d9b751c..bc9a7d033 100644 --- a/libc/sysv/consts/__NR_fhlink.s +++ b/libc/sysv/consts/__NR_fhlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fhlink -1 -1 0x0235 -1 -1 +.syscon nr __NR_fhlink -1 -1 0x0235 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fhlinkat.s b/libc/sysv/consts/__NR_fhlinkat.s index 65482dc5f..ae30a35bf 100644 --- a/libc/sysv/consts/__NR_fhlinkat.s +++ b/libc/sysv/consts/__NR_fhlinkat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fhlinkat -1 -1 0x0236 -1 -1 +.syscon nr __NR_fhlinkat -1 -1 0x0236 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fhopen.s b/libc/sysv/consts/__NR_fhopen.s index e6680d441..f61d142c7 100644 --- a/libc/sysv/consts/__NR_fhopen.s +++ b/libc/sysv/consts/__NR_fhopen.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fhopen -1 0x20000f8 0x012a 0x0108 -1 +.syscon nr __NR_fhopen -1 0x20000f8 0x012a 0x0108 0x18c -1 diff --git a/libc/sysv/consts/__NR_fhreadlink.s b/libc/sysv/consts/__NR_fhreadlink.s index 92290ba9c..6742cb46b 100644 --- a/libc/sysv/consts/__NR_fhreadlink.s +++ b/libc/sysv/consts/__NR_fhreadlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fhreadlink -1 -1 0x0237 -1 -1 +.syscon nr __NR_fhreadlink -1 -1 0x0237 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fhstat.s b/libc/sysv/consts/__NR_fhstat.s index 499580065..d97c7f129 100644 --- a/libc/sysv/consts/__NR_fhstat.s +++ b/libc/sysv/consts/__NR_fhstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fhstat -1 -1 0x0229 0x0126 -1 +.syscon nr __NR_fhstat -1 -1 0x0229 0x0126 0x1c3 -1 diff --git a/libc/sysv/consts/__NR_fhstatfs.s b/libc/sysv/consts/__NR_fhstatfs.s index 8ddd85e7e..258650e22 100644 --- a/libc/sysv/consts/__NR_fhstatfs.s +++ b/libc/sysv/consts/__NR_fhstatfs.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fhstatfs -1 -1 0x022e 0x0041 -1 +.syscon nr __NR_fhstatfs -1 -1 0x022e 0x0041 -1 -1 diff --git a/libc/sysv/consts/__NR_fileport_makefd.s b/libc/sysv/consts/__NR_fileport_makefd.s index 39d4d26fa..b52745db3 100644 --- a/libc/sysv/consts/__NR_fileport_makefd.s +++ b/libc/sysv/consts/__NR_fileport_makefd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fileport_makefd -1 0x20001af -1 -1 -1 +.syscon nr __NR_fileport_makefd -1 0x20001af -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fileport_makeport.s b/libc/sysv/consts/__NR_fileport_makeport.s index 8a22423d9..c78df92e6 100644 --- a/libc/sysv/consts/__NR_fileport_makeport.s +++ b/libc/sysv/consts/__NR_fileport_makeport.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fileport_makeport -1 0x20001ae -1 -1 -1 +.syscon nr __NR_fileport_makeport -1 0x20001ae -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_finit_module.s b/libc/sysv/consts/__NR_finit_module.s index fbf35fd94..cd788ecd6 100644 --- a/libc/sysv/consts/__NR_finit_module.s +++ b/libc/sysv/consts/__NR_finit_module.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_finit_module 0x0139 -1 -1 -1 -1 +.syscon nr __NR_finit_module 0x0139 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_flistxattr.s b/libc/sysv/consts/__NR_flistxattr.s index 594eb34bc..969810ee5 100644 --- a/libc/sysv/consts/__NR_flistxattr.s +++ b/libc/sysv/consts/__NR_flistxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_flistxattr 0x00c4 0x20000f1 -1 -1 -1 +.syscon nr __NR_flistxattr 0x00c4 0x20000f1 -1 -1 0x17f -1 diff --git a/libc/sysv/consts/__NR_flock.s b/libc/sysv/consts/__NR_flock.s index 1b7c545ac..876cf7bc6 100644 --- a/libc/sysv/consts/__NR_flock.s +++ b/libc/sysv/consts/__NR_flock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_flock 0x0049 0x2000083 0x0083 0x0083 -1 +.syscon nr __NR_flock 0x0049 0x2000083 0x0083 0x0083 0x083 -1 diff --git a/libc/sysv/consts/__NR_fmount.s b/libc/sysv/consts/__NR_fmount.s index 1bec6db6a..489a10d63 100644 --- a/libc/sysv/consts/__NR_fmount.s +++ b/libc/sysv/consts/__NR_fmount.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fmount -1 0x200020e -1 -1 -1 +.syscon nr __NR_fmount -1 0x200020e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fork.s b/libc/sysv/consts/__NR_fork.s index 5d03652e0..a223c835f 100644 --- a/libc/sysv/consts/__NR_fork.s +++ b/libc/sysv/consts/__NR_fork.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fork 0x0039 0x2000002 0x0002 0x0002 -1 +.syscon nr __NR_fork 0x0039 0x2000002 0x0002 0x0002 0x002 -1 diff --git a/libc/sysv/consts/__NR_fpathconf.s b/libc/sysv/consts/__NR_fpathconf.s index f0d2e6bf6..7a9041636 100644 --- a/libc/sysv/consts/__NR_fpathconf.s +++ b/libc/sysv/consts/__NR_fpathconf.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fpathconf -1 0x20000c0 0x00c0 0x00c0 -1 +.syscon nr __NR_fpathconf -1 0x20000c0 0x00c0 0x00c0 0x0c0 -1 diff --git a/libc/sysv/consts/__NR_fremovexattr.s b/libc/sysv/consts/__NR_fremovexattr.s index 9d314a6bc..248b40e95 100644 --- a/libc/sysv/consts/__NR_fremovexattr.s +++ b/libc/sysv/consts/__NR_fremovexattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fremovexattr 0x00c7 0x20000ef -1 -1 -1 +.syscon nr __NR_fremovexattr 0x00c7 0x20000ef -1 -1 0x182 -1 diff --git a/libc/sysv/consts/__NR_fs_snapshot.s b/libc/sysv/consts/__NR_fs_snapshot.s index 86892f8b0..4c50ab1d2 100644 --- a/libc/sysv/consts/__NR_fs_snapshot.s +++ b/libc/sysv/consts/__NR_fs_snapshot.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fs_snapshot -1 0x2000206 -1 -1 -1 +.syscon nr __NR_fs_snapshot -1 0x2000206 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fsctl.s b/libc/sysv/consts/__NR_fsctl.s index 7d4bec46f..175262c0a 100644 --- a/libc/sysv/consts/__NR_fsctl.s +++ b/libc/sysv/consts/__NR_fsctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fsctl -1 0x20000f2 -1 -1 -1 +.syscon nr __NR_fsctl -1 0x20000f2 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fsetattrlist.s b/libc/sysv/consts/__NR_fsetattrlist.s index c3de4194c..f6d229ca7 100644 --- a/libc/sysv/consts/__NR_fsetattrlist.s +++ b/libc/sysv/consts/__NR_fsetattrlist.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fsetattrlist -1 0x20000e5 -1 -1 -1 +.syscon nr __NR_fsetattrlist -1 0x20000e5 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fsetxattr.s b/libc/sysv/consts/__NR_fsetxattr.s index b664a919e..881398de0 100644 --- a/libc/sysv/consts/__NR_fsetxattr.s +++ b/libc/sysv/consts/__NR_fsetxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fsetxattr 0x00be 0x20000ed -1 -1 -1 +.syscon nr __NR_fsetxattr 0x00be 0x20000ed -1 -1 0x179 -1 diff --git a/libc/sysv/consts/__NR_fstat.s b/libc/sysv/consts/__NR_fstat.s index 8aeb4bdb3..64343cd01 100644 --- a/libc/sysv/consts/__NR_fstat.s +++ b/libc/sysv/consts/__NR_fstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fstat 0x0005 0x2000153 0x0227 0x0035 -1 +.syscon nr __NR_fstat 0x0005 0x2000153 0x0227 0x0035 0x1b8 -1 diff --git a/libc/sysv/consts/__NR_fstat_extended.s b/libc/sysv/consts/__NR_fstat_extended.s index dd337e7a4..a1c68b2e6 100644 --- a/libc/sysv/consts/__NR_fstat_extended.s +++ b/libc/sysv/consts/__NR_fstat_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fstat_extended -1 0x2000119 -1 -1 -1 +.syscon nr __NR_fstat_extended -1 0x2000119 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_fstatat.s b/libc/sysv/consts/__NR_fstatat.s index dfe5b76bf..cba402bdf 100644 --- a/libc/sysv/consts/__NR_fstatat.s +++ b/libc/sysv/consts/__NR_fstatat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fstatat 0x0106 0x20001d6 0x0228 0x002a -1 +.syscon nr __NR_fstatat 0x0106 0x20001d6 0x0228 0x002a 0x1d2 -1 diff --git a/libc/sysv/consts/__NR_fstatfs.s b/libc/sysv/consts/__NR_fstatfs.s index d75e8b31f..d8f947161 100644 --- a/libc/sysv/consts/__NR_fstatfs.s +++ b/libc/sysv/consts/__NR_fstatfs.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fstatfs 0x008a 0x200015a 0x022c 0x0040 -1 +.syscon nr __NR_fstatfs 0x008a 0x200015a 0x022c 0x0040 -1 -1 diff --git a/libc/sysv/consts/__NR_fsync.s b/libc/sysv/consts/__NR_fsync.s index 84934a417..3d55d617f 100644 --- a/libc/sysv/consts/__NR_fsync.s +++ b/libc/sysv/consts/__NR_fsync.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fsync 0x004a 0x200005f 0x005f 0x005f -1 +.syscon nr __NR_fsync 0x004a 0x200005f 0x005f 0x005f 0x05f -1 diff --git a/libc/sysv/consts/__NR_fsync_nocancel.s b/libc/sysv/consts/__NR_fsync_nocancel.s index 0cd1cdff8..c5d7ef328 100644 --- a/libc/sysv/consts/__NR_fsync_nocancel.s +++ b/libc/sysv/consts/__NR_fsync_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_fsync_nocancel -1 0x2000198 -1 -1 -1 +.syscon nr __NR_fsync_nocancel -1 0x2000198 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ftruncate.s b/libc/sysv/consts/__NR_ftruncate.s index a88bfd855..8c7363350 100644 --- a/libc/sysv/consts/__NR_ftruncate.s +++ b/libc/sysv/consts/__NR_ftruncate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ftruncate 0x004d 0x20000c9 0x01e0 0x00c9 -1 +.syscon nr __NR_ftruncate 0x004d 0x20000c9 0x01e0 0x00c9 0x0c9 -1 diff --git a/libc/sysv/consts/__NR_futex.s b/libc/sysv/consts/__NR_futex.s index 7d41a0f3c..6bb28500a 100644 --- a/libc/sysv/consts/__NR_futex.s +++ b/libc/sysv/consts/__NR_futex.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_futex 0x00ca -1 -1 0x0053 -1 +.syscon nr __NR_futex 0x00ca -1 -1 0x0053 -1 -1 diff --git a/libc/sysv/consts/__NR_futimens.s b/libc/sysv/consts/__NR_futimens.s index dd0ea4750..d0d01be71 100644 --- a/libc/sysv/consts/__NR_futimens.s +++ b/libc/sysv/consts/__NR_futimens.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_futimens -1 -1 0x0222 0x0055 -1 +.syscon nr __NR_futimens -1 -1 0x0222 0x0055 0x1d8 -1 diff --git a/libc/sysv/consts/__NR_futimes.s b/libc/sysv/consts/__NR_futimes.s index 074d9c95c..e410f9187 100644 --- a/libc/sysv/consts/__NR_futimes.s +++ b/libc/sysv/consts/__NR_futimes.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_futimes -1 0x200008b 0x00ce 0x004d -1 +.syscon nr __NR_futimes -1 0x200008b 0x00ce 0x004d 0x1a7 -1 diff --git a/libc/sysv/consts/__NR_futimesat.s b/libc/sysv/consts/__NR_futimesat.s index f6994384b..76d6441e6 100644 --- a/libc/sysv/consts/__NR_futimesat.s +++ b/libc/sysv/consts/__NR_futimesat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_futimesat 0x0105 -1 0x01ee -1 -1 +.syscon nr __NR_futimesat 0x0105 -1 0x01ee -1 -1 -1 diff --git a/libc/sysv/consts/__NR_get_mempolicy.s b/libc/sysv/consts/__NR_get_mempolicy.s index adc23eaf8..965cd0d0c 100644 --- a/libc/sysv/consts/__NR_get_mempolicy.s +++ b/libc/sysv/consts/__NR_get_mempolicy.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_get_mempolicy 0x00ef -1 -1 -1 -1 +.syscon nr __NR_get_mempolicy 0x00ef -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_get_robust_list.s b/libc/sysv/consts/__NR_get_robust_list.s index 20c654775..bf0636cba 100644 --- a/libc/sysv/consts/__NR_get_robust_list.s +++ b/libc/sysv/consts/__NR_get_robust_list.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_get_robust_list 0x0112 -1 -1 -1 -1 +.syscon nr __NR_get_robust_list 0x0112 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_get_tcb.s b/libc/sysv/consts/__NR_get_tcb.s index b1ad81619..a7053e0b7 100644 --- a/libc/sysv/consts/__NR_get_tcb.s +++ b/libc/sysv/consts/__NR_get_tcb.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_get_tcb -1 -1 -1 0x014a -1 +.syscon nr __NR_get_tcb -1 -1 -1 0x014a -1 -1 diff --git a/libc/sysv/consts/__NR_getattrlist.s b/libc/sysv/consts/__NR_getattrlist.s index 8f832ded9..0a9af1051 100644 --- a/libc/sysv/consts/__NR_getattrlist.s +++ b/libc/sysv/consts/__NR_getattrlist.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getattrlist -1 0x20000dc -1 -1 -1 +.syscon nr __NR_getattrlist -1 0x20000dc -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getattrlistat.s b/libc/sysv/consts/__NR_getattrlistat.s index 188ce5758..22db1a9ff 100644 --- a/libc/sysv/consts/__NR_getattrlistat.s +++ b/libc/sysv/consts/__NR_getattrlistat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getattrlistat -1 0x20001dc -1 -1 -1 +.syscon nr __NR_getattrlistat -1 0x20001dc -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getattrlistbulk.s b/libc/sysv/consts/__NR_getattrlistbulk.s index b5f23612d..72419f734 100644 --- a/libc/sysv/consts/__NR_getattrlistbulk.s +++ b/libc/sysv/consts/__NR_getattrlistbulk.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getattrlistbulk -1 0x20001cd -1 -1 -1 +.syscon nr __NR_getattrlistbulk -1 0x20001cd -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getaudit.s b/libc/sysv/consts/__NR_getaudit.s index 97c98a995..2659d55f9 100644 --- a/libc/sysv/consts/__NR_getaudit.s +++ b/libc/sysv/consts/__NR_getaudit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getaudit -1 -1 0x01c1 -1 -1 +.syscon nr __NR_getaudit -1 -1 0x01c1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getaudit_addr.s b/libc/sysv/consts/__NR_getaudit_addr.s index 7f6b6677e..97658235d 100644 --- a/libc/sysv/consts/__NR_getaudit_addr.s +++ b/libc/sysv/consts/__NR_getaudit_addr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getaudit_addr -1 0x2000165 0x01c3 -1 -1 +.syscon nr __NR_getaudit_addr -1 0x2000165 0x01c3 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getauid.s b/libc/sysv/consts/__NR_getauid.s index 8cc94e909..875ae5b3a 100644 --- a/libc/sysv/consts/__NR_getauid.s +++ b/libc/sysv/consts/__NR_getauid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getauid -1 0x2000161 0x01bf -1 -1 +.syscon nr __NR_getauid -1 0x2000161 0x01bf -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getcontext.s b/libc/sysv/consts/__NR_getcontext.s index 27e661908..b51e43882 100644 --- a/libc/sysv/consts/__NR_getcontext.s +++ b/libc/sysv/consts/__NR_getcontext.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getcontext -1 -1 0x01a5 -1 -1 +.syscon nr __NR_getcontext -1 -1 0x01a5 -1 0x133 -1 diff --git a/libc/sysv/consts/__NR_getcpu.s b/libc/sysv/consts/__NR_getcpu.s index df6e55373..098b1e79c 100644 --- a/libc/sysv/consts/__NR_getcpu.s +++ b/libc/sysv/consts/__NR_getcpu.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getcpu 0x0135 -1 -1 -1 -1 +.syscon nr __NR_getcpu 0x0135 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getcwd.s b/libc/sysv/consts/__NR_getcwd.s index b535c81ee..d0f87b11c 100644 --- a/libc/sysv/consts/__NR_getcwd.s +++ b/libc/sysv/consts/__NR_getcwd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getcwd 0x004f -1 0x0146 0x0130 -1 +.syscon nr __NR_getcwd 0x004f -1 0x0146 0x0130 -1 -1 diff --git a/libc/sysv/consts/__NR_getdents.s b/libc/sysv/consts/__NR_getdents.s index d236fca83..d450e95c9 100644 --- a/libc/sysv/consts/__NR_getdents.s +++ b/libc/sysv/consts/__NR_getdents.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getdents 0x00d9 -1 0x0110 0x0063 -1 +.syscon nr __NR_getdents 0x00d9 -1 0x0110 0x0063 0x186 -1 diff --git a/libc/sysv/consts/__NR_getdirentries.s b/libc/sysv/consts/__NR_getdirentries.s index 6f19ec5fc..b5f436f7d 100644 --- a/libc/sysv/consts/__NR_getdirentries.s +++ b/libc/sysv/consts/__NR_getdirentries.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getdirentries -1 0x2000158 0x022a -1 -1 +.syscon nr __NR_getdirentries -1 0x2000158 0x022a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getdirentriesattr.s b/libc/sysv/consts/__NR_getdirentriesattr.s index 45b1e342f..edaa6af23 100644 --- a/libc/sysv/consts/__NR_getdirentriesattr.s +++ b/libc/sysv/consts/__NR_getdirentriesattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getdirentriesattr -1 0x20000de -1 -1 -1 +.syscon nr __NR_getdirentriesattr -1 0x20000de -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getdtablecount.s b/libc/sysv/consts/__NR_getdtablecount.s index 831b92907..fa3bf2900 100644 --- a/libc/sysv/consts/__NR_getdtablecount.s +++ b/libc/sysv/consts/__NR_getdtablecount.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getdtablecount -1 -1 -1 0x0012 -1 +.syscon nr __NR_getdtablecount -1 -1 -1 0x0012 -1 -1 diff --git a/libc/sysv/consts/__NR_getdtablesize.s b/libc/sysv/consts/__NR_getdtablesize.s index 33758079b..f3d4084f9 100644 --- a/libc/sysv/consts/__NR_getdtablesize.s +++ b/libc/sysv/consts/__NR_getdtablesize.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getdtablesize -1 0x2000059 0x0059 -1 -1 +.syscon nr __NR_getdtablesize -1 0x2000059 0x0059 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getegid.s b/libc/sysv/consts/__NR_getegid.s index 0f083f833..ae87ce37e 100644 --- a/libc/sysv/consts/__NR_getegid.s +++ b/libc/sysv/consts/__NR_getegid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getegid 0x006c 0x200002b 0x002b 0x002b -1 +.syscon nr __NR_getegid 0x006c 0x200002b 0x002b 0x002b -1 -1 diff --git a/libc/sysv/consts/__NR_geteuid.s b/libc/sysv/consts/__NR_geteuid.s index 2768ceda9..be74029fb 100644 --- a/libc/sysv/consts/__NR_geteuid.s +++ b/libc/sysv/consts/__NR_geteuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_geteuid 0x006b 0x2000019 0x0019 0x0019 -1 +.syscon nr __NR_geteuid 0x006b 0x2000019 0x0019 0x0019 -1 -1 diff --git a/libc/sysv/consts/__NR_getfh.s b/libc/sysv/consts/__NR_getfh.s index 0399250e4..99e9841c2 100644 --- a/libc/sysv/consts/__NR_getfh.s +++ b/libc/sysv/consts/__NR_getfh.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getfh -1 0x20000a1 0x00a1 0x00a1 -1 +.syscon nr __NR_getfh -1 0x20000a1 0x00a1 0x00a1 0x18b -1 diff --git a/libc/sysv/consts/__NR_getfhat.s b/libc/sysv/consts/__NR_getfhat.s index 2fc5f00ff..4beaadcea 100644 --- a/libc/sysv/consts/__NR_getfhat.s +++ b/libc/sysv/consts/__NR_getfhat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getfhat -1 -1 0x0234 -1 -1 +.syscon nr __NR_getfhat -1 -1 0x0234 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getfsstat.s b/libc/sysv/consts/__NR_getfsstat.s index edc39d9d0..687a3a970 100644 --- a/libc/sysv/consts/__NR_getfsstat.s +++ b/libc/sysv/consts/__NR_getfsstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getfsstat -1 0x200015b 0x022d 0x003e -1 +.syscon nr __NR_getfsstat -1 0x200015b 0x022d 0x003e -1 -1 diff --git a/libc/sysv/consts/__NR_getgid.s b/libc/sysv/consts/__NR_getgid.s index 090b690e7..3a772b216 100644 --- a/libc/sysv/consts/__NR_getgid.s +++ b/libc/sysv/consts/__NR_getgid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getgid 0x0068 0x200002f 0x002f 0x002f -1 +.syscon nr __NR_getgid 0x0068 0x200002f 0x002f 0x002f -1 -1 diff --git a/libc/sysv/consts/__NR_getgroups.s b/libc/sysv/consts/__NR_getgroups.s index a53c1916a..f2c623b78 100644 --- a/libc/sysv/consts/__NR_getgroups.s +++ b/libc/sysv/consts/__NR_getgroups.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getgroups 0x0073 0x200004f 0x004f 0x004f -1 +.syscon nr __NR_getgroups 0x0073 0x200004f 0x004f 0x004f 0x04f -1 diff --git a/libc/sysv/consts/__NR_gethostid.s b/libc/sysv/consts/__NR_gethostid.s index 7a537d510..65bdd11b0 100644 --- a/libc/sysv/consts/__NR_gethostid.s +++ b/libc/sysv/consts/__NR_gethostid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_gethostid -1 -1 0x008e -1 -1 +.syscon nr __NR_gethostid -1 -1 0x008e -1 -1 -1 diff --git a/libc/sysv/consts/__NR_gethostuuid.s b/libc/sysv/consts/__NR_gethostuuid.s index 3d53ef83a..d92b12a80 100644 --- a/libc/sysv/consts/__NR_gethostuuid.s +++ b/libc/sysv/consts/__NR_gethostuuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_gethostuuid -1 0x200008e -1 -1 -1 +.syscon nr __NR_gethostuuid -1 0x200008e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getitimer.s b/libc/sysv/consts/__NR_getitimer.s index 740c5a71d..5aea7ffeb 100644 --- a/libc/sysv/consts/__NR_getitimer.s +++ b/libc/sysv/consts/__NR_getitimer.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getitimer 0x0024 0x2000056 0x0056 0x0046 -1 +.syscon nr __NR_getitimer 0x0024 0x2000056 0x0056 0x0046 0x1aa -1 diff --git a/libc/sysv/consts/__NR_getkerninfo.s b/libc/sysv/consts/__NR_getkerninfo.s index acae98b2e..c6013c5c3 100644 --- a/libc/sysv/consts/__NR_getkerninfo.s +++ b/libc/sysv/consts/__NR_getkerninfo.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getkerninfo -1 -1 0x003f -1 -1 +.syscon nr __NR_getkerninfo -1 -1 0x003f -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getlogin.s b/libc/sysv/consts/__NR_getlogin.s index 1aa9436d8..40b3674c7 100644 --- a/libc/sysv/consts/__NR_getlogin.s +++ b/libc/sysv/consts/__NR_getlogin.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getlogin -1 0x2000031 0x0031 -1 -1 +.syscon nr __NR_getlogin -1 0x2000031 0x0031 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getlogin_r.s b/libc/sysv/consts/__NR_getlogin_r.s index fd205744a..5ac4b6276 100644 --- a/libc/sysv/consts/__NR_getlogin_r.s +++ b/libc/sysv/consts/__NR_getlogin_r.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getlogin_r -1 -1 -1 0x008d -1 +.syscon nr __NR_getlogin_r -1 -1 -1 0x008d -1 -1 diff --git a/libc/sysv/consts/__NR_getloginclass.s b/libc/sysv/consts/__NR_getloginclass.s index e732d3b78..d8c58a039 100644 --- a/libc/sysv/consts/__NR_getloginclass.s +++ b/libc/sysv/consts/__NR_getloginclass.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getloginclass -1 -1 0x020b -1 -1 +.syscon nr __NR_getloginclass -1 -1 0x020b -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getpagesize.s b/libc/sysv/consts/__NR_getpagesize.s index 86a28ba14..584efd401 100644 --- a/libc/sysv/consts/__NR_getpagesize.s +++ b/libc/sysv/consts/__NR_getpagesize.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getpagesize -1 -1 0x0040 -1 -1 +.syscon nr __NR_getpagesize -1 -1 0x0040 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getpeername.s b/libc/sysv/consts/__NR_getpeername.s index b9d3e7d69..6b949b858 100644 --- a/libc/sysv/consts/__NR_getpeername.s +++ b/libc/sysv/consts/__NR_getpeername.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getpeername 0x0034 0x200001f 0x008d 0x001f -1 +.syscon nr __NR_getpeername 0x0034 0x200001f 0x008d 0x001f 0x01f -1 diff --git a/libc/sysv/consts/__NR_getpgid.s b/libc/sysv/consts/__NR_getpgid.s index cdd77bb62..d3815966e 100644 --- a/libc/sysv/consts/__NR_getpgid.s +++ b/libc/sysv/consts/__NR_getpgid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getpgid 0x0079 0x2000097 0x00cf 0x00cf -1 +.syscon nr __NR_getpgid 0x0079 0x2000097 0x00cf 0x00cf 0x0cf -1 diff --git a/libc/sysv/consts/__NR_getpgrp.s b/libc/sysv/consts/__NR_getpgrp.s index 9aa47dbc2..72a6c9676 100644 --- a/libc/sysv/consts/__NR_getpgrp.s +++ b/libc/sysv/consts/__NR_getpgrp.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getpgrp 0x006f 0x2000051 0x0051 0x0051 -1 +.syscon nr __NR_getpgrp 0x006f 0x2000051 0x0051 0x0051 0x051 -1 diff --git a/libc/sysv/consts/__NR_getpid.s b/libc/sysv/consts/__NR_getpid.s index d3918d8e5..634f5acbc 100644 --- a/libc/sysv/consts/__NR_getpid.s +++ b/libc/sysv/consts/__NR_getpid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getpid 0x0027 0x2000014 0x0014 0x0014 -1 +.syscon nr __NR_getpid 0x0027 0x2000014 0x0014 0x0014 -1 -1 diff --git a/libc/sysv/consts/__NR_getppid.s b/libc/sysv/consts/__NR_getppid.s index 365ae4a68..7612cb22f 100644 --- a/libc/sysv/consts/__NR_getppid.s +++ b/libc/sysv/consts/__NR_getppid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getppid 0x006e 0x2000027 0x0027 0x0027 -1 +.syscon nr __NR_getppid 0x006e 0x2000027 0x0027 0x0027 -1 -1 diff --git a/libc/sysv/consts/__NR_getpriority.s b/libc/sysv/consts/__NR_getpriority.s index a9e8188ee..6995ca4b3 100644 --- a/libc/sysv/consts/__NR_getpriority.s +++ b/libc/sysv/consts/__NR_getpriority.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getpriority 0x008c 0x2000064 0x0064 0x0064 -1 +.syscon nr __NR_getpriority 0x008c 0x2000064 0x0064 0x0064 0x064 -1 diff --git a/libc/sysv/consts/__NR_getrandom.s b/libc/sysv/consts/__NR_getrandom.s index a5f35c867..2647e6d35 100644 --- a/libc/sysv/consts/__NR_getrandom.s +++ b/libc/sysv/consts/__NR_getrandom.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getrandom 0x013e 0x20001f4 0x0233 0x0007 -1 +.syscon nr __NR_getrandom 0x013e 0x20001f4 0x0233 0x0007 0x05b -1 diff --git a/libc/sysv/consts/__NR_getresgid.s b/libc/sysv/consts/__NR_getresgid.s index d80d03c38..bbbb7673e 100644 --- a/libc/sysv/consts/__NR_getresgid.s +++ b/libc/sysv/consts/__NR_getresgid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getresgid 0x0078 -1 0x0169 0x011b -1 +.syscon nr __NR_getresgid 0x0078 -1 0x0169 0x011b -1 -1 diff --git a/libc/sysv/consts/__NR_getresuid.s b/libc/sysv/consts/__NR_getresuid.s index d8143cef2..ccdb0721b 100644 --- a/libc/sysv/consts/__NR_getresuid.s +++ b/libc/sysv/consts/__NR_getresuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getresuid 0x0076 -1 0x0168 0x0119 -1 +.syscon nr __NR_getresuid 0x0076 -1 0x0168 0x0119 -1 -1 diff --git a/libc/sysv/consts/__NR_getrlimit.s b/libc/sysv/consts/__NR_getrlimit.s index f6360497b..a34bf6bf7 100644 --- a/libc/sysv/consts/__NR_getrlimit.s +++ b/libc/sysv/consts/__NR_getrlimit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getrlimit 0x0061 0x20000c2 0x00c2 0x00c2 -1 +.syscon nr __NR_getrlimit 0x0061 0x20000c2 0x00c2 0x00c2 0x0c2 -1 diff --git a/libc/sysv/consts/__NR_getrtable.s b/libc/sysv/consts/__NR_getrtable.s index da65dbe34..e649ba625 100644 --- a/libc/sysv/consts/__NR_getrtable.s +++ b/libc/sysv/consts/__NR_getrtable.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getrtable -1 -1 -1 0x0137 -1 +.syscon nr __NR_getrtable -1 -1 -1 0x0137 -1 -1 diff --git a/libc/sysv/consts/__NR_getrusage.s b/libc/sysv/consts/__NR_getrusage.s index 8e7213aec..d1666fb6c 100644 --- a/libc/sysv/consts/__NR_getrusage.s +++ b/libc/sysv/consts/__NR_getrusage.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getrusage 0x0062 0x2000075 0x0075 0x0013 -1 +.syscon nr __NR_getrusage 0x0062 0x2000075 0x0075 0x0013 0x1bd -1 diff --git a/libc/sysv/consts/__NR_getsgroups.s b/libc/sysv/consts/__NR_getsgroups.s index eb438e0bf..e361584b2 100644 --- a/libc/sysv/consts/__NR_getsgroups.s +++ b/libc/sysv/consts/__NR_getsgroups.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getsgroups -1 0x2000120 -1 -1 -1 +.syscon nr __NR_getsgroups -1 0x2000120 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getsid.s b/libc/sysv/consts/__NR_getsid.s index bc5147131..e7c3afb10 100644 --- a/libc/sysv/consts/__NR_getsid.s +++ b/libc/sysv/consts/__NR_getsid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getsid 0x007c 0x2000136 0x0136 0x00ff -1 +.syscon nr __NR_getsid 0x007c 0x2000136 0x0136 0x00ff 0x11e -1 diff --git a/libc/sysv/consts/__NR_getsockname.s b/libc/sysv/consts/__NR_getsockname.s index 0d8bf25b4..366af8bbf 100644 --- a/libc/sysv/consts/__NR_getsockname.s +++ b/libc/sysv/consts/__NR_getsockname.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getsockname 0x0033 0x2000020 0x0020 0x0020 -1 +.syscon nr __NR_getsockname 0x0033 0x2000020 0x0020 0x0020 0x020 -1 diff --git a/libc/sysv/consts/__NR_getsockopt.s b/libc/sysv/consts/__NR_getsockopt.s index b8a847119..2a15071d7 100644 --- a/libc/sysv/consts/__NR_getsockopt.s +++ b/libc/sysv/consts/__NR_getsockopt.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getsockopt 0x0037 0x2000076 0x0076 0x0076 -1 +.syscon nr __NR_getsockopt 0x0037 0x2000076 0x0076 0x0076 0x076 -1 diff --git a/libc/sysv/consts/__NR_getthrid.s b/libc/sysv/consts/__NR_getthrid.s index f7525b9ae..b296de814 100644 --- a/libc/sysv/consts/__NR_getthrid.s +++ b/libc/sysv/consts/__NR_getthrid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getthrid -1 -1 -1 0x012b -1 +.syscon nr __NR_getthrid -1 -1 -1 0x012b -1 -1 diff --git a/libc/sysv/consts/__NR_gettid.s b/libc/sysv/consts/__NR_gettid.s index efbf1f9c3..3593a24c3 100644 --- a/libc/sysv/consts/__NR_gettid.s +++ b/libc/sysv/consts/__NR_gettid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_gettid 0x00ba 0x200011e -1 -1 -1 +.syscon nr __NR_gettid 0x00ba 0x200011e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_gettimeofday.s b/libc/sysv/consts/__NR_gettimeofday.s index 8e377f6b3..eb3d14b87 100644 --- a/libc/sysv/consts/__NR_gettimeofday.s +++ b/libc/sysv/consts/__NR_gettimeofday.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_gettimeofday 0x0060 0x2000074 0x0074 0x0043 -1 +.syscon nr __NR_gettimeofday 0x0060 0x2000074 0x0074 0x0043 0x1a2 -1 diff --git a/libc/sysv/consts/__NR_getuid.s b/libc/sysv/consts/__NR_getuid.s index d430fb748..c86e12125 100644 --- a/libc/sysv/consts/__NR_getuid.s +++ b/libc/sysv/consts/__NR_getuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getuid 0x0066 0x2000018 0x0018 0x0018 -1 +.syscon nr __NR_getuid 0x0066 0x2000018 0x0018 0x0018 -1 -1 diff --git a/libc/sysv/consts/__NR_getwgroups.s b/libc/sysv/consts/__NR_getwgroups.s index 82b8fae8d..b000eaa67 100644 --- a/libc/sysv/consts/__NR_getwgroups.s +++ b/libc/sysv/consts/__NR_getwgroups.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getwgroups -1 0x2000122 -1 -1 -1 +.syscon nr __NR_getwgroups -1 0x2000122 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_getxattr.s b/libc/sysv/consts/__NR_getxattr.s index b9ae26720..d1a951b82 100644 --- a/libc/sysv/consts/__NR_getxattr.s +++ b/libc/sysv/consts/__NR_getxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_getxattr 0x00bf 0x20000ea -1 -1 -1 +.syscon nr __NR_getxattr 0x00bf 0x20000ea -1 -1 0x17a -1 diff --git a/libc/sysv/consts/__NR_grab_pgo_data.s b/libc/sysv/consts/__NR_grab_pgo_data.s index 5e3139743..09b3b9704 100644 --- a/libc/sysv/consts/__NR_grab_pgo_data.s +++ b/libc/sysv/consts/__NR_grab_pgo_data.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_grab_pgo_data -1 0x20001ed -1 -1 -1 +.syscon nr __NR_grab_pgo_data -1 0x20001ed -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_gssd_syscall.s b/libc/sysv/consts/__NR_gssd_syscall.s index a5474dfcd..63d4e08e7 100644 --- a/libc/sysv/consts/__NR_gssd_syscall.s +++ b/libc/sysv/consts/__NR_gssd_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_gssd_syscall -1 -1 0x01f9 -1 -1 +.syscon nr __NR_gssd_syscall -1 -1 0x01f9 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_guarded_close_np.s b/libc/sysv/consts/__NR_guarded_close_np.s index 598e8f119..607297615 100644 --- a/libc/sysv/consts/__NR_guarded_close_np.s +++ b/libc/sysv/consts/__NR_guarded_close_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_guarded_close_np -1 0x20001ba -1 -1 -1 +.syscon nr __NR_guarded_close_np -1 0x20001ba -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_guarded_kqueue_np.s b/libc/sysv/consts/__NR_guarded_kqueue_np.s index 1650d98b2..bbc3a8bcd 100644 --- a/libc/sysv/consts/__NR_guarded_kqueue_np.s +++ b/libc/sysv/consts/__NR_guarded_kqueue_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_guarded_kqueue_np -1 0x20001bb -1 -1 -1 +.syscon nr __NR_guarded_kqueue_np -1 0x20001bb -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_guarded_open_dprotected_np.s b/libc/sysv/consts/__NR_guarded_open_dprotected_np.s index 31726293d..1d919c95e 100644 --- a/libc/sysv/consts/__NR_guarded_open_dprotected_np.s +++ b/libc/sysv/consts/__NR_guarded_open_dprotected_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_guarded_open_dprotected_np -1 0x20001e4 -1 -1 -1 +.syscon nr __NR_guarded_open_dprotected_np -1 0x20001e4 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_guarded_open_np.s b/libc/sysv/consts/__NR_guarded_open_np.s index dfc622128..5c41d67ad 100644 --- a/libc/sysv/consts/__NR_guarded_open_np.s +++ b/libc/sysv/consts/__NR_guarded_open_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_guarded_open_np -1 0x20001b9 -1 -1 -1 +.syscon nr __NR_guarded_open_np -1 0x20001b9 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_guarded_pwrite_np.s b/libc/sysv/consts/__NR_guarded_pwrite_np.s index 1ed0c5f30..5cb9b7c81 100644 --- a/libc/sysv/consts/__NR_guarded_pwrite_np.s +++ b/libc/sysv/consts/__NR_guarded_pwrite_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_guarded_pwrite_np -1 0x20001e6 -1 -1 -1 +.syscon nr __NR_guarded_pwrite_np -1 0x20001e6 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_guarded_write_np.s b/libc/sysv/consts/__NR_guarded_write_np.s index 893647135..b6b61e409 100644 --- a/libc/sysv/consts/__NR_guarded_write_np.s +++ b/libc/sysv/consts/__NR_guarded_write_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_guarded_write_np -1 0x20001e5 -1 -1 -1 +.syscon nr __NR_guarded_write_np -1 0x20001e5 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_guarded_writev_np.s b/libc/sysv/consts/__NR_guarded_writev_np.s index 428dac084..937c1b495 100644 --- a/libc/sysv/consts/__NR_guarded_writev_np.s +++ b/libc/sysv/consts/__NR_guarded_writev_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_guarded_writev_np -1 0x20001e7 -1 -1 -1 +.syscon nr __NR_guarded_writev_np -1 0x20001e7 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_identitysvc.s b/libc/sysv/consts/__NR_identitysvc.s index 9e979b877..4f37dd1da 100644 --- a/libc/sysv/consts/__NR_identitysvc.s +++ b/libc/sysv/consts/__NR_identitysvc.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_identitysvc -1 0x2000125 -1 -1 -1 +.syscon nr __NR_identitysvc -1 0x2000125 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_init_module.s b/libc/sysv/consts/__NR_init_module.s index ced1090ee..ee8bc7828 100644 --- a/libc/sysv/consts/__NR_init_module.s +++ b/libc/sysv/consts/__NR_init_module.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_init_module 0x00af -1 -1 -1 -1 +.syscon nr __NR_init_module 0x00af -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_initgroups.s b/libc/sysv/consts/__NR_initgroups.s index b9f7b7560..9fd0a0efb 100644 --- a/libc/sysv/consts/__NR_initgroups.s +++ b/libc/sysv/consts/__NR_initgroups.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_initgroups -1 0x20000f3 -1 -1 -1 +.syscon nr __NR_initgroups -1 0x20000f3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_inotify_add_watch.s b/libc/sysv/consts/__NR_inotify_add_watch.s index 780e8397b..1d516a586 100644 --- a/libc/sysv/consts/__NR_inotify_add_watch.s +++ b/libc/sysv/consts/__NR_inotify_add_watch.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_inotify_add_watch 0x00fe -1 -1 -1 -1 +.syscon nr __NR_inotify_add_watch 0x00fe -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_inotify_init.s b/libc/sysv/consts/__NR_inotify_init.s index 88ef375b3..8470ee9a2 100644 --- a/libc/sysv/consts/__NR_inotify_init.s +++ b/libc/sysv/consts/__NR_inotify_init.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_inotify_init 0x00fd -1 -1 -1 -1 +.syscon nr __NR_inotify_init 0x00fd -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_inotify_init1.s b/libc/sysv/consts/__NR_inotify_init1.s index 3106d48e4..781e716e1 100644 --- a/libc/sysv/consts/__NR_inotify_init1.s +++ b/libc/sysv/consts/__NR_inotify_init1.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_inotify_init1 0x0126 -1 -1 -1 -1 +.syscon nr __NR_inotify_init1 0x0126 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_inotify_rm_watch.s b/libc/sysv/consts/__NR_inotify_rm_watch.s index cf136bc23..0d3bff1ff 100644 --- a/libc/sysv/consts/__NR_inotify_rm_watch.s +++ b/libc/sysv/consts/__NR_inotify_rm_watch.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_inotify_rm_watch 0x00ff -1 -1 -1 -1 +.syscon nr __NR_inotify_rm_watch 0x00ff -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_cancel.s b/libc/sysv/consts/__NR_io_cancel.s index fe01a17b4..c8d9c8f9e 100644 --- a/libc/sysv/consts/__NR_io_cancel.s +++ b/libc/sysv/consts/__NR_io_cancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_cancel 0x00d2 -1 -1 -1 -1 +.syscon nr __NR_io_cancel 0x00d2 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_destroy.s b/libc/sysv/consts/__NR_io_destroy.s index 69ba75dac..991a30167 100644 --- a/libc/sysv/consts/__NR_io_destroy.s +++ b/libc/sysv/consts/__NR_io_destroy.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_destroy 0x00cf -1 -1 -1 -1 +.syscon nr __NR_io_destroy 0x00cf -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_getevents.s b/libc/sysv/consts/__NR_io_getevents.s index 9aa453f79..de967dc93 100644 --- a/libc/sysv/consts/__NR_io_getevents.s +++ b/libc/sysv/consts/__NR_io_getevents.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_getevents 0x00d0 -1 -1 -1 -1 +.syscon nr __NR_io_getevents 0x00d0 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_pgetevents.s b/libc/sysv/consts/__NR_io_pgetevents.s index c05c0db5f..1873868f5 100644 --- a/libc/sysv/consts/__NR_io_pgetevents.s +++ b/libc/sysv/consts/__NR_io_pgetevents.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_pgetevents 0x014d -1 -1 -1 -1 +.syscon nr __NR_io_pgetevents 0x014d -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_setup.s b/libc/sysv/consts/__NR_io_setup.s index 445e98d17..90955de35 100644 --- a/libc/sysv/consts/__NR_io_setup.s +++ b/libc/sysv/consts/__NR_io_setup.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_setup 0x00ce -1 -1 -1 -1 +.syscon nr __NR_io_setup 0x00ce -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_submit.s b/libc/sysv/consts/__NR_io_submit.s index 95361e28c..570f02334 100644 --- a/libc/sysv/consts/__NR_io_submit.s +++ b/libc/sysv/consts/__NR_io_submit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_submit 0x00d1 -1 -1 -1 -1 +.syscon nr __NR_io_submit 0x00d1 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_uring_enter.s b/libc/sysv/consts/__NR_io_uring_enter.s index d3b28cab4..471aed91c 100644 --- a/libc/sysv/consts/__NR_io_uring_enter.s +++ b/libc/sysv/consts/__NR_io_uring_enter.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_uring_enter 0x01aa -1 -1 -1 -1 +.syscon nr __NR_io_uring_enter 0x01aa -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_uring_register.s b/libc/sysv/consts/__NR_io_uring_register.s index 4e01ddc80..a85d7fe8a 100644 --- a/libc/sysv/consts/__NR_io_uring_register.s +++ b/libc/sysv/consts/__NR_io_uring_register.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_uring_register 0x01ab -1 -1 -1 -1 +.syscon nr __NR_io_uring_register 0x01ab -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_io_uring_setup.s b/libc/sysv/consts/__NR_io_uring_setup.s index 4f18aba83..3bff8dfae 100644 --- a/libc/sysv/consts/__NR_io_uring_setup.s +++ b/libc/sysv/consts/__NR_io_uring_setup.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_io_uring_setup 0x01a9 -1 -1 -1 -1 +.syscon nr __NR_io_uring_setup 0x01a9 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ioctl.s b/libc/sysv/consts/__NR_ioctl.s index 541c576f8..7811623a2 100644 --- a/libc/sysv/consts/__NR_ioctl.s +++ b/libc/sysv/consts/__NR_ioctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ioctl 0x0010 0x2000036 0x0036 0x0036 -1 +.syscon nr __NR_ioctl 0x0010 0x2000036 0x0036 0x0036 0x036 -1 diff --git a/libc/sysv/consts/__NR_ioperm.s b/libc/sysv/consts/__NR_ioperm.s index 3435ae1d6..5b78e6eff 100644 --- a/libc/sysv/consts/__NR_ioperm.s +++ b/libc/sysv/consts/__NR_ioperm.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ioperm 0x00ad -1 -1 -1 -1 +.syscon nr __NR_ioperm 0x00ad -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_iopl.s b/libc/sysv/consts/__NR_iopl.s index e2b0da478..6d646af9d 100644 --- a/libc/sysv/consts/__NR_iopl.s +++ b/libc/sysv/consts/__NR_iopl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_iopl 0x00ac -1 -1 -1 -1 +.syscon nr __NR_iopl 0x00ac -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_iopolicysys.s b/libc/sysv/consts/__NR_iopolicysys.s index 6a5c47189..bcac52d9c 100644 --- a/libc/sysv/consts/__NR_iopolicysys.s +++ b/libc/sysv/consts/__NR_iopolicysys.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_iopolicysys -1 0x2000142 -1 -1 -1 +.syscon nr __NR_iopolicysys -1 0x2000142 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ioprio_get.s b/libc/sysv/consts/__NR_ioprio_get.s index 604c04b4c..38a5915da 100644 --- a/libc/sysv/consts/__NR_ioprio_get.s +++ b/libc/sysv/consts/__NR_ioprio_get.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ioprio_get 0x00fc -1 -1 -1 -1 +.syscon nr __NR_ioprio_get 0x00fc -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ioprio_set.s b/libc/sysv/consts/__NR_ioprio_set.s index 48ddfa194..f50424d32 100644 --- a/libc/sysv/consts/__NR_ioprio_set.s +++ b/libc/sysv/consts/__NR_ioprio_set.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ioprio_set 0x00fb -1 -1 -1 -1 +.syscon nr __NR_ioprio_set 0x00fb -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_issetugid.s b/libc/sysv/consts/__NR_issetugid.s index 28b466695..99cbbe2d7 100644 --- a/libc/sysv/consts/__NR_issetugid.s +++ b/libc/sysv/consts/__NR_issetugid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_issetugid -1 0x2000147 0x00fd 0x00fd -1 +.syscon nr __NR_issetugid -1 0x2000147 0x00fd 0x00fd -1 -1 diff --git a/libc/sysv/consts/__NR_jail.s b/libc/sysv/consts/__NR_jail.s index 770a0cc8c..6e2eb4dea 100644 --- a/libc/sysv/consts/__NR_jail.s +++ b/libc/sysv/consts/__NR_jail.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_jail -1 -1 0x0152 -1 -1 +.syscon nr __NR_jail -1 -1 0x0152 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_jail_attach.s b/libc/sysv/consts/__NR_jail_attach.s index 7f519bb74..dfb2475c3 100644 --- a/libc/sysv/consts/__NR_jail_attach.s +++ b/libc/sysv/consts/__NR_jail_attach.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_jail_attach -1 -1 0x01b4 -1 -1 +.syscon nr __NR_jail_attach -1 -1 0x01b4 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_jail_get.s b/libc/sysv/consts/__NR_jail_get.s index 50b721f26..90cd1675f 100644 --- a/libc/sysv/consts/__NR_jail_get.s +++ b/libc/sysv/consts/__NR_jail_get.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_jail_get -1 -1 0x01fa -1 -1 +.syscon nr __NR_jail_get -1 -1 0x01fa -1 -1 -1 diff --git a/libc/sysv/consts/__NR_jail_remove.s b/libc/sysv/consts/__NR_jail_remove.s index f25efa380..b17f17dd2 100644 --- a/libc/sysv/consts/__NR_jail_remove.s +++ b/libc/sysv/consts/__NR_jail_remove.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_jail_remove -1 -1 0x01fc -1 -1 +.syscon nr __NR_jail_remove -1 -1 0x01fc -1 -1 -1 diff --git a/libc/sysv/consts/__NR_jail_set.s b/libc/sysv/consts/__NR_jail_set.s index 0120c8ea7..f9f93254e 100644 --- a/libc/sysv/consts/__NR_jail_set.s +++ b/libc/sysv/consts/__NR_jail_set.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_jail_set -1 -1 0x01fb -1 -1 +.syscon nr __NR_jail_set -1 -1 0x01fb -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kas_info.s b/libc/sysv/consts/__NR_kas_info.s index c4c681a54..34b0d4b29 100644 --- a/libc/sysv/consts/__NR_kas_info.s +++ b/libc/sysv/consts/__NR_kas_info.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kas_info -1 0x20001b7 -1 -1 -1 +.syscon nr __NR_kas_info -1 0x20001b7 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kbind.s b/libc/sysv/consts/__NR_kbind.s index 20b109c7c..f8856d65f 100644 --- a/libc/sysv/consts/__NR_kbind.s +++ b/libc/sysv/consts/__NR_kbind.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kbind -1 -1 -1 0x0056 -1 +.syscon nr __NR_kbind -1 -1 -1 0x0056 -1 -1 diff --git a/libc/sysv/consts/__NR_kcmp.s b/libc/sysv/consts/__NR_kcmp.s index ee611ea49..27e9553e7 100644 --- a/libc/sysv/consts/__NR_kcmp.s +++ b/libc/sysv/consts/__NR_kcmp.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kcmp 0x0138 -1 -1 -1 -1 +.syscon nr __NR_kcmp 0x0138 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kdebug_trace.s b/libc/sysv/consts/__NR_kdebug_trace.s index 7e57e9d99..1210c6dc9 100644 --- a/libc/sysv/consts/__NR_kdebug_trace.s +++ b/libc/sysv/consts/__NR_kdebug_trace.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kdebug_trace -1 0x20000b3 -1 -1 -1 +.syscon nr __NR_kdebug_trace -1 0x20000b3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kdebug_trace_string.s b/libc/sysv/consts/__NR_kdebug_trace_string.s index c1d5cd242..81fac33c2 100644 --- a/libc/sysv/consts/__NR_kdebug_trace_string.s +++ b/libc/sysv/consts/__NR_kdebug_trace_string.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kdebug_trace_string -1 0x20000b2 -1 -1 -1 +.syscon nr __NR_kdebug_trace_string -1 0x20000b2 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kdebug_typefilter.s b/libc/sysv/consts/__NR_kdebug_typefilter.s index dcd2b622e..bf9a9b056 100644 --- a/libc/sysv/consts/__NR_kdebug_typefilter.s +++ b/libc/sysv/consts/__NR_kdebug_typefilter.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kdebug_typefilter -1 0x20000b1 -1 -1 -1 +.syscon nr __NR_kdebug_typefilter -1 0x20000b1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kenv.s b/libc/sysv/consts/__NR_kenv.s index 7b243c98c..d5bea2237 100644 --- a/libc/sysv/consts/__NR_kenv.s +++ b/libc/sysv/consts/__NR_kenv.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kenv -1 -1 0x0186 -1 -1 +.syscon nr __NR_kenv -1 -1 0x0186 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kevent.s b/libc/sysv/consts/__NR_kevent.s index 5552814ab..24195a95a 100644 --- a/libc/sysv/consts/__NR_kevent.s +++ b/libc/sysv/consts/__NR_kevent.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kevent -1 0x2000171 0x0230 0x0048 -1 +.syscon nr __NR_kevent -1 0x2000171 0x0230 0x0048 0x1b3 -1 diff --git a/libc/sysv/consts/__NR_kevent_id.s b/libc/sysv/consts/__NR_kevent_id.s index ae99d94f1..215bb7fa4 100644 --- a/libc/sysv/consts/__NR_kevent_id.s +++ b/libc/sysv/consts/__NR_kevent_id.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kevent_id -1 0x2000177 -1 -1 -1 +.syscon nr __NR_kevent_id -1 0x2000177 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kevent_qos.s b/libc/sysv/consts/__NR_kevent_qos.s index 59d9a7ce6..b7c6a8dbb 100644 --- a/libc/sysv/consts/__NR_kevent_qos.s +++ b/libc/sysv/consts/__NR_kevent_qos.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kevent_qos -1 0x2000176 -1 -1 -1 +.syscon nr __NR_kevent_qos -1 0x2000176 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kexec_file_load.s b/libc/sysv/consts/__NR_kexec_file_load.s index b651f70f2..ae061a583 100644 --- a/libc/sysv/consts/__NR_kexec_file_load.s +++ b/libc/sysv/consts/__NR_kexec_file_load.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kexec_file_load 0x0140 -1 -1 -1 -1 +.syscon nr __NR_kexec_file_load 0x0140 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kexec_load.s b/libc/sysv/consts/__NR_kexec_load.s index 481ea6afc..41ee55dd5 100644 --- a/libc/sysv/consts/__NR_kexec_load.s +++ b/libc/sysv/consts/__NR_kexec_load.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kexec_load 0x00f6 -1 -1 -1 -1 +.syscon nr __NR_kexec_load 0x00f6 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_keyctl.s b/libc/sysv/consts/__NR_keyctl.s index 8123272eb..35856aed7 100644 --- a/libc/sysv/consts/__NR_keyctl.s +++ b/libc/sysv/consts/__NR_keyctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_keyctl 0x00fa -1 -1 -1 -1 +.syscon nr __NR_keyctl 0x00fa -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kill.s b/libc/sysv/consts/__NR_kill.s index 91fd86b2f..2da37b6b1 100644 --- a/libc/sysv/consts/__NR_kill.s +++ b/libc/sysv/consts/__NR_kill.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kill 0x003e 0x2000025 0x0025 0x007a -1 +.syscon nr __NR_kill 0x003e 0x2000025 0x0025 0x007a 0x025 -1 diff --git a/libc/sysv/consts/__NR_killpg.s b/libc/sysv/consts/__NR_killpg.s index 05cd26467..13db3d541 100644 --- a/libc/sysv/consts/__NR_killpg.s +++ b/libc/sysv/consts/__NR_killpg.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_killpg -1 -1 0x0092 -1 -1 +.syscon nr __NR_killpg -1 -1 0x0092 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldfind.s b/libc/sysv/consts/__NR_kldfind.s index 67c5aec02..9eb853c8d 100644 --- a/libc/sysv/consts/__NR_kldfind.s +++ b/libc/sysv/consts/__NR_kldfind.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldfind -1 -1 0x0132 -1 -1 +.syscon nr __NR_kldfind -1 -1 0x0132 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldfirstmod.s b/libc/sysv/consts/__NR_kldfirstmod.s index 9f1dddc66..bf0cfb9ef 100644 --- a/libc/sysv/consts/__NR_kldfirstmod.s +++ b/libc/sysv/consts/__NR_kldfirstmod.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldfirstmod -1 -1 0x0135 -1 -1 +.syscon nr __NR_kldfirstmod -1 -1 0x0135 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldload.s b/libc/sysv/consts/__NR_kldload.s index 904c3c76b..4833d0bd7 100644 --- a/libc/sysv/consts/__NR_kldload.s +++ b/libc/sysv/consts/__NR_kldload.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldload -1 -1 0x0130 -1 -1 +.syscon nr __NR_kldload -1 -1 0x0130 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldnext.s b/libc/sysv/consts/__NR_kldnext.s index 3e802ed02..3bbe4b944 100644 --- a/libc/sysv/consts/__NR_kldnext.s +++ b/libc/sysv/consts/__NR_kldnext.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldnext -1 -1 0x0133 -1 -1 +.syscon nr __NR_kldnext -1 -1 0x0133 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldstat.s b/libc/sysv/consts/__NR_kldstat.s index 6cb012d78..9cd8a1362 100644 --- a/libc/sysv/consts/__NR_kldstat.s +++ b/libc/sysv/consts/__NR_kldstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldstat -1 -1 0x0134 -1 -1 +.syscon nr __NR_kldstat -1 -1 0x0134 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldsym.s b/libc/sysv/consts/__NR_kldsym.s index 1cea909db..a58763458 100644 --- a/libc/sysv/consts/__NR_kldsym.s +++ b/libc/sysv/consts/__NR_kldsym.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldsym -1 -1 0x0151 -1 -1 +.syscon nr __NR_kldsym -1 -1 0x0151 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldunload.s b/libc/sysv/consts/__NR_kldunload.s index 46b8f7502..97d95cf7e 100644 --- a/libc/sysv/consts/__NR_kldunload.s +++ b/libc/sysv/consts/__NR_kldunload.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldunload -1 -1 0x0131 -1 -1 +.syscon nr __NR_kldunload -1 -1 0x0131 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kldunloadf.s b/libc/sysv/consts/__NR_kldunloadf.s index 9c5fc4615..dbde62f41 100644 --- a/libc/sysv/consts/__NR_kldunloadf.s +++ b/libc/sysv/consts/__NR_kldunloadf.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kldunloadf -1 -1 0x01bc -1 -1 +.syscon nr __NR_kldunloadf -1 -1 0x01bc -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kmq_notify.s b/libc/sysv/consts/__NR_kmq_notify.s index fadb415f0..12b625c94 100644 --- a/libc/sysv/consts/__NR_kmq_notify.s +++ b/libc/sysv/consts/__NR_kmq_notify.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kmq_notify -1 -1 0x01cd -1 -1 +.syscon nr __NR_kmq_notify -1 -1 0x01cd -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kmq_setattr.s b/libc/sysv/consts/__NR_kmq_setattr.s index 431bd7e1a..b55cf251a 100644 --- a/libc/sysv/consts/__NR_kmq_setattr.s +++ b/libc/sysv/consts/__NR_kmq_setattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kmq_setattr -1 -1 0x01ca -1 -1 +.syscon nr __NR_kmq_setattr -1 -1 0x01ca -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kmq_timedreceive.s b/libc/sysv/consts/__NR_kmq_timedreceive.s index e83bec977..034ac7b1c 100644 --- a/libc/sysv/consts/__NR_kmq_timedreceive.s +++ b/libc/sysv/consts/__NR_kmq_timedreceive.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kmq_timedreceive -1 -1 0x01cb -1 -1 +.syscon nr __NR_kmq_timedreceive -1 -1 0x01cb -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kmq_timedsend.s b/libc/sysv/consts/__NR_kmq_timedsend.s index 5c4eee1f2..485f0569f 100644 --- a/libc/sysv/consts/__NR_kmq_timedsend.s +++ b/libc/sysv/consts/__NR_kmq_timedsend.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kmq_timedsend -1 -1 0x01cc -1 -1 +.syscon nr __NR_kmq_timedsend -1 -1 0x01cc -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kmq_unlink.s b/libc/sysv/consts/__NR_kmq_unlink.s index 6b64843b9..4adce1cc0 100644 --- a/libc/sysv/consts/__NR_kmq_unlink.s +++ b/libc/sysv/consts/__NR_kmq_unlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kmq_unlink -1 -1 0x01ce -1 -1 +.syscon nr __NR_kmq_unlink -1 -1 0x01ce -1 -1 -1 diff --git a/libc/sysv/consts/__NR_kqueue.s b/libc/sysv/consts/__NR_kqueue.s index 4c89efde8..83d1e8ec1 100644 --- a/libc/sysv/consts/__NR_kqueue.s +++ b/libc/sysv/consts/__NR_kqueue.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_kqueue -1 0x200016a 0x016a 0x010d -1 +.syscon nr __NR_kqueue -1 0x200016a 0x016a 0x010d 0x158 -1 diff --git a/libc/sysv/consts/__NR_ksem_close.s b/libc/sysv/consts/__NR_ksem_close.s index dfd29aa3c..2c7034050 100644 --- a/libc/sysv/consts/__NR_ksem_close.s +++ b/libc/sysv/consts/__NR_ksem_close.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_close -1 -1 0x0190 -1 -1 +.syscon nr __NR_ksem_close -1 -1 0x0190 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_destroy.s b/libc/sysv/consts/__NR_ksem_destroy.s index 12bbdc2ce..476ae358f 100644 --- a/libc/sysv/consts/__NR_ksem_destroy.s +++ b/libc/sysv/consts/__NR_ksem_destroy.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_destroy -1 -1 0x0198 -1 -1 +.syscon nr __NR_ksem_destroy -1 -1 0x0198 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_getvalue.s b/libc/sysv/consts/__NR_ksem_getvalue.s index 4019db670..19bb2ef5a 100644 --- a/libc/sysv/consts/__NR_ksem_getvalue.s +++ b/libc/sysv/consts/__NR_ksem_getvalue.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_getvalue -1 -1 0x0197 -1 -1 +.syscon nr __NR_ksem_getvalue -1 -1 0x0197 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_init.s b/libc/sysv/consts/__NR_ksem_init.s index ededc99bf..a13ea70eb 100644 --- a/libc/sysv/consts/__NR_ksem_init.s +++ b/libc/sysv/consts/__NR_ksem_init.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_init -1 -1 0x0194 -1 -1 +.syscon nr __NR_ksem_init -1 -1 0x0194 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_open.s b/libc/sysv/consts/__NR_ksem_open.s index 59a9d14f0..b2a22601f 100644 --- a/libc/sysv/consts/__NR_ksem_open.s +++ b/libc/sysv/consts/__NR_ksem_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_open -1 -1 0x0195 -1 -1 +.syscon nr __NR_ksem_open -1 -1 0x0195 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_post.s b/libc/sysv/consts/__NR_ksem_post.s index c22ae3ea2..107cb4a59 100644 --- a/libc/sysv/consts/__NR_ksem_post.s +++ b/libc/sysv/consts/__NR_ksem_post.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_post -1 -1 0x0191 -1 -1 +.syscon nr __NR_ksem_post -1 -1 0x0191 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_timedwait.s b/libc/sysv/consts/__NR_ksem_timedwait.s index 699953204..02525404d 100644 --- a/libc/sysv/consts/__NR_ksem_timedwait.s +++ b/libc/sysv/consts/__NR_ksem_timedwait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_timedwait -1 -1 0x01b9 -1 -1 +.syscon nr __NR_ksem_timedwait -1 -1 0x01b9 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_trywait.s b/libc/sysv/consts/__NR_ksem_trywait.s index 9f79daa90..89aecbb4a 100644 --- a/libc/sysv/consts/__NR_ksem_trywait.s +++ b/libc/sysv/consts/__NR_ksem_trywait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_trywait -1 -1 0x0193 -1 -1 +.syscon nr __NR_ksem_trywait -1 -1 0x0193 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_unlink.s b/libc/sysv/consts/__NR_ksem_unlink.s index cd51d8aeb..fd5656953 100644 --- a/libc/sysv/consts/__NR_ksem_unlink.s +++ b/libc/sysv/consts/__NR_ksem_unlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_unlink -1 -1 0x0196 -1 -1 +.syscon nr __NR_ksem_unlink -1 -1 0x0196 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ksem_wait.s b/libc/sysv/consts/__NR_ksem_wait.s index 1a4e1f303..72bea7c0b 100644 --- a/libc/sysv/consts/__NR_ksem_wait.s +++ b/libc/sysv/consts/__NR_ksem_wait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ksem_wait -1 -1 0x0192 -1 -1 +.syscon nr __NR_ksem_wait -1 -1 0x0192 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ktimer_create.s b/libc/sysv/consts/__NR_ktimer_create.s index 691014487..bf640ede1 100644 --- a/libc/sysv/consts/__NR_ktimer_create.s +++ b/libc/sysv/consts/__NR_ktimer_create.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ktimer_create -1 -1 0x00eb -1 -1 +.syscon nr __NR_ktimer_create -1 -1 0x00eb -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ktimer_delete.s b/libc/sysv/consts/__NR_ktimer_delete.s index 197acb552..d832fa3ec 100644 --- a/libc/sysv/consts/__NR_ktimer_delete.s +++ b/libc/sysv/consts/__NR_ktimer_delete.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ktimer_delete -1 -1 0x00ec -1 -1 +.syscon nr __NR_ktimer_delete -1 -1 0x00ec -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ktimer_getoverrun.s b/libc/sysv/consts/__NR_ktimer_getoverrun.s index abd29fccb..3f8430753 100644 --- a/libc/sysv/consts/__NR_ktimer_getoverrun.s +++ b/libc/sysv/consts/__NR_ktimer_getoverrun.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ktimer_getoverrun -1 -1 0x00ef -1 -1 +.syscon nr __NR_ktimer_getoverrun -1 -1 0x00ef -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ktimer_gettime.s b/libc/sysv/consts/__NR_ktimer_gettime.s index 0fb3ca0e5..851d26ec7 100644 --- a/libc/sysv/consts/__NR_ktimer_gettime.s +++ b/libc/sysv/consts/__NR_ktimer_gettime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ktimer_gettime -1 -1 0x00ee -1 -1 +.syscon nr __NR_ktimer_gettime -1 -1 0x00ee -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ktimer_settime.s b/libc/sysv/consts/__NR_ktimer_settime.s index 4c44a8c42..2a24fa338 100644 --- a/libc/sysv/consts/__NR_ktimer_settime.s +++ b/libc/sysv/consts/__NR_ktimer_settime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ktimer_settime -1 -1 0x00ed -1 -1 +.syscon nr __NR_ktimer_settime -1 -1 0x00ed -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ktrace.s b/libc/sysv/consts/__NR_ktrace.s index a8297eb2b..6d43750f4 100644 --- a/libc/sysv/consts/__NR_ktrace.s +++ b/libc/sysv/consts/__NR_ktrace.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ktrace -1 -1 0x002d 0x002d -1 +.syscon nr __NR_ktrace -1 -1 0x002d 0x002d 0x02d -1 diff --git a/libc/sysv/consts/__NR_lchflags.s b/libc/sysv/consts/__NR_lchflags.s index db828b7de..62418c1c3 100644 --- a/libc/sysv/consts/__NR_lchflags.s +++ b/libc/sysv/consts/__NR_lchflags.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lchflags -1 -1 0x0187 -1 -1 +.syscon nr __NR_lchflags -1 -1 0x0187 -1 0x130 -1 diff --git a/libc/sysv/consts/__NR_lchmod.s b/libc/sysv/consts/__NR_lchmod.s index 782d6a83b..cf0e525db 100644 --- a/libc/sysv/consts/__NR_lchmod.s +++ b/libc/sysv/consts/__NR_lchmod.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lchmod -1 -1 0x0112 -1 -1 +.syscon nr __NR_lchmod -1 -1 0x0112 -1 0x112 -1 diff --git a/libc/sysv/consts/__NR_lchown.s b/libc/sysv/consts/__NR_lchown.s index c0137a38a..73b32fc4f 100644 --- a/libc/sysv/consts/__NR_lchown.s +++ b/libc/sysv/consts/__NR_lchown.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lchown 0x005e 0x200016c 0x00fe 0x00fe -1 +.syscon nr __NR_lchown 0x005e 0x200016c 0x00fe 0x00fe 0x113 -1 diff --git a/libc/sysv/consts/__NR_ledger.s b/libc/sysv/consts/__NR_ledger.s index 46e7d77ab..d01fc0c82 100644 --- a/libc/sysv/consts/__NR_ledger.s +++ b/libc/sysv/consts/__NR_ledger.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ledger -1 0x2000175 -1 -1 -1 +.syscon nr __NR_ledger -1 0x2000175 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_lgetfh.s b/libc/sysv/consts/__NR_lgetfh.s index 75600b8c1..edd51fb8d 100644 --- a/libc/sysv/consts/__NR_lgetfh.s +++ b/libc/sysv/consts/__NR_lgetfh.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lgetfh -1 -1 0x00a0 -1 -1 +.syscon nr __NR_lgetfh -1 -1 0x00a0 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_lgetxattr.s b/libc/sysv/consts/__NR_lgetxattr.s index 03fee42b3..c61a113c7 100644 --- a/libc/sysv/consts/__NR_lgetxattr.s +++ b/libc/sysv/consts/__NR_lgetxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lgetxattr 0x00c0 -1 -1 -1 -1 +.syscon nr __NR_lgetxattr 0x00c0 -1 -1 -1 0x17b -1 diff --git a/libc/sysv/consts/__NR_link.s b/libc/sysv/consts/__NR_link.s index c35751fbe..cbc9c7fbe 100644 --- a/libc/sysv/consts/__NR_link.s +++ b/libc/sysv/consts/__NR_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_link 0x0056 0x2000009 0x0009 0x0009 -1 +.syscon nr __NR_link 0x0056 0x2000009 0x0009 0x0009 0x009 -1 diff --git a/libc/sysv/consts/__NR_linkat.s b/libc/sysv/consts/__NR_linkat.s index fba9610b4..b4d565ca5 100644 --- a/libc/sysv/consts/__NR_linkat.s +++ b/libc/sysv/consts/__NR_linkat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_linkat 0x0109 0x20001d7 0x01ef 0x013d -1 +.syscon nr __NR_linkat 0x0109 0x20001d7 0x01ef 0x013d 0x1c9 -1 diff --git a/libc/sysv/consts/__NR_lio_listio.s b/libc/sysv/consts/__NR_lio_listio.s index dc0a0e60b..e73e48cc1 100644 --- a/libc/sysv/consts/__NR_lio_listio.s +++ b/libc/sysv/consts/__NR_lio_listio.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lio_listio -1 0x2000140 0x0140 -1 -1 +.syscon nr __NR_lio_listio -1 0x2000140 0x0140 -1 0x196 -1 diff --git a/libc/sysv/consts/__NR_listen.s b/libc/sysv/consts/__NR_listen.s index a31604a77..a4eb28a95 100644 --- a/libc/sysv/consts/__NR_listen.s +++ b/libc/sysv/consts/__NR_listen.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_listen 0x0032 0x200006a 0x006a 0x006a -1 +.syscon nr __NR_listen 0x0032 0x200006a 0x006a 0x006a 0x06a -1 diff --git a/libc/sysv/consts/__NR_listxattr.s b/libc/sysv/consts/__NR_listxattr.s index d4e9aaede..9fb04f7b1 100644 --- a/libc/sysv/consts/__NR_listxattr.s +++ b/libc/sysv/consts/__NR_listxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_listxattr 0x00c2 0x20000f0 -1 -1 -1 +.syscon nr __NR_listxattr 0x00c2 0x20000f0 -1 -1 0x17d -1 diff --git a/libc/sysv/consts/__NR_llistxattr.s b/libc/sysv/consts/__NR_llistxattr.s index 370913f63..aa271f32d 100644 --- a/libc/sysv/consts/__NR_llistxattr.s +++ b/libc/sysv/consts/__NR_llistxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_llistxattr 0x00c3 -1 -1 -1 -1 +.syscon nr __NR_llistxattr 0x00c3 -1 -1 -1 0x17e -1 diff --git a/libc/sysv/consts/__NR_lookup_dcookie.s b/libc/sysv/consts/__NR_lookup_dcookie.s index c8be32e26..e1e96a3fa 100644 --- a/libc/sysv/consts/__NR_lookup_dcookie.s +++ b/libc/sysv/consts/__NR_lookup_dcookie.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lookup_dcookie 0x00d4 -1 -1 -1 -1 +.syscon nr __NR_lookup_dcookie 0x00d4 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_lpathconf.s b/libc/sysv/consts/__NR_lpathconf.s index feefd8888..d94b859f8 100644 --- a/libc/sysv/consts/__NR_lpathconf.s +++ b/libc/sysv/consts/__NR_lpathconf.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lpathconf -1 -1 0x0201 -1 -1 +.syscon nr __NR_lpathconf -1 -1 0x0201 -1 0x1f3 -1 diff --git a/libc/sysv/consts/__NR_lremovexattr.s b/libc/sysv/consts/__NR_lremovexattr.s index a04f1f832..a97959f8b 100644 --- a/libc/sysv/consts/__NR_lremovexattr.s +++ b/libc/sysv/consts/__NR_lremovexattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lremovexattr 0x00c6 -1 -1 -1 -1 +.syscon nr __NR_lremovexattr 0x00c6 -1 -1 -1 0x181 -1 diff --git a/libc/sysv/consts/__NR_lseek.s b/libc/sysv/consts/__NR_lseek.s index ddb9f987f..5c2081602 100644 --- a/libc/sysv/consts/__NR_lseek.s +++ b/libc/sysv/consts/__NR_lseek.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lseek 0x0008 0x20000c7 0x01de 0x00c7 -1 +.syscon nr __NR_lseek 0x0008 0x20000c7 0x01de 0x00c7 0x0c7 -1 diff --git a/libc/sysv/consts/__NR_lsetxattr.s b/libc/sysv/consts/__NR_lsetxattr.s index b55dbf111..f748aaa5a 100644 --- a/libc/sysv/consts/__NR_lsetxattr.s +++ b/libc/sysv/consts/__NR_lsetxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lsetxattr 0x00bd -1 -1 -1 -1 +.syscon nr __NR_lsetxattr 0x00bd -1 -1 -1 0x178 -1 diff --git a/libc/sysv/consts/__NR_lstat.s b/libc/sysv/consts/__NR_lstat.s index 7241038df..f4100c45e 100644 --- a/libc/sysv/consts/__NR_lstat.s +++ b/libc/sysv/consts/__NR_lstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lstat 0x0006 0x2000154 0x0028 0x0028 -1 +.syscon nr __NR_lstat 0x0006 0x2000154 0x0028 0x0028 0x1b9 -1 diff --git a/libc/sysv/consts/__NR_lstat_extended.s b/libc/sysv/consts/__NR_lstat_extended.s index bfbafd269..643db3517 100644 --- a/libc/sysv/consts/__NR_lstat_extended.s +++ b/libc/sysv/consts/__NR_lstat_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lstat_extended -1 0x2000156 -1 -1 -1 +.syscon nr __NR_lstat_extended -1 0x2000156 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_lutimes.s b/libc/sysv/consts/__NR_lutimes.s index a840528a2..f90432334 100644 --- a/libc/sysv/consts/__NR_lutimes.s +++ b/libc/sysv/consts/__NR_lutimes.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_lutimes -1 -1 0x0114 -1 -1 +.syscon nr __NR_lutimes -1 -1 0x0114 -1 0x1a8 -1 diff --git a/libc/sysv/consts/__NR_mac_execve.s b/libc/sysv/consts/__NR_mac_execve.s index 669001348..5c83593e1 100644 --- a/libc/sysv/consts/__NR_mac_execve.s +++ b/libc/sysv/consts/__NR_mac_execve.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_execve -1 0x200017c 0x019f -1 -1 +.syscon nr __NR_mac_execve -1 0x200017c 0x019f -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_get_fd.s b/libc/sysv/consts/__NR_mac_get_fd.s index ada5f03ab..428ff3e79 100644 --- a/libc/sysv/consts/__NR_mac_get_fd.s +++ b/libc/sysv/consts/__NR_mac_get_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_get_fd -1 0x2000184 0x0182 -1 -1 +.syscon nr __NR_mac_get_fd -1 0x2000184 0x0182 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_get_file.s b/libc/sysv/consts/__NR_mac_get_file.s index b67e1dae9..9b618655f 100644 --- a/libc/sysv/consts/__NR_mac_get_file.s +++ b/libc/sysv/consts/__NR_mac_get_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_get_file -1 0x200017e 0x0183 -1 -1 +.syscon nr __NR_mac_get_file -1 0x200017e 0x0183 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_get_link.s b/libc/sysv/consts/__NR_mac_get_link.s index 7a8cf4909..cecb80151 100644 --- a/libc/sysv/consts/__NR_mac_get_link.s +++ b/libc/sysv/consts/__NR_mac_get_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_get_link -1 0x2000180 0x019a -1 -1 +.syscon nr __NR_mac_get_link -1 0x2000180 0x019a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_get_mount.s b/libc/sysv/consts/__NR_mac_get_mount.s index 6ce3a14d7..b9bbdd5bb 100644 --- a/libc/sysv/consts/__NR_mac_get_mount.s +++ b/libc/sysv/consts/__NR_mac_get_mount.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_get_mount -1 0x20001a9 -1 -1 -1 +.syscon nr __NR_mac_get_mount -1 0x20001a9 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_get_pid.s b/libc/sysv/consts/__NR_mac_get_pid.s index c1185b62b..d21f9b040 100644 --- a/libc/sysv/consts/__NR_mac_get_pid.s +++ b/libc/sysv/consts/__NR_mac_get_pid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_get_pid -1 0x2000186 0x0199 -1 -1 +.syscon nr __NR_mac_get_pid -1 0x2000186 0x0199 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_get_proc.s b/libc/sysv/consts/__NR_mac_get_proc.s index 03af869ea..7875125de 100644 --- a/libc/sysv/consts/__NR_mac_get_proc.s +++ b/libc/sysv/consts/__NR_mac_get_proc.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_get_proc -1 0x2000182 0x0180 -1 -1 +.syscon nr __NR_mac_get_proc -1 0x2000182 0x0180 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_getfsstat.s b/libc/sysv/consts/__NR_mac_getfsstat.s index 93338bd7d..dc9596474 100644 --- a/libc/sysv/consts/__NR_mac_getfsstat.s +++ b/libc/sysv/consts/__NR_mac_getfsstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_getfsstat -1 0x20001aa -1 -1 -1 +.syscon nr __NR_mac_getfsstat -1 0x20001aa -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_mount.s b/libc/sysv/consts/__NR_mac_mount.s index c9c5850cc..7cffd846e 100644 --- a/libc/sysv/consts/__NR_mac_mount.s +++ b/libc/sysv/consts/__NR_mac_mount.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_mount -1 0x20001a8 -1 -1 -1 +.syscon nr __NR_mac_mount -1 0x20001a8 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_set_fd.s b/libc/sysv/consts/__NR_mac_set_fd.s index 90463ada5..dba76ec18 100644 --- a/libc/sysv/consts/__NR_mac_set_fd.s +++ b/libc/sysv/consts/__NR_mac_set_fd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_set_fd -1 0x2000185 0x0184 -1 -1 +.syscon nr __NR_mac_set_fd -1 0x2000185 0x0184 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_set_file.s b/libc/sysv/consts/__NR_mac_set_file.s index 2ba8d75a9..22aba8ca0 100644 --- a/libc/sysv/consts/__NR_mac_set_file.s +++ b/libc/sysv/consts/__NR_mac_set_file.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_set_file -1 0x200017f 0x0185 -1 -1 +.syscon nr __NR_mac_set_file -1 0x200017f 0x0185 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_set_link.s b/libc/sysv/consts/__NR_mac_set_link.s index e41ac1eee..fede931c3 100644 --- a/libc/sysv/consts/__NR_mac_set_link.s +++ b/libc/sysv/consts/__NR_mac_set_link.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_set_link -1 0x2000181 0x019b -1 -1 +.syscon nr __NR_mac_set_link -1 0x2000181 0x019b -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_set_proc.s b/libc/sysv/consts/__NR_mac_set_proc.s index 6852f05e4..2a3fae3c7 100644 --- a/libc/sysv/consts/__NR_mac_set_proc.s +++ b/libc/sysv/consts/__NR_mac_set_proc.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_set_proc -1 0x2000183 0x0181 -1 -1 +.syscon nr __NR_mac_set_proc -1 0x2000183 0x0181 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mac_syscall.s b/libc/sysv/consts/__NR_mac_syscall.s index cae819884..338f10843 100644 --- a/libc/sysv/consts/__NR_mac_syscall.s +++ b/libc/sysv/consts/__NR_mac_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mac_syscall -1 -1 0x018a -1 -1 +.syscon nr __NR_mac_syscall -1 -1 0x018a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_madvise.s b/libc/sysv/consts/__NR_madvise.s index 6d3c88c90..9298f0454 100644 --- a/libc/sysv/consts/__NR_madvise.s +++ b/libc/sysv/consts/__NR_madvise.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_madvise 0x001c 0x200004b 0x004b 0x004b -1 +.syscon nr __NR_madvise 0x001c 0x200004b 0x004b 0x004b 0x04b -1 diff --git a/libc/sysv/consts/__NR_mbind.s b/libc/sysv/consts/__NR_mbind.s index aab7b6357..4434d0ae0 100644 --- a/libc/sysv/consts/__NR_mbind.s +++ b/libc/sysv/consts/__NR_mbind.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mbind 0x00ed -1 -1 -1 -1 +.syscon nr __NR_mbind 0x00ed -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_membarrier.s b/libc/sysv/consts/__NR_membarrier.s index f00cba053..77b35e95e 100644 --- a/libc/sysv/consts/__NR_membarrier.s +++ b/libc/sysv/consts/__NR_membarrier.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_membarrier 0x0144 -1 -1 -1 -1 +.syscon nr __NR_membarrier 0x0144 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_memfd_create.s b/libc/sysv/consts/__NR_memfd_create.s index 40db47a55..77f0401e3 100644 --- a/libc/sysv/consts/__NR_memfd_create.s +++ b/libc/sysv/consts/__NR_memfd_create.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_memfd_create 0x013f -1 -1 -1 -1 +.syscon nr __NR_memfd_create 0x013f -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_memorystatus_control.s b/libc/sysv/consts/__NR_memorystatus_control.s index d56644c79..40d3e32bc 100644 --- a/libc/sysv/consts/__NR_memorystatus_control.s +++ b/libc/sysv/consts/__NR_memorystatus_control.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_memorystatus_control -1 0x20001b8 -1 -1 -1 +.syscon nr __NR_memorystatus_control -1 0x20001b8 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_memorystatus_get_level.s b/libc/sysv/consts/__NR_memorystatus_get_level.s index df56fa265..fefe01b36 100644 --- a/libc/sysv/consts/__NR_memorystatus_get_level.s +++ b/libc/sysv/consts/__NR_memorystatus_get_level.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_memorystatus_get_level -1 0x20001c5 -1 -1 -1 +.syscon nr __NR_memorystatus_get_level -1 0x20001c5 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_microstackshot.s b/libc/sysv/consts/__NR_microstackshot.s index cab3ba813..27f4794d1 100644 --- a/libc/sysv/consts/__NR_microstackshot.s +++ b/libc/sysv/consts/__NR_microstackshot.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_microstackshot -1 0x20001ec -1 -1 -1 +.syscon nr __NR_microstackshot -1 0x20001ec -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_migrate_pages.s b/libc/sysv/consts/__NR_migrate_pages.s index 6e16839f1..1042b9c94 100644 --- a/libc/sysv/consts/__NR_migrate_pages.s +++ b/libc/sysv/consts/__NR_migrate_pages.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_migrate_pages 0x0100 -1 -1 -1 -1 +.syscon nr __NR_migrate_pages 0x0100 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mincore.s b/libc/sysv/consts/__NR_mincore.s index 3fb6c1db4..e7f87571e 100644 --- a/libc/sysv/consts/__NR_mincore.s +++ b/libc/sysv/consts/__NR_mincore.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mincore 0x001b 0x200004e 0x004e 0x004e -1 +.syscon nr __NR_mincore 0x001b 0x200004e 0x004e 0x004e 0x04e -1 diff --git a/libc/sysv/consts/__NR_minherit.s b/libc/sysv/consts/__NR_minherit.s index 28f085386..1400d8179 100644 --- a/libc/sysv/consts/__NR_minherit.s +++ b/libc/sysv/consts/__NR_minherit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_minherit -1 0x20000fa 0x00fa 0x00fa -1 +.syscon nr __NR_minherit -1 0x20000fa 0x00fa 0x00fa 0x111 -1 diff --git a/libc/sysv/consts/__NR_mkdir.s b/libc/sysv/consts/__NR_mkdir.s index dde8ede6a..92f551df4 100644 --- a/libc/sysv/consts/__NR_mkdir.s +++ b/libc/sysv/consts/__NR_mkdir.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mkdir 0x0053 0x2000088 0x0088 0x0088 -1 +.syscon nr __NR_mkdir 0x0053 0x2000088 0x0088 0x0088 0x088 -1 diff --git a/libc/sysv/consts/__NR_mkdir_extended.s b/libc/sysv/consts/__NR_mkdir_extended.s index 3e8bb6191..cd512d355 100644 --- a/libc/sysv/consts/__NR_mkdir_extended.s +++ b/libc/sysv/consts/__NR_mkdir_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mkdir_extended -1 0x2000124 -1 -1 -1 +.syscon nr __NR_mkdir_extended -1 0x2000124 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mkdirat.s b/libc/sysv/consts/__NR_mkdirat.s index 868ee1be3..413870d6c 100644 --- a/libc/sysv/consts/__NR_mkdirat.s +++ b/libc/sysv/consts/__NR_mkdirat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mkdirat 0x0102 0x20001db 0x01f0 0x013e -1 +.syscon nr __NR_mkdirat 0x0102 0x20001db 0x01f0 0x013e 0x1cd -1 diff --git a/libc/sysv/consts/__NR_mkfifo.s b/libc/sysv/consts/__NR_mkfifo.s index abacf61b2..367ef32ad 100644 --- a/libc/sysv/consts/__NR_mkfifo.s +++ b/libc/sysv/consts/__NR_mkfifo.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mkfifo -1 0x2000084 0x0084 0x0084 -1 +.syscon nr __NR_mkfifo -1 0x2000084 0x0084 0x0084 0x084 -1 diff --git a/libc/sysv/consts/__NR_mkfifo_extended.s b/libc/sysv/consts/__NR_mkfifo_extended.s index 85f1cd8c1..bd55dcf9d 100644 --- a/libc/sysv/consts/__NR_mkfifo_extended.s +++ b/libc/sysv/consts/__NR_mkfifo_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mkfifo_extended -1 0x2000123 -1 -1 -1 +.syscon nr __NR_mkfifo_extended -1 0x2000123 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mkfifoat.s b/libc/sysv/consts/__NR_mkfifoat.s index 6eea0eb40..f8dd91656 100644 --- a/libc/sysv/consts/__NR_mkfifoat.s +++ b/libc/sysv/consts/__NR_mkfifoat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mkfifoat -1 -1 0x01f1 0x013f -1 +.syscon nr __NR_mkfifoat -1 -1 0x01f1 0x013f 0x1cb -1 diff --git a/libc/sysv/consts/__NR_mknod.s b/libc/sysv/consts/__NR_mknod.s index 1561f1579..8e443f8dd 100644 --- a/libc/sysv/consts/__NR_mknod.s +++ b/libc/sysv/consts/__NR_mknod.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mknod 0x0085 0x200000e 0x000e 0x000e -1 +.syscon nr __NR_mknod 0x0085 0x200000e 0x000e 0x000e 0x1c2 -1 diff --git a/libc/sysv/consts/__NR_mknodat.s b/libc/sysv/consts/__NR_mknodat.s index 9c4739b96..b77181c40 100644 --- a/libc/sysv/consts/__NR_mknodat.s +++ b/libc/sysv/consts/__NR_mknodat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mknodat 0x0103 -1 0x22ff 0x0140 -1 +.syscon nr __NR_mknodat 0x0103 -1 0x22ff 0x0140 0x1cc -1 diff --git a/libc/sysv/consts/__NR_mlock.s b/libc/sysv/consts/__NR_mlock.s index eadef3156..8e51f2095 100644 --- a/libc/sysv/consts/__NR_mlock.s +++ b/libc/sysv/consts/__NR_mlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mlock 0x0095 0x20000cb 0x00cb 0x00cb -1 +.syscon nr __NR_mlock 0x0095 0x20000cb 0x00cb 0x00cb 0x0cb -1 diff --git a/libc/sysv/consts/__NR_mlock2.s b/libc/sysv/consts/__NR_mlock2.s index a0625753e..666f1ad56 100644 --- a/libc/sysv/consts/__NR_mlock2.s +++ b/libc/sysv/consts/__NR_mlock2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mlock2 0x0145 -1 -1 -1 -1 +.syscon nr __NR_mlock2 0x0145 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mlockall.s b/libc/sysv/consts/__NR_mlockall.s index 1769a5a5c..d146591b7 100644 --- a/libc/sysv/consts/__NR_mlockall.s +++ b/libc/sysv/consts/__NR_mlockall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mlockall 0x0097 0x2000144 0x0144 0x010f -1 +.syscon nr __NR_mlockall 0x0097 0x2000144 0x0144 0x010f 0x0f2 -1 diff --git a/libc/sysv/consts/__NR_mmap.s b/libc/sysv/consts/__NR_mmap.s index c36939553..11ad022d5 100644 --- a/libc/sysv/consts/__NR_mmap.s +++ b/libc/sysv/consts/__NR_mmap.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mmap 0x0009 0x20000c5 0x01dd 0x00c5 -1 +.syscon nr __NR_mmap 0x0009 0x20000c5 0x01dd 0x00c5 0x0c5 -1 diff --git a/libc/sysv/consts/__NR_modfind.s b/libc/sysv/consts/__NR_modfind.s index c5a380cf7..cf45d46c8 100644 --- a/libc/sysv/consts/__NR_modfind.s +++ b/libc/sysv/consts/__NR_modfind.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_modfind -1 -1 0x012f -1 -1 +.syscon nr __NR_modfind -1 -1 0x012f -1 -1 -1 diff --git a/libc/sysv/consts/__NR_modfnext.s b/libc/sysv/consts/__NR_modfnext.s index ea2b11008..755d71d54 100644 --- a/libc/sysv/consts/__NR_modfnext.s +++ b/libc/sysv/consts/__NR_modfnext.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_modfnext -1 -1 0x012e -1 -1 +.syscon nr __NR_modfnext -1 -1 0x012e -1 -1 -1 diff --git a/libc/sysv/consts/__NR_modify_ldt.s b/libc/sysv/consts/__NR_modify_ldt.s index 9e6a1d6de..b6023a986 100644 --- a/libc/sysv/consts/__NR_modify_ldt.s +++ b/libc/sysv/consts/__NR_modify_ldt.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_modify_ldt 0x009a -1 -1 -1 -1 +.syscon nr __NR_modify_ldt 0x009a -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_modnext.s b/libc/sysv/consts/__NR_modnext.s index 3ff02af67..e9b821a79 100644 --- a/libc/sysv/consts/__NR_modnext.s +++ b/libc/sysv/consts/__NR_modnext.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_modnext -1 -1 0x012c -1 -1 +.syscon nr __NR_modnext -1 -1 0x012c -1 -1 -1 diff --git a/libc/sysv/consts/__NR_modstat.s b/libc/sysv/consts/__NR_modstat.s index f61626112..d556e90aa 100644 --- a/libc/sysv/consts/__NR_modstat.s +++ b/libc/sysv/consts/__NR_modstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_modstat -1 -1 0x012d -1 -1 +.syscon nr __NR_modstat -1 -1 0x012d -1 -1 -1 diff --git a/libc/sysv/consts/__NR_modwatch.s b/libc/sysv/consts/__NR_modwatch.s index 1f1aa93cf..ea7f78f10 100644 --- a/libc/sysv/consts/__NR_modwatch.s +++ b/libc/sysv/consts/__NR_modwatch.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_modwatch -1 0x20000e9 -1 -1 -1 +.syscon nr __NR_modwatch -1 0x20000e9 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mount.s b/libc/sysv/consts/__NR_mount.s index 1fe152153..feb3f8d30 100644 --- a/libc/sysv/consts/__NR_mount.s +++ b/libc/sysv/consts/__NR_mount.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mount 0x00a5 0x20000a7 0x0015 0x0015 -1 +.syscon nr __NR_mount 0x00a5 0x20000a7 0x0015 0x0015 0x19a -1 diff --git a/libc/sysv/consts/__NR_move_pages.s b/libc/sysv/consts/__NR_move_pages.s index 9aa0f0833..359eeb3e1 100644 --- a/libc/sysv/consts/__NR_move_pages.s +++ b/libc/sysv/consts/__NR_move_pages.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_move_pages 0x0117 -1 -1 -1 -1 +.syscon nr __NR_move_pages 0x0117 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mprotect.s b/libc/sysv/consts/__NR_mprotect.s index 98dbb7d8f..59c3b997d 100644 --- a/libc/sysv/consts/__NR_mprotect.s +++ b/libc/sysv/consts/__NR_mprotect.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mprotect 0x000a 0x200004a 0x004a 0x004a -1 +.syscon nr __NR_mprotect 0x000a 0x200004a 0x004a 0x004a 0x04a -1 diff --git a/libc/sysv/consts/__NR_mq_getsetattr.s b/libc/sysv/consts/__NR_mq_getsetattr.s index ab34ee5aa..292132b56 100644 --- a/libc/sysv/consts/__NR_mq_getsetattr.s +++ b/libc/sysv/consts/__NR_mq_getsetattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mq_getsetattr 0x00f5 -1 -1 -1 -1 +.syscon nr __NR_mq_getsetattr 0x00f5 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_mq_notify.s b/libc/sysv/consts/__NR_mq_notify.s index 6c10b8725..a5757325d 100644 --- a/libc/sysv/consts/__NR_mq_notify.s +++ b/libc/sysv/consts/__NR_mq_notify.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mq_notify 0x00f4 -1 -1 -1 -1 +.syscon nr __NR_mq_notify 0x00f4 -1 -1 -1 0x106 -1 diff --git a/libc/sysv/consts/__NR_mq_open.s b/libc/sysv/consts/__NR_mq_open.s index f9a64dcf9..fcfdf8213 100644 --- a/libc/sysv/consts/__NR_mq_open.s +++ b/libc/sysv/consts/__NR_mq_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mq_open 0x00f0 -1 -1 -1 -1 +.syscon nr __NR_mq_open 0x00f0 -1 -1 -1 0x101 -1 diff --git a/libc/sysv/consts/__NR_mq_timedreceive.s b/libc/sysv/consts/__NR_mq_timedreceive.s index 8466d269e..288c6a3dd 100644 --- a/libc/sysv/consts/__NR_mq_timedreceive.s +++ b/libc/sysv/consts/__NR_mq_timedreceive.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mq_timedreceive 0x00f3 -1 -1 -1 -1 +.syscon nr __NR_mq_timedreceive 0x00f3 -1 -1 -1 0x1b1 -1 diff --git a/libc/sysv/consts/__NR_mq_timedsend.s b/libc/sysv/consts/__NR_mq_timedsend.s index eb1c05560..37ceee214 100644 --- a/libc/sysv/consts/__NR_mq_timedsend.s +++ b/libc/sysv/consts/__NR_mq_timedsend.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mq_timedsend 0x00f2 -1 -1 -1 -1 +.syscon nr __NR_mq_timedsend 0x00f2 -1 -1 -1 0x1b0 -1 diff --git a/libc/sysv/consts/__NR_mq_unlink.s b/libc/sysv/consts/__NR_mq_unlink.s index b9c9676cf..d8c42ff15 100644 --- a/libc/sysv/consts/__NR_mq_unlink.s +++ b/libc/sysv/consts/__NR_mq_unlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mq_unlink 0x00f1 -1 -1 -1 -1 +.syscon nr __NR_mq_unlink 0x00f1 -1 -1 -1 0x103 -1 diff --git a/libc/sysv/consts/__NR_mquery.s b/libc/sysv/consts/__NR_mquery.s index aae7cdd36..cdf9ccebc 100644 --- a/libc/sysv/consts/__NR_mquery.s +++ b/libc/sysv/consts/__NR_mquery.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mquery -1 -1 -1 0x011e -1 +.syscon nr __NR_mquery -1 -1 -1 0x011e -1 -1 diff --git a/libc/sysv/consts/__NR_mremap.s b/libc/sysv/consts/__NR_mremap.s index 92b6b091d..62cc2cef1 100644 --- a/libc/sysv/consts/__NR_mremap.s +++ b/libc/sysv/consts/__NR_mremap.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mremap 0x0019 -1 -1 -1 -1 +.syscon nr __NR_mremap 0x0019 -1 -1 -1 0x19b -1 diff --git a/libc/sysv/consts/__NR_mremap_encrypted.s b/libc/sysv/consts/__NR_mremap_encrypted.s index 0a35d98c5..cd5ca21da 100644 --- a/libc/sysv/consts/__NR_mremap_encrypted.s +++ b/libc/sysv/consts/__NR_mremap_encrypted.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_mremap_encrypted -1 0x20001e9 -1 -1 -1 +.syscon nr __NR_mremap_encrypted -1 0x20001e9 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_msgctl.s b/libc/sysv/consts/__NR_msgctl.s index b80225b9e..be7bfb3c3 100644 --- a/libc/sysv/consts/__NR_msgctl.s +++ b/libc/sysv/consts/__NR_msgctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msgctl 0x0047 0x2000102 0x01ff 0x0129 -1 +.syscon nr __NR_msgctl 0x0047 0x2000102 0x01ff 0x0129 0x1bc -1 diff --git a/libc/sysv/consts/__NR_msgget.s b/libc/sysv/consts/__NR_msgget.s index 3ce05c46e..fdf5de901 100644 --- a/libc/sysv/consts/__NR_msgget.s +++ b/libc/sysv/consts/__NR_msgget.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msgget 0x0044 0x2000103 0x00e1 0x00e1 -1 +.syscon nr __NR_msgget 0x0044 0x2000103 0x00e1 0x00e1 0x0e1 -1 diff --git a/libc/sysv/consts/__NR_msgrcv.s b/libc/sysv/consts/__NR_msgrcv.s index 1da085ec2..97c96c0dc 100644 --- a/libc/sysv/consts/__NR_msgrcv.s +++ b/libc/sysv/consts/__NR_msgrcv.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msgrcv 0x0046 0x2000105 0x00e3 0x00e3 -1 +.syscon nr __NR_msgrcv 0x0046 0x2000105 0x00e3 0x00e3 0x0e3 -1 diff --git a/libc/sysv/consts/__NR_msgrcv_nocancel.s b/libc/sysv/consts/__NR_msgrcv_nocancel.s index 02795254a..83847a221 100644 --- a/libc/sysv/consts/__NR_msgrcv_nocancel.s +++ b/libc/sysv/consts/__NR_msgrcv_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msgrcv_nocancel -1 0x20001a3 -1 -1 -1 +.syscon nr __NR_msgrcv_nocancel -1 0x20001a3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_msgsnd.s b/libc/sysv/consts/__NR_msgsnd.s index 11733d20b..f371598fb 100644 --- a/libc/sysv/consts/__NR_msgsnd.s +++ b/libc/sysv/consts/__NR_msgsnd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msgsnd 0x0045 0x2000104 0x00e2 0x00e2 -1 +.syscon nr __NR_msgsnd 0x0045 0x2000104 0x00e2 0x00e2 0x0e2 -1 diff --git a/libc/sysv/consts/__NR_msgsnd_nocancel.s b/libc/sysv/consts/__NR_msgsnd_nocancel.s index bfbfa36e3..68ba7eee2 100644 --- a/libc/sysv/consts/__NR_msgsnd_nocancel.s +++ b/libc/sysv/consts/__NR_msgsnd_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msgsnd_nocancel -1 0x20001a2 -1 -1 -1 +.syscon nr __NR_msgsnd_nocancel -1 0x20001a2 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_msgsys.s b/libc/sysv/consts/__NR_msgsys.s index a1f4970bc..97447bd65 100644 --- a/libc/sysv/consts/__NR_msgsys.s +++ b/libc/sysv/consts/__NR_msgsys.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msgsys -1 0x20000fc 0x00aa -1 -1 +.syscon nr __NR_msgsys -1 0x20000fc 0x00aa -1 -1 -1 diff --git a/libc/sysv/consts/__NR_msync.s b/libc/sysv/consts/__NR_msync.s index 19d67c768..dd787c1fe 100644 --- a/libc/sysv/consts/__NR_msync.s +++ b/libc/sysv/consts/__NR_msync.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msync 0x001a 0x2000041 0x0041 0x0100 -1 +.syscon nr __NR_msync 0x001a 0x2000041 0x0041 0x0100 0x115 -1 diff --git a/libc/sysv/consts/__NR_msync_nocancel.s b/libc/sysv/consts/__NR_msync_nocancel.s index 60c86a961..7bac3bb9b 100644 --- a/libc/sysv/consts/__NR_msync_nocancel.s +++ b/libc/sysv/consts/__NR_msync_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msync_nocancel -1 0x2000195 -1 -1 -1 +.syscon nr __NR_msync_nocancel -1 0x2000195 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_msyscall.s b/libc/sysv/consts/__NR_msyscall.s index 6fafd5ff5..13ab2d3b9 100644 --- a/libc/sysv/consts/__NR_msyscall.s +++ b/libc/sysv/consts/__NR_msyscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_msyscall -1 -1 -1 0x0025 -1 +.syscon nr __NR_msyscall -1 -1 -1 0x0025 -1 -1 diff --git a/libc/sysv/consts/__NR_munlock.s b/libc/sysv/consts/__NR_munlock.s index 162a3ed68..f3505664a 100644 --- a/libc/sysv/consts/__NR_munlock.s +++ b/libc/sysv/consts/__NR_munlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_munlock 0x0096 0x20000cc 0x00cc 0x00cc -1 +.syscon nr __NR_munlock 0x0096 0x20000cc 0x00cc 0x00cc 0x0cc -1 diff --git a/libc/sysv/consts/__NR_munlockall.s b/libc/sysv/consts/__NR_munlockall.s index 2b4a4e195..2245b1913 100644 --- a/libc/sysv/consts/__NR_munlockall.s +++ b/libc/sysv/consts/__NR_munlockall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_munlockall 0x0098 0x2000145 0x0145 0x0110 -1 +.syscon nr __NR_munlockall 0x0098 0x2000145 0x0145 0x0110 0x0f3 -1 diff --git a/libc/sysv/consts/__NR_munmap.s b/libc/sysv/consts/__NR_munmap.s index a1f044d75..1d6900ec9 100644 --- a/libc/sysv/consts/__NR_munmap.s +++ b/libc/sysv/consts/__NR_munmap.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_munmap 0x000b 0x2000049 0x0049 0x0049 -1 +.syscon nr __NR_munmap 0x000b 0x2000049 0x0049 0x0049 0x049 -1 diff --git a/libc/sysv/consts/__NR_name_to_handle_at.s b/libc/sysv/consts/__NR_name_to_handle_at.s index 9eae2b77f..36e22183c 100644 --- a/libc/sysv/consts/__NR_name_to_handle_at.s +++ b/libc/sysv/consts/__NR_name_to_handle_at.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_name_to_handle_at 0x012f -1 -1 -1 -1 +.syscon nr __NR_name_to_handle_at 0x012f -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nanosleep.s b/libc/sysv/consts/__NR_nanosleep.s index 5726872ca..ee9efdf9a 100644 --- a/libc/sysv/consts/__NR_nanosleep.s +++ b/libc/sysv/consts/__NR_nanosleep.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nanosleep 0x0023 -1 0x00f0 0x005b -1 +.syscon nr __NR_nanosleep 0x0023 -1 0x00f0 0x005b 0x1ae -1 diff --git a/libc/sysv/consts/__NR_necp_client_action.s b/libc/sysv/consts/__NR_necp_client_action.s index 7d163392d..4166fc069 100644 --- a/libc/sysv/consts/__NR_necp_client_action.s +++ b/libc/sysv/consts/__NR_necp_client_action.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_necp_client_action -1 0x20001f6 -1 -1 -1 +.syscon nr __NR_necp_client_action -1 0x20001f6 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_necp_match_policy.s b/libc/sysv/consts/__NR_necp_match_policy.s index 892b30962..050b98e39 100644 --- a/libc/sysv/consts/__NR_necp_match_policy.s +++ b/libc/sysv/consts/__NR_necp_match_policy.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_necp_match_policy -1 0x20001cc -1 -1 -1 +.syscon nr __NR_necp_match_policy -1 0x20001cc -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_necp_open.s b/libc/sysv/consts/__NR_necp_open.s index 362469a23..e1213982e 100644 --- a/libc/sysv/consts/__NR_necp_open.s +++ b/libc/sysv/consts/__NR_necp_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_necp_open -1 0x20001f5 -1 -1 -1 +.syscon nr __NR_necp_open -1 0x20001f5 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_necp_session_action.s b/libc/sysv/consts/__NR_necp_session_action.s index cf1671c77..9319b53c7 100644 --- a/libc/sysv/consts/__NR_necp_session_action.s +++ b/libc/sysv/consts/__NR_necp_session_action.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_necp_session_action -1 0x200020b -1 -1 -1 +.syscon nr __NR_necp_session_action -1 0x200020b -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_necp_session_open.s b/libc/sysv/consts/__NR_necp_session_open.s index b31713140..3e4f2c7bb 100644 --- a/libc/sysv/consts/__NR_necp_session_open.s +++ b/libc/sysv/consts/__NR_necp_session_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_necp_session_open -1 0x200020a -1 -1 -1 +.syscon nr __NR_necp_session_open -1 0x200020a -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_net_qos_guideline.s b/libc/sysv/consts/__NR_net_qos_guideline.s index 255d70509..e9f6beedc 100644 --- a/libc/sysv/consts/__NR_net_qos_guideline.s +++ b/libc/sysv/consts/__NR_net_qos_guideline.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_net_qos_guideline -1 0x200020d -1 -1 -1 +.syscon nr __NR_net_qos_guideline -1 0x200020d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_netagent_trigger.s b/libc/sysv/consts/__NR_netagent_trigger.s index cefce2e82..87e538877 100644 --- a/libc/sysv/consts/__NR_netagent_trigger.s +++ b/libc/sysv/consts/__NR_netagent_trigger.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_netagent_trigger -1 0x20001ea -1 -1 -1 +.syscon nr __NR_netagent_trigger -1 0x20001ea -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nfsclnt.s b/libc/sysv/consts/__NR_nfsclnt.s index 92c813dd1..207d6c03b 100644 --- a/libc/sysv/consts/__NR_nfsclnt.s +++ b/libc/sysv/consts/__NR_nfsclnt.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nfsclnt -1 0x20000f7 -1 -1 -1 +.syscon nr __NR_nfsclnt -1 0x20000f7 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nfssvc.s b/libc/sysv/consts/__NR_nfssvc.s index 4e51667e8..267d5eea4 100644 --- a/libc/sysv/consts/__NR_nfssvc.s +++ b/libc/sysv/consts/__NR_nfssvc.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nfssvc -1 0x200009b 0x009b 0x009b -1 +.syscon nr __NR_nfssvc -1 0x200009b 0x009b 0x009b 0x09b -1 diff --git a/libc/sysv/consts/__NR_nfstat.s b/libc/sysv/consts/__NR_nfstat.s index b1a77d4de..e7e0004de 100644 --- a/libc/sysv/consts/__NR_nfstat.s +++ b/libc/sysv/consts/__NR_nfstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nfstat -1 -1 0x0117 -1 -1 +.syscon nr __NR_nfstat -1 -1 0x0117 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nlm_syscall.s b/libc/sysv/consts/__NR_nlm_syscall.s index 8862f68f3..b1223516e 100644 --- a/libc/sysv/consts/__NR_nlm_syscall.s +++ b/libc/sysv/consts/__NR_nlm_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nlm_syscall -1 -1 0x009a -1 -1 +.syscon nr __NR_nlm_syscall -1 -1 0x009a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nlstat.s b/libc/sysv/consts/__NR_nlstat.s index 23d8a6e47..ceb24a91a 100644 --- a/libc/sysv/consts/__NR_nlstat.s +++ b/libc/sysv/consts/__NR_nlstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nlstat -1 -1 0x0118 -1 -1 +.syscon nr __NR_nlstat -1 -1 0x0118 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nmount.s b/libc/sysv/consts/__NR_nmount.s index 20220a613..d05ab7b14 100644 --- a/libc/sysv/consts/__NR_nmount.s +++ b/libc/sysv/consts/__NR_nmount.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nmount -1 -1 0x017a -1 -1 +.syscon nr __NR_nmount -1 -1 0x017a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nnpfs_syscall.s b/libc/sysv/consts/__NR_nnpfs_syscall.s index 33f561380..32d6bd4d0 100644 --- a/libc/sysv/consts/__NR_nnpfs_syscall.s +++ b/libc/sysv/consts/__NR_nnpfs_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nnpfs_syscall -1 -1 0x0153 -1 -1 +.syscon nr __NR_nnpfs_syscall -1 -1 0x0153 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_nstat.s b/libc/sysv/consts/__NR_nstat.s index a27174f0d..cc2efb230 100644 --- a/libc/sysv/consts/__NR_nstat.s +++ b/libc/sysv/consts/__NR_nstat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_nstat -1 -1 0x0116 -1 -1 +.syscon nr __NR_nstat -1 -1 0x0116 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ntp_adjtime.s b/libc/sysv/consts/__NR_ntp_adjtime.s index fd0166850..0d0b08225 100644 --- a/libc/sysv/consts/__NR_ntp_adjtime.s +++ b/libc/sysv/consts/__NR_ntp_adjtime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ntp_adjtime -1 0x200020f 0x00b0 -1 -1 +.syscon nr __NR_ntp_adjtime -1 0x200020f 0x00b0 -1 0x0b0 -1 diff --git a/libc/sysv/consts/__NR_ntp_gettime.s b/libc/sysv/consts/__NR_ntp_gettime.s index f830646cb..920f73d42 100644 --- a/libc/sysv/consts/__NR_ntp_gettime.s +++ b/libc/sysv/consts/__NR_ntp_gettime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ntp_gettime -1 0x2000210 0x00f8 -1 -1 +.syscon nr __NR_ntp_gettime -1 0x2000210 0x00f8 -1 0x1c0 -1 diff --git a/libc/sysv/consts/__NR_obreak.s b/libc/sysv/consts/__NR_obreak.s index ca99e74b7..71f6d9b80 100644 --- a/libc/sysv/consts/__NR_obreak.s +++ b/libc/sysv/consts/__NR_obreak.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_obreak -1 -1 -1 0x0011 -1 +.syscon nr __NR_obreak -1 -1 -1 0x0011 0x011 -1 diff --git a/libc/sysv/consts/__NR_old_semwait_signal.s b/libc/sysv/consts/__NR_old_semwait_signal.s index 7655d5a13..da97ef31c 100644 --- a/libc/sysv/consts/__NR_old_semwait_signal.s +++ b/libc/sysv/consts/__NR_old_semwait_signal.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_old_semwait_signal -1 0x2000172 -1 -1 -1 +.syscon nr __NR_old_semwait_signal -1 0x2000172 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_old_semwait_signal_nocancel.s b/libc/sysv/consts/__NR_old_semwait_signal_nocancel.s index fadefbb39..9339c5ef9 100644 --- a/libc/sysv/consts/__NR_old_semwait_signal_nocancel.s +++ b/libc/sysv/consts/__NR_old_semwait_signal_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_old_semwait_signal_nocancel -1 0x2000173 -1 -1 -1 +.syscon nr __NR_old_semwait_signal_nocancel -1 0x2000173 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_open.s b/libc/sysv/consts/__NR_open.s index 472136e7a..502b8c8a8 100644 --- a/libc/sysv/consts/__NR_open.s +++ b/libc/sysv/consts/__NR_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_open 0x0002 0x2000005 0x0005 0x0005 -1 +.syscon nr __NR_open 0x0002 0x2000005 0x0005 0x0005 0x005 -1 diff --git a/libc/sysv/consts/__NR_open_by_handle_at.s b/libc/sysv/consts/__NR_open_by_handle_at.s index b2e0645f1..e5fc19221 100644 --- a/libc/sysv/consts/__NR_open_by_handle_at.s +++ b/libc/sysv/consts/__NR_open_by_handle_at.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_open_by_handle_at 0x0130 -1 -1 -1 -1 +.syscon nr __NR_open_by_handle_at 0x0130 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_open_dprotected_np.s b/libc/sysv/consts/__NR_open_dprotected_np.s index 6b53c25c7..f35f17909 100644 --- a/libc/sysv/consts/__NR_open_dprotected_np.s +++ b/libc/sysv/consts/__NR_open_dprotected_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_open_dprotected_np -1 0x20000d8 -1 -1 -1 +.syscon nr __NR_open_dprotected_np -1 0x20000d8 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_open_extended.s b/libc/sysv/consts/__NR_open_extended.s index e7e098d59..a6bc8ca09 100644 --- a/libc/sysv/consts/__NR_open_extended.s +++ b/libc/sysv/consts/__NR_open_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_open_extended -1 0x2000115 -1 -1 -1 +.syscon nr __NR_open_extended -1 0x2000115 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_open_nocancel.s b/libc/sysv/consts/__NR_open_nocancel.s index a0fe8d19d..ac5a434ab 100644 --- a/libc/sysv/consts/__NR_open_nocancel.s +++ b/libc/sysv/consts/__NR_open_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_open_nocancel -1 0x200018e -1 -1 -1 +.syscon nr __NR_open_nocancel -1 0x200018e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_openat.s b/libc/sysv/consts/__NR_openat.s index 66f7e1ffc..e12d61945 100644 --- a/libc/sysv/consts/__NR_openat.s +++ b/libc/sysv/consts/__NR_openat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_openat 0x0101 0x20001cf 0x01f3 0x0141 -1 +.syscon nr __NR_openat 0x0101 0x20001cf 0x01f3 0x0141 0x1d4 -1 diff --git a/libc/sysv/consts/__NR_openat_nocancel.s b/libc/sysv/consts/__NR_openat_nocancel.s index 772f72536..6fd3fe49a 100644 --- a/libc/sysv/consts/__NR_openat_nocancel.s +++ b/libc/sysv/consts/__NR_openat_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_openat_nocancel -1 0x20001d0 -1 -1 -1 +.syscon nr __NR_openat_nocancel -1 0x20001d0 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_openbyid_np.s b/libc/sysv/consts/__NR_openbyid_np.s index 10d85e646..0295e18ea 100644 --- a/libc/sysv/consts/__NR_openbyid_np.s +++ b/libc/sysv/consts/__NR_openbyid_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_openbyid_np -1 0x20001df -1 -1 -1 +.syscon nr __NR_openbyid_np -1 0x20001df -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_os_fault_with_payload.s b/libc/sysv/consts/__NR_os_fault_with_payload.s index c4e84e155..63a76e3f0 100644 --- a/libc/sysv/consts/__NR_os_fault_with_payload.s +++ b/libc/sysv/consts/__NR_os_fault_with_payload.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_os_fault_with_payload -1 0x2000211 -1 -1 -1 +.syscon nr __NR_os_fault_with_payload -1 0x2000211 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pathconf.s b/libc/sysv/consts/__NR_pathconf.s index e44094c9b..a1c7f31ac 100644 --- a/libc/sysv/consts/__NR_pathconf.s +++ b/libc/sysv/consts/__NR_pathconf.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pathconf -1 0x20000bf 0x00bf 0x00bf -1 +.syscon nr __NR_pathconf -1 0x20000bf 0x00bf 0x00bf 0x0bf -1 diff --git a/libc/sysv/consts/__NR_pause.s b/libc/sysv/consts/__NR_pause.s index 72b246985..388894113 100644 --- a/libc/sysv/consts/__NR_pause.s +++ b/libc/sysv/consts/__NR_pause.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pause 0x0022 -1 -1 -1 -1 +.syscon nr __NR_pause 0x0022 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pdfork.s b/libc/sysv/consts/__NR_pdfork.s index 23f2b58af..170a44ce0 100644 --- a/libc/sysv/consts/__NR_pdfork.s +++ b/libc/sysv/consts/__NR_pdfork.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pdfork -1 -1 0x0206 -1 -1 +.syscon nr __NR_pdfork -1 -1 0x0206 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pdgetpid.s b/libc/sysv/consts/__NR_pdgetpid.s index 6672d40bb..aa713a784 100644 --- a/libc/sysv/consts/__NR_pdgetpid.s +++ b/libc/sysv/consts/__NR_pdgetpid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pdgetpid -1 -1 0x0208 -1 -1 +.syscon nr __NR_pdgetpid -1 -1 0x0208 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pdkill.s b/libc/sysv/consts/__NR_pdkill.s index 275d39b3f..f1e532a8b 100644 --- a/libc/sysv/consts/__NR_pdkill.s +++ b/libc/sysv/consts/__NR_pdkill.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pdkill -1 -1 0x0207 -1 -1 +.syscon nr __NR_pdkill -1 -1 0x0207 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_peeloff.s b/libc/sysv/consts/__NR_peeloff.s index b74d2cd01..43927fab0 100644 --- a/libc/sysv/consts/__NR_peeloff.s +++ b/libc/sysv/consts/__NR_peeloff.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_peeloff -1 0x20001c1 -1 -1 -1 +.syscon nr __NR_peeloff -1 0x20001c1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_perf_event_open.s b/libc/sysv/consts/__NR_perf_event_open.s index e7d0329e1..ad7ebee0e 100644 --- a/libc/sysv/consts/__NR_perf_event_open.s +++ b/libc/sysv/consts/__NR_perf_event_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_perf_event_open 0x012a -1 -1 -1 -1 +.syscon nr __NR_perf_event_open 0x012a -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_persona.s b/libc/sysv/consts/__NR_persona.s index 5e5f92a92..23335dfdc 100644 --- a/libc/sysv/consts/__NR_persona.s +++ b/libc/sysv/consts/__NR_persona.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_persona -1 0x20001ee -1 -1 -1 +.syscon nr __NR_persona -1 0x20001ee -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_personality.s b/libc/sysv/consts/__NR_personality.s index 2a4bc18d5..2d4800a50 100644 --- a/libc/sysv/consts/__NR_personality.s +++ b/libc/sysv/consts/__NR_personality.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_personality 0x0087 -1 -1 -1 -1 +.syscon nr __NR_personality 0x0087 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pid_hibernate.s b/libc/sysv/consts/__NR_pid_hibernate.s index b5e0107d6..4165d7bf1 100644 --- a/libc/sysv/consts/__NR_pid_hibernate.s +++ b/libc/sysv/consts/__NR_pid_hibernate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pid_hibernate -1 0x20001b3 -1 -1 -1 +.syscon nr __NR_pid_hibernate -1 0x20001b3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pid_resume.s b/libc/sysv/consts/__NR_pid_resume.s index 85267ae1d..d216b3de8 100644 --- a/libc/sysv/consts/__NR_pid_resume.s +++ b/libc/sysv/consts/__NR_pid_resume.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pid_resume -1 0x20001b2 -1 -1 -1 +.syscon nr __NR_pid_resume -1 0x20001b2 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pid_shutdown_sockets.s b/libc/sysv/consts/__NR_pid_shutdown_sockets.s index 092cc0c28..cc250f3f9 100644 --- a/libc/sysv/consts/__NR_pid_shutdown_sockets.s +++ b/libc/sysv/consts/__NR_pid_shutdown_sockets.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pid_shutdown_sockets -1 0x20001b4 -1 -1 -1 +.syscon nr __NR_pid_shutdown_sockets -1 0x20001b4 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pid_suspend.s b/libc/sysv/consts/__NR_pid_suspend.s index b23cb09c8..01bd6ac2d 100644 --- a/libc/sysv/consts/__NR_pid_suspend.s +++ b/libc/sysv/consts/__NR_pid_suspend.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pid_suspend -1 0x20001b1 -1 -1 -1 +.syscon nr __NR_pid_suspend -1 0x20001b1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pidfd_send_signal.s b/libc/sysv/consts/__NR_pidfd_send_signal.s index 94d0e3aaa..23eb8e76d 100644 --- a/libc/sysv/consts/__NR_pidfd_send_signal.s +++ b/libc/sysv/consts/__NR_pidfd_send_signal.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pidfd_send_signal 0x01a8 -1 -1 -1 -1 +.syscon nr __NR_pidfd_send_signal 0x01a8 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pipe.s b/libc/sysv/consts/__NR_pipe.s index 59b696756..8d65476b2 100644 --- a/libc/sysv/consts/__NR_pipe.s +++ b/libc/sysv/consts/__NR_pipe.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pipe 0x0016 0x200002a 0x021e 0x0107 -1 +.syscon nr __NR_pipe 0x0016 0x200002a 0x021e 0x0107 0x02a -1 diff --git a/libc/sysv/consts/__NR_pipe2.s b/libc/sysv/consts/__NR_pipe2.s index 5b6bb748c..460226754 100644 --- a/libc/sysv/consts/__NR_pipe2.s +++ b/libc/sysv/consts/__NR_pipe2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pipe2 0x0125 -1 0x021e 0x0065 -1 +.syscon nr __NR_pipe2 0x0125 -1 0x021e 0x0065 0x1c5 -1 diff --git a/libc/sysv/consts/__NR_pivot_root.s b/libc/sysv/consts/__NR_pivot_root.s index ce22c3a33..427dbb181 100644 --- a/libc/sysv/consts/__NR_pivot_root.s +++ b/libc/sysv/consts/__NR_pivot_root.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pivot_root 0x009b -1 -1 -1 -1 +.syscon nr __NR_pivot_root 0x009b -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pkey_alloc.s b/libc/sysv/consts/__NR_pkey_alloc.s index 948921ecc..9bcfedcf6 100644 --- a/libc/sysv/consts/__NR_pkey_alloc.s +++ b/libc/sysv/consts/__NR_pkey_alloc.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pkey_alloc 0x014a -1 -1 -1 -1 +.syscon nr __NR_pkey_alloc 0x014a -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pkey_free.s b/libc/sysv/consts/__NR_pkey_free.s index 012ede2da..dd9150ff2 100644 --- a/libc/sysv/consts/__NR_pkey_free.s +++ b/libc/sysv/consts/__NR_pkey_free.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pkey_free 0x014b -1 -1 -1 -1 +.syscon nr __NR_pkey_free 0x014b -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pkey_mprotect.s b/libc/sysv/consts/__NR_pkey_mprotect.s index 259a6a377..da32aaf6b 100644 --- a/libc/sysv/consts/__NR_pkey_mprotect.s +++ b/libc/sysv/consts/__NR_pkey_mprotect.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pkey_mprotect 0x0149 -1 -1 -1 -1 +.syscon nr __NR_pkey_mprotect 0x0149 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pledge.s b/libc/sysv/consts/__NR_pledge.s index 567f3240e..957f50f44 100644 --- a/libc/sysv/consts/__NR_pledge.s +++ b/libc/sysv/consts/__NR_pledge.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pledge -1 -1 -1 0x006c -1 +.syscon nr __NR_pledge -1 -1 -1 0x006c -1 -1 diff --git a/libc/sysv/consts/__NR_poll.s b/libc/sysv/consts/__NR_poll.s index 6ed6720c7..214bbd126 100644 --- a/libc/sysv/consts/__NR_poll.s +++ b/libc/sysv/consts/__NR_poll.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_poll 0x0007 0x20000e6 0x00d1 0x00fc -1 +.syscon nr __NR_poll 0x0007 0x20000e6 0x00d1 0x00fc 0x0d1 -1 diff --git a/libc/sysv/consts/__NR_poll_nocancel.s b/libc/sysv/consts/__NR_poll_nocancel.s index 5dcc38ac9..bba4e9b32 100644 --- a/libc/sysv/consts/__NR_poll_nocancel.s +++ b/libc/sysv/consts/__NR_poll_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_poll_nocancel -1 0x20001a1 -1 -1 -1 +.syscon nr __NR_poll_nocancel -1 0x20001a1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_posix_fallocate.s b/libc/sysv/consts/__NR_posix_fallocate.s index bb45e1133..abe41ff4f 100644 --- a/libc/sysv/consts/__NR_posix_fallocate.s +++ b/libc/sysv/consts/__NR_posix_fallocate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_posix_fallocate -1 -1 0x0212 -1 -1 +.syscon nr __NR_posix_fallocate -1 -1 0x0212 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_posix_openpt.s b/libc/sysv/consts/__NR_posix_openpt.s index 58082780e..1adabe026 100644 --- a/libc/sysv/consts/__NR_posix_openpt.s +++ b/libc/sysv/consts/__NR_posix_openpt.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_posix_openpt -1 -1 0x01f8 -1 -1 +.syscon nr __NR_posix_openpt -1 -1 0x01f8 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_posix_spawn.s b/libc/sysv/consts/__NR_posix_spawn.s index e1bc3916d..97dbb9cef 100644 --- a/libc/sysv/consts/__NR_posix_spawn.s +++ b/libc/sysv/consts/__NR_posix_spawn.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_posix_spawn -1 0x20000f4 -1 -1 -1 +.syscon nr __NR_posix_spawn -1 0x20000f4 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ppoll.s b/libc/sysv/consts/__NR_ppoll.s index 7098115b2..b29f7243f 100644 --- a/libc/sysv/consts/__NR_ppoll.s +++ b/libc/sysv/consts/__NR_ppoll.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ppoll 0x010f -1 0x0221 0x006d -1 +.syscon nr __NR_ppoll 0x010f -1 0x0221 0x006d -1 -1 diff --git a/libc/sysv/consts/__NR_prctl.s b/libc/sysv/consts/__NR_prctl.s index 55144718a..8253b41e3 100644 --- a/libc/sysv/consts/__NR_prctl.s +++ b/libc/sysv/consts/__NR_prctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_prctl 0x009d -1 -1 -1 -1 +.syscon nr __NR_prctl 0x009d -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pread.s b/libc/sysv/consts/__NR_pread.s index bb4b5e46e..0b72801b8 100644 --- a/libc/sysv/consts/__NR_pread.s +++ b/libc/sysv/consts/__NR_pread.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pread 0x0011 0x2000099 0x01db 0x00ad -1 +.syscon nr __NR_pread 0x0011 0x2000099 0x01db 0x00ad 0x0ad -1 diff --git a/libc/sysv/consts/__NR_pread_nocancel.s b/libc/sysv/consts/__NR_pread_nocancel.s index 793539e11..acd60d526 100644 --- a/libc/sysv/consts/__NR_pread_nocancel.s +++ b/libc/sysv/consts/__NR_pread_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pread_nocancel -1 0x200019e -1 -1 -1 +.syscon nr __NR_pread_nocancel -1 0x200019e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_preadv.s b/libc/sysv/consts/__NR_preadv.s index a8b522630..c4883c602 100644 --- a/libc/sysv/consts/__NR_preadv.s +++ b/libc/sysv/consts/__NR_preadv.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_preadv 0x0127 -1 0x0121 0x010b -1 +.syscon nr __NR_preadv 0x0127 -1 0x0121 0x010b 0x121 -1 diff --git a/libc/sysv/consts/__NR_preadv2.s b/libc/sysv/consts/__NR_preadv2.s index 7e2a308f5..288cfa07a 100644 --- a/libc/sysv/consts/__NR_preadv2.s +++ b/libc/sysv/consts/__NR_preadv2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_preadv2 0x0147 -1 -1 -1 -1 +.syscon nr __NR_preadv2 0x0147 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_prlimit.s b/libc/sysv/consts/__NR_prlimit.s index da0b98353..755a37387 100644 --- a/libc/sysv/consts/__NR_prlimit.s +++ b/libc/sysv/consts/__NR_prlimit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_prlimit 0x012e -1 -1 -1 -1 +.syscon nr __NR_prlimit 0x012e -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_proc_info.s b/libc/sysv/consts/__NR_proc_info.s index 9ac684f61..ef45f305b 100644 --- a/libc/sysv/consts/__NR_proc_info.s +++ b/libc/sysv/consts/__NR_proc_info.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_proc_info -1 0x2000150 -1 -1 -1 +.syscon nr __NR_proc_info -1 0x2000150 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_proc_rlimit_control.s b/libc/sysv/consts/__NR_proc_rlimit_control.s index 6ae2208c6..164ef3684 100644 --- a/libc/sysv/consts/__NR_proc_rlimit_control.s +++ b/libc/sysv/consts/__NR_proc_rlimit_control.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_proc_rlimit_control -1 0x20001be -1 -1 -1 +.syscon nr __NR_proc_rlimit_control -1 0x20001be -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_proc_trace_log.s b/libc/sysv/consts/__NR_proc_trace_log.s index 8a23c35bb..ce5a690e5 100644 --- a/libc/sysv/consts/__NR_proc_trace_log.s +++ b/libc/sysv/consts/__NR_proc_trace_log.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_proc_trace_log -1 0x20001dd -1 -1 -1 +.syscon nr __NR_proc_trace_log -1 0x20001dd -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_proc_uuid_policy.s b/libc/sysv/consts/__NR_proc_uuid_policy.s index 4721f99cf..21b9326fe 100644 --- a/libc/sysv/consts/__NR_proc_uuid_policy.s +++ b/libc/sysv/consts/__NR_proc_uuid_policy.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_proc_uuid_policy -1 0x20001c4 -1 -1 -1 +.syscon nr __NR_proc_uuid_policy -1 0x20001c4 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_procctl.s b/libc/sysv/consts/__NR_procctl.s index 7d58aeefc..c10bd0150 100644 --- a/libc/sysv/consts/__NR_procctl.s +++ b/libc/sysv/consts/__NR_procctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_procctl -1 -1 0x0220 -1 -1 +.syscon nr __NR_procctl -1 -1 0x0220 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_process_policy.s b/libc/sysv/consts/__NR_process_policy.s index d496a7684..026d51f0e 100644 --- a/libc/sysv/consts/__NR_process_policy.s +++ b/libc/sysv/consts/__NR_process_policy.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_process_policy -1 0x2000143 -1 -1 -1 +.syscon nr __NR_process_policy -1 0x2000143 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_process_vm_readv.s b/libc/sysv/consts/__NR_process_vm_readv.s index 6df5ea463..1685f0efb 100644 --- a/libc/sysv/consts/__NR_process_vm_readv.s +++ b/libc/sysv/consts/__NR_process_vm_readv.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_process_vm_readv 0x0136 -1 -1 -1 -1 +.syscon nr __NR_process_vm_readv 0x0136 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_process_vm_writev.s b/libc/sysv/consts/__NR_process_vm_writev.s index a121bc3cd..2e3a223cb 100644 --- a/libc/sysv/consts/__NR_process_vm_writev.s +++ b/libc/sysv/consts/__NR_process_vm_writev.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_process_vm_writev 0x0137 -1 -1 -1 -1 +.syscon nr __NR_process_vm_writev 0x0137 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_profil.s b/libc/sysv/consts/__NR_profil.s index 88513114b..6b253f917 100644 --- a/libc/sysv/consts/__NR_profil.s +++ b/libc/sysv/consts/__NR_profil.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_profil -1 -1 0x002c 0x002c -1 +.syscon nr __NR_profil -1 -1 0x002c 0x002c 0x02c -1 diff --git a/libc/sysv/consts/__NR_pselect.s b/libc/sysv/consts/__NR_pselect.s index a5ba60e4b..d397ec2a5 100644 --- a/libc/sysv/consts/__NR_pselect.s +++ b/libc/sysv/consts/__NR_pselect.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pselect -1 0x200018a 0x020a 0x006e -1 +.syscon nr __NR_pselect -1 0x200018a 0x020a 0x006e 0x1b4 -1 diff --git a/libc/sysv/consts/__NR_pselect6.s b/libc/sysv/consts/__NR_pselect6.s index 59b4d1f40..b37956aea 100644 --- a/libc/sysv/consts/__NR_pselect6.s +++ b/libc/sysv/consts/__NR_pselect6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pselect6 0x010e -1 -1 -1 -1 +.syscon nr __NR_pselect6 0x010e -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pselect_nocancel.s b/libc/sysv/consts/__NR_pselect_nocancel.s index a5ba9be78..5e3c20991 100644 --- a/libc/sysv/consts/__NR_pselect_nocancel.s +++ b/libc/sysv/consts/__NR_pselect_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pselect_nocancel -1 0x200018b -1 -1 -1 +.syscon nr __NR_pselect_nocancel -1 0x200018b -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_cvbroad.s b/libc/sysv/consts/__NR_psynch_cvbroad.s index 722c53a36..f8d08a2f7 100644 --- a/libc/sysv/consts/__NR_psynch_cvbroad.s +++ b/libc/sysv/consts/__NR_psynch_cvbroad.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_cvbroad -1 0x200012f -1 -1 -1 +.syscon nr __NR_psynch_cvbroad -1 0x200012f -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_cvclrprepost.s b/libc/sysv/consts/__NR_psynch_cvclrprepost.s index e6aba09dc..b18e7c91d 100644 --- a/libc/sysv/consts/__NR_psynch_cvclrprepost.s +++ b/libc/sysv/consts/__NR_psynch_cvclrprepost.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_cvclrprepost -1 0x2000138 -1 -1 -1 +.syscon nr __NR_psynch_cvclrprepost -1 0x2000138 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_cvsignal.s b/libc/sysv/consts/__NR_psynch_cvsignal.s index e7cf4b562..5ed4ad5f2 100644 --- a/libc/sysv/consts/__NR_psynch_cvsignal.s +++ b/libc/sysv/consts/__NR_psynch_cvsignal.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_cvsignal -1 0x2000130 -1 -1 -1 +.syscon nr __NR_psynch_cvsignal -1 0x2000130 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_cvwait.s b/libc/sysv/consts/__NR_psynch_cvwait.s index c2294cb75..3ff5b498f 100644 --- a/libc/sysv/consts/__NR_psynch_cvwait.s +++ b/libc/sysv/consts/__NR_psynch_cvwait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_cvwait -1 0x2000131 -1 -1 -1 +.syscon nr __NR_psynch_cvwait -1 0x2000131 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_mutexdrop.s b/libc/sysv/consts/__NR_psynch_mutexdrop.s index 0cfe024aa..684c65547 100644 --- a/libc/sysv/consts/__NR_psynch_mutexdrop.s +++ b/libc/sysv/consts/__NR_psynch_mutexdrop.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_mutexdrop -1 0x200012e -1 -1 -1 +.syscon nr __NR_psynch_mutexdrop -1 0x200012e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_mutexwait.s b/libc/sysv/consts/__NR_psynch_mutexwait.s index f29a2e07d..b8400061b 100644 --- a/libc/sysv/consts/__NR_psynch_mutexwait.s +++ b/libc/sysv/consts/__NR_psynch_mutexwait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_mutexwait -1 0x200012d -1 -1 -1 +.syscon nr __NR_psynch_mutexwait -1 0x200012d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_downgrade.s b/libc/sysv/consts/__NR_psynch_rw_downgrade.s index 22891e7ff..dd519196d 100644 --- a/libc/sysv/consts/__NR_psynch_rw_downgrade.s +++ b/libc/sysv/consts/__NR_psynch_rw_downgrade.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_downgrade -1 0x200012b -1 -1 -1 +.syscon nr __NR_psynch_rw_downgrade -1 0x200012b -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_longrdlock.s b/libc/sysv/consts/__NR_psynch_rw_longrdlock.s index bf8d62a50..a7583258d 100644 --- a/libc/sysv/consts/__NR_psynch_rw_longrdlock.s +++ b/libc/sysv/consts/__NR_psynch_rw_longrdlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_longrdlock -1 0x2000129 -1 -1 -1 +.syscon nr __NR_psynch_rw_longrdlock -1 0x2000129 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_rdlock.s b/libc/sysv/consts/__NR_psynch_rw_rdlock.s index 01f0177d8..b50dba63d 100644 --- a/libc/sysv/consts/__NR_psynch_rw_rdlock.s +++ b/libc/sysv/consts/__NR_psynch_rw_rdlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_rdlock -1 0x2000132 -1 -1 -1 +.syscon nr __NR_psynch_rw_rdlock -1 0x2000132 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_unlock.s b/libc/sysv/consts/__NR_psynch_rw_unlock.s index b59bd181d..1c61169e4 100644 --- a/libc/sysv/consts/__NR_psynch_rw_unlock.s +++ b/libc/sysv/consts/__NR_psynch_rw_unlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_unlock -1 0x2000134 -1 -1 -1 +.syscon nr __NR_psynch_rw_unlock -1 0x2000134 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_unlock2.s b/libc/sysv/consts/__NR_psynch_rw_unlock2.s index 118133dd5..69f068211 100644 --- a/libc/sysv/consts/__NR_psynch_rw_unlock2.s +++ b/libc/sysv/consts/__NR_psynch_rw_unlock2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_unlock2 -1 0x2000135 -1 -1 -1 +.syscon nr __NR_psynch_rw_unlock2 -1 0x2000135 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_upgrade.s b/libc/sysv/consts/__NR_psynch_rw_upgrade.s index 09a64d4fe..3cd43b3b4 100644 --- a/libc/sysv/consts/__NR_psynch_rw_upgrade.s +++ b/libc/sysv/consts/__NR_psynch_rw_upgrade.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_upgrade -1 0x200012c -1 -1 -1 +.syscon nr __NR_psynch_rw_upgrade -1 0x200012c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_wrlock.s b/libc/sysv/consts/__NR_psynch_rw_wrlock.s index bff237df0..ad757e56c 100644 --- a/libc/sysv/consts/__NR_psynch_rw_wrlock.s +++ b/libc/sysv/consts/__NR_psynch_rw_wrlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_wrlock -1 0x2000133 -1 -1 -1 +.syscon nr __NR_psynch_rw_wrlock -1 0x2000133 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_psynch_rw_yieldwrlock.s b/libc/sysv/consts/__NR_psynch_rw_yieldwrlock.s index 0cdd7c716..56473ea9d 100644 --- a/libc/sysv/consts/__NR_psynch_rw_yieldwrlock.s +++ b/libc/sysv/consts/__NR_psynch_rw_yieldwrlock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_psynch_rw_yieldwrlock -1 0x200012a -1 -1 -1 +.syscon nr __NR_psynch_rw_yieldwrlock -1 0x200012a -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pthread_canceled.s b/libc/sysv/consts/__NR_pthread_canceled.s index b3ac51363..d1ed26867 100644 --- a/libc/sysv/consts/__NR_pthread_canceled.s +++ b/libc/sysv/consts/__NR_pthread_canceled.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pthread_canceled -1 0x200014d -1 -1 -1 +.syscon nr __NR_pthread_canceled -1 0x200014d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pthread_chdir.s b/libc/sysv/consts/__NR_pthread_chdir.s index ba2d0e6cb..ffe8905de 100644 --- a/libc/sysv/consts/__NR_pthread_chdir.s +++ b/libc/sysv/consts/__NR_pthread_chdir.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pthread_chdir -1 0x200015c -1 -1 -1 +.syscon nr __NR_pthread_chdir -1 0x200015c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pthread_fchdir.s b/libc/sysv/consts/__NR_pthread_fchdir.s index f370a16e1..e4feb5db2 100644 --- a/libc/sysv/consts/__NR_pthread_fchdir.s +++ b/libc/sysv/consts/__NR_pthread_fchdir.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pthread_fchdir -1 0x200015d -1 -1 -1 +.syscon nr __NR_pthread_fchdir -1 0x200015d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pthread_kill.s b/libc/sysv/consts/__NR_pthread_kill.s index ea1ad8461..5caf198b0 100644 --- a/libc/sysv/consts/__NR_pthread_kill.s +++ b/libc/sysv/consts/__NR_pthread_kill.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pthread_kill -1 0x2000148 -1 -1 -1 +.syscon nr __NR_pthread_kill -1 0x2000148 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pthread_markcancel.s b/libc/sysv/consts/__NR_pthread_markcancel.s index 92311d9f1..a0e10546f 100644 --- a/libc/sysv/consts/__NR_pthread_markcancel.s +++ b/libc/sysv/consts/__NR_pthread_markcancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pthread_markcancel -1 0x200014c -1 -1 -1 +.syscon nr __NR_pthread_markcancel -1 0x200014c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pthread_sigmask.s b/libc/sysv/consts/__NR_pthread_sigmask.s index 487b29e39..2f7d61145 100644 --- a/libc/sysv/consts/__NR_pthread_sigmask.s +++ b/libc/sysv/consts/__NR_pthread_sigmask.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pthread_sigmask -1 0x2000149 -1 -1 -1 +.syscon nr __NR_pthread_sigmask -1 0x2000149 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ptrace.s b/libc/sysv/consts/__NR_ptrace.s index 8fecb4946..3e872a706 100644 --- a/libc/sysv/consts/__NR_ptrace.s +++ b/libc/sysv/consts/__NR_ptrace.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ptrace 0x0065 0x200001a 0x001a 0x001a -1 +.syscon nr __NR_ptrace 0x0065 0x200001a 0x001a 0x001a 0x01a -1 diff --git a/libc/sysv/consts/__NR_pwrite.s b/libc/sysv/consts/__NR_pwrite.s index 514e2aad0..feedd1696 100644 --- a/libc/sysv/consts/__NR_pwrite.s +++ b/libc/sysv/consts/__NR_pwrite.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pwrite 0x0012 0x200009a 0x01dc 0x00ae -1 +.syscon nr __NR_pwrite 0x0012 0x200009a 0x01dc 0x00ae 0x0ae -1 diff --git a/libc/sysv/consts/__NR_pwrite_nocancel.s b/libc/sysv/consts/__NR_pwrite_nocancel.s index 48dde7e61..3eedbe7be 100644 --- a/libc/sysv/consts/__NR_pwrite_nocancel.s +++ b/libc/sysv/consts/__NR_pwrite_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pwrite_nocancel -1 0x200019f -1 -1 -1 +.syscon nr __NR_pwrite_nocancel -1 0x200019f -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_pwritev.s b/libc/sysv/consts/__NR_pwritev.s index 177f564aa..57640f66b 100644 --- a/libc/sysv/consts/__NR_pwritev.s +++ b/libc/sysv/consts/__NR_pwritev.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pwritev 0x0128 -1 0x0122 0x010c -1 +.syscon nr __NR_pwritev 0x0128 -1 0x0122 0x010c 0x122 -1 diff --git a/libc/sysv/consts/__NR_pwritev2.s b/libc/sysv/consts/__NR_pwritev2.s index 2c58e3377..c9b2a39eb 100644 --- a/libc/sysv/consts/__NR_pwritev2.s +++ b/libc/sysv/consts/__NR_pwritev2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_pwritev2 0x0148 -1 -1 -1 -1 +.syscon nr __NR_pwritev2 0x0148 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_quota.s b/libc/sysv/consts/__NR_quota.s index cef980426..93be41bd1 100644 --- a/libc/sysv/consts/__NR_quota.s +++ b/libc/sysv/consts/__NR_quota.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_quota -1 -1 0x0095 -1 -1 +.syscon nr __NR_quota -1 -1 0x0095 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_quotactl.s b/libc/sysv/consts/__NR_quotactl.s index 06743bf2f..4f039a9a1 100644 --- a/libc/sysv/consts/__NR_quotactl.s +++ b/libc/sysv/consts/__NR_quotactl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_quotactl 0x00b3 0x20000a5 0x0094 0x0094 -1 +.syscon nr __NR_quotactl 0x00b3 0x20000a5 0x0094 0x0094 -1 -1 diff --git a/libc/sysv/consts/__NR_rctl_add_rule.s b/libc/sysv/consts/__NR_rctl_add_rule.s index 456058b7d..3c5bdbc89 100644 --- a/libc/sysv/consts/__NR_rctl_add_rule.s +++ b/libc/sysv/consts/__NR_rctl_add_rule.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rctl_add_rule -1 -1 0x0210 -1 -1 +.syscon nr __NR_rctl_add_rule -1 -1 0x0210 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rctl_get_limits.s b/libc/sysv/consts/__NR_rctl_get_limits.s index 3ee6f3434..f82a90497 100644 --- a/libc/sysv/consts/__NR_rctl_get_limits.s +++ b/libc/sysv/consts/__NR_rctl_get_limits.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rctl_get_limits -1 -1 0x020f -1 -1 +.syscon nr __NR_rctl_get_limits -1 -1 0x020f -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rctl_get_racct.s b/libc/sysv/consts/__NR_rctl_get_racct.s index d60d67904..f3f10bb1f 100644 --- a/libc/sysv/consts/__NR_rctl_get_racct.s +++ b/libc/sysv/consts/__NR_rctl_get_racct.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rctl_get_racct -1 -1 0x020d -1 -1 +.syscon nr __NR_rctl_get_racct -1 -1 0x020d -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rctl_get_rules.s b/libc/sysv/consts/__NR_rctl_get_rules.s index ae81eaea0..2b277a70b 100644 --- a/libc/sysv/consts/__NR_rctl_get_rules.s +++ b/libc/sysv/consts/__NR_rctl_get_rules.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rctl_get_rules -1 -1 0x020e -1 -1 +.syscon nr __NR_rctl_get_rules -1 -1 0x020e -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rctl_remove_rule.s b/libc/sysv/consts/__NR_rctl_remove_rule.s index 4b3ee3a73..db166fffb 100644 --- a/libc/sysv/consts/__NR_rctl_remove_rule.s +++ b/libc/sysv/consts/__NR_rctl_remove_rule.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rctl_remove_rule -1 -1 0x0211 -1 -1 +.syscon nr __NR_rctl_remove_rule -1 -1 0x0211 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_read.s b/libc/sysv/consts/__NR_read.s index aeae1cd36..3a3d17418 100644 --- a/libc/sysv/consts/__NR_read.s +++ b/libc/sysv/consts/__NR_read.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_read 0x0000 0x2000003 0x0003 0x0003 -1 +.syscon nr __NR_read 0x0000 0x2000003 0x0003 0x0003 0x003 -1 diff --git a/libc/sysv/consts/__NR_read_nocancel.s b/libc/sysv/consts/__NR_read_nocancel.s index 631186a64..7b7d8ac18 100644 --- a/libc/sysv/consts/__NR_read_nocancel.s +++ b/libc/sysv/consts/__NR_read_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_read_nocancel -1 0x200018c -1 -1 -1 +.syscon nr __NR_read_nocancel -1 0x200018c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_readahead.s b/libc/sysv/consts/__NR_readahead.s index aa8957aaa..95b00b3d8 100644 --- a/libc/sysv/consts/__NR_readahead.s +++ b/libc/sysv/consts/__NR_readahead.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_readahead 0x00bb -1 -1 -1 -1 +.syscon nr __NR_readahead 0x00bb -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_readlink.s b/libc/sysv/consts/__NR_readlink.s index 3beeb4c27..1c4ed7a0b 100644 --- a/libc/sysv/consts/__NR_readlink.s +++ b/libc/sysv/consts/__NR_readlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_readlink 0x0059 0x200003a 0x003a 0x003a -1 +.syscon nr __NR_readlink 0x0059 0x200003a 0x003a 0x003a 0x03a -1 diff --git a/libc/sysv/consts/__NR_readlinkat.s b/libc/sysv/consts/__NR_readlinkat.s index b27a3f512..2b60dd813 100644 --- a/libc/sysv/consts/__NR_readlinkat.s +++ b/libc/sysv/consts/__NR_readlinkat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_readlinkat 0x010b 0x20001d9 0x01f4 0x0142 -1 +.syscon nr __NR_readlinkat 0x010b 0x20001d9 0x01f4 0x0142 0x1d5 -1 diff --git a/libc/sysv/consts/__NR_readv.s b/libc/sysv/consts/__NR_readv.s index bf59c2c6e..8b5c5e061 100644 --- a/libc/sysv/consts/__NR_readv.s +++ b/libc/sysv/consts/__NR_readv.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_readv 0x0013 0x2000078 0x0078 0x0078 -1 +.syscon nr __NR_readv 0x0013 0x2000078 0x0078 0x0078 0x078 -1 diff --git a/libc/sysv/consts/__NR_readv_nocancel.s b/libc/sysv/consts/__NR_readv_nocancel.s index 794468701..f92101a96 100644 --- a/libc/sysv/consts/__NR_readv_nocancel.s +++ b/libc/sysv/consts/__NR_readv_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_readv_nocancel -1 0x200019b -1 -1 -1 +.syscon nr __NR_readv_nocancel -1 0x200019b -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_reboot.s b/libc/sysv/consts/__NR_reboot.s index 162a56546..786ad2e33 100644 --- a/libc/sysv/consts/__NR_reboot.s +++ b/libc/sysv/consts/__NR_reboot.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_reboot 0x00a9 0x2000037 0x0037 0x0037 -1 +.syscon nr __NR_reboot 0x00a9 0x2000037 0x0037 0x0037 0x0d0 -1 diff --git a/libc/sysv/consts/__NR_recv.s b/libc/sysv/consts/__NR_recv.s index 23f2945c7..58caa41e1 100644 --- a/libc/sysv/consts/__NR_recv.s +++ b/libc/sysv/consts/__NR_recv.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_recv -1 -1 0x0066 -1 -1 +.syscon nr __NR_recv -1 -1 0x0066 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_recvfrom.s b/libc/sysv/consts/__NR_recvfrom.s index 7a33aac18..50f2b4bac 100644 --- a/libc/sysv/consts/__NR_recvfrom.s +++ b/libc/sysv/consts/__NR_recvfrom.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_recvfrom 0x002d 0x200001d 0x001d 0x001d -1 +.syscon nr __NR_recvfrom 0x002d 0x200001d 0x001d 0x001d 0x01d -1 diff --git a/libc/sysv/consts/__NR_recvfrom_nocancel.s b/libc/sysv/consts/__NR_recvfrom_nocancel.s index 171dc6d30..6d7ebcee7 100644 --- a/libc/sysv/consts/__NR_recvfrom_nocancel.s +++ b/libc/sysv/consts/__NR_recvfrom_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_recvfrom_nocancel -1 0x2000193 -1 -1 -1 +.syscon nr __NR_recvfrom_nocancel -1 0x2000193 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_recvmmsg.s b/libc/sysv/consts/__NR_recvmmsg.s index e105aa3e0..37c019254 100644 --- a/libc/sysv/consts/__NR_recvmmsg.s +++ b/libc/sysv/consts/__NR_recvmmsg.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_recvmmsg 0x012b -1 -1 -1 -1 +.syscon nr __NR_recvmmsg 0x012b -1 -1 -1 0x1db -1 diff --git a/libc/sysv/consts/__NR_recvmsg.s b/libc/sysv/consts/__NR_recvmsg.s index e874c0782..c6bb37de6 100644 --- a/libc/sysv/consts/__NR_recvmsg.s +++ b/libc/sysv/consts/__NR_recvmsg.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_recvmsg 0x002f 0x200001b 0x001b 0x001b -1 +.syscon nr __NR_recvmsg 0x002f 0x200001b 0x001b 0x001b 0x01b -1 diff --git a/libc/sysv/consts/__NR_recvmsg_nocancel.s b/libc/sysv/consts/__NR_recvmsg_nocancel.s index e4d2ff4ec..f2744c4ee 100644 --- a/libc/sysv/consts/__NR_recvmsg_nocancel.s +++ b/libc/sysv/consts/__NR_recvmsg_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_recvmsg_nocancel -1 0x2000191 -1 -1 -1 +.syscon nr __NR_recvmsg_nocancel -1 0x2000191 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_recvmsg_x.s b/libc/sysv/consts/__NR_recvmsg_x.s index 476d206f1..5988f76db 100644 --- a/libc/sysv/consts/__NR_recvmsg_x.s +++ b/libc/sysv/consts/__NR_recvmsg_x.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_recvmsg_x -1 0x20001e0 -1 -1 -1 +.syscon nr __NR_recvmsg_x -1 0x20001e0 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_removexattr.s b/libc/sysv/consts/__NR_removexattr.s index c163a6ac9..8f441b8ba 100644 --- a/libc/sysv/consts/__NR_removexattr.s +++ b/libc/sysv/consts/__NR_removexattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_removexattr 0x00c5 0x20000ee -1 -1 -1 +.syscon nr __NR_removexattr 0x00c5 0x20000ee -1 -1 0x180 -1 diff --git a/libc/sysv/consts/__NR_rename.s b/libc/sysv/consts/__NR_rename.s index bbcf6369d..819bce486 100644 --- a/libc/sysv/consts/__NR_rename.s +++ b/libc/sysv/consts/__NR_rename.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rename 0x0052 0x2000080 0x0080 0x0080 -1 +.syscon nr __NR_rename 0x0052 0x2000080 0x0080 0x0080 0x080 -1 diff --git a/libc/sysv/consts/__NR_renameat.s b/libc/sysv/consts/__NR_renameat.s index a3efcb527..0c87f0989 100644 --- a/libc/sysv/consts/__NR_renameat.s +++ b/libc/sysv/consts/__NR_renameat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_renameat 0x0108 0x20001d1 0x01f5 0x0143 -1 +.syscon nr __NR_renameat 0x0108 0x20001d1 0x01f5 0x0143 0x1ca -1 diff --git a/libc/sysv/consts/__NR_renameat2.s b/libc/sysv/consts/__NR_renameat2.s index dc8983abd..51fa84660 100644 --- a/libc/sysv/consts/__NR_renameat2.s +++ b/libc/sysv/consts/__NR_renameat2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_renameat2 0x013c -1 -1 -1 -1 +.syscon nr __NR_renameat2 0x013c -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_renameatx_np.s b/libc/sysv/consts/__NR_renameatx_np.s index 6d60bb193..e7d2672ae 100644 --- a/libc/sysv/consts/__NR_renameatx_np.s +++ b/libc/sysv/consts/__NR_renameatx_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_renameatx_np -1 0x20001e8 -1 -1 -1 +.syscon nr __NR_renameatx_np -1 0x20001e8 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_request_key.s b/libc/sysv/consts/__NR_request_key.s index 534fde61e..a33bb0b54 100644 --- a/libc/sysv/consts/__NR_request_key.s +++ b/libc/sysv/consts/__NR_request_key.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_request_key 0x00f9 -1 -1 -1 -1 +.syscon nr __NR_request_key 0x00f9 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_restart_syscall.s b/libc/sysv/consts/__NR_restart_syscall.s index 12710b065..9cc7f2644 100644 --- a/libc/sysv/consts/__NR_restart_syscall.s +++ b/libc/sysv/consts/__NR_restart_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_restart_syscall 0x00db -1 -1 -1 -1 +.syscon nr __NR_restart_syscall 0x00db -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_revoke.s b/libc/sysv/consts/__NR_revoke.s index 0c7fe5484..55b13f976 100644 --- a/libc/sysv/consts/__NR_revoke.s +++ b/libc/sysv/consts/__NR_revoke.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_revoke -1 0x2000038 0x0038 0x0038 -1 +.syscon nr __NR_revoke -1 0x2000038 0x0038 0x0038 0x038 -1 diff --git a/libc/sysv/consts/__NR_rfork.s b/libc/sysv/consts/__NR_rfork.s index 265ed0ec9..803269226 100644 --- a/libc/sysv/consts/__NR_rfork.s +++ b/libc/sysv/consts/__NR_rfork.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rfork -1 -1 0x00fb -1 -1 +.syscon nr __NR_rfork -1 -1 0x00fb -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rmdir.s b/libc/sysv/consts/__NR_rmdir.s index 6b298d391..a180f968a 100644 --- a/libc/sysv/consts/__NR_rmdir.s +++ b/libc/sysv/consts/__NR_rmdir.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rmdir 0x0054 0x2000089 0x0089 0x0089 -1 +.syscon nr __NR_rmdir 0x0054 0x2000089 0x0089 0x0089 0x089 -1 diff --git a/libc/sysv/consts/__NR_rseq.s b/libc/sysv/consts/__NR_rseq.s index 9750d15d7..9d867fc45 100644 --- a/libc/sysv/consts/__NR_rseq.s +++ b/libc/sysv/consts/__NR_rseq.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rseq 0x014e -1 -1 -1 -1 +.syscon nr __NR_rseq 0x014e -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rt_sigqueueinfo.s b/libc/sysv/consts/__NR_rt_sigqueueinfo.s index 5cf6f53b3..cc794cacc 100644 --- a/libc/sysv/consts/__NR_rt_sigqueueinfo.s +++ b/libc/sysv/consts/__NR_rt_sigqueueinfo.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rt_sigqueueinfo 0x0081 -1 -1 -1 -1 +.syscon nr __NR_rt_sigqueueinfo 0x0081 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rt_tgsigqueueinfo.s b/libc/sysv/consts/__NR_rt_tgsigqueueinfo.s index ffcedf1d7..acd368052 100644 --- a/libc/sysv/consts/__NR_rt_tgsigqueueinfo.s +++ b/libc/sysv/consts/__NR_rt_tgsigqueueinfo.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rt_tgsigqueueinfo 0x0129 -1 -1 -1 -1 +.syscon nr __NR_rt_tgsigqueueinfo 0x0129 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rtprio.s b/libc/sysv/consts/__NR_rtprio.s index b510b7f36..8989cdf29 100644 --- a/libc/sysv/consts/__NR_rtprio.s +++ b/libc/sysv/consts/__NR_rtprio.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rtprio -1 -1 0x00a6 -1 -1 +.syscon nr __NR_rtprio -1 -1 0x00a6 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_rtprio_thread.s b/libc/sysv/consts/__NR_rtprio_thread.s index e9238751d..8ce5fe363 100644 --- a/libc/sysv/consts/__NR_rtprio_thread.s +++ b/libc/sysv/consts/__NR_rtprio_thread.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_rtprio_thread -1 -1 0x01d2 -1 -1 +.syscon nr __NR_rtprio_thread -1 -1 0x01d2 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_get_priority_max.s b/libc/sysv/consts/__NR_sched_get_priority_max.s index 82849324b..c5eaeeeea 100644 --- a/libc/sysv/consts/__NR_sched_get_priority_max.s +++ b/libc/sysv/consts/__NR_sched_get_priority_max.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_get_priority_max 0x0092 -1 0x014c -1 -1 +.syscon nr __NR_sched_get_priority_max 0x0092 -1 0x014c -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_get_priority_min.s b/libc/sysv/consts/__NR_sched_get_priority_min.s index 213dc8f27..3e2c892f4 100644 --- a/libc/sysv/consts/__NR_sched_get_priority_min.s +++ b/libc/sysv/consts/__NR_sched_get_priority_min.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_get_priority_min 0x0093 -1 0x014d -1 -1 +.syscon nr __NR_sched_get_priority_min 0x0093 -1 0x014d -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_getaffinity.s b/libc/sysv/consts/__NR_sched_getaffinity.s index ac41dedd7..24c317ec6 100644 --- a/libc/sysv/consts/__NR_sched_getaffinity.s +++ b/libc/sysv/consts/__NR_sched_getaffinity.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_getaffinity 0x00cc -1 -1 -1 -1 +.syscon nr __NR_sched_getaffinity 0x00cc -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_getattr.s b/libc/sysv/consts/__NR_sched_getattr.s index e7b40b859..de04f9d45 100644 --- a/libc/sysv/consts/__NR_sched_getattr.s +++ b/libc/sysv/consts/__NR_sched_getattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_getattr 0x013b -1 -1 -1 -1 +.syscon nr __NR_sched_getattr 0x013b -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_getparam.s b/libc/sysv/consts/__NR_sched_getparam.s index d871e4b93..47bbfa0b8 100644 --- a/libc/sysv/consts/__NR_sched_getparam.s +++ b/libc/sysv/consts/__NR_sched_getparam.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_getparam 0x008f -1 0x0148 -1 -1 +.syscon nr __NR_sched_getparam 0x008f -1 0x0148 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_getscheduler.s b/libc/sysv/consts/__NR_sched_getscheduler.s index 64202667c..e4b0deb21 100644 --- a/libc/sysv/consts/__NR_sched_getscheduler.s +++ b/libc/sysv/consts/__NR_sched_getscheduler.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_getscheduler 0x0091 -1 0x014a -1 -1 +.syscon nr __NR_sched_getscheduler 0x0091 -1 0x014a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_rr_get_interval.s b/libc/sysv/consts/__NR_sched_rr_get_interval.s index 0dd927d03..db5be84f7 100644 --- a/libc/sysv/consts/__NR_sched_rr_get_interval.s +++ b/libc/sysv/consts/__NR_sched_rr_get_interval.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_rr_get_interval 0x0094 -1 0x014e -1 -1 +.syscon nr __NR_sched_rr_get_interval 0x0094 -1 0x014e -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_setaffinity.s b/libc/sysv/consts/__NR_sched_setaffinity.s index d69ee0129..c8e2911a2 100644 --- a/libc/sysv/consts/__NR_sched_setaffinity.s +++ b/libc/sysv/consts/__NR_sched_setaffinity.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_setaffinity 0x00cb -1 -1 -1 -1 +.syscon nr __NR_sched_setaffinity 0x00cb -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_setattr.s b/libc/sysv/consts/__NR_sched_setattr.s index bc22ad2ee..0a5caad5e 100644 --- a/libc/sysv/consts/__NR_sched_setattr.s +++ b/libc/sysv/consts/__NR_sched_setattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_setattr 0x013a -1 -1 -1 -1 +.syscon nr __NR_sched_setattr 0x013a -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_setparam.s b/libc/sysv/consts/__NR_sched_setparam.s index e74e870c5..36706ab56 100644 --- a/libc/sysv/consts/__NR_sched_setparam.s +++ b/libc/sysv/consts/__NR_sched_setparam.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_setparam 0x008e -1 0x0147 -1 -1 +.syscon nr __NR_sched_setparam 0x008e -1 0x0147 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_setscheduler.s b/libc/sysv/consts/__NR_sched_setscheduler.s index f473b92d3..de50a6c91 100644 --- a/libc/sysv/consts/__NR_sched_setscheduler.s +++ b/libc/sysv/consts/__NR_sched_setscheduler.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_setscheduler 0x0090 -1 0x0149 -1 -1 +.syscon nr __NR_sched_setscheduler 0x0090 -1 0x0149 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sched_yield.s b/libc/sysv/consts/__NR_sched_yield.s index 6b81834b8..b7387e6f6 100644 --- a/libc/sysv/consts/__NR_sched_yield.s +++ b/libc/sysv/consts/__NR_sched_yield.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sched_yield 0x0018 0x010003c 0x014b 0x012a -1 +.syscon nr __NR_sched_yield 0x0018 0x010003c 0x014b 0x012a 0x15e -1 diff --git a/libc/sysv/consts/__NR_sctp_generic_recvmsg.s b/libc/sysv/consts/__NR_sctp_generic_recvmsg.s index cc1f71ec0..ab1020a00 100644 --- a/libc/sysv/consts/__NR_sctp_generic_recvmsg.s +++ b/libc/sysv/consts/__NR_sctp_generic_recvmsg.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sctp_generic_recvmsg -1 -1 0x01da -1 -1 +.syscon nr __NR_sctp_generic_recvmsg -1 -1 0x01da -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sctp_generic_sendmsg.s b/libc/sysv/consts/__NR_sctp_generic_sendmsg.s index a531fc31e..e20a0718d 100644 --- a/libc/sysv/consts/__NR_sctp_generic_sendmsg.s +++ b/libc/sysv/consts/__NR_sctp_generic_sendmsg.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sctp_generic_sendmsg -1 -1 0x01d8 -1 -1 +.syscon nr __NR_sctp_generic_sendmsg -1 -1 0x01d8 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sctp_generic_sendmsg_iov.s b/libc/sysv/consts/__NR_sctp_generic_sendmsg_iov.s index 7f54df385..0e782759b 100644 --- a/libc/sysv/consts/__NR_sctp_generic_sendmsg_iov.s +++ b/libc/sysv/consts/__NR_sctp_generic_sendmsg_iov.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sctp_generic_sendmsg_iov -1 -1 0x01d9 -1 -1 +.syscon nr __NR_sctp_generic_sendmsg_iov -1 -1 0x01d9 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sctp_peeloff.s b/libc/sysv/consts/__NR_sctp_peeloff.s index 112056186..3ffe0426c 100644 --- a/libc/sysv/consts/__NR_sctp_peeloff.s +++ b/libc/sysv/consts/__NR_sctp_peeloff.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sctp_peeloff -1 -1 0x01d7 -1 -1 +.syscon nr __NR_sctp_peeloff -1 -1 0x01d7 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_searchfs.s b/libc/sysv/consts/__NR_searchfs.s index 5fbcf8919..872a1476d 100644 --- a/libc/sysv/consts/__NR_searchfs.s +++ b/libc/sysv/consts/__NR_searchfs.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_searchfs -1 0x20000e1 -1 -1 -1 +.syscon nr __NR_searchfs -1 0x20000e1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_seccomp.s b/libc/sysv/consts/__NR_seccomp.s index 0cc51a76c..25408c6c8 100644 --- a/libc/sysv/consts/__NR_seccomp.s +++ b/libc/sysv/consts/__NR_seccomp.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_seccomp 0x013d -1 -1 -1 -1 +.syscon nr __NR_seccomp 0x013d -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_select.s b/libc/sysv/consts/__NR_select.s index 96addc252..75e2b7a93 100644 --- a/libc/sysv/consts/__NR_select.s +++ b/libc/sysv/consts/__NR_select.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_select 0x0017 0x200005d 0x005d 0x0047 -1 +.syscon nr __NR_select 0x0017 0x200005d 0x005d 0x0047 0x1a1 -1 diff --git a/libc/sysv/consts/__NR_select_nocancel.s b/libc/sysv/consts/__NR_select_nocancel.s index a4de51b57..c9c1fd37f 100644 --- a/libc/sysv/consts/__NR_select_nocancel.s +++ b/libc/sysv/consts/__NR_select_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_select_nocancel -1 0x2000197 -1 -1 -1 +.syscon nr __NR_select_nocancel -1 0x2000197 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sem_close.s b/libc/sysv/consts/__NR_sem_close.s index 6af52c03f..6596ae0ef 100644 --- a/libc/sysv/consts/__NR_sem_close.s +++ b/libc/sysv/consts/__NR_sem_close.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sem_close -1 0x200010d -1 -1 -1 +.syscon nr __NR_sem_close -1 0x200010d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sem_open.s b/libc/sysv/consts/__NR_sem_open.s index 9ad61c17d..64f8d31f9 100644 --- a/libc/sysv/consts/__NR_sem_open.s +++ b/libc/sysv/consts/__NR_sem_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sem_open -1 0x200010c -1 -1 -1 +.syscon nr __NR_sem_open -1 0x200010c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sem_post.s b/libc/sysv/consts/__NR_sem_post.s index fbf5bea71..83978b68f 100644 --- a/libc/sysv/consts/__NR_sem_post.s +++ b/libc/sysv/consts/__NR_sem_post.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sem_post -1 0x2000111 -1 -1 -1 +.syscon nr __NR_sem_post -1 0x2000111 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sem_trywait.s b/libc/sysv/consts/__NR_sem_trywait.s index 10f394b19..a7f0b0b95 100644 --- a/libc/sysv/consts/__NR_sem_trywait.s +++ b/libc/sysv/consts/__NR_sem_trywait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sem_trywait -1 0x2000110 -1 -1 -1 +.syscon nr __NR_sem_trywait -1 0x2000110 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sem_unlink.s b/libc/sysv/consts/__NR_sem_unlink.s index 8fae6d6fd..7bbae2103 100644 --- a/libc/sysv/consts/__NR_sem_unlink.s +++ b/libc/sysv/consts/__NR_sem_unlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sem_unlink -1 0x200010e -1 -1 -1 +.syscon nr __NR_sem_unlink -1 0x200010e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sem_wait.s b/libc/sysv/consts/__NR_sem_wait.s index 088f93bab..a0c45d87a 100644 --- a/libc/sysv/consts/__NR_sem_wait.s +++ b/libc/sysv/consts/__NR_sem_wait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sem_wait -1 0x200010f -1 -1 -1 +.syscon nr __NR_sem_wait -1 0x200010f -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sem_wait_nocancel.s b/libc/sysv/consts/__NR_sem_wait_nocancel.s index 3205bcae1..e9b07643e 100644 --- a/libc/sysv/consts/__NR_sem_wait_nocancel.s +++ b/libc/sysv/consts/__NR_sem_wait_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sem_wait_nocancel -1 0x20001a4 -1 -1 -1 +.syscon nr __NR_sem_wait_nocancel -1 0x20001a4 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_semctl.s b/libc/sysv/consts/__NR_semctl.s index f82dc0622..3e879808a 100644 --- a/libc/sysv/consts/__NR_semctl.s +++ b/libc/sysv/consts/__NR_semctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_semctl 0x0042 0x20000fe 0x01fe 0x0127 -1 +.syscon nr __NR_semctl 0x0042 0x20000fe 0x01fe 0x0127 -1 -1 diff --git a/libc/sysv/consts/__NR_semget.s b/libc/sysv/consts/__NR_semget.s index a43098dbd..7212747de 100644 --- a/libc/sysv/consts/__NR_semget.s +++ b/libc/sysv/consts/__NR_semget.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_semget 0x0040 0x20000ff 0x00dd 0x00dd -1 +.syscon nr __NR_semget 0x0040 0x20000ff 0x00dd 0x00dd 0x0dd -1 diff --git a/libc/sysv/consts/__NR_semop.s b/libc/sysv/consts/__NR_semop.s index c5991f126..ac2bed0b1 100644 --- a/libc/sysv/consts/__NR_semop.s +++ b/libc/sysv/consts/__NR_semop.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_semop 0x0041 0x2000100 0x00de 0x0122 -1 +.syscon nr __NR_semop 0x0041 0x2000100 0x00de 0x0122 0x0de -1 diff --git a/libc/sysv/consts/__NR_semsys.s b/libc/sysv/consts/__NR_semsys.s index f9f9d4a49..85afc3ede 100644 --- a/libc/sysv/consts/__NR_semsys.s +++ b/libc/sysv/consts/__NR_semsys.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_semsys -1 0x20000fb 0x00a9 -1 -1 +.syscon nr __NR_semsys -1 0x20000fb 0x00a9 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_semtimedop.s b/libc/sysv/consts/__NR_semtimedop.s index 9e9a0af19..ec48a53d6 100644 --- a/libc/sysv/consts/__NR_semtimedop.s +++ b/libc/sysv/consts/__NR_semtimedop.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_semtimedop 0x00dc -1 -1 -1 -1 +.syscon nr __NR_semtimedop 0x00dc -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_semwait_signal.s b/libc/sysv/consts/__NR_semwait_signal.s index bd63c1ad7..91df13b95 100644 --- a/libc/sysv/consts/__NR_semwait_signal.s +++ b/libc/sysv/consts/__NR_semwait_signal.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_semwait_signal -1 0x200014e -1 -1 -1 +.syscon nr __NR_semwait_signal -1 0x200014e -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_semwait_signal_nocancel.s b/libc/sysv/consts/__NR_semwait_signal_nocancel.s index 535654c46..56e842e43 100644 --- a/libc/sysv/consts/__NR_semwait_signal_nocancel.s +++ b/libc/sysv/consts/__NR_semwait_signal_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_semwait_signal_nocancel -1 0x20001a7 -1 -1 -1 +.syscon nr __NR_semwait_signal_nocancel -1 0x20001a7 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_send.s b/libc/sysv/consts/__NR_send.s index 362590fce..b28a204b3 100644 --- a/libc/sysv/consts/__NR_send.s +++ b/libc/sysv/consts/__NR_send.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_send -1 -1 0x0065 -1 -1 +.syscon nr __NR_send -1 -1 0x0065 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sendfile.s b/libc/sysv/consts/__NR_sendfile.s index 39c219499..bb4815847 100644 --- a/libc/sysv/consts/__NR_sendfile.s +++ b/libc/sysv/consts/__NR_sendfile.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendfile 0x0028 0x2000151 0x0189 -1 -1 +.syscon nr __NR_sendfile 0x0028 0x2000151 0x0189 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sendmmsg.s b/libc/sysv/consts/__NR_sendmmsg.s index 2acd021f3..e876433dc 100644 --- a/libc/sysv/consts/__NR_sendmmsg.s +++ b/libc/sysv/consts/__NR_sendmmsg.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendmmsg 0x0133 -1 -1 -1 -1 +.syscon nr __NR_sendmmsg 0x0133 -1 -1 -1 0x1dc -1 diff --git a/libc/sysv/consts/__NR_sendmsg.s b/libc/sysv/consts/__NR_sendmsg.s index 38812d716..731a27f53 100644 --- a/libc/sysv/consts/__NR_sendmsg.s +++ b/libc/sysv/consts/__NR_sendmsg.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendmsg 0x002e 0x200001c 0x001c 0x001c -1 +.syscon nr __NR_sendmsg 0x002e 0x200001c 0x001c 0x001c 0x01c -1 diff --git a/libc/sysv/consts/__NR_sendmsg_nocancel.s b/libc/sysv/consts/__NR_sendmsg_nocancel.s index 28ef97e91..e826bf08d 100644 --- a/libc/sysv/consts/__NR_sendmsg_nocancel.s +++ b/libc/sysv/consts/__NR_sendmsg_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendmsg_nocancel -1 0x2000192 -1 -1 -1 +.syscon nr __NR_sendmsg_nocancel -1 0x2000192 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sendmsg_x.s b/libc/sysv/consts/__NR_sendmsg_x.s index 5f587887d..efed60ab6 100644 --- a/libc/sysv/consts/__NR_sendmsg_x.s +++ b/libc/sysv/consts/__NR_sendmsg_x.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendmsg_x -1 0x20001e1 -1 -1 -1 +.syscon nr __NR_sendmsg_x -1 0x20001e1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sendsyslog.s b/libc/sysv/consts/__NR_sendsyslog.s index 1639fa3c8..7001e8c3a 100644 --- a/libc/sysv/consts/__NR_sendsyslog.s +++ b/libc/sysv/consts/__NR_sendsyslog.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendsyslog -1 -1 -1 0x0070 -1 +.syscon nr __NR_sendsyslog -1 -1 -1 0x0070 -1 -1 diff --git a/libc/sysv/consts/__NR_sendto.s b/libc/sysv/consts/__NR_sendto.s index cb1d345a6..eb7f35f0a 100644 --- a/libc/sysv/consts/__NR_sendto.s +++ b/libc/sysv/consts/__NR_sendto.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendto 0x002c 0x2000085 0x0085 0x0085 -1 +.syscon nr __NR_sendto 0x002c 0x2000085 0x0085 0x0085 0x085 -1 diff --git a/libc/sysv/consts/__NR_sendto_nocancel.s b/libc/sysv/consts/__NR_sendto_nocancel.s index 8189e10b1..11bca55f8 100644 --- a/libc/sysv/consts/__NR_sendto_nocancel.s +++ b/libc/sysv/consts/__NR_sendto_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sendto_nocancel -1 0x200019d -1 -1 -1 +.syscon nr __NR_sendto_nocancel -1 0x200019d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_set_mempolicy.s b/libc/sysv/consts/__NR_set_mempolicy.s index f59973b8e..04e6e5305 100644 --- a/libc/sysv/consts/__NR_set_mempolicy.s +++ b/libc/sysv/consts/__NR_set_mempolicy.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_set_mempolicy 0x00ee -1 -1 -1 -1 +.syscon nr __NR_set_mempolicy 0x00ee -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_set_robust_list.s b/libc/sysv/consts/__NR_set_robust_list.s index d11377116..00f2c7549 100644 --- a/libc/sysv/consts/__NR_set_robust_list.s +++ b/libc/sysv/consts/__NR_set_robust_list.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_set_robust_list 0x0111 -1 -1 -1 -1 +.syscon nr __NR_set_robust_list 0x0111 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_set_tcb.s b/libc/sysv/consts/__NR_set_tcb.s index dc0ef759d..d4e0cc2b3 100644 --- a/libc/sysv/consts/__NR_set_tcb.s +++ b/libc/sysv/consts/__NR_set_tcb.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_set_tcb -1 -1 -1 0x0149 -1 +.syscon nr __NR_set_tcb -1 -1 -1 0x0149 -1 -1 diff --git a/libc/sysv/consts/__NR_set_tid_address.s b/libc/sysv/consts/__NR_set_tid_address.s index a3fee495f..4b990632c 100644 --- a/libc/sysv/consts/__NR_set_tid_address.s +++ b/libc/sysv/consts/__NR_set_tid_address.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_set_tid_address 0x00da -1 -1 -1 -1 +.syscon nr __NR_set_tid_address 0x00da -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setattrlist.s b/libc/sysv/consts/__NR_setattrlist.s index 65476846b..3fbdee31f 100644 --- a/libc/sysv/consts/__NR_setattrlist.s +++ b/libc/sysv/consts/__NR_setattrlist.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setattrlist -1 0x20000dd -1 -1 -1 +.syscon nr __NR_setattrlist -1 0x20000dd -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setattrlistat.s b/libc/sysv/consts/__NR_setattrlistat.s index 11832c2cb..81002ced8 100644 --- a/libc/sysv/consts/__NR_setattrlistat.s +++ b/libc/sysv/consts/__NR_setattrlistat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setattrlistat -1 0x200020c -1 -1 -1 +.syscon nr __NR_setattrlistat -1 0x200020c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setaudit.s b/libc/sysv/consts/__NR_setaudit.s index 58a683561..f7f5ea1e9 100644 --- a/libc/sysv/consts/__NR_setaudit.s +++ b/libc/sysv/consts/__NR_setaudit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setaudit -1 -1 0x01c2 -1 -1 +.syscon nr __NR_setaudit -1 -1 0x01c2 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setaudit_addr.s b/libc/sysv/consts/__NR_setaudit_addr.s index 03965cbdb..1d5c267c9 100644 --- a/libc/sysv/consts/__NR_setaudit_addr.s +++ b/libc/sysv/consts/__NR_setaudit_addr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setaudit_addr -1 0x2000166 0x01c4 -1 -1 +.syscon nr __NR_setaudit_addr -1 0x2000166 0x01c4 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setauid.s b/libc/sysv/consts/__NR_setauid.s index e6c1977d6..e976f401b 100644 --- a/libc/sysv/consts/__NR_setauid.s +++ b/libc/sysv/consts/__NR_setauid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setauid -1 0x2000162 0x01c0 -1 -1 +.syscon nr __NR_setauid -1 0x2000162 0x01c0 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setcontext.s b/libc/sysv/consts/__NR_setcontext.s index 480fadf0a..c4de7edab 100644 --- a/libc/sysv/consts/__NR_setcontext.s +++ b/libc/sysv/consts/__NR_setcontext.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setcontext -1 -1 0x01a6 -1 -1 +.syscon nr __NR_setcontext -1 -1 0x01a6 -1 0x134 -1 diff --git a/libc/sysv/consts/__NR_setdomainname.s b/libc/sysv/consts/__NR_setdomainname.s index 0b382a2e6..44310af04 100644 --- a/libc/sysv/consts/__NR_setdomainname.s +++ b/libc/sysv/consts/__NR_setdomainname.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setdomainname 0x00ab -1 0x00a3 -1 -1 +.syscon nr __NR_setdomainname 0x00ab -1 0x00a3 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setegid.s b/libc/sysv/consts/__NR_setegid.s index 97f98e2d7..a5a9f71b0 100644 --- a/libc/sysv/consts/__NR_setegid.s +++ b/libc/sysv/consts/__NR_setegid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setegid -1 0x20000b6 0x00b6 0x00b6 -1 +.syscon nr __NR_setegid -1 0x20000b6 0x00b6 0x00b6 -1 -1 diff --git a/libc/sysv/consts/__NR_seteuid.s b/libc/sysv/consts/__NR_seteuid.s index 27850b5ae..42046fcb0 100644 --- a/libc/sysv/consts/__NR_seteuid.s +++ b/libc/sysv/consts/__NR_seteuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_seteuid -1 0x20000b7 0x00b7 0x00b7 -1 +.syscon nr __NR_seteuid -1 0x20000b7 0x00b7 0x00b7 -1 -1 diff --git a/libc/sysv/consts/__NR_setfib.s b/libc/sysv/consts/__NR_setfib.s index 02dc303d0..515000258 100644 --- a/libc/sysv/consts/__NR_setfib.s +++ b/libc/sysv/consts/__NR_setfib.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setfib -1 -1 0x00af -1 -1 +.syscon nr __NR_setfib -1 -1 0x00af -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setfsgid.s b/libc/sysv/consts/__NR_setfsgid.s index 3b9da89bf..0863c83cf 100644 --- a/libc/sysv/consts/__NR_setfsgid.s +++ b/libc/sysv/consts/__NR_setfsgid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setfsgid 0x007b -1 -1 -1 -1 +.syscon nr __NR_setfsgid 0x007b -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setfsuid.s b/libc/sysv/consts/__NR_setfsuid.s index cd1cae464..86d97dd1d 100644 --- a/libc/sysv/consts/__NR_setfsuid.s +++ b/libc/sysv/consts/__NR_setfsuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setfsuid 0x007a -1 -1 -1 -1 +.syscon nr __NR_setfsuid 0x007a -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setgid.s b/libc/sysv/consts/__NR_setgid.s index 621863c08..5d82b14ca 100644 --- a/libc/sysv/consts/__NR_setgid.s +++ b/libc/sysv/consts/__NR_setgid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setgid 0x006a 0x20000b5 0x00b5 0x00b5 -1 +.syscon nr __NR_setgid 0x006a 0x20000b5 0x00b5 0x00b5 0x0b5 -1 diff --git a/libc/sysv/consts/__NR_setgroups.s b/libc/sysv/consts/__NR_setgroups.s index 8be364d0d..b40e6128e 100644 --- a/libc/sysv/consts/__NR_setgroups.s +++ b/libc/sysv/consts/__NR_setgroups.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setgroups 0x0074 0x2000050 0x0050 0x0050 -1 +.syscon nr __NR_setgroups 0x0074 0x2000050 0x0050 0x0050 0x050 -1 diff --git a/libc/sysv/consts/__NR_sethostid.s b/libc/sysv/consts/__NR_sethostid.s index 9f629ba88..334c56eb2 100644 --- a/libc/sysv/consts/__NR_sethostid.s +++ b/libc/sysv/consts/__NR_sethostid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sethostid -1 -1 0x008f -1 -1 +.syscon nr __NR_sethostid -1 -1 0x008f -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sethostname.s b/libc/sysv/consts/__NR_sethostname.s index 886878bf2..659ba3aa8 100644 --- a/libc/sysv/consts/__NR_sethostname.s +++ b/libc/sysv/consts/__NR_sethostname.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sethostname 0x00aa -1 0x0058 -1 -1 +.syscon nr __NR_sethostname 0x00aa -1 0x0058 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setitimer.s b/libc/sysv/consts/__NR_setitimer.s index 22c630f45..16712c050 100644 --- a/libc/sysv/consts/__NR_setitimer.s +++ b/libc/sysv/consts/__NR_setitimer.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setitimer 0x0026 0x2000053 0x0053 0x0045 -1 +.syscon nr __NR_setitimer 0x0026 0x2000053 0x0053 0x0045 0x1a9 -1 diff --git a/libc/sysv/consts/__NR_setlogin.s b/libc/sysv/consts/__NR_setlogin.s index 804d84063..14af2390a 100644 --- a/libc/sysv/consts/__NR_setlogin.s +++ b/libc/sysv/consts/__NR_setlogin.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setlogin -1 0x2000032 0x0032 0x0032 -1 +.syscon nr __NR_setlogin -1 0x2000032 0x0032 0x0032 -1 -1 diff --git a/libc/sysv/consts/__NR_setloginclass.s b/libc/sysv/consts/__NR_setloginclass.s index 6f133cff2..2ec0fd70b 100644 --- a/libc/sysv/consts/__NR_setloginclass.s +++ b/libc/sysv/consts/__NR_setloginclass.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setloginclass -1 -1 0x020c -1 -1 +.syscon nr __NR_setloginclass -1 -1 0x020c -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setns.s b/libc/sysv/consts/__NR_setns.s index 73afabba3..affbfb855 100644 --- a/libc/sysv/consts/__NR_setns.s +++ b/libc/sysv/consts/__NR_setns.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setns 0x0134 -1 -1 -1 -1 +.syscon nr __NR_setns 0x0134 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setpgid.s b/libc/sysv/consts/__NR_setpgid.s index 9bc3b885e..01119f206 100644 --- a/libc/sysv/consts/__NR_setpgid.s +++ b/libc/sysv/consts/__NR_setpgid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setpgid 0x006d 0x2000052 0x0052 0x0052 -1 +.syscon nr __NR_setpgid 0x006d 0x2000052 0x0052 0x0052 0x052 -1 diff --git a/libc/sysv/consts/__NR_setpriority.s b/libc/sysv/consts/__NR_setpriority.s index 88f15aae5..fa7896c46 100644 --- a/libc/sysv/consts/__NR_setpriority.s +++ b/libc/sysv/consts/__NR_setpriority.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setpriority 0x008d 0x2000060 0x0060 0x0060 -1 +.syscon nr __NR_setpriority 0x008d 0x2000060 0x0060 0x0060 0x060 -1 diff --git a/libc/sysv/consts/__NR_setprivexec.s b/libc/sysv/consts/__NR_setprivexec.s index a52743ba3..157ec9f35 100644 --- a/libc/sysv/consts/__NR_setprivexec.s +++ b/libc/sysv/consts/__NR_setprivexec.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setprivexec -1 0x2000098 -1 -1 -1 +.syscon nr __NR_setprivexec -1 0x2000098 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setregid.s b/libc/sysv/consts/__NR_setregid.s index cd7ccf607..6efc530e1 100644 --- a/libc/sysv/consts/__NR_setregid.s +++ b/libc/sysv/consts/__NR_setregid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setregid 0x0072 0x200007f 0x007f 0x007f -1 +.syscon nr __NR_setregid 0x0072 0x200007f 0x007f 0x007f 0x07f -1 diff --git a/libc/sysv/consts/__NR_setresgid.s b/libc/sysv/consts/__NR_setresgid.s index 16c00e0f7..64f9d2b17 100644 --- a/libc/sysv/consts/__NR_setresgid.s +++ b/libc/sysv/consts/__NR_setresgid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setresgid 0x0077 -1 0x0138 0x011c -1 +.syscon nr __NR_setresgid 0x0077 -1 0x0138 0x011c -1 -1 diff --git a/libc/sysv/consts/__NR_setresuid.s b/libc/sysv/consts/__NR_setresuid.s index c169a02fb..91e8e39b0 100644 --- a/libc/sysv/consts/__NR_setresuid.s +++ b/libc/sysv/consts/__NR_setresuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setresuid 0x0075 -1 0x0137 0x011a -1 +.syscon nr __NR_setresuid 0x0075 -1 0x0137 0x011a -1 -1 diff --git a/libc/sysv/consts/__NR_setreuid.s b/libc/sysv/consts/__NR_setreuid.s index c765f78df..37cca5473 100644 --- a/libc/sysv/consts/__NR_setreuid.s +++ b/libc/sysv/consts/__NR_setreuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setreuid 0x0071 0x200007e 0x007e 0x007e -1 +.syscon nr __NR_setreuid 0x0071 0x200007e 0x007e 0x007e 0x07e -1 diff --git a/libc/sysv/consts/__NR_setrlimit.s b/libc/sysv/consts/__NR_setrlimit.s index 5a3c3f578..8f9508c91 100644 --- a/libc/sysv/consts/__NR_setrlimit.s +++ b/libc/sysv/consts/__NR_setrlimit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setrlimit 0x00a0 0x20000c3 0x00c3 0x00c3 -1 +.syscon nr __NR_setrlimit 0x00a0 0x20000c3 0x00c3 0x00c3 0x0c3 -1 diff --git a/libc/sysv/consts/__NR_setrtable.s b/libc/sysv/consts/__NR_setrtable.s index 259d25076..ed0bd1c98 100644 --- a/libc/sysv/consts/__NR_setrtable.s +++ b/libc/sysv/consts/__NR_setrtable.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setrtable -1 -1 -1 0x0136 -1 +.syscon nr __NR_setrtable -1 -1 -1 0x0136 -1 -1 diff --git a/libc/sysv/consts/__NR_setsgroups.s b/libc/sysv/consts/__NR_setsgroups.s index b60f57ab0..54de67c64 100644 --- a/libc/sysv/consts/__NR_setsgroups.s +++ b/libc/sysv/consts/__NR_setsgroups.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setsgroups -1 0x200011f -1 -1 -1 +.syscon nr __NR_setsgroups -1 0x200011f -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setsid.s b/libc/sysv/consts/__NR_setsid.s index d7bef176d..752e80aa9 100644 --- a/libc/sysv/consts/__NR_setsid.s +++ b/libc/sysv/consts/__NR_setsid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setsid 0x0070 0x2000093 0x0093 0x0093 -1 +.syscon nr __NR_setsid 0x0070 0x2000093 0x0093 0x0093 0x093 -1 diff --git a/libc/sysv/consts/__NR_setsockopt.s b/libc/sysv/consts/__NR_setsockopt.s index 95bd2bf71..29341f597 100644 --- a/libc/sysv/consts/__NR_setsockopt.s +++ b/libc/sysv/consts/__NR_setsockopt.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setsockopt 0x0036 0x2000069 0x0069 0x0069 -1 +.syscon nr __NR_setsockopt 0x0036 0x2000069 0x0069 0x0069 0x069 -1 diff --git a/libc/sysv/consts/__NR_settid.s b/libc/sysv/consts/__NR_settid.s index 16d54938b..f36d55e71 100644 --- a/libc/sysv/consts/__NR_settid.s +++ b/libc/sysv/consts/__NR_settid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_settid -1 0x200011d -1 -1 -1 +.syscon nr __NR_settid -1 0x200011d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_settid_with_pid.s b/libc/sysv/consts/__NR_settid_with_pid.s index 73847f2b5..948602cb7 100644 --- a/libc/sysv/consts/__NR_settid_with_pid.s +++ b/libc/sysv/consts/__NR_settid_with_pid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_settid_with_pid -1 0x2000137 -1 -1 -1 +.syscon nr __NR_settid_with_pid -1 0x2000137 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_settimeofday.s b/libc/sysv/consts/__NR_settimeofday.s index 7a1bceeec..a56ec9fd4 100644 --- a/libc/sysv/consts/__NR_settimeofday.s +++ b/libc/sysv/consts/__NR_settimeofday.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_settimeofday 0x00a4 0x200007a 0x007a 0x0044 -1 +.syscon nr __NR_settimeofday 0x00a4 0x200007a 0x007a 0x0044 0x1a3 -1 diff --git a/libc/sysv/consts/__NR_setugid.s b/libc/sysv/consts/__NR_setugid.s index e0bac7564..636eaf521 100644 --- a/libc/sysv/consts/__NR_setugid.s +++ b/libc/sysv/consts/__NR_setugid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setugid -1 -1 0x0176 -1 -1 +.syscon nr __NR_setugid -1 -1 0x0176 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setuid.s b/libc/sysv/consts/__NR_setuid.s index bad8bba4e..3e26730fc 100644 --- a/libc/sysv/consts/__NR_setuid.s +++ b/libc/sysv/consts/__NR_setuid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setuid 0x0069 0x2000017 0x0017 0x0017 -1 +.syscon nr __NR_setuid 0x0069 0x2000017 0x0017 0x0017 0x017 -1 diff --git a/libc/sysv/consts/__NR_setwgroups.s b/libc/sysv/consts/__NR_setwgroups.s index ffa8239ee..ca79ec887 100644 --- a/libc/sysv/consts/__NR_setwgroups.s +++ b/libc/sysv/consts/__NR_setwgroups.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setwgroups -1 0x2000121 -1 -1 -1 +.syscon nr __NR_setwgroups -1 0x2000121 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_setxattr.s b/libc/sysv/consts/__NR_setxattr.s index 33c25e55d..bc604a1b2 100644 --- a/libc/sysv/consts/__NR_setxattr.s +++ b/libc/sysv/consts/__NR_setxattr.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_setxattr 0x00bc 0x20000ec -1 -1 -1 +.syscon nr __NR_setxattr 0x00bc 0x20000ec -1 -1 0x177 -1 diff --git a/libc/sysv/consts/__NR_sfi_ctl.s b/libc/sysv/consts/__NR_sfi_ctl.s index ad4fb8330..d4a90f224 100644 --- a/libc/sysv/consts/__NR_sfi_ctl.s +++ b/libc/sysv/consts/__NR_sfi_ctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sfi_ctl -1 0x20001c8 -1 -1 -1 +.syscon nr __NR_sfi_ctl -1 0x20001c8 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sfi_pidctl.s b/libc/sysv/consts/__NR_sfi_pidctl.s index 96df07b7f..b697ba5f4 100644 --- a/libc/sysv/consts/__NR_sfi_pidctl.s +++ b/libc/sysv/consts/__NR_sfi_pidctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sfi_pidctl -1 0x20001c9 -1 -1 -1 +.syscon nr __NR_sfi_pidctl -1 0x20001c9 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_shared_region_check_np.s b/libc/sysv/consts/__NR_shared_region_check_np.s index 5f28629b8..6c9884c11 100644 --- a/libc/sysv/consts/__NR_shared_region_check_np.s +++ b/libc/sysv/consts/__NR_shared_region_check_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shared_region_check_np -1 0x2000126 -1 -1 -1 +.syscon nr __NR_shared_region_check_np -1 0x2000126 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_shared_region_map_and_slide_np.s b/libc/sysv/consts/__NR_shared_region_map_and_slide_np.s index d7682bdad..41b5ed615 100644 --- a/libc/sysv/consts/__NR_shared_region_map_and_slide_np.s +++ b/libc/sysv/consts/__NR_shared_region_map_and_slide_np.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shared_region_map_and_slide_np -1 0x20001b6 -1 -1 -1 +.syscon nr __NR_shared_region_map_and_slide_np -1 0x20001b6 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_shm_open.s b/libc/sysv/consts/__NR_shm_open.s index 11ce10af2..978fe35f7 100644 --- a/libc/sysv/consts/__NR_shm_open.s +++ b/libc/sysv/consts/__NR_shm_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shm_open -1 0x200010a 0x01e2 -1 -1 +.syscon nr __NR_shm_open -1 0x200010a 0x01e2 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_shm_unlink.s b/libc/sysv/consts/__NR_shm_unlink.s index 4f2078ca6..0b3d30322 100644 --- a/libc/sysv/consts/__NR_shm_unlink.s +++ b/libc/sysv/consts/__NR_shm_unlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shm_unlink -1 0x200010b 0x01e3 -1 -1 +.syscon nr __NR_shm_unlink -1 0x200010b 0x01e3 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_shmat.s b/libc/sysv/consts/__NR_shmat.s index 18a323a68..0b6d4dd10 100644 --- a/libc/sysv/consts/__NR_shmat.s +++ b/libc/sysv/consts/__NR_shmat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shmat 0x001e 0x2000106 0x00e4 0x00e4 -1 +.syscon nr __NR_shmat 0x001e 0x2000106 0x00e4 0x00e4 0x0e4 -1 diff --git a/libc/sysv/consts/__NR_shmctl.s b/libc/sysv/consts/__NR_shmctl.s index 673ba4deb..b97444123 100644 --- a/libc/sysv/consts/__NR_shmctl.s +++ b/libc/sysv/consts/__NR_shmctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shmctl 0x001f 0x2000107 0x0200 0x0128 -1 +.syscon nr __NR_shmctl 0x001f 0x2000107 0x0200 0x0128 0x1bb -1 diff --git a/libc/sysv/consts/__NR_shmdt.s b/libc/sysv/consts/__NR_shmdt.s index 384030e2a..6c28aaf2d 100644 --- a/libc/sysv/consts/__NR_shmdt.s +++ b/libc/sysv/consts/__NR_shmdt.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shmdt 0x0043 0x2000108 0x00e6 0x00e6 -1 +.syscon nr __NR_shmdt 0x0043 0x2000108 0x00e6 0x00e6 0x0e6 -1 diff --git a/libc/sysv/consts/__NR_shmget.s b/libc/sysv/consts/__NR_shmget.s index 2322df70c..62574f01c 100644 --- a/libc/sysv/consts/__NR_shmget.s +++ b/libc/sysv/consts/__NR_shmget.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shmget 0x001d 0x2000109 0x00e7 0x0121 -1 +.syscon nr __NR_shmget 0x001d 0x2000109 0x00e7 0x0121 0x0e7 -1 diff --git a/libc/sysv/consts/__NR_shmsys.s b/libc/sysv/consts/__NR_shmsys.s index 711b2833a..02a54b490 100644 --- a/libc/sysv/consts/__NR_shmsys.s +++ b/libc/sysv/consts/__NR_shmsys.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shmsys -1 0x20000fd 0x00ab -1 -1 +.syscon nr __NR_shmsys -1 0x20000fd 0x00ab -1 -1 -1 diff --git a/libc/sysv/consts/__NR_shutdown.s b/libc/sysv/consts/__NR_shutdown.s index ba38c52ff..fdd08a665 100644 --- a/libc/sysv/consts/__NR_shutdown.s +++ b/libc/sysv/consts/__NR_shutdown.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_shutdown 0x0030 0x2000086 0x0086 0x0086 -1 +.syscon nr __NR_shutdown 0x0030 0x2000086 0x0086 0x0086 0x086 -1 diff --git a/libc/sysv/consts/__NR_sigaction.s b/libc/sysv/consts/__NR_sigaction.s index c7ab43ea8..e75f1857a 100644 --- a/libc/sysv/consts/__NR_sigaction.s +++ b/libc/sysv/consts/__NR_sigaction.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigaction 0x000d 0x200002e 0x01a0 0x002e -1 +.syscon nr __NR_sigaction 0x000d 0x200002e 0x01a0 0x002e -1 -1 diff --git a/libc/sysv/consts/__NR_sigaltstack.s b/libc/sysv/consts/__NR_sigaltstack.s index 33bbca32f..2a2d45664 100644 --- a/libc/sysv/consts/__NR_sigaltstack.s +++ b/libc/sysv/consts/__NR_sigaltstack.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigaltstack 0x0083 0x2000035 0x0035 0x0120 -1 +.syscon nr __NR_sigaltstack 0x0083 0x2000035 0x0035 0x0120 0x119 -1 diff --git a/libc/sysv/consts/__NR_sigblock.s b/libc/sysv/consts/__NR_sigblock.s index ce1def2c0..ed670415b 100644 --- a/libc/sysv/consts/__NR_sigblock.s +++ b/libc/sysv/consts/__NR_sigblock.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigblock -1 -1 0x006d -1 -1 +.syscon nr __NR_sigblock -1 -1 0x006d -1 -1 -1 diff --git a/libc/sysv/consts/__NR_signalfd.s b/libc/sysv/consts/__NR_signalfd.s index 8f32201b3..24da5aa11 100644 --- a/libc/sysv/consts/__NR_signalfd.s +++ b/libc/sysv/consts/__NR_signalfd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_signalfd 0x011a -1 -1 -1 -1 +.syscon nr __NR_signalfd 0x011a -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_signalfd4.s b/libc/sysv/consts/__NR_signalfd4.s index 56c033eda..fb56cfcf0 100644 --- a/libc/sysv/consts/__NR_signalfd4.s +++ b/libc/sysv/consts/__NR_signalfd4.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_signalfd4 0x0121 -1 -1 -1 -1 +.syscon nr __NR_signalfd4 0x0121 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigpending.s b/libc/sysv/consts/__NR_sigpending.s index 8137690b9..81f634b3a 100644 --- a/libc/sysv/consts/__NR_sigpending.s +++ b/libc/sysv/consts/__NR_sigpending.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigpending 0x007f 0x2000034 0x0034 0x0034 -1 +.syscon nr __NR_sigpending 0x007f 0x2000034 0x0034 0x0034 0x124 -1 diff --git a/libc/sysv/consts/__NR_sigprocmask.s b/libc/sysv/consts/__NR_sigprocmask.s index 57d8246c8..0fa545cd6 100644 --- a/libc/sysv/consts/__NR_sigprocmask.s +++ b/libc/sysv/consts/__NR_sigprocmask.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigprocmask 0x000e 0x2000030 0x0154 0x0030 -1 +.syscon nr __NR_sigprocmask 0x000e 0x2000030 0x0154 0x0030 0x125 -1 diff --git a/libc/sysv/consts/__NR_sigqueue.s b/libc/sysv/consts/__NR_sigqueue.s index 140df976c..cfb5d2b0f 100644 --- a/libc/sysv/consts/__NR_sigqueue.s +++ b/libc/sysv/consts/__NR_sigqueue.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigqueue -1 -1 0x01c8 -1 -1 +.syscon nr __NR_sigqueue -1 -1 0x01c8 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigsetmask.s b/libc/sysv/consts/__NR_sigsetmask.s index 2dd6aa146..c5dff2e9a 100644 --- a/libc/sysv/consts/__NR_sigsetmask.s +++ b/libc/sysv/consts/__NR_sigsetmask.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigsetmask -1 -1 0x006e -1 -1 +.syscon nr __NR_sigsetmask -1 -1 0x006e -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigstack.s b/libc/sysv/consts/__NR_sigstack.s index 1800ca041..808a3b98a 100644 --- a/libc/sysv/consts/__NR_sigstack.s +++ b/libc/sysv/consts/__NR_sigstack.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigstack -1 -1 0x0070 -1 -1 +.syscon nr __NR_sigstack -1 -1 0x0070 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigsuspend.s b/libc/sysv/consts/__NR_sigsuspend.s index 2a2973d86..abc42f4ca 100644 --- a/libc/sysv/consts/__NR_sigsuspend.s +++ b/libc/sysv/consts/__NR_sigsuspend.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigsuspend 0x0082 0x200006f 0x0155 0x006f -1 +.syscon nr __NR_sigsuspend 0x0082 0x200006f 0x0155 0x006f 0x126 -1 diff --git a/libc/sysv/consts/__NR_sigsuspend_nocancel.s b/libc/sysv/consts/__NR_sigsuspend_nocancel.s index 74e8c71f0..8cde73c4b 100644 --- a/libc/sysv/consts/__NR_sigsuspend_nocancel.s +++ b/libc/sysv/consts/__NR_sigsuspend_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigsuspend_nocancel -1 0x200019a -1 -1 -1 +.syscon nr __NR_sigsuspend_nocancel -1 0x200019a -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigtimedwait.s b/libc/sysv/consts/__NR_sigtimedwait.s index 70d659155..9534c36e8 100644 --- a/libc/sysv/consts/__NR_sigtimedwait.s +++ b/libc/sysv/consts/__NR_sigtimedwait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigtimedwait 0x0080 -1 0x0159 -1 -1 +.syscon nr __NR_sigtimedwait 0x0080 -1 0x0159 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigvec.s b/libc/sysv/consts/__NR_sigvec.s index 67a2642f3..b013af260 100644 --- a/libc/sysv/consts/__NR_sigvec.s +++ b/libc/sysv/consts/__NR_sigvec.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigvec -1 -1 0x006c -1 -1 +.syscon nr __NR_sigvec -1 -1 0x006c -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigwait.s b/libc/sysv/consts/__NR_sigwait.s index b31b1163c..0c2e4babd 100644 --- a/libc/sysv/consts/__NR_sigwait.s +++ b/libc/sysv/consts/__NR_sigwait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigwait -1 0x200014a 0x01ad -1 -1 +.syscon nr __NR_sigwait -1 0x200014a 0x01ad -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigwait_nocancel.s b/libc/sysv/consts/__NR_sigwait_nocancel.s index a174fb5bb..0f8f203cd 100644 --- a/libc/sysv/consts/__NR_sigwait_nocancel.s +++ b/libc/sysv/consts/__NR_sigwait_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigwait_nocancel -1 0x20001a6 -1 -1 -1 +.syscon nr __NR_sigwait_nocancel -1 0x20001a6 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sigwaitinfo.s b/libc/sysv/consts/__NR_sigwaitinfo.s index ef56103b6..60e3f5194 100644 --- a/libc/sysv/consts/__NR_sigwaitinfo.s +++ b/libc/sysv/consts/__NR_sigwaitinfo.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sigwaitinfo -1 -1 0x015a -1 -1 +.syscon nr __NR_sigwaitinfo -1 -1 0x015a -1 -1 -1 diff --git a/libc/sysv/consts/__NR_socket.s b/libc/sysv/consts/__NR_socket.s index 50e38a5a8..8f1b1bc95 100644 --- a/libc/sysv/consts/__NR_socket.s +++ b/libc/sysv/consts/__NR_socket.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_socket 0x0029 0x2000061 0x0061 0x0061 -1 +.syscon nr __NR_socket 0x0029 0x2000061 0x0061 0x0061 0x18a -1 diff --git a/libc/sysv/consts/__NR_socket_delegate.s b/libc/sysv/consts/__NR_socket_delegate.s index e974e7920..419cb44f8 100644 --- a/libc/sysv/consts/__NR_socket_delegate.s +++ b/libc/sysv/consts/__NR_socket_delegate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_socket_delegate -1 0x20001c2 -1 -1 -1 +.syscon nr __NR_socket_delegate -1 0x20001c2 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_socketpair.s b/libc/sysv/consts/__NR_socketpair.s index 315c4df74..a0648e9fd 100644 --- a/libc/sysv/consts/__NR_socketpair.s +++ b/libc/sysv/consts/__NR_socketpair.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_socketpair 0x0035 0x2000087 0x0087 0x0087 -1 +.syscon nr __NR_socketpair 0x0035 0x2000087 0x0087 0x0087 0x087 -1 diff --git a/libc/sysv/consts/__NR_splice.s b/libc/sysv/consts/__NR_splice.s index cc0921da3..3dd419073 100644 --- a/libc/sysv/consts/__NR_splice.s +++ b/libc/sysv/consts/__NR_splice.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_splice 0x0113 -1 -1 -1 -1 +.syscon nr __NR_splice 0x0113 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sstk.s b/libc/sysv/consts/__NR_sstk.s index 598468a07..b92d5c108 100644 --- a/libc/sysv/consts/__NR_sstk.s +++ b/libc/sysv/consts/__NR_sstk.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sstk -1 -1 0x0046 -1 -1 +.syscon nr __NR_sstk -1 -1 0x0046 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_stack_snapshot_with_config.s b/libc/sysv/consts/__NR_stack_snapshot_with_config.s index 18c3fdb51..a0a7ad16c 100644 --- a/libc/sysv/consts/__NR_stack_snapshot_with_config.s +++ b/libc/sysv/consts/__NR_stack_snapshot_with_config.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_stack_snapshot_with_config -1 0x20001eb -1 -1 -1 +.syscon nr __NR_stack_snapshot_with_config -1 0x20001eb -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_stat.s b/libc/sysv/consts/__NR_stat.s index 4e525dbe0..d75c15be2 100644 --- a/libc/sysv/consts/__NR_stat.s +++ b/libc/sysv/consts/__NR_stat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_stat 0x0004 0x2000152 -1 0x0026 -1 +.syscon nr __NR_stat 0x0004 0x2000152 -1 0x0026 0x1b7 -1 diff --git a/libc/sysv/consts/__NR_stat_extended.s b/libc/sysv/consts/__NR_stat_extended.s index 261cfa342..2608a6ab3 100644 --- a/libc/sysv/consts/__NR_stat_extended.s +++ b/libc/sysv/consts/__NR_stat_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_stat_extended -1 0x2000155 -1 -1 -1 +.syscon nr __NR_stat_extended -1 0x2000155 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_statfs.s b/libc/sysv/consts/__NR_statfs.s index 05fc279ef..21a14c8b4 100644 --- a/libc/sysv/consts/__NR_statfs.s +++ b/libc/sysv/consts/__NR_statfs.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_statfs 0x0089 0x2000159 0x022b 0x003f -1 +.syscon nr __NR_statfs 0x0089 0x2000159 0x022b 0x003f -1 -1 diff --git a/libc/sysv/consts/__NR_statx.s b/libc/sysv/consts/__NR_statx.s index 08836edef..904b71f41 100644 --- a/libc/sysv/consts/__NR_statx.s +++ b/libc/sysv/consts/__NR_statx.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_statx 0x014c -1 -1 -1 -1 +.syscon nr __NR_statx 0x014c -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_swapcontext.s b/libc/sysv/consts/__NR_swapcontext.s index 71b278afc..4e293969f 100644 --- a/libc/sysv/consts/__NR_swapcontext.s +++ b/libc/sysv/consts/__NR_swapcontext.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_swapcontext -1 -1 0x01a7 -1 -1 +.syscon nr __NR_swapcontext -1 -1 0x01a7 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_swapctl.s b/libc/sysv/consts/__NR_swapctl.s index a571684db..9adff5f2b 100644 --- a/libc/sysv/consts/__NR_swapctl.s +++ b/libc/sysv/consts/__NR_swapctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_swapctl -1 -1 -1 0x00c1 -1 +.syscon nr __NR_swapctl -1 -1 -1 0x00c1 0x10f -1 diff --git a/libc/sysv/consts/__NR_swapoff.s b/libc/sysv/consts/__NR_swapoff.s index 87c8d3c21..4094aea83 100644 --- a/libc/sysv/consts/__NR_swapoff.s +++ b/libc/sysv/consts/__NR_swapoff.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_swapoff 0x00a8 -1 0x01a8 -1 -1 +.syscon nr __NR_swapoff 0x00a8 -1 0x01a8 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_swapon.s b/libc/sysv/consts/__NR_swapon.s index 532a07f43..982bbe630 100644 --- a/libc/sysv/consts/__NR_swapon.s +++ b/libc/sysv/consts/__NR_swapon.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_swapon 0x00a7 0x2000055 0x0055 -1 -1 +.syscon nr __NR_swapon 0x00a7 0x2000055 0x0055 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_symlink.s b/libc/sysv/consts/__NR_symlink.s index c28c8152c..bde96a4af 100644 --- a/libc/sysv/consts/__NR_symlink.s +++ b/libc/sysv/consts/__NR_symlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_symlink 0x0058 0x2000039 0x0039 0x0039 -1 +.syscon nr __NR_symlink 0x0058 0x2000039 0x0039 0x0039 0x039 -1 diff --git a/libc/sysv/consts/__NR_symlinkat.s b/libc/sysv/consts/__NR_symlinkat.s index c89be2f3f..db48351a2 100644 --- a/libc/sysv/consts/__NR_symlinkat.s +++ b/libc/sysv/consts/__NR_symlinkat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_symlinkat 0x010a 0x20001da 0x01f6 0x0144 -1 +.syscon nr __NR_symlinkat 0x010a 0x20001da 0x01f6 0x0144 0x1d6 -1 diff --git a/libc/sysv/consts/__NR_sync.s b/libc/sysv/consts/__NR_sync.s index 07ea4313d..8304429ba 100644 --- a/libc/sysv/consts/__NR_sync.s +++ b/libc/sysv/consts/__NR_sync.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sync 0x00a2 0x2000024 0x0024 0x0024 -1 +.syscon nr __NR_sync 0x00a2 0x2000024 0x0024 0x0024 -1 -1 diff --git a/libc/sysv/consts/__NR_sync_file_range.s b/libc/sysv/consts/__NR_sync_file_range.s index 538d97287..c7e258202 100644 --- a/libc/sysv/consts/__NR_sync_file_range.s +++ b/libc/sysv/consts/__NR_sync_file_range.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sync_file_range 0x0115 -1 -1 -1 -1 +.syscon nr __NR_sync_file_range 0x0115 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_syncfs.s b/libc/sysv/consts/__NR_syncfs.s index d00413fa8..e35e38a15 100644 --- a/libc/sysv/consts/__NR_syncfs.s +++ b/libc/sysv/consts/__NR_syncfs.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_syncfs 0x0132 -1 -1 -1 -1 +.syscon nr __NR_syncfs 0x0132 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_syscall.s b/libc/sysv/consts/__NR_syscall.s index c353ee884..fb5bf9c7a 100644 --- a/libc/sysv/consts/__NR_syscall.s +++ b/libc/sysv/consts/__NR_syscall.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_syscall -1 -1 -1 0x00c6 -1 +.syscon nr __NR_syscall -1 -1 -1 0x00c6 -1 -1 diff --git a/libc/sysv/consts/__NR_sysctl.s b/libc/sysv/consts/__NR_sysctl.s index 6f22d085b..f3e6febc6 100644 --- a/libc/sysv/consts/__NR_sysctl.s +++ b/libc/sysv/consts/__NR_sysctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sysctl -1 0x20000ca -1 0x00ca -1 +.syscon nr __NR_sysctl -1 0x20000ca -1 0x00ca -1 -1 diff --git a/libc/sysv/consts/__NR_sysctlbyname.s b/libc/sysv/consts/__NR_sysctlbyname.s index d65e22fd0..bb3349000 100644 --- a/libc/sysv/consts/__NR_sysctlbyname.s +++ b/libc/sysv/consts/__NR_sysctlbyname.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sysctlbyname -1 0x2000112 -1 -1 -1 +.syscon nr __NR_sysctlbyname -1 0x2000112 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sysfs.s b/libc/sysv/consts/__NR_sysfs.s index b53d00e94..89d9e5377 100644 --- a/libc/sysv/consts/__NR_sysfs.s +++ b/libc/sysv/consts/__NR_sysfs.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sysfs 0x008b -1 -1 -1 -1 +.syscon nr __NR_sysfs 0x008b -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_sysinfo.s b/libc/sysv/consts/__NR_sysinfo.s index 2a343fa14..9aa66bd1a 100644 --- a/libc/sysv/consts/__NR_sysinfo.s +++ b/libc/sysv/consts/__NR_sysinfo.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_sysinfo 0x0063 -1 -1 -1 -1 +.syscon nr __NR_sysinfo 0x0063 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_syslog.s b/libc/sysv/consts/__NR_syslog.s index 89bd05d70..454c79e9e 100644 --- a/libc/sysv/consts/__NR_syslog.s +++ b/libc/sysv/consts/__NR_syslog.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_syslog 0x0067 -1 -1 -1 -1 +.syscon nr __NR_syslog 0x0067 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_system_override.s b/libc/sysv/consts/__NR_system_override.s index 266e2d631..2f2713092 100644 --- a/libc/sysv/consts/__NR_system_override.s +++ b/libc/sysv/consts/__NR_system_override.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_system_override -1 0x20001c6 -1 -1 -1 +.syscon nr __NR_system_override -1 0x20001c6 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_tee.s b/libc/sysv/consts/__NR_tee.s index 2addac4b7..9063511a2 100644 --- a/libc/sysv/consts/__NR_tee.s +++ b/libc/sysv/consts/__NR_tee.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_tee 0x0114 -1 -1 -1 -1 +.syscon nr __NR_tee 0x0114 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_telemetry.s b/libc/sysv/consts/__NR_telemetry.s index 9958ca6f2..6c0b856c2 100644 --- a/libc/sysv/consts/__NR_telemetry.s +++ b/libc/sysv/consts/__NR_telemetry.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_telemetry -1 0x20001c3 -1 -1 -1 +.syscon nr __NR_telemetry -1 0x20001c3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_terminate_with_payload.s b/libc/sysv/consts/__NR_terminate_with_payload.s index 0ffd9f781..14e80b4d2 100644 --- a/libc/sysv/consts/__NR_terminate_with_payload.s +++ b/libc/sysv/consts/__NR_terminate_with_payload.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_terminate_with_payload -1 0x2000208 -1 -1 -1 +.syscon nr __NR_terminate_with_payload -1 0x2000208 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_tfork.s b/libc/sysv/consts/__NR_tfork.s index ca4480e65..9d3b55c41 100644 --- a/libc/sysv/consts/__NR_tfork.s +++ b/libc/sysv/consts/__NR_tfork.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_tfork -1 -1 -1 0x0008 -1 +.syscon nr __NR_tfork -1 -1 -1 0x0008 -1 -1 diff --git a/libc/sysv/consts/__NR_tgkill.s b/libc/sysv/consts/__NR_tgkill.s index 921c89e60..2a9b70143 100644 --- a/libc/sysv/consts/__NR_tgkill.s +++ b/libc/sysv/consts/__NR_tgkill.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_tgkill 0x00ea -1 -1 -1 -1 +.syscon nr __NR_tgkill 0x00ea -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_create.s b/libc/sysv/consts/__NR_thr_create.s index 4d2699544..42f2d11f4 100644 --- a/libc/sysv/consts/__NR_thr_create.s +++ b/libc/sysv/consts/__NR_thr_create.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_create -1 -1 0x01ae -1 -1 +.syscon nr __NR_thr_create -1 -1 0x01ae -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_exit.s b/libc/sysv/consts/__NR_thr_exit.s index 458c9d815..091d59b48 100644 --- a/libc/sysv/consts/__NR_thr_exit.s +++ b/libc/sysv/consts/__NR_thr_exit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_exit -1 -1 0x01af -1 -1 +.syscon nr __NR_thr_exit -1 -1 0x01af -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_kill.s b/libc/sysv/consts/__NR_thr_kill.s index 76789054f..b398b9111 100644 --- a/libc/sysv/consts/__NR_thr_kill.s +++ b/libc/sysv/consts/__NR_thr_kill.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_kill -1 -1 0x01b1 -1 -1 +.syscon nr __NR_thr_kill -1 -1 0x01b1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_kill2.s b/libc/sysv/consts/__NR_thr_kill2.s index 72024a1b5..cb67eef49 100644 --- a/libc/sysv/consts/__NR_thr_kill2.s +++ b/libc/sysv/consts/__NR_thr_kill2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_kill2 -1 -1 0x01e1 -1 -1 +.syscon nr __NR_thr_kill2 -1 -1 0x01e1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_new.s b/libc/sysv/consts/__NR_thr_new.s index 1230c90a4..f6a63bb3f 100644 --- a/libc/sysv/consts/__NR_thr_new.s +++ b/libc/sysv/consts/__NR_thr_new.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_new -1 -1 0x01c7 -1 -1 +.syscon nr __NR_thr_new -1 -1 0x01c7 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_self.s b/libc/sysv/consts/__NR_thr_self.s index ccf2a64ae..c1f6a038f 100644 --- a/libc/sysv/consts/__NR_thr_self.s +++ b/libc/sysv/consts/__NR_thr_self.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_self -1 -1 0x01b0 -1 -1 +.syscon nr __NR_thr_self -1 -1 0x01b0 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_set_name.s b/libc/sysv/consts/__NR_thr_set_name.s index ce540d0e0..f2fc22add 100644 --- a/libc/sysv/consts/__NR_thr_set_name.s +++ b/libc/sysv/consts/__NR_thr_set_name.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_set_name -1 -1 0x01d0 -1 -1 +.syscon nr __NR_thr_set_name -1 -1 0x01d0 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_suspend.s b/libc/sysv/consts/__NR_thr_suspend.s index d907222ba..2becaa249 100644 --- a/libc/sysv/consts/__NR_thr_suspend.s +++ b/libc/sysv/consts/__NR_thr_suspend.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_suspend -1 -1 0x01ba -1 -1 +.syscon nr __NR_thr_suspend -1 -1 0x01ba -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thr_wake.s b/libc/sysv/consts/__NR_thr_wake.s index 938b06523..6f76bb37e 100644 --- a/libc/sysv/consts/__NR_thr_wake.s +++ b/libc/sysv/consts/__NR_thr_wake.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thr_wake -1 -1 0x01bb -1 -1 +.syscon nr __NR_thr_wake -1 -1 0x01bb -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thread_selfcounts.s b/libc/sysv/consts/__NR_thread_selfcounts.s index 61dafc2d6..5ad19a94c 100644 --- a/libc/sysv/consts/__NR_thread_selfcounts.s +++ b/libc/sysv/consts/__NR_thread_selfcounts.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thread_selfcounts -1 0x20000ba -1 -1 -1 +.syscon nr __NR_thread_selfcounts -1 0x20000ba -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thread_selfid.s b/libc/sysv/consts/__NR_thread_selfid.s index 010374f1b..3303a6163 100644 --- a/libc/sysv/consts/__NR_thread_selfid.s +++ b/libc/sysv/consts/__NR_thread_selfid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thread_selfid -1 0x2000174 -1 -1 -1 +.syscon nr __NR_thread_selfid -1 0x2000174 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_thread_selfusage.s b/libc/sysv/consts/__NR_thread_selfusage.s index a3c629397..b6bcfead6 100644 --- a/libc/sysv/consts/__NR_thread_selfusage.s +++ b/libc/sysv/consts/__NR_thread_selfusage.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thread_selfusage -1 0x20001e2 -1 -1 -1 +.syscon nr __NR_thread_selfusage -1 0x20001e2 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_threxit.s b/libc/sysv/consts/__NR_threxit.s index f2d73f249..8cec529cc 100644 --- a/libc/sysv/consts/__NR_threxit.s +++ b/libc/sysv/consts/__NR_threxit.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_threxit -1 -1 -1 0x012e -1 +.syscon nr __NR_threxit -1 -1 -1 0x012e -1 -1 diff --git a/libc/sysv/consts/__NR_thrkill.s b/libc/sysv/consts/__NR_thrkill.s index 80e45652b..df4ec804d 100644 --- a/libc/sysv/consts/__NR_thrkill.s +++ b/libc/sysv/consts/__NR_thrkill.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thrkill -1 -1 -1 0x0077 -1 +.syscon nr __NR_thrkill -1 -1 -1 0x0077 -1 -1 diff --git a/libc/sysv/consts/__NR_thrsigdivert.s b/libc/sysv/consts/__NR_thrsigdivert.s index ff2a8155c..5d1a4297b 100644 --- a/libc/sysv/consts/__NR_thrsigdivert.s +++ b/libc/sysv/consts/__NR_thrsigdivert.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thrsigdivert -1 -1 -1 0x012f -1 +.syscon nr __NR_thrsigdivert -1 -1 -1 0x012f -1 -1 diff --git a/libc/sysv/consts/__NR_thrsleep.s b/libc/sysv/consts/__NR_thrsleep.s index 72e1921a3..4139e43b4 100644 --- a/libc/sysv/consts/__NR_thrsleep.s +++ b/libc/sysv/consts/__NR_thrsleep.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thrsleep -1 -1 -1 0x005e -1 +.syscon nr __NR_thrsleep -1 -1 -1 0x005e -1 -1 diff --git a/libc/sysv/consts/__NR_thrwakeup.s b/libc/sysv/consts/__NR_thrwakeup.s index 808aa106b..01e3dce52 100644 --- a/libc/sysv/consts/__NR_thrwakeup.s +++ b/libc/sysv/consts/__NR_thrwakeup.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_thrwakeup -1 -1 -1 0x012d -1 +.syscon nr __NR_thrwakeup -1 -1 -1 0x012d -1 -1 diff --git a/libc/sysv/consts/__NR_timer_create.s b/libc/sysv/consts/__NR_timer_create.s index c5fe39087..1fc8cd503 100644 --- a/libc/sysv/consts/__NR_timer_create.s +++ b/libc/sysv/consts/__NR_timer_create.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timer_create 0x00de -1 -1 -1 -1 +.syscon nr __NR_timer_create 0x00de -1 -1 -1 0x0eb -1 diff --git a/libc/sysv/consts/__NR_timer_delete.s b/libc/sysv/consts/__NR_timer_delete.s index 0b97fd79c..27c9a37d7 100644 --- a/libc/sysv/consts/__NR_timer_delete.s +++ b/libc/sysv/consts/__NR_timer_delete.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timer_delete 0x00e2 -1 -1 -1 -1 +.syscon nr __NR_timer_delete 0x00e2 -1 -1 -1 0x0ec -1 diff --git a/libc/sysv/consts/__NR_timer_getoverrun.s b/libc/sysv/consts/__NR_timer_getoverrun.s index 54c4dbbb0..13e57a1e2 100644 --- a/libc/sysv/consts/__NR_timer_getoverrun.s +++ b/libc/sysv/consts/__NR_timer_getoverrun.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timer_getoverrun 0x00e1 -1 -1 -1 -1 +.syscon nr __NR_timer_getoverrun 0x00e1 -1 -1 -1 0x0ef -1 diff --git a/libc/sysv/consts/__NR_timer_gettime.s b/libc/sysv/consts/__NR_timer_gettime.s index 7c958b421..eda1f5af5 100644 --- a/libc/sysv/consts/__NR_timer_gettime.s +++ b/libc/sysv/consts/__NR_timer_gettime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timer_gettime 0x00e0 -1 -1 -1 -1 +.syscon nr __NR_timer_gettime 0x00e0 -1 -1 -1 0x1bf -1 diff --git a/libc/sysv/consts/__NR_timer_settime.s b/libc/sysv/consts/__NR_timer_settime.s index a56e55dd5..3dbf7c235 100644 --- a/libc/sysv/consts/__NR_timer_settime.s +++ b/libc/sysv/consts/__NR_timer_settime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timer_settime 0x00df -1 -1 -1 -1 +.syscon nr __NR_timer_settime 0x00df -1 -1 -1 0x1be -1 diff --git a/libc/sysv/consts/__NR_timerfd_create.s b/libc/sysv/consts/__NR_timerfd_create.s index cbf022a82..3c96a5fb4 100644 --- a/libc/sysv/consts/__NR_timerfd_create.s +++ b/libc/sysv/consts/__NR_timerfd_create.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timerfd_create 0x011b -1 -1 -1 -1 +.syscon nr __NR_timerfd_create 0x011b -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_timerfd_gettime.s b/libc/sysv/consts/__NR_timerfd_gettime.s index 27fc334ef..171741673 100644 --- a/libc/sysv/consts/__NR_timerfd_gettime.s +++ b/libc/sysv/consts/__NR_timerfd_gettime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timerfd_gettime 0x011f -1 -1 -1 -1 +.syscon nr __NR_timerfd_gettime 0x011f -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_timerfd_settime.s b/libc/sysv/consts/__NR_timerfd_settime.s index 47480ef17..e8d0aed0b 100644 --- a/libc/sysv/consts/__NR_timerfd_settime.s +++ b/libc/sysv/consts/__NR_timerfd_settime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_timerfd_settime 0x011e -1 -1 -1 -1 +.syscon nr __NR_timerfd_settime 0x011e -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_times.s b/libc/sysv/consts/__NR_times.s index c32aa41b7..a760bf337 100644 --- a/libc/sysv/consts/__NR_times.s +++ b/libc/sysv/consts/__NR_times.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_times 0x0064 -1 -1 -1 -1 +.syscon nr __NR_times 0x0064 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_tkill.s b/libc/sysv/consts/__NR_tkill.s index 12d2d3a4a..c3c662274 100644 --- a/libc/sysv/consts/__NR_tkill.s +++ b/libc/sysv/consts/__NR_tkill.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_tkill 0x00c8 -1 -1 -1 -1 +.syscon nr __NR_tkill 0x00c8 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_truncate.s b/libc/sysv/consts/__NR_truncate.s index 62e73f6f5..3f8bca770 100644 --- a/libc/sysv/consts/__NR_truncate.s +++ b/libc/sysv/consts/__NR_truncate.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_truncate 0x004c 0x20000c8 0x01df 0x00c8 -1 +.syscon nr __NR_truncate 0x004c 0x20000c8 0x01df 0x00c8 0x0c8 -1 diff --git a/libc/sysv/consts/__NR_ulock_wait.s b/libc/sysv/consts/__NR_ulock_wait.s index b23d3ecec..85a4d5aa6 100644 --- a/libc/sysv/consts/__NR_ulock_wait.s +++ b/libc/sysv/consts/__NR_ulock_wait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ulock_wait -1 0x2000203 -1 -1 -1 +.syscon nr __NR_ulock_wait -1 0x2000203 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ulock_wake.s b/libc/sysv/consts/__NR_ulock_wake.s index b27df9af1..95004e7e7 100644 --- a/libc/sysv/consts/__NR_ulock_wake.s +++ b/libc/sysv/consts/__NR_ulock_wake.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ulock_wake -1 0x2000204 -1 -1 -1 +.syscon nr __NR_ulock_wake -1 0x2000204 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_umask.s b/libc/sysv/consts/__NR_umask.s index 9e0500c00..519349dda 100644 --- a/libc/sysv/consts/__NR_umask.s +++ b/libc/sysv/consts/__NR_umask.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_umask 0x005f 0x200003c 0x003c 0x003c -1 +.syscon nr __NR_umask 0x005f 0x200003c 0x003c 0x003c 0x03c -1 diff --git a/libc/sysv/consts/__NR_umask_extended.s b/libc/sysv/consts/__NR_umask_extended.s index d97b4a3db..8d3907606 100644 --- a/libc/sysv/consts/__NR_umask_extended.s +++ b/libc/sysv/consts/__NR_umask_extended.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_umask_extended -1 0x2000116 -1 -1 -1 +.syscon nr __NR_umask_extended -1 0x2000116 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_umount2.s b/libc/sysv/consts/__NR_umount2.s index f64da5ce5..7f3bcd97b 100644 --- a/libc/sysv/consts/__NR_umount2.s +++ b/libc/sysv/consts/__NR_umount2.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_umount2 0x00a6 -1 -1 -1 -1 +.syscon nr __NR_umount2 0x00a6 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_uname.s b/libc/sysv/consts/__NR_uname.s index c44c5ffe2..65794c8f0 100644 --- a/libc/sysv/consts/__NR_uname.s +++ b/libc/sysv/consts/__NR_uname.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_uname 0x003f -1 0x00a4 -1 -1 +.syscon nr __NR_uname 0x003f -1 0x00a4 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_undelete.s b/libc/sysv/consts/__NR_undelete.s index fc9ec5013..04797d8b9 100644 --- a/libc/sysv/consts/__NR_undelete.s +++ b/libc/sysv/consts/__NR_undelete.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_undelete -1 0x20000cd 0x00cd -1 -1 +.syscon nr __NR_undelete -1 0x20000cd 0x00cd -1 0x0cd -1 diff --git a/libc/sysv/consts/__NR_unlink.s b/libc/sysv/consts/__NR_unlink.s index 7f118dc31..eaaa3308a 100644 --- a/libc/sysv/consts/__NR_unlink.s +++ b/libc/sysv/consts/__NR_unlink.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_unlink 0x0057 0x200000a 0x000a 0x000a -1 +.syscon nr __NR_unlink 0x0057 0x200000a 0x000a 0x000a 0x00a -1 diff --git a/libc/sysv/consts/__NR_unlinkat.s b/libc/sysv/consts/__NR_unlinkat.s index 7ed5cef48..86e10b546 100644 --- a/libc/sysv/consts/__NR_unlinkat.s +++ b/libc/sysv/consts/__NR_unlinkat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_unlinkat 0x0107 0x20001d8 0x01f7 0x0145 -1 +.syscon nr __NR_unlinkat 0x0107 0x20001d8 0x01f7 0x0145 0x1d7 -1 diff --git a/libc/sysv/consts/__NR_unmount.s b/libc/sysv/consts/__NR_unmount.s index f3b698026..8f22b50ae 100644 --- a/libc/sysv/consts/__NR_unmount.s +++ b/libc/sysv/consts/__NR_unmount.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_unmount -1 0x200009f 0x0016 0x0016 -1 +.syscon nr __NR_unmount -1 0x200009f 0x0016 0x0016 0x016 -1 diff --git a/libc/sysv/consts/__NR_unshare.s b/libc/sysv/consts/__NR_unshare.s index 2d80fde0d..0504258d8 100644 --- a/libc/sysv/consts/__NR_unshare.s +++ b/libc/sysv/consts/__NR_unshare.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_unshare 0x0110 -1 -1 -1 -1 +.syscon nr __NR_unshare 0x0110 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_unveil.s b/libc/sysv/consts/__NR_unveil.s index 1d04a63f7..55602e07f 100644 --- a/libc/sysv/consts/__NR_unveil.s +++ b/libc/sysv/consts/__NR_unveil.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_unveil -1 -1 -1 0x0072 -1 +.syscon nr __NR_unveil -1 -1 -1 0x0072 -1 -1 diff --git a/libc/sysv/consts/__NR_userfaultfd.s b/libc/sysv/consts/__NR_userfaultfd.s index c15152950..b977e575d 100644 --- a/libc/sysv/consts/__NR_userfaultfd.s +++ b/libc/sysv/consts/__NR_userfaultfd.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_userfaultfd 0x0143 -1 -1 -1 -1 +.syscon nr __NR_userfaultfd 0x0143 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_usrctl.s b/libc/sysv/consts/__NR_usrctl.s index bd1e0421b..bce4ede6f 100644 --- a/libc/sysv/consts/__NR_usrctl.s +++ b/libc/sysv/consts/__NR_usrctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_usrctl -1 0x20001bd -1 -1 -1 +.syscon nr __NR_usrctl -1 0x20001bd -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_ustat.s b/libc/sysv/consts/__NR_ustat.s index 5712d3cf5..ae409ccf3 100644 --- a/libc/sysv/consts/__NR_ustat.s +++ b/libc/sysv/consts/__NR_ustat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_ustat 0x0088 -1 -1 -1 -1 +.syscon nr __NR_ustat 0x0088 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_utime.s b/libc/sysv/consts/__NR_utime.s index aeb47f5a8..0989b3d53 100644 --- a/libc/sysv/consts/__NR_utime.s +++ b/libc/sysv/consts/__NR_utime.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_utime 0x0084 -1 -1 -1 -1 +.syscon nr __NR_utime 0x0084 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_utimensat.s b/libc/sysv/consts/__NR_utimensat.s index 06188bed3..6d4396241 100644 --- a/libc/sysv/consts/__NR_utimensat.s +++ b/libc/sysv/consts/__NR_utimensat.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_utimensat 0x0118 -1 0x0223 0x0054 -1 +.syscon nr __NR_utimensat 0x0118 -1 0x0223 0x0054 0x1d3 -1 diff --git a/libc/sysv/consts/__NR_utimes.s b/libc/sysv/consts/__NR_utimes.s index 283d88b09..72e025a88 100644 --- a/libc/sysv/consts/__NR_utimes.s +++ b/libc/sysv/consts/__NR_utimes.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_utimes 0x00eb 0x200008a 0x008a 0x004c -1 +.syscon nr __NR_utimes 0x00eb 0x200008a 0x008a 0x004c 0x1a4 -1 diff --git a/libc/sysv/consts/__NR_utrace.s b/libc/sysv/consts/__NR_utrace.s index abbdaf2e0..4b44611b2 100644 --- a/libc/sysv/consts/__NR_utrace.s +++ b/libc/sysv/consts/__NR_utrace.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_utrace -1 -1 0x014f 0x00d1 -1 +.syscon nr __NR_utrace -1 -1 0x014f 0x00d1 0x132 -1 diff --git a/libc/sysv/consts/__NR_uuidgen.s b/libc/sysv/consts/__NR_uuidgen.s index 663c165e5..9a97f6669 100644 --- a/libc/sysv/consts/__NR_uuidgen.s +++ b/libc/sysv/consts/__NR_uuidgen.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_uuidgen -1 -1 0x0188 -1 -1 +.syscon nr __NR_uuidgen -1 -1 0x0188 -1 0x163 -1 diff --git a/libc/sysv/consts/__NR_vadvise.s b/libc/sysv/consts/__NR_vadvise.s index c1f35c66b..90ea26c25 100644 --- a/libc/sysv/consts/__NR_vadvise.s +++ b/libc/sysv/consts/__NR_vadvise.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_vadvise -1 -1 0x0048 -1 -1 +.syscon nr __NR_vadvise -1 -1 0x0048 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_vfork.s b/libc/sysv/consts/__NR_vfork.s index 5eb5a551c..c9ac5b2d9 100644 --- a/libc/sysv/consts/__NR_vfork.s +++ b/libc/sysv/consts/__NR_vfork.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_vfork 0x003a 0x2000042 0x0042 0x0042 -1 +.syscon nr __NR_vfork 0x003a 0x2000042 0x0042 0x0042 0x042 -1 diff --git a/libc/sysv/consts/__NR_vfs_purge.s b/libc/sysv/consts/__NR_vfs_purge.s index e8a849d0b..f86afff23 100644 --- a/libc/sysv/consts/__NR_vfs_purge.s +++ b/libc/sysv/consts/__NR_vfs_purge.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_vfs_purge -1 0x20001c7 -1 -1 -1 +.syscon nr __NR_vfs_purge -1 0x20001c7 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_vhangup.s b/libc/sysv/consts/__NR_vhangup.s index 87f390436..0bde972cf 100644 --- a/libc/sysv/consts/__NR_vhangup.s +++ b/libc/sysv/consts/__NR_vhangup.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_vhangup 0x0099 -1 -1 -1 -1 +.syscon nr __NR_vhangup 0x0099 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_vm_pressure_monitor.s b/libc/sysv/consts/__NR_vm_pressure_monitor.s index 30f651c0a..7044fe45b 100644 --- a/libc/sysv/consts/__NR_vm_pressure_monitor.s +++ b/libc/sysv/consts/__NR_vm_pressure_monitor.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_vm_pressure_monitor -1 0x2000128 -1 -1 -1 +.syscon nr __NR_vm_pressure_monitor -1 0x2000128 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_vmsplice.s b/libc/sysv/consts/__NR_vmsplice.s index c21d55e1f..af32647c5 100644 --- a/libc/sysv/consts/__NR_vmsplice.s +++ b/libc/sysv/consts/__NR_vmsplice.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_vmsplice 0x0116 -1 -1 -1 -1 +.syscon nr __NR_vmsplice 0x0116 -1 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_wait.s b/libc/sysv/consts/__NR_wait.s index c1c2eac4d..76ebc21dd 100644 --- a/libc/sysv/consts/__NR_wait.s +++ b/libc/sysv/consts/__NR_wait.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_wait -1 -1 0x0054 -1 -1 +.syscon nr __NR_wait -1 -1 0x0054 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_wait4.s b/libc/sysv/consts/__NR_wait4.s index 9819ea0e2..ac1cbae13 100644 --- a/libc/sysv/consts/__NR_wait4.s +++ b/libc/sysv/consts/__NR_wait4.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_wait4 0x003d 0x2000007 0x0007 0x000b -1 +.syscon nr __NR_wait4 0x003d 0x2000007 0x0007 0x000b 0x1c1 -1 diff --git a/libc/sysv/consts/__NR_wait4_nocancel.s b/libc/sysv/consts/__NR_wait4_nocancel.s index a06f0179c..f273f5869 100644 --- a/libc/sysv/consts/__NR_wait4_nocancel.s +++ b/libc/sysv/consts/__NR_wait4_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_wait4_nocancel -1 0x2000190 -1 -1 -1 +.syscon nr __NR_wait4_nocancel -1 0x2000190 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_wait6.s b/libc/sysv/consts/__NR_wait6.s index e1494a1d4..da8ede4b0 100644 --- a/libc/sysv/consts/__NR_wait6.s +++ b/libc/sysv/consts/__NR_wait6.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_wait6 -1 -1 0x0214 -1 -1 +.syscon nr __NR_wait6 -1 -1 0x0214 -1 0x1e1 -1 diff --git a/libc/sysv/consts/__NR_waitevent.s b/libc/sysv/consts/__NR_waitevent.s index 0b9b42dd7..f16c2ab66 100644 --- a/libc/sysv/consts/__NR_waitevent.s +++ b/libc/sysv/consts/__NR_waitevent.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_waitevent -1 0x20000e8 -1 -1 -1 +.syscon nr __NR_waitevent -1 0x20000e8 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_waitid.s b/libc/sysv/consts/__NR_waitid.s index ea372680b..e8ed1fe51 100644 --- a/libc/sysv/consts/__NR_waitid.s +++ b/libc/sysv/consts/__NR_waitid.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_waitid 0x00f7 0x20000ad -1 -1 -1 +.syscon nr __NR_waitid 0x00f7 0x20000ad -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_waitid_nocancel.s b/libc/sysv/consts/__NR_waitid_nocancel.s index 047094655..8a15c8383 100644 --- a/libc/sysv/consts/__NR_waitid_nocancel.s +++ b/libc/sysv/consts/__NR_waitid_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_waitid_nocancel -1 0x20001a0 -1 -1 -1 +.syscon nr __NR_waitid_nocancel -1 0x20001a0 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_watchevent.s b/libc/sysv/consts/__NR_watchevent.s index 3f7656f50..46faf4cef 100644 --- a/libc/sysv/consts/__NR_watchevent.s +++ b/libc/sysv/consts/__NR_watchevent.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_watchevent -1 0x20000e7 -1 -1 -1 +.syscon nr __NR_watchevent -1 0x20000e7 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_work_interval_ctl.s b/libc/sysv/consts/__NR_work_interval_ctl.s index 5402d54a3..b162d47b4 100644 --- a/libc/sysv/consts/__NR_work_interval_ctl.s +++ b/libc/sysv/consts/__NR_work_interval_ctl.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_work_interval_ctl -1 0x20001f3 -1 -1 -1 +.syscon nr __NR_work_interval_ctl -1 0x20001f3 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_workq_kernreturn.s b/libc/sysv/consts/__NR_workq_kernreturn.s index 21e6a233d..5d94ff340 100644 --- a/libc/sysv/consts/__NR_workq_kernreturn.s +++ b/libc/sysv/consts/__NR_workq_kernreturn.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_workq_kernreturn -1 0x2000170 -1 -1 -1 +.syscon nr __NR_workq_kernreturn -1 0x2000170 -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_workq_open.s b/libc/sysv/consts/__NR_workq_open.s index 1cdcfce09..c949156c1 100644 --- a/libc/sysv/consts/__NR_workq_open.s +++ b/libc/sysv/consts/__NR_workq_open.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_workq_open -1 0x200016f -1 -1 -1 +.syscon nr __NR_workq_open -1 0x200016f -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_write.s b/libc/sysv/consts/__NR_write.s index 421b07e27..9cd881fdf 100644 --- a/libc/sysv/consts/__NR_write.s +++ b/libc/sysv/consts/__NR_write.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_write 0x0001 0x2000004 0x0004 0x0004 -1 +.syscon nr __NR_write 0x0001 0x2000004 0x0004 0x0004 0x004 -1 diff --git a/libc/sysv/consts/__NR_write_nocancel.s b/libc/sysv/consts/__NR_write_nocancel.s index 68113241d..875504701 100644 --- a/libc/sysv/consts/__NR_write_nocancel.s +++ b/libc/sysv/consts/__NR_write_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_write_nocancel -1 0x200018d -1 -1 -1 +.syscon nr __NR_write_nocancel -1 0x200018d -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_writev.s b/libc/sysv/consts/__NR_writev.s index 330123291..f59d868eb 100644 --- a/libc/sysv/consts/__NR_writev.s +++ b/libc/sysv/consts/__NR_writev.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_writev 0x0014 0x2000079 0x0079 0x0079 -1 +.syscon nr __NR_writev 0x0014 0x2000079 0x0079 0x0079 0x079 -1 diff --git a/libc/sysv/consts/__NR_writev_nocancel.s b/libc/sysv/consts/__NR_writev_nocancel.s index df882b0dd..054d6dc2c 100644 --- a/libc/sysv/consts/__NR_writev_nocancel.s +++ b/libc/sysv/consts/__NR_writev_nocancel.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_writev_nocancel -1 0x200019c -1 -1 -1 +.syscon nr __NR_writev_nocancel -1 0x200019c -1 -1 -1 -1 diff --git a/libc/sysv/consts/__NR_yield.s b/libc/sysv/consts/__NR_yield.s index b25899a00..f801bb4e6 100644 --- a/libc/sysv/consts/__NR_yield.s +++ b/libc/sysv/consts/__NR_yield.s @@ -1,2 +1,2 @@ .include "libc/sysv/consts/syscon.inc" -.syscon nr __NR_yield -1 -1 0x0141 -1 -1 +.syscon nr __NR_yield -1 -1 0x0141 -1 -1 -1 diff --git a/libc/sysv/consts/syscon.inc b/libc/sysv/consts/syscon.inc index b353e58d9..eed294e86 100644 --- a/libc/sysv/consts/syscon.inc +++ b/libc/sysv/consts/syscon.inc @@ -19,7 +19,7 @@ /* clang-format off */ .include "libc/macros.internal.inc" -.macro .syscon group:req name:req linux:req xnu:req freebsd:req openbsd:req windows:req +.macro .syscon group:req name:req linux:req xnu:req freebsd:req openbsd:req netbsd:req windows:req yoink _init_systemfive .section .piro.bss.sort.syscon.2.\group\().\name,"aw",@nobits \name: .quad 0 @@ -37,6 +37,9 @@ .section .sort.rodata.syscon.openbsd.2.\group\().\name,"a",@progbits .sleb128 \openbsd .previous + .section .sort.rodata.syscon.netbsd.2.\group\().\name,"a",@progbits + .sleb128 \netbsd + .previous .section .sort.rodata.syscon.windows.2.\group\().\name,"a",@progbits .sleb128 \windows .previous diff --git a/test/libc/unicode/strwidth_test.c b/libc/sysv/hog.c similarity index 86% rename from test/libc/unicode/strwidth_test.c rename to libc/sysv/hog.c index 3f5b07409..90dc96d9a 100644 --- a/test/libc/unicode/strwidth_test.c +++ b/libc/sysv/hog.c @@ -1,7 +1,7 @@ /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ │vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ ╞══════════════════════════════════════════════════════════════════════════════╡ -│ Copyright 2020 Justine Alexandra Roberts Tunney │ +│ Copyright 2021 Justine Alexandra Roberts Tunney │ │ │ │ Permission to use, copy, modify, and/or distribute this software for │ │ any purpose with or without fee is hereby granted, provided that the │ @@ -16,11 +16,7 @@ │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ -#include "libc/testlib/testlib.h" -#include "libc/unicode/unicode.h" -TEST(strwidth, test) { - EXPECT_EQ(5, strwidth("hello")); - EXPECT_EQ(5, strwidth("\1he\e[0;0mllo\e#8")); - EXPECT_EQ(10, strwidth("HELLO")); +unsigned hog(unsigned x) { + return (x & 0xf000000) | (x & 0x0fff000) >> 12; } diff --git a/libc/sysv/netbsd.py b/libc/sysv/netbsd.py new file mode 100644 index 000000000..cb97b60a5 --- /dev/null +++ b/libc/sysv/netbsd.py @@ -0,0 +1,62 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +import re +import sys +NETBSD = {} +MAXBIT = 0 + +def bsr(x): + r = -1 + while x: + r += 1 + x >>= 1 + return r + +def binify(x): + return "%016x" % (x) + +lines = open('libc/sysv/netbsd.txt').read().split('\n') +for line in lines: + if 'STD' not in line: continue + m = re.search(r'^(\d+).*?([_0-9A-Za-z]+)\(', line) + if not m: continue + NETBSD[m.group(2)] = int(m.group(1)) + +lines = open('libc/sysv/syscalls.sh').read().split('\n') +for line in lines: + if line.startswith('scall'): + fields = line.split() + name = fields[1] + if name.startswith("'"): name = name[1:] + if name.endswith("'"): name = name[:-1] + if name.startswith("__"): name = name[2:] + if name.startswith("sys_"): name = name[4:] + if name.endswith("_bsd"): name = name[:-4] + if name.endswith("_freebsd"): name = name[:-8] + numbas = fields[2][2:] + numbers = int(numbas, 16) + systemd = (numbers >> 000) & 0xffff + xnu = (numbers >> 020) & 0x0fff + xnukind = (numbers >> 034) & 0xf + freebsd = (numbers >> 040) & 0xffff + openbsd = (numbers >> 060) & 0xffff + netbsd = NETBSD.get(name, 0xffff) + com = "" + if netbsd != 0xffff: + if netbsd == systemd: com += " SYSTEMD" + if netbsd == xnu: com += " xnu" + if netbsd == freebsd: com += " freebsd" + if netbsd == openbsd: com += " openbsd" + getbit = lambda x: 0 if x == 0xffff else bsr(x) + maxbit = max([getbit(systemd), getbit(xnu), getbit(freebsd), getbit(openbsd), getbit(netbsd)]) + MAXBIT = max(maxbit, MAXBIT) + # print "%-30s %04x %04x %04x %04x %04x %3d %3d %s" % (name, systemd, xnu, freebsd, openbsd, netbsd, maxbit, MAXBIT, com) + systemd &= 0b111111111111 + xnu &= 0b111111111111 + freebsd &= 0b111111111111 + openbsd &= 0b111111111111 + netbsd &= 0b111111111111 + numba = netbsd << (4*13) | openbsd << (4*10) | freebsd << (4*7) | xnukind << (4*6) | xnu << (4*3) | systemd + assert numbas in line + line = line.replace(numbas, binify(numba)) + print line diff --git a/libc/sysv/netbsd.txt b/libc/sysv/netbsd.txt new file mode 100644 index 000000000..a4f5338ba --- /dev/null +++ b/libc/sysv/netbsd.txt @@ -0,0 +1,554 @@ +0 INDIR { int|sys||syscall(int code, ... register_t args[SYS_MAXSYSARGS]); } +1 STD { void|sys||exit(int rval); } +2 STD { int|sys||fork(void); } +3 STD RUMP { ssize_t|sys||read(int fd, void *buf, size_t nbyte); } +4 STD RUMP { ssize_t|sys||write(int fd, const void *buf, size_t nbyte); } +5 STD RUMP { int|sys||open(const char *path, int flags, ... mode_t mode); } +6 STD RUMP { int|sys||close(int fd); } +7 COMPAT_50 MODULAR compat_50 { int|sys||wait4(pid_t pid, int *status, int options, struct rusage50 *rusage); } +8 COMPAT_43 MODULAR compat_43 { int|sys||creat(const char *path, mode_t mode); } ocreat +9 STD RUMP { int|sys||link(const char *path, const char *link); } +10 STD RUMP { int|sys||unlink(const char *path); } +11 OBSOL execv +12 STD RUMP { int|sys||chdir(const char *path); } +13 STD RUMP { int|sys||fchdir(int fd); } +14 COMPAT_50 MODULAR compat_50 RUMP { int|sys||mknod(const char *path, mode_t mode, uint32_t dev); } +15 STD RUMP { int|sys||chmod(const char *path, mode_t mode); } +16 STD RUMP { int|sys||chown(const char *path, uid_t uid, gid_t gid); } +17 STD { int|sys||obreak(char *nsize); } break +18 COMPAT_20 MODULAR compat_20 { int|sys||getfsstat(struct statfs12 *buf, long bufsize, int flags); } +19 COMPAT_43 MODULAR compat_43 { long|sys||lseek(int fd, long offset, int whence); } olseek +20 NOERR RUMP { pid_t|sys||getpid_with_ppid(void); } getpid +21 COMPAT_40 MODULAR compat_40 { int|sys||mount(const char *type, const char *path, int flags, void *data); } +22 STD RUMP { int|sys||unmount(const char *path, int flags); } +23 STD RUMP { int|sys||setuid(uid_t uid); } +24 NOERR RUMP { uid_t|sys||getuid_with_euid(void); } getuid +25 NOERR RUMP { uid_t|sys||geteuid(void); } +26 STD MODULAR ptrace { int|sys||ptrace(int req, pid_t pid, void *addr, int data); } +27 STD RUMP { ssize_t|sys||recvmsg(int s, struct msghdr *msg, int flags); } +28 STD RUMP { ssize_t|sys||sendmsg(int s, const struct msghdr *msg, int flags); } +29 STD RUMP { ssize_t|sys||recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlenaddr); } +30 STD RUMP { int|sys||accept(int s, struct sockaddr *name, socklen_t *anamelen); } +31 STD RUMP { int|sys||getpeername(int fdes, struct sockaddr *asa, socklen_t *alen); } +32 STD RUMP { int|sys||getsockname(int fdes, struct sockaddr *asa, socklen_t *alen); } +33 STD RUMP { int|sys||access(const char *path, int flags); } +34 STD RUMP { int|sys||chflags(const char *path, u_long flags); } +35 STD RUMP { int|sys||fchflags(int fd, u_long flags); } +36 NOERR RUMP { void|sys||sync(void); } +37 STD { int|sys||kill(pid_t pid, int signum); } +38 COMPAT_43 MODULAR compat_43 { int|sys||stat(const char *path, struct stat43 *ub); } stat43 +39 NOERR RUMP { pid_t|sys||getppid(void); } +40 COMPAT_43 MODULAR compat_43 { int|sys||lstat(const char *path, struct stat43 *ub); } lstat43 +41 STD RUMP { int|sys||dup(int fd); } +42 STD RUMP { int|sys||pipe(void); } +43 NOERR RUMP { gid_t|sys||getegid(void); } +44 STD { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); } +45 STD RUMP { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); } +46 COMPAT_13 MODULAR compat_13 { int|sys||sigaction(int signum, const struct sigaction13 *nsa, struct sigaction13 *osa); } sigaction13 +47 NOERR RUMP { gid_t|sys||getgid_with_egid(void); } getgid +48 COMPAT_13 MODULAR compat_13 { int|sys||sigprocmask(int how, int mask); } sigprocmask13 +49 STD RUMP { int|sys||__getlogin(char *namebuf, size_t namelen); } +50 STD RUMP { int|sys||__setlogin(const char *namebuf); } +51 STD { int|sys||acct(const char *path); } +52 COMPAT_13 MODULAR compat_13 { int|sys||sigpending(void); } sigpending13 +53 COMPAT_13 MODULAR compat_13 { int|sys||sigaltstack( const struct sigaltstack13 *nss, struct sigaltstack13 *oss); } sigaltstack13 +54 STD RUMP { int|sys||ioctl(int fd, u_long com, ... void *data); } +55 COMPAT_12 MODULAR compat_12 { int|sys||reboot(int opt); } oreboot +56 STD RUMP { int|sys||revoke(const char *path); } +57 STD RUMP { int|sys||symlink(const char *path, const char *link); } +58 STD RUMP { ssize_t|sys||readlink(const char *path, char *buf, size_t count); } +59 STD { int|sys||execve(const char *path, char * const *argp, char * const *envp); } +60 STD RUMP { mode_t|sys||umask(mode_t newmask); } +61 STD RUMP { int|sys||chroot(const char *path); } +62 COMPAT_43 MODULAR compat_43 { int|sys||fstat(int fd, struct stat43 *sb); } fstat43 +63 COMPAT_43 MODULAR compat_43 { int|sys||getkerninfo(int op, char *where, int *size, int arg); } ogetkerninfo +64 COMPAT_43 MODULAR compat_43 { int|sys||getpagesize(void); } ogetpagesize +65 COMPAT_12 MODULAR compat_12 { int|sys||msync(void *addr, size_t len); } +; XXX COMPAT_??? for 4.4BSD-compatible vfork(2)? +66 STD { int|sys||vfork(void); } +67 OBSOL vread +68 OBSOL vwrite +69 OBSOL sbrk +70 OBSOL sstk +71 COMPAT_43 MODULAR compat_43 { int|sys||mmap(void *addr, size_t len, int prot, int flags, int fd, long pos); } ommap +72 STD { int|sys||ovadvise(int anom); } vadvise +73 STD { int|sys||munmap(void *addr, size_t len); } +74 STD { int|sys||mprotect(void *addr, size_t len, int prot); } +75 STD { int|sys||madvise(void *addr, size_t len, int behav); } +76 OBSOL vhangup +77 OBSOL vlimit +78 STD { int|sys||mincore(void *addr, size_t len, char *vec); } +79 STD RUMP { int|sys||getgroups(int gidsetsize, gid_t *gidset); } +80 STD RUMP { int|sys||setgroups(int gidsetsize, const gid_t *gidset); } +81 STD RUMP { int|sys||getpgrp(void); } +82 STD RUMP { int|sys||setpgid(pid_t pid, pid_t pgid); } +83 COMPAT_50 MODULAR compat_50 { int|sys||setitimer(int which, const struct itimerval50 *itv, struct itimerval50 *oitv); } +84 COMPAT_43 MODULAR compat_43 { int|sys||wait(void); } owait +85 COMPAT_12 MODULAR compat_12 { int|sys||swapon(const char *name); } oswapon +86 COMPAT_50 MODULAR compat_50 { int|sys||getitimer(int which, struct itimerval50 *itv); } +87 COMPAT_43 MODULAR compat_43 { int|sys||gethostname(char *hostname, u_int len); } ogethostname +88 COMPAT_43 MODULAR compat_43 { int|sys||sethostname(char *hostname, u_int len); } osethostname +89 COMPAT_43 MODULAR compat_43 { int|sys||getdtablesize(void); } ogetdtablesize +90 STD RUMP { int|sys||dup2(int from, int to); } +91 STD RUMP { ssize_t|sys||getrandom(void *buf, size_t buflen, unsigned int flags); } +92 STD RUMP { int|sys||fcntl(int fd, int cmd, ... void *arg); } +93 COMPAT_50 MODULAR compat_50 RUMP { int|sys||select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval50 *tv); } +94 UNIMPL setdopt +95 STD RUMP { int|sys||fsync(int fd); } +96 STD { int|sys||setpriority(int which, id_t who, int prio); } +97 COMPAT_30 MODULAR compat_30 { int|sys||socket(int domain, int type, int protocol); } +98 STD RUMP { int|sys||connect(int s, const struct sockaddr *name, socklen_t namelen); } +99 COMPAT_43 MODULAR compat_43 { int|sys||accept(int s, void *name, socklen_t *anamelen); } oaccept +100 STD { int|sys||getpriority(int which, id_t who); } +101 COMPAT_43 MODULAR compat_43 { int|sys||send(int s, void *buf, int len, int flags); } osend +102 COMPAT_43 MODULAR compat_43 { int|sys||recv(int s, void *buf, int len, int flags); } orecv +103 COMPAT_13 MODULAR compat_13 { int|sys||sigreturn(struct sigcontext13 *sigcntxp); } sigreturn13 +104 STD RUMP { int|sys||bind(int s, const struct sockaddr *name, socklen_t namelen); } +105 STD RUMP { int|sys||setsockopt(int s, int level, int name, const void *val, socklen_t valsize); } +106 STD RUMP { int|sys||listen(int s, int backlog); } +107 OBSOL vtimes +108 COMPAT_43 MODULAR compat_43 { int|sys||sigvec(int signum, struct sigvec *nsv, struct sigvec *osv); } osigvec +109 COMPAT_43 MODULAR compat { int|sys||sigblock(int mask); } osigblock +110 COMPAT_43 MODULAR compat { int|sys||sigsetmask(int mask); } osigsetmask +111 COMPAT_13 MODULAR compat { int|sys||sigsuspend(int mask); } sigsuspend13 +112 COMPAT_43 MODULAR compat_43 { int|sys||sigstack(struct sigstack *nss, struct sigstack *oss); } osigstack +113 COMPAT_43 MODULAR compat_43 { int|sys||recvmsg(int s, struct omsghdr *msg, int flags); } orecvmsg +114 COMPAT_43 MODULAR compat_43 { int|sys||sendmsg(int s, void *msg, int flags); } osendmsg +115 OBSOL vtrace +116 COMPAT_50 MODULAR compat_50 { int|sys||gettimeofday(struct timeval50 *tp, void *tzp); } +117 COMPAT_50 MODULAR compat_50 { int|sys||getrusage(int who, struct rusage50 *rusage); } +118 STD RUMP { int|sys||getsockopt(int s, int level, int name, void *val, socklen_t *avalsize); } +119 OBSOL resuba +120 STD RUMP { ssize_t|sys||readv(int fd, const struct iovec *iovp, int iovcnt); } +121 STD RUMP { ssize_t|sys||writev(int fd, const struct iovec *iovp, int iovcnt); } +122 COMPAT_50 MODULAR compat_50 { int|sys||settimeofday(const struct timeval50 *tv, const void *tzp); } +123 STD RUMP { int|sys||fchown(int fd, uid_t uid, gid_t gid); } +124 STD RUMP { int|sys||fchmod(int fd, mode_t mode); } +125 COMPAT_43 MODULAR compat_43 { int|sys||recvfrom(int s, void *buf, size_t len, int flags, void *from, socklen_t *fromlenaddr); } orecvfrom +126 STD RUMP { int|sys||setreuid(uid_t ruid, uid_t euid); } +127 STD RUMP { int|sys||setregid(gid_t rgid, gid_t egid); } +128 STD RUMP { int|sys||rename(const char *from, const char *to); } +129 COMPAT_43 MODULAR compat_43 { int|sys||truncate(const char *path, long length); } otruncate +130 COMPAT_43 MODULAR compat_43 { int|sys||ftruncate(int fd, long length); } oftruncate +131 STD RUMP { int|sys||flock(int fd, int how); } +132 STD RUMP { int|sys||mkfifo(const char *path, mode_t mode); } +133 STD RUMP { ssize_t|sys||sendto(int s, const void *buf, size_t len, int flags, const struct sockaddr *to, socklen_t tolen); } +134 STD RUMP { int|sys||shutdown(int s, int how); } +135 STD RUMP { int|sys||socketpair(int domain, int type, int protocol, int *rsv); } +136 STD RUMP { int|sys||mkdir(const char *path, mode_t mode); } +137 STD RUMP { int|sys||rmdir(const char *path); } +138 COMPAT_50 MODULAR compat_50 RUMP { int|sys||utimes(const char *path, const struct timeval50 *tptr); } +139 OBSOL 4.2 sigreturn +140 COMPAT_50 MODULAR compat_50 { int|sys||adjtime(const struct timeval50 *delta, struct timeval50 *olddelta); } +141 COMPAT_43 MODULAR compat_43 { int|sys||getpeername(int fdes, void *asa, socklen_t *alen); } ogetpeername +142 COMPAT_43 MODULAR compat_43 { int32_t|sys||gethostid(void); } ogethostid +143 COMPAT_43 MODULAR compat_43 { int|sys||sethostid(int32_t hostid); } osethostid +144 COMPAT_43 MODULAR compat_43 { int|sys||getrlimit(int which, struct orlimit *rlp); } ogetrlimit +145 COMPAT_43 MODULAR compat_43 { int|sys||setrlimit(int which, const struct orlimit *rlp); } osetrlimit +146 COMPAT_43 MODULAR compat_43 { int|sys||killpg(int pgid, int signum); } okillpg +147 STD RUMP { int|sys||setsid(void); } +148 COMPAT_50 MODULAR compat_50_quota { int|sys||quotactl(const char *path, int cmd, int uid, void *arg); } +149 COMPAT_43 MODULAR compat_43 { int|sys||quota(void); } oquota +150 COMPAT_43 MODULAR compat_43 { int|sys||getsockname(int fdec, void *asa, socklen_t *alen); } ogetsockname + +; Syscalls 151-180 inclusive are reserved for vendor-specific +; system calls. (This includes various calls added for compatibity +; with other Unix variants.) +; Some of these calls are now supported by BSD... +151 UNIMPL +152 UNIMPL +153 UNIMPL +154 UNIMPL +155 STD MODULAR nfsserver RUMP { int|sys||nfssvc(int flag, void *argp); } +156 COMPAT_43 MODULAR compat_43 { int|sys||getdirentries(int fd, char *buf, u_int count, long *basep); } ogetdirentries +157 COMPAT_20 MODULAR compat_20 { int|sys||statfs(const char *path, struct statfs12 *buf); } +158 COMPAT_20 MODULAR compat_20 { int|sys||fstatfs(int fd, struct statfs12 *buf); } +159 UNIMPL +160 UNIMPL +161 COMPAT_30 MODULAR compat_30 { int|sys||getfh(const char *fname, struct compat_30_fhandle *fhp); } +162 COMPAT_09 MODULAR compat_09 { int|sys||getdomainname(char *domainname, int len); } ogetdomainname +163 COMPAT_09 MODULAR compat_09 { int|sys||setdomainname(char *domainname, int len); } osetdomainname +164 COMPAT_09 MODULAR compat { int|sys||uname(struct outsname *name); } ouname +165 STD { int|sys||sysarch(int op, void *parms); } +166 STD { int|sys||__futex(int *uaddr, int op, int val, const struct timespec *timeout, int *uaddr2, int val2, int val3); } +167 STD { int|sys||__futex_set_robust_list(void *head, size_t len); } +168 STD { int|sys||__futex_get_robust_list(lwpid_t lwpid, void **headp, size_t *lenp); } +; XXX more generally, never on machines where sizeof(void *) != sizeof(int) +#if !defined(_LP64) +169 COMPAT_10 MODULAR compat_sysv_10 { int|sys||semsys(int which, int a2, int a3, int a4, int a5); } osemsys +#else +169 EXCL 1.0 semsys +#endif +; XXX more generally, never on machines where sizeof(void *) != sizeof(int) +#if !defined(_LP64) +170 COMPAT_10 MODULAR compat_sysv_10 { int|sys||msgsys(int which, int a2, int a3, int a4, int a5, int a6); } omsgsys +#else +170 EXCL 1.0 msgsys +#endif +; XXX more generally, never on machines where sizeof(void *) != sizeof(int) +#if !defined(_LP64) +171 COMPAT_10 MODULAR compat_sysv_10 { int|sys||shmsys(int which, int a2, int a3, int a4); } oshmsys +#else +171 EXCL 1.0 shmsys +#endif +172 UNIMPL +173 STD RUMP { ssize_t|sys||pread(int fd, void *buf, size_t nbyte, int PAD, off_t offset); } +174 STD RUMP { ssize_t|sys||pwrite(int fd, const void *buf, size_t nbyte, int PAD, off_t offset); } +; For some reason, ntp_gettime doesn't want to raise SIGSYS when it's excluded. +175 COMPAT_30 MODULAR compat_30 { int|sys||ntp_gettime(struct ntptimeval30 *ntvp); } +#if defined(NTP) || !defined(_KERNEL_OPT) +176 STD { int|sys||ntp_adjtime(struct timex *tp); } +#else +176 EXCL ntp_adjtime +#endif +177 UNIMPL +178 UNIMPL +179 UNIMPL +180 UNIMPL + +; Syscalls 180-199 are used by/reserved for BSD +181 STD RUMP { int|sys||setgid(gid_t gid); } +182 STD RUMP { int|sys||setegid(gid_t egid); } +183 STD RUMP { int|sys||seteuid(uid_t euid); } +184 STD MODULAR lfs { int|sys||lfs_bmapv(fsid_t *fsidp, struct block_info *blkiov, int blkcnt); } +185 STD MODULAR lfs { int|sys||lfs_markv(fsid_t *fsidp, struct block_info *blkiov, int blkcnt); } +186 STD MODULAR lfs { int|sys||lfs_segclean(fsid_t *fsidp, u_long segment); } +187 COMPAT_50 MODULAR compat_50 { int|sys||lfs_segwait(fsid_t *fsidp, struct timeval50 *tv); } +188 COMPAT_12 MODULAR compat_12 { int|sys||stat(const char *path, struct stat12 *ub); } stat12 +189 COMPAT_12 MODULAR compat_12 { int|sys||fstat(int fd, struct stat12 *sb); } fstat12 +190 COMPAT_12 MODULAR compat_12 { int|sys||lstat(const char *path, struct stat12 *ub); } lstat12 +191 STD RUMP { long|sys||pathconf(const char *path, int name); } +192 STD RUMP { long|sys||fpathconf(int fd, int name); } +193 STD RUMP { int|sys||getsockopt2(int s, int level, int name, void *val, socklen_t *avalsize); } +194 STD RUMP { int|sys||getrlimit(int which, struct rlimit *rlp); } +195 STD RUMP { int|sys||setrlimit(int which, const struct rlimit *rlp); } +196 COMPAT_12 MODULAR compat_12 { int|sys||getdirentries(int fd, char *buf, u_int count, long *basep); } +197 STD { void *|sys||mmap(void *addr, size_t len, int prot, int flags, int fd, long PAD, off_t pos); } +198 INDIR { quad_t|sys||__syscall(quad_t code, ... register_t args[SYS_MAXSYSARGS]); } +199 STD RUMP { off_t|sys||lseek(int fd, int PAD, off_t offset, int whence); } +200 STD RUMP { int|sys||truncate(const char *path, int PAD, off_t length); } +201 STD RUMP { int|sys||ftruncate(int fd, int PAD, off_t length); } +202 STD RUMP { int|sys||__sysctl(const int *name, u_int namelen, void *oldv, size_t *oldlenp, const void *newv, size_t newlen); } +203 STD { int|sys||mlock(const void *addr, size_t len); } +204 STD { int|sys||munlock(const void *addr, size_t len); } +205 STD { int|sys||undelete(const char *path); } +206 COMPAT_50 MODULAR compat_50 RUMP { int|sys||futimes(int fd, const struct timeval50 *tptr); } +207 STD RUMP { pid_t|sys||getpgid(pid_t pid); } +208 STD RUMP { int|sys||reboot(int opt, char *bootstr); } +209 STD RUMP { int|sys||poll(struct pollfd *fds, u_int nfds, int timeout); } +; +; Syscalls 210-219 are reserved for dynamically loaded syscalls +; +210 EXTERN MODULAR openafs { int|sys||afssys(long id, long a1, long a2, long a3, long a4, long a5, long a6); } +211 UNIMPL +212 UNIMPL +213 UNIMPL +214 UNIMPL +215 UNIMPL +216 UNIMPL +217 UNIMPL +218 UNIMPL +219 UNIMPL +; System calls 220-300 are reserved for use by NetBSD +220 COMPAT_14 MODULAR compat_sysv_14 { int|sys||__semctl(int semid, int semnum, int cmd, union __semun *arg); } +221 STD MODULAR sysv_ipc { int|sys||semget(key_t key, int nsems, int semflg); } +222 STD MODULAR sysv_ipc { int|sys||semop(int semid, struct sembuf *sops, size_t nsops); } +223 STD MODULAR sysv_ipc { int|sys||semconfig(int flag); } +224 COMPAT_14 MODULAR compat_sysv_14 { int|sys||msgctl(int msqid, int cmd, struct msqid_ds14 *buf); } +225 STD MODULAR sysv_ipc { int|sys||msgget(key_t key, int msgflg); } +226 STD MODULAR sysv_ipc { int|sys||msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); } +227 STD MODULAR sysv_ipc { ssize_t|sys||msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); } +228 STD MODULAR sysv_ipc { void *|sys||shmat(int shmid, const void *shmaddr, int shmflg); } +229 COMPAT_14 MODULAR compat_sysv_14 { int|sys||shmctl(int shmid, int cmd, struct shmid_ds14 *buf); } +230 STD MODULAR sysv_ipc { int|sys||shmdt(const void *shmaddr); } +231 STD MODULAR sysv_ipc { int|sys||shmget(key_t key, size_t size, int shmflg); } +232 COMPAT_50 MODULAR compat_50 { int|sys||clock_gettime(clockid_t clock_id, struct timespec50 *tp); } +233 COMPAT_50 MODULAR compat_50 { int|sys||clock_settime(clockid_t clock_id, const struct timespec50 *tp); } +234 COMPAT_50 MODULAR compat_50 { int|sys||clock_getres(clockid_t clock_id, struct timespec50 *tp); } +235 STD RUMP { int|sys||timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid); } +236 STD RUMP { int|sys||timer_delete(timer_t timerid); } +237 COMPAT_50 MODULAR compat_50 { int|sys||timer_settime(timer_t timerid, int flags, const struct itimerspec50 *value, struct itimerspec50 *ovalue); } +238 COMPAT_50 MODULAR compat_50 { int|sys||timer_gettime(timer_t timerid, struct itimerspec50 *value); } +239 STD RUMP { int|sys||timer_getoverrun(timer_t timerid); } +; +; Syscalls 240-269 are reserved for other IEEE Std1003.1b syscalls +; +240 COMPAT_50 MODULAR compat_50 { int|sys||nanosleep(const struct timespec50 *rqtp, struct timespec50 *rmtp); } +241 STD RUMP { int|sys||fdatasync(int fd); } +242 STD { int|sys||mlockall(int flags); } +243 STD { int|sys||munlockall(void); } +244 COMPAT_50 MODULAR compat_50 { int|sys||__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec50 *timeout); } +245 STD { int|sys||sigqueueinfo(pid_t pid, const siginfo_t *info); } +246 STD RUMP { int|sys||modctl(int cmd, void *arg); } +247 STD MODULAR ksem RUMP { int|sys||_ksem_init(unsigned int value, intptr_t *idp); } +248 STD MODULAR ksem RUMP { int|sys||_ksem_open(const char *name, int oflag, mode_t mode, unsigned int value, intptr_t *idp); } +249 STD MODULAR ksem RUMP { int|sys||_ksem_unlink(const char *name); } +250 STD MODULAR ksem RUMP { int|sys||_ksem_close(intptr_t id); } +251 STD MODULAR ksem RUMP { int|sys||_ksem_post(intptr_t id); } +252 STD MODULAR ksem RUMP { int|sys||_ksem_wait(intptr_t id); } +253 STD MODULAR ksem RUMP { int|sys||_ksem_trywait(intptr_t id); } +254 STD MODULAR ksem RUMP { int|sys||_ksem_getvalue(intptr_t id, unsigned int *value); } +255 STD MODULAR ksem RUMP { int|sys||_ksem_destroy(intptr_t id); } +256 STD MODULAR ksem RUMP { int|sys||_ksem_timedwait(intptr_t id, const struct timespec *abstime); } +257 STD MODULAR mqueue { mqd_t|sys||mq_open(const char * name, int oflag, mode_t mode, struct mq_attr *attr); } +258 STD MODULAR mqueue { int|sys||mq_close(mqd_t mqdes); } +259 STD MODULAR mqueue { int|sys||mq_unlink(const char *name); } +260 STD MODULAR mqueue { int|sys||mq_getattr(mqd_t mqdes, struct mq_attr *mqstat); } +261 STD MODULAR mqueue { int|sys||mq_setattr(mqd_t mqdes, const struct mq_attr *mqstat, struct mq_attr *omqstat); } +262 STD MODULAR mqueue { int|sys||mq_notify(mqd_t mqdes, const struct sigevent *notification); } +263 STD MODULAR mqueue { int|sys||mq_send(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio); } +264 STD MODULAR mqueue { ssize_t|sys||mq_receive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio); } +265 COMPAT_50 MODULAR compat_50 { int|sys||mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio, const struct timespec50 *abs_timeout); } +266 COMPAT_50 MODULAR compat_50 { ssize_t|sys||mq_timedreceive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio, const struct timespec50 *abs_timeout); } +267 UNIMPL +268 UNIMPL +269 UNIMPL +270 STD RUMP { int|sys||__posix_rename(const char *from, const char *to); } +271 STD { int|sys||swapctl(int cmd, void *arg, int misc); } +272 COMPAT_30 MODULAR compat_30 { int|sys||getdents(int fd, char *buf, size_t count); } +273 STD { int|sys||minherit(void *addr, size_t len, int inherit); } +274 STD RUMP { int|sys||lchmod(const char *path, mode_t mode); } +275 STD RUMP { int|sys||lchown(const char *path, uid_t uid, gid_t gid); } +276 COMPAT_50 MODULAR compat_50 RUMP { int|sys||lutimes(const char *path, const struct timeval50 *tptr); } +277 STD { int|sys|13|msync(void *addr, size_t len, int flags); } +278 COMPAT_30 MODULAR compat_30 { int|sys|13|stat(const char *path, struct stat13 *ub); } +279 COMPAT_30 MODULAR compat_30 { int|sys|13|fstat(int fd, struct stat13 *sb); } +280 COMPAT_30 MODULAR compat_30 { int|sys|13|lstat(const char *path, struct stat13 *ub); } +281 STD { int|sys|14|sigaltstack( const struct sigaltstack *nss, struct sigaltstack *oss); } +282 STD { int|sys|14|vfork(void); } +283 STD RUMP { int|sys||__posix_chown(const char *path, uid_t uid, gid_t gid); } +284 STD RUMP { int|sys||__posix_fchown(int fd, uid_t uid, gid_t gid); } +285 STD RUMP { int|sys||__posix_lchown(const char *path, uid_t uid, gid_t gid); } +286 STD RUMP { pid_t|sys||getsid(pid_t pid); } +287 STD { pid_t|sys||__clone(int flags, void *stack); } +288 STD RUMP { int|sys||fktrace(int fd, int ops, int facs, pid_t pid); } +289 STD RUMP { ssize_t|sys||preadv(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); } +290 STD RUMP { ssize_t|sys||pwritev(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); } +291 COMPAT_16 MODULAR compat_16 { int|sys|14|sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); } +292 STD { int|sys|14|sigpending(sigset_t *set); } +293 STD { int|sys|14|sigprocmask(int how, const sigset_t *set, sigset_t *oset); } +294 STD { int|sys|14|sigsuspend(const sigset_t *set); } +295 COMPAT_16 MODULAR compat_16 { int|sys|14|sigreturn(struct sigcontext *sigcntxp); } +296 STD RUMP { int|sys||__getcwd(char *bufp, size_t length); } +297 STD RUMP { int|sys||fchroot(int fd); } +298 COMPAT_30 MODULAR compat_30 { int|sys||fhopen(const struct compat_30_fhandle *fhp, int flags); } +299 COMPAT_30 MODULAR compat_30 { int|sys||fhstat(const struct compat_30_fhandle *fhp, struct stat13 *sb); } +300 COMPAT_20 MODULAR compat_20 { int|sys||fhstatfs(const struct compat_30_fhandle *fhp, struct statfs12 *buf); } +301 COMPAT_50 MODULAR compat_sysv_50 { int|sys|13|__semctl(int semid, int semnum, int cmd, ... union __semun *arg); } +302 COMPAT_50 MODULAR compat_sysv_50 { int|sys|13|msgctl(int msqid, int cmd, struct msqid_ds *buf); } +303 COMPAT_50 MODULAR compat_sysv_50 { int|sys|13|shmctl(int shmid, int cmd, struct shmid_ds13 *buf); } +304 STD RUMP { int|sys||lchflags(const char *path, u_long flags); } +305 NOERR RUMP { int|sys||issetugid(void); } +306 STD RUMP { int|sys||utrace(const char *label, void *addr, size_t len); } +307 STD { int|sys||getcontext(struct __ucontext *ucp); } +308 STD { int|sys||setcontext(const struct __ucontext *ucp); } +309 STD { int|sys||_lwp_create(const struct __ucontext *ucp, u_long flags, lwpid_t *new_lwp); } +310 STD { int|sys||_lwp_exit(void); } +311 STD { lwpid_t|sys||_lwp_self(void); } +312 STD { int|sys||_lwp_wait(lwpid_t wait_for, lwpid_t *departed); } +313 STD { int|sys||_lwp_suspend(lwpid_t target); } +314 STD { int|sys||_lwp_continue(lwpid_t target); } +315 STD { int|sys||_lwp_wakeup(lwpid_t target); } +316 STD { void *|sys||_lwp_getprivate(void); } +317 STD { void|sys||_lwp_setprivate(void *ptr); } +318 STD { int|sys||_lwp_kill(lwpid_t target, int signo); } +319 STD { int|sys||_lwp_detach(lwpid_t target); } +320 COMPAT_50 MODULAR compat_50 { int|sys||_lwp_park(const struct timespec50 *ts, lwpid_t unpark, const void *hint, const void *unparkhint); } +321 STD { int|sys||_lwp_unpark(lwpid_t target, const void *hint); } +322 STD { ssize_t|sys||_lwp_unpark_all(const lwpid_t *targets, size_t ntargets, const void *hint); } +323 STD { int|sys||_lwp_setname(lwpid_t target, const char *name); } +324 STD { int|sys||_lwp_getname(lwpid_t target, char *name, size_t len); } +325 STD { int|sys||_lwp_ctl(int features, struct lwpctl **address); } +; Syscalls 326-339 reserved for LWP syscalls. +326 UNIMPL +327 UNIMPL +328 UNIMPL +329 UNIMPL +; SA system calls. +330 COMPAT_60 MODULAR compat_60 { int|sys||sa_register(void *newv, void **oldv, int flags, ssize_t stackinfo_offset); } +331 COMPAT_60 MODULAR compat_60 { int|sys||sa_stacks(int num, stack_t *stacks); } +332 COMPAT_60 MODULAR compat_60 { int|sys||sa_enable(void); } +333 COMPAT_60 MODULAR compat_60 { int|sys||sa_setconcurrency(int concurrency); } +334 COMPAT_60 MODULAR compat_60 { int|sys||sa_yield(void); } +335 COMPAT_60 MODULAR compat_60 { int|sys||sa_preempt(int sa_id); } +336 OBSOL sys_sa_unblockyield +; +; Syscalls 337-339 are reserved for other scheduler activation syscalls. +; +337 UNIMPL +338 UNIMPL +339 UNIMPL +340 STD { int|sys||__sigaction_sigtramp(int signum, const struct sigaction *nsa, struct sigaction *osa, const void *tramp, int vers); } +341 OBSOL sys_pmc_get_info +342 OBSOL sys_pmc_control +343 STD { int|sys||rasctl(void *addr, size_t len, int op); } +344 STD RUMP { int|sys||kqueue(void); } +345 COMPAT_50 MODULAR compat_50 RUMP { int|sys||kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec50 *timeout); } + +; Scheduling system calls. +346 STD { int|sys||_sched_setparam(pid_t pid, lwpid_t lid, int policy, const struct sched_param *params); } +347 STD { int|sys||_sched_getparam(pid_t pid, lwpid_t lid, int *policy, struct sched_param *params); } +348 STD { int|sys||_sched_setaffinity(pid_t pid, lwpid_t lid, size_t size, const cpuset_t *cpuset); } +349 STD { int|sys||_sched_getaffinity(pid_t pid, lwpid_t lid, size_t size, cpuset_t *cpuset); } +350 STD { int|sys||sched_yield(void); } +351 STD { int|sys||_sched_protect(int priority); } +352 UNIMPL +353 UNIMPL + +354 STD RUMP { int|sys||fsync_range(int fd, int flags, off_t start, off_t length); } +355 STD { int|sys||uuidgen(struct uuid *store, int count); } +356 COMPAT_90 MODULAR compat_90 { int|sys||getvfsstat(struct statvfs90 *buf, size_t bufsize, int flags); } +357 COMPAT_90 MODULAR compat_90 { int|sys||statvfs1(const char *path, struct statvfs90 *buf, int flags); } +358 COMPAT_90 MODULAR compat_90 { int|sys||fstatvfs1(int fd, struct statvfs90 *buf, int flags); } +359 COMPAT_30 MODULAR compat_30 { int|sys||fhstatvfs1( const struct compat_30_fhandle *fhp, struct statvfs90 *buf, int flags); } +360 STD RUMP { int|sys||extattrctl(const char *path, int cmd, const char *filename, int attrnamespace, const char *attrname); } +361 STD RUMP { int|sys||extattr_set_file(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); } +362 STD RUMP { ssize_t|sys||extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); } +363 STD RUMP { int|sys||extattr_delete_file(const char *path, int attrnamespace, const char *attrname); } +364 STD RUMP { int|sys||extattr_set_fd(int fd, int attrnamespace, const char *attrname, const void *data, size_t nbytes); } +365 STD RUMP { ssize_t|sys||extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); } +366 STD RUMP { int|sys||extattr_delete_fd(int fd, int attrnamespace, const char *attrname); } +367 STD RUMP { int|sys||extattr_set_link(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); } +368 STD RUMP { ssize_t|sys||extattr_get_link(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); } +369 STD RUMP { int|sys||extattr_delete_link(const char *path, int attrnamespace, const char *attrname); } +370 STD RUMP { ssize_t|sys||extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); } +371 STD RUMP { ssize_t|sys||extattr_list_file(const char *path, int attrnamespace, void *data, size_t nbytes); } +372 STD RUMP { ssize_t|sys||extattr_list_link(const char *path, int attrnamespace, void *data, size_t nbytes); } +373 COMPAT_50 MODULAR compat_50 RUMP { int|sys||pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec50 *ts, const sigset_t *mask); } +374 COMPAT_50 MODULAR compat_50 RUMP { int|sys||pollts(struct pollfd *fds, u_int nfds, const struct timespec50 *ts, const sigset_t *mask); } +375 STD RUMP { int|sys||setxattr(const char *path, const char *name, const void *value, size_t size, int flags); } +376 STD RUMP { int|sys||lsetxattr(const char *path, const char *name, const void *value, size_t size, int flags); } +377 STD RUMP { int|sys||fsetxattr(int fd, const char *name, const void *value, size_t size, int flags); } +378 STD RUMP { int|sys||getxattr(const char *path, const char *name, void *value, size_t size); } +379 STD RUMP { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); } +380 STD RUMP { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); } +381 STD RUMP { int|sys||listxattr(const char *path, char *list, size_t size); } +382 STD RUMP { int|sys||llistxattr(const char *path, char *list, size_t size); } +383 STD RUMP { int|sys||flistxattr(int fd, char *list, size_t size); } +384 STD RUMP { int|sys||removexattr(const char *path, const char *name); } +385 STD RUMP { int|sys||lremovexattr(const char *path, const char *name); } +386 STD RUMP { int|sys||fremovexattr(int fd, const char *name); } +387 COMPAT_50 MODULAR compat_50 RUMP { int|sys|30|stat(const char *path, struct stat30 *ub); } +388 COMPAT_50 MODULAR compat_50 RUMP { int|sys|30|fstat(int fd, struct stat30 *sb); } +389 COMPAT_50 MODULAR compat_50 RUMP { int|sys|30|lstat(const char *path, struct stat30 *ub); } +390 STD RUMP { int|sys|30|getdents(int fd, char *buf, size_t count); } +391 IGNORED old posix_fadvise +392 COMPAT_30 MODULAR compat_30 { int|sys|30|fhstat(const struct compat_30_fhandle *fhp, struct stat30 *sb); } +393 COMPAT_50 MODULAR compat_30 { int|sys|30|ntp_gettime(struct ntptimeval50 *ntvp); } +394 STD RUMP { int|sys|30|socket(int domain, int type, int protocol); } +395 STD RUMP { int|sys|30|getfh(const char *fname, void *fhp, size_t *fh_size); } +396 STD RUMP { int|sys|40|fhopen(const void *fhp, size_t fh_size, int flags); } +397 COMPAT_90 MODULAR compat_90 { int|sys||fhstatvfs1(const void *fhp, size_t fh_size, struct statvfs90 *buf, int flags); } +398 COMPAT_50 MODULAR compat_50 RUMP { int|sys|40|fhstat(const void *fhp, size_t fh_size, struct stat30 *sb); } + +; Asynchronous I/O system calls +399 STD MODULAR aio RUMP { int|sys||aio_cancel(int fildes, struct aiocb *aiocbp); } +400 STD MODULAR aio RUMP { int|sys||aio_error(const struct aiocb *aiocbp); } +401 STD MODULAR aio RUMP { int|sys||aio_fsync(int op, struct aiocb *aiocbp); } +402 STD MODULAR aio RUMP { int|sys||aio_read(struct aiocb *aiocbp); } +403 STD MODULAR aio RUMP { int|sys||aio_return(struct aiocb *aiocbp); } +404 COMPAT_50 MODULAR compat { int|sys||aio_suspend(const struct aiocb *const *list, int nent, const struct timespec50 *timeout); } +405 STD MODULAR aio RUMP { int|sys||aio_write(struct aiocb *aiocbp); } +406 STD MODULAR aio RUMP { int|sys||lio_listio(int mode, struct aiocb *const *list, int nent, struct sigevent *sig); } + +407 UNIMPL +408 UNIMPL +409 UNIMPL + +410 STD RUMP { int|sys|50|mount(const char *type, const char *path, int flags, void *data, size_t data_len); } +411 STD { void *|sys||mremap(void *old_address, size_t old_size, void *new_address, size_t new_size, int flags); } + +; Processor-sets system calls +412 STD { int|sys||pset_create(psetid_t *psid); } +413 STD { int|sys||pset_destroy(psetid_t psid); } +414 STD { int|sys||pset_assign(psetid_t psid, cpuid_t cpuid, psetid_t *opsid); } +415 STD { int|sys||_pset_bind(idtype_t idtype, id_t first_id, id_t second_id, psetid_t psid, psetid_t *opsid); } +416 NOERR RUMP { int|sys|50|posix_fadvise(int fd, int PAD, off_t offset, off_t len, int advice); } +417 STD RUMP { int|sys|50|select(int nd, fd_set *in, fd_set *ou, fd_set *ex, struct timeval *tv); } +418 STD RUMP { int|sys|50|gettimeofday(struct timeval *tp, void *tzp); } +419 STD RUMP { int|sys|50|settimeofday(const struct timeval *tv, const void *tzp); } +420 STD RUMP { int|sys|50|utimes(const char *path, const struct timeval *tptr); } +421 STD RUMP { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); } +422 STD MODULAR lfs { int|sys|50|lfs_segwait(fsid_t *fsidp, struct timeval *tv); } +423 STD RUMP { int|sys|50|futimes(int fd, const struct timeval *tptr); } +424 STD RUMP { int|sys|50|lutimes(const char *path, const struct timeval *tptr); } +425 STD RUMP { int|sys|50|setitimer(int which, const struct itimerval *itv, struct itimerval *oitv); } +426 STD RUMP { int|sys|50|getitimer(int which, struct itimerval *itv); } +427 STD RUMP { int|sys|50|clock_gettime(clockid_t clock_id, struct timespec *tp); } +428 STD RUMP { int|sys|50|clock_settime(clockid_t clock_id, const struct timespec *tp); } +429 STD RUMP { int|sys|50|clock_getres(clockid_t clock_id, struct timespec *tp); } +430 STD RUMP { int|sys|50|nanosleep(const struct timespec *rqtp, struct timespec *rmtp); } +431 STD { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); } +432 STD MODULAR mqueue { int|sys|50|mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio, const struct timespec *abs_timeout); } +433 STD MODULAR mqueue { ssize_t|sys|50|mq_timedreceive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio, const struct timespec *abs_timeout); } +434 COMPAT_60 MODULAR compat_60 { int|sys||_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); } +435 STD RUMP { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); } +436 STD RUMP { int|sys|50|pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); } +437 STD RUMP { int|sys|50|pollts(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); } +438 STD MODULAR aio RUMP { int|sys|50|aio_suspend( const struct aiocb *const *list, int nent, const struct timespec *timeout); } +439 STD RUMP { int|sys|50|stat(const char *path, struct stat *ub); } +440 STD RUMP { int|sys|50|fstat(int fd, struct stat *sb); } +441 STD RUMP { int|sys|50|lstat(const char *path, struct stat *ub); } +442 STD MODULAR sysv_ipc { int|sys|50|__semctl(int semid, int semnum, int cmd, ... union __semun *arg); } +443 STD MODULAR sysv_ipc { int|sys|50|shmctl(int shmid, int cmd, struct shmid_ds *buf); } +444 STD MODULAR sysv_ipc { int|sys|50|msgctl(int msqid, int cmd, struct msqid_ds *buf); } +445 STD { int|sys|50|getrusage(int who, struct rusage *rusage); } +446 STD RUMP { int|sys|50|timer_settime(timer_t timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); } +447 STD RUMP { int|sys|50|timer_gettime(timer_t timerid, struct itimerspec *value); } +#if defined(NTP) || !defined(_KERNEL_OPT) +448 STD { int|sys|50|ntp_gettime(struct ntptimeval *ntvp); } +#else +448 EXCL ___ntp_gettime50 +#endif +449 STD { int|sys|50|wait4(pid_t pid, int *status, int options, struct rusage *rusage); } +450 STD RUMP { int|sys|50|mknod(const char *path, mode_t mode, dev_t dev); } +451 STD RUMP { int|sys|50|fhstat(const void *fhp, size_t fh_size, struct stat *sb); } +; 452 only ever appeared in 5.99.x and can be reused after netbsd-7 +452 OBSOL 5.99 quotactl +453 STD RUMP { int|sys||pipe2(int *fildes, int flags); } +454 STD RUMP { int|sys||dup3(int from, int to, int flags); } +455 STD RUMP { int|sys||kqueue1(int flags); } +456 STD RUMP { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); } +457 STD RUMP { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); } +458 STD RUMP { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); } +459 STD RUMP { int|sys||mkfifoat(int fd, const char *path, mode_t mode); } +460 STD RUMP { int|sys||mknodat(int fd, const char *path, mode_t mode, int PAD, dev_t dev); } +461 STD RUMP { int|sys||mkdirat(int fd, const char *path, mode_t mode); } +462 STD RUMP { int|sys||faccessat(int fd, const char *path, int amode, int flag); } +463 STD RUMP { int|sys||fchmodat(int fd, const char *path, mode_t mode, int flag); } +464 STD RUMP { int|sys||fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); } +465 STD { int|sys||fexecve(int fd, char * const *argp, char * const *envp); } +466 STD RUMP { int|sys||fstatat(int fd, const char *path, struct stat *buf, int flag); } +467 STD RUMP { int|sys||utimensat(int fd, const char *path, const struct timespec *tptr, int flag); } +468 STD RUMP { int|sys||openat(int fd, const char *path, int oflags, ... mode_t mode); } +469 STD RUMP { ssize_t|sys||readlinkat(int fd, const char *path, char *buf, size_t bufsize); } +470 STD RUMP { int|sys||symlinkat(const char *path1, int fd, const char *path2); } +471 STD RUMP { int|sys||unlinkat(int fd, const char *path, int flag); } +472 STD RUMP { int|sys||futimens(int fd, const struct timespec *tptr); } +473 STD RUMP { int|sys||__quotactl(const char *path, struct quotactl_args *args); } +474 NOERR { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); } +475 STD RUMP { int|sys||recvmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags, struct timespec *timeout); } +476 STD RUMP { int|sys||sendmmsg(int s, struct mmsghdr *mmsg, unsigned int vlen, unsigned int flags); } +477 NOERR RUMP { int|sys||clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp, struct timespec *rmtp); } +478 STD { int|sys|60|_lwp_park(clockid_t clock_id, int flags, struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); } +479 NOERR RUMP { int|sys||posix_fallocate(int fd, int PAD, off_t pos, off_t len); } +480 STD RUMP { int|sys||fdiscard(int fd, int PAD, off_t pos, off_t len); } +481 STD { int|sys||wait6(idtype_t idtype, id_t id, int *status, int options, struct wrusage *wru, siginfo_t *info); } +482 STD RUMP { int|sys||clock_getcpuclockid2(idtype_t idtype, id_t id, clockid_t *clock_id); } +483 STD RUMP { int|sys|90|getvfsstat(struct statvfs *buf, size_t bufsize, int flags); } +484 STD RUMP { int|sys|90|statvfs1(const char *path, struct statvfs *buf, int flags); } +485 STD RUMP { int|sys|90|fstatvfs1(int fd, struct statvfs *buf, int flags); } +486 STD RUMP { int|sys|90|fhstatvfs1(const void *fhp, size_t fh_size, struct statvfs *buf, int flags); } +487 STD { int|sys||__acl_get_link(const char *path, acl_type_t type, struct acl *aclp); } +488 STD { int|sys||__acl_set_link(const char *path, acl_type_t type, struct acl *aclp); } +489 STD { int|sys||__acl_delete_link(const char *path, acl_type_t type); } +490 STD { int|sys||__acl_aclcheck_link(const char *path, acl_type_t type, struct acl *aclp); } +491 STD { int|sys||__acl_get_file(const char *path, acl_type_t type, struct acl *aclp); } +492 STD { int|sys||__acl_set_file(const char *path, acl_type_t type, struct acl *aclp); } +493 STD { int|sys||__acl_get_fd(int filedes, acl_type_t type, struct acl *aclp); } +494 STD { int|sys||__acl_set_fd(int filedes, acl_type_t type, struct acl *aclp); } +495 STD { int|sys||__acl_delete_file(const char *path, acl_type_t type); } +496 STD { int|sys||__acl_delete_fd(int filedes, acl_type_t type); } +497 STD { int|sys||__acl_aclcheck_file(const char *path, acl_type_t type, struct acl *aclp); } +498 STD { int|sys||__acl_aclcheck_fd(int filedes, acl_type_t type, struct acl *aclp); } +499 STD RUMP { long|sys||lpathconf(const char *path, int name); } diff --git a/libc/sysv/newconsts.py b/libc/sysv/newconsts.py new file mode 100644 index 000000000..10876a713 --- /dev/null +++ b/libc/sysv/newconsts.py @@ -0,0 +1,74 @@ +import sys + +H = '/home/jart/vendor/netbsd/sys/sys/ioctl.h' +G = 'errno' + +MAGNUMS = {} + +def ParseInt(x): + s = 1 + if x.startswith('-'): + x = x[1:] + s = -1 + if x.startswith('0x'): + x = int(x[2:], 16) + elif x.startswith('0b'): + x = int(x[2:], 2) + elif x.startswith('0'): + x = int(x, 8) + else: + x = int(x, 10) + return x * s + +def FormatInt(x): + if x == -1: + return "-1" + if -128 <= x < 128: + return "%d" % (x) + else: + return "%#x" % (x) + +for line in open(H): + if line.startswith('#define'): + a = line.split() + if len(a) >= 3: + try: + MAGNUMS[a[1]] = ParseInt(a[2]) + except ValueError: + pass + +GROUP_COLUMN = 2 +NAME_COLUMN = 4 +SYSTEMD_COLUMN = 6 +XNU_COLUMN = 8 +FREEBSD_COLUMN = 10 +OPENBSD_COLUMN = 12 +NETBSD_COLUMN = 14 + +print """\ +# The Fifth Bell System, Community Edition +# > catalogue of carnage +# +# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD NetBSD XENIX Commentary""" + +for line in open('libc/sysv/consts.sh'): + if not line.startswith('syscon'): continue + fields = [""] + i = 0 + t = 0 + for i in range(len(line)): + if t == 0: + if line[i] == '\t': + fields.append("") + t = 1 + elif t == 1: + if line[i] != '\t': + fields.append("") + t = 0 + fields[-1] = fields[-1] + line[i] + k = fields[NAME_COLUMN] + v = ParseInt(fields[NETBSD_COLUMN]) + if k in MAGNUMS and MAGNUMS[k] != v: + fields[NETBSD_COLUMN] = FormatInt(MAGNUMS[k]) + # if fields[GROUP_COLUMN] == G: + sys.stdout.write("".join(fields)) diff --git a/libc/sysv/nr.py b/libc/sysv/nr.py index d1d08a3ee..138b11798 100644 --- a/libc/sysv/nr.py +++ b/libc/sysv/nr.py @@ -9,7 +9,7 @@ for line in lines: if name.startswith("'"): name = name[1:] if name.endswith("'"): name = name[:-1] if name.startswith("__"): name = name[2:] - if name.startswith("sys_"): name = name[:-5] + if name.startswith("sys_"): name = name[4:] if name.endswith("_bsd"): name = name[:-4] if name.endswith("_freebsd"): name = name[:-8] numbers = int(fields[2][2:], 16) diff --git a/libc/sysv/syscalls.sh b/libc/sysv/syscalls.sh index 33af52bba..ab6f1dde9 100755 --- a/libc/sysv/syscalls.sh +++ b/libc/sysv/syscalls.sh @@ -24,803 +24,807 @@ dir=libc/sysv/calls # ├─────────────────────────┤ # GNU/Systemd┐ │ ffff │ unavailable │ # 2.6.18+│ │ sys_ │ wrapped │ -# Mac OS X┐ │ │ __sys_ │ wrapped twice │ -# 15.6+│ │ └─────────────────────────┘ -# FreeBSD┐ │ │ -# 12+│ ┌─│───│── XnuClass{1:Mach,2:Unix} -# OpenBSD┐ │ │ │ │ -# 6.4+│ │ │ │ │ -# Symbol ┌─┴┐┌─┴┐│┬┴┐┌─┴┐ Directives & Commentary -scall sys_exit 0x00010001200100e7 globl hidden # a.k.a. exit_group -scall sys_read 0x0003000320030000 globl hidden -scall sys_write 0x0004000420040001 globl hidden -scall sys_open 0x0005000520050002 globl hidden -scall sys_close 0x0006000620060003 globl hidden -scall __sys_stat 0x0026ffff21520004 globl hidden # FreeBSD 11→12 fumble; use sys_fstatat(); blocked on Android -scall __sys_fstat 0x0035022721530005 globl hidden # needs __stat2linux() -scall __sys_lstat 0x0028002821540006 globl hidden # needs __stat2linux(); blocked on Android -scall sys_poll 0x00fc00d120e60007 globl hidden -scall sys_ppoll 0x006d0221ffff010f globl hidden # consider INTON/INTOFF tutorial in examples/unbourne.c -scall __sys_lseek 0x00c701de20c70008 globl hidden # openbsd:evilpad -scall __sys_mmap 0x00c501dd20c50009 globl hidden # openbsd:pad -scall sys_msync 0x010000412041001a globl hidden -scall sys_mprotect 0x004a004a204a000a globl hidden -scall sys_munmap 0x004900492049000b globl hidden -scall sys_sigaction 0x002e01a0202e000d globl hidden # rt_sigaction on Lunix -scall sys_sigprocmask 0x003001542030000e globl hidden # a.k.a. rt_sigprocmask -scall sys_ioctl 0x0036003620360010 globl hidden -scall __sys_pread 0x00ad01db20990011 globl hidden # a.k.a. pread64; openbsd:pad -scall __sys_pwrite 0x00ae01dc209a0012 globl hidden # a.k.a. pwrite64; openbsd:pad -scall sys_readv 0x0078007820780013 globl hidden -scall sys_writev 0x0079007920790014 globl hidden -scall sys_access 0x0021002120210015 globl hidden -scall __sys_pipe 0x0107021e202a0016 globl hidden # NOTE: pipe2() on FreeBSD; XNU is pipe(void)→eax:edx -scall sys_select 0x0047005d205d0017 globl hidden -scall pselect 0x006e020a218affff globl -scall pselect6 0xffffffffffff010e globl -scall sys_sched_yield 0x012a014b103c0018 globl hidden # swtch() on xnu -scall sys_mremap 0xffffffffffff0019 globl hidden -scall mincore 0x004e004e204e001b globl -scall sys_madvise 0x004b004b204b001c globl hidden -scall shmget 0x012100e72109001d globl # consider mmap -scall shmat 0x00e400e42106001e globl # consider mmap -scall shmctl 0x012802002107001f globl # consider mmap -scall sys_dup 0x0029002920290020 globl hidden -scall sys_dup2 0x005a005a205a0021 globl hidden -scall sys_pause 0xffffffffffff0022 globl hidden -scall sys_nanosleep 0x005b00f0ffff0023 globl hidden -scall sys_getitimer 0x0046005620560024 globl hidden -scall sys_setitimer 0x0045005320530026 globl hidden -scall sys_alarm 0xffffffffffff0025 globl hidden -scall sys_getpid 0x0014001420140027 globl hidden -scall sys_sendfile 0xffff018921510028 globl hidden # Linux vs. XNU/BSD ABIs very different -scall __sys_socket 0x0061006120610029 globl hidden -scall __sys_connect 0x006200622062002a globl hidden -scall __sys_accept 0x001e021d201e002b globl hidden # accept4 on freebsd -scall sys_sendto 0x008500852085002c globl hidden -scall sys_recvfrom 0x001d001d201d002d globl hidden -scall sys_sendmsg 0x001c001c201c002e globl hidden -scall sys_recvmsg 0x001b001b201b002f globl hidden -scall sys_shutdown 0x0086008620860030 globl hidden -scall sys_bind 0x0068006820680031 globl hidden -scall sys_listen 0x006a006a206a0032 globl hidden -scall __sys_getsockname 0x0020002020200033 globl hidden -scall __sys_getpeername 0x001f008d201f0034 globl hidden -scall sys_socketpair 0x0087008720870035 globl hidden -scall sys_setsockopt 0x0069006920690036 globl hidden -scall sys_getsockopt 0x0076007620760037 globl hidden -scall __sys_fork 0x0002000220020039 globl hidden # xnu needs eax=~-edx b/c eax always holds pid and edx is 0 for parent and 1 for child -#scall vfork 0x004200422042003a globl # this syscall is from the moon so we implement it by hand in libc/calls/hefty/vfork.S -scall sys_posix_spawn 0xffffffff20f4ffff globl hidden # good luck figuring out how xnu defines this -scall __sys_execve 0x003b003b203b003b globl hidden -scall sys_wait4 0x000b00072007003d globl hidden -scall sys_kill 0x007a00252025003e globl hidden # kill(pid, sig, 1) b/c xnu -scall sys_killpg 0xffff0092ffffffff globl hidden -scall clone 0xffffffffffff0038 globl -scall tkill 0xffffffffffff00c8 globl -scall futex 0x0053ffffffff00ca globl -scall set_robust_list 0xffffffffffff0111 globl -scall get_robust_list 0xffffffffffff0112 globl -scall sys_uname 0xffff00a4ffff003f globl hidden -scall semget 0x00dd00dd20ff0040 globl # won't polyfill for windows -scall semop 0x012200de21000041 globl # won't polyfill for windows -scall semctl 0x012701fe20fe0042 globl # won't polyfill for windows -scall shmdt 0x00e600e621080043 globl # won't polyfill for windows -scall msgget 0x00e100e121030044 globl # won't polyfill for windows -scall msgsnd 0x00e200e221040045 globl # won't polyfill for windows -scall msgrcv 0x00e300e321050046 globl # won't polyfill for windows -scall msgctl 0x012901ff21020047 globl # won't polyfill for windows -scall sys_fcntl 0x005c005c205c0048 globl hidden -scall sys_flock 0x0083008320830049 globl hidden -scall sys_fsync 0x005f005f205f004a globl hidden -scall sys_fdatasync 0x005f022620bb004b globl hidden # fsync() on openbsd -scall __sys_truncate 0x00c801df20c8004c globl hidden # openbsd:pad -scall __sys_ftruncate 0x00c901e020c9004d globl hidden # openbsd:pad -scall sys_getcwd 0x01300146ffff004f globl hidden -scall sys_chdir 0x000c000c200c0050 globl hidden -scall sys_fchdir 0x000d000d200d0051 globl hidden -scall sys_rename 0x0080008020800052 globl hidden -scall sys_mkdir 0x0088008820880053 globl hidden -scall sys_rmdir 0x0089008920890054 globl hidden -scall sys_creat 0xffff0008ffff0055 globl hidden -scall sys_link 0x0009000920090056 globl hidden -scall sys_unlink 0x000a000a200a0057 globl hidden -scall sys_symlink 0x0039003920390058 globl hidden -scall readlink 0x003a003a203a0059 globl # usually an anti-pattern -scall sys_chmod 0x000f000f200f005a globl hidden -scall sys_fchmod 0x007c007c207c005b globl hidden -scall sys_chown 0x001000102010005c globl hidden # impl. w/ fchownat() @asyncsignalsafe -scall sys_fchown 0x007b007b207b005d globl hidden # @asyncsignalsafe -scall sys_lchown 0x00fe00fe216c005e globl hidden # impl. w/ fchownat() -scall umask 0x003c003c203c005f globl -scall __sys_gettimeofday 0x0043007420740060 globl hidden # xnu esi/edx=0 -scall sys_getrlimit 0x00c200c220c20061 globl hidden -scall sys_getrusage 0x0013007520750062 globl hidden -scall sys_sysinfo 0xffffffffffff0063 globl hidden -scall sys_times 0xffffffffffff0064 globl hidden -scall sys_ptrace 0x001a001a201a0065 globl hidden -scall syslog 0xffffffffffff0067 globl -scall sys_getuid 0x0018001820180066 globl hidden -scall sys_getgid 0x002f002f202f0068 globl hidden -scall sys_getppid 0x002700272027006e globl hidden -scall getpgrp 0x005100512051006f globl -scall sys_setsid 0x0093009320930070 globl hidden -scall sys_getsid 0x00ff01362136007c globl hidden -scall getpgid 0x00cf00cf20970079 globl -scall setpgid 0x005200522052006d globl -scall geteuid 0x001900192019006b globl -scall getegid 0x002b002b202b006c globl -scall getgroups 0x004f004f204f0073 globl -scall setgroups 0x0050005020500074 globl -scall setreuid 0x007e007e207e0071 globl -scall setregid 0x007f007f207f0072 globl -scall setuid 0x0017001720170069 globl -scall setgid 0x00b500b520b5006a globl -scall sys_setresuid 0x011a0137ffff0075 globl hidden # polyfilled for xnu -scall sys_setresgid 0x011c0138ffff0077 globl hidden # polyfilled for xnu -scall getresuid 0x01190168ffff0076 globl # semantics aren't well-defined -scall getresgid 0x011b0169ffff0078 globl # semantics aren't well-defined -scall sigpending 0x003400342034007f globl -scall sys_sigsuspend 0x006f0155206f0082 globl hidden -scall sigaltstack 0x0120003520350083 globl -scall sys_mknod 0x000e000e200e0085 globl hidden -scall mknodat 0x0140022fffff0103 globl # FreeBSD 12+ -scall sys_mkfifo 0x008400842084ffff globl hidden -scall mkfifoat 0x013f01f1ffffffff globl -scall statfs 0x003f022b21590089 globl -scall fstatfs 0x0040022c215a008a globl -scall sys_getpriority 0x006400642064008c globl hidden -scall sys_setpriority 0x006000602060008d globl hidden # modern nice() -scall mlock 0x00cb00cb20cb0095 globl -scall munlock 0x00cc00cc20cc0096 globl -scall mlockall 0x010f014421440097 globl -scall munlockall 0x0110014521450098 globl -scall sys_setrlimit 0x00c300c320c300a0 globl hidden -scall chroot 0x003d003d203d00a1 globl -scall sys_sync 0x00240024202400a2 globl hidden -scall acct 0x00330033203300a3 globl -scall settimeofday 0x0044007a207a00a4 globl -scall mount 0x0015001520a700a5 globl -scall reboot 0x00370037203700a9 globl -scall quotactl 0x0094009420a500b3 globl -scall setfsuid 0xffffffffffff007a globl -scall setfsgid 0xffffffffffff007b globl -scall capget 0xffffffffffff007d globl -scall capset 0xffffffffffff007e globl -scall sigtimedwait 0xffff0159ffff0080 globl -scall rt_sigqueueinfo 0xffffffffffff0081 globl -scall personality 0xffffffffffff0087 globl -scall ustat 0xffffffffffff0088 globl -scall sysfs 0xffffffffffff008b globl -scall sched_setparam 0xffff0147ffff008e globl -scall sched_getparam 0xffff0148ffff008f globl -scall sched_setscheduler 0xffff0149ffff0090 globl -scall sched_getscheduler 0xffff014affff0091 globl -scall sched_get_priority_max 0xffff014cffff0092 globl -scall sched_get_priority_min 0xffff014dffff0093 globl -scall sched_rr_get_interval 0xffff014effff0094 globl -scall vhangup 0xffffffffffff0099 globl -scall modify_ldt 0xffffffffffff009a globl -scall pivot_root 0xffffffffffff009b globl -scall _sysctl 0xffffffffffff009c globl -scall prctl 0xffffffffffff009d globl -scall sys_arch_prctl 0x00a500a5ffff009e globl hidden # sysarch() on bsd -scall adjtimex 0xffffffffffff009f globl -scall umount2 0xffffffffffff00a6 globl -scall swapon 0xffff0055205500a7 globl -scall swapoff 0xffff01a8ffff00a8 globl -scall sethostname 0xffff0058ffff00aa globl -scall setdomainname 0xffff00a3ffff00ab globl -scall iopl 0xffffffffffff00ac globl -scall ioperm 0xffffffffffff00ad globl -scall init_module 0xffffffffffff00af globl -scall delete_module 0xffffffffffff00b0 globl -scall sys_gettid 0xffffffff211e00ba globl hidden -scall readahead 0xffffffffffff00bb globl # consider fadvise() / madvise() -scall setxattr 0xffffffff20ec00bc globl -scall fsetxattr 0xffffffff20ed00be globl -scall getxattr 0xffffffff20ea00bf globl -scall fgetxattr 0xffffffff20eb00c1 globl -scall listxattr 0xffffffff20f000c2 globl -scall flistxattr 0xffffffff20f100c4 globl -scall removexattr 0xffffffff20ee00c5 globl -scall fremovexattr 0xffffffff20ef00c7 globl -scall lsetxattr 0xffffffffffff00bd globl -scall lgetxattr 0xffffffffffff00c0 globl -scall llistxattr 0xffffffffffff00c3 globl -scall lremovexattr 0xffffffffffff00c6 globl -scall sys_sched_setaffinity 0xffffffffffff00cb globl hidden -scall sched_getaffinity 0xffffffffffff00cc globl -scall cpuset_getaffinity 0xffff01e7ffffffff globl -scall cpuset_setaffinity 0xffff01e8ffffffff globl -scall io_setup 0xffffffffffff00ce globl -scall io_destroy 0xffffffffffff00cf globl -scall io_getevents 0xffffffffffff00d0 globl -scall io_submit 0xffffffffffff00d1 globl -scall io_cancel 0xffffffffffff00d2 globl -scall lookup_dcookie 0xffffffffffff00d4 globl -scall sys_epoll_create 0xffffffffffff00d5 globl -scall sys_epoll_wait 0xffffffffffff00e8 globl -scall sys_epoll_ctl 0xffffffffffff00e9 globl -scall getdents 0x0063011020c400d9 globl hidden # four args b/c xnu, getdirentries on xnu, 32-bit on xnu/freebsd, getdents64 on linux, 64-bit on openbsd -scall set_tid_address 0xffffffffffff00da globl -scall restart_syscall 0xffffffffffff00db globl -scall semtimedop 0xffffffffffff00dc globl -scall sys_fadvise 0xffff0213ffff00dd globl hidden -scall timer_create 0xffffffffffff00de globl -scall timer_settime 0xffffffffffff00df globl -scall timer_gettime 0xffffffffffff00e0 globl -scall timer_getoverrun 0xffffffffffff00e1 globl -scall timer_delete 0xffffffffffff00e2 globl -scall clock_settime 0x005800e9ffff00e3 globl -scall sys_clock_gettime 0x005700e8ffff00e4 globl hidden # Linux 2.6+ (c. 2003); XNU uses magic address -scall clock_getres 0x005900eaffff00e5 globl -scall clock_nanosleep 0xffff00f4ffff00e6 globl -scall tgkill 0xffffffffffff00ea globl -scall mbind 0xffffffffffff00ed globl -scall set_mempolicy 0xffffffffffff00ee globl -scall get_mempolicy 0xffffffffffff00ef globl -scall mq_open 0xffffffffffff00f0 globl # won't polyfill -scall mq_unlink 0xffffffffffff00f1 globl # won't polyfill -scall mq_timedsend 0xffffffffffff00f2 globl # won't polyfill -scall mq_timedreceive 0xffffffffffff00f3 globl # won't polyfill -scall mq_notify 0xffffffffffff00f4 globl # won't polyfill -scall mq_getsetattr 0xffffffffffff00f5 globl # won't polyfill -scall kexec_load 0xffffffffffff00f6 globl -scall waitid 0xffffffff20ad00f7 globl # Linux 2.6.9+ -scall add_key 0xffffffffffff00f8 globl -scall request_key 0xffffffffffff00f9 globl -scall keyctl 0xffffffffffff00fa globl -scall ioprio_set 0xffffffffffff00fb globl -scall ioprio_get 0xffffffffffff00fc globl -scall inotify_init 0xffffffffffff00fd globl # wicked -scall inotify_add_watch 0xffffffffffff00fe globl -scall inotify_rm_watch 0xffffffffffff00ff globl -scall sys_openat 0x014101f321cf0101 globl hidden # Linux 2.6.16+ (c. 2007) -scall sys_mkdirat 0x013e01f021db0102 globl hidden -scall sys_fchownat 0x013b01eb21d40104 globl hidden # @asyncsignalsafe -scall sys_utime 0xffffffffffff0084 globl hidden -scall sys_utimes 0x004c008a208a00eb globl hidden -scall sys_futimesat 0xffff01eeffff0105 globl hidden # @asyncsignalsafe -scall sys_futimes 0x004d00ce208bffff globl hidden -scall sys_futimens 0x00550222ffffffff globl hidden -scall __sys_fstatat 0x002a022821d60106 globl hidden # a.k.a. newfstatat(); FreeBSD 12+; needs __stat2linux() -scall sys_unlinkat 0x014501f721d80107 globl hidden -scall sys_renameat 0x014301f521d10108 globl hidden -scall sys_linkat 0x013d01ef21d70109 globl hidden -scall sys_symlinkat 0x014401f621da010a globl hidden -scall sys_readlinkat 0x014201f421d9010b globl hidden -scall sys_fchmodat 0x013a01ea21d3010c globl hidden -scall sys_faccessat 0x013901e921d2010d globl hidden -scall unshare 0xffffffffffff0110 globl -scall sys_splice 0xffffffffffff0113 globl hidden # Linux 2.6.17+ (c. 2007) -scall tee 0xffffffffffff0114 globl # Linux 2.6.17+ -scall sys_sync_file_range 0xffffffffffff0115 globl hidden # Linux 2.6.17+ -scall sys_vmsplice 0xffffffffffff0116 globl hidden -scall migrate_pages 0xffffffffffff0100 globl # numa numa yay -scall move_pages 0xffffffffffff0117 globl # NOTE: We view Red Hat versions as "epochs" for all distros. +# Mac OS X┐ │ │ __sys_ │ wrapped twice │ +# 15.6+│ │ └─────────────────────────┘ +# FreeBSD┐ │ │ +# 12+│ ┌─│──│── XnuClass{1:Mach,2:Unix} +# OpenBSD┐ │ │ │ │ +# 6.4+│ │ │ │ │ +# NetBSD┐ │ │ │ │ │ +# 9.1+│ │ │ │ │ │ +# Symbol ┌┴┐┌┴┐┌┴┐│┬┴┐┌┴┐ Directives & Commentary +scall sys_exit 0x00100100120010e7 globl hidden # a.k.a. exit_group +scall sys_read 0x0030030032003000 globl hidden +scall sys_write 0x0040040042004001 globl hidden +scall sys_open 0x0050050052005002 globl hidden +scall sys_close 0x0060060062006003 globl hidden +scall __sys_stat 0x1b7026fff2152004 globl hidden # FreeBSD 11→12 fumble; use sys_fstatat(); blocked on Android +scall __sys_fstat 0x1b80352272153005 globl hidden # needs __stat2linux() +scall __sys_lstat 0x1b90280282154006 globl hidden # needs __stat2linux(); blocked on Android +scall sys_poll 0x0d10fc0d120e6007 globl hidden +scall sys_ppoll 0xfff06d221ffff10f globl hidden # consider INTON/INTOFF tutorial in examples/unbourne.c +scall __sys_lseek 0x0c70c71de20c7008 globl hidden # openbsd:evilpad +scall __sys_mmap 0x0c50c51dd20c5009 globl hidden # openbsd:pad +scall sys_msync 0x115100041204101a globl hidden +scall sys_mprotect 0x04a04a04a204a00a globl hidden +scall sys_munmap 0x049049049204900b globl hidden +scall sys_sigaction 0xfff02e1a0202e00d globl hidden # rt_sigaction on Lunix +scall sys_sigprocmask 0x125030154203000e globl hidden # a.k.a. rt_sigprocmask +scall sys_ioctl 0x0360360362036010 globl hidden +scall __sys_pread 0x0ad0ad1db2099011 globl hidden # a.k.a. pread64; openbsd:pad +scall __sys_pwrite 0x0ae0ae1dc209a012 globl hidden # a.k.a. pwrite64; openbsd:pad +scall sys_readv 0x0780780782078013 globl hidden +scall sys_writev 0x0790790792079014 globl hidden +scall sys_access 0x0210210212021015 globl hidden +scall __sys_pipe 0x02a10721e202a016 globl hidden # NOTE: pipe2() on FreeBSD; XNU is pipe(void)→eax:edx +scall sys_select 0x1a104705d205d017 globl hidden +scall pselect 0x1b406e20a218afff globl +scall pselect6 0xfffffffffffff10e globl +scall sys_sched_yield 0x15e12a14b103c018 globl hidden # swtch() on xnu +scall sys_mremap 0x19bffffffffff019 globl hidden +scall mincore 0x04e04e04e204e01b globl +scall sys_madvise 0x04b04b04b204b01c globl hidden +scall shmget 0x0e71210e7210901d globl # consider mmap +scall shmat 0x0e40e40e4210601e globl # consider mmap +scall shmctl 0x1bb128200210701f globl # consider mmap +scall sys_dup 0x0290290292029020 globl hidden +scall sys_dup2 0x05a05a05a205a021 globl hidden +scall sys_pause 0xfffffffffffff022 globl hidden +scall sys_nanosleep 0x1ae05b0f0ffff023 globl hidden +scall sys_getitimer 0x1aa0460562056024 globl hidden +scall sys_setitimer 0x1a90450532053026 globl hidden +scall sys_alarm 0xfffffffffffff025 globl hidden +scall sys_getpid 0xfff0140142014027 globl hidden +scall sys_sendfile 0xffffff1892151028 globl hidden # Linux vs. XNU/BSD ABIs very different +scall __sys_socket 0x18a0610612061029 globl hidden +scall __sys_connect 0x062062062206202a globl hidden +scall __sys_accept 0x01e01e21d201e02b globl hidden # accept4 on freebsd +scall sys_sendto 0x085085085208502c globl hidden +scall sys_recvfrom 0x01d01d01d201d02d globl hidden +scall sys_sendmsg 0x01c01c01c201c02e globl hidden +scall sys_recvmsg 0x01b01b01b201b02f globl hidden +scall sys_shutdown 0x0860860862086030 globl hidden +scall sys_bind 0x0680680682068031 globl hidden +scall sys_listen 0x06a06a06a206a032 globl hidden +scall __sys_getsockname 0x0200200202020033 globl hidden +scall __sys_getpeername 0x01f01f08d201f034 globl hidden +scall sys_socketpair 0x0870870872087035 globl hidden +scall sys_setsockopt 0x0690690692069036 globl hidden +scall sys_getsockopt 0x0760760762076037 globl hidden +scall __sys_fork 0x0020020022002039 globl hidden # xnu needs eax=~-edx b/c eax always holds pid and edx is 0 for parent and 1 for child +#scall vfork 0x042042042204203a globl # this syscall is from the moon so we implement it by hand in libc/calls/hefty/vfork.S +scall sys_posix_spawn 0xfffffffff20f4fff globl hidden # good luck figuring out how xnu defines this +scall __sys_execve 0x03b03b03b203b03b globl hidden +scall sys_wait4 0x1c100b007200703d globl hidden +scall sys_kill 0x02507a025202503e globl hidden # kill(pid, sig, 1) b/c xnu +scall sys_killpg 0xffffff092fffffff globl hidden +scall clone 0xfffffffffffff038 globl +scall tkill 0xfffffffffffff0c8 globl +scall futex 0xfff053fffffff0ca globl +scall set_robust_list 0xfffffffffffff111 globl +scall get_robust_list 0xfffffffffffff112 globl +scall sys_uname 0xffffff0a4ffff03f globl hidden +scall semget 0x0dd0dd0dd20ff040 globl # won't polyfill for windows +scall semop 0x0de1220de2100041 globl # won't polyfill for windows +scall semctl 0xfff1271fe20fe042 globl # won't polyfill for windows +scall shmdt 0x0e60e60e62108043 globl # won't polyfill for windows +scall msgget 0x0e10e10e12103044 globl # won't polyfill for windows +scall msgsnd 0x0e20e20e22104045 globl # won't polyfill for windows +scall msgrcv 0x0e30e30e32105046 globl # won't polyfill for windows +scall msgctl 0x1bc1291ff2102047 globl # won't polyfill for windows +scall sys_fcntl 0x05c05c05c205c048 globl hidden +scall sys_flock 0x0830830832083049 globl hidden +scall sys_fsync 0x05f05f05f205f04a globl hidden +scall sys_fdatasync 0x0f105f22620bb04b globl hidden # fsync() on openbsd +scall __sys_truncate 0x0c80c81df20c804c globl hidden # openbsd:pad +scall __sys_ftruncate 0x0c90c91e020c904d globl hidden # openbsd:pad +scall sys_getcwd 0xfff130146ffff04f globl hidden +scall sys_chdir 0x00c00c00c200c050 globl hidden +scall sys_fchdir 0x00d00d00d200d051 globl hidden +scall sys_rename 0x0800800802080052 globl hidden +scall sys_mkdir 0x0880880882088053 globl hidden +scall sys_rmdir 0x0890890892089054 globl hidden +scall sys_creat 0xffffff008ffff055 globl hidden +scall sys_link 0x0090090092009056 globl hidden +scall sys_unlink 0x00a00a00a200a057 globl hidden +scall sys_symlink 0x0390390392039058 globl hidden +scall readlink 0x03a03a03a203a059 globl # usually an anti-pattern +scall sys_chmod 0x00f00f00f200f05a globl hidden +scall sys_fchmod 0x07c07c07c207c05b globl hidden +scall sys_chown 0x010010010201005c globl hidden # impl. w/ fchownat() @asyncsignalsafe +scall sys_fchown 0x07b07b07b207b05d globl hidden # @asyncsignalsafe +scall sys_lchown 0x1130fe0fe216c05e globl hidden # impl. w/ fchownat() +scall umask 0x03c03c03c203c05f globl +scall __sys_gettimeofday 0x1a20430742074060 globl hidden # xnu esi/edx=0 +scall sys_getrlimit 0x0c20c20c220c2061 globl hidden +scall sys_getrusage 0x1bd0130752075062 globl hidden +scall sys_sysinfo 0xfffffffffffff063 globl hidden +scall sys_times 0xfffffffffffff064 globl hidden +scall sys_ptrace 0x01a01a01a201a065 globl hidden +scall syslog 0xfffffffffffff067 globl +scall sys_getuid 0xfff0180182018066 globl hidden +scall sys_getgid 0xfff02f02f202f068 globl hidden +scall sys_getppid 0xfff027027202706e globl hidden +scall getpgrp 0x051051051205106f globl +scall sys_setsid 0x0930930932093070 globl hidden +scall sys_getsid 0x11e0ff136213607c globl hidden +scall getpgid 0x0cf0cf0cf2097079 globl +scall setpgid 0x052052052205206d globl +scall geteuid 0xfff019019201906b globl +scall getegid 0xfff02b02b202b06c globl +scall getgroups 0x04f04f04f204f073 globl +scall setgroups 0x0500500502050074 globl +scall setreuid 0x07e07e07e207e071 globl +scall setregid 0x07f07f07f207f072 globl +scall setuid 0x0170170172017069 globl +scall setgid 0x0b50b50b520b506a globl +scall sys_setresuid 0xfff11a137ffff075 globl hidden # polyfilled for xnu +scall sys_setresgid 0xfff11c138ffff077 globl hidden # polyfilled for xnu +scall getresuid 0xfff119168ffff076 globl # semantics aren't well-defined +scall getresgid 0xfff11b169ffff078 globl # semantics aren't well-defined +scall sigpending 0x124034034203407f globl +scall sys_sigsuspend 0x12606f155206f082 globl hidden +scall sigaltstack 0x1191200352035083 globl +scall sys_mknod 0x1c200e00e200e085 globl hidden +scall mknodat 0x1cc14022fffff103 globl # FreeBSD 12+ +scall sys_mkfifo 0x0840840842084fff globl hidden +scall mkfifoat 0x1cb13f1f1fffffff globl +scall statfs 0xfff03f22b2159089 globl +scall fstatfs 0xfff04022c215a08a globl +scall sys_getpriority 0x064064064206408c globl hidden +scall sys_setpriority 0x060060060206008d globl hidden # modern nice() +scall mlock 0x0cb0cb0cb20cb095 globl +scall munlock 0x0cc0cc0cc20cc096 globl +scall mlockall 0x0f210f1442144097 globl +scall munlockall 0x0f31101452145098 globl +scall sys_setrlimit 0x0c30c30c320c30a0 globl hidden +scall chroot 0x03d03d03d203d0a1 globl +scall sys_sync 0xfff02402420240a2 globl hidden +scall acct 0x03303303320330a3 globl +scall settimeofday 0x1a304407a207a0a4 globl +scall mount 0x19a01501520a70a5 globl +scall reboot 0x0d003703720370a9 globl +scall quotactl 0xfff09409420a50b3 globl +scall setfsuid 0xfffffffffffff07a globl +scall setfsgid 0xfffffffffffff07b globl +scall capget 0xfffffffffffff07d globl +scall capset 0xfffffffffffff07e globl +scall sigtimedwait 0xffffff159ffff080 globl +scall rt_sigqueueinfo 0xfffffffffffff081 globl +scall personality 0xfffffffffffff087 globl +scall ustat 0xfffffffffffff088 globl +scall sysfs 0xfffffffffffff08b globl +scall sched_setparam 0xffffff147ffff08e globl +scall sched_getparam 0xffffff148ffff08f globl +scall sched_setscheduler 0xffffff149ffff090 globl +scall sched_getscheduler 0xffffff14affff091 globl +scall sched_get_priority_max 0xffffff14cffff092 globl +scall sched_get_priority_min 0xffffff14dffff093 globl +scall sched_rr_get_interval 0xffffff14effff094 globl +scall vhangup 0xfffffffffffff099 globl +scall modify_ldt 0xfffffffffffff09a globl +scall pivot_root 0xfffffffffffff09b globl +scall _sysctl 0xfffffffffffff09c globl +scall prctl 0xfffffffffffff09d globl +scall sys_arch_prctl 0xfff0a50a5ffff09e globl hidden # sysarch() on bsd +scall adjtimex 0xfffffffffffff09f globl +scall umount2 0xfffffffffffff0a6 globl +scall swapon 0xffffff05520550a7 globl +scall swapoff 0xffffff1a8ffff0a8 globl +scall sethostname 0xffffff058ffff0aa globl +scall setdomainname 0xffffff0a3ffff0ab globl +scall iopl 0xfffffffffffff0ac globl +scall ioperm 0xfffffffffffff0ad globl +scall init_module 0xfffffffffffff0af globl +scall delete_module 0xfffffffffffff0b0 globl +scall sys_gettid 0xfffffffff211e0ba globl hidden +scall readahead 0xfffffffffffff0bb globl # consider fadvise() / madvise() +scall setxattr 0x177ffffff20ec0bc globl +scall fsetxattr 0x179ffffff20ed0be globl +scall getxattr 0x17affffff20ea0bf globl +scall fgetxattr 0x17cffffff20eb0c1 globl +scall listxattr 0x17dffffff20f00c2 globl +scall flistxattr 0x17fffffff20f10c4 globl +scall removexattr 0x180ffffff20ee0c5 globl +scall fremovexattr 0x182ffffff20ef0c7 globl +scall lsetxattr 0x178ffffffffff0bd globl +scall lgetxattr 0x17bffffffffff0c0 globl +scall llistxattr 0x17effffffffff0c3 globl +scall lremovexattr 0x181ffffffffff0c6 globl +scall sys_sched_setaffinity 0xfffffffffffff0cb globl hidden +scall sched_getaffinity 0xfffffffffffff0cc globl +scall cpuset_getaffinity 0xffffff1e7fffffff globl +scall cpuset_setaffinity 0xffffff1e8fffffff globl +scall io_setup 0xfffffffffffff0ce globl +scall io_destroy 0xfffffffffffff0cf globl +scall io_getevents 0xfffffffffffff0d0 globl +scall io_submit 0xfffffffffffff0d1 globl +scall io_cancel 0xfffffffffffff0d2 globl +scall lookup_dcookie 0xfffffffffffff0d4 globl +scall sys_epoll_create 0xfffffffffffff0d5 globl +scall sys_epoll_wait 0xfffffffffffff0e8 globl +scall sys_epoll_ctl 0xfffffffffffff0e9 globl +scall getdents 0x18606311020c40d9 globl hidden # four args b/c xnu, getdirentries on xnu, 32-bit on xnu/freebsd, getdents64 on linux, 64-bit on openbsd +scall set_tid_address 0xfffffffffffff0da globl +scall restart_syscall 0xfffffffffffff0db globl +scall semtimedop 0xfffffffffffff0dc globl +scall sys_fadvise 0xffffff213ffff0dd globl hidden +scall timer_create 0x0ebffffffffff0de globl +scall timer_settime 0x1beffffffffff0df globl +scall timer_gettime 0x1bfffffffffff0e0 globl +scall timer_getoverrun 0x0efffffffffff0e1 globl +scall timer_delete 0x0ecffffffffff0e2 globl +scall clock_settime 0x1ac0580e9ffff0e3 globl +scall sys_clock_gettime 0x1ab0570e8ffff0e4 globl hidden # Linux 2.6+ (c. 2003); XNU uses magic address +scall clock_getres 0x1ad0590eaffff0e5 globl +scall clock_nanosleep 0xffffff0f4ffff0e6 globl +scall tgkill 0xfffffffffffff0ea globl +scall mbind 0xfffffffffffff0ed globl +scall set_mempolicy 0xfffffffffffff0ee globl +scall get_mempolicy 0xfffffffffffff0ef globl +scall mq_open 0x101ffffffffff0f0 globl # won't polyfill +scall mq_unlink 0x103ffffffffff0f1 globl # won't polyfill +scall mq_timedsend 0x1b0ffffffffff0f2 globl # won't polyfill +scall mq_timedreceive 0x1b1ffffffffff0f3 globl # won't polyfill +scall mq_notify 0x106ffffffffff0f4 globl # won't polyfill +scall mq_getsetattr 0xfffffffffffff0f5 globl # won't polyfill +scall kexec_load 0xfffffffffffff0f6 globl +scall waitid 0xfffffffff20ad0f7 globl # Linux 2.6.9+ +scall add_key 0xfffffffffffff0f8 globl +scall request_key 0xfffffffffffff0f9 globl +scall keyctl 0xfffffffffffff0fa globl +scall ioprio_set 0xfffffffffffff0fb globl +scall ioprio_get 0xfffffffffffff0fc globl +scall inotify_init 0xfffffffffffff0fd globl # wicked +scall inotify_add_watch 0xfffffffffffff0fe globl +scall inotify_rm_watch 0xfffffffffffff0ff globl +scall sys_openat 0x1d41411f321cf101 globl hidden # Linux 2.6.16+ (c. 2007) +scall sys_mkdirat 0x1cd13e1f021db102 globl hidden +scall sys_fchownat 0x1d013b1eb21d4104 globl hidden # @asyncsignalsafe +scall sys_utime 0xfffffffffffff084 globl hidden +scall sys_utimes 0x1a404c08a208a0eb globl hidden +scall sys_futimesat 0xffffff1eeffff105 globl hidden # @asyncsignalsafe +scall sys_futimes 0x1a704d0ce208bfff globl hidden +scall sys_futimens 0x1d8055222fffffff globl hidden +scall __sys_fstatat 0x1d202a22821d6106 globl hidden # a.k.a. newfstatat(); FreeBSD 12+; needs __stat2linux() +scall sys_unlinkat 0x1d71451f721d8107 globl hidden +scall sys_renameat 0x1ca1431f521d1108 globl hidden +scall sys_linkat 0x1c913d1ef21d7109 globl hidden +scall sys_symlinkat 0x1d61441f621da10a globl hidden +scall sys_readlinkat 0x1d51421f421d910b globl hidden +scall sys_fchmodat 0x1cf13a1ea21d310c globl hidden +scall sys_faccessat 0x1ce1391e921d210d globl hidden +scall unshare 0xfffffffffffff110 globl +scall sys_splice 0xfffffffffffff113 globl hidden # Linux 2.6.17+ (c. 2007) +scall tee 0xfffffffffffff114 globl # Linux 2.6.17+ +scall sys_sync_file_range 0xfffffffffffff115 globl hidden # Linux 2.6.17+ +scall sys_vmsplice 0xfffffffffffff116 globl hidden +scall migrate_pages 0xfffffffffffff100 globl # numa numa yay +scall move_pages 0xfffffffffffff117 globl # NOTE: We view Red Hat versions as "epochs" for all distros. #──────────────────────RHEL 5.0 LIMIT──────────────────────── # ←┬─ last distro with gplv2 licensed compiler c. 2007 -scall __sys_preadv 0x010b0121ffff0127 globl hidden # ├─ last distro with system v shell script init -scall __sys_pwritev 0x010c0122ffff0128 globl hidden # ├─ rob landley unleashes busybox gpl lawsuits -scall __sys_utimensat 0x00540223ffff0118 globl hidden # ├─ python modules need this due to pep513 -scall sys_fallocate 0xffffffffffff011d globl hidden # ├─ end of life 2020-11-30 (extended) -scall sys_posix_fallocate 0xffff0212ffffffff globl hidden # └─ cosmopolitan supports rhel5+ -scall __sys_accept4 0x005d021dffff0120 globl hidden # Linux 2.6.28+ -scall __sys_dup3 0x0066ffffffff0124 globl hidden # Linux 2.6.27+ -scall __sys_pipe2 0x0065021effff0125 globl hidden # Linux 2.6.27+ -scall epoll_pwait 0xffffffffffff0119 globl -scall sys_epoll_create1 0xffffffffffff0123 globl -scall perf_event_open 0xffffffffffff012a globl -scall inotify_init1 0xffffffffffff0126 globl -scall rt_tgsigqueueinfo 0xffffffffffff0129 globl -scall signalfd 0xffffffffffff011a globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c -scall signalfd4 0xffffffffffff0121 globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c -scall eventfd 0xffffffffffff011c globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c -scall eventfd2 0xffffffffffff0122 globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c -scall timerfd_create 0xffffffffffff011b globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c -scall timerfd_settime 0xffffffffffff011e globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c -scall timerfd_gettime 0xffffffffffff011f globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c +scall __sys_preadv 0x12110b121ffff127 globl hidden # ├─ last distro with system v shell script init +scall __sys_pwritev 0x12210c122ffff128 globl hidden # ├─ rob landley unleashes busybox gpl lawsuits +scall __sys_utimensat 0x1d3054223ffff118 globl hidden # ├─ python modules need this due to pep513 +scall sys_fallocate 0xfffffffffffff11d globl hidden # ├─ end of life 2020-11-30 (extended) +scall sys_posix_fallocate 0xffffff212fffffff globl hidden # └─ cosmopolitan supports rhel5+ +scall __sys_accept4 0xfff05d21dffff120 globl hidden # Linux 2.6.28+ +scall __sys_dup3 0x1c6066fffffff124 globl hidden # Linux 2.6.27+ +scall __sys_pipe2 0x1c506521effff125 globl hidden # Linux 2.6.27+ +scall epoll_pwait 0xfffffffffffff119 globl +scall sys_epoll_create1 0xfffffffffffff123 globl +scall perf_event_open 0xfffffffffffff12a globl +scall inotify_init1 0xfffffffffffff126 globl +scall rt_tgsigqueueinfo 0xfffffffffffff129 globl +scall signalfd 0xfffffffffffff11a globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c +scall signalfd4 0xfffffffffffff121 globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c +scall eventfd 0xfffffffffffff11c globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c +scall eventfd2 0xfffffffffffff122 globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c +scall timerfd_create 0xfffffffffffff11b globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c +scall timerfd_settime 0xfffffffffffff11e globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c +scall timerfd_gettime 0xfffffffffffff11f globl # won't polyfill; see INTON/INTOFF tutorial in examples/unbourne.c #──────────────────────RHEL 6.0 LIMIT──────────────────────── # ←┬─ modern glibc needs rhel6+ c. 2011 -scall recvmmsg 0xffffffffffff012b globl # ├─ end of life 2024-06-30 (extended) -scall fanotify_init 0xffffffffffff012c globl # ├─ last distro with the original gnome desktop -scall fanotify_mark 0xffffffffffff012d globl # └─ apple and google condemn the gplv3/gccrtev3 -scall prlimit 0xffffffffffff012e globl -scall name_to_handle_at 0xffffffffffff012f globl -scall open_by_handle_at 0xffffffffffff0130 globl -scall clock_adjtime 0xffffffffffff0131 globl -scall syncfs 0xffffffffffff0132 globl -scall sendmmsg 0xffffffffffff0133 globl -scall setns 0xffffffffffff0134 globl -scall getcpu 0xffffffffffff0135 globl -scall process_vm_readv 0xffffffffffff0136 globl -scall process_vm_writev 0xffffffffffff0137 globl -scall kcmp 0xffffffffffff0138 globl -scall finit_module 0xffffffffffff0139 globl +scall recvmmsg 0x1dbffffffffff12b globl # ├─ end of life 2024-06-30 (extended) +scall fanotify_init 0xfffffffffffff12c globl # ├─ last distro with the original gnome desktop +scall fanotify_mark 0xfffffffffffff12d globl # └─ apple and google condemn the gplv3/gccrtev3 +scall prlimit 0xfffffffffffff12e globl +scall name_to_handle_at 0xfffffffffffff12f globl +scall open_by_handle_at 0xfffffffffffff130 globl +scall clock_adjtime 0xfffffffffffff131 globl +scall syncfs 0xfffffffffffff132 globl +scall sendmmsg 0x1dcffffffffff133 globl +scall setns 0xfffffffffffff134 globl +scall getcpu 0xfffffffffffff135 globl +scall process_vm_readv 0xfffffffffffff136 globl +scall process_vm_writev 0xfffffffffffff137 globl +scall kcmp 0xfffffffffffff138 globl +scall finit_module 0xfffffffffffff139 globl #──────────────────────RHEL 7.0 LIMIT──────────────────────── # ←┬─ anything that links or uses c++11 code needs rhel7+ c. 2014 -scall sched_setattr 0xffffffffffff013a globl # ├─ desktop replaced with tablet-first gui inspired by mac os x -scall sched_getattr 0xffffffffffff013b globl # ├─ karen sandler requires systemd init and boot for tablet gui -scall renameat2 0xffffffffffff013c globl # └─ debian founder ian murdock found strangled with vacuum cord -scall seccomp 0xffffffffffff013d globl -scall sys_getrandom 0x0007023321f4013e globl hidden # Linux 3.17+ and getentropy() on XNU/OpenBSD -scall memfd_create 0xffffffffffff013f globl # wut -scall kexec_file_load 0xffffffffffff0140 globl -scall bpf 0xffffffffffff0141 globl -scall execveat 0xffffffffffff0142 globl -scall userfaultfd 0xffffffffffff0143 globl # Linux 4.3+ (c. 2015) -scall membarrier 0xffffffffffff0144 globl # Linux 4.3+ (c. 2015) -scall mlock2 0xffffffffffff0145 globl # Linux 4.5+ (c. 2016) -scall sys_copy_file_range 0xffff0239ffff0146 globl hidden # Linux 4.5+ (c. 2016), FreeBSD 13+ -scall preadv2 0xffffffffffff0147 globl -scall pwritev2 0xffffffffffff0148 globl -scall pkey_mprotect 0xffffffffffff0149 globl -scall pkey_alloc 0xffffffffffff014a globl -scall pkey_free 0xffffffffffff014b globl -scall statx 0xffffffffffff014c globl # lool https://lkml.org/lkml/2010/7/22/249 -scall io_pgetevents 0xffffffffffff014d globl -scall rseq 0xffffffffffff014e globl # Linux 4.18+ (c. 2018) +scall sched_setattr 0xfffffffffffff13a globl # ├─ desktop replaced with tablet-first gui inspired by mac os x +scall sched_getattr 0xfffffffffffff13b globl # ├─ karen sandler requires systemd init and boot for tablet gui +scall renameat2 0xfffffffffffff13c globl # └─ debian founder ian murdock found strangled with vacuum cord +scall seccomp 0xfffffffffffff13d globl +scall sys_getrandom 0x05b00723321f413e globl hidden # Linux 3.17+ and getentropy() on XNU/OpenBSD +scall memfd_create 0xfffffffffffff13f globl # wut +scall kexec_file_load 0xfffffffffffff140 globl +scall bpf 0xfffffffffffff141 globl +scall execveat 0xfffffffffffff142 globl +scall userfaultfd 0xfffffffffffff143 globl # Linux 4.3+ (c. 2015) +scall membarrier 0xfffffffffffff144 globl # Linux 4.3+ (c. 2015) +scall mlock2 0xfffffffffffff145 globl # Linux 4.5+ (c. 2016) +scall sys_copy_file_range 0xffffff239ffff146 globl hidden # Linux 4.5+ (c. 2016), FreeBSD 13+ +scall preadv2 0xfffffffffffff147 globl +scall pwritev2 0xfffffffffffff148 globl +scall pkey_mprotect 0xfffffffffffff149 globl +scall pkey_alloc 0xfffffffffffff14a globl +scall pkey_free 0xfffffffffffff14b globl +scall statx 0xfffffffffffff14c globl # lool https://lkml.org/lkml/2010/7/22/249 +scall io_pgetevents 0xfffffffffffff14d globl +scall rseq 0xfffffffffffff14e globl # Linux 4.18+ (c. 2018) #──────────────────────LINUX 4.18 LIMIT────────────────────── # ←┬─ last version of linux kernel buildable with only gplv2 -scall pidfd_send_signal 0xffffffffffff01a8 globl # ├─ linux conferences ban linux founder linus torvalds -scall io_uring_setup 0xffffffffffff01a9 globl # └─ gnu founder richard stallman publicly disgraced -scall io_uring_enter 0xffffffffffff01aa globl -scall io_uring_register 0xffffffffffff01ab globl +scall pidfd_send_signal 0xfffffffffffff1a8 globl # ├─ linux conferences ban linux founder linus torvalds +scall io_uring_setup 0xfffffffffffff1a9 globl # └─ gnu founder richard stallman publicly disgraced +scall io_uring_enter 0xfffffffffffff1aa globl +scall io_uring_register 0xfffffffffffff1ab globl #────────────────────────RHEL CLOUD────────────────────────── # ←┬─ red hat terminates community release of enterprise linux circa 2020 -scall pledge 0x006cffffffffffff globl # └─ online linux services ban the president of united states of america -scall msyscall 0x0025ffffffffffff globl +scall pledge 0xfff06cffffffffff globl # └─ online linux services ban the president of united states of america +scall msyscall 0xfff025ffffffffff globl # The Fifth Bell System Interface, Community Edition # » besiyata dishmaya # GNU/Systemd┐ -# Mac OS X┐ │ -# FreeBSD┐ │ │ -# OpenBSD┐ │ ┌─│───│── XnuClass{1:Mach,2:Unix} -# ┌─┴┐┌─┴┐│┌┴┐┌─┴┐ -scall ktrace 0x002d002dffffffff globl -scall kqueue 0x010d016a216affff globl -scall kevent 0x004802302171ffff globl -scall revoke 0x003800382038ffff globl -scall setlogin 0x003200322032ffff globl -scall getfh 0x00a100a120a1ffff globl -scall chflags 0x002200222022ffff globl -scall getfsstat 0x003e022d215bffff globl -scall nfssvc 0x009b009b209bffff globl -scall adjtime 0x008c008c208cffff globl -scall fchflags 0x002300232023ffff globl -scall __bsd_seteuid 0x00b700b720b7ffff globl hidden # wrapped via setreuid() -scall __bsd_setegid 0x00b600b620b6ffff globl hidden # wrapped via setregid() -scall fpathconf 0x00c000c020c0ffff globl -scall fhopen 0x0108012a20f8ffff globl -scall unmount 0x00160016209fffff globl -scall issetugid 0x00fd00fd2147ffff globl -scall minherit 0x00fa00fa20faffff globl -scall pathconf 0x00bf00bf20bfffff globl -scall sysctl 0x00ca00ca20caffff globl +# Mac OS X┐ │ +# FreeBSD┐ │ │ +# OpenBSD┐ │ ┌─│──│── XnuClass{1:Mach,2:Unix} +# NetBSD┐ │ │ │ │ │ +# Symbol ┌┴┐┌┴┐┌┴┐│┬┴┐┌┴┐ Directives & Commentary +scall ktrace 0x02d02d02dfffffff globl +scall kqueue 0x15810d16a216afff globl +scall kevent 0x1b30482302171fff globl +scall revoke 0x0380380382038fff globl +scall setlogin 0xfff0320322032fff globl +scall getfh 0x18b0a10a120a1fff globl +scall chflags 0x0220220222022fff globl +scall getfsstat 0xfff03e22d215bfff globl +scall nfssvc 0x09b09b09b209bfff globl +scall adjtime 0x1a508c08c208cfff globl +scall fchflags 0x0230230232023fff globl +scall __bsd_seteuid 0xfff0b70b720b7fff globl hidden # wrapped via setreuid() +scall __bsd_setegid 0xfff0b60b620b6fff globl hidden # wrapped via setregid() +scall fpathconf 0x0c00c00c020c0fff globl +scall fhopen 0x18c10812a20f8fff globl +scall unmount 0x016016016209ffff globl +scall issetugid 0xfff0fd0fd2147fff globl +scall minherit 0x1110fa0fa20fafff globl +scall pathconf 0x0bf0bf0bf20bffff globl +scall sysctl 0xfff0ca0ca20cafff globl #───────────────────────XNU & FREEBSD──────────────────────── -scall ntp_adjtime 0xffff00b0220fffff globl -scall ntp_gettime 0xffff00f82210ffff globl -scall shm_unlink 0xffff01e3210bffff globl -scall shm_open 0xffff01e2210affff globl -scall aio_read 0xffff013e213effff globl -scall aio_suspend 0xffff013b213bffff globl -scall aio_cancel 0xffff013c213cffff globl -scall aio_fsync 0xffff01d12139ffff globl -scall aio_error 0xffff013d213dffff globl -scall aio_return 0xffff013a213affff globl -scall aio_write 0xffff013f213fffff globl -scall aio_waitcomplete 0xffff0167ffffffff globl -scall aio_suspend_nocancel 0xffffffff21a5ffff globl -scall aio_mlock 0xffff021fffffffff globl -scall sigwait 0xffff01ad214affff globl -scall undelete 0xffff00cd20cdffff globl -scall getlogin 0xffff00312031ffff globl -scall getdtablesize 0xffff00592059ffff globl -scall setauid 0xffff01c02162ffff globl -scall audit 0xffff01bd215effff globl -scall auditctl 0xffff01c52167ffff globl -scall getaudit_addr 0xffff01c32165ffff globl -scall getdirentries 0xffff022a20c4ffff globl # xnu getdirentries64 is 0x158 -scall lio_listio 0xffff01402140ffff globl -scall setaudit_addr 0xffff01c42166ffff globl -scall getauid 0xffff01bf2161ffff globl -scall semsys 0xffff00a920fbffff globl -scall auditon 0xffff01be215fffff globl -scall msgsys 0xffff00aa20fcffff globl -scall shmsys 0xffff00ab20fdffff globl +scall ntp_adjtime 0x0b0fff0b0220ffff globl +scall ntp_gettime 0x1c0fff0f82210fff globl +scall shm_unlink 0xffffff1e3210bfff globl +scall shm_open 0xffffff1e2210afff globl +scall aio_read 0x192fff13e213efff globl +scall aio_suspend 0x1b6fff13b213bfff globl +scall aio_cancel 0x18ffff13c213cfff globl +scall aio_fsync 0x191fff1d12139fff globl +scall aio_error 0x190fff13d213dfff globl +scall aio_return 0x193fff13a213afff globl +scall aio_write 0x195fff13f213ffff globl +scall aio_waitcomplete 0xffffff167fffffff globl +scall aio_suspend_nocancel 0xfffffffff21a5fff globl +scall aio_mlock 0xffffff21ffffffff globl +scall sigwait 0xffffff1ad214afff globl +scall undelete 0x0cdfff0cd20cdfff globl +scall getlogin 0xffffff0312031fff globl +scall getdtablesize 0xffffff0592059fff globl +scall setauid 0xffffff1c02162fff globl +scall audit 0xffffff1bd215efff globl +scall auditctl 0xffffff1c52167fff globl +scall getaudit_addr 0xffffff1c32165fff globl +scall getdirentries 0xffffff22a20c4fff globl # xnu getdirentries64 is 0x158 +scall lio_listio 0x196fff1402140fff globl +scall setaudit_addr 0xffffff1c42166fff globl +scall getauid 0xffffff1bf2161fff globl +scall semsys 0xffffff0a920fbfff globl +scall auditon 0xffffff1be215ffff globl +scall msgsys 0xffffff0aa20fcfff globl +scall shmsys 0xffffff0ab20fdfff globl #─────────────────────FREEBSD & OPENBSD────────────────────── -scall fhstat 0x01260229ffffffff globl -scall chflagsat 0x006b021cffffffff globl -scall profil 0x002c002cffffffff globl -scall fhstatfs 0x0041022effffffff globl -scall utrace 0x00d1014fffffffff globl -scall closefrom 0x011f01fdffffffff globl +scall fhstat 0x1c3126229fffffff globl +scall chflagsat 0xfff06b21cfffffff globl +scall profil 0x02c02c02cfffffff globl +scall fhstatfs 0xfff04122efffffff globl +scall utrace 0x1320d114ffffffff globl +scall closefrom 0xfff11f1fdfffffff globl #───────────────────────────XNU────────────────────────────── -scall __pthread_markcancel 0xffffffff214cffff globl -scall __pthread_kill 0xffffffff2148ffff globl -scall __pthread_fchdir 0xffffffff215dffff globl -scall __pthread_sigmask 0xffffffff2149ffff globl -scall __pthread_chdir 0xffffffff215cffff globl -scall __pthread_canceled 0xffffffff214dffff globl -scall __disable_threadsignal 0xffffffff214bffff globl -scall abort_with_payload 0xffffffff2209ffff globl -scall accept_nocancel 0xffffffff2194ffff globl -scall access_extended 0xffffffff211cffff globl -scall audit_session_join 0xffffffff21adffff globl -scall audit_session_port 0xffffffff21b0ffff globl -scall audit_session_self 0xffffffff21acffff globl -scall bsdthread_create 0xffffffff2168ffff globl -scall bsdthread_ctl 0xffffffff21deffff globl -scall bsdthread_register 0xffffffff216effff globl -scall bsdthread_terminate 0xffffffff2169ffff globl -scall change_fdguard_np 0xffffffff21bcffff globl -scall chmod_extended 0xffffffff211affff globl -scall clonefileat 0xffffffff21ceffff globl -scall close_nocancel 0xffffffff218fffff globl -scall coalition 0xffffffff21caffff globl -scall coalition_info 0xffffffff21cbffff globl -scall connect_nocancel 0xffffffff2199ffff globl -scall connectx 0xffffffff21bfffff globl -scall copyfile 0xffffffff20e3ffff globl -scall csops 0xffffffff20a9ffff globl -scall csops_audittoken 0xffffffff20aaffff globl -scall csrctl 0xffffffff21e3ffff globl -scall delete 0xffffffff20e2ffff globl -scall disconnectx 0xffffffff21c0ffff globl -scall exchangedata 0xffffffff20dfffff globl -scall fchmod_extended 0xffffffff211bffff globl -scall fclonefileat 0xffffffff2205ffff globl -scall fcntl_nocancel 0xffffffff2196ffff globl -scall ffsctl 0xffffffff20f5ffff globl -scall fgetattrlist 0xffffffff20e4ffff globl -scall fileport_makefd 0xffffffff21afffff globl -scall fileport_makeport 0xffffffff21aeffff globl -scall fmount 0xffffffff220effff globl -scall fs_snapshot 0xffffffff2206ffff globl -scall fsctl 0xffffffff20f2ffff globl -scall fsetattrlist 0xffffffff20e5ffff globl -scall fstat_extended 0xffffffff2119ffff globl -scall fsync_nocancel 0xffffffff2198ffff globl -scall getattrlist 0xffffffff20dcffff globl -scall getattrlistat 0xffffffff21dcffff globl -scall getattrlistbulk 0xffffffff21cdffff globl -scall getdirentriesattr 0xffffffff20deffff globl -scall gethostuuid 0xffffffff208effff globl -scall getsgroups 0xffffffff2120ffff globl -scall getwgroups 0xffffffff2122ffff globl -scall grab_pgo_data 0xffffffff21edffff globl -scall guarded_close_np 0xffffffff21baffff globl -scall guarded_kqueue_np 0xffffffff21bbffff globl -scall guarded_open_np 0xffffffff21b9ffff globl -scall guarded_pwrite_np 0xffffffff21e6ffff globl -scall guarded_write_np 0xffffffff21e5ffff globl -scall guarded_writev_np 0xffffffff21e7ffff globl -scall identitysvc 0xffffffff2125ffff globl -scall initgroups 0xffffffff20f3ffff globl -scall iopolicysys 0xffffffff2142ffff globl -scall kas_info 0xffffffff21b7ffff globl -scall kdebug_trace 0xffffffff20b3ffff globl -scall kdebug_trace_string 0xffffffff20b2ffff globl -scall kdebug_typefilter 0xffffffff20b1ffff globl -scall kevent_id 0xffffffff2177ffff globl -scall kevent_qos 0xffffffff2176ffff globl -scall ledger 0xffffffff2175ffff globl -scall lstat_extended 0xffffffff2156ffff globl -scall memorystatus_control 0xffffffff21b8ffff globl -scall memorystatus_get_level 0xffffffff21c5ffff globl -scall microstackshot 0xffffffff21ecffff globl -scall mkdir_extended 0xffffffff2124ffff globl -scall mkfifo_extended 0xffffffff2123ffff globl -scall modwatch 0xffffffff20e9ffff globl -scall mremap_encrypted 0xffffffff21e9ffff globl -scall msgrcv_nocancel 0xffffffff21a3ffff globl -scall msgsnd_nocancel 0xffffffff21a2ffff globl -scall msync_nocancel 0xffffffff2195ffff globl -scall necp_client_action 0xffffffff21f6ffff globl -scall necp_match_policy 0xffffffff21ccffff globl -scall necp_open 0xffffffff21f5ffff globl -scall necp_session_action 0xffffffff220bffff globl -scall necp_session_open 0xffffffff220affff globl -scall net_qos_guideline 0xffffffff220dffff globl -scall netagent_trigger 0xffffffff21eaffff globl -scall nfsclnt 0xffffffff20f7ffff globl -scall open_dprotected_np 0xffffffff20d8ffff globl -scall open_extended 0xffffffff2115ffff globl -scall open_nocancel 0xffffffff218effff globl -scall openat_nocancel 0xffffffff21d0ffff globl -scall openbyid_np 0xffffffff21dfffff globl -scall os_fault_with_payload 0xffffffff2211ffff globl -scall peeloff 0xffffffff21c1ffff globl -scall persona 0xffffffff21eeffff globl -scall pid_hibernate 0xffffffff21b3ffff globl -scall pid_resume 0xffffffff21b2ffff globl -scall pid_shutdown_sockets 0xffffffff21b4ffff globl -scall pid_suspend 0xffffffff21b1ffff globl -scall poll_nocancel 0xffffffff21a1ffff globl -scall pread_nocancel 0xffffffff219effff globl -scall proc_info 0xffffffff2150ffff globl -scall proc_rlimit_control 0xffffffff21beffff globl -scall proc_trace_log 0xffffffff21ddffff globl -scall proc_uuid_policy 0xffffffff21c4ffff globl -scall process_policy 0xffffffff2143ffff globl -scall pselect_nocancel 0xffffffff218bffff globl -scall psynch_cvbroad 0xffffffff212fffff globl -scall psynch_cvclrprepost 0xffffffff2138ffff globl -scall psynch_cvsignal 0xffffffff2130ffff globl -scall psynch_mutexdrop 0xffffffff212effff globl -scall psynch_mutexwait 0xffffffff212dffff globl -scall psynch_rw_downgrade 0xffffffff212bffff globl -scall psynch_rw_longrdlock 0xffffffff2129ffff globl -scall psynch_rw_rdlock 0xffffffff2132ffff globl -scall psynch_rw_unlock 0xffffffff2134ffff globl -scall psynch_rw_unlock2 0xffffffff2135ffff globl -scall psynch_rw_upgrade 0xffffffff212cffff globl -scall psynch_rw_wrlock 0xffffffff2133ffff globl -scall psynch_rw_yieldwrlock 0xffffffff212affff globl -scall pwrite_nocancel 0xffffffff219fffff globl -scall read_nocancel 0xffffffff218cffff globl -scall readv_nocancel 0xffffffff219bffff globl -scall recvfrom_nocancel 0xffffffff2193ffff globl -scall recvmsg_nocancel 0xffffffff2191ffff globl -scall recvmsg_x 0xffffffff21e0ffff globl -scall renameatx_np 0xffffffff21e8ffff globl -scall searchfs 0xffffffff20e1ffff globl -scall select_nocancel 0xffffffff2197ffff globl -scall sem_close 0xffffffff210dffff globl -scall sem_open 0xffffffff210cffff globl -scall sem_post 0xffffffff2111ffff globl -scall sem_trywait 0xffffffff2110ffff globl -scall sem_unlink 0xffffffff210effff globl -scall sem_wait 0xffffffff210fffff globl -scall sem_wait_nocancel 0xffffffff21a4ffff globl -scall sendmsg_nocancel 0xffffffff2192ffff globl -scall sendmsg_x 0xffffffff21e1ffff globl -scall sendto_nocancel 0xffffffff219dffff globl -scall setattrlist 0xffffffff20ddffff globl -scall setattrlistat 0xffffffff220cffff globl -scall setprivexec 0xffffffff2098ffff globl -scall setsgroups 0xffffffff211fffff globl -scall settid 0xffffffff211dffff globl -scall settid_with_pid 0xffffffff2137ffff globl -scall setwgroups 0xffffffff2121ffff globl -scall sfi_ctl 0xffffffff21c8ffff globl -scall sfi_pidctl 0xffffffff21c9ffff globl -scall shared_region_check_np 0xffffffff2126ffff globl -scall sigsuspend_nocancel 0xffffffff219affff globl -scall socket_delegate 0xffffffff21c2ffff globl -scall stat_extended 0xffffffff2155ffff globl -scall sysctlbyname 0xffffffff2112ffff globl -scall system_override 0xffffffff21c6ffff globl -scall telemetry 0xffffffff21c3ffff globl -scall terminate_with_payload 0xffffffff2208ffff globl -scall thread_selfcounts 0xffffffff20baffff globl -scall thread_selfid 0xffffffff2174ffff globl -scall thread_selfusage 0xffffffff21e2ffff globl -scall ulock_wait 0xffffffff2203ffff globl -scall ulock_wake 0xffffffff2204ffff globl -scall umask_extended 0xffffffff2116ffff globl -scall usrctl 0xffffffff21bdffff globl -scall vfs_purge 0xffffffff21c7ffff globl -scall vm_pressure_monitor 0xffffffff2128ffff globl -scall wait4_nocancel 0xffffffff2190ffff globl -scall waitevent 0xffffffff20e8ffff globl -scall waitid_nocancel 0xffffffff21a0ffff globl -scall watchevent 0xffffffff20e7ffff globl -scall work_interval_ctl 0xffffffff21f3ffff globl -scall workq_kernreturn 0xffffffff2170ffff globl -scall workq_open 0xffffffff216fffff globl -scall write_nocancel 0xffffffff218dffff globl -scall writev_nocancel 0xffffffff219cffff globl +scall __pthread_markcancel 0xfffffffff214cfff globl +scall __pthread_kill 0xfffffffff2148fff globl +scall __pthread_fchdir 0xfffffffff215dfff globl +scall __pthread_sigmask 0xfffffffff2149fff globl +scall __pthread_chdir 0xfffffffff215cfff globl +scall __pthread_canceled 0xfffffffff214dfff globl +scall __disable_threadsignal 0xfffffffff214bfff globl +scall abort_with_payload 0xfffffffff2209fff globl +scall accept_nocancel 0xfffffffff2194fff globl +scall access_extended 0xfffffffff211cfff globl +scall audit_session_join 0xfffffffff21adfff globl +scall audit_session_port 0xfffffffff21b0fff globl +scall audit_session_self 0xfffffffff21acfff globl +scall bsdthread_create 0xfffffffff2168fff globl +scall bsdthread_ctl 0xfffffffff21defff globl +scall bsdthread_register 0xfffffffff216efff globl +scall bsdthread_terminate 0xfffffffff2169fff globl +scall change_fdguard_np 0xfffffffff21bcfff globl +scall chmod_extended 0xfffffffff211afff globl +scall clonefileat 0xfffffffff21cefff globl +scall close_nocancel 0xfffffffff218ffff globl +scall coalition 0xfffffffff21cafff globl +scall coalition_info 0xfffffffff21cbfff globl +scall connect_nocancel 0xfffffffff2199fff globl +scall connectx 0xfffffffff21bffff globl +scall copyfile 0xfffffffff20e3fff globl +scall csops 0xfffffffff20a9fff globl +scall csops_audittoken 0xfffffffff20aafff globl +scall csrctl 0xfffffffff21e3fff globl +scall delete 0xfffffffff20e2fff globl +scall disconnectx 0xfffffffff21c0fff globl +scall exchangedata 0xfffffffff20dffff globl +scall fchmod_extended 0xfffffffff211bfff globl +scall fclonefileat 0xfffffffff2205fff globl +scall fcntl_nocancel 0xfffffffff2196fff globl +scall ffsctl 0xfffffffff20f5fff globl +scall fgetattrlist 0xfffffffff20e4fff globl +scall fileport_makefd 0xfffffffff21affff globl +scall fileport_makeport 0xfffffffff21aefff globl +scall fmount 0xfffffffff220efff globl +scall fs_snapshot 0xfffffffff2206fff globl +scall fsctl 0xfffffffff20f2fff globl +scall fsetattrlist 0xfffffffff20e5fff globl +scall fstat_extended 0xfffffffff2119fff globl +scall fsync_nocancel 0xfffffffff2198fff globl +scall getattrlist 0xfffffffff20dcfff globl +scall getattrlistat 0xfffffffff21dcfff globl +scall getattrlistbulk 0xfffffffff21cdfff globl +scall getdirentriesattr 0xfffffffff20defff globl +scall gethostuuid 0xfffffffff208efff globl +scall getsgroups 0xfffffffff2120fff globl +scall getwgroups 0xfffffffff2122fff globl +scall grab_pgo_data 0xfffffffff21edfff globl +scall guarded_close_np 0xfffffffff21bafff globl +scall guarded_kqueue_np 0xfffffffff21bbfff globl +scall guarded_open_np 0xfffffffff21b9fff globl +scall guarded_pwrite_np 0xfffffffff21e6fff globl +scall guarded_write_np 0xfffffffff21e5fff globl +scall guarded_writev_np 0xfffffffff21e7fff globl +scall identitysvc 0xfffffffff2125fff globl +scall initgroups 0xfffffffff20f3fff globl +scall iopolicysys 0xfffffffff2142fff globl +scall kas_info 0xfffffffff21b7fff globl +scall kdebug_trace 0xfffffffff20b3fff globl +scall kdebug_trace_string 0xfffffffff20b2fff globl +scall kdebug_typefilter 0xfffffffff20b1fff globl +scall kevent_id 0xfffffffff2177fff globl +scall kevent_qos 0xfffffffff2176fff globl +scall ledger 0xfffffffff2175fff globl +scall lstat_extended 0xfffffffff2156fff globl +scall memorystatus_control 0xfffffffff21b8fff globl +scall memorystatus_get_level 0xfffffffff21c5fff globl +scall microstackshot 0xfffffffff21ecfff globl +scall mkdir_extended 0xfffffffff2124fff globl +scall mkfifo_extended 0xfffffffff2123fff globl +scall modwatch 0xfffffffff20e9fff globl +scall mremap_encrypted 0xfffffffff21e9fff globl +scall msgrcv_nocancel 0xfffffffff21a3fff globl +scall msgsnd_nocancel 0xfffffffff21a2fff globl +scall msync_nocancel 0xfffffffff2195fff globl +scall necp_client_action 0xfffffffff21f6fff globl +scall necp_match_policy 0xfffffffff21ccfff globl +scall necp_open 0xfffffffff21f5fff globl +scall necp_session_action 0xfffffffff220bfff globl +scall necp_session_open 0xfffffffff220afff globl +scall net_qos_guideline 0xfffffffff220dfff globl +scall netagent_trigger 0xfffffffff21eafff globl +scall nfsclnt 0xfffffffff20f7fff globl +scall open_dprotected_np 0xfffffffff20d8fff globl +scall open_extended 0xfffffffff2115fff globl +scall open_nocancel 0xfffffffff218efff globl +scall openat_nocancel 0xfffffffff21d0fff globl +scall openbyid_np 0xfffffffff21dffff globl +scall os_fault_with_payload 0xfffffffff2211fff globl +scall peeloff 0xfffffffff21c1fff globl +scall persona 0xfffffffff21eefff globl +scall pid_hibernate 0xfffffffff21b3fff globl +scall pid_resume 0xfffffffff21b2fff globl +scall pid_shutdown_sockets 0xfffffffff21b4fff globl +scall pid_suspend 0xfffffffff21b1fff globl +scall poll_nocancel 0xfffffffff21a1fff globl +scall pread_nocancel 0xfffffffff219efff globl +scall proc_info 0xfffffffff2150fff globl +scall proc_rlimit_control 0xfffffffff21befff globl +scall proc_trace_log 0xfffffffff21ddfff globl +scall proc_uuid_policy 0xfffffffff21c4fff globl +scall process_policy 0xfffffffff2143fff globl +scall pselect_nocancel 0xfffffffff218bfff globl +scall psynch_cvbroad 0xfffffffff212ffff globl +scall psynch_cvclrprepost 0xfffffffff2138fff globl +scall psynch_cvsignal 0xfffffffff2130fff globl +scall psynch_mutexdrop 0xfffffffff212efff globl +scall psynch_mutexwait 0xfffffffff212dfff globl +scall psynch_rw_downgrade 0xfffffffff212bfff globl +scall psynch_rw_longrdlock 0xfffffffff2129fff globl +scall psynch_rw_rdlock 0xfffffffff2132fff globl +scall psynch_rw_unlock 0xfffffffff2134fff globl +scall psynch_rw_unlock2 0xfffffffff2135fff globl +scall psynch_rw_upgrade 0xfffffffff212cfff globl +scall psynch_rw_wrlock 0xfffffffff2133fff globl +scall psynch_rw_yieldwrlock 0xfffffffff212afff globl +scall pwrite_nocancel 0xfffffffff219ffff globl +scall read_nocancel 0xfffffffff218cfff globl +scall readv_nocancel 0xfffffffff219bfff globl +scall recvfrom_nocancel 0xfffffffff2193fff globl +scall recvmsg_nocancel 0xfffffffff2191fff globl +scall recvmsg_x 0xfffffffff21e0fff globl +scall renameatx_np 0xfffffffff21e8fff globl +scall searchfs 0xfffffffff20e1fff globl +scall select_nocancel 0xfffffffff2197fff globl +scall sem_close 0xfffffffff210dfff globl +scall sem_open 0xfffffffff210cfff globl +scall sem_post 0xfffffffff2111fff globl +scall sem_trywait 0xfffffffff2110fff globl +scall sem_unlink 0xfffffffff210efff globl +scall sem_wait 0xfffffffff210ffff globl +scall sem_wait_nocancel 0xfffffffff21a4fff globl +scall sendmsg_nocancel 0xfffffffff2192fff globl +scall sendmsg_x 0xfffffffff21e1fff globl +scall sendto_nocancel 0xfffffffff219dfff globl +scall setattrlist 0xfffffffff20ddfff globl +scall setattrlistat 0xfffffffff220cfff globl +scall setprivexec 0xfffffffff2098fff globl +scall setsgroups 0xfffffffff211ffff globl +scall settid 0xfffffffff211dfff globl +scall settid_with_pid 0xfffffffff2137fff globl +scall setwgroups 0xfffffffff2121fff globl +scall sfi_ctl 0xfffffffff21c8fff globl +scall sfi_pidctl 0xfffffffff21c9fff globl +scall shared_region_check_np 0xfffffffff2126fff globl +scall sigsuspend_nocancel 0xfffffffff219afff globl +scall socket_delegate 0xfffffffff21c2fff globl +scall stat_extended 0xfffffffff2155fff globl +scall sysctlbyname 0xfffffffff2112fff globl +scall system_override 0xfffffffff21c6fff globl +scall telemetry 0xfffffffff21c3fff globl +scall terminate_with_payload 0xfffffffff2208fff globl +scall thread_selfcounts 0xfffffffff20bafff globl +scall thread_selfid 0xfffffffff2174fff globl +scall thread_selfusage 0xfffffffff21e2fff globl +scall ulock_wait 0xfffffffff2203fff globl +scall ulock_wake 0xfffffffff2204fff globl +scall umask_extended 0xfffffffff2116fff globl +scall usrctl 0xfffffffff21bdfff globl +scall vfs_purge 0xfffffffff21c7fff globl +scall vm_pressure_monitor 0xfffffffff2128fff globl +scall wait4_nocancel 0xfffffffff2190fff globl +scall waitevent 0xfffffffff20e8fff globl +scall waitid_nocancel 0xfffffffff21a0fff globl +scall watchevent 0xfffffffff20e7fff globl +scall work_interval_ctl 0xfffffffff21f3fff globl +scall workq_kernreturn 0xfffffffff2170fff globl +scall workq_open 0xfffffffff216ffff globl +scall write_nocancel 0xfffffffff218dfff globl +scall writev_nocancel 0xfffffffff219cfff globl #──────────────────────────FREEBSD─────────────────────────── -scall abort2 0xffff01cfffffffff globl -scall afs3_syscall 0xffff0179ffffffff globl -scall bindat 0xffff021affffffff globl -scall break 0xffff0011ffffffff globl -scall cap_enter 0xffff0204ffffffff globl -scall cap_fcntls_get 0xffff0219ffffffff globl -scall cap_fcntls_limit 0xffff0218ffffffff globl -scall cap_getmode 0xffff0205ffffffff globl -scall cap_ioctls_get 0xffff0217ffffffff globl -scall cap_ioctls_limit 0xffff0216ffffffff globl -scall cap_rights_limit 0xffff0215ffffffff globl -scall clock_getcpuclockid2 0xffff00f7ffffffff globl -scall connectat 0xffff021bffffffff globl -scall cpuset 0xffff01e4ffffffff globl -scall cpuset_getdomain 0xffff0231ffffffff globl -scall cpuset_getid 0xffff01e6ffffffff globl -scall cpuset_setdomain 0xffff0232ffffffff globl -scall cpuset_setid 0xffff01e5ffffffff globl -scall eaccess 0xffff0178ffffffff globl -scall extattr_delete_fd 0xffff0175ffffffff globl -scall extattr_delete_file 0xffff0166ffffffff globl -scall extattr_delete_link 0xffff019effffffff globl -scall extattr_get_fd 0xffff0174ffffffff globl -scall extattr_get_file 0xffff0165ffffffff globl -scall extattr_get_link 0xffff019dffffffff globl -scall extattr_list_fd 0xffff01b5ffffffff globl -scall extattr_list_file 0xffff01b6ffffffff globl -scall extattr_list_link 0xffff01b7ffffffff globl -scall extattr_set_fd 0xffff0173ffffffff globl -scall extattr_set_file 0xffff0164ffffffff globl -scall extattr_set_link 0xffff019cffffffff globl -scall extattrctl 0xffff0163ffffffff globl -scall fexecve 0xffff01ecffffffff globl -scall ffclock_getcounter 0xffff00f1ffffffff globl -scall ffclock_getestimate 0xffff00f3ffffffff globl -scall ffclock_setestimate 0xffff00f2ffffffff globl -scall fhlink 0xffff0235ffffffff globl -scall fhlinkat 0xffff0236ffffffff globl -scall fhreadlink 0xffff0237ffffffff globl -scall getaudit 0xffff01c1ffffffff globl -scall getcontext 0xffff01a5ffffffff globl +scall abort2 0xffffff1cffffffff globl +scall afs3_syscall 0xffffff179fffffff globl +scall bindat 0xffffff21afffffff globl +scall break 0xffffff011fffffff globl +scall cap_enter 0xffffff204fffffff globl +scall cap_fcntls_get 0xffffff219fffffff globl +scall cap_fcntls_limit 0xffffff218fffffff globl +scall cap_getmode 0xffffff205fffffff globl +scall cap_ioctls_get 0xffffff217fffffff globl +scall cap_ioctls_limit 0xffffff216fffffff globl +scall cap_rights_limit 0xffffff215fffffff globl +scall clock_getcpuclockid2 0x1e2fff0f7fffffff globl +scall connectat 0xffffff21bfffffff globl +scall cpuset 0xffffff1e4fffffff globl +scall cpuset_getdomain 0xffffff231fffffff globl +scall cpuset_getid 0xffffff1e6fffffff globl +scall cpuset_setdomain 0xffffff232fffffff globl +scall cpuset_setid 0xffffff1e5fffffff globl +scall eaccess 0xffffff178fffffff globl +scall extattr_delete_fd 0x16efff175fffffff globl +scall extattr_delete_file 0x16bfff166fffffff globl +scall extattr_delete_link 0x171fff19efffffff globl +scall extattr_get_fd 0x16dfff174fffffff globl +scall extattr_get_file 0x16afff165fffffff globl +scall extattr_get_link 0x170fff19dfffffff globl +scall extattr_list_fd 0x172fff1b5fffffff globl +scall extattr_list_file 0x173fff1b6fffffff globl +scall extattr_list_link 0x174fff1b7fffffff globl +scall extattr_set_fd 0x16cfff173fffffff globl +scall extattr_set_file 0x169fff164fffffff globl +scall extattr_set_link 0x16ffff19cfffffff globl +scall extattrctl 0x168fff163fffffff globl +scall fexecve 0x1d1fff1ecfffffff globl +scall ffclock_getcounter 0xffffff0f1fffffff globl +scall ffclock_getestimate 0xffffff0f3fffffff globl +scall ffclock_setestimate 0xffffff0f2fffffff globl +scall fhlink 0xffffff235fffffff globl +scall fhlinkat 0xffffff236fffffff globl +scall fhreadlink 0xffffff237fffffff globl +scall getaudit 0xffffff1c1fffffff globl +scall getcontext 0x133fff1a5fffffff globl #scall getdomainname 0xffff00a2ffffffff globl -scall getfhat 0xffff0234ffffffff globl -scall gethostid 0xffff008effffffff globl +scall getfhat 0xffffff234fffffff globl +scall gethostid 0xffffff08efffffff globl #scall gethostname 0xffff0057ffffffff globl -scall getkerninfo 0xffff003fffffffff globl -scall getloginclass 0xffff020bffffffff globl -scall getpagesize_freebsd 0xffff0040ffffffff globl hidden -scall gssd_syscall 0xffff01f9ffffffff globl -scall jail 0xffff0152ffffffff globl -scall jail_attach 0xffff01b4ffffffff globl -scall jail_get 0xffff01faffffffff globl -scall jail_remove 0xffff01fcffffffff globl -scall jail_set 0xffff01fbffffffff globl -scall kenv 0xffff0186ffffffff globl -scall kldfind 0xffff0132ffffffff globl -scall kldfirstmod 0xffff0135ffffffff globl -scall kldload 0xffff0130ffffffff globl -scall kldnext 0xffff0133ffffffff globl -scall kldstat 0xffff0134ffffffff globl -scall kldsym 0xffff0151ffffffff globl -scall kldunload 0xffff0131ffffffff globl -scall kldunloadf 0xffff01bcffffffff globl -scall kmq_notify 0xffff01cdffffffff globl -scall kmq_setattr 0xffff01caffffffff globl -scall kmq_timedreceive 0xffff01cbffffffff globl -scall kmq_timedsend 0xffff01ccffffffff globl -scall kmq_unlink 0xffff01ceffffffff globl -scall ksem_close 0xffff0190ffffffff globl -scall ksem_destroy 0xffff0198ffffffff globl -scall ksem_getvalue 0xffff0197ffffffff globl -scall ksem_init 0xffff0194ffffffff globl -scall ksem_open 0xffff0195ffffffff globl -scall ksem_post 0xffff0191ffffffff globl -scall ksem_timedwait 0xffff01b9ffffffff globl -scall ksem_trywait 0xffff0193ffffffff globl -scall ksem_unlink 0xffff0196ffffffff globl -scall ksem_wait 0xffff0192ffffffff globl -scall ktimer_create 0xffff00ebffffffff globl -scall ktimer_delete 0xffff00ecffffffff globl -scall ktimer_getoverrun 0xffff00efffffffff globl -scall ktimer_gettime 0xffff00eeffffffff globl -scall ktimer_settime 0xffff00edffffffff globl -scall lchflags 0xffff0187ffffffff globl -scall lchmod 0xffff0112ffffffff globl -scall lgetfh 0xffff00a0ffffffff globl -scall lpathconf 0xffff0201ffffffff globl -scall lutimes 0xffff0114ffffffff globl -scall mac_syscall 0xffff018affffffff globl -scall modfind 0xffff012fffffffff globl -scall modfnext 0xffff012effffffff globl -scall modnext 0xffff012cffffffff globl -scall modstat 0xffff012dffffffff globl -scall nfstat 0xffff0117ffffffff globl -scall nlm_syscall 0xffff009affffffff globl -scall nlstat 0xffff0118ffffffff globl -scall nmount 0xffff017affffffff globl -scall nnpfs_syscall 0xffff0153ffffffff globl -scall nstat 0xffff0116ffffffff globl -scall pdfork 0xffff0206ffffffff globl -scall pdgetpid 0xffff0208ffffffff globl -scall pdkill 0xffff0207ffffffff globl -scall sys_posix_openpt 0xffff01f8ffffffff globl hidden -scall procctl 0xffff0220ffffffff globl -scall psynch_cvwait 0xffffffff2131ffff globl -scall quota 0xffff0095ffffffff globl -scall rctl_add_rule 0xffff0210ffffffff globl -scall rctl_get_limits 0xffff020fffffffff globl -scall rctl_get_racct 0xffff020dffffffff globl -scall rctl_get_rules 0xffff020effffffff globl -scall rctl_remove_rule 0xffff0211ffffffff globl -scall recv 0xffff0066ffffffff globl -scall rfork 0xffff00fbffffffff globl -scall rtprio 0xffff00a6ffffffff globl -scall rtprio_thread 0xffff01d2ffffffff globl -scall send 0xffff0065ffffffff globl -scall setaudit 0xffff01c2ffffffff globl -scall setcontext 0xffff01a6ffffffff globl -scall setfib 0xffff00afffffffff globl -scall sethostid 0xffff008fffffffff globl -scall setloginclass 0xffff020cffffffff globl -scall sigblock 0xffff006dffffffff globl -scall sigqueue 0xffff01c8ffffffff globl -scall sigsetmask 0xffff006effffffff globl -scall sigstack 0xffff0070ffffffff globl -scall sigvec 0xffff006cffffffff globl -scall sigwaitinfo 0xffff015affffffff globl -scall sstk 0xffff0046ffffffff globl -scall swapcontext 0xffff01a7ffffffff globl -scall thr_create 0xffff01aeffffffff globl -scall thr_exit 0xffff01afffffffff globl -scall thr_kill 0xffff01b1ffffffff globl -scall thr_kill2 0xffff01e1ffffffff globl -scall thr_new 0xffff01c7ffffffff globl -scall thr_self 0xffff01b0ffffffff globl -scall thr_set_name 0xffff01d0ffffffff globl -scall thr_suspend 0xffff01baffffffff globl -scall thr_wake 0xffff01bbffffffff globl -scall uuidgen 0xffff0188ffffffff globl -scall vadvise 0xffff0048ffffffff globl -scall wait 0xffff0054ffffffff globl -scall wait6 0xffff0214ffffffff globl -scall yield 0xffff0141ffffffff globl +scall getkerninfo 0xffffff03ffffffff globl +scall getloginclass 0xffffff20bfffffff globl +scall getpagesize_freebsd 0xffffff040fffffff globl hidden +scall gssd_syscall 0xffffff1f9fffffff globl +scall jail 0xffffff152fffffff globl +scall jail_attach 0xffffff1b4fffffff globl +scall jail_get 0xffffff1fafffffff globl +scall jail_remove 0xffffff1fcfffffff globl +scall jail_set 0xffffff1fbfffffff globl +scall kenv 0xffffff186fffffff globl +scall kldfind 0xffffff132fffffff globl +scall kldfirstmod 0xffffff135fffffff globl +scall kldload 0xffffff130fffffff globl +scall kldnext 0xffffff133fffffff globl +scall kldstat 0xffffff134fffffff globl +scall kldsym 0xffffff151fffffff globl +scall kldunload 0xffffff131fffffff globl +scall kldunloadf 0xffffff1bcfffffff globl +scall kmq_notify 0xffffff1cdfffffff globl +scall kmq_setattr 0xffffff1cafffffff globl +scall kmq_timedreceive 0xffffff1cbfffffff globl +scall kmq_timedsend 0xffffff1ccfffffff globl +scall kmq_unlink 0xffffff1cefffffff globl +scall ksem_close 0xffffff190fffffff globl +scall ksem_destroy 0xffffff198fffffff globl +scall ksem_getvalue 0xffffff197fffffff globl +scall ksem_init 0xffffff194fffffff globl +scall ksem_open 0xffffff195fffffff globl +scall ksem_post 0xffffff191fffffff globl +scall ksem_timedwait 0xffffff1b9fffffff globl +scall ksem_trywait 0xffffff193fffffff globl +scall ksem_unlink 0xffffff196fffffff globl +scall ksem_wait 0xffffff192fffffff globl +scall ktimer_create 0xffffff0ebfffffff globl +scall ktimer_delete 0xffffff0ecfffffff globl +scall ktimer_getoverrun 0xffffff0effffffff globl +scall ktimer_gettime 0xffffff0eefffffff globl +scall ktimer_settime 0xffffff0edfffffff globl +scall lchflags 0x130fff187fffffff globl +scall lchmod 0x112fff112fffffff globl +scall lgetfh 0xffffff0a0fffffff globl +scall lpathconf 0x1f3fff201fffffff globl +scall lutimes 0x1a8fff114fffffff globl +scall mac_syscall 0xffffff18afffffff globl +scall modfind 0xffffff12ffffffff globl +scall modfnext 0xffffff12efffffff globl +scall modnext 0xffffff12cfffffff globl +scall modstat 0xffffff12dfffffff globl +scall nfstat 0xffffff117fffffff globl +scall nlm_syscall 0xffffff09afffffff globl +scall nlstat 0xffffff118fffffff globl +scall nmount 0xffffff17afffffff globl +scall nnpfs_syscall 0xffffff153fffffff globl +scall nstat 0xffffff116fffffff globl +scall pdfork 0xffffff206fffffff globl +scall pdgetpid 0xffffff208fffffff globl +scall pdkill 0xffffff207fffffff globl +scall sys_posix_openpt 0xffffff1f8fffffff globl hidden +scall procctl 0xffffff220fffffff globl +scall psynch_cvwait 0xfffffffff2131fff globl +scall quota 0xffffff095fffffff globl +scall rctl_add_rule 0xffffff210fffffff globl +scall rctl_get_limits 0xffffff20ffffffff globl +scall rctl_get_racct 0xffffff20dfffffff globl +scall rctl_get_rules 0xffffff20efffffff globl +scall rctl_remove_rule 0xffffff211fffffff globl +scall recv 0xffffff066fffffff globl +scall rfork 0xffffff0fbfffffff globl +scall rtprio 0xffffff0a6fffffff globl +scall rtprio_thread 0xffffff1d2fffffff globl +scall send 0xffffff065fffffff globl +scall setaudit 0xffffff1c2fffffff globl +scall setcontext 0x134fff1a6fffffff globl +scall setfib 0xffffff0affffffff globl +scall sethostid 0xffffff08ffffffff globl +scall setloginclass 0xffffff20cfffffff globl +scall sigblock 0xffffff06dfffffff globl +scall sigqueue 0xffffff1c8fffffff globl +scall sigsetmask 0xffffff06efffffff globl +scall sigstack 0xffffff070fffffff globl +scall sigvec 0xffffff06cfffffff globl +scall sigwaitinfo 0xffffff15afffffff globl +scall sstk 0xffffff046fffffff globl +scall swapcontext 0xffffff1a7fffffff globl +scall thr_create 0xffffff1aefffffff globl +scall thr_exit 0xffffff1affffffff globl +scall thr_kill 0xffffff1b1fffffff globl +scall thr_kill2 0xffffff1e1fffffff globl +scall thr_new 0xffffff1c7fffffff globl +scall thr_self 0xffffff1b0fffffff globl +scall thr_set_name 0xffffff1d0fffffff globl +scall thr_suspend 0xffffff1bafffffff globl +scall thr_wake 0xffffff1bbfffffff globl +scall uuidgen 0x163fff188fffffff globl +scall vadvise 0xffffff048fffffff globl +scall wait 0xffffff054fffffff globl +scall wait6 0x1e1fff214fffffff globl +scall yield 0xffffff141fffffff globl #──────────────────────────OPENBSD─────────────────────────── -scall __tfork 0x0008ffffffffffff globl -scall __thrsleep 0x005effffffffffff globl -scall __thrwakeup 0x012dffffffffffff globl -scall __threxit 0x012effffffffffff globl -scall __thrsigdivert 0x012fffffffffffff globl -scall __set_tcb 0x0149ffffffffffff globl -scall __get_tcb 0x014affffffffffff globl -scall adjfreq 0x0131ffffffffffff globl -scall getdtablecount 0x0012ffffffffffff globl -scall getlogin_r 0x008dffffffffffff globl -scall getrtable 0x0137ffffffffffff globl -scall getthrid 0x012bffffffffffff globl -scall kbind 0x0056ffffffffffff globl -scall mquery 0x011effffffffffff globl # openbsd:pad -scall obreak 0x0011ffffffffffff globl -scall sendsyslog 0x0070ffffffffffff globl -scall setrtable 0x0136ffffffffffff globl -scall swapctl 0x00c1ffffffffffff globl -scall thrkill 0x0077ffffffffffff globl -scall unveil 0x0072ffffffffffff globl +scall __tfork 0xfff008ffffffffff globl +scall __thrsleep 0xfff05effffffffff globl +scall __thrwakeup 0xfff12dffffffffff globl +scall __threxit 0xfff12effffffffff globl +scall __thrsigdivert 0xfff12fffffffffff globl +scall __set_tcb 0xfff149ffffffffff globl +scall __get_tcb 0xfff14affffffffff globl +scall adjfreq 0xfff131ffffffffff globl +scall getdtablecount 0xfff012ffffffffff globl +scall getlogin_r 0xfff08dffffffffff globl +scall getrtable 0xfff137ffffffffff globl +scall getthrid 0xfff12bffffffffff globl +scall kbind 0xfff056ffffffffff globl +scall mquery 0xfff11effffffffff globl # openbsd:pad +scall obreak 0x011011ffffffffff globl +scall sendsyslog 0xfff070ffffffffff globl +scall setrtable 0xfff136ffffffffff globl +scall swapctl 0x10f0c1ffffffffff globl +scall thrkill 0xfff077ffffffffff globl +scall unveil 0xfff072ffffffffff globl # The Fifth Bell System Interface, Community Edition # » beyond the pale # GNU/Systemd┐ -# Mac OS X┐ │ -# FreeBSD┐ │ │ -# OpenBSD┐ │ ┌─│───│── XnuClass{1:Mach,2:Unix} -# ┌─┴┐┌─┴┐│┌┴┐┌─┴┐ -scall __mac_get_link 0xffff019a2180ffff globl -scall __mac_set_link 0xffff019b2181ffff globl -scall __mac_get_fd 0xffff01822184ffff globl -scall __mac_get_file 0xffff0183217effff globl -scall __mac_get_proc 0xffff01802182ffff globl -scall __mac_set_fd 0xffff01842185ffff globl -scall __mac_get_pid 0xffff01992186ffff globl -scall __mac_set_proc 0xffff01812183ffff globl -scall __mac_set_file 0xffff0185217fffff globl -scall __mac_execve 0xffff019f217cffff globl -scall __acl_get_link 0xffff01a9ffffffff globl -scall __sigwait_nocancel 0xffffffff21a6ffff globl -scall __cap_rights_get 0xffff0203ffffffff globl -scall __semwait_signal 0xffffffff214effff globl -scall __acl_set_link 0xffff01aaffffffff globl -scall __acl_set_fd 0xffff015effffffff globl -scall __old_semwait_signal 0xffffffff2172ffff globl -scall __setugid 0xffff0176ffffffff globl -scall __acl_aclcheck_fd 0xffff0162ffffffff globl -scall __acl_get_fd 0xffff015dffffffff globl -scall __sysctl 0xffff00caffffffff globl -scall __mac_getfsstat 0xffffffff21aaffff globl -scall __mac_get_mount 0xffffffff21a9ffff globl -scall __acl_delete_link 0xffff01abffffffff globl -scall __mac_mount 0xffffffff21a8ffff globl -scall __acl_get_file 0xffff015bffffffff globl -scall __acl_aclcheck_file 0xffff0161ffffffff globl -scall __acl_delete_fd 0xffff0160ffffffff globl -scall __acl_aclcheck_link 0xffff01acffffffff globl -scall __mac_syscall 0xffffffff217dffff globl -scall __acl_set_file 0xffff015cffffffff globl -scall __acl_delete_file 0xffff015fffffffff globl -scall __syscall 0x00c6ffffffffffff globl -scall _umtx_op 0xffff01c6ffffffff globl -scall __semwait_signal_nocancel 0xffffffff21a7ffff globl -scall __old_semwait_signal_nocancel 0xffffffff2173ffff globl -scall sctp_peeloff 0xffff01d7ffffffff globl -scall sctp_generic_recvmsg 0xffff01daffffffff globl -scall sctp_generic_sendmsg 0xffff01d8ffffffff globl -scall sctp_generic_sendmsg_iov 0xffff01d9ffffffff globl -scall shared_region_map_and_slide_np 0xffffffff21b6ffff globl -scall guarded_open_dprotected_np 0xffffffff21e4ffff globl -scall stack_snapshot_with_config 0xffffffff21ebffff globl +# Mac OS X┐ │ +# FreeBSD┐ │ │ +# OpenBSD┐ │ ┌─│──│── XnuClass{1:Mach,2:Unix} +# NetBSD┐ │ │ │ │ │ +# Symbol ┌┴┐┌┴┐┌┴┐│┬┴┐┌┴┐ Directives & Commentary +scall __mac_get_link 0xffffff19a2180fff globl +scall __mac_set_link 0xffffff19b2181fff globl +scall __mac_get_fd 0xffffff1822184fff globl +scall __mac_get_file 0xffffff183217efff globl +scall __mac_get_proc 0xffffff1802182fff globl +scall __mac_set_fd 0xffffff1842185fff globl +scall __mac_get_pid 0xffffff1992186fff globl +scall __mac_set_proc 0xffffff1812183fff globl +scall __mac_set_file 0xffffff185217ffff globl +scall __mac_execve 0xffffff19f217cfff globl +scall __acl_get_link 0xffffff1a9fffffff globl +scall __sigwait_nocancel 0xfffffffff21a6fff globl +scall __cap_rights_get 0xffffff203fffffff globl +scall __semwait_signal 0xfffffffff214efff globl +scall __acl_set_link 0xffffff1aafffffff globl +scall __acl_set_fd 0xffffff15efffffff globl +scall __old_semwait_signal 0xfffffffff2172fff globl +scall __setugid 0xffffff176fffffff globl +scall __acl_aclcheck_fd 0xffffff162fffffff globl +scall __acl_get_fd 0xffffff15dfffffff globl +scall __sysctl 0xffffff0cafffffff globl +scall __mac_getfsstat 0xfffffffff21aafff globl +scall __mac_get_mount 0xfffffffff21a9fff globl +scall __acl_delete_link 0xffffff1abfffffff globl +scall __mac_mount 0xfffffffff21a8fff globl +scall __acl_get_file 0xffffff15bfffffff globl +scall __acl_aclcheck_file 0xffffff161fffffff globl +scall __acl_delete_fd 0xffffff160fffffff globl +scall __acl_aclcheck_link 0xffffff1acfffffff globl +scall __mac_syscall 0xfffffffff217dfff globl +scall __acl_set_file 0xffffff15cfffffff globl +scall __acl_delete_file 0xffffff15ffffffff globl +scall __syscall 0xfff0c6ffffffffff globl +scall _umtx_op 0xffffff1c6fffffff globl +scall __semwait_signal_nocancel 0xfffffffff21a7fff globl +scall __old_semwait_signal_nocancel 0xfffffffff2173fff globl +scall sctp_peeloff 0xffffff1d7fffffff globl +scall sctp_generic_recvmsg 0xffffff1dafffffff globl +scall sctp_generic_sendmsg 0xffffff1d8fffffff globl +scall sctp_generic_sendmsg_iov 0xffffff1d9fffffff globl +scall shared_region_map_and_slide_np 0xfffffffff21b6fff globl +scall guarded_open_dprotected_np 0xfffffffff21e4fff globl +scall stack_snapshot_with_config 0xfffffffff21ebfff globl diff --git a/libc/sysv/systemfive.S b/libc/sysv/systemfive.S index 4d7aa8dde..abbe0ebc4 100644 --- a/libc/sysv/systemfive.S +++ b/libc/sysv/systemfive.S @@ -106,9 +106,9 @@ __systemfive: .text.syscall .Lanchorpoint: systemfive.linux: - movswl %ax,%eax # gnu/systemd ordinal is first word - test %eax,%eax # sign extend to optimize code size - js systemfive.enosys # test for syscalls.sh ordinal ffff + and $0xfff,%eax + cmp $0xfff,%eax + je systemfive.enosys mov %rcx,%r10 # syscall instruction clobbers %rcx push %rbp # linux never reads args from stack mov %rsp,%rbp # having frame will help backtraces @@ -132,33 +132,40 @@ systemfive.enosys: mov ENOSYS(%rip),%eax jmp systemfive.errno .endfn systemfive.enosys,globl,hidden +systemfive.netbsd: + shr $4*13,%rax + jmp systemfive.bsdscrub + .endfn systemfive.openbsd,globl,hidden systemfive.openbsd: - shr $48,%rax - jmp systemfive.bsd + shr $4*10,%rax + jmp systemfive.bsdscrub .endfn systemfive.openbsd,globl,hidden systemfive.freebsd: - shr $32,%rax + shr $4*7,%rax movzwl %ax,%eax / 𝑠𝑙𝑖𝑑𝑒 .endfn systemfive.freebsd,globl,hidden +systemfive.bsdscrub: + and $0xfff,%eax +/ 𝑠𝑙𝑖𝑑𝑒 + .endfn systemfive.bsdscrub,globl,hidden systemfive.bsd: cmp $0xfff,%ax - jae systemfive.enosys + je systemfive.enosys mov %rcx,%r10 # note: we do not create a stack frame syscall # bsd will need arg on stack sometimes jc systemfive.errno # bsd sets carry flag if %rax is errno ret .endfn systemfive.bsd systemfive.xnu: -/ 0x????????2153???? # how syscalls.sh encodes xnu ordinals -/ │└┴┴─┐ -/ └┐ ├┬┐ +/ 0x?????????2153??? # how syscalls.sh encodes xnu ordinals +/ │└┴┴┐ +/ │ ├┬┐ / 0x0000000002000153 # how xnu wants ordinals to be encoded mov %eax,%r11d - shr $4*7,%r11d - shl $4*6,%r11d - shl $4*1,%eax - shr $4*5,%eax + and $0x0f000000,%r11d + shl $8,%eax + shr $20,%eax or %r11d,%eax jmp systemfive.bsd .endfn systemfive.xnu,globl,hidden @@ -186,6 +193,12 @@ systemfive.xnu: jnz systemfive.init.windows cmpq $0,(%r15) # OpenBSD doesn't have auxv je systemfive.init.openbsd + xor %eax,%eax +0: cmpq $2014,(%r15,%rax,8) # NetBSD's distinctive AT_EXECFN + je systemfive.init.netbsd + cmpq $0,(%r15,%rax,8) + lea 2(%eax),%eax + jnz 0b / default state is safe state / 𝑠𝑙𝑖𝑑𝑒 systemfive.init.linux: @@ -213,6 +226,11 @@ systemfive.init.openbsd: push $OPENBSD ezlea syscon.openbsd,si jmp systemfive.init.os +systemfive.init.netbsd: + pushb systemfive.netbsd-.Lanchorpoint + push $NETBSD + ezlea syscon.netbsd,si + jmp systemfive.init.os systemfive.init.xnu: pushb systemfive.xnu-.Lanchorpoint push $XNU @@ -360,6 +378,11 @@ syscon.freebsd:/* .section .sort.rodata.syscon.openbsd.1,"a",@progbits .align 1 syscon.openbsd:/* + ...decentralized leb128... + */.previous + .section .sort.rodata.syscon.netbsd.1,"a",@progbits + .align 1 +syscon.netbsd:/* ...decentralized leb128... */.previous .section .sort.rodata.syscon.windows.1,"a",@progbits @@ -374,6 +397,7 @@ syscon.windows:/* .type syscon.xnu,@object .type syscon.freebsd,@object .type syscon.openbsd,@object + .type syscon.netbsd,@object .type syscon.windows,@object .globl syscon.start @@ -382,4 +406,5 @@ syscon.windows:/* .globl syscon.xnu .globl syscon.freebsd .globl syscon.openbsd + .globl syscon.netbsd .globl syscon.windows diff --git a/libc/unicode/strnwidth.c b/libc/unicode/strnwidth.c index 9f64460d1..31cb356a8 100644 --- a/libc/unicode/strnwidth.c +++ b/libc/unicode/strnwidth.c @@ -16,7 +16,12 @@ │ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ +#include "libc/intrin/pcmpgtb.h" +#include "libc/intrin/pmovmskb.h" +#include "libc/intrin/psubb.h" #include "libc/macros.h" +#include "libc/nexgen32e/bsf.h" +#include "libc/str/str.h" #include "libc/str/thompike.h" #include "libc/unicode/unicode.h" @@ -24,25 +29,31 @@ * Returns monospace display width of UTF-8 string. * * - Control codes are discounted - * * - ANSI escape sequences are discounted - * * - East asian glyphs, emoji, etc. count as two * * @param s is NUL-terminated string * @param n is max bytes to consider + * @param o is offset for doing tabs * @return monospace display width */ -int strnwidth(const char *s, size_t n) { +int strnwidth(const char *s, size_t n, size_t o) { + size_t i; wint_t c, w; - unsigned l, r; + unsigned l, r, k; enum { kAscii, kUtf8, kEsc, kCsi } t; - for (w = r = t = l = 0; n--;) { - if ((c = *s++ & 0xff)) { + for (w = r = t = l = i = 0; i < n;) { + if ((c = s[i++] & 0xff)) { switch (t) { case kAscii: - if (0x20 <= c && c <= 0x7E || c == '\t') { + if (0x20 <= c && c <= 0x7E) { ++l; + } else if (c == '\t') { + if ((k = (o + i - 1) & 7)) { + l += 8 - k; + } else { + l += 8; + } } else if (c == 033) { t = kEsc; } else if (c >= 0300) { diff --git a/libc/unicode/strnwidth16.c b/libc/unicode/strnwidth16.c index 15f219024..b2f7f2eeb 100644 --- a/libc/unicode/strnwidth16.c +++ b/libc/unicode/strnwidth16.c @@ -24,7 +24,7 @@ /** * Returns monospace display width of UTF-16 or UCS-2 string. */ -int strnwidth16(const char16_t *p, size_t n) { +int strnwidth16(const char16_t *p, size_t n, size_t o) { size_t l; wint_t wc; l = 0; diff --git a/libc/unicode/strwidth.c b/libc/unicode/strwidth.c index 57332c666..7711f0577 100644 --- a/libc/unicode/strwidth.c +++ b/libc/unicode/strwidth.c @@ -26,8 +26,9 @@ * - East asian glyphs, emoji, etc. count as two * * @param s is NUL-terminated string + * @param o is string offset for computing tab widths * @return monospace display width */ -int strwidth(const char *s) { - return strnwidth(s, -1); +int strwidth(const char *s, size_t o) { + return strnwidth(s, -1, 0); } diff --git a/libc/unicode/strwidth16.c b/libc/unicode/strwidth16.c index fcb3579f9..71a38dc12 100644 --- a/libc/unicode/strwidth16.c +++ b/libc/unicode/strwidth16.c @@ -23,6 +23,6 @@ /** * Returns monospace display width of UTF-16 or UCS-2 string. */ -int strwidth16(const char16_t *s) { - return strnwidth16(s, SIZE_MAX); +int strwidth16(const char16_t *s, size_t o) { + return strnwidth16(s, SIZE_MAX, o); } diff --git a/libc/unicode/unicode.h b/libc/unicode/unicode.h index 63640b856..c60cfa418 100644 --- a/libc/unicode/unicode.h +++ b/libc/unicode/unicode.h @@ -4,12 +4,12 @@ COSMOPOLITAN_C_START_ int wcwidth(wchar_t) pureconst; -int wcswidth(const wchar_t *) strlenesque; -int wcsnwidth(const wchar_t *, size_t) strlenesque; -int strwidth(const char *) strlenesque; -int strnwidth(const char *, size_t) strlenesque; -int strwidth16(const char16_t *) strlenesque; -int strnwidth16(const char16_t *, size_t) strlenesque; +int wcswidth(const wchar_t *, size_t) strlenesque; +int wcsnwidth(const wchar_t *, size_t, size_t) strlenesque; +int strwidth(const char *, size_t) strlenesque; +int strnwidth(const char *, size_t, size_t) strlenesque; +int strwidth16(const char16_t *, size_t) strlenesque; +int strnwidth16(const char16_t *, size_t, size_t) strlenesque; COSMOPOLITAN_C_END_ #endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */ diff --git a/libc/unicode/wcsnwidth.c b/libc/unicode/wcsnwidth.c index 2f27aa502..f8f0edf82 100644 --- a/libc/unicode/wcsnwidth.c +++ b/libc/unicode/wcsnwidth.c @@ -21,7 +21,7 @@ /** * Returns monospace display width of wide character string. */ -int wcsnwidth(const wchar_t *pwcs, size_t n) { +int wcsnwidth(const wchar_t *pwcs, size_t n, size_t o) { int w, width = 0; for (; *pwcs && n-- > 0; pwcs++) { if ((w = wcwidth(*pwcs)) < 0) { diff --git a/libc/unicode/wcswidth.c b/libc/unicode/wcswidth.c index d8a051e55..2083b4239 100644 --- a/libc/unicode/wcswidth.c +++ b/libc/unicode/wcswidth.c @@ -22,6 +22,6 @@ /** * Returns monospace display width of wide character string. */ -int wcswidth(const wchar_t *pwcs) { - return wcsnwidth(pwcs, SIZE_MAX); +int wcswidth(const wchar_t *pwcs, size_t o) { + return wcsnwidth(pwcs, SIZE_MAX, o); } diff --git a/test/libc/unicode/strnwidth_test.c b/test/libc/unicode/strnwidth_test.c new file mode 100644 index 000000000..fa9193427 --- /dev/null +++ b/test/libc/unicode/strnwidth_test.c @@ -0,0 +1,43 @@ +/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│ +│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│ +╞══════════════════════════════════════════════════════════════════════════════╡ +│ Copyright 2021 Justine Alexandra Roberts Tunney │ +│ │ +│ Permission to use, copy, modify, and/or distribute this software for │ +│ any purpose with or without fee is hereby granted, provided that the │ +│ above copyright notice and this permission notice appear in all copies. │ +│ │ +│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │ +│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │ +│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │ +│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │ +│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │ +│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │ +│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │ +│ PERFORMANCE OF THIS SOFTWARE. │ +╚─────────────────────────────────────────────────────────────────────────────*/ +#include "libc/testlib/ezbench.h" +#include "libc/testlib/hyperion.h" +#include "libc/testlib/testlib.h" +#include "libc/unicode/unicode.h" + +TEST(strwidth, test) { + EXPECT_EQ(5, strwidth("hello", 0)); + EXPECT_EQ(5, strwidth("\1he\e[0;0mllo\e#8", 0)); + EXPECT_EQ(10, strwidth("HELLO", 0)); +} + +TEST(strwidth, tab) { + EXPECT_EQ(8, strwidth("\t", 0)); + EXPECT_EQ(8, strwidth(" \t", 0)); + EXPECT_EQ(8, strwidth(" \t", 0)); + EXPECT_EQ(16, strwidth(" \t", 0)); +} + +TEST(strwidth, hyperion) { + ASSERT_EQ(22304, strwidth(kHyperion, 0)); +} + +BENCH(strnwidth, bench) { + EZBENCH2("strnwidth", donothing, EXPROPRIATE(strnwidth(kHyperion, -1, 0))); +} diff --git a/test/libc/unicode/test.mk b/test/libc/unicode/test.mk index dbe1d02ae..2b49b9c52 100644 --- a/test/libc/unicode/test.mk +++ b/test/libc/unicode/test.mk @@ -23,11 +23,15 @@ TEST_LIBC_UNICODE_CHECKS = \ $(TEST_LIBC_UNICODE_SRCS_TEST:%.c=o/$(MODE)/%.com.runs) TEST_LIBC_UNICODE_DIRECTDEPS = \ + LIBC_CALLS \ LIBC_INTRIN \ + LIBC_MEM \ LIBC_NEXGEN32E \ + LIBC_LOG \ LIBC_STR \ LIBC_STUBS \ LIBC_TESTLIB \ + LIBC_SYSV \ LIBC_UNICODE TEST_LIBC_UNICODE_DEPS := \ diff --git a/test/libc/unicode/wcwidth_test.c b/test/libc/unicode/wcwidth_test.c index 097c8d245..febdc7e13 100644 --- a/test/libc/unicode/wcwidth_test.c +++ b/test/libc/unicode/wcwidth_test.c @@ -24,9 +24,9 @@ TEST(strwidth, testCjkWidesAndCombiningLowLines_withThompsonPikeEncoding) { /*───────────────────────────────────────────────────┬─*/ - EXPECT_EQ(20, strwidth(/**/ "𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷▒▒▒▒▒▒▒▒▒▒▒▒" /*│*/)); - EXPECT_EQ(20, strwidth(/**/ "(╯°□°)╯𐄻︵ ̲┻̲━̲┻▒▒▒▒▒▒" /*│*/)); - EXPECT_EQ(20, strwidth(/**/ "ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/)); + EXPECT_EQ(20, strwidth(/**/ "𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷▒▒▒▒▒▒▒▒▒▒▒▒" /*│*/, 0)); + EXPECT_EQ(20, strwidth(/**/ "(╯°□°)╯𐄻︵ ̲┻̲━̲┻▒▒▒▒▒▒" /*│*/, 0)); + EXPECT_EQ(20, strwidth(/**/ "ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/, 0)); EXPECT_EQ(20, strclen(/*─*/ "𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷▒▒▒▒▒▒▒▒▒▒▒▒" /*│*/)); EXPECT_EQ(22, strclen(/*─*/ "(╯°□°)╯𐄻︵ ̲┻̲━̲┻▒▒▒▒▒▒" /*│*/)); EXPECT_EQ(14, strclen(/*─*/ "ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/)); @@ -38,9 +38,9 @@ TEST(strwidth, testCjkWidesAndCombiningLowLines_withThompsonPikeEncoding) { TEST(strwidth16, testCjkWidesAndCombiningLowLines_lengthIsNotShorts) { /*──────────────────────────────────────────────────────┬─*/ - EXPECT_EQ(20, strwidth16(/**/ u"𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷▒▒▒▒▒▒▒▒▒▒▒▒" /*│*/)); - EXPECT_EQ(20, strwidth16(/**/ u"(╯°□°)╯𐄻︵ ̲┻̲━̲┻▒▒▒▒▒▒" /*│*/)); - EXPECT_EQ(20, strwidth16(/**/ u"ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/)); + EXPECT_EQ(20, strwidth16(/**/ u"𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷▒▒▒▒▒▒▒▒▒▒▒▒" /*│*/, 0)); + EXPECT_EQ(20, strwidth16(/**/ u"(╯°□°)╯𐄻︵ ̲┻̲━̲┻▒▒▒▒▒▒" /*│*/, 0)); + EXPECT_EQ(20, strwidth16(/**/ u"ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/, 0)); EXPECT_EQ(20, strclen16(/*─*/ u"𐌰𐌱𐌲𐌳𐌴𐌵𐌶𐌷▒▒▒▒▒▒▒▒▒▒▒▒" /*│*/)); EXPECT_EQ(22, strclen16(/*─*/ u"(╯°□°)╯𐄻︵ ̲┻̲━̲┻▒▒▒▒▒▒" /*│*/)); EXPECT_EQ(14, strclen16(/*─*/ u"ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/)); @@ -52,9 +52,9 @@ TEST(strwidth16, testCjkWidesAndCombiningLowLines_lengthIsNotShorts) { TEST(wcwidth, testCjkWidesAndCombiningLowLines_widthIsNotLength) { /*────────────────────────────────────────────────────┬─*/ - EXPECT_EQ(20, wcswidth(/**/ L"Table flip▒▒▒▒▒▒▒▒▒▒" /*│*/)); - EXPECT_EQ(20, wcswidth(/**/ L"(╯°□°)╯︵ ̲┻̲━̲┻▒▒▒▒▒▒▒" /*│*/)); - EXPECT_EQ(20, wcswidth(/**/ L"ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/)); + EXPECT_EQ(20, wcswidth(/**/ L"Table flip▒▒▒▒▒▒▒▒▒▒" /*│*/, 0)); + EXPECT_EQ(20, wcswidth(/**/ L"(╯°□°)╯︵ ̲┻̲━̲┻▒▒▒▒▒▒▒" /*│*/, 0)); + EXPECT_EQ(20, wcswidth(/**/ L"ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/, 0)); EXPECT_EQ(20, wcslen(/*──*/ L"Table flip▒▒▒▒▒▒▒▒▒▒" /*│*/)); EXPECT_EQ(22, wcslen(/*──*/ L"(╯°□°)╯︵ ̲┻̲━̲┻▒▒▒▒▒▒▒" /*│*/)); EXPECT_EQ(14, wcslen(/*──*/ L"ちゃぶ台返し▒▒▒▒▒▒▒▒" /*│*/)); @@ -66,8 +66,8 @@ TEST(wcwidth, block) { } TEST(strwidth, testTextDelimitingControlCodes_dontHaveSubstance) { - EXPECT_EQ(0, strwidth("\0")); - EXPECT_EQ(0, strwidth("\1")); + EXPECT_EQ(0, strwidth("\0", 0)); + EXPECT_EQ(0, strwidth("\1", 0)); } BENCH(wcwidth, bench) { diff --git a/tool/build/blinkenlights.c b/tool/build/blinkenlights.c index 82be8de2f..37cfc8054 100644 --- a/tool/build/blinkenlights.c +++ b/tool/build/blinkenlights.c @@ -958,7 +958,7 @@ static void DrawHr(struct Panel *p, const char *s) { long i, wp, ws, wl, wr; if (p->bottom - p->top < 1) return; wp = p->right - p->left; - ws = strwidth(s); + ws = strwidth(s, 0); wl = wp / 4 - ws / 2; wr = wp - (wl + ws); for (i = 0; i < wl; ++i) AppendWide(&p->lines[0], u'─'); diff --git a/tool/viz/lib/formatstringtable-assembly.c b/tool/viz/lib/formatstringtable-assembly.c index 8771e01bc..d3448c145 100644 --- a/tool/viz/lib/formatstringtable-assembly.c +++ b/tool/viz/lib/formatstringtable-assembly.c @@ -113,7 +113,7 @@ void *FormatStringTableAsAssembly(long yn, long xn, const char *const T[yn][xn], EmitSection(yn, xn, w, GetArrayAlignment(yn, xn, w, align), emit, a); emit(name, a); emit(":", a); - if (strwidth(name) >= 8) emit("\n", a); + if (strwidth(name, 0) >= 8) emit("\n", a); FormatStringTable(yn, xn, T, emit, a, gc(xstrcat("\t.", storage, "\t")), ",", "\n"); emit("\t.endobj\t", a); diff --git a/tool/viz/lib/formatstringtable.c b/tool/viz/lib/formatstringtable.c index be56a067e..c08c430fd 100644 --- a/tool/viz/lib/formatstringtable.c +++ b/tool/viz/lib/formatstringtable.c @@ -35,7 +35,7 @@ static unsigned GetBiggestCellWidth(long yn, long xn, long w, y, x; for (w = y = 0; y < yn; ++y) { for (x = 0; x < xn; ++x) { - w = max(w, strwidth(T[y][x])); + w = max(w, strwidth(T[y][x], 0)); } } return w; @@ -50,7 +50,7 @@ void *FormatStringTable(long yn, long xn, const char *const T[yn][xn], emit(startrow, a); for (x = 0; x < xn; ++x) { if (x) emit(comma, a); - for (n = w - strwidth(T[y][x]), i = 0; i < n; ++i) emit(" ", a); + for (n = w - strwidth(T[y][x], 0), i = 0; i < n; ++i) emit(" ", a); emit(T[y][x], a); } emit(endrow, a); diff --git a/tool/viz/life.c b/tool/viz/life.c index c53aff90c..755e240eb 100644 --- a/tool/viz/life.c +++ b/tool/viz/life.c @@ -1057,7 +1057,7 @@ static void Draw(void) { AppendStr("\e[0;7m"); GenerateStatusLine(); AppendStr(statusline); - n = txn - strwidth(statusline); + n = txn - strwidth(statusline, 0); for (i = 0; i < n; ++i) { AppendStr(" "); } diff --git a/tool/viz/printvideo.c b/tool/viz/printvideo.c index 25aef47b0..bfa652815 100644 --- a/tool/viz/printvideo.c +++ b/tool/viz/printvideo.c @@ -726,20 +726,20 @@ static void RenderIt(void) { if (HasAdjustments()) { DescribeAdjustments(status_[6]); p += sprintf(p, "\e[%d;%dH%s", lastrow_ - 7, - HALF(xn) - strwidth(status_[6]), status_[6]); + HALF(xn) - strwidth(status_[6], 0), status_[6]); } p += sprintf(p, "\e[%d;%dH%s", lastrow_ - 6, - HALF(xn) - strwidth(status_[4]), status_[4]); + HALF(xn) - strwidth(status_[4], 0), status_[4]); p += sprintf(p, "\e[%d;%dH%s", lastrow_ - 5, - HALF(xn) - strwidth(status_[5]), status_[5]); + HALF(xn) - strwidth(status_[5], 0), status_[5]); p += sprintf(p, "\e[%d;%dH%s", lastrow_ - 4, - HALF(xn) - strwidth(status_[1]), status_[1]); + HALF(xn) - strwidth(status_[1], 0), status_[1]); p += sprintf(p, "\e[%d;%dH%s", lastrow_ - 3, - HALF(xn) - strwidth(status_[0]), status_[0]); + HALF(xn) - strwidth(status_[0], 0), status_[0]); p += sprintf(p, "\e[%d;%dH%30s", lastrow_ - 2, - HALF(xn) - strwidth(status_[2]), status_[2]); + HALF(xn) - strwidth(status_[2], 0), status_[2]); p += sprintf(p, "\e[%d;%dH%s", lastrow_ - 1, - HALF(xn) - strwidth(status_[3]), status_[3]); + HALF(xn) - strwidth(status_[3], 0), status_[3]); p += sprintf(p, "\e[%d;%dH %s %s ", lastrow_ - 2, 2, program_invocation_name, ""); p += sprintf(p, "\e[%d;%dH %s ", lastrow_ - 1, 2, diff --git a/tool/viz/tabalign.c b/tool/viz/tabalign.c index 1e2370a55..d2b54cd60 100644 --- a/tool/viz/tabalign.c +++ b/tool/viz/tabalign.c @@ -137,7 +137,7 @@ void processfile(void) { if (len < USHRT_MAX) { if ((p = strstr(line_, delim_))) { off = p - line_; - col = strnwidth(line_, off); + col = strnwidth(line_, off, 0); if (col < USHRT_MAX) { col_ = max(col_, col); append(&lines_, &((struct Line){.line = s, .off = off, .col = col}));