diff --git a/README.md b/README.md index 79353622..8ea2863a 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 3c0cf479..ff3c7e8b 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 7ca29a2c..bb9c5187 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 ba6b0ea6..0f9306b3 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 3e3dca72..70fb0a4e 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 00000000..0264f251 --- /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 c4bc0845..b58bbec8 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 1c7ca524..67f14274 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 097d8739..423cd447 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 33145751..5215c967 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 59b95d88..df36ccaa 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 cb315e65..10e5d6ac 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 b9b4ac51..eddc4c8e 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 eb62a89a..1035d7fb 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 b58be8f0..9cf34fec 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 6ed2bb39..6d3abba7 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 30fec7db..24151495 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 49c71208..f477fdd7 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 ef64c7f4..118d0297 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 4aa97145..2e7e4c02 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 ced69cf7..e401435d 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 8427b805..72fda157 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 a13fe980..bba1771c 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 5f1a083a..9ddd51a7 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 2bde7efa..2b762fe3 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 5923e2e8..1a441667 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 df591feb..f8f11654 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 c51a4546..22f4ccec 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 71e8a7ca..c1fa0e58 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 479caada..44c011a0 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 35695897..7c7f87bc 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 a7b0d88f..af9102fa 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 b2064973..a2595602 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 30c55e5a..2a55fc26 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 e4a57d58..819ff23a 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 bd3d1a81..5a57eded 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 634edece..f82d1ccf 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 8db95f01..3c20525b 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 ed73ec72..22598d9c 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 2abc01db..c0b7e1a9 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 e93e8f80..63b029b5 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 a8fd1d71..9db266ad 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 e99fb367..5e8de29c 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 c142f96e..08249155 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 363b7950..240325c7 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 31d93a36..51a27db7 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 7f6afd91..69f87fc7 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 949e40a5..c82da23e 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 a9b78d29..f1ba31eb 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 4abdbf5b..ae635821 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 3ae11fcb..170f454c 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 90981ae1..1143c41f 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 2dd6db1e..04120e92 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 a4e1ed53..b411eb13 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 494b7274..a2ae96f8 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 b8125d4b..fa595a7b 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 ea753bdd..ac4a524e 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 d3b353f3..a926d706 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 c014295e..fd8b9727 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 c3398e5d..e9519041 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 9968b54a..abc1d68c 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 0a636dc1..5caa7d7b 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 333fa59d..97c57b91 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 5e818064..12a061df 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 def85d1a..fee6040c 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 e09f7ad6..e8dac45c 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 53fa7740..e7798e7a 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 ad3a61e6..209fed6d 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 0932ee11..c331e2e0 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 a74fa08d..9901b1a3 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 bac9997c..057a6a77 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 eb8d0210..3b5b5d27 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 59e97f0b..caeef7a1 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 793e9d5c..20ce64e7 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 15862bae..dd1d551f 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 8a66d3dc..0c554b4d 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 f730084a..77ba51a1 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 f524591f..56699c92 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 ad7952f1..3c117c7f 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 13aac804..408cbf91 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 72f2dda8..9e984ffe 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 127cb0d7..c37e06be 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 7d9d7e7a..b92eaf76 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 cec83082..f66f7912 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 95ea679c..574ed65d 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 fbe7ef05..811df144 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 4cdafa28..b98a9560 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 c077f65e..0d6756cf 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 611e0290..28ec77cb 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 39bec8a4..59a7f77a 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 4fef2f64..68e58b9d 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 6c13ff05..4304b4c7 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 de590dc6..492915e5 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 f409b2d8..84efa9ae 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 7277d217..0742139e 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 ee70504e..b9248694 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 8807a6ec..1c4262e4 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 ba8c1a1c..eba1bca4 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 3e2914dd..361dd890 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 67b6f377..7c6d09a4 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 c7905a77..35d34640 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 bdb95733..b5157a9f 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 a8e82c51..8df24157 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 7991bb1d..657f6b9b 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 833923d5..5880467a 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 bd91296b..64cfb06f 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 f457efca..3dc902fd 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 30e12dd5..7d406260 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 59e7e267..91e9428c 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 c0f79121..650a619e 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 20158021..a13a500a 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 e1fb9da7..6461a064 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 736dc372..579fe4cd 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 a80cf443..a3d101d7 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 4a8ef75d..844a109f 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 50ed7348..7ecfbc49 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 66baf7c0..b019c815 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 6970bc4c..16a18ee0 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 2df31222..7b935e7e 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 a12a2ff7..bbb39a93 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 5d49dd5f..85b028db 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 6a309629..e8039c78 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 fa46cd85..b8e91deb 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 740d5120..44762807 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 73f9c5b5..d16ddf09 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 09da9028..2845a70f 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 196cf72d..28711448 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 6eb4a2c5..30aaa211 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 16baf50c..bf3e78b0 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 1efc0daa..2afa1574 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 f10c347d..639900a4 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 d085f821..a3adcbdc 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 2f44976d..c8c9e678 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 83c2fc10..643b904f 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 c7436eea..b7f13711 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 462d86bd..68e2ce2d 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 a8a7ec94..decb3341 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 779138a3..e4c47d08 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 59391a1b..3608ec01 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 c0cfd84b..f5a2ba9d 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 fda7c2d5..f473b199 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 8dd44790..3cf59206 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 bd78fff3..92871b22 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 ef55a3b3..503df0ec 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 d25a11da..b427f01a 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 0caf4562..128743a1 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 bcae217e..1f76137f 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 9f06b74f..afb61870 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 279e1f89..daa85518 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 30347006..f5b26573 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 874d8b52..0faee1c6 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 e23d387b..e929b7f5 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 9b31dc8d..664020c3 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 4b0cd709..278d8e80 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 b67a4d77..a3d3b124 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 35282fde..c9e12c98 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 2a5aaca3..308757a9 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 13787b72..b5d45b59 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 104f4c58..f9d054ce 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 1da9b3a3..5f66b40f 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 8c8bd7f2..03cfbb40 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 781c3155..5cfa13a3 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 27c99539..ad45a90f 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 d121d8b2..5127d487 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 31a76e61..a816b13f 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 12ca55f4..52829ec2 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 7bcb33b7..4f8b9b29 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 0ee10872..f8a31a43 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 8a7f538b..7960c752 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 dcaa3b33..45db9e19 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 edf3ff94..938229e9 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 a96b4495..cd71d2d4 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 65f82b86..bbf78634 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 6466b63b..9639e4c0 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 9f782884..1aadc49e 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 beeeb969..0c4a52c9 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 8df808fb..e836ce80 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 bfcbe83b..ef47b96e 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 efaa2a70..6116ff9c 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 be1ff2c7..b3e668f8 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 b5eafa5c..a28a7898 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 4152f2a0..4a68f56a 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 f89a51e2..7877289a 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 aff3c97f..57cc6b27 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 3180b5b2..ba69ff05 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 03035f85..4f51a23d 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 b0fade52..3218f39e 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 c52a4a02..06af111f 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 7ebaad44..4c275768 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 0786afca..35146b5c 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 bc515fb5..c0790ace 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 a112086d..217f83ce 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 4ba476b6..2e07b702 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 fbf8f6f8..113bf997 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 3c546208..5236abf6 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 dd1250c8..69bdd290 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 b0d77148..a80ed8bc 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 fd5b82fa..b3ae8cd6 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 858d5b07..9ea744d2 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 5559dbd8..2a4dad88 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 16e88e7e..daf06d38 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 cd481a6e..2a4e5a59 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 b5da064e..3e6f5efd 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 d980d49c..7c4d39e7 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 cda012ae..78d5b743 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 c757ee5c..84c8019b 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 dda9a8bf..150c26c4 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 8da544d6..a475ebef 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 ba8c0439..3092b8f3 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 c66abd51..121853d8 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 f4890069..7a0cf3de 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 2e69c065..2f1a8344 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 a4e49101..50953780 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 c0c56fc4..77d438c0 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 ad51a93b..4d41d9b0 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 031fb736..a5b036fd 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 5d163165..9b965055 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 2f896159..e78b7f83 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 660c76f0..c079d8cf 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 f81386fd..5fae2f15 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 16aa3ffb..3f2c45e2 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 237c9bbe..efe7e108 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 1efea0a2..95809554 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 a76cccb4..bf229848 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 d9476e69..b76afd84 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 7332ded1..02a4c48e 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 a2aaa12a..0c3dd838 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 839abad7..11121b09 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 b0c79ea9..09f0d90c 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 3f5264e5..4606e1f7 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 addb5690..67338d6e 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 a0d488a5..88f764a6 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 ebe3c1a2..8b49a194 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 ac705361..dfbc26cd 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 d9eba15c..81e6d1ac 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 9dcc72a7..38b78922 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 68ead141..e9160aac 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 c8b3ce88..c7976153 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 1b4d9c26..0e1d1563 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 33d6d4b1..882a4ee8 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 b09eda28..b5539f5f 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 92d3dde8..f91b18e9 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 2be61215..bef2c9c9 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 e5d17478..64e54c0e 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 88cc6863..d0589b77 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 dbe8d672..e3b8dd1e 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 2b4a51b2..38adca51 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 64fefc4a..d5c7fda2 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 01def27f..72ce0565 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 e689904b..8044dd63 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 931bbf6e..28010f88 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 3e3a26e4..c9db6245 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 ad2c59d7..83694858 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 e02888a8..6d6d658f 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 590a35fc..0acc6664 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 63c92c14..0de85bfd 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 42a7d97c..d66a92c7 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 ec86cd87..8d845583 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 38e52958..102ba86e 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 32c781d3..07f659a4 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 75ba192b..918b7d5a 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 d33d9cf3..6010a2ec 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 fa03a531..0d3d9e69 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 8e9e05f0..c43b9731 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 8cb8aba4..af61b46f 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 9fc52ff5..e0caaa23 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 5d8bfd35..87df5b76 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 707d2931..53a31904 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 b0af1bf1..291edf02 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 a8db8240..d99fcc44 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 195bda66..b3de906b 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 108dd2b5..c4215e01 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 5e0af623..e20bcc80 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 b7ff2ee9..ce5937d0 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 60f41b1e..38c908d9 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 3e84853a..139f8ce5 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 f4504245..c02d4d37 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 19de140f..aa360f5b 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 4ac622bf..461f129e 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 b857b74c..8fe9d16d 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 1379678b..d0e22515 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 40f29cf3..9943bfdb 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 70cfa243..f020ac3c 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 f05cab39..226a7cf8 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 48d2cd7d..b0f14153 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 8633f725..33cb1fa3 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 48dac1e7..f2926c25 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 02c67dee..d2a4d3af 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 709a0cea..541fe1a0 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 90e3adf1..0bbbb70d 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 fa00a999..da271206 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 246f00dc..8473bea5 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 8da324e6..b575e9d3 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 3e5452e9..8d883ca9 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 5b01057e..7ba4d612 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 068c9ada..aa7e9138 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 45fe5daf..c160f3a6 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 e0284fad..2fc372dd 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 3c63ab8e..ed43d4d6 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 a5e7fc2e..45d22659 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 6452d04e..81570f8f 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 b8f35f8b..94b1447d 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 67942b9c..2bbf4ede 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 5d3a1b07..ae045ede 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 830d0084..09da77c5 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 1663b6c9..35f1bfd5 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 3b574827..a103497b 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 33740d29..24b26b12 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 afcf8a24..51112a4b 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 eb9b6488..310d25dc 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 2a34b03f..2311c1d3 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 e50f40e6..8b30a952 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 2f521fd7..96cb00e8 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 e86b68d3..eddd7c51 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 658cf3cf..154f61c4 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 cb782a5a..6662c20a 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 f3e9bec0..22edc2b6 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 f99d520b..d0e6d9cd 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 3fbe85eb..f0f4ad69 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 a7aa75fc..f141545e 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 25031535..c25fb3fb 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 a0191c72..ca087ec7 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 0c327d69..f49e005f 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 efce4bb4..014b8e36 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 67fa3d95..0c8717b4 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 28823050..9a1c164d 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 8bddd920..781837e7 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 74a1d7d2..c177f5d0 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 6403962a..10b62c49 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 24ff5ef9..8e4db214 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 7be01a32..a9178b2e 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 bb2b566f..1c9d1332 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 6675490e..ae0b2795 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 f4f3eeb2..f56402f8 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 76c76d31..117536a3 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 be803d57..34797898 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 d5211005..fe547cac 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 1eac67fc..aea9a469 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 2ebc212c..ec8082aa 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 126f8cfd..1251a72f 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 41fd64e0..c1362a5d 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 39e321b0..1f9ef9e4 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 16e5f91f..fe91618d 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 ebaf65b8..1b66c9b0 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 d8da86ca..3e408109 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 bed9734b..d9799e0d 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 435e70fc..4011bafe 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 9682114c..9dad8c9d 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 1c4e1bc4..47534769 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 56ff707b..8b7637ea 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 c9bc5203..bfcd80d4 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 e8e21d1a..b8c05e32 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 5b7c11d4..89278130 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 1642155e..0447d85b 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 7913bd9f..e36f2f26 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 f631b456..f552e82f 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 7ca208b0..4e5e1444 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 9d9d2887..553f2b2c 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 44ed0d5b..eba1fe7d 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 22bb155b..12bea54e 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 9ca7bc61..150979f9 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 f8170759..7a697945 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 994eefe3..572deda3 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 e5d32f63..7725d629 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 ba0559c2..2c113313 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 acb39c79..a77e4246 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 614e0637..72d0c77b 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 894762a1..a292f76a 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 3cfcc6f9..ac36d441 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 1f7e8a10..6b103136 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 77332a76..3083d504 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 f667f01b..9b9b75d5 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 c4248f58..2c32bd20 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 5523ce30..7190a4e3 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 c5189cde..fdcca92a 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 4747a5a0..8731112f 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 9f3e7412..844003ce 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 cc6fa891..e29d303f 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 427fafb3..eb50102d 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 40d201c2..7878260d 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 e0498359..d3275048 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 49986c4c..1ff749c8 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 c0256682..b80da979 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 4632da7d..29dd860a 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 59ec4dc2..9d807d33 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 30f13e14..644a2a0e 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 d88d3a19..018bc9c6 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 1eb00f37..736e8f47 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 15b51d41..d2157b3c 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 afc3f9cf..adb50985 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 6657f68c..0e7dc464 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 22531db6..412f8a10 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 4b4c47ab..74bbe04a 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 b4cfd8b7..107bc91c 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 5fb7fe86..fb70ecdc 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 af27cf56..99f6cea9 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 40ad8784..e374524d 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 367c0eb0..63e2a610 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 e1d4d3ed..1a2bce3a 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 c79e3eaf..087563dc 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 fa888e55..46eb75f4 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 dbe5eec3..a4567f87 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 e9efe7e9..424c8c1a 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 f57dc079..62603c03 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 743581e4..64288778 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 897cc3e2..08180ad4 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 d697e237..004c04ae 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 a453c92c..0ed6ca36 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 775b68e6..d9d318a5 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 89a126be..41f3b4f4 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 decd3500..f397c253 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 caff06bd..2c53369d 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 5fa96d41..1be8c06a 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 7c249361..e5e3aa19 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 1c2111f0..c7c6eb2c 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 6b26fcef..54e3cfa6 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 31a60690..cea6c75a 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 c45681f0..c8f89a96 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 f1c1c365..c284bcfb 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 5eb7e0e6..4cde9fe3 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 cfe59547..da8e656a 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 114a9601..b93e0c82 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 9cc3a307..17a28bab 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 61433369..af5ba5e4 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 a7e651f4..ae145202 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 33fa89d9..ae30614c 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 ee66da9e..bac4d5b5 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 bea3ec96..208d1024 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 ee41b42a..826fb522 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 46f4f6d5..af62dc86 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 42ec9a6a..6bb6278d 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 dba167f6..122616d6 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 02b1cda1..60934008 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 050c6dc9..9d913f0b 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 db82471f..8653555a 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 4962f8aa..cf114659 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 75d391d2..53c35aad 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 98cbe63c..f3cdf48a 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 c6ccf2ac..73e17814 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 932073d1..4e35476d 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 9476d32c..d9d5b4c6 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 ddd90244..fc36c4dd 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 05ac39b4..fa0d07fa 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 22acce46..0f940008 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 b88bc897..8a2aca81 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 1cf173ea..dded3508 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 a70d6baf..7c1482d7 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 8f692227..a9916317 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 cc4b4604..7bd52314 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 f7d2efe5..bee91e28 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 a8ee7d04..ceed7403 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 46f5f457..9cdeacbc 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 bf4ab8d4..be5c92b8 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 5ca1664a..84a3f082 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 326f145c..3e717ea1 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 07e86eed..65d162fc 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 c33be154..de88b054 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 9ce1ad12..8f891033 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 0c6ed789..9d4a8b11 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 5c206ee7..db781e2f 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 a2127b97..078c4be0 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 f4ba2a18..e328a06a 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 8e50503a..9823e4d2 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 82e353e4..81f50cfe 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 ed86ff0a..a2600487 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 7a1c442d..2c5c2e49 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 06f93e5e..d8e1ff5d 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 185eaee7..7adca479 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 11c59b21..cb76da19 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 01cdca12..c5e667c0 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 e2a9d158..84bbb4cf 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 59c174ea..c252d69b 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 3e9c799a..0cba037a 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 edc220a2..1106dfaa 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 b0e51503..6e9104fb 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 24dd61b6..c925604e 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 c8ff7daf..0e920619 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 7fe7b8a4..28e3770f 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 d9dc1d79..d2aee569 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 3f1d4972..20d658b4 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 fb62f072..0178bd22 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 ecc40135..40406bb0 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 4d2fb1a1..bb153309 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 b06c08da..627a32f4 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 a95658c9..d906e0eb 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 3c2a20dd..4719af84 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 f38cad90..aa4f1b57 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 168698e9..abd676b0 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 1520f20d..1d717f58 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 0ce18930..bc70cf9d 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 101bdc17..fe357a9d 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 9a515e34..8c8260df 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 ead06df3..20d9f1ef 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 4bbea9f7..8f28ff74 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 94252bef..cb7cdbb4 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 2c5658fd..d4e165d9 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 37d6d60d..bf3bbf8e 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 caaf2a6b..f84924ed 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 16234b50..bebd3af0 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 6d409fa9..d3b56f1c 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 6bb6894d..148fa9e8 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 1f4a8c20..a32542cc 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 939ad6b6..c2df366d 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 fa478238..b182293b 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 374887f2..555e9ef0 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 7b2a3d8e..5d6c60fc 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 95eb0b5a..33d86398 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 32b30f92..40c6aa27 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 a3e585c5..e4e54479 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 6aa15453..b4aa2e43 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 512953d6..e445fcb7 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 345aab3f..750247c5 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 0f95ba32..1964ed85 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 b6c55897..581b9f73 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 6dbbe30c..b88f25e1 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 42a0c476..449ad931 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 fe4f13be..4e3c20d2 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 43266c38..15a8f223 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 899ac241..865d57a3 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 5b7ac9d3..ca1507c5 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 af68e825..aac34431 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 a4a5bd7e..74613708 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 6a06d8a8..3d41833a 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 90bbeb12..3ff0a6cd 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 7334d85b..aac75006 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 98c8d3af..68ce2835 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 33474f4c..d9763549 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 ad79bbca..6f9ff0e1 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 631970f3..de451984 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 72696baa..7d093c30 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 95379dda..cfae4ae3 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 ff58ac62..38aa7557 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 54a4e002..bb0cfbe3 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 161da1f3..2d705b9e 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 06a3e102..11e4cec8 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 933031c8..f55f23a9 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 d45bdb59..ecdb3f86 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 e264f220..76636a89 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 f3fc7b10..b857e315 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 b112860d..460d26b4 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 0f0dd893..7c04d6d1 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 e6eaa7c6..449bd59d 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 759abfe4..e442f5b3 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 08f879c5..13ccbc86 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 0de91936..9ba366f6 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 b11a78c3..2cc2b8c0 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 98f1f33b..7ec1fb2f 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 23f41d1b..a0bd98c9 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 653d77a0..24da97e9 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 323b437d..5a96f215 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 e99769a9..08cf68ad 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 662cb6ab..aadc0e12 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 9b0b7ffc..8ef0b17d 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 018f0b86..9441a6d5 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 cdc71e8d..345f768c 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 f31d9f1c..6aef1c90 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 408a56e9..7ecdce4c 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 3feddf35..82ace3a4 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 c8b2635f..9910edab 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 47970385..ce793478 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 4cb57fbe..e68dc478 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 eb8afdf1..b6131d60 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 de632660..e8f87a40 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 e4325999..ca5aeae8 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 a7a07855..db2e5af7 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 dd235e52..4ee6c468 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 c358449a..0f5017f7 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 3604da57..18533f38 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 3996231e..d7fd4de7 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 792e6579..0692a911 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 4f7a8983..a123f5cc 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 012d11e1..5088dc37 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 57db66c0..bac184d8 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 6e43e806..99706440 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 8a3e2eb2..55a57119 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 2b0cf191..11a72ea8 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 b61b5018..accce484 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 76303dd1..5408019c 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 5770268e..77c5e32e 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 dfacb65f..ecb9104f 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 f5b1a5cc..0bbc4a6a 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 c38a48a6..e9d35e7f 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 518be59d..345925f9 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 8e0d833e..960f8e9a 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 cfff6bc0..2e7fcb3f 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 d6d7fe26..953ffdb0 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 89fd3b34..72b6e978 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 aa4ef9a8..d86ee824 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 5a1a57ed..6e438bf4 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 d4594e0d..ae417d5c 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 b2e63357..f5e61eec 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 5cb32306..afe31631 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 edb23c6d..2f01646a 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 ec9e499a..8ceccdcc 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 a39a050e..0fc7483d 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 98027f37..7b0e2e94 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 8e1d08cf..df68abf6 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 ef391318..2d54df8c 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 bd683c19..aa7fca2d 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 5b1db11d..ce9219ef 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 47d1d7a6..36804cc2 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 8159cf61..9cdf85e4 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 db34d1ae..55e2f4f5 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 9d59d5a5..7ebe0c5a 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 66ed272b..533de8e3 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 31bf45d1..2203bf41 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 d805a11c..88eb697d 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 a91148dd..b9f22a9d 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 7f115801..a903f73f 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 98bfff00..a8f60a13 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 236d0237..75ef0d0f 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 842e2996..c842fb56 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 6a00b574..b18b464d 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 8bf80078..66c4e207 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 d05bd0ab..fe0f6647 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 5b83eb6a..dcddfdfc 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 600cde9e..995d27a9 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 06358253..663f0296 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 80dc0589..7cd0654b 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 3b627c43..0a50cb50 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 f5435776..370a2588 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 ddfcf236..69e1005f 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 ad99e316..032d7e26 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 ab2b7722..05cd7648 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 f273388a..84b7b446 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 17c7f296..d669052d 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 26ff2a8b..08c98377 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 6882d480..07699185 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 6004436c..d331c433 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 66d38d5c..552b964c 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 b3a1ed18..ffba4cce 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 cc7f22e2..ba8b4e31 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 b8aff476..ad87b86c 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 9b2d6080..3176012f 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 f4f5139a..527e134f 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 2af62322..d01c0146 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 f7625d03..f15adb0c 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 ae490dbf..efa09fe3 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 2e990f6d..fbade4db 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 82059f39..2d7715fc 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 9238c4e1..c59c0328 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 9b895c4b..1c052beb 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 bb32d96d..96188f6a 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 3143e3c3..6009e1b0 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 c5f0a8d5..e2aaaec6 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 107c91b0..92fa3bbd 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 89e71a7d..977e234f 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 bab85a1b..1980ab14 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 a6be7aba..b3bb1e2f 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 6cc4c122..86433817 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 a6b02da5..540353bb 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 89d0c633..9b3660a2 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 95d9a8d1..267b6974 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 657149b7..5e1145cf 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 2c85eae4..63fe0343 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 a9e82353..660798a5 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 eaca0f50..da2fbba1 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 1f0bad1e..69031a20 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 29ade624..8cbbf7cd 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 f5eba48e..fe3d3b6a 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 a1de7da5..011800be 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 01a54065..10660143 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 571cfb9c..66659a21 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 f59f8ef1..05c3007b 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 483a275a..dd77323b 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 401454e2..9ac07132 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 37ecabd0..8f08c773 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 0012ba62..66d9e8f4 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 a3926397..9da627ae 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 ac50394f..ea812cdd 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 450ba018..7ea6e9f0 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 0a22b695..affb69c1 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 8986a6dc..a3a3518b 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 f7601691..80796e2b 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 64f2a795..02066af9 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 51c73736..f2ec58c8 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 ccc3b08d..94ed424d 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 5023afcc..d5e97afe 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 21741a7a..8e9e4c0b 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 fc5fc4ac..da8464e4 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 fd314c44..f4ed0c38 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 01baf4c5..c5c94ad5 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 cc8a877a..c6317955 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 405896b6..65f7881d 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 ea979d80..24bb9042 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 c91840a7..74a22e10 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 244f1c02..7dd1f371 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 f7df8191..eee4ba76 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 9d5e361d..d00f70ba 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 57623707..c91bd587 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 e67c9040..dc3f9426 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 57a83e08..b793667b 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 9f57594e..30a5b149 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 4187a59e..4603afba 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 7d66ac4b..a0750958 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 d881b256..6cb889c3 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 baf3c82a..28f4c13f 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 dbb57a71..a4d30eaa 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 98ffff63..19ddda75 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 5ef92433..9813b839 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 46c7aa94..bffda871 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 13dcc93c..aeca3e99 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 3af59a5a..b17b8d7e 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 d1ae2799..af626ce4 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 3a68345e..a9617326 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 480d6637..2570d83f 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 9f234ba2..f2f42460 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 17525b26..def558b8 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 8b18cb3b..125c0eca 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 9a723061..f38ac3f9 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 bfea8884..f787db89 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 c4c3af77..445ccdbf 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 de22523c..e10c6eb5 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 3fec1ce2..b5881d43 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 20b8b7a1..8776e515 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 6f726d1b..85ebae46 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 75bb37b6..4580e3ad 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 91af23f3..a26fbf3d 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 ba0c80c9..5570061a 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 10576175..9526c00d 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 bb37d435..b26d25dd 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 eb310d3f..f0740626 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 a8589e05..8c56a6e8 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 a3dc1c99..f50a3434 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 53852231..9dcf3d35 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 80291137..703a06dc 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 f5dd355a..2aa589f8 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 6da18d9f..492e7307 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 3744b5c5..571e12a0 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 37ce3245..becc3ded 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 1756a17a..959163e3 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 eebf2eb3..d167df58 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 581f744d..07188db1 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 0b2c9a6b..94c6f2c8 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 942b747b..fc21080d 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 00947523..f235f4fa 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 eba683b5..8f12eb14 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 1b2ef764..01def69d 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 eeef5f92..d5f5d28b 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 341ae51f..3b93f6e9 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 6cfe6551..eee71221 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 a4657fd2..7ea95ec9 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 59bd5f63..2aaf52fa 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 292eb295..ca431e29 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 3c27d9cf..1dc9c13c 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 4e98d672..03006a0a 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 fc025220..002d39a9 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 e619ecaf..6058ba3b 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 4f348e4a..58df65bb 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 cc51c02b..6decf4ac 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 9492a857..468b4a55 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 86d3221d..4c74271f 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 0d94a341..0938aeb9 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 1716bf43..8b925e21 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 8b3dba5e..281e4a85 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 e000c79d..e8a0305a 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 0fedd9c4..fc4d9b86 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 cbebf4bd..0fe3daa4 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 da40a2ce..d343fe9e 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 01e53915..20472a16 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 a75566ef..a3f3f1d6 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 d6c07e4d..19b2a09a 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 e7d20db5..41a06d4a 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 c629f30d..76034af3 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 e3eccd82..964fe2fb 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 856e42d8..75619d95 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 6ca54153..3009e8cc 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 81b5c9da..67bbc5ef 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 37994813..d3a5ba7c 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 2c15e227..5ef08470 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 84028ed3..4920ff03 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 e0be6cc6..0047bd3b 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 851b8875..e2304fe3 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 f0629ab6..3ce5b27d 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 a8d798b5..52e65a08 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 219f72f1..6034381f 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 f22ed679..5569de0d 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 af32816f..3a8e2161 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 43beac7b..07839843 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 ea300d47..97940b9a 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 15365842..a772f463 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 9fcba98b..b5ac1569 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 33f146f1..32f43e1c 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 e61f840c..10c3bea8 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 c731c88a..778db16c 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 d456dea4..99926e59 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 50bb9a1f..8000c48e 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 265c0449..22dd77d8 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 fc726362..dcfacfab 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 d1e7c997..d8b82e89 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 8651ec7f..c4fd546f 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 6d3b3205..38765647 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 97760d8d..dddd0370 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 87bf398a..0811a101 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 8ed1b31b..b4b03b6e 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 2b93ea36..87acf59c 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 64abb3b6..a089a373 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 71f05df5..1f24d915 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 6bf9e542..e1fb56ab 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 20c4a722..1be6da4c 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 6769a52e..89da8fa2 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 f62a0bf4..2f783edc 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 b1552062..c4f5857b 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 c73acc9d..4a8e508a 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 706ea265..29ae47c0 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 79898aea..036647e8 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 94884868..5941b8e7 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 2e73582b..be701dfb 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 c1401398..456047f2 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 838a2564..3442a9de 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 e007407f..9c88bc47 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 ba6fd3d8..e97d3095 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 7cac3f74..1ae1506a 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 634cb4ba..646cd7cb 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 1e586ca8..45a1e249 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 e7e58e25..af29c9d2 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 8666b72f..21b0fbd7 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 44b45c52..99a143cc 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 0bb81821..e0cb20e8 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 4771eaf4..2ba47c17 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 c657a27a..603e711f 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 e6f5e508..c8077ca9 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 9344dcd8..a6ab03b4 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 8812930f..4fb969d5 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 681c7911..29717812 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 15730351..19a7a2e9 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 24f2e1ba..9e39abc1 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 a8142e4a..90f5049b 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 71e38688..2f597542 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 29c7e72d..a1fb3c6d 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 675b0720..63abad0c 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 da645073..a68ae8c9 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 edf96f1e..50a2879b 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 b385a055..998dfb2d 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 00325cbb..a2be8dd4 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 b36451d9..02bf9fe9 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 17d18ec5..d619483b 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 0c9bac7d..20ed9bf5 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 df56d62b..4e9102f3 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 16a9dc85..68a70d7e 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 ae55d286..c022eec1 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 29436e47..5b41ccd9 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 a22e4f21..60f02848 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 0914579f..865225e7 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 2b8fbdf4..5a757478 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 20b9a933..105ad39c 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 d000edea..d80e96eb 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 fabf5552..8793cd37 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 d012f7ed..7696799c 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 37c3f5e4..bd5c48f6 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 81b2c008..2e452cb6 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 73d763d8..d0fd2957 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 080e8ae5..2273aa98 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 a877799b..d884c073 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 8347a1fe..fbb7d0cb 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 aade2837..6c95b843 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 e85fbe15..89fcc269 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 c3961d46..e9599ce6 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 c50e3754..b7ae2c0a 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 70c940d5..86a92c01 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 76ee0e04..30d55bf7 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 be66314a..3c01ec08 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 46c1c513..1323e6a8 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 f9c374bb..16191961 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 e8253228..6f53c601 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 45cbad31..1b3ec6f2 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 e0685a62..3c728cc5 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 89bb0eaa..d9bbbca5 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 2439acb0..61dae6c1 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 3c02ce46..9d52abda 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 cfa148c3..a24bab0c 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 241b2548..4c58934d 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 b34c7175..9f6cf8bf 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 97900473..5074d264 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 7e91d76b..2f08b7c0 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 4ef1e191..ac8d7e97 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 4ef616ae..d361f984 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 35094a7d..bcbce226 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 427e7b39..e96144d1 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 91eb8548..9e0b7839 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 e390da14..e0e249c5 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 5bc69a91..20c6d70a 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 202b5a99..5270479d 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 97b4b668..e2b1cb4f 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 20a93b53..21699743 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 f5ccb86b..4df83780 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 e650fe71..98b4f3cb 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 f47fe493..7c06e81a 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 8c74bbdd..5ea09557 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 fc8d86a8..f2e77e56 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 0bcc5f10..75c98034 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 15f86562..39fc200c 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 ddc2ef63..03b14167 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 f38320f0..4059147d 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 bb97f639..140ad2dc 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 c6be45e5..10d59621 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 c1375074..c0cef0c2 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 9bd3f557..a4fc199b 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 08e24bde..62a01a98 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 8ce8b0c1..4f7879ac 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 0befb0f1..f6f3afa0 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 a631da94..e23b0e71 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 58dd05ec..b1f5e1c0 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 43455ad9..83036d7a 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 5af921d7..d0577792 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 1559cf5a..24766a19 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 4d155dec..0e843e62 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 d13fec88..c59d03fe 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 d2909787..9d235644 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 b990dab0..106b447a 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 1ca19f67..5dc1904e 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 bd04c99e..29277055 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 3b66747c..55ca579c 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 70ba6de2..d688898b 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 eaaba1e4..74129c70 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 cbb5ba75..050bb87c 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 cb7632af..529a7fb2 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 423dd2ec..ebab77f7 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 dce4276c..a4d188f0 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 cbe138a1..2c56ed14 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 fe3c0c7c..7a8af059 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 91263c49..28c2a87c 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 84bd3746..b3336796 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 e51e887d..ada76d13 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 7e283b0b..a0a0ef81 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 8570f77b..6aada9e0 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 43058744..b2fdf553 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 7d6de753..d2ccfda0 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 e61e50b0..188d9215 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 a6ff0b83..95147cee 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 b64e8d41..39f96c00 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 34d36e53..f540ea20 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 8e863456..2bc54a37 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 8d425117..1e8b4941 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 6e0673ed..c6c23749 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 bfc3317f..0fcf0329 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 40d6e7c4..84c14140 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 10736636..e44ba8d4 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 626fb0f1..a3c369d1 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 140da54f..0b1b37d8 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 3c2b2ab4..dc89264c 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 0152fafa..942a61fc 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 db946df0..5e1c2d7e 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 6fc03934..18414ba7 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 9b77f201..7efd51e0 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 dc61a38f..93981eff 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 6ba5dbe4..c49d2275 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 af689210..e3c9d17d 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 5ee91268..866f0977 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 cc3e0f12..6268f225 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 e6b56dec..530a592f 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 14faef7d..2c6ff591 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 dab583bc..1338ce71 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 d9856653..9bdd57a2 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 843a9dd8..65d0cd8e 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 901f592e..60ee928c 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 44c202d5..79044372 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 b662bc63..44ccf77d 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 955d8646..0eda0968 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 239b717f..edbb4833 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 549708a4..dfc81ea5 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 aa28ee35..714ec2b3 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 aa07a9b9..b6c33600 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 be6036b0..1513e047 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 117e1a1a..9f997632 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 62fcdc91..531377d8 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 4cd071ae..41fe7e95 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 63e60156..73c065ab 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 7ab58ca1..e28962d7 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 c08a30f0..3ac04bd4 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 6ec04218..0765d227 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 320da981..42e6c28d 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 67324c2a..2e55728e 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 3bd43cc3..221e4b87 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 6d1e7feb..c56a23e6 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 7cb226ba..eabdce58 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 cb38ffb4..0eefc11f 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 a685212c..2cc7bbb7 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 14f2abda..afd003a2 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 fc7ce28b..d7b217bf 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 2687e1a5..c911b98d 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 9cee3e71..91928304 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 0f50d40b..1a7b48fd 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 7284db8b..adce7d27 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 8ba22c58..8fe9d825 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 7cbb4569..9a099c59 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 72cef528..82cf7de8 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 2248c965..e898b5e3 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 61c367db..19579f9e 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 1ee4e1a8..c1ce4c0e 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 cf6e3ac0..368b2fcd 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 c124ebcb..39047251 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 a5366b6f..d1a6ed0b 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 fa87492d..3e684fcc 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 42c8bc5b..0d070e94 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 553f8deb..b4d3d870 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 a5bcccf6..5780407d 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 bafb0353..19246923 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 fb0df119..d6e528e6 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 042585be..63c8ee14 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 53991658..427e9b4c 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 8116649c..4698406d 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 65ac517f..d2f9a318 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 fcb1d0a5..fb11e39e 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 19f287eb..2605b9c2 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 013ae7a0..50b86802 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 2d0fd7e4..c231006b 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 44c09b10..06500e17 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 94f14168..343dcbda 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 7ddc750b..abef69d1 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 574d3566..3b0d50cf 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 db5091ba..75633156 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 5eeffd50..d25b2d2a 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 c009e66b..430f9785 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 95ee2d88..b42fe8a9 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 a4e775f4..0cdcd09d 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 d55ac385..226d8dd8 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 ef6d55c7..935e70db 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 38bf4596..13d57a47 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 0d4b7eb6..aca22439 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 7a6c5b17..2111fc42 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 fd31feb0..140be20e 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 5629b42a..1184b181 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 28f4b03d..1cb64b4f 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 22842774..454e20d7 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 0bc1b208..c03a01f9 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 6e12abe5..9171acfb 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 60908fb4..b0cc17a8 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 dcbb044e..f3cc32b5 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 00efefa4..5bf8d58e 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 a2ea3f28..3b7fe067 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 3972cbfa..3bd37864 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 fb75351c..2009491e 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 260b7bda..df4d8138 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 436ef8ad..67c6cfc8 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 5ec5df5e..38c2624f 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 aa3c0d27..4e873d44 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 29627100..44a4ba0e 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 80523357..0e1923f0 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 54faff4c..e830faef 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 b973b12d..52d8115e 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 260b2849..584f0a53 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 19b9e2b6..bb4be6f3 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 3241a268..059d58d7 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 9f0d077e..df7cca2f 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 0e461729..646e0144 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 ab50dfc9..047af818 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 e7145ddb..5932c98c 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 d31e7fe1..dafa5a15 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 19faf7d5..b9f654c5 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 9879ca6a..862589bb 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 03d143ac..11a53c1e 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 95c6d1c5..7b404863 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 f5b1233c..df55d1b1 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 4bedc2a3..05bc5041 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 f0c27124..7be9a6b0 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 84742c82..8b5c8511 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 25c15853..31972b98 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 c2390565..38627bbd 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 e3e8ea09..004637cb 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 dc7d52e6..afc7ef61 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 cbc34cab..56db71a8 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 9de251d5..52fee1f2 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 a7b3dbae..71d44b72 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 821ae5c7..a2462cf5 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 9936be60..245007df 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 2a1a4992..41815f12 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 341249bd..5e3d080d 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 6ee749c6..c50261c3 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 23b2c035..3918bb66 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 d65a600a..62e35089 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 746025db..42229ff6 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 023b8916..e2c18803 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 6f43d152..ca004b6a 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 253b7ee4..f4cafb4a 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 561aa675..17f8761d 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 e2d0378f..56ada475 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 93f9dafb..3bc7f185 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 ae21ce71..f5884e0e 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 82b75be5..95e97f13 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 4fd62bf1..8f4f4d73 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 98f40415..9c6c666c 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 e57a7986..2bca516a 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 4d7374d1..536dd19d 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 0f2fdde7..986c0dd9 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 29478d28..a79f7926 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 b165e906..d7509780 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 105b818e..98b93994 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 1648aa1e..55837025 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 ca326184..9822c761 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 caf78f0e..dc7e98e4 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 f863a10f..cee249fd 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 fac22c24..c1ddff8d 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 0dfbef69..26cff303 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 b8f578df..df9e7373 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 0407855c..bfd3c452 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 2c2f486c..28994a68 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 66b239b0..3767fde3 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 97173ead..5c490fb6 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 defda633..0418aca4 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 fddc4189..c910ffda 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 58d459bd..eecb20ab 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 34b89a24..c8e6f9f9 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 9245a2a9..4ee36c69 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 788ac4cf..f9eb7ae7 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 46f51dd4..cb9b2f05 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 51151c68..e615921a 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 7e87f4c9..a02d0810 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 cb93165b..c2c8cf3d 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 841e28e6..1b0f9ad6 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 83463b3a..44be42c4 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 ca1bfbea..3f2d58bb 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 845733eb..ef58efa1 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 70cbd0ff..0994e354 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 f21112b0..13ba296c 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 f9dbc22d..26f08f7c 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 932e38ed..396a7e6e 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 79616b92..55c444ff 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 6e815b9e..f4b96602 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 0ea7ff24..a17cea7d 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 44ea5518..ef843798 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 904f4ab1..1b78e145 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 14155806..a620ab3a 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 52d24ec4..a06a294d 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 c87363b2..42bca382 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 c046f746..5b43ade1 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 6df3526b..6f15a70a 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 2fedcad5..04af5b70 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 49f37d84..be0d773e 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 c6e8b31f..97e4469d 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 7cb90d69..c229e10c 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 452b1d3d..39f09b7c 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 ec6eb531..d6d933c3 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 d958a3d6..7b2ab7bb 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 a8befc7b..1138ea26 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 7c12124b..79438ff4 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 0f6e7da6..a1ec274b 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 b028baf1..96b56852 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 c1b45372..0367a65d 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 0036e071..052ed45c 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 b60229c0..94d00a3c 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 dc34a558..f48ace1b 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 69944bc4..7618eecb 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 28dfa960..fa2d55a2 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 ce89ac02..a15c2e45 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 be33f2e4..146226ce 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 ab7b717f..fd27f6c8 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 5da90405..8fb4a296 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 f7307f37..bfc7b82e 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 7b99d263..077c3304 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 e7509bfb..26e94c2e 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 994c00f2..039a08a0 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 b205c960..54d155b5 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 7db6569a..3fd38a79 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 f5714ca3..93cb7c93 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 741f067b..3b62cdc3 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 c670234e..d7c449f1 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 3106b043..99a60896 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 c77dae6f..7ce5ec45 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 f1657d34..4481b6d6 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 a907a682..8bd74403 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 702459b9..252aa9e3 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 966e98d7..8dec44d3 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 37b30005..317a0aa9 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 552d4d27..f78377d6 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 74210889..3354e539 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 35661c42..9fc62b4f 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 cfa84f55..780e6df8 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 ed62a585..47dcfbc2 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 33ef5cac..322c52a7 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 7f4371e3..b820011a 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 05e56150..4446d414 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 07916c97..bd8c2499 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 adeff949..a3dca2b5 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 fe47e3b6..e70b905c 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 25ec010e..66b43cae 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 958ff77c..88012665 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 fe9007fd..63b52484 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 78e8d315..f5108048 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 1785ff45..ed03c206 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 46c8f39a..5393b864 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 50530a01..ffb2d2ed 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 8c16a35a..a49d9355 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 19e47e8c..2f2dbe87 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 1bd522a9..d2a103b1 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 1f668b07..7e8dc0a5 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 38d5767c..090e44fe 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 1dbb5414..16bd1382 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 413544ab..4665b593 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 9780d08c..44829e72 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 9f5b2f5a..80d29950 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 f645a951..8d48efa3 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 d43a2711..17800e70 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 184def16..4905e002 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 eb7dfecd..59fba293 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 8c34565c..daab3bd4 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 78b5924a..2ddb6af8 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 c942cd3e..9208270c 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 77e61a0a..59894aa0 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 1bde040d..c25ba9a0 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 225c97d8..eba6510e 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 742f0bb9..7004c523 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 11b7d135..84f13774 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 2180227d..88661740 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 51c1eb38..641543b4 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 4e4a14a5..a47cfa20 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 5b2817dc..c7472463 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 b1407fcd..19b28020 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 6c942dc9..b507f5e1 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 cdbe5b21..64a0eba1 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 ebda13cd..1e015b3c 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 65e710d3..98caba2d 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 f77f9f23..3f7e8ed1 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 d806960f..94b883bd 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 d6520d1a..57b0d5d0 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 c532c64c..48668366 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 2201cd54..607786a3 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 8b1eff71..b1bd1f50 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 8568c14f..9038a649 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 40d8dad5..756adf73 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 8f80e478..0d13a6bb 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 840c92e3..2ea60e36 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 778f2e0e..98f2ae10 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 e5f4f9b6..69eb9173 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 ea7aa643..de73bc06 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 3209d89d..c27d7411 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 37a35666..aa116649 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 25b9e3f2..ebd70a3f 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 b47a4131..4ab78bfc 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 edbd88fb..e5cf62cc 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 8cb61144..76347b6e 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 bffe6f48..aaffa6c1 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 c8e3ce86..de2c3de3 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 dd4c3144..a698cdb6 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 ca7c708b..f61aa131 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 8a30ab70..30e4423c 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 8dd39011..58673bf3 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 ead4ebc2..6d6e6f05 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 650a6ecc..1f98e305 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 bc40b694..5e24f7a2 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 1b4ff926..bb9153ff 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 5ee7238e..f5290093 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 840bc8ed..367221e8 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 9a8348dd..d5c8b9ee 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 23b981b0..3c68df06 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 af841d9b..c81f2d1c 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 28aa9982..04fc5641 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 49c0a99e..daedbb53 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 0a122735..272a1806 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 9ad3bda2..8993a63d 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 75166fab..af89eb10 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 e134b33a..7ed1f2e4 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 f715f727..f816e129 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 e798e7bc..553d8d4e 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 0f3605b4..0cc2853b 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 b20d635a..16e39b80 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 b340ccd8..c16c53ed 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 032ba37d..de70076b 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 2152bcea..4948a056 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 a16eef20..15eca729 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 033eab15..17aa0de5 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 ba5f2474..829d4d15 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 681879fe..6c66406b 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 a020f20e..d91acdb5 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 a5241eb8..4efb23e0 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 4ee310c2..902d54d3 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 93aa68ed..f8de9375 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 8a6b4722..6efab17b 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 ba919452..ff338785 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 fbfc8d50..eecf25f8 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 37d12015..7e3ff93b 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 4bad522e..47465576 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 bbf7f936..987d59e7 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 c0406ebe..19571a04 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 2d8af0bb..a2557989 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 f2b0ee0b..5f24c682 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 d83b2e5a..0fdb9213 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 8ba5597b..ef1d9b70 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 6e728558..bce9b031 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 ccbf5bb3..81c393ad 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 648d03eb..bca74c47 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 f3379b36..c7a87ce3 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 b4aee40f..af75ae34 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 67cd3045..e3a09f00 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 3d02ca49..1b331861 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 c2ff303b..796a94d0 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 86ec2eac..560acd29 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 06d7d887..475ed9cd 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 4c56bf3d..2d56ed29 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 2a7a7696..5164e96d 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 ef91b90d..2df60e94 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 e570ddd1..85e6b2b2 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 90f084e9..ea8616aa 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 a0d737cd..8cbad326 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 7e252a7b..7b635f69 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 df08d823..fc3365bb 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 221b265d..8c404102 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 a02e7312..503e913a 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 8112f6c4..65f7a562 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 a4b6386e..f18b0940 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 7ec50439..9d4af3ac 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 01d406ad..c3141990 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 1f4bc993..0d151b71 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 1e5e74da..5e0d2553 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 a742ebdd..6a1d0bb5 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 3ecc4228..5c33a023 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 d81366ae..53e38d10 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 a9cf0f7d..43e1f223 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 b0407693..1cc23caa 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 3ec775de..0e2d7344 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 aef05e54..75a096da 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 a7557ddd..2eb61904 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 010d5dec..c0883f8e 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 77168e3c..3d52369b 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 d3a62c8f..68428529 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 fd0176cc..510c97a9 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 d62a522d..517e4661 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 9bd3a468..1b87559c 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 7b709152..9d92ca68 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 254959a6..6da343e8 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 dc7e8fa8..a49bf47c 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 775bea9c..09315a6c 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 d9403c17..78909330 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 600ac5f0..2acc4adc 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 4a4f7ff0..3f5caa10 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 c15572cb..0029436c 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 bd956ef7..e5d151ec 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 4086c97f..acd0fb64 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 c27b5b7d..fe7e7ba7 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 2b1a8705..652468ea 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 8b20b554..4ae82f2b 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 df3429f4..00fb773b 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 bf110d81..604368a1 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 c4faaa07..61b5dd07 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 6143eaa3..2bfab2f1 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 aa176244..4f7e5ddf 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 434aa6fc..dc23792b 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 804ab235..66412fc3 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 842b919b..3a80c40a 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 c37f828d..2f2fe769 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 9085e607..935b9210 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 145f4ca1..1d527221 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 7c4aec12..4e342fbf 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 7af5fe84..af955a52 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 546f2733..82bb87fa 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 e698c27c..7d00518e 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 fc568fb3..cc7ed071 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 7324132c..bebba1ce 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 f8285f99..d0b42e02 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 8fe990d6..a239deef 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 c686abb7..d9b9879d 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 335c81dd..03b94e9c 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 ef3a433f..e2e66c41 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 4ff7e24f..5f27840a 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 9eb01c97..41e62bce 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 4b23d73f..70c3cdc9 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 001f9523..64e68f2b 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 8bcf4321..884d1d44 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 7f70e2a2..115cc666 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 cb232338..18fec544 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 90d9c859..efdd885b 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 c23361cf..b97f65b4 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 896d50f6..34614ec2 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 4ed7accc..9142964d 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 8cbcd26e..b3a5b7c6 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 56ba34bf..864ff7d0 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 99e29705..25ef7b1f 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 c936e139..42f155f9 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 b0afcd76..7338ab63 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 0a4d348b..28107145 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 92f4cbe3..317b743d 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 7d0b30bb..58828606 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 ebc1da30..343c4e1f 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 7ff01cdc..ff5a1bf5 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 747ebdb2..0580a866 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 ef56cbbe..79f4df7a 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 ffb54c75..e6b48eed 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 a680d118..5bb07343 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 250db60d..d977fb01 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 10c991f5..5472ed24 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 0545cca2..a85d9dc7 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 7e7af9c8..1ad2392d 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 b8899b04..18cd5fa3 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 0edbd61d..bbcf4e01 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 de6014c3..25a12001 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 d48558a8..d1d8f529 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 1373cafb..121f9afe 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 b4eef920..9b6c532d 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 cef1e2d5..a87073ec 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 6dbc244c..1986ebf1 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 267e7b2f..a8481081 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 053bb79b..791ef23e 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 9e60b443..961aa296 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 e0bf79fa..15c91406 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 62ccf674..5f93c76d 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 35158cfc..32a0369c 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 e9a111fe..672e66f3 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 3c5aa15d..f3916a72 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 c97a51c1..2800e1a9 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 50df33db..4647fee3 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 1f5f9ab5..7be4116d 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 d55e34d8..80432345 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 7d1ae9f4..e9393582 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 d1294364..b83c34d2 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 3cae8905..c073587a 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 98811b75..ae51fcd9 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 0bb4427f..e387b69f 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 9638c7ee..4a443d4c 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 a2dfcc73..866d2f30 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 bf4b9549..1f9ab00c 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 6bbbf322..9ff02cbd 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 4ac351f5..f59a968d 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 e9a32439..8d6ec6e8 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 858addc3..794802b3 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 768154f6..63c7e162 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 32a875c4..73621f58 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 41332d29..994c6cd6 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 fa05e208..26206648 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 880dfe23..f97cb1b4 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 d8e9ab15..d938aa45 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 ec30bb93..6f26399d 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 e03233d6..5caf64fd 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 91ac90db..d84867aa 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 d29d53fb..ba15bb39 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 2efe8ff8..1824d021 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 593f460e..eaf53004 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 629812eb..cb21e44d 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 3b018ba0..93550aa9 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 3e6d571b..f46d5d40 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 ec3e0955..8fa2e1a0 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 a32d5144..3ddc4229 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 8d2fee6d..17903bfe 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 79344d5d..57e2a7b1 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 38457279..b4c20492 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 da07befd..1d3a8a80 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 4eab3fab..130c8351 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 f4d03322..7369e611 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 a84db7b7..fcbb9dfd 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 c22818d6..a052ff69 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 b3735fd9..44f4d9b9 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 b0874e4b..b19170a2 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 66914073..e6a5344f 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 72ab2f5b..530049e5 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 7a101f16..04d2820d 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 907cd722..a06adb2f 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 a2f8e1fe..2a595092 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 4b806f76..47514003 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 c878f431..da5b91f5 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 014d8359..bbb0ba9b 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 8d3c9be1..cc10b2aa 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 ed52d95c..9937e8bb 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 da367f80..91a1fab7 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 32df50a4..f905fa78 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 89ef6a45..d406e0d5 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 d791b2a4..ceda1ebb 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 436d273b..c4fa877d 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 3570c540..93518b50 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 71246be0..c00f4a29 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 11468144..4d0f8cab 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 c2d60690..c76b80e2 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 727d14c1..5276cfee 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 93c0bec0..f80aaa18 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 4f8973ad..64c5a631 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 12d4df4f..5cb35bfe 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 23cc789a..4ceaadb9 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 a327c318..560b9643 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 c38bcfd1..6f0da50b 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 ded9750a..d000c4a4 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 5cf4071a..fceed2b4 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 ec1459b7..820c2435 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 70e93597..f90a99ed 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 bde6fa0a..bad360c9 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 9ffbf8ce..cae9f848 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 82a8a1db..0a039edd 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 6dda91a2..3c0b276c 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 bc138d9a..d97d194d 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 4a10c6f0..27291b4a 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 2bc0973e..60278610 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 4d1c9c4c..cc994ec0 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 937b873e..aad62801 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 9834807b..84c93777 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 6f866f78..82a62a41 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 5dbfabff..f8e64f14 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 b4b84a86..7d0b13c4 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 69617fff..e7f76300 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 c5ef82cb..6f8122ac 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 ca71738c..5112d565 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 aba781d8..64290aef 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 23d0527e..dbdd2bf6 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 1c6a815c..6fb0bfd7 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 d728587a..83f64ff2 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 97a59b14..83b8ac42 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 ecc34b81..86d0327e 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 42c883d1..5bb65fd1 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 1a8a309e..53c36d80 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 385e7145..7fcf6163 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 4686cdae..08329628 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 a6bdee86..f6847235 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 61e7caae..f4c9efdd 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 69b96d78..0b0f486e 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 95bc2ced..8af10114 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 6864638a..7752f498 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 ee4449a7..d533802f 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 e1ebb122..483dae8f 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 66457bc1..1ec11772 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 93009e95..436d5d9d 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 5d9306ff..74a68ea8 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 268ed0b2..eed6b09f 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 70542209..63d931cf 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 8e7b6648..f8d52a9f 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 ca13075c..5dc217a4 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 f63e1bd5..73571066 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 1fb6088d..2ba5144f 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 3e87b9b3..f505629b 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 99f75be9..8248f7ca 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 982fa243..dbc2fb26 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 6cf9d69e..9da9d21b 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 9ca5bda4..65fdf04a 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 f0547c1e..6820fd51 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 2454ef60..c38fbbc7 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 75a17931..7524da06 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 e464a689..288ef7d5 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 20acf440..d8fd0937 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 c48d14ea..ac12804e 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 3cb660c9..442ab748 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 3f0c75f2..eaf90c42 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 f6b25927..9f1a4081 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 dfecd7fe..b617702a 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 9357babb..7c88108d 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 8629dbc1..915ef470 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 25c58bb7..a6f43c4c 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 6541654b..d656a362 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 8bc1304e..eb4152cf 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 0314592e..dc099cbf 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 e7755bf3..598e4a94 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 2adf919e..91850b4e 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 b85b96af..5661bcce 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 77eea3ad..f8b76211 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 3c1de538..d918bbfe 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 b1e4402a..96f9aad7 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 c2d2bc4d..27e3e97b 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 16c6bcef..59770333 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 361e9813..e4089b2a 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 c2b99677..be7c79a6 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 27a567b5..143e5db6 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 4a378635..2cb1eadd 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 27920a40..96af7004 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 02a7bd98..23169763 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 56748cd3..dc7077ec 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 8a4c66e8..4428fce7 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 8de1f5e0..df615959 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 c46d3f6b..f805492b 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 84bdc06f..e9c2d475 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 a497b716..be5925d2 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 92bbff30..e896d1f8 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 b2577703..3e0160d0 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 71f51714..03d22d22 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 d9157274..51c53d08 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 6378f66b..7e9d52ef 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 18649502..e5892fdb 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 f01ca6b2..99dc783b 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 4925012f..9c02df48 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 05795287..75e628be 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 34f3b8fa..1d1a3394 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 86fcf7d8..fcd39e6e 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 f0d17c40..70e100c0 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 f67d2b41..0c16d992 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 417b4153..080cccdd 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 62661d17..5a864b8d 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 a3862415..ec8ea712 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 e6a4845b..bc0e4fa8 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 27dd33e2..028c552c 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 6c387bdb..d322000d 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 cee60020..5c2ed7a7 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 1c1e70fc..0c7e2f87 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 d26f13c4..565b2dee 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 0bee2515..161b55f0 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 2f0192bd..bad66273 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 de417d9d..6e3863fc 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 3fa1ac59..0bc0e8eb 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 3747ed72..aba69de3 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 6dac5904..84d2face 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 d20d3a87..b8a11478 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 8fd6d46a..b049085f 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 c032eb00..f8c0027d 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 83b72869..c06458e7 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 ec3ec92c..5093ce15 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 15161176..6b1b0534 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 dc6b4cb2..7b836da1 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 833825ee..62fbb723 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 1523d604..5dfbe41e 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 d420bfac..f471d40a 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 1d96178a..e6559e56 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 08697557..7f12ded1 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 4b7b16bc..36f9612a 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 2d2e3ba4..0be03c32 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 fad4bc0e..b63ab622 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 f1dbadef..81a07f6a 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 f8f66902..06b48bd3 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 2c6a2354..c6d5e5cd 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 98a889d6..24fb27e7 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 d2bbd51e..ff06545d 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 edf276ec..00220013 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 678df20f..6e18a57d 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 de7746c5..293b0c9b 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 2c00d4df..a3ca7a95 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 8e68a863..0664362c 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 3e3fa67c..13f847de 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 9f66ce5f..94b3caba 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 8697cdb0..228bb726 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 25b81e73..c00d8282 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 1315d827..899e11a8 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 bb25f6dc..333928be 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 f8bddc19..41dbae66 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 0e01569b..09970c71 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 b9312306..28d8d6ce 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 ef88a8eb..63453560 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 fad8f4d0..53da067f 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 c46c03da..cc7eedec 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 d5441a72..4ba64e98 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 de4c9b27..df3ccfe4 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 48c2887d..4aebe878 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 af4be751..a13c4634 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 2b0f1f2e..1d7a882a 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 dbf54db8..a6b2fb10 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 f17f7297..7350bba5 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 cb6217fc..acf14398 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 bbd1f640..5f59ad2f 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 bcfcdba5..fde69871 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 33217dfb..955ce039 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 f895f912..024e48b5 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 ec2042a7..a77f7717 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 832ddaf7..9ddc0a52 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 7281d5b8..a769f727 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 24f97253..3e6444e2 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 a5118397..5d234b8a 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 481f0d90..44cc52b7 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 d9431f83..937faa33 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 ea23b3b3..7ee66409 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 d0e9fac3..59eeebc8 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 1363ea28..714a5fd4 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 6e7e4439..9e5915ec 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 2180009f..14d5b3b7 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 af4d801a..516844ca 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 9186b0e9..c7eefac9 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 dc34bbcb..2f4e1afb 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 ff67f899..cfb942b2 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 e0fe89f0..a75077bb 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 2503ea20..ac82e58e 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 94fdfe9d..d18ec231 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 51b84ede..8dd6ce58 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 639bc118..b7ca4031 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 0a0f0df7..fd3a222e 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 c5b553bd..06a1c538 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 b2297d5d..b89fae7d 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 534f4471..09053a08 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 bdd5434f..966889a1 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 188787e8..9a5409cc 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 75484f88..d29f1248 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 d7a8f786..2d6055d8 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 19a505e8..3c7673be 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 3decbdb8..8e60e6c3 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 5152d538..b70e9ed2 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 6abd8933..0aef16b3 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 f6a5d794..1a2cd9e3 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 1626a2b1..331aa2be 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 7aa2db62..bf294c63 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 18af27f3..3bacb4f5 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 f0f8c66c..4176e3ea 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 2987a228..6da2baec 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 e6e3e442..b6fd9d4c 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 0de82210..3da29b8b 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 bc67a2eb..29f67417 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 56d3bf89..69e862c4 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 e3a6b4e2..d3fdd783 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 5adf2f09..74371c0f 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 e510b407..8d521a75 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 4f15a3a4..226c2c76 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 b599b729..04d42761 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 5ca6eca5..6df028da 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 0a945582..eb28cc35 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 ef64a305..d4e3afc7 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 a221005c..d17b0e0a 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 ba3677c7..801144af 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 21efd9ed..b1c42b9f 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 8f7277d8..05429d1d 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 da2327bf..65b2f553 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 10a2ca25..d0dd76af 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 0da72946..235e5bb4 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 a38b731f..5bd31f7c 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 8308b430..a4e0fa85 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 a7b6aad6..36ae686e 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 5ea733b3..f023d384 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 7a26cda2..f139276f 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 252eb82a..35e43112 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 eb9f945b..09c06d96 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 836d7a62..7ce7ae98 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 2d9b27ac..226a443d 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 bb8a6028..3336f4dd 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 d21b914a..393c43b5 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 0c718584..b24db0f0 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 3fbcfba7..f64d854d 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 27049841..56412c96 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 6aa1d0a3..74c2a962 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 dc690e5f..742cfe17 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 5548929f..b337d7fe 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 1a6a159c..e391b67c 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 3ef8356d..c64b78a2 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 19f2f4fd..44cbf624 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 eb83872a..c534a314 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 7d39fe74..4a284676 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 a5b037ee..c9ee63a2 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 0fce070f..b0af56be 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 b31562d2..36e12152 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 50ff25cd..770a9c02 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 47ce295f..542f8cb7 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 7a3a769f..f74b6128 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 8908c7e1..099a05cc 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 3951f802..b12c48b5 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 522bf739..819d5685 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 d821453f..9f362475 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 e18697f2..dff67228 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 f293ca07..4e328581 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 97362933..765dfc21 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 8c2b41a6..12a8626d 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 df0ee5e2..78ea36d4 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 82d41d2e..d3906132 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 d5735d81..9def2d8d 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 51c6be05..41eed8d2 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 09542890..5b6a9263 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 dd6b7040..cb8ab940 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 1549f38c..2afdb6b5 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 42e5cb34..9f2cf536 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 53965f28..91850d7c 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 b30b66aa..ccf9585e 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 4938e759..a903ea93 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 761c7f5d..8190b1f6 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 e41be21e..0cef477b 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 3dfd83e8..3a2c98fe 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 9b09d451..0449ac10 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 923d31b4..1b65723a 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 987b2fc7..461099b4 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 a7c02de1..9039c184 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 d71f7912..61d502fb 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 3a0b1dd2..5b131cce 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 a4a46178..3fd71bde 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 6e8fe4f5..670bcf36 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 44cfb4c0..8c077749 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 bd7445d2..d4bed10d 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 c34f4fe7..caca7f44 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 fd7e9134..225a0b77 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 2aec4613..7061ead1 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 74296d5b..3f872207 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 4ce30676..ce7619d3 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 b16d86f3..97896a34 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 87b9fd99..6e59c4f5 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 00ce1187..ce18a2a5 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 47fa83cb..8a29fdfe 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 a4c80b03..a2ff8fee 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 c729a3bb..a5df1ac0 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 aa3f7c8c..93d339a2 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 966f2127..13b2dae4 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 a21893aa..ada02f2b 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 5e70cd2a..c591db45 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 45633723..950e01e5 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 d6399fd5..d6dafc45 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 0fd29d05..d81552cc 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 b7c903fd..6514c90c 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 0a9308f0..428e1baa 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 e9aeb8ec..e0d555d6 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 e5ba4669..3a882dae 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 f3f3135c..9157c7a3 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 0ce32bec..36d8f2f6 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 fc3b39d3..2446db58 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 7d2ec0ac..f78a52b6 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 f0763054..9f54261b 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 d848003a..ab5a7fbb 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 d4c69b60..fef690e6 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 00558448..402b7091 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 e9a38b3d..c22d5492 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 2522b088..5ca14dfe 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 622047a2..392ade12 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 4f680f0c..97e69b72 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 21d61653..a378a0db 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 ce91d5bd..db630e46 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 84d037b5..0127c903 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 f48482a6..1fdd123e 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 6d90598c..021acda9 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 abaa9dd0..23056cae 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 6febf25b..f559a50e 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 0c3fbdff..60b8b903 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 e80e9920..c64f1ad1 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 6917a4c7..cf20d0ac 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 fcd6dda4..736b1b02 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 0daeffbb..6f09fb13 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 d1e7bf6b..e65e6410 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 7016d0f3..58142684 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 2484ab80..7160b109 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 ab13babe..3920a4c6 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 72c31a5d..cdd0ab6f 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 c9ab86d7..0e52f9f4 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 8c433d14..e6e6439b 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 7c221c48..3f3ea25e 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 903030ab..93b79937 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 0a68b95e..792e1d69 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 bf13067a..e60b60fd 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 178a0139..c9754c83 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 b718ca12..1faeb370 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 2c26b554..b2ee8ee3 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 1608461e..8f05efc1 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 5f8162cb..3ba0b1bb 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 2ba39d98..8e103c20 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 a42ad28a..6662477d 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 bbe212ac..489fbbcb 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 bc991415..d113aa85 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 09606244..7b3ec578 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 2e4815e5..90e91dd5 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 cf5181da..b2efe30a 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 b3b7d2c1..2610d1d0 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 ed97e0d1..abece45d 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 9a5e0cfa..b6df49b9 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 906c72c4..0310f6aa 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 7e64c61a..59328556 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 ac6e615d..1d6eb233 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 bbf26f97..9e22614d 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 747758b2..676ca63f 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 3a3fcada..9412e12b 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 0323dff4..473d9e83 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 f292aabd..05b4b896 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 cc4b1cee..43d0e454 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 27e8bec9..d261c438 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 048c3c5c..990ed4ab 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 9b1d09cf..f4c920b7 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 1222d9cf..f09abc41 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 7d4abfc9..29605e64 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 ace0f9cc..37c92491 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 b17c886f..0fbef740 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 af235cba..df108bbd 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 a928f3a1..f5f3a3d6 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 98d89942..13f131d7 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 d7358d9a..8d6cba18 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 49733ef4..b32931e8 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 57c215aa..572f710c 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 4db11be9..f95d90c0 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 b28bf022..063639f4 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 8c7c83da..d6e2726e 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 56d81e92..f720fe2f 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 2d670312..0db3f0f8 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 1dca4e2f..e22d5862 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 d9592720..71f3532b 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 2b46e208..f3bb373d 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 b4912412..fe010b55 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 1086779a..22e8f064 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 55709081..c2988db3 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 7ca37a45..d083490c 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 a6a6a798..8df72f7f 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 94f79202..168f182d 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 8f098b68..59251449 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 e78b62d2..0061f05e 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 fdacbc8c..4d0b3167 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 9a6db5ef..1736dec5 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 657acb63..df75e3b7 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 41123237..c9ad3e3f 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 cd2dd678..ee97ff7c 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 73e66cb4..3ad7c537 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 4916fe5a..29535383 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 9a83d03a..d6af74bc 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 41ee5730..ffa5c525 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 7827e232..23cba414 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 2fe8b22d..dc20d8ea 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 0a63806d..e68c8497 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 8690ee9e..66386676 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 3339592b..49c119b6 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 73fa4eb0..7a34b56b 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 6078c21a..34961075 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 9e4635ea..eda2d428 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 184ba683..4da3a8c0 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 d5e78244..4661194a 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 3fa7de3a..abca7e4c 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 e8b84c4d..810b43a3 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 0a74730b..c119fec4 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 6b9298bb..3a033a2d 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 7f63d154..31c64c6c 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 b4eb5e76..e44f8c40 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 7cb098f8..66fbb7c1 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 8d32675b..b506d631 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 5a3fdbc7..ef2b4c03 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 20480dae..3c048ed6 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 604d01eb..c4ff5c87 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 5770927e..4a3c558e 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 e4f7f03a..e1fa3b7e 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 38d11b8e..11163e0d 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 362229d1..d8013b6b 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 765156a6..4a22f857 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 0382a359..aec33ef4 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 be085add..e31e9436 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 434bba8c..3dc1b3ef 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 86496c42..03ce4800 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 006d3216..9cd5f907 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 9ddf1ed6..9144507c 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 4fc9cd6d..daa8d207 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 9fed0a65..fb4844ab 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 402cac9d..c6a54334 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 bfbca95b..5f50b137 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 b7086dae..019c59a1 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 5095a73f..dae5d987 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 dc053bd3..b3400e84 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 e56149d0..ef25696c 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 7fe99bee..c20df4ce 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 8913d31c..4bdeb094 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 f28c1528..c409614a 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 c19a28f8..97d1d88b 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 dbc0289e..3e7c606d 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 a57a0627..f15ac359 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 bfeb3e82..c071c5f5 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 bb1f550f..611f91ba 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 230b04e8..5575d361 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 a3c856dd..4020c47f 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 46deead7..310ede2c 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 10783841..4f0f65ba 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 0051cfc4..e4f7b819 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 5094452a..d03423bd 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 91046f02..ed611735 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 40a839a1..a14ede55 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 8620f303..e0cf268a 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 1130e67a..a73d99ab 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 79d8529b..a3f869b6 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 05d7ec2c..e5a141ad 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 e6a65fe9..b4f1c45e 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 dcf97450..e9a99ce5 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 096673a0..427e9148 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 3c465e5d..004a178f 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 b029839f..a65fabd0 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 1fdf7d06..fb1f0a6d 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 c795dbe2..900d8d0e 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 e43823d5..a4a47efb 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 878545a4..adfe0a3e 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 999b75c8..35f96da7 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 565d1490..c38caea8 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 bee6ac28..8a75d503 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 9f9e11ba..e7e7cf63 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 e9d5f376..74bc4dc7 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 129b52e7..c652d2eb 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 fb9e2cd1..42251a3b 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 6f1d4557..725d512c 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 4457bc8b..38c49a91 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 6045d0c9..c7e093b6 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 8f756e5a..33c6002b 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 b91dd347..e66da6b6 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 d948c291..e01f8edb 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 3307fc27..d438e359 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 90d5d6db..52f0e811 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 f653c16d..54e07120 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 ecc655a9..054325e2 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 8851e19a..9073ca32 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 f3b06bb1..1ee1dc25 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 b4c0eea7..1e6d221a 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 1e76f211..af58b7fb 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 d33fea9a..345cbd97 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 6e86ad22..42c091d2 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 285128e3..b6e63d47 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 423c66c6..f830cba8 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 e371485a..8973ac38 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 4475d6ec..62b6482d 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 4dee8a01..5f88db97 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 699b6f46..ec1c3935 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 12799e28..16436f55 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 acccc0fb..209c700e 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 432770b5..68826a6d 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 7c5748c1..4511d081 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 4c8acfa3..c03fb325 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 23732ec7..14ea98f8 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 a63a82aa..8d7d6bfd 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 b9d2d802..825cd6ee 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 f597706c..9491893a 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 c09b7ede..4f262d0d 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 42837e0d..81a161a9 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 9fc2b3d2..a4dbc549 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 9fafa66f..97be853c 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 5868710f..a096e639 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 61697ca5..5607d0d8 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 fc72b9e3..e49f031a 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 1b502333..2ba41679 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 1c7bdb66..1da30cdc 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 8c0fd82a..67220bdf 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 8cb77903..c8934b5c 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 78e96a54..8d20618b 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 035486b2..2b00cf08 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 9e4ca718..4e3edf24 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 3745c67e..d83fefc5 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 8dd9b8ed..c87d759a 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 062481a3..cca9eb8f 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 e153de27..0f586edb 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 249806ba..d8c821c5 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 cf0b12ed..02a6ffed 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 15502b5e..7e850183 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 beaf6f40..2a466c57 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 eb6ce004..22dda8ac 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 d3e78b94..52c63039 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 8c4cc493..77be6d88 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 01830a59..7eb53a5c 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 00ead766..fec9b3aa 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 71a5c296..98b69373 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 e45cdaaa..2c6d284a 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 9d4a07cd..b488c6c6 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 be274617..b2f4bfcf 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 76648ea2..91da0981 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 25759415..b1d2ccda 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 d84bb146..74a58677 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 7c1eecfb..c848b488 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 aa57278e..421c2739 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 249d2136..405f2067 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 f7c77b02..8b34d93f 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 0e78baf9..f0d0896a 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 d5a39582..082fb9ad 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 d9f63c69..093fdbbf 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 0a6c1bc4..76427aad 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 a472f853..166c5f54 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 b5576654..b08b15ee 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 4e97a24e..2349c4a3 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 d0b47d78..db3e2997 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 d89530b2..e59d4262 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 df4b4078..586e410d 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 cbce28e6..464989b7 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 405d60d1..9faecc6e 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 33e8de66..5a193557 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 9e4033d1..6c15aff9 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 791c8603..0705d374 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 060e73b7..5348b2ea 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 f9c42741..6242cd70 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 0efbd488..c80c92b5 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 6d235689..810d30e6 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 e9e26281..b49a356a 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 858c953e..1e9f8b17 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 7270536f..e915a0b1 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 e2708a3d..eb8ecbc1 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 84faa52d..00c36f23 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 5c718d60..fd8de112 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 c4ba84ea..a65e2465 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 242fe02b..1c768f42 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 5554f787..890e3e9e 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 9864a9b9..12c46b47 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 5eddb6ac..319c8007 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 4ddac44b..7c268a58 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 bb82146a..138b88a9 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 18f321a3..bc909613 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 f9ddd4ff..6ea28219 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 412e6920..1c09a371 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 aa59cd51..8ccad88e 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 1d3f15ff..aa2f09fb 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 9e2088cb..bd48216c 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 48c1232a..3ae642bc 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 192c4eaa..86360ec9 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 07d99c89..8c756cf5 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 f46b6193..5e064a65 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 95ba3e3a..98dc3684 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 8e70accf..e0a7c90c 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 d1aa3515..b1f456b3 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 878c58c0..ae6de92e 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 8298a1f6..2e83c101 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 254b1874..db18c6fc 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 0bc7375a..5593bfc9 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 08dc9d14..694dc16a 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 e6cd7c31..0e1b5695 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 a3d5f669..36eee04a 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 a61333d9..f410cafa 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 6cb75d46..c0e7f9b6 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 f27059df..d8a1b52f 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 366b4ff0..f8cf9503 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 d46a7715..dfeec7d2 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 fb91c070..8798a6f6 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 6f233ec7..bd0830ae 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 0390887f..bc648380 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 43c53e0a..00cf6f5d 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 dd8868e7..9ed06e95 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 72a3af84..63efac65 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 bf1907ee..078a1206 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 46cd799d..636f558c 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 4597d724..e1ee6370 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 a2d61c0a..983a13ed 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 d1218aa8..46efa00b 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 5f5d01ab..e2794549 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 b85a89b0..f4245907 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 90c3a09f..285f1122 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 d9474532..4894525e 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 2f01f35f..7e323008 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 5bb4e01e..c9afa07d 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 1a1dd54b..79f23c98 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 550d9761..0ac504a8 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 cfe68fcd..cd31c751 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 43da10c5..5591c801 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 719d64c4..9499278d 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 2b670c05..89d19b98 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 8b645f4f..a2876be4 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 3ec7a951..0ef70bdf 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 251c1824..8679cf5d 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 d418978b..331e1d90 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 636f7140..a5ff67e3 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 fbdc4414..3caf8f7f 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 c0b8a244..57386820 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 9d8b05a7..9854a7c1 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 9927a384..540b0bfc 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 a391534a..c0405567 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 07584ef0..13621bd7 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 b7ccacdf..fd071acd 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 8b2b3a9e..96876f5c 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 44481f66..bea958c7 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 41013a11..05c2f3b4 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 4567cc7f..f20beb7f 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 1d0519af..c7106fea 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 100d6212..1a588273 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 ceb313cc..ca3c7bfc 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 d3d97874..5ad7c983 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 a97c54a9..8d0cf76b 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 7a669e6a..01fcb1ac 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 b1462bb2..dee568e4 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 16690feb..53c00cf2 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 8731d656..6b5f25f6 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 f28cb719..895c1aac 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 e0894fff..07b23785 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 74d521fe..e6347ad7 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 b4e9c857..cf42692b 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 4063d073..021e5077 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 78a310e1..ef4e63fc 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 334c0aa7..ce60d90c 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 a36a1438..af366840 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 6e267d95..9fa41a82 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 3657f259..5261dec7 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 163056a9..c1b8dd0a 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 8a306025..65de070e 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 4f20d555..b02ff6ed 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 6edd3d73..4222fe4a 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 37fe30de..a756f26f 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 9394a0f5..be3e3588 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 1ed719bb..2d7c3544 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 4bd31b22..18e2c20a 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 e39e5b31..1b32308f 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 0363b3f0..2e4bb5e2 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 ebdf7b56..256a18d0 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 fd6efc4d..7bcd6638 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 545cdb5a..eedc19c3 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 c9f8c84c..bac9fd75 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 3dc1510b..0c37551c 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 0f1c5fac..52ab62e4 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 68e89a51..b3e4c450 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 2c13ca72..6dddf083 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 d7c41afa..7ae7e0bc 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 0bc25e00..c63fb67c 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 e407418e..581bedb3 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 a5e32108..9145cf5d 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 4d46e8d9..6ab478b1 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 0f1fe07b..fa57c348 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 304864c5..0a3e6e34 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 1b3fadcb..1db448e6 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 fce65c8e..ace8189b 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 3e3a4f7d..dd0d0983 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 93afdc21..0a37c3fe 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 485d871c..ae6c95d5 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 4df8e731..5eb82927 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 7ef3813d..b47321ed 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 4644c096..0f0f3462 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 1e64e247..567885b1 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 30e52641..18701136 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 154b0247..5a78e473 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 f1a3d5a5..5570e49f 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 71d5969e..6155b67a 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 53511449..80baa4d8 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 cda98ae1..7616f1a9 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 eb0ed0de..4eb5d4da 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 e9817e5e..0df93301 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 b9046c12..e5caa958 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 64a2305e..75499148 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 e5a3be4a..58c3ff85 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 36c82066..ca318f58 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 c67d9b7f..5d5feb66 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 24cb2b7c..6db9478f 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 43c16da5..dc5071dd 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 78e75ad8..0b456474 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 54700a13..bc32f9ea 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 5859f72e..604fbe92 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 9a896509..5d59dee8 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 dee566fb..2fe388de 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 e2d1105d..f68378f8 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 c640b881..effd7dbf 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 28608a6c..586521af 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 97351e9b..3feacba1 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 9a6df123..ec5cbda5 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 182d68bf..4a68c959 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 ed096d35..fd9f11d3 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 98582ac1..07ad1d7a 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 159947c0..55519325 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 daa5e38f..e3684d24 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 a0226800..c83fed23 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 ddf03789..41e1fa54 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 3ad982a4..f46c7f5d 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 2ea60874..efe94dfa 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 ab3cf945..6f665c15 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 310fca8a..e8fb9781 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 345e1f72..ed454ed4 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 0a343107..b5b7b2d2 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 04fecb2a..6a9e6d6e 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 749e6f78..e39b1443 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 49dc6622..1b0bad75 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 64bef263..e281d09f 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 62a41789..fef78875 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 c6fc7772..926390c5 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 8717c25e..49dbad4f 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 8741a70f..17161d4c 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 004c09a1..e005ade8 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 a60bb428..dd624556 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 8a66f55f..0b445428 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 6ea0d945..04f4de56 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 a883bab6..3a229945 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 bc41751c..223db84e 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 625ed9bd..9b28a712 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 70c3df11..8ffe664e 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 fdf5ec1a..2b509969 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 aa6406ba..fdf6b00d 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 c03ed3c8..1917d825 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 3c71ef63..bb2412e1 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 79d01d73..a52ae207 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 9890bd7f..73106208 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 dc08f3b5..e9ef2ce8 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 3d2b6e60..fa686b86 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 8ebb5a8b..90c4c520 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 229f79c8..10a9966e 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 1eede9e2..1478e9b9 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 adbb4816..fdbe6291 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 0a9791bd..25eebd8e 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 3b4f4bab..1b03699d 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 c649405f..b12a9690 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 d751d058..4dbe3445 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 c904cd2f..49a6597d 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 4000ddf2..054ca0b0 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 1835fede..f819d052 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 3db684e1..a9156e53 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 6512b2e8..86772016 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 fe0fa6ba..5508f6bd 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 f8723392..7ef24b6b 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 9a191acf..e674d517 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 b724f55b..1dc5347b 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 7c186834..07213d52 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 e03cf9e6..c43bbb67 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 c737c23d..e2d7a4be 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 0533b9f0..200d8387 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 c554b141..4658032d 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 d7ed5bde..a594fbfb 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 68403310..85682dba 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 8c55945c..f8fceb12 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 7d2a4219..022086de 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 9c2d9132..e65087f3 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 48d80c18..0f569b48 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 a9fb7e89..1f3ceb47 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 bc858125..701226ee 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 b2f5eed4..7c6412c1 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 d798408f..e5129067 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 7f815f7d..afe4007e 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 7ef70b49..7b980e3f 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 ff951cc9..09c07819 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 b63b3c77..ea4da60e 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 30db96d6..553f74ab 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 e8e80b2b..63ee6c58 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 ba2d6121..ef4535a7 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 003ba9c6..0c9cfeab 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 f82e74cd..f81929d5 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 7b37e146..8cffa89c 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 0a4f3499..6987927e 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 9412a621..5c554fee 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 7dd4ecff..a56f32a1 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 4144ffc1..7ef63381 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 ce3e4c21..4d891738 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 cfad2f6f..64cee598 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 dcfd7659..50a73918 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 6bbb4d4a..c4791124 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 3f71ab88..7f498391 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 ad462d75..771feeee 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 9aad89c1..eb2874e8 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 59c26224..17fcf125 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 49b86dfa..5ac3e563 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 f0716991..32284669 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 ced34b81..f3fa23b3 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 b4bb35fc..da9a8d87 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 89bbb1ec..e62582a8 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 f289b76f..95c91baf 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 4f109ff6..2d420e48 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 54329c7e..580780f5 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 f0c7e5bd..0633fbfb 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 a468444f..612c48c4 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 a34f1910..b08e1390 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 363f4955..18387c26 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 e1a580bc..c3ebf16b 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 c1135deb..57fc2d38 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 ad3572bb..a0c69983 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 37e6bbba..37b3bac2 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 bfa18321..8567e306 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 7643ce89..c6ce7f9f 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 fe4f6325..92c293aa 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 46f45fec..c8f86918 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 79d48b6b..e3d3e454 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 9d626362..702c57d0 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 3427a95d..d918dd4b 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 f798ec4f..cd21ea2e 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 c8c4d188..c0aa6df7 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 36b9443b..dda97445 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 98849ba2..45a89315 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 beea84b6..ea759107 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 b8dd8381..e11d4df3 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 280c7880..4822eaed 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 8b3ef128..0b3cc51a 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 6832d50e..f2383108 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 a809c290..9d0db2ac 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 0ef1b062..37e193d3 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 37c211e4..bd027216 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 15696862..2db3d6f2 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 6b1c0446..ec74c591 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 7dde92da..6a672e2b 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 3c24944c..4ac85bbf 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 6e7c37a5..3be78790 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 b9f82e63..1e4b32c6 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 0b9e395d..a7c5e7a7 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 f074177d..4b1aec8b 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 ab860f4b..c0bd1e9e 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 be0847bd..deeed7f6 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 fcd29b80..c167b40f 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 a38d00b4..c8898283 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 374f1675..10296043 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 6e56553f..b091ce5d 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 6df8aa8e..d89ddd85 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 83151635..429fd9c7 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 ec64db9c..11cfbe0a 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 990f2deb..fd974e84 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 b8c1be06..e251aaa6 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 858e0c53..c6f8823c 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 310c8f32..e1aacf68 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 09dd0393..5fb07796 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 87d870d4..058d3ca2 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 b9f3e87f..5ece4527 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 2af8df3f..602d4ee4 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 ab087c37..6cb1e843 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 a4d7bbd2..2d090e35 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 83b8a7b1..fb0fb15d 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 e0f25518..fd0286b6 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 a4a33c86..48aac4c0 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 b3ea27ce..83b1323c 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 17fc3b79..ba547aea 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 d2a44f72..951412c4 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 a723285a..3517e4b6 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 5e04db05..ce72b988 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 d568de87..d94134bc 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 60c5061d..998b7b40 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 73d6314e..0e11e328 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 1ca71ea3..90f21a2f 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 57c810d1..094ef28b 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 aebc574d..d2e4641e 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 8ff22473..a89d0465 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 c9858977..0edfdfc1 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 4da8ff83..793c3764 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 534d65bd..f9458e72 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 5a3d4a95..dbabddb5 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 2127309e..3abfdaa7 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 dda80a92..43e3f0a6 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 d2071d28..e624c8ab 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 27d9c84e..90b1a623 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 ec496725..4a4af6ee 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 3612ce94..74707b93 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 ee877475..90aec385 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 457f2b99..45343a7e 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 f09ed381..92205b64 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 6107c893..ee8a97c3 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 7ebe831c..e8f8747f 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 018615e5..92c85eb4 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 868a4126..b90ecbb6 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 8d02c34f..04dac79d 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 e03afb0c..fd9a3ec0 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 bc3cd0c6..439b124e 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 4a38fa9b..4b322de3 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 0697f6d4..63cc1ba2 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 38f0dbb5..322592f0 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 9feae9d4..72f4a14d 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 ffcf1074..6cb781dc 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 679cb88a..74746b45 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 e6aae029..960fa65b 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 03fa39cb..2846a4f3 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 2d5f7add..49866ca7 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 b6c5d3b8..aef4fda9 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 6ffd7027..b2c69436 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 5a8f6745..917a4218 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 57bb23a8..1e393a69 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 7ac7678e..e3480b99 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 665b6037..e8d87712 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 1f0c5893..959c6fd9 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 710cbe5d..3f215b5a 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 3bda8796..8a5203d1 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 b7f1a365..74db9073 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 a7f03a32..3ac41c6b 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 e7c3af49..ea06ad77 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 654bda36..d9edf6e5 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 aa2e668b..26aca2c0 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 30a30499..39f13d2a 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 08a30138..676912cf 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 ec341ba7..b44eab77 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 d3a241e1..ba382529 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 cc77283b..ac83919f 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 6e95ee25..3f94d319 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 a66777b8..5324c327 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 5c1a9d8e..247c75b7 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 ecfe6caa..8baef34b 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 e5141215..e492e19b 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 23137443..dad9e593 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 2004a847..bd2f4d85 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 a29a3679..351ce33c 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 46b1e534..0f6836cb 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 2b3d3f72..b24f3adf 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 a559be94..f0bde701 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 88b7cd5f..5483755d 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 6635bff4..5c684ee7 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 b4e29317..3d843632 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 509cbd75..0b079731 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 c8428434..68fad4c2 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 d464e863..abda0427 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 392be10e..0b531845 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 b1ee6135..23496b2e 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 a1b78f2d..5aa07b69 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 30c03455..22451794 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 3313c228..02efe942 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 2bc0d92c..500fa25c 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 4dec9e6b..3e49999c 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 c869191f..c160c8a0 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 33eb1750..28b98fc6 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 16dbbf9a..312803a3 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 b4ccd8ab..737305db 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 567d7d99..7acb8119 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 12ae5e32..c2a173ce 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 c6036029..dbaaff47 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 3f40740e..3b5f00da 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 485bd1ae..43b5378a 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 a5468b01..01451fce 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 d812b81d..3f12f378 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 2768d667..e56cc074 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 1224dbe4..95e2346b 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 7a105724..29a4d4ec 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 1051e738..89308c41 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 e98c5edd..1d4c0ff3 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 459d02f9..5720a74e 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 bc55f91f..b37f6136 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 1304d822..91451951 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 e61c9547..d3e9fc9c 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 cd44fca7..ff932e3d 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 a25bc670..4eb56b2b 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 b2ed1841..215e6b08 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 2d007212..e30422ca 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 2353a9cf..ed577f1d 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 b3cae7a1..b7ccc8fb 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 ea0d10fd..064b311d 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 ed4733d6..695d1fd8 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 90910f7a..ba78ba4b 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 3522c99f..ceec9462 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 3beb654d..dcc0f686 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 152d612f..b1db52af 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 fbfefb27..d707d256 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 e4a67f55..14d0c72e 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 c0174b17..c897ab03 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 196cb7b3..cd6e6dbf 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 1518b6ab..652a06f9 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 04c881fb..bd0a4c56 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 d5482c91..235fb17d 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 838d16cb..46351070 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 85a27da9..b8f3e5ae 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 5f3c678d..0dd1d547 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 fbbb0a84..2c45c2de 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 212b253a..b29e7247 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 db6e8bd9..3fea9109 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 e63f7844..94f3a0bf 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 18a1b492..cf962d5b 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 3481ef45..0eb3309a 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 1c0c2487..df9202e3 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 a83fc717..c232064f 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 87b6c794..466919d8 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 f35d0118..2c93720f 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 588c3a30..876c3ecc 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 059462b1..493309e7 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 8aada19e..2a1292de 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 e022a5e2..7424c944 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 6c3b424f..b040da8c 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 a64ebaa7..84407930 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 24858c7d..32975ee1 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 4fe15586..d8dee58d 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 1ee525b1..5ebc274c 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 dfd80a04..65b49692 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 27ee0521..ad26d5c1 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 ac455b30..8aca2c04 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 0381f76c..cae26450 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 f9327f66..261bc03d 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 ec9aa162..ceadcdcd 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 94424c7b..a52c4941 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 c8bebdc8..f588375e 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 27171660..42acddc5 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 906326d8..3712d4c4 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 2c273007..acb08dd4 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 aa3aeb06..974b0a88 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 eb761571..28603c98 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 a41711e9..f0d94645 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 f3d767ee..df982efb 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 f0fefc1c..e4c4daee 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 4be13b1c..8201289e 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 880bd703..02e1ca4c 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 c7067021..e1752728 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 a7729f50..73fa4784 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 61bf0907..274b9c04 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 4590501d..64a23566 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 01d34dca..a16d163f 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 eea64990..c3f4faa5 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 740c162a..287d72db 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 8c965ca2..f6b8c724 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 5cd90d6f..8d23065a 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 ae512de3..f8c2f949 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 67851bb7..294189ba 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 c0977a1c..2ce316c2 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 55e13d2e..e44947be 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 47d0c50f..0628ca0a 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 a3d85eb5..3233935b 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 fe3c41af..8876d699 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 fbc73639..633a0021 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 75b4359a..798e03b8 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 e6750205..a9f7781f 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 8d6fa5d3..25ce4443 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 96db553e..39433d44 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 e9e3be4b..e6e9258c 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 fc815535..46cbad20 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 3b9dfea0..a9aef313 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 412a2993..629489b0 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 1ceaec83..badb79ad 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 790fa013..756c26a8 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 9c61b854..755f1d95 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 d5fb9441..ad616a54 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 2cf8330d..e744a350 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 44539a62..6e9630d0 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 da0ce750..96adb418 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 96b23603..b8f9dec7 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 c3d561d5..27ffa6fd 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 e1df200e..ed1970e0 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 bb5b6f26..223f7971 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 1929854e..26a64cb5 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 638a0bea..08d0d3c5 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 945c955c..20149a9d 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 6f09a685..5f3ff1bf 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 7340fbb3..c9384feb 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 57705ee8..3e0fdeca 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 351d567f..5885990f 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 46afe0e2..d8818268 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 4bdada0b..db9a0a7c 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 a604470d..36d887f7 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 f5b362c5..64356b13 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 00b6b4d3..61a70441 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 fa6b7f3f..63ae220d 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 a38728fd..13de081b 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 8b995734..17f94498 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 346f618d..9912c4b6 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 74683101..29d729fe 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 e150c15e..42499c7f 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 693c0249..7d151f81 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 80ad6059..46b471ea 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 0d8c7d6f..1804e960 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 3e7f7907..81e1f5fe 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 46d06ad1..bd469a59 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 480b5ca0..8a6fe505 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 bccbc57f..15905243 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 ba3d877f..6923fb17 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 99a13802..78899244 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 0b0c4440..4f857847 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 ee446259..0584e0e9 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 ad429e0c..93008c5f 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 b51e60d0..a2adf3e8 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 4e6eadcf..6f32e801 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 975272aa..01edfed1 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 1e609a91..1756fe0a 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 e3fc4176..fdaaa858 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 0187100e..8f190234 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 3f20b04d..0199bfe5 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 116578a3..eecb2d78 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 bb158e1a..c755a071 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 4f6fec11..7582f251 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 b0331dfa..6909c616 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 4fd02e67..9db593be 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 4cc74b89..413d7198 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 3e3b62c5..2a54df1c 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 1f8ed663..a7652fb5 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 6769e91a..4e311806 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 845a92b1..a5eec44f 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 32b77730..3aeb53f2 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 58df857c..a8e733cf 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 a5bdf21e..914eb657 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 ded429b3..80f26ce1 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 8c7d6efd..6fd78efe 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 7f4defa2..4ad30c85 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 e1b23179..0f47c7c3 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 36c6e42c..bfcd9abb 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 a44e2347..b43caa37 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 eb7f8ed9..b6dc91b2 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 657fc205..cce52ca5 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 e3edcadb..fc0d1a86 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 ca89bfd6..0ac24609 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 4f8da8b5..13a0c05b 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 e986d404..df54183d 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 e02067c6..cc075820 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 1438f22c..094bfa0b 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 d13c1390..1d40d204 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 2ba40385..76f4d0ea 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 5dc5770b..c9e45a41 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 cfa45fbd..5e406487 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 5a71fb70..8181243b 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 35538d06..775d20ac 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 ba71f685..e8b2040f 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 d57f6f77..f382d9b3 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 07faf27a..63af8891 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 e4bacc8c..d1609fd4 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 06cccbef..7ca63d0b 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 0f7c0b83..5216f67f 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 09387e86..c7ef8477 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 46395b3d..c16975e2 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 411c5090..4a222855 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 cab61db3..8d0281a3 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 a5350d2a..6e834794 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 841e946c..c6167f1d 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 7c1df949..f1f45d98 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 6a2a21e8..c01045b3 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 68f99041..60239475 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 5902e46c..5ba946c0 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 590c9338..9e2e7086 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 20f89c31..3ee0f6e4 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 d15cb689..e5b2483c 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 874f8cad..3b525be4 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 5d59f01f..872876c0 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 ef507654..fcadaceb 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 dfefd0c5..ceb30070 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 ae34fd87..b0aaa08b 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 7bb28050..4a570dde 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 2e3e35d4..d0f464dd 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 11d4680d..80df7dfe 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 13719a77..ec93e040 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 3bde4794..3d3adc5d 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 1f5636e8..ff114832 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 9b942851..cd2ed0e3 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 7361e2d8..db239cfe 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 f967074e..94926310 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 b0224254..e92d927d 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 816ffd22..327948ab 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 4dfa6d7d..7afd2c84 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 bbef59f5..0d61a800 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 eb2d3875..863c1685 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 b5718bbf..873ab527 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 9f3a8582..0cf48048 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 45442abe..9ccac429 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 6b8f95ce..7689e409 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 94a38d9e..5c38f698 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 0508bd5d..b14b9cb0 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 db113e3e..4ce5b44d 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 82723f11..e3474185 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 10091037..cd235790 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 f34696ae..31d58711 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 783d85b9..6daf8bf2 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 ed3e7b52..6d1938a9 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 238141af..c09c769c 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 ae2c9069..d162defd 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 4a12a8fd..434dca15 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 d679b101..76e2f036 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 7788e223..e183eed2 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 88c0f046..d889994f 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 41d9bc52..4c5440ee 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 f1ad854c..a10d7742 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 bad5efe5..bacbaa8a 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 fedb8a38..07f3d527 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 e23fb663..ad5764f8 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 afd8a95b..547836cf 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 db78ed65..368a6286 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 a18a2b88..b9a3529a 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 eac538cd..52e3f22a 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 33ebc0c5..1e6fe240 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 845b43e2..c5ba57fd 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 0d7e24b0..189c5f02 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 eeae72f7..08292ad3 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 211bf409..56ed1499 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 229bdbdb..3e39cdb7 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 f9f40bc0..69bc7b9b 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 438bf1c7..86e5a6e0 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 3dc927f0..c7d853b0 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 db25b059..5e3ad66d 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 3366521f..087af5b0 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 021115ac..df07db58 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 23e73d2a..497f0df2 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 0d518e88..e4b9aaed 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 53371f17..d9f99fcb 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 3160046e..5268e88c 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 8159c151..76a619d3 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 275be5d8..13a671f1 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 819449f1..5cbd92a3 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 8793b3ae..833003e9 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 53cefd09..9f61a02a 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 0ca0a8fe..b50ac5d1 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 092a43fb..0e4bc2f8 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 e2cb216d..cdb6f7e7 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 d70ee75f..32c6bae8 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 1d8314c3..b7fc2632 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 541a4dfa..33c1e881 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 6064525e..4492f92e 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 1abc6d5a..63533f5b 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 a314d7ba..1c49042c 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 58e9e802..adf4c76f 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 81921176..880f65ed 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 73eec471..c9f01f19 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 4fc51acd..bb7b100c 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 ca8b9982..2df807a8 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 25886172..eeccac1a 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 c9419ceb..c9d1d84b 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 1a3a1ce7..a46ed0bc 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 47d21502..8a928202 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 3d15625c..547e7839 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 bcf9a459..899db09d 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 6ceab1e9..98e198bf 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 306930be..51086ee3 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 5a9bbfed..1c39ab0c 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 55567308..9fa1563e 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 c3a8e7dc..34219299 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 04b984b8..bb498540 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 ec01f99a..a7be2f44 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 50947278..0fef7585 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 d068f0c0..662fa910 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 854a42af..5f6de1fb 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 db5f02d2..85820914 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 a7428ac2..350bca48 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 c2d5350d..aa1372c9 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 f2930acd..1a239b10 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 73f63945..b1112d84 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 b377ebea..b6202b16 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 323cb580..2af6534b 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 e7d9f68d..93a50d18 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 8c74dba6..57a75c45 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 c6622194..1d003ddc 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 b6c824ff..afe26709 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 55d46986..7dde2fed 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 e7a5cef4..d58d3c77 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 1ca56c25..759a1d50 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 d9ac8d1f..7070e6a0 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 ef8742b5..48f32620 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 7ef09d66..e75b690c 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 ed1a4feb..ddb82644 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 e90bd1ce..5c8d9965 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 44409a84..7b243102 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 88dd2266..8f0dd36d 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 a525771c..9ad1b721 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 7c4f540e..22271266 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 8a1586b5..358829fd 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 9d3565de..857f1321 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 58dafcae..aecded85 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 8fa70192..037bc958 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 0594486b..b3b565a8 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 fdc8143b..10ab6903 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 ecc16172..c0d2899d 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 061a0103..e4f6a1ca 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 96ec45a1..04eb80f3 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 e4d03093..8b4151fb 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 a4aaf66f..5ce90a4c 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 e1780378..a780c40f 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 1912a6b6..7f4f8fa8 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 b4bbc831..25968127 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 8e163d71..4298b638 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 ff5eccd4..dac042e1 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 6550adfb..9d640160 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 f067605c..9f4b943c 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 367c3331..7578233f 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 665fb0f1..176f0b96 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 4b7105d4..5673562b 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 317777f2..032b8689 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 503f3b27..0698570b 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 bc3edc8c..36a2a789 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 d9ff0ca7..9e5ad467 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 eda21f2b..36c17da1 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 e2107e2c..b3c09a28 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 ce16be29..cca41002 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 13fea5cc..1c7b17dc 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 d9ceafa1..c5692bed 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 90e65b1a..ffaa33cd 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 708a693e..edf36b5c 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 f528c5ee..2d8a528f 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 0b130c1b..3019c534 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 039a9078..c601d645 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 bb7c021c..5bc2f087 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 e03d84d5..d2f087fe 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 51aac8ad..586e5a10 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 0814ebcc..0e3d528f 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 c3fc7cb8..c6c5ab8c 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 4abf5354..ae9dd9b8 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 fec501b6..ea8b3ab7 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 7c5fee50..c5f51ffb 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 ed9195ee..a68ad6a1 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 62f06488..d75870bd 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 573ff5a1..1c8217fe 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 445ff1f9..6b98645d 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 a2e06350..4c39ea0a 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 83e9fbb2..4846e994 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 017bd418..6f84561c 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 b995ce4f..012bbf77 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 372dc373..9d6456a0 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 71814a2e..676a4cae 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 4030aa76..47b78a21 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 17cef171..bacb6d75 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 a2fce105..0f127267 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 e6ed74e2..b933812f 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 2a1b081a..e534098b 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 f74791c4..4533b628 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 f44763e2..63fef153 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 b5cbdb62..dc9d75ad 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 503ec2af..01c1b5bb 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 787b5268..426f95a0 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 528923db..99529a32 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 e545f3cb..3a1b2744 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 413bd512..c6855cfb 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 2a769479..9eff06fd 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 4eab8786..f28a5db6 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 6f194943..040388da 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 e20dcacc..317c7448 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 915182d5..573e426f 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 4b46fd6a..98d61a61 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 03bb3408..8dca86c7 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 fc310f58..0d29c1b5 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 9e238581..9cf838e5 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 2358c53b..40a87f7d 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 ad661d02..e3593ddc 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 819d9c0b..8c735c14 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 ed197b43..b819622f 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 805dc596..2d448187 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 36b21d68..760fca2d 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 8c1f30fb..ce54d8ff 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 325b213c..b14f6d55 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 8b3c4ac7..a0716ff6 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 a28a4e96..c269384d 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 d26604e7..edde5f9e 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 93e907a3..3c9caf3a 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 2fa3beec..b56c9520 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 e8988952..a1192a29 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 a8dac457..32bab9b4 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 1a0ffff5..2be575b1 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 e45853e3..6d7d622e 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 32209799..aea77ab2 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 e6bde2d2..b9bfd746 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 ee021292..dd0ac315 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 475fbeeb..3144b974 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 40173209..5f23404d 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 65b5013e..8ea5bbba 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 4d1c3aeb..00998364 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 c6730c85..1f3ff9be 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 796290a8..c06faf55 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 fb8a213b..21f47495 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 cd494dd9..f85ac1fa 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 45091001..6f031bb0 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 bb01ba86..cd330ae6 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 9b461430..74716433 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 339a0bc2..ceab8207 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 c5e42233..078417ca 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 24aba687..658c02ee 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 226b82a7..3ef041c7 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 f5318909..8e046d24 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 3809b979..8d9ed610 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 184766d7..1a7be19b 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 639bdad4..f278761c 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 a573703f..c72c9b0e 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 72ca1f1f..38275880 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 bbe9ab04..ae9f02f4 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 2ee2ec4d..0036f39a 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 f431a4e5..d88c7135 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 4e073f96..5c30a491 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 a7b58421..bdaed46f 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 2fd8efe1..75241f57 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 9a61a999..35e4d3bd 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 f756072c..48736d31 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 316d6bf0..1e3ff791 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 6f0de30c..ca8306f7 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 4d2b1346..e26f8a79 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 f13290fd..d90f49ab 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 b931f12b..b6fd894a 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 b6c397db..bfd19e5b 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 7ec13074..83870006 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 44d9b32a..4bde7c83 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 3fc31e2f..11279f50 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 ca7d3b28..feb3092f 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 6bfe73d4..2bd5decc 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 21c804e6..60b12ca4 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 26a6091c..fc1f77f4 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 53945906..04a0ae2e 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 6ba95fad..788b0380 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 88ee62f4..91ba1c76 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 1d06769d..c57ead21 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 fbb6c19f..12c65cb4 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 73595e73..4838a05b 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 a542b4cc..a99aaf69 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 2814a734..286d587e 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 2a064d04..9e959434 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 b8e798ba..8d257194 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 9a9461b9..1c5a9b92 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 8511583f..da74a4fe 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 3db9733b..10e0713f 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 bdeebfa5..46847b04 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 b9f4c2ce..c6005f4e 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 6ea9f891..02509bb7 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 87c072cd..7eb46798 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 3a5f39f2..8fd1c2e0 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 5c3a686c..aab42bc1 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 43b5d3b8..5aa34637 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 bc95b30f..e4726850 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 d4b16eb6..bc82835a 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 2efecba4..348655fd 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 76105c63..b316f013 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 84a35ac6..07ac0105 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 bea28cd9..f4b86606 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 04269d90..05e0656b 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 fd5399c6..3aa4b655 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 a3c846fc..4a689b6d 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 dbd2d84f..84aa2003 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 c4b766c5..220aaf0e 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 c5aaca5a..777e231a 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 75acd1e9..c15dfa46 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 c39e5ed9..6672e9f5 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 268eba07..c2dc8629 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 323ab47c..5452e660 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 638f3e9c..3f5c4621 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 eab04751..33fb8158 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 33145621..849c40d0 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 d8dbf32c..e9435abd 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 46c3b0d3..9514f6e3 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 d22ab921..127dca9f 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 99029305..e69fd58f 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 df67fd6e..f6b7363f 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 e7ccd231..9841a0f3 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 8e3592a2..88463c55 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 06ef8a28..3c5275e1 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 2e187c36..6457d859 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 de2c685a..cb26199e 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 273adb5d..f3a1bcb2 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 168be03a..038873bf 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 2bf31a85..f1c363c8 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 2933d552..3fe5521d 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 887e4c16..04614a56 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 f860d648..aff6911e 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 a68c7319..6d23dc68 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 6e208f99..72ed2955 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 2097273c..befd6e8d 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 5800eedd..16853ca8 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 563054f7..1fd455b8 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 c78d9532..5fb35e97 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 0389957a..aa86dfa1 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 3fdef4b9..d1548c0b 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 8419f528..6d56d271 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 5aaaa0af..55d06c94 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 00312a6c..e3730634 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 7faec84f..0f7ffabb 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 db6612dc..b70031d1 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 d27e37ba..f181725d 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 a376f743..0dbe5d85 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 dd0ae413..495ebe22 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 7a80f02e..fa3e54f9 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 5a19a7f2..0cc763b2 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 9ae781dd..d4d65f3a 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 3939a89d..0ce3a3b5 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 99a4967b..45193866 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 2c7cc1a8..07e43d5d 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 fd0c6c3d..dec50e29 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 cb97e4a2..474c2748 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 a52bcea6..89c21de6 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 814701b3..54f0a75f 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 e98e432c..737a5877 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 6fa7c3ba..5a924801 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 ac2acf33..06e09a79 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 f6d1f260..ae2deb6d 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 723dbced..7dd9ff90 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 9fd4d600..29da5612 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 f7baf555..ad5249b1 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 55816735..3657bdbd 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 c61f2939..15b2d8b5 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 dc60a2ef..be09eaa8 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 a3ba7aa8..7ddc31cd 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 6e79b5c5..79540fcd 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 41218954..ecaa90f7 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 aa807a6c..4ea74091 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 1b2bb758..c8280beb 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 8fd2cbee..55ef8689 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 0edb3999..5efb12a5 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 e398bfa7..72a94223 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 b868a1e2..61dfd09e 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 6c0dfa47..221c52be 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 c2716ff6..68728979 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 e096f351..5b2885c0 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 f4927e88..4eb0dfcd 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 95b2626e..68f959b4 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 b412417b..155dd30f 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 6706f696..ae8b36ac 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 5f75db0c..ae957c22 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 5197487d..0a0a689a 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 0d641869..f5b52b2c 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 b8501fde..d2543447 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 65b3773d..1f2fd056 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 d20070b4..7971cae3 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 d8b6f2b7..eaacbb0e 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 68d4107a..4313b0ff 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 1162777c..b01fa247 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 1e7ac40e..747a92de 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 54e48a33..de47c8c5 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 794b98f4..7a612240 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 fd5ac68f..d41654f7 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 45c35c6e..11f87c6b 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 c9c695a5..f62ea4f6 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 833da763..f7204fdf 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 a42dcd6c..3989222a 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 6cbe33bc..9e1e0087 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 4225031b..73ec706d 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 0a595ed1..49670f06 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 d3718aa7..25a8233b 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 f9414a7c..0e5f39d5 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 61085617..65b1c7a7 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 80857996..0c0f1da2 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 0e98c99e..b72325cb 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 29b6c5a2..f7d8e9f4 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 59349b5a..d72b6eb2 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 ae7a78ed..100194f6 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 eb18f1a4..4426435b 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 e14dc258..894dcb89 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 266163aa..61335713 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 a2a3a506..b146f93a 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 11d9a405..b6214ee4 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 f9f8c0f1..12cb6e7e 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 cf8f666f..133d66aa 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 f28e7235..5f205ebc 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 8a83f847..a5dd244d 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 aca55bf1..b71218f5 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 34582bb0..3021ac37 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 c9aecb0a..4611eb4d 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 31558886..42f95ba4 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 08c0ef77..0555dfdf 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 057a5a48..511053e0 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 fef74cae..c1c8705e 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 a3177ced..dc12cac5 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 913b8a22..349ba254 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 87ed0a14..033c2d8a 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 6e00a261..4516a867 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 07921e64..9dab9e10 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 9eb87b5c..fd59aab5 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 525ae35e..a3eb3035 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 5f6f68ba..87b32f20 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 fc4dbc10..f219f6ff 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 29d6cc6e..2948d07b 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 e206f9b9..2a7a77a5 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 b347deb9..d1cd0e09 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 86dcb206..b3b7b822 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 a6dad40e..8ac9bf16 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 b2bf12d1..7214a14c 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 5f0883aa..33557949 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 486db9a9..efa64a60 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 5d1b2159..a638ceff 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 e3dac741..22188ed2 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 f168a638..8d5ec27f 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 f1e89adb..1368378e 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 223a487a..66b7d1b3 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 c735c3a9..6245cf72 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 2e5309d0..7b9768f3 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 610beeb1..11727eb6 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 6a6d6d3a..e7a1c3fc 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 d6482ae9..ac4e5bb5 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 983c7c8e..08cb2ca2 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 53183f3b..3e05f471 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 866ee704..697b7adc 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 578cd150..8793b875 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 55454584..edb27273 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 eae1cd06..64bd62e6 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 4e0fa78d..b4a494cc 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 a0cae527..36aa1e34 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 e1c52a12..f7d982b4 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 adb9809e..3bdfba07 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 7f956ce3..9c47fb05 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 0c29076d..090cfba9 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 7a55dd9e..cfd2886e 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 c8ee8e9c..57d44959 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 2c631e31..918b52df 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 b5879e61..fd9280f8 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 abeae143..8caf1a04 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 e2ecefa6..1278a554 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 2b141c48..0a52113d 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 42169c6c..80eefc0f 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 4d107bc0..b3fdac6d 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 3b7b2314..a685b8e6 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 a3050039..be04cb00 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 18cfe82a..79d7ecd6 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 c7abe517..9ad32511 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 44d934dd..fd34016b 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 0e66ce7f..eb8bfd22 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 5638d489..c71c1309 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 8ac8b014..48e48fce 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 a012a1e1..7f763b07 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 2159fa86..c8857988 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 54657b2d..54743b4c 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 4d66371b..78316223 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 c5b0950f..4fc39d79 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 6c0f67b4..bd0a68a3 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 8465bc34..5b87cf0c 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 333ef0da..a1d0c5f1 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 c8d504cb..5a73ea21 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 dd55320a..6fc57520 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 bc63e009..5be636d1 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 8d508f2c..d847e662 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 97775b5b..2009553d 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 f1192b19..41c1dc0b 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 48073a97..10085fca 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 9af0c633..04ce09a0 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 9bb2c0eb..76189349 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 63afd038..ce283d37 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 8b4d08ff..4caf32d4 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 ab5e3828..c9847125 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 44923403..3bfcb090 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 a1112131..4f220b4b 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 b6d1de67..c9dd4cfd 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 37a96789..a3dbbf2b 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 11962583..6795b7f4 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 6bcf8b87..0f88c175 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 f1b19ead..9de93812 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 e9c15762..dd9ec866 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 6b73bd55..053940a5 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 36747f7c..1c1631eb 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 59b228bc..375329e4 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 d9aad583..48c155dd 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 470d18aa..012ae7c9 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 85a61e00..cdd103bf 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 01f2a4f4..45e2a90a 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 a71298ff..73d852ee 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 d32687d7..d477fa6b 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 72a73b2a..2b79d27b 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 69a84ae6..0067d7a8 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 2179d49d..f15cce85 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 9327500d..285d8db0 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 62ce1e1c..75008054 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 b028f0a0..b47c5a3d 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 25d07863..b71c94fa 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 50f4f6a3..ef4a7bea 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 e6718534..d5817f5d 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 cfce9973..6c9ba07a 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 1934c2c1..ab0a0000 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 9258b9cf..6247a3fe 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 ffdd9d8b..6d48aa17 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 05721bb6..f64f720b 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 1fa223af..50451fde 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 09488733..7cf904ad 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 94bc014b..e8f06e83 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 26ef4c34..457179f8 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 363268a9..9f43d1e5 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 077a4988..facabee4 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 cca770dd..7b9896b2 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 9c72496d..91d055a2 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 83421ef7..67439447 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 1eedf341..e3bebf08 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 eb22be0c..8e860207 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 3fe9a49a..e953f93f 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 62dfd04a..03ed0cfb 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 14347752..00bf20af 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 187f7734..3c2ea92b 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 48aae2df..e0e96697 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 9c95b05a..6ea8b7ad 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 3671666d..b2844f91 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 5491ad42..5df542db 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 144a6377..2f8b1f26 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 a609d255..71fc5977 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 3d86891c..924272ee 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 f551795f..0328d430 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 2edb2c91..165a8c88 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 ca235d9f..161dc36a 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 6fcb512a..03761559 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 8a59f20a..5d67aaa0 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 1bf0744e..b19ca188 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 6b905459..c7028863 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 32997386..233ff02c 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 6e2f8a72..bc0ac2f4 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 1f14a108..a24093a1 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 d3b7db7f..73dd428c 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 8fbcab73..a71b242d 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 f22c0884..da933e56 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 1f5832a2..cc2eb69e 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 3f52cb50..14000d97 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 4bc31b1e..0f64736f 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 f86a9f07..8cef5cab 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 8c682112..8aa772a1 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 5133b691..022bd42b 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 c057b192..7fc7e7d1 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 1f6c3d99..9bc04c16 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 03696846..185777ff 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 42939f85..bc751373 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 86511914..209bc365 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 a7816462..367f85b6 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 0c22d3ca..49725b5a 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 37d55b74..a924079c 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 52822883..4bb823a7 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 3de97c6e..1771a3f9 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 93cce4a2..0c303b8a 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 25c79517..47b6b601 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 e9a8ad0d..d50c1b23 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 4670e65e..3415ee22 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 5c0bafaf..d75955de 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 975369aa..51ef237e 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 e1afebfc..10979413 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 93e6f99e..dd229f75 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 be8d3f03..b5a03f28 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 58896f0b..fcbb3efe 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 43c528c9..078ae057 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 b19e90cb..299c8f38 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 f6161dd6..42f593ce 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 2408b763..f6ec6270 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 7d74ac34..02c3a5a1 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 b32644c9..1a1b256e 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 db988a09..03828a16 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 d456fc8d..fde8db6b 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 babb65a1..514583db 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 bcedd20a..d114c600 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 afbe8b73..92211424 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 97ab1b02..420ff3d5 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 7424cddc..9c458dc4 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 ec31f1d3..1996b78c 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 f7e4e3d8..80724826 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 569e402f..186f694a 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 33a29454..ca50f77c 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 98a903d2..2da1b418 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 dd8aa9d9..5d1153c3 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 d07af13a..bfe8ab23 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 1e94f0c2..eb145960 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 d72ca5d7..dbeeabb1 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 a77f95fd..be139801 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 a05a468b..bfdef89a 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 a0af422b..d16a1495 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 630bbc27..fdc856b1 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 3cf8f402..13bc8909 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 598d0a34..46725994 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 9b135428..173b7c9f 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 7573349b..a85ff91e 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 95b3eeba..0cf3e54b 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 1f113c0e..24d6174d 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 afca0fcf..76984d5c 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 73e58dd0..73d36719 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 9c529a8b..53d3c127 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 6ac35b8f..4e55fd78 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 a823bca0..53a0d300 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 ae5efba5..2dd06b54 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 b95bc6b2..3c48dc14 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 f1ab266d..db97d8d8 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 0684879d..e0571c31 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 8b675540..d7a11bc3 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 1c62edf4..0a6d45e6 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 51d59cf4..3992aa91 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 84fad44d..a5eb4332 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 96641b5b..a67b2733 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 48ca9418..8648cfd2 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 d70897b5..ce673eed 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 64ef9726..fe9e6a51 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 b142f7b8..4df889f3 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 eed4c233..cc445869 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 e5ffd379..e806b47d 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 b57fa495..ee3c0999 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 51ea831d..da5881c5 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 576d4116..62821cf4 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 679c30c5..709bdfe6 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 80c44cfb..ed59215d 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 ac809d11..9ada000d 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 128b68a7..ad98b5f4 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 838bb6df..6129aa7c 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 01d34645..fe3b2792 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 9cf8ad49..bd94f9cb 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 bf4bd8a9..d057f736 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 e6ad75e8..f13f85d2 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 34a5987a..040599af 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 b7bd8069..8f83c219 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 fafd5fd5..26b38ca1 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 e737d45c..0c151478 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 5f80abe1..54a0484b 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 db581ac9..2716d65f 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 d2f69b07..3b36bbb4 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 fabb6cd8..9bf6821e 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 8e261a0d..afb8e0d1 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 8ade349f..2236f739 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 b0170bc9..0b4dee7d 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 4ffb6cd5..63f3a489 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 56aa9bd7..4c60015f 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 cce30788..6c0e4baf 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 b4b9b9f8..5c85ade3 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 618ef5c1..cc0f07b6 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 221391c4..c487d6f9 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 dcf90ec9..9d4dba87 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 b5459f9d..8b55a50b 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 264f5a6e..bfeec6de 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 a0008825..4113d3ce 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 372bb041..28139c92 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 5e17889a..8354fcc1 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 b9253199..64c36cdc 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 27d867be..8a201a75 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 3664cb2c..e29925f7 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 214bb330..6adae8e0 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 647ace9f..f928eb21 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 4033d048..22a158e4 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 340d899a..7162ab87 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 8d308811..418bc59b 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 de716208..196287d4 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 e2c8ed27..727dfccb 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 0f24ac79..8fdc3211 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 36e48043..c03ce582 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 f80f8144..eed56191 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 31b0d35d..bd11540a 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 058afa84..8e3d50e6 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 f2e42b14..fa2ef56b 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 d42f4f7b..0a10161f 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 795f2302..0ac96041 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 315dfd1e..c4c51012 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 9d93b873..d9fd2421 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 982b2b84..b620e068 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 81a7d67f..3f42faa7 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 9091f5d4..2f0ebf6d 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 92b17a71..b5ba2568 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 a12b5992..c1635724 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 f982e29b..5a05d90d 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 49d796d0..37c0cc93 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 a336fe6c..fc53573a 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 fd26f329..1d2db940 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 148a0ac2..ce115c96 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 fe151737..8457560d 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 3d87d500..21ba6006 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 955cc76b..9380b2d7 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 27669c60..7098eba4 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 0a63efc6..5f4c7d0e 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 a7838fc0..597bcca6 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 b2e9c12b..c517df32 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 b1a27dbf..f77b47e8 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 45ce217c..005558c4 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 b9c9a554..4ee2653e 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 28b5ad1b..b2e80b29 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 805f9e94..a2bd914f 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 b94200cf..5aaa8ab1 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 e2cd286f..8db727ba 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 9a440570..e2ee9309 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 d28e5b92..bbd9741c 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 f912fa0e..e5908062 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 d6ac88e7..7372afb9 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 917cc794..1e5c1ee9 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 3490827c..4eedeeb1 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 090f4d9a..d261c5b0 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 da033658..450cef7e 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 46313ac2..d14958b2 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 5ab12bb8..4e4cb5ee 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 99491699..367b29a8 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 32121ba3..2ab3aabb 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 3aa43838..088b4a2c 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 33f6f781..0798d090 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 020cb358..297b4c3c 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 06eb23ed..67483ed9 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 ba7576fe..4a8c2aba 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 51feed4c..1bd60f12 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 d080ffb5..09c45107 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 64136633..ead90503 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 5e696988..ef7a911d 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 c4f9fa24..3abc14bc 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 ba7e33d2..52abc874 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 e3f44acb..e54bdafa 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 76ff9703..b2cfe1e4 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 857fed36..eac5ff10 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 963b8ee5..fe391ea0 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 e72f0b12..423b204e 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 0723e727..e1d18156 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 647a487a..4b96e45f 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 286d7913..24a0ebca 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 1392d03e..971eccbd 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 38c44788..79347b41 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 2006ba0f..57018f6e 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 39e2be33..9bee6c36 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 d59a7780..9adea778 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 b05f6cfe..d4e8d0bc 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 01fdd258..dc148e11 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 c754381e..bbf31441 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 83b0aede..ab910a12 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 e10e10bd..691bac7d 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 edc49d12..3919eece 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 9125950b..49465832 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 c2809492..4b88d51b 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 d47072e1..8d426df5 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 17e8117c..09255c63 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 ddf85250..4d20a325 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 688abf79..1683944e 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 5d1274f9..03fbbc47 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 d2afcb1a..4588df23 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 28e389fb..4c7485f3 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 f5d9b751..bc9a7d03 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 65482dc5..ae30a35b 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 e6680d44..f61d142c 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 92290ba9..6742cb46 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 49958006..d97c7f12 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 8ddd85e7..258650e2 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 39d4d26f..b52745db 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 8a22423d..c78df92e 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 fbf35fd9..cd788ecd 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 594eb34b..969810ee 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 1b7c545a..876cf7bc 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 1bec6db6..489a10d6 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 5d03652e..a223c835 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 f0d2e6bf..7a904163 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 9d314a6b..248b40e9 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 86892f8b..4c50ab1d 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 7d4bec46..175262c0 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 c3de4194..f6d229ca 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 b664a919..881398de 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 8aeb4bdb..64343cd0 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 dd337e7a..a1c68b2e 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 dfe5b76b..cba402bd 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 d75e8b31..d8f94716 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 84934a41..3d55d617 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 0cd1cdff..c5d7ef32 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 a88bfd85..8c736335 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 7d41a0f3..6bb28500 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 dd0ea475..d0d01be7 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 074d9c95..e410f918 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 f6994384..76d6441e 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 adc23eaf..965cd0d0 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 20c65477..bf0636cb 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 b1ad8161..a7053e0b 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 8f832ded..0a9af105 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 188ce575..22db1a9f 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 b5f23612..72419f73 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 97c98a99..2659d55f 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 7f6b6677..97658235 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 8cc94e90..875ae5b3 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 27e66190..b51e4388 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 df6e5537..098b1e79 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 b535c81e..d0f87b11 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 d236fca8..d450e95c 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 6f19ec5f..b5f436f7 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 45b1e342..edaa6af2 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 831b9290..fa3bf290 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 33758079..f3d4084f 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 0f083f83..ae87ce37 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 2768ceda..be74029f 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 0399250e..99e9841c 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 2fc5f00f..4beaadce 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 edc39d9d..687a3a97 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 090b690e..3a772b21 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 a53c1916..f2c623b7 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 7a537d51..65bdd11b 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 3d53ef83..d92b12a8 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 740c5a71..5aea7ffe 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 acae98b2..c6013c5c 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 1aa9436d..40b3674c 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 fd205744..5ac4b627 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 e732d3b7..d8c58a03 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 86a28ba1..584efd40 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 b9d3e7d6..6b949b85 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 cdd77bb6..d3815966 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 9aa47dbc..72a6c967 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 d3918d8e..634f5acb 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 365ae4a6..7612cb22 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 a9e8188e..6995ca4b 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 a5f35c86..2647e6d3 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 d80d03c3..bbbb7673 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 d8143cef..ccdb0721 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 f6360497..a34bf6bf 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 da65dbe3..e649ba62 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 8e7213ae..d1666fb6 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 eb438e0b..e361584b 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 bc514713..e7c3afb1 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 0d8bf25b..366af8bb 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 b8a84711..2a15071d 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 f7525b9a..b296de81 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 efbf1f9c..3593a24c 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 8e377f6b..eb3d14b8 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 d430fb74..c86e1212 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 82b8fae8..b000eaa6 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 b9ae2672..d1a951b8 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 5e313974..09b3b970 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 a5474dfc..63d4e08e 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 598e8f11..60729761 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 1650d98b..bbc3a8bc 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 31726293..1d919c95 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 dfc62212..5c41d67a 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 1ed0c5f3..5cb9b7c8 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 89364713..b6b61e40 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 428dac08..937c1b49 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 9e979b87..4f37dd1d 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 ced1090e..ee8bc782 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 b9f7b756..9fd0a0ef 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 780e8397..1d516a58 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 88ef375b..8470ee9a 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 3106d48e..781e716e 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 cf136bc2..0d3bff1f 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 fe01a17b..c8d9c8f9 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 69ba75da..991a3016 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 9aa453f7..de967dc9 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 c05c0db5..1873868f 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 445e98d1..90955de3 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 95361e28..570f0233 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 d3b28cab..471aed91 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 4e01ddc8..a85d7fe8 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 4f18aba8..3bff8dfa 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 541c576f..7811623a 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 3435ae1d..5b78e6ef 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 e2b0da47..6d646af9 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 6a5c4718..bcac52d9 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 604c04b4..38a5915d 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 48ddfa19..f50424d3 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 28b46669..99cbbe2d 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 770a0cc8..6e2eb4de 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 7f519bb7..dfb2475c 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 50b721f2..90cd1675 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 f25efa38..b17f17dd 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 0120c8ea..f9f93254 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 c4c681a5..34b0d4b2 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 20b109c7..f8856d65 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 ee611ea4..27e9553e 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 7e57e9d9..1210c6dc 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 c1d5cd24..81fac33c 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 dcd2b622..bf9a9b05 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 7b243c98..d5bea223 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 5552814a..24195a95 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 ae99d94f..215bb7fa 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 59d9a7ce..b7c6a8db 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 b651f70f..ae061a58 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 481ea6af..41ee55dd 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 8123272e..35856aed 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 91fd86b2..2da37b6b 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 05cd2646..13db3d54 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 67c5aec0..9eb853c8 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 9f1dddc6..bf0cfb9e 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 904c3c76..4833d0bd 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 3e802ed0..3bbe4b94 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 6cb012d7..9cd8a136 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 1cea909d..a5876345 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 46b8f750..97d95cf7 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 9c5fc461..dbde62f4 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 fadb415f..12b625c9 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 431bd7e1..b55cf251 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 e83bec97..034ac7b1 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 5c4eee1f..485f0569 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 6b64843b..4adce1cc 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 4c89efde..83d1e8ec 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 dfd29aa3..2c703405 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 12bbdc2c..476ae358 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 4019db67..19bb2ef5 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 ededc99b..a13ea70e 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 59a9d14f..b2a22601 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 c22ae3ea..107cb4a5 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 69995320..02525404 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 9f79daa9..89aecbb4 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 cd51d8ae..fd565695 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 1a4e1f30..72bea7c0 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 69101448..bf640ede 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 197acb55..d832fa3e 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 abd29fcc..3f843075 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 0fb3ca0e..851d26ec 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 4c44a8c4..2a24fa33 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 a8297eb2..6d43750f 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 db828b7d..62418c1c 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 782d6a83..cf0e525d 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 c0137a38..73b32fc4 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 46e7d77a..d01fc0c8 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 75600b8c..edd51fb8 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 03fee42b..c61a113c 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 c35751fb..cbc9c7fb 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 fba9610b..b4d565ca 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 dc0a0e60..e73e48cc 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 a31604a7..a4eb28a9 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 d4e9aaed..9fb04f7b 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 370913f6..aa271f32 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 c8be32e2..e1e96a3f 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 feefd888..d94b859f 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 a04f1f83..a97959f8 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 ddb9f987..5c208160 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 b55dbf11..f748aaa5 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 7241038d..f4100c45 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 bfbafd26..643db351 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 a840528a..f9043233 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 66900134..5c83593e 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 ada5f03a..428ff3e7 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 b67e1dae..9b618655 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 7a8cf490..cecb8015 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 6ce3a14d..b9bbdd5b 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 c1185b62..d21f9b04 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 03af869e..7875125d 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 93338bd7..dc959647 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 c9c5850c..7cffd846 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 90463ada..dba76ec1 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 2ba8d75a..22aba8ca 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 e41ac1ee..fede931c 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 6852f05e..2a3fae3c 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 cae81988..338f1084 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 6d3c88c9..9298f045 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 aab7b635..4434d0ae 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 f00cba05..77b35e95 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 40db47a5..77f0401e 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 d56644c7..40d3e32b 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 df56fa26..fefe01b3 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 cab3ba81..27f4794d 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 6e16839f..1042b9c9 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 3fb6c1db..e7f87571 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 28f08538..1400d817 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 dde8ede6..92f551df 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 3e8bb619..cd512d35 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 868ee1be..413870d6 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 abacf61b..367ef32a 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 85f1cd8c..bd55dcf9 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 6eea0eb4..f8dd9165 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 1561f157..8e443f8d 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 9c4739b9..b77181c4 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 eadef315..8e51f209 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 a0625753..666f1ad5 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 1769a5a5..d146591b 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 c3693955..11ad022d 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 c5a380cf..cf45d46c 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 ea2b1100..755d71d5 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 9e6a1d6d..b6023a98 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 3ff02af6..e9b821a7 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 f6162611..d556e90a 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 1f1aa93c..ea7f78f1 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 1fe15215..feb3f8d3 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 9aa0f083..359eeb3e 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 98dbb7d8..59c3b997 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 ab34ee5a..292132b5 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 6c10b872..a5757325 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 f9a64dcf..fcfdf821 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 8466d269..288c6a3d 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 eb1c0556..37ceee21 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 b9c9676c..d8c42ff1 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 aae7cdd3..cdf9cceb 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 92b6b091..62cc2cef 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 0a35d98c..cd5ca21d 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 b80225b9..be7bfb3c 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 3ce05c46..fdf5de90 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 1da085ec..97c96c0d 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 02795254..83847a22 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 11733d20..f371598f 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 bfbfa36e..68ba7eee 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 a1f4970b..97447bd6 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 19d67c76..dd787c1f 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 60c86a96..7bac3bb9 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 6fafd5ff..13ab2d3b 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 162a3ed6..f3505664 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 2b4a4e19..2245b191 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 a1f044d7..1d6900ec 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 9eae2b77..36e22183 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 5726872c..ee9efdf9 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 7d163392..4166fc06 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 892b3096..050b98e3 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 362469a2..e1213982 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 cf1671c7..9319b53c 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 b3171314..3e4f2c7b 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 255d7050..e9f6beed 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 cefce2e8..87e53887 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 92c813dd..207d6c03 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 4e51667e..267d5eea 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 b1a77d4d..e7e0004d 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 8862f68f..b1223516 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 23d8a6e4..ceb24a91 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 20220a61..d05ab7b1 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 33f56138..32d6bd4d 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 a27174f0..cc2efb23 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 fd016685..0d0b0822 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 f830646c..920f73d4 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 ca99e74b..71f6d9b8 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 7655d5a1..da97ef31 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 fadefbb3..9339c5ef 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 472136e7..502b8c8a 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 b2e0645f..e5fc1922 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 6b53c25c..f35f1790 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 e7e098d5..a6bc8ca0 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 a0fe8d19..ac5a434a 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 66f7e1ff..e12d6194 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 772f7253..6fd3fe49 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 10d85e64..0295e18e 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 c4e84e15..63a76e3f 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 e44094c9..a1c7f31a 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 72b24698..38889411 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 23f2b58a..170a44ce 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 6672d40b..aa713a78 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 275d39b3..f1e532a8 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 b74d2cd0..43927fab 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 e7d0329e..ad7ebee0 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 5e5f92a9..23335dfd 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 2a4bc18d..2d4800a5 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 b5e0107d..4165d7bf 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 85267ae1..d216b3de 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 092cc0c2..cc250f3f 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 b23cb09c..01bd6ac2 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 94d0e3aa..23eb8e76 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 59b69675..8d65476b 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 5b6bb748..46022675 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 ce22c3a3..427dbb18 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 948921ec..9bcfedcf 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 012ede2d..dd9150ff 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 259a6a37..da32aaf6 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 567f3240..957f50f4 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 6ed6720c..214bbd12 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 5dcc38ac..bba4e9b3 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 bb45e113..abe41ff4 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 58082780..1adabe02 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 e1bc3916..97dbb9ce 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 7098115b..b29f7243 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 55144718..8253b41e 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 bb4b5e46..0b72801b 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 793539e1..acd60d52 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 a8b52263..c4883c60 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 7e2a308f..288cfa07 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 da0b9835..755a3738 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 9ac684f6..ef45f305 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 6ae2208c..164ef368 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 8a23c35b..ce5a690e 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 4721f99c..21b9326f 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 7d58aeef..c10bd015 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 d496a768..026d51f0 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 6df5ea46..1685f0ef 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 a121bc3c..2e3a223c 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 88513114..6b253f91 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 a5ba60e4..d397ec2a 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 59b4d1f4..b37956ae 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 a5ba9be7..5e3c2099 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 722c53a3..f8d08a2f 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 e6aba09d..b18e7c91 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 e7cf4b56..5ed4ad5f 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 c2294cb7..3ff5b498 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 0cfe024a..684c6554 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 f29a2e07..b8400061 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 22891e7f..dd519196 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 bf8d62a5..a7583258 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 01f0177d..b50dba63 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 b59bd181..1c61169e 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 118133dd..69f06821 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 09a64d4f..3cd43b3b 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 bff237df..ad757e56 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 0cdd7c71..56473ea9 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 b3ac5136..d1ed2686 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 ba2d0e6c..ffe8905d 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 f370a16e..e4feb5db 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 ea1ad846..5caf198b 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 92311d9f..a0e10546 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 487b29e3..2f7d6114 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 8fecb494..3e872a70 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 514e2aad..feedd169 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 48dde7e6..3eedbe7b 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 177f564a..57640f66 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 2c58e337..c9b2a39e 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 cef98042..93be41bd 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 06743bf2..4f039a9a 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 456058b7..3c5bdbc8 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 3ee6f343..f82a9049 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 d60d6790..f3f10bb1 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 ae81eaea..2b277a70 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 4b3ee3a7..db166fff 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 aeae1cd3..3a3d1741 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 631186a6..7b7d8ac1 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 aa8957aa..95b00b3d 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 3beeb4c2..1c4ed7a0 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 b27a3f51..2b60dd81 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 bf59c2c6..8b5c5e06 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 79446870..f92101a9 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 162a5654..786ad2e3 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 23f2945c..58caa41e 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 7a33aac1..50f2b4ba 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 171dc6d3..6d7ebcee 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 e105aa3e..37c01925 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 e874c078..c6bb37de 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 e4d2ff4e..f2744c4e 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 476d206f..5988f76d 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 c163a6ac..8f441b8b 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 bbcf6369..819bce48 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 a3efcb52..0c87f098 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 dc8983ab..51fa8466 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 6d60bb19..e7d2672a 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 534fde61..a33bb0b5 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 12710b06..9cc7f264 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 0c7fe548..55b13f97 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 265ed0ec..80326922 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 6b298d39..a180f968 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 9750d15d..9d867fc4 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 5cf6f53b..cc794cac 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 ffcedf1d..acd36805 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 b510b7f3..8989cdf2 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 e9238751..8ce5fe36 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 82849324..c5eaeeee 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 213dc8f2..3e2c892f 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 ac41dedd..24c317ec 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 e7b40b85..de04f9d4 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 d871e4b9..47bbfa0b 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 64202667..e4b0deb2 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 0dd927d0..db5be84f 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 d69ee012..c8e2911a 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 bc22ad2e..0a5caad5 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 e74e870c..36706ab5 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 f473b92d..de50a6c9 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 6b81834b..b7387e6f 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 cc1f71ec..ab1020a0 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 a531fc31..e20a0718 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 7f54df38..0e782759 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 11205618..3ffe0426 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 5fbcf891..872a1476 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 0cc51a76..25408c6c 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 96addc25..75e2b7a9 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 a4de51b5..c9c1fd37 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 6af52c03..6596ae0e 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 9ad61c17..64f8d31f 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 fbf5bea7..83978b68 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 10f394b1..a7f0b0b9 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 8fae6d6f..7bbae210 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 088f93ba..a0c45d87 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 3205bcae..e9b07643 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 f82dc062..3e879808 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 a43098db..7212747d 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 c5991f12..ac2bed0b 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 f9f9d4a4..85afc3ed 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 9e9a0af1..ec48a53d 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 bd63c1ad..91df13b9 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 535654c4..56e842e4 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 362590fc..b28a204b 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 39c21949..bb481584 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 2acd021f..e876433d 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 38812d71..731a27f5 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 28ef97e9..e826bf08 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 5f587887..efed60ab 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 1639fa3c..7001e8c3 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 cb1d345a..eb7f35f0 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 8189e10b..11bca55f 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 f59973b8..04e6e530 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 d1137711..00f2c754 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 dc0ef759..d4e0cc2b 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 a3fee495..4b990632 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 65476846..3fbdee31 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 11832c2c..81002ced 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 58a68356..f7f5ea1e 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 03965cbd..1d5c267c 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 e6c1977d..e976f401 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 480fadf0..c4de7eda 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 0b382a2e..44310af0 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 97f98e2d..a5a9f71b 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 27850b5a..42046fcb 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 02dc303d..51500025 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 3b9da89b..0863c83c 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 cd1cae46..86d97dd1 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 621863c0..5d82b14c 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 8be364d0..b40e6128 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 9f629ba8..334c56eb 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 886878bf..659ba3aa 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 22c630f4..16712c05 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 804d8406..14af2390 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 6f133cff..2ec0fd70 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 73afabba..affbfb85 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 9bc3b885..01119f20 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 88f15aae..fa7896c4 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 a52743ba..157ec9f3 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 cd7ccf60..6efc530e 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 16c00e0f..64f9d2b1 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 c169a02f..91e8e39b 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 c765f78d..37cca547 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 5a3c3f57..8f9508c9 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 259d2507..ed0bd1c9 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 b60f57ab..54de67c6 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 d7bef176..752e80aa 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 95bd2bf7..29341f59 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 16d54938..f36d55e7 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 73847f2b..948602cb 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 7a1bceee..a56ec9fd 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 e0bac756..636eaf52 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 bad8bba4..3e26730f 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 ffa8239e..ca79ec88 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 33c25e55..bc604a1b 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 ad4fb833..d4a90f22 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 96df07b7..b697ba5f 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 5f28629b..6c9884c1 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 d7682bda..41b5ed61 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 11ce10af..978fe35f 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 4f2078ca..0b3d3032 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 18a323a6..0b6d4dd1 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 673ba4de..b9744412 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 384030e2..6c28aaf2 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 2322df70..62574f01 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 711b2833..02a54b49 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 ba38c52f..fdd08a66 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 c7ab43ea..e75f1857 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 33bbca32..2a2d4566 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 ce1def2c..ed670415 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 8f32201b..24da5aa1 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 56c033ed..fb56cfcf 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 8137690b..81f634b3 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 57d8246c..0fa545cd 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 140df976..cfb5d2b0 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 2dd6aa14..c5dff2e9 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 1800ca04..808a3b98 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 2a2973d8..abc42f4c 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 74e8c71f..8cde73c4 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 70d65915..9534c36e 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 67a2642f..b013af26 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 b31b1163..0c2e4bab 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 a174fb5b..0f8f203c 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 ef56103b..60e3f519 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 50e38a5a..8f1b1bc9 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 e974e792..419cb44f 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 315c4df7..a0648e9f 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 cc0921da..3dd41907 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 598468a0..b92d5c10 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 18c3fdb5..a0a7ad16 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 4e525dbe..d75c15be 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 261cfa34..2608a6ab 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 05fc279e..21a14c8b 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 08836ede..904b71f4 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 71b278af..4e293969 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 a571684d..9adff5f2 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 87c8d3c2..4094aea8 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 532a07f4..982bbe63 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 c28c8152..bde96a4a 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 c89be2f3..db48351a 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 07ea4313..8304429b 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 538d9728..c7e25820 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 d00413fa..e35e38a1 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 c353ee88..fb5bf9c7 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 6f22d085..f3e6febc 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 d65e22fd..bb334900 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 b53d00e9..89d9e537 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 2a343fa1..9aa66bd1 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 89bd05d7..454c79e9 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 266e2d63..2f271309 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 2addac4b..9063511a 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 9958ca6f..6c0b856c 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 0ffd9f78..14e80b4d 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 ca4480e6..9d3b55c4 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 921c89e6..2a9b7014 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 4d269954..42f2d11f 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 458c9d81..091d59b4 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 76789054..b398b911 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 72024a1b..cb67eef4 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 1230c90a..f6a63bb3 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 ccf2a64a..c1f6a038 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 ce540d0e..f2fc22ad 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 d907222b..2becaa24 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 938b0652..6f76bb37 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 61dafc2d..5ad19a94 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 010374f1..3303a616 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 a3c62939..b6bcfead 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 f2d73f24..8cec529c 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 80e45652..df4ec804 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 ff2a8155..5d1a4297 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 72e1921a..4139e43b 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 808aa106..01e3dce5 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 c5fe3908..1fc8cd50 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 0b97fd79..27c9a37d 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 54c4dbbb..13e57a1e 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 7c958b42..eda1f5af 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 a56e55dd..3dbf7c23 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 cbf022a8..3c96a5fb 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 27fc334e..17174167 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 47480ef1..e8d0aed0 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 c32aa41b..a760bf33 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 12d2d3a4..c3c66227 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 62e73f6f..3f8bca77 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 b23d3ece..85a4d5aa 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 b27df9af..95004e7e 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 9e0500c0..519349dd 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 d97b4a3d..8d390760 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 f64da5ce..7f3bcd97 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 c44c5ffe..65794c8f 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 fc9ec501..04797d8b 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 7f118dc3..eaaa3308 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 7ed5cef4..86e10b54 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 f3b69802..8f22b50a 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 2d80fde0..0504258d 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 1d04a63f..55602e07 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 c1515295..b977e575 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 bd1e0421..bce4ede6 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 5712d3cf..ae409ccf 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 aeb47f5a..0989b3d5 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 06188bed..6d439624 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 283d88b0..72e025a8 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 abbdaf2e..4b44611b 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 663c165e..9a97f666 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 c1f35c66..90ea26c2 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 5eb5a551..c9ac5b2d 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 e8a849d0..f86afff2 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 87f39043..0bde972c 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 30f651c0..7044fe45 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 c21d55e1..af32647c 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 c1c2eac4..76ebc21d 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 9819ea0e..ac1cbae1 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 a06f0179..f273f586 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 e1494a1d..da8ede4b 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 0b9b42dd..f16c2ab6 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 ea372680..e8ed1fe5 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 04709465..8a15c838 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 3f7656f5..46faf4ce 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 5402d54a..b162d47b 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 21e6a233..5d94ff34 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 1cdcfce0..c949156c 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 421b07e2..9cd881fd 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 68113241..87550470 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 33012329..f59d868e 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 df882b0d..054d6dc2 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 b25899a0..f801bb4e 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 b353e58d..eed294e8 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 3f5b0740..90dc96d9 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 00000000..cb97b60a --- /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 00000000..a4f5338b --- /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 00000000..10876a71 --- /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 d1d08a3e..138b1179 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 33af52bb..ab6f1dde 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 4d7aa8dd..abbe0ebc 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 9f64460d..31cb356a 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 15f21902..b2f7f2ee 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 57332c66..7711f057 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 fcb3579f..71a38dc1 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 63640b85..c60cfa41 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 2f27aa50..f8f0edf8 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 d8a051e5..2083b423 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 00000000..fa919342 --- /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 dbe1d02a..2b49b9c5 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 097c8d24..febdc7e1 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 82be8de2..37cfc805 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 8771e01b..d3448c14 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 be56a067..c08c430f 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 c53aff90..755e240e 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 25aef47b..bfa65281 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 1e2370a5..d2b54cd6 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}));