diff --git a/examples/printargs.c b/examples/printargs.c index 0f23705b..5cad82cb 100644 --- a/examples/printargs.c +++ b/examples/printargs.c @@ -54,7 +54,7 @@ int main(int argc, char *argv[], char **envp) { unsigned long val; char fmt[64], **env; printf("\nArguments:\n"); - for (i = 0; i < g_argc; ++i) { + for (i = 0; i < __argc; ++i) { printf(" ☼ %s\n", argv[i]); } printf("\nEnvironment:\n"); diff --git a/libc/calls/getauxval.c b/libc/calls/getauxval.c index 4b4ab9d5..7368fa11 100644 --- a/libc/calls/getauxval.c +++ b/libc/calls/getauxval.c @@ -32,22 +32,14 @@ * @asyncsignalsafe */ unsigned long getauxval(unsigned long at) { - unsigned long res = 0; - if (at != -1) { - if (!IsWindows()) { - if (!g_auxv) return 0; - for (const unsigned long *ap = g_auxv; *ap; ap += 2) { - if (ap[0] == at) { - res = ap[1]; - break; - } - } - } else { - /* TODO(jart): GetProcessImageFileName */ - } - if (res == 0 && at == AT_EXECFN) { - res = (uintptr_t)program_invocation_name; + unsigned long res, *ap; + for (ap = __auxv; ap[0]; ap += 2) { + if (at == ap[0]) { + return ap[1]; } } - return res; + if (at == AT_EXECFN) { + return (intptr_t)__argv[0]; + } + return 0; } diff --git a/libc/calls/setrlimit.c b/libc/calls/setrlimit.c index 4a767132..fd219839 100644 --- a/libc/calls/setrlimit.c +++ b/libc/calls/setrlimit.c @@ -30,7 +30,7 @@ * @see libc/sysv/consts.sh */ int setrlimit(int resource, const struct rlimit *rlim) { - if (resource == -1) return einval(); + if (resource == 127) return einval(); if (!IsWindows()) { return sys_setrlimit(resource, rlim); } else { diff --git a/libc/fmt/strerror_r.c b/libc/fmt/strerror_r.c index 8a5ca7e8..65555e69 100644 --- a/libc/fmt/strerror_r.c +++ b/libc/fmt/strerror_r.c @@ -318,7 +318,7 @@ int strerror_r(int err, char *buf, size_t size) { const char *s; char16_t buf16[100]; int winstate, sysvstate; - if (err == -1 || IsTiny()) { + if (!err || IsTiny()) { s = "?"; } else { s = firstnonnull(geterrname(err), "?"); diff --git a/libc/log/checkfail.c b/libc/log/checkfail.c index 8e5a010e..d22d6110 100644 --- a/libc/log/checkfail.c +++ b/libc/log/checkfail.c @@ -72,11 +72,11 @@ relegated void __check_fail(const char *suffix, const char *opstr, } (dprintf)(STDERR_FILENO, "\t%s\r\n\t%s%s%s%s\r\n", strerror(lasterr), SUBTLE, - getauxval(AT_EXECFN), g_argc > 1 ? " \\" : "", RESET); + getauxval(AT_EXECFN), __argc > 1 ? " \\" : "", RESET); - for (i = 1; i < g_argc; ++i) { - (dprintf)(STDERR_FILENO, "\t\t%s%s\r\n", g_argv[i], - i < g_argc - 1 ? " \\" : ""); + for (i = 1; i < __argc; ++i) { + (dprintf)(STDERR_FILENO, "\t\t%s%s\r\n", __argv[i], + i < __argc - 1 ? " \\" : ""); } if (!IsTiny() && lasterr == ENOMEM) { diff --git a/libc/log/oncrash.c b/libc/log/oncrash.c index 9a184d78..5aa01ad9 100644 --- a/libc/log/oncrash.c +++ b/libc/log/oncrash.c @@ -180,8 +180,8 @@ relegated static void ShowCrashReport(int err, int fd, int sig, write(fd, "\r\n", 2); ShowMemoryMappings(fd); write(fd, "\r\n", 2); - for (i = 0; i < g_argc; ++i) { - write(fd, g_argv[i], strlen(g_argv[i])); + for (i = 0; i < __argc; ++i) { + write(fd, __argv[i], strlen(__argv[i])); write(fd, " ", 1); } write(fd, "\r\n", 2); diff --git a/libc/mem/putenv.c b/libc/mem/putenv.c index 53e7a961..429f7ee4 100644 --- a/libc/mem/putenv.c +++ b/libc/mem/putenv.c @@ -25,9 +25,24 @@ #define MAX_VARS 512 +static bool once; + +static void PutEnvInit(void) { + char **pin, **pout; + pin = environ; + pout = malloc(sizeof(char *) * MAX_VARS); + environ = pout; + while (*pin) *pout++ = strdup(*pin++); + *pout = NULL; +} + int PutEnvImpl(char *s, bool overwrite) { char *p; unsigned i, namelen; + if (!once) { + PutEnvInit(); + once = true; + } p = strchr(s, '='); if (!p) goto fail; namelen = p + 1 - s; @@ -58,14 +73,3 @@ fail: int putenv(char *string) { return PutEnvImpl(strdup(string), true); } - -textstartup static void putenv_init(void) { - char **pin, **pout; - pin = environ; - pout = malloc(sizeof(char *) * MAX_VARS); - environ = pout; - while (*pin) *pout++ = strdup(*pin++); - *pout = NULL; -} - -const void *const putenv_ctor[] initarray = {putenv_init}; diff --git a/libc/nexgen32e/g_argv.S b/libc/nexgen32e/g_argv.S index f8103e33..1a58218a 100644 --- a/libc/nexgen32e/g_argv.S +++ b/libc/nexgen32e/g_argv.S @@ -19,13 +19,13 @@ #include "libc/macros.h" #include "libc/notice.inc" - .initbss 300,_init_g_argv -g_argv: .quad 0 - .endobj g_argv,globl,hidden + .initbss 300,_init___argv +/ Global variable holding _start(argv) parameter. +__argv: .quad 0 + .endobj __argv,globl .previous - .init.start 300,_init_g_argv + .init.start 300,_init___argv mov %r13,%rax stosq - .init.end 300,_init_g_argv - .source __FILE__ + .init.end 300,_init___argv diff --git a/libc/nexgen32e/g_auxv.S b/libc/nexgen32e/g_auxv.S index fa4b6663..bdab0d28 100644 --- a/libc/nexgen32e/g_auxv.S +++ b/libc/nexgen32e/g_auxv.S @@ -17,14 +17,15 @@ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ #include "libc/macros.h" +#include "libc/notice.inc" - .initbss 300,_init_g_auxv -g_auxv: .quad 0 - .endobj g_auxv,globl,hidden + .initbss 300,_init___auxv +/ Global variable holding _start(auxv) parameter. +__auxv: .quad 0 + .endobj __auxv,globl .previous - .init.start 300,_init_g_auxv + .init.start 300,_init___auxv mov %r15,%rax stosq - .init.end 300,_init_g_auxv - .source __FILE__ + .init.end 300,_init___auxv diff --git a/libc/runtime/fork-nt.c b/libc/runtime/fork-nt.c index 88b83697..a1b8ad79 100644 --- a/libc/runtime/fork-nt.c +++ b/libc/runtime/fork-nt.c @@ -141,7 +141,7 @@ textwindows int sys_fork_nt(void) { startinfo.hStdOutput = g_fds.p[1].handle; startinfo.hStdError = g_fds.p[2].handle; GetModuleFileNameA(0, exe, ARRAYLEN(exe)); - if (ntspawn(exe, g_argv, environ, forkvar, &kNtIsInheritable, NULL, true, + if (ntspawn(exe, __argv, environ, forkvar, &kNtIsInheritable, NULL, true, 0, NULL, &startinfo, &procinfo) != -1) { CloseHandle(reader); CloseHandle(procinfo.hThread); diff --git a/libc/runtime/g_argc.S b/libc/runtime/g_argc.S index 124d6dfa..ea087312 100644 --- a/libc/runtime/g_argc.S +++ b/libc/runtime/g_argc.S @@ -17,14 +17,15 @@ │ PERFORMANCE OF THIS SOFTWARE. │ ╚─────────────────────────────────────────────────────────────────────────────*/ #include "libc/macros.h" -.source __FILE__ +#include "libc/notice.inc" - .initbss 300,_init_g_argc -g_argc: .quad 0 - .endobj g_argc,globl,hidden + .initbss 300,_init___argc +/ Global variable holding _start(argc) parameter. +__argc: .quad 0 + .endobj __argc,globl .previous - .init.start 300,_init_g_argc + .init.start 300,_init___argc mov %r12,%rax stosq - .init.end 300,_init_g_argc + .init.end 300,_init___argc diff --git a/libc/runtime/runtime.h b/libc/runtime/runtime.h index f4b482f9..f342f434 100644 --- a/libc/runtime/runtime.h +++ b/libc/runtime/runtime.h @@ -8,10 +8,10 @@ COSMOPOLITAN_C_START_ typedef long jmp_buf[8] forcealign(CACHELINE); -extern int g_argc; /* CRT */ -extern char **g_argv; /* CRT */ +extern int __argc; /* CRT */ +extern char **__argv; /* CRT */ extern char **environ; /* CRT */ -extern unsigned long *g_auxv; /* CRT */ +extern unsigned long *__auxv; /* CRT */ extern char *program_invocation_name; /* RII */ extern char *program_invocation_short_name; /* RII */ extern uint64_t g_syscount; /* RII */ diff --git a/libc/runtime/winmain.greg.c b/libc/runtime/winmain.greg.c index b4b5516a..bed26c14 100644 --- a/libc/runtime/winmain.greg.c +++ b/libc/runtime/winmain.greg.c @@ -41,8 +41,12 @@ #include "libc/runtime/memtrack.h" #include "libc/runtime/runtime.h" #include "libc/sock/internal.h" -#include "libc/sysv/consts/map.h" -#include "libc/sysv/consts/prot.h" + +#define MAP_ANONYMOUS 32 +#define MAP_PRIVATE 2 +#define PROT_EXEC 4 +#define PROT_READ 1 +#define PROT_WRITE 2 /* * TODO: Why can't we allocate addresses above 4GB on Windows 7 x64? @@ -51,7 +55,8 @@ struct WinArgs { char *argv[4096]; - char *envp[4096]; + char *envp[4092]; + intptr_t auxv[2][2]; char argblock[ARG_MAX]; char envblock[ARG_MAX]; }; @@ -100,7 +105,6 @@ static noasan textwindows wontreturn void WinMainNew(void) { size_t size; int i, count; uint64_t addr; - long auxv[1][2]; struct WinArgs *wa; const char16_t *env16; extern char os asm("__hostos"); @@ -120,18 +124,23 @@ static noasan textwindows wontreturn void WinMainNew(void) { _mmi.p[0].flags = MAP_PRIVATE | MAP_ANONYMOUS; _mmi.i = pushpop(1L); wa = (struct WinArgs *)(addr + size - sizeof(struct WinArgs)); - count = GetDosArgv(GetCommandLine(), wa->argblock, ARG_MAX, wa->argv, 4096); + count = GetDosArgv(GetCommandLine(), wa->argblock, ARRAYLEN(wa->argblock), + wa->argv, ARRAYLEN(wa->argv)); for (i = 0; wa->argv[0][i]; ++i) { if (wa->argv[0][i] == '\\') { wa->argv[0][i] = '/'; } } env16 = GetEnvironmentStrings(); - GetDosEnviron(env16, wa->envblock, ARG_MAX, wa->envp, 4096); + GetDosEnviron(env16, wa->envblock, ARRAYLEN(wa->envblock), wa->envp, + ARRAYLEN(wa->envp)); FreeEnvironmentStrings(env16); - auxv[0][0] = pushpop(0L); - auxv[0][1] = pushpop(0L); - _jmpstack((char *)addr + STACKSIZE, cosmo, count, wa->argv, wa->envp, auxv); + wa->auxv[1][0] = pushpop(0L); + wa->auxv[1][1] = pushpop(0L); + wa->auxv[0][0] = (intptr_t)wa->argv[0]; + wa->auxv[0][1] = pushpop(31L); + _jmpstack((char *)addr + STACKSIZE, cosmo, count, wa->argv, wa->envp, + wa->auxv); } /** diff --git a/libc/sysv/consts.sh b/libc/sysv/consts.sh index a7a1d152..e672e684 100755 --- a/libc/sysv/consts.sh +++ b/libc/sysv/consts.sh @@ -58,15 +58,15 @@ syscon errno ESPIPE 29 29 29 29 29 25 # unix consensus & kNtErro 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 EDOM 33 33 33 33 33 0 # bsd consensus +syscon errno ERANGE 34 34 34 34 34 0 # 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 ENOLCK 37 77 77 77 77 0 # 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 ENOMSG 42 91 83 90 83 0 +syscon errno EIDRM 43 90 82 89 82 0 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 @@ -98,64 +98,64 @@ syscon errno EHOSTUNREACH 113 65 65 65 65 0x2751 # bsd consensus 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 ECHRNG 44 0 0 0 0 0 # bsd consensus +syscon errno EL2NSYNC 45 0 0 0 0 0 # bsd consensus +syscon errno EL3HLT 46 0 0 0 0 0 # bsd consensus +syscon errno EL3RST 47 0 0 0 0 0 # bsd consensus +syscon errno ELNRNG 48 0 0 0 0 0 # bsd consensus +syscon errno EUNATCH 49 0 0 0 0 0 # bsd consensus +syscon errno ENOCSI 50 0 0 0 0 0 # bsd consensus +syscon errno EL2HLT 51 0 0 0 0 0 # bsd consensus +syscon errno EBADE 52 0 0 0 0 0 # bsd consensus +syscon errno EBADR 53 0 0 0 0 0 # bsd consensus +syscon errno EXFULL 54 0 0 0 0 0 # bsd consensus +syscon errno ENOANO 55 0 0 0 0 0 # bsd consensus +syscon errno EBADRQC 56 0 0 0 0 0 # bsd consensus +syscon errno EBADSLT 57 0 0 0 0 0 # bsd consensus +syscon errno EBFONT 59 0 0 0 0 0 # bsd consensus +syscon errno ENOSTR 60 99 0 0 91 0 +syscon errno ENODATA 61 96 0 0 89 0 +syscon errno ETIME 62 101 0 0 92 0 +syscon errno ENOSR 63 98 0 0 90 0 +syscon errno ENONET 64 0 0 0 0 0 # bsd consensus +syscon errno ENOPKG 65 0 0 0 0 0 # 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 ENOLINK 67 97 91 0 95 0 +syscon errno EADV 68 0 0 0 0 0 # bsd consensus +syscon errno ESRMNT 69 0 0 0 0 0 # bsd consensus +syscon errno ECOMM 70 0 0 0 0 0 # bsd consensus +syscon errno EPROTO 71 100 92 95 96 0 +syscon errno EMULTIHOP 72 95 90 0 94 0 +syscon errno EDOTDOT 73 0 0 0 0 0 # bsd consensus +syscon errno EBADMSG 74 94 89 92 88 0 +syscon errno EOVERFLOW 75 84 84 87 84 0 +syscon errno ENOTUNIQ 76 0 0 0 0 0 # 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 +syscon errno EREMCHG 78 0 0 0 0 0 # bsd consensus +syscon errno ELIBACC 79 0 0 0 0 0 # bsd consensus +syscon errno ELIBBAD 80 0 0 0 0 0 # bsd consensus +syscon errno ELIBSCN 81 0 0 0 0 0 # bsd consensus +syscon errno ELIBMAX 82 0 0 0 0 0 # bsd consensus +syscon errno ELIBEXEC 83 0 0 0 0 0 # bsd consensus +syscon errno EILSEQ 84 92 86 84 85 0 +syscon errno ERESTART 85 0 0 0 -3 0 # bsd consensus +syscon errno ESTRPIPE 86 0 0 0 0 0 # bsd consensus +syscon errno EUCLEAN 117 0 0 0 0 0 # bsd consensus +syscon errno ENOTNAM 118 0 0 0 0 0 # bsd consensus +syscon errno ENAVAIL 119 0 0 0 0 0 # bsd consensus +syscon errno EISNAM 120 0 0 0 0 0 # bsd consensus +syscon errno EREMOTEIO 121 0 0 0 0 0 # bsd consensus +syscon errno ENOMEDIUM 123 0 0 85 85 0 +syscon errno EMEDIUMTYPE 124 0 0 86 86 0 +syscon errno ECANCELED 125 89 85 88 87 0 +syscon errno ENOKEY 126 0 0 0 0 0 # bsd consensus +syscon errno EKEYEXPIRED 127 0 0 0 0 0 # bsd consensus +syscon errno EKEYREVOKED 128 0 0 0 0 0 # bsd consensus +syscon errno EKEYREJECTED 129 0 0 0 0 0 # bsd consensus +syscon errno EOWNERDEAD 130 105 96 94 97 0 +syscon errno ENOTRECOVERABLE 131 104 95 93 98 0 +syscon errno ERFKILL 132 0 0 0 0 0 # bsd consensus +syscon errno EHWPOISON 133 0 0 0 0 0 # bsd consensus # signals # @@ -531,15 +531,15 @@ syscon sigact SA_ONESHOT 0x80000000 0 0 0 0 0 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_PROCESS_CPUTIME_ID 2 0 15 2 0x40000000 0 +syscon clock CLOCK_THREAD_CPUTIME_ID 3 0 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 +syscon clock CLOCK_REALTIME_COARSE 5 0 0 0 0 0 # bsd consensus +syscon clock CLOCK_MONOTONIC_COARSE 6 0 0 0 0 0 # bsd consensus +syscon clock CLOCK_BOOTTIME 7 0 0 6 6 0 +syscon clock CLOCK_REALTIME_ALARM 8 0 0 0 0 0 # bsd consensus +syscon clock CLOCK_BOOTTIME_ALARM 9 0 0 0 0 0 # bsd consensus +syscon clock CLOCK_TAI 11 0 0 0 0 0 # bsd consensus # epoll # @@ -571,7 +571,7 @@ syscon epoll EPOLLET 0x80000000 0x80000000 0x80000000 0x80000000 0x80000 # # 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_REUSEADDR 2 4 4 4 4 0 # 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 @@ -584,7 +584,7 @@ syscon so SO_SNDBUF 7 0x1001 0x1001 0x1001 0x1001 0x1001 # bsd co 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_EXCLUSIVEADDRUSE 0 0 0 0 0 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 @@ -1544,22 +1544,22 @@ 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 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 rlim RLIMIT_CPU 0 0 0 0 0 127 # unix consensus +syscon rlim RLIMIT_FSIZE 1 1 1 1 1 127 # unix consensus +syscon rlim RLIMIT_DATA 2 2 2 2 2 127 # unix consensus +syscon rlim RLIMIT_STACK 3 3 3 3 3 127 # unix consensus +syscon rlim RLIMIT_CORE 4 4 4 4 4 127 # unix consensus +syscon rlim RLIMIT_RSS 5 5 5 5 5 127 # unix consensus +syscon rlim RLIMIT_NPROC 6 7 7 7 7 127 # bsd consensus +syscon rlim RLIMIT_NOFILE 7 8 8 8 8 127 # bsd consensus +syscon rlim RLIMIT_MEMLOCK 8 6 6 6 6 127 # bsd consensus +syscon rlim RLIMIT_AS 9 5 10 127 127 127 +syscon rlim RLIMIT_LOCKS 10 127 127 127 127 127 # bsd consensus +syscon rlim RLIMIT_SIGPENDING 11 127 127 127 127 127 # bsd consensus +syscon rlim RLIMIT_MSGQUEUE 12 127 127 127 127 127 # bsd consensus +syscon rlim RLIMIT_NICE 13 127 127 127 127 127 # bsd consensus +syscon rlim RLIMIT_RTPRIO 14 127 127 127 127 127 # bsd consensus +syscon rlim RLIMIT_NLIMITS 16 127 127 127 127 127 # bsd consensus syscon misc TCFLSH 0x540b 0 0 0 0 0 syscon misc TCIFLUSH 0 1 1 1 1 0 # bsd consensus @@ -1673,17 +1673,17 @@ syscon sock SOCK_NONBLOCK 0x0800 0x0800 0x20000000 0x4000 0x20000000 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 -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 prsnlty ADDR_COMPAT_LAYOUT 0x0200000 0 0 0 0 0 # linux only +syscon prsnlty READ_IMPLIES_EXEC 0x0400000 0 0 0 0 0 # linux only +syscon prsnlty ADDR_LIMIT_3GB 0x8000000 0 0 0 0 0 # linux only +syscon prsnlty FDPIC_FUNCPTRS 0x0080000 0 0 0 0 0 # linux only +syscon prsnlty STICKY_TIMEOUTS 0x4000000 0 0 0 0 0 # linux only +syscon prsnlty MMAP_PAGE_ZERO 0x0100000 0 0 0 0 0 # linux only +syscon prsnlty ADDR_LIMIT_32BIT 0x0800000 0 0 0 0 0 # linux only +syscon prsnlty WHOLE_SECONDS 0x2000000 0 0 0 0 0 # linux only +syscon prsnlty ADDR_NO_RANDOMIZE 0x0040000 0 0 0 0 0 # linux only +syscon prsnlty SHORT_INODE 0x1000000 0 0 0 0 0 # linux only +syscon prsnlty UNAME26 0x0020000 0 0 0 0 0 # linux only syscon misc INADDR_ANY 0 0 0 0 0 0 # consensus syscon misc INADDR_BROADCAST 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff 0xffffffff # consensus @@ -2384,9 +2384,9 @@ syscon misc ERA_T_FMT 0x020031 48 48 0 0 0 # = TIOCSETA → About 3,110 results (0.41 seconds) # # 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 TCGETS 0x5401 0x40487413 0x402c7413 0x402c7413 0x402c7413 0 # Gets console settings; tcgetattr(tty, argp) → ioctl(tty, TCGETS, struct termios *argp); polyfilled NT +syscon compat TIOCGETA 0x5401 0x40487413 0x402c7413 0x402c7413 0x402c7413 0 # Gets console settings; = tcgetattr(tty, struct termios *argp) +#syscon compat TCGETA 0x5405 0 0 0 0 0 # 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 @@ -2401,53 +2401,53 @@ syscon compat TIOCSETAF 0x5404 0x80487416 0x802c7416 0x802c7416 0x802c74 #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 TIOCOUTQ 0x5411 0x40047473 0x40047473 0x40047473 0x40047473 0 # get # bytes queued in TTY's output buffer ioctl(tty, TIOCSWINSZ, const struct winsize *argp) +syscon termios TIOCCBRK 0x5428 0x2000747a 0x2000747a 0x2000747a 0x2000747a 0 # boop +syscon termios TIOCCONS 0x541d 0x80047462 0x80047462 0x80047462 0x80047462 0 # boop +syscon termios TIOCGETD 0x5424 0x4004741a 0x4004741a 0x4004741a 0x4004741a 0 # boop +syscon termios TIOCGPGRP 0x540f 0x40047477 0x40047477 0x40047477 0x40047477 0 # boop +syscon termios TIOCNOTTY 0x5422 0x20007471 0x20007471 0x20007471 0x20007471 0 # boop +syscon termios TIOCNXCL 0x540d 0x2000740e 0x2000740e 0x2000740e 0x2000740e 0 # boop +syscon termios TIOCSBRK 0x5427 0x2000747b 0x2000747b 0x2000747b 0x2000747b 0 # boop +syscon termios TIOCSCTTY 0x540e 0x20007461 0x20007461 0x20007461 0x20007461 0 # boop +syscon termios TIOCSETD 0x5423 0x8004741b 0x8004741b 0x8004741b 0x8004741b 0 # boop +syscon termios TIOCSIG 0x40045436 0x2000745f 0x2004745f 0x8004745f 0x8004745f 0 # boop +syscon termios TIOCSPGRP 0x5410 0x80047476 0x80047476 0x80047476 0x80047476 0 # boop +syscon termios TIOCSTI 0x5412 0x80017472 0x80017472 0 0 0 # boop +syscon termios TIOCGPTN 0x80045430 0 0x4004740f 0 0 0 # boop +syscon termios TIOCGSID 0x5429 0 0x40047463 0x40047463 0x40047463 0 # boop +syscon termios TABLDISC 0 0x3 0 0x3 0x3 0 # boop +syscon termios SLIPDISC 0 0x4 0x4 0x4 0x4 0 # boop +syscon termios PPPDISC 0 0x5 0x5 0x5 0x5 0 # boop +syscon termios TIOCDRAIN 0 0x2000745e 0x2000745e 0x2000745e 0x2000745e 0 # boop +syscon termios TIOCSTAT 0 0x20007465 0x20007465 0x20007465 0x20007465 0 # boop +syscon termios TIOCSTART 0 0x2000746e 0x2000746e 0x2000746e 0x2000746e 0 # boop +syscon termios TIOCCDTR 0 0x20007478 0x20007478 0x20007478 0x20007478 0 # boop +syscon termios TIOCSDTR 0 0x20007479 0x20007479 0x20007479 0x20007479 0 # boop +syscon termios TIOCFLUSH 0 0x80047410 0x80047410 0x80047410 0x80047410 0 # boop +syscon termios TIOCEXT 0 0x80047460 0x80047460 0x80047460 0x80047460 0 # boop +syscon termios TIOCGDRAINWAIT 0 0x40047456 0x40047456 0 0 0 # boop +syscon termios TIOCTIMESTAMP 0 0x40107459 0x40107459 0 0 0 # boop +syscon termios TIOCSDRAINWAIT 0 0x80047457 0x80047457 0 0 0 # boop +syscon termios TIOCREMOTE 0 0x80047469 0 0x80047469 0x80047469 0 # boop +syscon termios TTYDISC 0 0 0 0 0 0 # boop +syscon termios TIOCFLAG_SOFTCAR 0 0 0 0x1 0x1 0 # boop +syscon termios TIOCFLAG_PPS 0 0 0 0x10 0x10 0 # boop +syscon termios TIOCFLAG_CLOCAL 0 0 0 0x2 0x2 0 # boop +syscon termios TIOCCHKVERAUTH 0 0 0 0x2000741e 0x2000741e 0 # boop +syscon termios TIOCGFLAGS 0 0 0 0x4004745d 0x4004745d 0 # boop +syscon termios TIOCGTSTAMP 0 0 0 0x4010745b 0x4010745b 0 # boop +syscon termios STRIPDISC 0 0 0 0x6 0x6 0 # boop +syscon termios NMEADISC 0 0 0 0x7 0x7 0 # boop +syscon termios TIOCUCNTL_CBRK 0 0 0 0x7a 0x7a 0 # boop +syscon termios TIOCFLAG_MDMBUF 0 0 0 0x8 0x8 0 # boop +syscon termios TIOCSETVERAUTH 0 0 0 0x8004741c 0x8004741c 0 # boop +syscon termios TIOCSFLAGS 0 0 0 0x8004745c 0x8004745c 0 # boop +syscon termios TIOCSTSTAMP 0 0 0 0x8008745a 0x8008745a 0 # boop +syscon termios ENDRUNDISC 0 0 0 0x9 0x9 0 # boop +syscon termios TIOCPTMASTER 0 0 0x2000741c 0 0 0 # boop +syscon termios NETGRAPHDISC 0 0 0x6 0 0 0 # boop +syscon termios H4DISC 0 0 0x7 0 0 0 # boop 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) @@ -2750,771 +2750,771 @@ syscon misc YESSTR 0x050002 54 54 46 46 0 # System Call Numbers. # # 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 0x154 -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 0x014 -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 0x128 -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 0x018 -1 -syscon nr __NR_getgid 0x0068 0x200002f 0x002f 0x002f 0x02f -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 0x0ca -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 +syscon nr __NR_exit 0x003c 0x2000001 0x0001 0x0001 0x001 0xfff +syscon nr __NR_exit_group 0x00e7 0x2000001 0x0001 0x0001 0x001 0xfff +syscon nr __NR_read 0x0000 0x2000003 0x0003 0x0003 0x003 0xfff +syscon nr __NR_write 0x0001 0x2000004 0x0004 0x0004 0x004 0xfff +syscon nr __NR_open 0x0002 0x2000005 0x0005 0x0005 0x005 0xfff +syscon nr __NR_close 0x0003 0x2000006 0x0006 0x0006 0x006 0xfff +syscon nr __NR_stat 0x0004 0x2000152 0xfff 0x0026 0x1b7 0xfff +syscon nr __NR_fstat 0x0005 0x2000153 0x0227 0x0035 0x1b8 0xfff +syscon nr __NR_lstat 0x0006 0x2000154 0x0028 0x0028 0x1b9 0xfff +syscon nr __NR_poll 0x0007 0x20000e6 0x00d1 0x00fc 0x0d1 0xfff +syscon nr __NR_ppoll 0x010f 0xfff 0x0221 0x006d 0xfff 0xfff +syscon nr __NR_lseek 0x0008 0x20000c7 0x01de 0x00c7 0x0c7 0xfff +syscon nr __NR_mmap 0x0009 0x20000c5 0x01dd 0x00c5 0x0c5 0xfff +syscon nr __NR_msync 0x001a 0x2000041 0x0041 0x0100 0x115 0xfff +syscon nr __NR_mprotect 0x000a 0x200004a 0x004a 0x004a 0x04a 0xfff +syscon nr __NR_munmap 0x000b 0x2000049 0x0049 0x0049 0x049 0xfff +syscon nr __NR_sigaction 0x000d 0x200002e 0x01a0 0x002e 0x154 0xfff +syscon nr __NR_sigprocmask 0x000e 0x2000030 0x0154 0x0030 0x125 0xfff +syscon nr __NR_ioctl 0x0010 0x2000036 0x0036 0x0036 0x036 0xfff +syscon nr __NR_pread 0x0011 0x2000099 0x01db 0x00ad 0x0ad 0xfff +syscon nr __NR_pwrite 0x0012 0x200009a 0x01dc 0x00ae 0x0ae 0xfff +syscon nr __NR_readv 0x0013 0x2000078 0x0078 0x0078 0x078 0xfff +syscon nr __NR_writev 0x0014 0x2000079 0x0079 0x0079 0x079 0xfff +syscon nr __NR_access 0x0015 0x2000021 0x0021 0x0021 0x021 0xfff +syscon nr __NR_pipe 0x0016 0x200002a 0x021e 0x0107 0x02a 0xfff +syscon nr __NR_select 0x0017 0x200005d 0x005d 0x0047 0x1a1 0xfff +syscon nr __NR_pselect 0xfff 0x200018a 0x020a 0x006e 0x1b4 0xfff +syscon nr __NR_pselect6 0x010e 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sched_yield 0x0018 0x010003c 0x014b 0x012a 0x15e 0xfff +syscon nr __NR_mremap 0x0019 0xfff 0xfff 0xfff 0x19b 0xfff +syscon nr __NR_mincore 0x001b 0x200004e 0x004e 0x004e 0x04e 0xfff +syscon nr __NR_madvise 0x001c 0x200004b 0x004b 0x004b 0x04b 0xfff +syscon nr __NR_shmget 0x001d 0x2000109 0x00e7 0x0121 0x0e7 0xfff +syscon nr __NR_shmat 0x001e 0x2000106 0x00e4 0x00e4 0x0e4 0xfff +syscon nr __NR_shmctl 0x001f 0x2000107 0x0200 0x0128 0x1bb 0xfff +syscon nr __NR_dup 0x0020 0x2000029 0x0029 0x0029 0x029 0xfff +syscon nr __NR_dup2 0x0021 0x200005a 0x005a 0x005a 0x05a 0xfff +syscon nr __NR_pause 0x0022 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_nanosleep 0x0023 0xfff 0x00f0 0x005b 0x1ae 0xfff +syscon nr __NR_getitimer 0x0024 0x2000056 0x0056 0x0046 0x1aa 0xfff +syscon nr __NR_setitimer 0x0026 0x2000053 0x0053 0x0045 0x1a9 0xfff +syscon nr __NR_alarm 0x0025 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getpid 0x0027 0x2000014 0x0014 0x0014 0x014 0xfff +syscon nr __NR_sendfile 0x0028 0x2000151 0x0189 0xfff 0xfff 0xfff +syscon nr __NR_socket 0x0029 0x2000061 0x0061 0x0061 0x18a 0xfff +syscon nr __NR_connect 0x002a 0x2000062 0x0062 0x0062 0x062 0xfff +syscon nr __NR_accept 0x002b 0x200001e 0x0063 0x001e 0x01e 0xfff +syscon nr __NR_sendto 0x002c 0x2000085 0x0085 0x0085 0x085 0xfff +syscon nr __NR_recvfrom 0x002d 0x200001d 0x001d 0x001d 0x01d 0xfff +syscon nr __NR_sendmsg 0x002e 0x200001c 0x001c 0x001c 0x01c 0xfff +syscon nr __NR_recvmsg 0x002f 0x200001b 0x001b 0x001b 0x01b 0xfff +syscon nr __NR_shutdown 0x0030 0x2000086 0x0086 0x0086 0x086 0xfff +syscon nr __NR_bind 0x0031 0x2000068 0x0068 0x0068 0x068 0xfff +syscon nr __NR_listen 0x0032 0x200006a 0x006a 0x006a 0x06a 0xfff +syscon nr __NR_getsockname 0x0033 0x2000020 0x0020 0x0020 0x020 0xfff +syscon nr __NR_getpeername 0x0034 0x200001f 0x008d 0x001f 0x01f 0xfff +syscon nr __NR_socketpair 0x0035 0x2000087 0x0087 0x0087 0x087 0xfff +syscon nr __NR_setsockopt 0x0036 0x2000069 0x0069 0x0069 0x069 0xfff +syscon nr __NR_getsockopt 0x0037 0x2000076 0x0076 0x0076 0x076 0xfff +syscon nr __NR_fork 0x0039 0x2000002 0x0002 0x0002 0x002 0xfff +syscon nr __NR_vfork 0x003a 0x2000042 0x0042 0x0042 0x042 0xfff +syscon nr __NR_posix_spawn 0xfff 0x20000f4 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_execve 0x003b 0x200003b 0x003b 0x003b 0x03b 0xfff # DING DING DING DING DING +syscon nr __NR_wait4 0x003d 0x2000007 0x0007 0x000b 0x1c1 0xfff +syscon nr __NR_kill 0x003e 0x2000025 0x0025 0x007a 0x025 0xfff +syscon nr __NR_killpg 0xfff 0xfff 0x0092 0xfff 0xfff 0xfff +syscon nr __NR_clone 0x0038 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_tkill 0x00c8 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_futex 0x00ca 0xfff 0xfff 0x0053 0xfff 0xfff +syscon nr __NR_set_robust_list 0x0111 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_get_robust_list 0x0112 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_uname 0x003f 0xfff 0x00a4 0xfff 0xfff 0xfff +syscon nr __NR_semget 0x0040 0x20000ff 0x00dd 0x00dd 0x0dd 0xfff +syscon nr __NR_semop 0x0041 0x2000100 0x00de 0x0122 0x0de 0xfff +syscon nr __NR_semctl 0x0042 0x20000fe 0x01fe 0x0127 0xfff 0xfff +syscon nr __NR_shmdt 0x0043 0x2000108 0x00e6 0x00e6 0x0e6 0xfff +syscon nr __NR_msgget 0x0044 0x2000103 0x00e1 0x00e1 0x0e1 0xfff +syscon nr __NR_msgsnd 0x0045 0x2000104 0x00e2 0x00e2 0x0e2 0xfff +syscon nr __NR_msgrcv 0x0046 0x2000105 0x00e3 0x00e3 0x0e3 0xfff +syscon nr __NR_msgctl 0x0047 0x2000102 0x01ff 0x0129 0x1bc 0xfff +syscon nr __NR_fcntl 0x0048 0x200005c 0x005c 0x005c 0x05c 0xfff +syscon nr __NR_flock 0x0049 0x2000083 0x0083 0x0083 0x083 0xfff +syscon nr __NR_fsync 0x004a 0x200005f 0x005f 0x005f 0x05f 0xfff +syscon nr __NR_fdatasync 0x004b 0x20000bb 0x0226 0x005f 0x0f1 0xfff +syscon nr __NR_truncate 0x004c 0x20000c8 0x01df 0x00c8 0x0c8 0xfff +syscon nr __NR_ftruncate 0x004d 0x20000c9 0x01e0 0x00c9 0x0c9 0xfff +syscon nr __NR_getcwd 0x004f 0xfff 0x0146 0x0130 0x128 0xfff +syscon nr __NR_chdir 0x0050 0x200000c 0x000c 0x000c 0x00c 0xfff +syscon nr __NR_fchdir 0x0051 0x200000d 0x000d 0x000d 0x00d 0xfff +syscon nr __NR_rename 0x0052 0x2000080 0x0080 0x0080 0x080 0xfff +syscon nr __NR_mkdir 0x0053 0x2000088 0x0088 0x0088 0x088 0xfff +syscon nr __NR_rmdir 0x0054 0x2000089 0x0089 0x0089 0x089 0xfff +syscon nr __NR_creat 0x0055 0xfff 0x0008 0xfff 0xfff 0xfff +syscon nr __NR_link 0x0056 0x2000009 0x0009 0x0009 0x009 0xfff +syscon nr __NR_unlink 0x0057 0x200000a 0x000a 0x000a 0x00a 0xfff +syscon nr __NR_symlink 0x0058 0x2000039 0x0039 0x0039 0x039 0xfff +syscon nr __NR_readlink 0x0059 0x200003a 0x003a 0x003a 0x03a 0xfff +syscon nr __NR_chmod 0x005a 0x200000f 0x000f 0x000f 0x00f 0xfff +syscon nr __NR_fchmod 0x005b 0x200007c 0x007c 0x007c 0x07c 0xfff +syscon nr __NR_chown 0x005c 0x2000010 0x0010 0x0010 0x010 0xfff +syscon nr __NR_fchown 0x005d 0x200007b 0x007b 0x007b 0x07b 0xfff +syscon nr __NR_lchown 0x005e 0x200016c 0x00fe 0x00fe 0x113 0xfff +syscon nr __NR_umask 0x005f 0x200003c 0x003c 0x003c 0x03c 0xfff +syscon nr __NR_gettimeofday 0x0060 0x2000074 0x0074 0x0043 0x1a2 0xfff +syscon nr __NR_getrlimit 0x0061 0x20000c2 0x00c2 0x00c2 0x0c2 0xfff +syscon nr __NR_getrusage 0x0062 0x2000075 0x0075 0x0013 0x1bd 0xfff +syscon nr __NR_sysinfo 0x0063 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_times 0x0064 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ptrace 0x0065 0x200001a 0x001a 0x001a 0x01a 0xfff +syscon nr __NR_syslog 0x0067 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getuid 0x0066 0x2000018 0x0018 0x0018 0x018 0xfff +syscon nr __NR_getgid 0x0068 0x200002f 0x002f 0x002f 0x02f 0xfff +syscon nr __NR_getppid 0x006e 0x2000027 0x0027 0x0027 0xfff 0xfff +syscon nr __NR_getpgrp 0x006f 0x2000051 0x0051 0x0051 0x051 0xfff +syscon nr __NR_setsid 0x0070 0x2000093 0x0093 0x0093 0x093 0xfff +syscon nr __NR_getsid 0x007c 0x2000136 0x0136 0x00ff 0x11e 0xfff +syscon nr __NR_getpgid 0x0079 0x2000097 0x00cf 0x00cf 0x0cf 0xfff +syscon nr __NR_setpgid 0x006d 0x2000052 0x0052 0x0052 0x052 0xfff +syscon nr __NR_geteuid 0x006b 0x2000019 0x0019 0x0019 0xfff 0xfff +syscon nr __NR_getegid 0x006c 0x200002b 0x002b 0x002b 0xfff 0xfff +syscon nr __NR_getgroups 0x0073 0x200004f 0x004f 0x004f 0x04f 0xfff +syscon nr __NR_setgroups 0x0074 0x2000050 0x0050 0x0050 0x050 0xfff +syscon nr __NR_setreuid 0x0071 0x200007e 0x007e 0x007e 0x07e 0xfff +syscon nr __NR_setregid 0x0072 0x200007f 0x007f 0x007f 0x07f 0xfff +syscon nr __NR_setuid 0x0069 0x2000017 0x0017 0x0017 0x017 0xfff +syscon nr __NR_setgid 0x006a 0x20000b5 0x00b5 0x00b5 0x0b5 0xfff +syscon nr __NR_setresuid 0x0075 0xfff 0x0137 0x011a 0xfff 0xfff +syscon nr __NR_setresgid 0x0077 0xfff 0x0138 0x011c 0xfff 0xfff +syscon nr __NR_getresuid 0x0076 0xfff 0x0168 0x0119 0xfff 0xfff +syscon nr __NR_getresgid 0x0078 0xfff 0x0169 0x011b 0xfff 0xfff +syscon nr __NR_sigpending 0x007f 0x2000034 0x0034 0x0034 0x124 0xfff +syscon nr __NR_sigsuspend 0x0082 0x200006f 0x0155 0x006f 0x126 0xfff +syscon nr __NR_sigaltstack 0x0083 0x2000035 0x0035 0x0120 0x119 0xfff +syscon nr __NR_mknod 0x0085 0x200000e 0x000e 0x000e 0x1c2 0xfff +syscon nr __NR_mknodat 0x0103 0xfff 0x22ff 0x0140 0x1cc 0xfff +syscon nr __NR_mkfifo 0xfff 0x2000084 0x0084 0x0084 0x084 0xfff +syscon nr __NR_mkfifoat 0xfff 0xfff 0x01f1 0x013f 0x1cb 0xfff +syscon nr __NR_statfs 0x0089 0x2000159 0x022b 0x003f 0xfff 0xfff +syscon nr __NR_fstatfs 0x008a 0x200015a 0x022c 0x0040 0xfff 0xfff +syscon nr __NR_getpriority 0x008c 0x2000064 0x0064 0x0064 0x064 0xfff +syscon nr __NR_setpriority 0x008d 0x2000060 0x0060 0x0060 0x060 0xfff +syscon nr __NR_mlock 0x0095 0x20000cb 0x00cb 0x00cb 0x0cb 0xfff +syscon nr __NR_munlock 0x0096 0x20000cc 0x00cc 0x00cc 0x0cc 0xfff +syscon nr __NR_mlockall 0x0097 0x2000144 0x0144 0x010f 0x0f2 0xfff +syscon nr __NR_munlockall 0x0098 0x2000145 0x0145 0x0110 0x0f3 0xfff +syscon nr __NR_setrlimit 0x00a0 0x20000c3 0x00c3 0x00c3 0x0c3 0xfff +syscon nr __NR_chroot 0x00a1 0x200003d 0x003d 0x003d 0x03d 0xfff +syscon nr __NR_sync 0x00a2 0x2000024 0x0024 0x0024 0xfff 0xfff +syscon nr __NR_acct 0x00a3 0x2000033 0x0033 0x0033 0x033 0xfff +syscon nr __NR_settimeofday 0x00a4 0x200007a 0x007a 0x0044 0x1a3 0xfff +syscon nr __NR_mount 0x00a5 0x20000a7 0x0015 0x0015 0x19a 0xfff +syscon nr __NR_reboot 0x00a9 0x2000037 0x0037 0x0037 0x0d0 0xfff +syscon nr __NR_quotactl 0x00b3 0x20000a5 0x0094 0x0094 0xfff 0xfff +syscon nr __NR_setfsuid 0x007a 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setfsgid 0x007b 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_capget 0x007d 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_capset 0x007e 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sigtimedwait 0x0080 0xfff 0x0159 0xfff 0xfff 0xfff +syscon nr __NR_rt_sigqueueinfo 0x0081 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_personality 0x0087 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ustat 0x0088 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sysfs 0x008b 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sched_setparam 0x008e 0xfff 0x0147 0xfff 0xfff 0xfff +syscon nr __NR_sched_getparam 0x008f 0xfff 0x0148 0xfff 0xfff 0xfff +syscon nr __NR_sched_setscheduler 0x0090 0xfff 0x0149 0xfff 0xfff 0xfff +syscon nr __NR_sched_getscheduler 0x0091 0xfff 0x014a 0xfff 0xfff 0xfff +syscon nr __NR_sched_get_priority_max 0x0092 0xfff 0x014c 0xfff 0xfff 0xfff +syscon nr __NR_sched_get_priority_min 0x0093 0xfff 0x014d 0xfff 0xfff 0xfff +syscon nr __NR_sched_rr_get_interval 0x0094 0xfff 0x014e 0xfff 0xfff 0xfff +syscon nr __NR_vhangup 0x0099 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_modify_ldt 0x009a 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pivot_root 0x009b 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR__sysctl 0x009c 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_prctl 0x009d 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_arch_prctl 0x009e 0xfff 0x00a5 0x00a5 0xfff 0xfff +syscon nr __NR_adjtimex 0x009f 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_umount2 0x00a6 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_swapon 0x00a7 0x2000055 0x0055 0xfff 0xfff 0xfff +syscon nr __NR_swapoff 0x00a8 0xfff 0x01a8 0xfff 0xfff 0xfff +syscon nr __NR_sethostname 0x00aa 0xfff 0x0058 0xfff 0xfff 0xfff +syscon nr __NR_setdomainname 0x00ab 0xfff 0x00a3 0xfff 0xfff 0xfff +syscon nr __NR_iopl 0x00ac 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ioperm 0x00ad 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_init_module 0x00af 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_delete_module 0x00b0 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_gettid 0x00ba 0x200011e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_readahead 0x00bb 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setxattr 0x00bc 0x20000ec 0xfff 0xfff 0x177 0xfff +syscon nr __NR_fsetxattr 0x00be 0x20000ed 0xfff 0xfff 0x179 0xfff +syscon nr __NR_getxattr 0x00bf 0x20000ea 0xfff 0xfff 0x17a 0xfff +syscon nr __NR_fgetxattr 0x00c1 0x20000eb 0xfff 0xfff 0x17c 0xfff +syscon nr __NR_listxattr 0x00c2 0x20000f0 0xfff 0xfff 0x17d 0xfff +syscon nr __NR_flistxattr 0x00c4 0x20000f1 0xfff 0xfff 0x17f 0xfff +syscon nr __NR_removexattr 0x00c5 0x20000ee 0xfff 0xfff 0x180 0xfff +syscon nr __NR_fremovexattr 0x00c7 0x20000ef 0xfff 0xfff 0x182 0xfff +syscon nr __NR_lsetxattr 0x00bd 0xfff 0xfff 0xfff 0x178 0xfff +syscon nr __NR_lgetxattr 0x00c0 0xfff 0xfff 0xfff 0x17b 0xfff +syscon nr __NR_llistxattr 0x00c3 0xfff 0xfff 0xfff 0x17e 0xfff +syscon nr __NR_lremovexattr 0x00c6 0xfff 0xfff 0xfff 0x181 0xfff +syscon nr __NR_sched_setaffinity 0x00cb 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sched_getaffinity 0x00cc 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_cpuset_getaffinity 0xfff 0xfff 0x01e7 0xfff 0xfff 0xfff +syscon nr __NR_cpuset_setaffinity 0xfff 0xfff 0x01e8 0xfff 0xfff 0xfff +syscon nr __NR_io_setup 0x00ce 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_destroy 0x00cf 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_getevents 0x00d0 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_submit 0x00d1 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_cancel 0x00d2 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_lookup_dcookie 0x00d4 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_epoll_create 0x00d5 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_epoll_wait 0x00e8 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_epoll_ctl 0x00e9 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getdents 0x00d9 0xfff 0x0110 0x0063 0x186 0xfff +syscon nr __NR_set_tid_address 0x00da 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_restart_syscall 0x00db 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_semtimedop 0x00dc 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fadvise 0x00dd 0xfff 0x0213 0xfff 0xfff 0xfff +syscon nr __NR_timer_create 0x00de 0xfff 0xfff 0xfff 0x0eb 0xfff +syscon nr __NR_timer_settime 0x00df 0xfff 0xfff 0xfff 0x1be 0xfff +syscon nr __NR_timer_gettime 0x00e0 0xfff 0xfff 0xfff 0x1bf 0xfff +syscon nr __NR_timer_getoverrun 0x00e1 0xfff 0xfff 0xfff 0x0ef 0xfff +syscon nr __NR_timer_delete 0x00e2 0xfff 0xfff 0xfff 0x0ec 0xfff +syscon nr __NR_clock_settime 0x00e3 0xfff 0x00e9 0x0058 0x1ac 0xfff +syscon nr __NR_clock_gettime 0x00e4 0xfff 0x00e8 0x0057 0x1ab 0xfff +syscon nr __NR_clock_getres 0x00e5 0xfff 0x00ea 0x0059 0x1ad 0xfff +syscon nr __NR_clock_nanosleep 0x00e6 0xfff 0x00f4 0xfff 0xfff 0xfff +syscon nr __NR_tgkill 0x00ea 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_mbind 0x00ed 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_set_mempolicy 0x00ee 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_get_mempolicy 0x00ef 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_mq_open 0x00f0 0xfff 0xfff 0xfff 0x101 0xfff +syscon nr __NR_mq_unlink 0x00f1 0xfff 0xfff 0xfff 0x103 0xfff +syscon nr __NR_mq_timedsend 0x00f2 0xfff 0xfff 0xfff 0x1b0 0xfff +syscon nr __NR_mq_timedreceive 0x00f3 0xfff 0xfff 0xfff 0x1b1 0xfff +syscon nr __NR_mq_notify 0x00f4 0xfff 0xfff 0xfff 0x106 0xfff +syscon nr __NR_mq_getsetattr 0x00f5 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kexec_load 0x00f6 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_waitid 0x00f7 0x20000ad 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_add_key 0x00f8 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_request_key 0x00f9 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_keyctl 0x00fa 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ioprio_set 0x00fb 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ioprio_get 0x00fc 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_inotify_init 0x00fd 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_inotify_add_watch 0x00fe 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_inotify_rm_watch 0x00ff 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_openat 0x0101 0x20001cf 0x01f3 0x0141 0x1d4 0xfff +syscon nr __NR_mkdirat 0x0102 0x20001db 0x01f0 0x013e 0x1cd 0xfff +syscon nr __NR_fchownat 0x0104 0x20001d4 0x01eb 0x013b 0x1d0 0xfff +syscon nr __NR_utime 0x0084 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_utimes 0x00eb 0x200008a 0x008a 0x004c 0x1a4 0xfff +syscon nr __NR_futimesat 0x0105 0xfff 0x01ee 0xfff 0xfff 0xfff +syscon nr __NR_futimes 0xfff 0x200008b 0x00ce 0x004d 0x1a7 0xfff +syscon nr __NR_futimens 0xfff 0xfff 0x0222 0x0055 0x1d8 0xfff +syscon nr __NR_fstatat 0x0106 0x20001d6 0x0228 0x002a 0x1d2 0xfff +syscon nr __NR_unlinkat 0x0107 0x20001d8 0x01f7 0x0145 0x1d7 0xfff +syscon nr __NR_renameat 0x0108 0x20001d1 0x01f5 0x0143 0x1ca 0xfff +syscon nr __NR_linkat 0x0109 0x20001d7 0x01ef 0x013d 0x1c9 0xfff +syscon nr __NR_symlinkat 0x010a 0x20001da 0x01f6 0x0144 0x1d6 0xfff +syscon nr __NR_readlinkat 0x010b 0x20001d9 0x01f4 0x0142 0x1d5 0xfff +syscon nr __NR_fchmodat 0x010c 0x20001d3 0x01ea 0x013a 0x1cf 0xfff +syscon nr __NR_faccessat 0x010d 0x20001d2 0x01e9 0x0139 0x1ce 0xfff +syscon nr __NR_unshare 0x0110 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_splice 0x0113 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_tee 0x0114 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sync_file_range 0x0115 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_vmsplice 0x0116 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_migrate_pages 0x0100 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_move_pages 0x0117 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_preadv 0x0127 0xfff 0x0121 0x010b 0x121 0xfff +syscon nr __NR_pwritev 0x0128 0xfff 0x0122 0x010c 0x122 0xfff +syscon nr __NR_utimensat 0x0118 0xfff 0x0223 0x0054 0x1d3 0xfff +syscon nr __NR_fallocate 0x011d 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_posix_fallocate 0xfff 0xfff 0x0212 0xfff 0xfff 0xfff +syscon nr __NR_accept4 0x0120 0xfff 0x021d 0x005d 0xfff 0xfff +syscon nr __NR_dup3 0x0124 0xfff 0xfff 0x0066 0x1c6 0xfff +syscon nr __NR_pipe2 0x0125 0xfff 0x021e 0x0065 0x1c5 0xfff +syscon nr __NR_epoll_pwait 0x0119 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_epoll_create1 0x0123 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_perf_event_open 0x012a 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_inotify_init1 0x0126 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_rt_tgsigqueueinfo 0x0129 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_signalfd 0x011a 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_signalfd4 0x0121 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_eventfd 0x011c 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_eventfd2 0x0122 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_timerfd_create 0x011b 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_timerfd_settime 0x011e 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_timerfd_gettime 0x011f 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_recvmmsg 0x012b 0xfff 0xfff 0xfff 0x1db 0xfff +syscon nr __NR_fanotify_init 0x012c 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fanotify_mark 0x012d 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_prlimit 0x012e 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_name_to_handle_at 0x012f 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_open_by_handle_at 0x0130 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_clock_adjtime 0x0131 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_syncfs 0x0132 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sendmmsg 0x0133 0xfff 0xfff 0xfff 0x1dc 0xfff +syscon nr __NR_setns 0x0134 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getcpu 0x0135 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_process_vm_readv 0x0136 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_process_vm_writev 0x0137 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kcmp 0x0138 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_finit_module 0x0139 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sched_setattr 0x013a 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sched_getattr 0x013b 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_renameat2 0x013c 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_seccomp 0x013d 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getrandom 0x013e 0x20001f4 0x0233 0x0007 0x05b 0xfff +syscon nr __NR_memfd_create 0x013f 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kexec_file_load 0x0140 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_bpf 0x0141 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_execveat 0x0142 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_userfaultfd 0x0143 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_membarrier 0x0144 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_mlock2 0x0145 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_copy_file_range 0x0146 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_preadv2 0x0147 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pwritev2 0x0148 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pkey_mprotect 0x0149 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pkey_alloc 0x014a 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pkey_free 0x014b 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_statx 0x014c 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_pgetevents 0x014d 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_rseq 0x014e 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pidfd_send_signal 0x01a8 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_uring_setup 0x01a9 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_uring_enter 0x01aa 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_io_uring_register 0x01ab 0xfff 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pledge 0xfff 0xfff 0xfff 0x006c 0xfff 0xfff +syscon nr __NR_msyscall 0xfff 0xfff 0xfff 0x0025 0xfff 0xfff +syscon nr __NR_ktrace 0xfff 0xfff 0x002d 0x002d 0x02d 0xfff +syscon nr __NR_kqueue 0xfff 0x200016a 0x016a 0x010d 0x158 0xfff +syscon nr __NR_kevent 0xfff 0x2000171 0x0230 0x0048 0x1b3 0xfff +syscon nr __NR_revoke 0xfff 0x2000038 0x0038 0x0038 0x038 0xfff +syscon nr __NR_setlogin 0xfff 0x2000032 0x0032 0x0032 0xfff 0xfff +syscon nr __NR_getfh 0xfff 0x20000a1 0x00a1 0x00a1 0x18b 0xfff +syscon nr __NR_chflags 0xfff 0x2000022 0x0022 0x0022 0x022 0xfff +syscon nr __NR_getfsstat 0xfff 0x200015b 0x022d 0x003e 0xfff 0xfff +syscon nr __NR_nfssvc 0xfff 0x200009b 0x009b 0x009b 0x09b 0xfff +syscon nr __NR_adjtime 0xfff 0x200008c 0x008c 0x008c 0x1a5 0xfff +syscon nr __NR_fchflags 0xfff 0x2000023 0x0023 0x0023 0x023 0xfff +syscon nr __NR_seteuid 0xfff 0x20000b7 0x00b7 0x00b7 0xfff 0xfff +syscon nr __NR_setegid 0xfff 0x20000b6 0x00b6 0x00b6 0xfff 0xfff +syscon nr __NR_fpathconf 0xfff 0x20000c0 0x00c0 0x00c0 0x0c0 0xfff +syscon nr __NR_fhopen 0xfff 0x20000f8 0x012a 0x0108 0x18c 0xfff +syscon nr __NR_unmount 0xfff 0x200009f 0x0016 0x0016 0x016 0xfff +syscon nr __NR_issetugid 0xfff 0x2000147 0x00fd 0x00fd 0xfff 0xfff +syscon nr __NR_minherit 0xfff 0x20000fa 0x00fa 0x00fa 0x111 0xfff +syscon nr __NR_pathconf 0xfff 0x20000bf 0x00bf 0x00bf 0x0bf 0xfff +syscon nr __NR_sysctl 0xfff 0x20000ca 0xfff 0x00ca 0x0ca 0xfff +syscon nr __NR_ntp_adjtime 0xfff 0x200020f 0x00b0 0xfff 0x0b0 0xfff +syscon nr __NR_ntp_gettime 0xfff 0x2000210 0x00f8 0xfff 0x1c0 0xfff +syscon nr __NR_shm_unlink 0xfff 0x200010b 0x01e3 0xfff 0xfff 0xfff +syscon nr __NR_shm_open 0xfff 0x200010a 0x01e2 0xfff 0xfff 0xfff +syscon nr __NR_aio_read 0xfff 0x200013e 0x013e 0xfff 0x192 0xfff +syscon nr __NR_aio_suspend 0xfff 0x200013b 0x013b 0xfff 0x1b6 0xfff +syscon nr __NR_aio_cancel 0xfff 0x200013c 0x013c 0xfff 0x18f 0xfff +syscon nr __NR_aio_fsync 0xfff 0x2000139 0x01d1 0xfff 0x191 0xfff +syscon nr __NR_aio_error 0xfff 0x200013d 0x013d 0xfff 0x190 0xfff +syscon nr __NR_aio_return 0xfff 0x200013a 0x013a 0xfff 0x193 0xfff +syscon nr __NR_aio_write 0xfff 0x200013f 0x013f 0xfff 0x195 0xfff +syscon nr __NR_aio_waitcomplete 0xfff 0xfff 0x0167 0xfff 0xfff 0xfff +syscon nr __NR_aio_suspend_nocancel 0xfff 0x20001a5 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_aio_mlock 0xfff 0xfff 0x021f 0xfff 0xfff 0xfff +syscon nr __NR_sigwait 0xfff 0x200014a 0x01ad 0xfff 0xfff 0xfff +syscon nr __NR_undelete 0xfff 0x20000cd 0x00cd 0xfff 0x0cd 0xfff +syscon nr __NR_getlogin 0xfff 0x2000031 0x0031 0xfff 0xfff 0xfff +syscon nr __NR_getdtablesize 0xfff 0x2000059 0x0059 0xfff 0xfff 0xfff +syscon nr __NR_setauid 0xfff 0x2000162 0x01c0 0xfff 0xfff 0xfff +syscon nr __NR_audit 0xfff 0x200015e 0x01bd 0xfff 0xfff 0xfff +syscon nr __NR_auditctl 0xfff 0x2000167 0x01c5 0xfff 0xfff 0xfff +syscon nr __NR_getaudit_addr 0xfff 0x2000165 0x01c3 0xfff 0xfff 0xfff +syscon nr __NR_getdirentries 0xfff 0x2000158 0x022a 0xfff 0xfff 0xfff +syscon nr __NR_lio_listio 0xfff 0x2000140 0x0140 0xfff 0x196 0xfff +syscon nr __NR_setaudit_addr 0xfff 0x2000166 0x01c4 0xfff 0xfff 0xfff +syscon nr __NR_getauid 0xfff 0x2000161 0x01bf 0xfff 0xfff 0xfff +syscon nr __NR_semsys 0xfff 0x20000fb 0x00a9 0xfff 0xfff 0xfff +syscon nr __NR_auditon 0xfff 0x200015f 0x01be 0xfff 0xfff 0xfff +syscon nr __NR_msgsys 0xfff 0x20000fc 0x00aa 0xfff 0xfff 0xfff +syscon nr __NR_shmsys 0xfff 0x20000fd 0x00ab 0xfff 0xfff 0xfff +syscon nr __NR_fhstat 0xfff 0xfff 0x0229 0x0126 0x1c3 0xfff +syscon nr __NR_chflagsat 0xfff 0xfff 0x021c 0x006b 0xfff 0xfff +syscon nr __NR_profil 0xfff 0xfff 0x002c 0x002c 0x02c 0xfff +syscon nr __NR_fhstatfs 0xfff 0xfff 0x022e 0x0041 0xfff 0xfff +syscon nr __NR_utrace 0xfff 0xfff 0x014f 0x00d1 0x132 0xfff +syscon nr __NR_closefrom 0xfff 0xfff 0x01fd 0x011f 0xfff 0xfff +syscon nr __NR_pthread_markcancel 0xfff 0x200014c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pthread_kill 0xfff 0x2000148 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pthread_fchdir 0xfff 0x200015d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pthread_sigmask 0xfff 0x2000149 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pthread_chdir 0xfff 0x200015c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pthread_canceled 0xfff 0x200014d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_disable_threadsignal 0xfff 0x200014b 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_abort_with_payload 0xfff 0x2000209 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_accept_nocancel 0xfff 0x2000194 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_access_extended 0xfff 0x200011c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_audit_session_join 0xfff 0x20001ad 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_audit_session_port 0xfff 0x20001b0 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_audit_session_self 0xfff 0x20001ac 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_bsdthread_create 0xfff 0x2000168 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_bsdthread_ctl 0xfff 0x20001de 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_bsdthread_register 0xfff 0x200016e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_bsdthread_terminate 0xfff 0x2000169 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_change_fdguard_np 0xfff 0x20001bc 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_chmod_extended 0xfff 0x200011a 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_clonefileat 0xfff 0x20001ce 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_close_nocancel 0xfff 0x200018f 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_coalition 0xfff 0x20001ca 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_coalition_info 0xfff 0x20001cb 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_connect_nocancel 0xfff 0x2000199 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_connectx 0xfff 0x20001bf 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_copyfile 0xfff 0x20000e3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_csops 0xfff 0x20000a9 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_csops_audittoken 0xfff 0x20000aa 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_csrctl 0xfff 0x20001e3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_delete 0xfff 0x20000e2 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_disconnectx 0xfff 0x20001c0 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_exchangedata 0xfff 0x20000df 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fchmod_extended 0xfff 0x200011b 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fclonefileat 0xfff 0x2000205 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fcntl_nocancel 0xfff 0x2000196 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ffsctl 0xfff 0x20000f5 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fgetattrlist 0xfff 0x20000e4 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fileport_makefd 0xfff 0x20001af 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fileport_makeport 0xfff 0x20001ae 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fmount 0xfff 0x200020e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fs_snapshot 0xfff 0x2000206 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fsctl 0xfff 0x20000f2 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fsetattrlist 0xfff 0x20000e5 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fstat_extended 0xfff 0x2000119 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_fsync_nocancel 0xfff 0x2000198 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getattrlist 0xfff 0x20000dc 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getattrlistat 0xfff 0x20001dc 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getattrlistbulk 0xfff 0x20001cd 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getdirentriesattr 0xfff 0x20000de 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_gethostuuid 0xfff 0x200008e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getsgroups 0xfff 0x2000120 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_getwgroups 0xfff 0x2000122 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_grab_pgo_data 0xfff 0x20001ed 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_guarded_close_np 0xfff 0x20001ba 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_guarded_kqueue_np 0xfff 0x20001bb 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_guarded_open_np 0xfff 0x20001b9 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_guarded_pwrite_np 0xfff 0x20001e6 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_guarded_write_np 0xfff 0x20001e5 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_guarded_writev_np 0xfff 0x20001e7 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_identitysvc 0xfff 0x2000125 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_initgroups 0xfff 0x20000f3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_iopolicysys 0xfff 0x2000142 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kas_info 0xfff 0x20001b7 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kdebug_trace 0xfff 0x20000b3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kdebug_trace_string 0xfff 0x20000b2 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kdebug_typefilter 0xfff 0x20000b1 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kevent_id 0xfff 0x2000177 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_kevent_qos 0xfff 0x2000176 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ledger 0xfff 0x2000175 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_lstat_extended 0xfff 0x2000156 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_memorystatus_control 0xfff 0x20001b8 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_memorystatus_get_level 0xfff 0x20001c5 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_microstackshot 0xfff 0x20001ec 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_mkdir_extended 0xfff 0x2000124 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_mkfifo_extended 0xfff 0x2000123 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_modwatch 0xfff 0x20000e9 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_mremap_encrypted 0xfff 0x20001e9 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_msgrcv_nocancel 0xfff 0x20001a3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_msgsnd_nocancel 0xfff 0x20001a2 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_msync_nocancel 0xfff 0x2000195 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_necp_client_action 0xfff 0x20001f6 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_necp_match_policy 0xfff 0x20001cc 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_necp_open 0xfff 0x20001f5 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_necp_session_action 0xfff 0x200020b 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_necp_session_open 0xfff 0x200020a 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_net_qos_guideline 0xfff 0x200020d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_netagent_trigger 0xfff 0x20001ea 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_nfsclnt 0xfff 0x20000f7 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_open_dprotected_np 0xfff 0x20000d8 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_open_extended 0xfff 0x2000115 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_open_nocancel 0xfff 0x200018e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_openat_nocancel 0xfff 0x20001d0 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_openbyid_np 0xfff 0x20001df 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_os_fault_with_payload 0xfff 0x2000211 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_peeloff 0xfff 0x20001c1 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_persona 0xfff 0x20001ee 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pid_hibernate 0xfff 0x20001b3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pid_resume 0xfff 0x20001b2 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pid_shutdown_sockets 0xfff 0x20001b4 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pid_suspend 0xfff 0x20001b1 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_poll_nocancel 0xfff 0x20001a1 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pread_nocancel 0xfff 0x200019e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_proc_info 0xfff 0x2000150 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_proc_rlimit_control 0xfff 0x20001be 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_proc_trace_log 0xfff 0x20001dd 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_proc_uuid_policy 0xfff 0x20001c4 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_process_policy 0xfff 0x2000143 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pselect_nocancel 0xfff 0x200018b 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_cvbroad 0xfff 0x200012f 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_cvclrprepost 0xfff 0x2000138 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_cvsignal 0xfff 0x2000130 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_mutexdrop 0xfff 0x200012e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_mutexwait 0xfff 0x200012d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_downgrade 0xfff 0x200012b 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_longrdlock 0xfff 0x2000129 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_rdlock 0xfff 0x2000132 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_unlock 0xfff 0x2000134 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_unlock2 0xfff 0x2000135 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_upgrade 0xfff 0x200012c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_wrlock 0xfff 0x2000133 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_psynch_rw_yieldwrlock 0xfff 0x200012a 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_pwrite_nocancel 0xfff 0x200019f 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_read_nocancel 0xfff 0x200018c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_readv_nocancel 0xfff 0x200019b 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_recvfrom_nocancel 0xfff 0x2000193 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_recvmsg_nocancel 0xfff 0x2000191 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_recvmsg_x 0xfff 0x20001e0 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_renameatx_np 0xfff 0x20001e8 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_searchfs 0xfff 0x20000e1 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_select_nocancel 0xfff 0x2000197 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sem_close 0xfff 0x200010d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sem_open 0xfff 0x200010c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sem_post 0xfff 0x2000111 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sem_trywait 0xfff 0x2000110 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sem_unlink 0xfff 0x200010e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sem_wait 0xfff 0x200010f 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sem_wait_nocancel 0xfff 0x20001a4 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sendmsg_nocancel 0xfff 0x2000192 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sendmsg_x 0xfff 0x20001e1 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sendto_nocancel 0xfff 0x200019d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setattrlist 0xfff 0x20000dd 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setattrlistat 0xfff 0x200020c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setprivexec 0xfff 0x2000098 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setsgroups 0xfff 0x200011f 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_settid 0xfff 0x200011d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_settid_with_pid 0xfff 0x2000137 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setwgroups 0xfff 0x2000121 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sfi_ctl 0xfff 0x20001c8 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sfi_pidctl 0xfff 0x20001c9 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_shared_region_check_np 0xfff 0x2000126 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sigsuspend_nocancel 0xfff 0x200019a 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_socket_delegate 0xfff 0x20001c2 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_stat_extended 0xfff 0x2000155 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sysctlbyname 0xfff 0x2000112 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_system_override 0xfff 0x20001c6 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_telemetry 0xfff 0x20001c3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_terminate_with_payload 0xfff 0x2000208 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_thread_selfcounts 0xfff 0x20000ba 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_thread_selfid 0xfff 0x2000174 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_thread_selfusage 0xfff 0x20001e2 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ulock_wait 0xfff 0x2000203 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_ulock_wake 0xfff 0x2000204 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_umask_extended 0xfff 0x2000116 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_usrctl 0xfff 0x20001bd 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_vfs_purge 0xfff 0x20001c7 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_vm_pressure_monitor 0xfff 0x2000128 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_wait4_nocancel 0xfff 0x2000190 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_waitevent 0xfff 0x20000e8 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_waitid_nocancel 0xfff 0x20001a0 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_watchevent 0xfff 0x20000e7 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_work_interval_ctl 0xfff 0x20001f3 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_workq_kernreturn 0xfff 0x2000170 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_workq_open 0xfff 0x200016f 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_write_nocancel 0xfff 0x200018d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_writev_nocancel 0xfff 0x200019c 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_abort2 0xfff 0xfff 0x01cf 0xfff 0xfff 0xfff +syscon nr __NR_afs3_syscall 0xfff 0xfff 0x0179 0xfff 0xfff 0xfff +syscon nr __NR_bindat 0xfff 0xfff 0x021a 0xfff 0xfff 0xfff +syscon nr __NR_break 0xfff 0xfff 0x0011 0xfff 0xfff 0xfff +syscon nr __NR_cap_enter 0xfff 0xfff 0x0204 0xfff 0xfff 0xfff +syscon nr __NR_cap_fcntls_get 0xfff 0xfff 0x0219 0xfff 0xfff 0xfff +syscon nr __NR_cap_fcntls_limit 0xfff 0xfff 0x0218 0xfff 0xfff 0xfff +syscon nr __NR_cap_getmode 0xfff 0xfff 0x0205 0xfff 0xfff 0xfff +syscon nr __NR_cap_ioctls_get 0xfff 0xfff 0x0217 0xfff 0xfff 0xfff +syscon nr __NR_cap_ioctls_limit 0xfff 0xfff 0x0216 0xfff 0xfff 0xfff +syscon nr __NR_cap_rights_limit 0xfff 0xfff 0x0215 0xfff 0xfff 0xfff +syscon nr __NR_clock_getcpuclockid2 0xfff 0xfff 0x00f7 0xfff 0x1e2 0xfff +syscon nr __NR_connectat 0xfff 0xfff 0x021b 0xfff 0xfff 0xfff +syscon nr __NR_cpuset 0xfff 0xfff 0x01e4 0xfff 0xfff 0xfff +syscon nr __NR_cpuset_getdomain 0xfff 0xfff 0x0231 0xfff 0xfff 0xfff +syscon nr __NR_cpuset_getid 0xfff 0xfff 0x01e6 0xfff 0xfff 0xfff +syscon nr __NR_cpuset_setdomain 0xfff 0xfff 0x0232 0xfff 0xfff 0xfff +syscon nr __NR_cpuset_setid 0xfff 0xfff 0x01e5 0xfff 0xfff 0xfff +syscon nr __NR_eaccess 0xfff 0xfff 0x0178 0xfff 0xfff 0xfff +syscon nr __NR_extattr_delete_fd 0xfff 0xfff 0x0175 0xfff 0x16e 0xfff +syscon nr __NR_extattr_delete_file 0xfff 0xfff 0x0166 0xfff 0x16b 0xfff +syscon nr __NR_extattr_delete_link 0xfff 0xfff 0x019e 0xfff 0x171 0xfff +syscon nr __NR_extattr_get_fd 0xfff 0xfff 0x0174 0xfff 0x16d 0xfff +syscon nr __NR_extattr_get_file 0xfff 0xfff 0x0165 0xfff 0x16a 0xfff +syscon nr __NR_extattr_get_link 0xfff 0xfff 0x019d 0xfff 0x170 0xfff +syscon nr __NR_extattr_list_fd 0xfff 0xfff 0x01b5 0xfff 0x172 0xfff +syscon nr __NR_extattr_list_file 0xfff 0xfff 0x01b6 0xfff 0x173 0xfff +syscon nr __NR_extattr_list_link 0xfff 0xfff 0x01b7 0xfff 0x174 0xfff +syscon nr __NR_extattr_set_fd 0xfff 0xfff 0x0173 0xfff 0x16c 0xfff +syscon nr __NR_extattr_set_file 0xfff 0xfff 0x0164 0xfff 0x169 0xfff +syscon nr __NR_extattr_set_link 0xfff 0xfff 0x019c 0xfff 0x16f 0xfff +syscon nr __NR_extattrctl 0xfff 0xfff 0x0163 0xfff 0x168 0xfff +syscon nr __NR_fexecve 0xfff 0xfff 0x01ec 0xfff 0x1d1 0xfff +syscon nr __NR_ffclock_getcounter 0xfff 0xfff 0x00f1 0xfff 0xfff 0xfff +syscon nr __NR_ffclock_getestimate 0xfff 0xfff 0x00f3 0xfff 0xfff 0xfff +syscon nr __NR_ffclock_setestimate 0xfff 0xfff 0x00f2 0xfff 0xfff 0xfff +syscon nr __NR_fhlink 0xfff 0xfff 0x0235 0xfff 0xfff 0xfff +syscon nr __NR_fhlinkat 0xfff 0xfff 0x0236 0xfff 0xfff 0xfff +syscon nr __NR_fhreadlink 0xfff 0xfff 0x0237 0xfff 0xfff 0xfff +syscon nr __NR_getaudit 0xfff 0xfff 0x01c1 0xfff 0xfff 0xfff +syscon nr __NR_getcontext 0xfff 0xfff 0x01a5 0xfff 0x133 0xfff +syscon nr __NR_getfhat 0xfff 0xfff 0x0234 0xfff 0xfff 0xfff +syscon nr __NR_gethostid 0xfff 0xfff 0x008e 0xfff 0xfff 0xfff +syscon nr __NR_getkerninfo 0xfff 0xfff 0x003f 0xfff 0xfff 0xfff +syscon nr __NR_getloginclass 0xfff 0xfff 0x020b 0xfff 0xfff 0xfff +syscon nr __NR_getpagesize 0xfff 0xfff 0x0040 0xfff 0xfff 0xfff +syscon nr __NR_gssd_syscall 0xfff 0xfff 0x01f9 0xfff 0xfff 0xfff +syscon nr __NR_jail 0xfff 0xfff 0x0152 0xfff 0xfff 0xfff +syscon nr __NR_jail_attach 0xfff 0xfff 0x01b4 0xfff 0xfff 0xfff +syscon nr __NR_jail_get 0xfff 0xfff 0x01fa 0xfff 0xfff 0xfff +syscon nr __NR_jail_remove 0xfff 0xfff 0x01fc 0xfff 0xfff 0xfff +syscon nr __NR_jail_set 0xfff 0xfff 0x01fb 0xfff 0xfff 0xfff +syscon nr __NR_kenv 0xfff 0xfff 0x0186 0xfff 0xfff 0xfff +syscon nr __NR_kldfind 0xfff 0xfff 0x0132 0xfff 0xfff 0xfff +syscon nr __NR_kldfirstmod 0xfff 0xfff 0x0135 0xfff 0xfff 0xfff +syscon nr __NR_kldload 0xfff 0xfff 0x0130 0xfff 0xfff 0xfff +syscon nr __NR_kldnext 0xfff 0xfff 0x0133 0xfff 0xfff 0xfff +syscon nr __NR_kldstat 0xfff 0xfff 0x0134 0xfff 0xfff 0xfff +syscon nr __NR_kldsym 0xfff 0xfff 0x0151 0xfff 0xfff 0xfff +syscon nr __NR_kldunload 0xfff 0xfff 0x0131 0xfff 0xfff 0xfff +syscon nr __NR_kldunloadf 0xfff 0xfff 0x01bc 0xfff 0xfff 0xfff +syscon nr __NR_kmq_notify 0xfff 0xfff 0x01cd 0xfff 0xfff 0xfff +syscon nr __NR_kmq_setattr 0xfff 0xfff 0x01ca 0xfff 0xfff 0xfff +syscon nr __NR_kmq_timedreceive 0xfff 0xfff 0x01cb 0xfff 0xfff 0xfff +syscon nr __NR_kmq_timedsend 0xfff 0xfff 0x01cc 0xfff 0xfff 0xfff +syscon nr __NR_kmq_unlink 0xfff 0xfff 0x01ce 0xfff 0xfff 0xfff +syscon nr __NR_ksem_close 0xfff 0xfff 0x0190 0xfff 0xfff 0xfff +syscon nr __NR_ksem_destroy 0xfff 0xfff 0x0198 0xfff 0xfff 0xfff +syscon nr __NR_ksem_getvalue 0xfff 0xfff 0x0197 0xfff 0xfff 0xfff +syscon nr __NR_ksem_init 0xfff 0xfff 0x0194 0xfff 0xfff 0xfff +syscon nr __NR_ksem_open 0xfff 0xfff 0x0195 0xfff 0xfff 0xfff +syscon nr __NR_ksem_post 0xfff 0xfff 0x0191 0xfff 0xfff 0xfff +syscon nr __NR_ksem_timedwait 0xfff 0xfff 0x01b9 0xfff 0xfff 0xfff +syscon nr __NR_ksem_trywait 0xfff 0xfff 0x0193 0xfff 0xfff 0xfff +syscon nr __NR_ksem_unlink 0xfff 0xfff 0x0196 0xfff 0xfff 0xfff +syscon nr __NR_ksem_wait 0xfff 0xfff 0x0192 0xfff 0xfff 0xfff +syscon nr __NR_ktimer_create 0xfff 0xfff 0x00eb 0xfff 0xfff 0xfff +syscon nr __NR_ktimer_delete 0xfff 0xfff 0x00ec 0xfff 0xfff 0xfff +syscon nr __NR_ktimer_getoverrun 0xfff 0xfff 0x00ef 0xfff 0xfff 0xfff +syscon nr __NR_ktimer_gettime 0xfff 0xfff 0x00ee 0xfff 0xfff 0xfff +syscon nr __NR_ktimer_settime 0xfff 0xfff 0x00ed 0xfff 0xfff 0xfff +syscon nr __NR_lchflags 0xfff 0xfff 0x0187 0xfff 0x130 0xfff +syscon nr __NR_lchmod 0xfff 0xfff 0x0112 0xfff 0x112 0xfff +syscon nr __NR_lgetfh 0xfff 0xfff 0x00a0 0xfff 0xfff 0xfff +syscon nr __NR_lpathconf 0xfff 0xfff 0x0201 0xfff 0x1f3 0xfff +syscon nr __NR_lutimes 0xfff 0xfff 0x0114 0xfff 0x1a8 0xfff +syscon nr __NR_mac_syscall 0xfff 0xfff 0x018a 0xfff 0xfff 0xfff +syscon nr __NR_modfind 0xfff 0xfff 0x012f 0xfff 0xfff 0xfff +syscon nr __NR_modfnext 0xfff 0xfff 0x012e 0xfff 0xfff 0xfff +syscon nr __NR_modnext 0xfff 0xfff 0x012c 0xfff 0xfff 0xfff +syscon nr __NR_modstat 0xfff 0xfff 0x012d 0xfff 0xfff 0xfff +syscon nr __NR_nfstat 0xfff 0xfff 0x0117 0xfff 0xfff 0xfff +syscon nr __NR_nlm_syscall 0xfff 0xfff 0x009a 0xfff 0xfff 0xfff +syscon nr __NR_nlstat 0xfff 0xfff 0x0118 0xfff 0xfff 0xfff +syscon nr __NR_nmount 0xfff 0xfff 0x017a 0xfff 0xfff 0xfff +syscon nr __NR_nnpfs_syscall 0xfff 0xfff 0x0153 0xfff 0xfff 0xfff +syscon nr __NR_nstat 0xfff 0xfff 0x0116 0xfff 0xfff 0xfff +syscon nr __NR_pdfork 0xfff 0xfff 0x0206 0xfff 0xfff 0xfff +syscon nr __NR_pdgetpid 0xfff 0xfff 0x0208 0xfff 0xfff 0xfff +syscon nr __NR_pdkill 0xfff 0xfff 0x0207 0xfff 0xfff 0xfff +syscon nr __NR_posix_openpt 0xfff 0xfff 0x01f8 0xfff 0xfff 0xfff +syscon nr __NR_procctl 0xfff 0xfff 0x0220 0xfff 0xfff 0xfff +syscon nr __NR_psynch_cvwait 0xfff 0x2000131 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_quota 0xfff 0xfff 0x0095 0xfff 0xfff 0xfff +syscon nr __NR_rctl_add_rule 0xfff 0xfff 0x0210 0xfff 0xfff 0xfff +syscon nr __NR_rctl_get_limits 0xfff 0xfff 0x020f 0xfff 0xfff 0xfff +syscon nr __NR_rctl_get_racct 0xfff 0xfff 0x020d 0xfff 0xfff 0xfff +syscon nr __NR_rctl_get_rules 0xfff 0xfff 0x020e 0xfff 0xfff 0xfff +syscon nr __NR_rctl_remove_rule 0xfff 0xfff 0x0211 0xfff 0xfff 0xfff +syscon nr __NR_recv 0xfff 0xfff 0x0066 0xfff 0xfff 0xfff +syscon nr __NR_rfork 0xfff 0xfff 0x00fb 0xfff 0xfff 0xfff +syscon nr __NR_rtprio 0xfff 0xfff 0x00a6 0xfff 0xfff 0xfff +syscon nr __NR_rtprio_thread 0xfff 0xfff 0x01d2 0xfff 0xfff 0xfff +syscon nr __NR_send 0xfff 0xfff 0x0065 0xfff 0xfff 0xfff +syscon nr __NR_setaudit 0xfff 0xfff 0x01c2 0xfff 0xfff 0xfff +syscon nr __NR_setcontext 0xfff 0xfff 0x01a6 0xfff 0x134 0xfff +syscon nr __NR_setfib 0xfff 0xfff 0x00af 0xfff 0xfff 0xfff +syscon nr __NR_sethostid 0xfff 0xfff 0x008f 0xfff 0xfff 0xfff +syscon nr __NR_setloginclass 0xfff 0xfff 0x020c 0xfff 0xfff 0xfff +syscon nr __NR_sigblock 0xfff 0xfff 0x006d 0xfff 0xfff 0xfff +syscon nr __NR_sigqueue 0xfff 0xfff 0x01c8 0xfff 0xfff 0xfff +syscon nr __NR_sigsetmask 0xfff 0xfff 0x006e 0xfff 0xfff 0xfff +syscon nr __NR_sigstack 0xfff 0xfff 0x0070 0xfff 0xfff 0xfff +syscon nr __NR_sigvec 0xfff 0xfff 0x006c 0xfff 0xfff 0xfff +syscon nr __NR_sigwaitinfo 0xfff 0xfff 0x015a 0xfff 0xfff 0xfff +syscon nr __NR_sstk 0xfff 0xfff 0x0046 0xfff 0xfff 0xfff +syscon nr __NR_swapcontext 0xfff 0xfff 0x01a7 0xfff 0xfff 0xfff +syscon nr __NR_thr_create 0xfff 0xfff 0x01ae 0xfff 0xfff 0xfff +syscon nr __NR_thr_exit 0xfff 0xfff 0x01af 0xfff 0xfff 0xfff +syscon nr __NR_thr_kill 0xfff 0xfff 0x01b1 0xfff 0xfff 0xfff +syscon nr __NR_thr_kill2 0xfff 0xfff 0x01e1 0xfff 0xfff 0xfff +syscon nr __NR_thr_new 0xfff 0xfff 0x01c7 0xfff 0xfff 0xfff +syscon nr __NR_thr_self 0xfff 0xfff 0x01b0 0xfff 0xfff 0xfff +syscon nr __NR_thr_set_name 0xfff 0xfff 0x01d0 0xfff 0xfff 0xfff +syscon nr __NR_thr_suspend 0xfff 0xfff 0x01ba 0xfff 0xfff 0xfff +syscon nr __NR_thr_wake 0xfff 0xfff 0x01bb 0xfff 0xfff 0xfff +syscon nr __NR_uuidgen 0xfff 0xfff 0x0188 0xfff 0x163 0xfff +syscon nr __NR_vadvise 0xfff 0xfff 0x0048 0xfff 0xfff 0xfff +syscon nr __NR_wait 0xfff 0xfff 0x0054 0xfff 0xfff 0xfff +syscon nr __NR_wait6 0xfff 0xfff 0x0214 0xfff 0x1e1 0xfff +syscon nr __NR_yield 0xfff 0xfff 0x0141 0xfff 0xfff 0xfff +syscon nr __NR_tfork 0xfff 0xfff 0xfff 0x0008 0xfff 0xfff +syscon nr __NR_thrsleep 0xfff 0xfff 0xfff 0x005e 0xfff 0xfff +syscon nr __NR_thrwakeup 0xfff 0xfff 0xfff 0x012d 0xfff 0xfff +syscon nr __NR_threxit 0xfff 0xfff 0xfff 0x012e 0xfff 0xfff +syscon nr __NR_thrsigdivert 0xfff 0xfff 0xfff 0x012f 0xfff 0xfff +syscon nr __NR_set_tcb 0xfff 0xfff 0xfff 0x0149 0xfff 0xfff +syscon nr __NR_get_tcb 0xfff 0xfff 0xfff 0x014a 0xfff 0xfff +syscon nr __NR_adjfreq 0xfff 0xfff 0xfff 0x0131 0xfff 0xfff +syscon nr __NR_getdtablecount 0xfff 0xfff 0xfff 0x0012 0xfff 0xfff +syscon nr __NR_getlogin_r 0xfff 0xfff 0xfff 0x008d 0xfff 0xfff +syscon nr __NR_getrtable 0xfff 0xfff 0xfff 0x0137 0xfff 0xfff +syscon nr __NR_getthrid 0xfff 0xfff 0xfff 0x012b 0xfff 0xfff +syscon nr __NR_kbind 0xfff 0xfff 0xfff 0x0056 0xfff 0xfff +syscon nr __NR_mquery 0xfff 0xfff 0xfff 0x011e 0xfff 0xfff +syscon nr __NR_obreak 0xfff 0xfff 0xfff 0x0011 0x011 0xfff +syscon nr __NR_sendsyslog 0xfff 0xfff 0xfff 0x0070 0xfff 0xfff +syscon nr __NR_setrtable 0xfff 0xfff 0xfff 0x0136 0xfff 0xfff +syscon nr __NR_swapctl 0xfff 0xfff 0xfff 0x00c1 0x10f 0xfff +syscon nr __NR_thrkill 0xfff 0xfff 0xfff 0x0077 0xfff 0xfff +syscon nr __NR_unveil 0xfff 0xfff 0xfff 0x0072 0xfff 0xfff +syscon nr __NR_mac_get_link 0xfff 0x2000180 0x019a 0xfff 0xfff 0xfff +syscon nr __NR_mac_set_link 0xfff 0x2000181 0x019b 0xfff 0xfff 0xfff +syscon nr __NR_mac_get_fd 0xfff 0x2000184 0x0182 0xfff 0xfff 0xfff +syscon nr __NR_mac_get_file 0xfff 0x200017e 0x0183 0xfff 0xfff 0xfff +syscon nr __NR_mac_get_proc 0xfff 0x2000182 0x0180 0xfff 0xfff 0xfff +syscon nr __NR_mac_set_fd 0xfff 0x2000185 0x0184 0xfff 0xfff 0xfff +syscon nr __NR_mac_get_pid 0xfff 0x2000186 0x0199 0xfff 0xfff 0xfff +syscon nr __NR_mac_set_proc 0xfff 0x2000183 0x0181 0xfff 0xfff 0xfff +syscon nr __NR_mac_set_file 0xfff 0x200017f 0x0185 0xfff 0xfff 0xfff +syscon nr __NR_mac_execve 0xfff 0x200017c 0x019f 0xfff 0xfff 0xfff +syscon nr __NR_acl_get_link 0xfff 0xfff 0x01a9 0xfff 0xfff 0xfff +syscon nr __NR_sigwait_nocancel 0xfff 0x20001a6 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_cap_rights_get 0xfff 0xfff 0x0203 0xfff 0xfff 0xfff +syscon nr __NR_semwait_signal 0xfff 0x200014e 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_acl_set_link 0xfff 0xfff 0x01aa 0xfff 0xfff 0xfff +syscon nr __NR_acl_set_fd 0xfff 0xfff 0x015e 0xfff 0xfff 0xfff +syscon nr __NR_old_semwait_signal 0xfff 0x2000172 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_setugid 0xfff 0xfff 0x0176 0xfff 0xfff 0xfff +syscon nr __NR_acl_aclcheck_fd 0xfff 0xfff 0x0162 0xfff 0xfff 0xfff +syscon nr __NR_acl_get_fd 0xfff 0xfff 0x015d 0xfff 0xfff 0xfff +syscon nr __NR___sysctl 0xfff 0xfff 0x00ca 0xfff 0xfff 0xfff +syscon nr __NR_mac_getfsstat 0xfff 0x20001aa 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_mac_get_mount 0xfff 0x20001a9 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_acl_delete_link 0xfff 0xfff 0x01ab 0xfff 0xfff 0xfff +syscon nr __NR_mac_mount 0xfff 0x20001a8 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_acl_get_file 0xfff 0xfff 0x015b 0xfff 0xfff 0xfff +syscon nr __NR_acl_aclcheck_file 0xfff 0xfff 0x0161 0xfff 0xfff 0xfff +syscon nr __NR_acl_delete_fd 0xfff 0xfff 0x0160 0xfff 0xfff 0xfff +syscon nr __NR_acl_aclcheck_link 0xfff 0xfff 0x01ac 0xfff 0xfff 0xfff +syscon nr __NR___mac_syscall 0xfff 0x200017d 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_acl_set_file 0xfff 0xfff 0x015c 0xfff 0xfff 0xfff +syscon nr __NR_acl_delete_file 0xfff 0xfff 0x015f 0xfff 0xfff 0xfff +syscon nr __NR_syscall 0xfff 0xfff 0xfff 0x00c6 0xfff 0xfff +syscon nr __NR__umtx_op 0xfff 0xfff 0x01c6 0xfff 0xfff 0xfff +syscon nr __NR_semwait_signal_nocancel 0xfff 0x20001a7 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_old_semwait_signal_nocancel 0xfff 0x2000173 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_sctp_peeloff 0xfff 0xfff 0x01d7 0xfff 0xfff 0xfff +syscon nr __NR_sctp_generic_recvmsg 0xfff 0xfff 0x01da 0xfff 0xfff 0xfff +syscon nr __NR_sctp_generic_sendmsg 0xfff 0xfff 0x01d8 0xfff 0xfff 0xfff +syscon nr __NR_sctp_generic_sendmsg_iov 0xfff 0xfff 0x01d9 0xfff 0xfff 0xfff +syscon nr __NR_shared_region_map_and_slide_np 0xfff 0x20001b6 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_guarded_open_dprotected_np 0xfff 0x20001e4 0xfff 0xfff 0xfff 0xfff +syscon nr __NR_stack_snapshot_with_config 0xfff 0x20001eb 0xfff 0xfff 0xfff 0xfff # https://youtu.be/GUQUD3IMbb4?t=85 diff --git a/libc/sysv/consts/ADDR_COMPAT_LAYOUT.S b/libc/sysv/consts/ADDR_COMPAT_LAYOUT.S index 466079c6..a2613bfd 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.internal.h" -.syscon prsnlty,ADDR_COMPAT_LAYOUT,0x0200000,-1,-1,-1,-1,-1 +.syscon prsnlty,ADDR_COMPAT_LAYOUT,0x0200000,0,0,0,0,0 diff --git a/libc/sysv/consts/ADDR_LIMIT_32BIT.S b/libc/sysv/consts/ADDR_LIMIT_32BIT.S index 4c4b129a..6ad2491d 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.internal.h" -.syscon prsnlty,ADDR_LIMIT_32BIT,0x0800000,-1,-1,-1,-1,-1 +.syscon prsnlty,ADDR_LIMIT_32BIT,0x0800000,0,0,0,0,0 diff --git a/libc/sysv/consts/ADDR_LIMIT_3GB.S b/libc/sysv/consts/ADDR_LIMIT_3GB.S index c7d5949f..6e29ba87 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.internal.h" -.syscon prsnlty,ADDR_LIMIT_3GB,0x8000000,-1,-1,-1,-1,-1 +.syscon prsnlty,ADDR_LIMIT_3GB,0x8000000,0,0,0,0,0 diff --git a/libc/sysv/consts/ADDR_NO_RANDOMIZE.S b/libc/sysv/consts/ADDR_NO_RANDOMIZE.S index 81b94e3b..3a076ae6 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.internal.h" -.syscon prsnlty,ADDR_NO_RANDOMIZE,0x0040000,-1,-1,-1,-1,-1 +.syscon prsnlty,ADDR_NO_RANDOMIZE,0x0040000,0,0,0,0,0 diff --git a/libc/sysv/consts/CLOCK_BOOTTIME.S b/libc/sysv/consts/CLOCK_BOOTTIME.S index b8b69a3f..6093b396 100644 --- a/libc/sysv/consts/CLOCK_BOOTTIME.S +++ b/libc/sysv/consts/CLOCK_BOOTTIME.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon clock,CLOCK_BOOTTIME,7,-1,0,6,6,0 +.syscon clock,CLOCK_BOOTTIME,7,0,0,6,6,0 diff --git a/libc/sysv/consts/CLOCK_BOOTTIME_ALARM.S b/libc/sysv/consts/CLOCK_BOOTTIME_ALARM.S index aed156a2..1c510dc5 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.internal.h" -.syscon clock,CLOCK_BOOTTIME_ALARM,9,-1,0,0,0,0 +.syscon clock,CLOCK_BOOTTIME_ALARM,9,0,0,0,0,0 diff --git a/libc/sysv/consts/CLOCK_MONOTONIC_COARSE.S b/libc/sysv/consts/CLOCK_MONOTONIC_COARSE.S index 78408833..431a181a 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.internal.h" -.syscon clock,CLOCK_MONOTONIC_COARSE,6,-1,0,0,0,0 +.syscon clock,CLOCK_MONOTONIC_COARSE,6,0,0,0,0,0 diff --git a/libc/sysv/consts/CLOCK_PROCESS_CPUTIME_ID.S b/libc/sysv/consts/CLOCK_PROCESS_CPUTIME_ID.S index 6a49bf4b..507a5699 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.internal.h" -.syscon clock,CLOCK_PROCESS_CPUTIME_ID,2,-1,15,2,0x40000000,0 +.syscon clock,CLOCK_PROCESS_CPUTIME_ID,2,0,15,2,0x40000000,0 diff --git a/libc/sysv/consts/CLOCK_REALTIME_ALARM.S b/libc/sysv/consts/CLOCK_REALTIME_ALARM.S index f1ca4da0..4845de57 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.internal.h" -.syscon clock,CLOCK_REALTIME_ALARM,8,-1,0,0,0,0 +.syscon clock,CLOCK_REALTIME_ALARM,8,0,0,0,0,0 diff --git a/libc/sysv/consts/CLOCK_REALTIME_COARSE.S b/libc/sysv/consts/CLOCK_REALTIME_COARSE.S index c98a8385..cb2e5300 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.internal.h" -.syscon clock,CLOCK_REALTIME_COARSE,5,-1,0,0,0,0 +.syscon clock,CLOCK_REALTIME_COARSE,5,0,0,0,0,0 diff --git a/libc/sysv/consts/CLOCK_TAI.S b/libc/sysv/consts/CLOCK_TAI.S index ba7963aa..144ee41e 100644 --- a/libc/sysv/consts/CLOCK_TAI.S +++ b/libc/sysv/consts/CLOCK_TAI.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon clock,CLOCK_TAI,11,-1,0,0,0,0 +.syscon clock,CLOCK_TAI,11,0,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 df60b8f0..59a0db26 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.internal.h" -.syscon clock,CLOCK_THREAD_CPUTIME_ID,3,-1,14,4,0x20000000,0 +.syscon clock,CLOCK_THREAD_CPUTIME_ID,3,0,14,4,0x20000000,0 diff --git a/libc/sysv/consts/EADV.S b/libc/sysv/consts/EADV.S index 2f14cfb1..08cbe908 100644 --- a/libc/sysv/consts/EADV.S +++ b/libc/sysv/consts/EADV.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EADV,68,-1,-1,-1,-1,-1 +.syscon errno,EADV,68,0,0,0,0,0 diff --git a/libc/sysv/consts/EBADE.S b/libc/sysv/consts/EBADE.S index 3f598169..ecaf458f 100644 --- a/libc/sysv/consts/EBADE.S +++ b/libc/sysv/consts/EBADE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EBADE,52,-1,-1,-1,-1,-1 +.syscon errno,EBADE,52,0,0,0,0,0 diff --git a/libc/sysv/consts/EBADMSG.S b/libc/sysv/consts/EBADMSG.S index cad468c1..f0e5b6d2 100644 --- a/libc/sysv/consts/EBADMSG.S +++ b/libc/sysv/consts/EBADMSG.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EBADMSG,74,94,89,92,88,-1 +.syscon errno,EBADMSG,74,94,89,92,88,0 diff --git a/libc/sysv/consts/EBADR.S b/libc/sysv/consts/EBADR.S index 56959497..b1375b23 100644 --- a/libc/sysv/consts/EBADR.S +++ b/libc/sysv/consts/EBADR.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EBADR,53,-1,-1,-1,-1,-1 +.syscon errno,EBADR,53,0,0,0,0,0 diff --git a/libc/sysv/consts/EBADRQC.S b/libc/sysv/consts/EBADRQC.S index c90b5f09..134bfb5a 100644 --- a/libc/sysv/consts/EBADRQC.S +++ b/libc/sysv/consts/EBADRQC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EBADRQC,56,-1,-1,-1,-1,-1 +.syscon errno,EBADRQC,56,0,0,0,0,0 diff --git a/libc/sysv/consts/EBADSLT.S b/libc/sysv/consts/EBADSLT.S index b46f4fce..fb1bff43 100644 --- a/libc/sysv/consts/EBADSLT.S +++ b/libc/sysv/consts/EBADSLT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EBADSLT,57,-1,-1,-1,-1,-1 +.syscon errno,EBADSLT,57,0,0,0,0,0 diff --git a/libc/sysv/consts/EBFONT.S b/libc/sysv/consts/EBFONT.S index bd69179f..4ddb766f 100644 --- a/libc/sysv/consts/EBFONT.S +++ b/libc/sysv/consts/EBFONT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EBFONT,59,-1,-1,-1,-1,-1 +.syscon errno,EBFONT,59,0,0,0,0,0 diff --git a/libc/sysv/consts/ECANCELED.S b/libc/sysv/consts/ECANCELED.S index 3974025c..c311d19c 100644 --- a/libc/sysv/consts/ECANCELED.S +++ b/libc/sysv/consts/ECANCELED.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ECANCELED,125,89,85,88,87,-1 +.syscon errno,ECANCELED,125,89,85,88,87,0 diff --git a/libc/sysv/consts/ECHRNG.S b/libc/sysv/consts/ECHRNG.S index 499cc40b..861ee6eb 100644 --- a/libc/sysv/consts/ECHRNG.S +++ b/libc/sysv/consts/ECHRNG.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ECHRNG,44,-1,-1,-1,-1,-1 +.syscon errno,ECHRNG,44,0,0,0,0,0 diff --git a/libc/sysv/consts/ECOMM.S b/libc/sysv/consts/ECOMM.S index 426b216c..f84f311a 100644 --- a/libc/sysv/consts/ECOMM.S +++ b/libc/sysv/consts/ECOMM.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ECOMM,70,-1,-1,-1,-1,-1 +.syscon errno,ECOMM,70,0,0,0,0,0 diff --git a/libc/sysv/consts/EDOM.S b/libc/sysv/consts/EDOM.S index 2225b344..d3370566 100644 --- a/libc/sysv/consts/EDOM.S +++ b/libc/sysv/consts/EDOM.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EDOM,33,33,33,33,33,-1 +.syscon errno,EDOM,33,33,33,33,33,0 diff --git a/libc/sysv/consts/EDOTDOT.S b/libc/sysv/consts/EDOTDOT.S index 28360677..8329e10d 100644 --- a/libc/sysv/consts/EDOTDOT.S +++ b/libc/sysv/consts/EDOTDOT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EDOTDOT,73,-1,-1,-1,-1,-1 +.syscon errno,EDOTDOT,73,0,0,0,0,0 diff --git a/libc/sysv/consts/EHWPOISON.S b/libc/sysv/consts/EHWPOISON.S index 0a985d2c..7c94d394 100644 --- a/libc/sysv/consts/EHWPOISON.S +++ b/libc/sysv/consts/EHWPOISON.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EHWPOISON,133,-1,-1,-1,-1,-1 +.syscon errno,EHWPOISON,133,0,0,0,0,0 diff --git a/libc/sysv/consts/EIDRM.S b/libc/sysv/consts/EIDRM.S index 6366c8d6..4b8a0a9f 100644 --- a/libc/sysv/consts/EIDRM.S +++ b/libc/sysv/consts/EIDRM.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EIDRM,43,90,82,89,82,-1 +.syscon errno,EIDRM,43,90,82,89,82,0 diff --git a/libc/sysv/consts/EILSEQ.S b/libc/sysv/consts/EILSEQ.S index e7b4fa7f..b9d47cf4 100644 --- a/libc/sysv/consts/EILSEQ.S +++ b/libc/sysv/consts/EILSEQ.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EILSEQ,84,92,86,84,85,-1 +.syscon errno,EILSEQ,84,92,86,84,85,0 diff --git a/libc/sysv/consts/EISNAM.S b/libc/sysv/consts/EISNAM.S index 40f77720..12029e08 100644 --- a/libc/sysv/consts/EISNAM.S +++ b/libc/sysv/consts/EISNAM.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EISNAM,120,-1,-1,-1,-1,-1 +.syscon errno,EISNAM,120,0,0,0,0,0 diff --git a/libc/sysv/consts/EKEYEXPIRED.S b/libc/sysv/consts/EKEYEXPIRED.S index 9c8b10e8..161ed285 100644 --- a/libc/sysv/consts/EKEYEXPIRED.S +++ b/libc/sysv/consts/EKEYEXPIRED.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EKEYEXPIRED,127,-1,-1,-1,-1,-1 +.syscon errno,EKEYEXPIRED,127,0,0,0,0,0 diff --git a/libc/sysv/consts/EKEYREJECTED.S b/libc/sysv/consts/EKEYREJECTED.S index adad73e4..e8f1fb54 100644 --- a/libc/sysv/consts/EKEYREJECTED.S +++ b/libc/sysv/consts/EKEYREJECTED.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EKEYREJECTED,129,-1,-1,-1,-1,-1 +.syscon errno,EKEYREJECTED,129,0,0,0,0,0 diff --git a/libc/sysv/consts/EKEYREVOKED.S b/libc/sysv/consts/EKEYREVOKED.S index 5bdc3b70..beb4031f 100644 --- a/libc/sysv/consts/EKEYREVOKED.S +++ b/libc/sysv/consts/EKEYREVOKED.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EKEYREVOKED,128,-1,-1,-1,-1,-1 +.syscon errno,EKEYREVOKED,128,0,0,0,0,0 diff --git a/libc/sysv/consts/EL2HLT.S b/libc/sysv/consts/EL2HLT.S index 92582627..0415c820 100644 --- a/libc/sysv/consts/EL2HLT.S +++ b/libc/sysv/consts/EL2HLT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EL2HLT,51,-1,-1,-1,-1,-1 +.syscon errno,EL2HLT,51,0,0,0,0,0 diff --git a/libc/sysv/consts/EL2NSYNC.S b/libc/sysv/consts/EL2NSYNC.S index 9d6258b8..31ddd4a9 100644 --- a/libc/sysv/consts/EL2NSYNC.S +++ b/libc/sysv/consts/EL2NSYNC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EL2NSYNC,45,-1,-1,-1,-1,-1 +.syscon errno,EL2NSYNC,45,0,0,0,0,0 diff --git a/libc/sysv/consts/EL3HLT.S b/libc/sysv/consts/EL3HLT.S index 452ff035..c0e150d1 100644 --- a/libc/sysv/consts/EL3HLT.S +++ b/libc/sysv/consts/EL3HLT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EL3HLT,46,-1,-1,-1,-1,-1 +.syscon errno,EL3HLT,46,0,0,0,0,0 diff --git a/libc/sysv/consts/EL3RST.S b/libc/sysv/consts/EL3RST.S index f47b536b..96e3fa63 100644 --- a/libc/sysv/consts/EL3RST.S +++ b/libc/sysv/consts/EL3RST.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EL3RST,47,-1,-1,-1,-1,-1 +.syscon errno,EL3RST,47,0,0,0,0,0 diff --git a/libc/sysv/consts/ELIBACC.S b/libc/sysv/consts/ELIBACC.S index 6e31f20a..76c50141 100644 --- a/libc/sysv/consts/ELIBACC.S +++ b/libc/sysv/consts/ELIBACC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ELIBACC,79,-1,-1,-1,-1,-1 +.syscon errno,ELIBACC,79,0,0,0,0,0 diff --git a/libc/sysv/consts/ELIBBAD.S b/libc/sysv/consts/ELIBBAD.S index 527d54b3..9596cc36 100644 --- a/libc/sysv/consts/ELIBBAD.S +++ b/libc/sysv/consts/ELIBBAD.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ELIBBAD,80,-1,-1,-1,-1,-1 +.syscon errno,ELIBBAD,80,0,0,0,0,0 diff --git a/libc/sysv/consts/ELIBEXEC.S b/libc/sysv/consts/ELIBEXEC.S index b2d82f07..cd9ae754 100644 --- a/libc/sysv/consts/ELIBEXEC.S +++ b/libc/sysv/consts/ELIBEXEC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ELIBEXEC,83,-1,-1,-1,-1,-1 +.syscon errno,ELIBEXEC,83,0,0,0,0,0 diff --git a/libc/sysv/consts/ELIBMAX.S b/libc/sysv/consts/ELIBMAX.S index c9ecd907..2f18e3b0 100644 --- a/libc/sysv/consts/ELIBMAX.S +++ b/libc/sysv/consts/ELIBMAX.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ELIBMAX,82,-1,-1,-1,-1,-1 +.syscon errno,ELIBMAX,82,0,0,0,0,0 diff --git a/libc/sysv/consts/ELIBSCN.S b/libc/sysv/consts/ELIBSCN.S index a0268d32..680f8da4 100644 --- a/libc/sysv/consts/ELIBSCN.S +++ b/libc/sysv/consts/ELIBSCN.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ELIBSCN,81,-1,-1,-1,-1,-1 +.syscon errno,ELIBSCN,81,0,0,0,0,0 diff --git a/libc/sysv/consts/ELNRNG.S b/libc/sysv/consts/ELNRNG.S index 15cf8112..bda2fc53 100644 --- a/libc/sysv/consts/ELNRNG.S +++ b/libc/sysv/consts/ELNRNG.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ELNRNG,48,-1,-1,-1,-1,-1 +.syscon errno,ELNRNG,48,0,0,0,0,0 diff --git a/libc/sysv/consts/EMEDIUMTYPE.S b/libc/sysv/consts/EMEDIUMTYPE.S index 40ed9536..ba830f32 100644 --- a/libc/sysv/consts/EMEDIUMTYPE.S +++ b/libc/sysv/consts/EMEDIUMTYPE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EMEDIUMTYPE,124,-1,-1,86,86,-1 +.syscon errno,EMEDIUMTYPE,124,0,0,86,86,0 diff --git a/libc/sysv/consts/EMULTIHOP.S b/libc/sysv/consts/EMULTIHOP.S index 59e35e0d..434e7875 100644 --- a/libc/sysv/consts/EMULTIHOP.S +++ b/libc/sysv/consts/EMULTIHOP.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EMULTIHOP,72,95,90,-1,94,-1 +.syscon errno,EMULTIHOP,72,95,90,0,94,0 diff --git a/libc/sysv/consts/ENAVAIL.S b/libc/sysv/consts/ENAVAIL.S index 9f08040d..5cbd8fda 100644 --- a/libc/sysv/consts/ENAVAIL.S +++ b/libc/sysv/consts/ENAVAIL.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENAVAIL,119,-1,-1,-1,-1,-1 +.syscon errno,ENAVAIL,119,0,0,0,0,0 diff --git a/libc/sysv/consts/ENDRUNDISC.S b/libc/sysv/consts/ENDRUNDISC.S index 9fe54df9..20dfae40 100644 --- a/libc/sysv/consts/ENDRUNDISC.S +++ b/libc/sysv/consts/ENDRUNDISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,ENDRUNDISC,0,0,0,0x9,0x9,-1 +.syscon termios,ENDRUNDISC,0,0,0,0x9,0x9,0 diff --git a/libc/sysv/consts/ENOANO.S b/libc/sysv/consts/ENOANO.S index eda84bb5..235babda 100644 --- a/libc/sysv/consts/ENOANO.S +++ b/libc/sysv/consts/ENOANO.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOANO,55,-1,-1,-1,-1,-1 +.syscon errno,ENOANO,55,0,0,0,0,0 diff --git a/libc/sysv/consts/ENOCSI.S b/libc/sysv/consts/ENOCSI.S index b1f6b50e..9c5de5dd 100644 --- a/libc/sysv/consts/ENOCSI.S +++ b/libc/sysv/consts/ENOCSI.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOCSI,50,-1,-1,-1,-1,-1 +.syscon errno,ENOCSI,50,0,0,0,0,0 diff --git a/libc/sysv/consts/ENODATA.S b/libc/sysv/consts/ENODATA.S index 98f9dfa6..e9b938bb 100644 --- a/libc/sysv/consts/ENODATA.S +++ b/libc/sysv/consts/ENODATA.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENODATA,61,96,-1,-1,89,-1 +.syscon errno,ENODATA,61,96,0,0,89,0 diff --git a/libc/sysv/consts/ENOKEY.S b/libc/sysv/consts/ENOKEY.S index 55508eda..bc11fdeb 100644 --- a/libc/sysv/consts/ENOKEY.S +++ b/libc/sysv/consts/ENOKEY.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOKEY,126,-1,-1,-1,-1,-1 +.syscon errno,ENOKEY,126,0,0,0,0,0 diff --git a/libc/sysv/consts/ENOLCK.S b/libc/sysv/consts/ENOLCK.S index ba4b6c47..c547004a 100644 --- a/libc/sysv/consts/ENOLCK.S +++ b/libc/sysv/consts/ENOLCK.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOLCK,37,77,77,77,77,-1 +.syscon errno,ENOLCK,37,77,77,77,77,0 diff --git a/libc/sysv/consts/ENOLINK.S b/libc/sysv/consts/ENOLINK.S index aa187bbd..875ea6b1 100644 --- a/libc/sysv/consts/ENOLINK.S +++ b/libc/sysv/consts/ENOLINK.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOLINK,67,97,91,-1,95,-1 +.syscon errno,ENOLINK,67,97,91,0,95,0 diff --git a/libc/sysv/consts/ENOMEDIUM.S b/libc/sysv/consts/ENOMEDIUM.S index 78791b5a..0c9a5d03 100644 --- a/libc/sysv/consts/ENOMEDIUM.S +++ b/libc/sysv/consts/ENOMEDIUM.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOMEDIUM,123,-1,-1,85,85,-1 +.syscon errno,ENOMEDIUM,123,0,0,85,85,0 diff --git a/libc/sysv/consts/ENOMSG.S b/libc/sysv/consts/ENOMSG.S index f2175262..b30cc196 100644 --- a/libc/sysv/consts/ENOMSG.S +++ b/libc/sysv/consts/ENOMSG.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOMSG,42,91,83,90,83,-1 +.syscon errno,ENOMSG,42,91,83,90,83,0 diff --git a/libc/sysv/consts/ENONET.S b/libc/sysv/consts/ENONET.S index 9dce36a1..3279bcbc 100644 --- a/libc/sysv/consts/ENONET.S +++ b/libc/sysv/consts/ENONET.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENONET,64,-1,-1,-1,-1,-1 +.syscon errno,ENONET,64,0,0,0,0,0 diff --git a/libc/sysv/consts/ENOPKG.S b/libc/sysv/consts/ENOPKG.S index a9697b7f..d05ef3a0 100644 --- a/libc/sysv/consts/ENOPKG.S +++ b/libc/sysv/consts/ENOPKG.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOPKG,65,-1,-1,-1,-1,-1 +.syscon errno,ENOPKG,65,0,0,0,0,0 diff --git a/libc/sysv/consts/ENOSR.S b/libc/sysv/consts/ENOSR.S index 4ce1db6f..86ff4c52 100644 --- a/libc/sysv/consts/ENOSR.S +++ b/libc/sysv/consts/ENOSR.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOSR,63,98,-1,-1,90,-1 +.syscon errno,ENOSR,63,98,0,0,90,0 diff --git a/libc/sysv/consts/ENOSTR.S b/libc/sysv/consts/ENOSTR.S index acffd68f..749624fa 100644 --- a/libc/sysv/consts/ENOSTR.S +++ b/libc/sysv/consts/ENOSTR.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOSTR,60,99,-1,-1,91,-1 +.syscon errno,ENOSTR,60,99,0,0,91,0 diff --git a/libc/sysv/consts/ENOTNAM.S b/libc/sysv/consts/ENOTNAM.S index fbfdb08e..b1b4db47 100644 --- a/libc/sysv/consts/ENOTNAM.S +++ b/libc/sysv/consts/ENOTNAM.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOTNAM,118,-1,-1,-1,-1,-1 +.syscon errno,ENOTNAM,118,0,0,0,0,0 diff --git a/libc/sysv/consts/ENOTRECOVERABLE.S b/libc/sysv/consts/ENOTRECOVERABLE.S index c6c6c6f2..2a10e41e 100644 --- a/libc/sysv/consts/ENOTRECOVERABLE.S +++ b/libc/sysv/consts/ENOTRECOVERABLE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOTRECOVERABLE,131,104,95,93,98,-1 +.syscon errno,ENOTRECOVERABLE,131,104,95,93,98,0 diff --git a/libc/sysv/consts/ENOTUNIQ.S b/libc/sysv/consts/ENOTUNIQ.S index a0da65f6..3212f49c 100644 --- a/libc/sysv/consts/ENOTUNIQ.S +++ b/libc/sysv/consts/ENOTUNIQ.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ENOTUNIQ,76,-1,-1,-1,-1,-1 +.syscon errno,ENOTUNIQ,76,0,0,0,0,0 diff --git a/libc/sysv/consts/EOVERFLOW.S b/libc/sysv/consts/EOVERFLOW.S index 4edc95de..77a53b90 100644 --- a/libc/sysv/consts/EOVERFLOW.S +++ b/libc/sysv/consts/EOVERFLOW.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EOVERFLOW,75,84,84,87,84,-1 +.syscon errno,EOVERFLOW,75,84,84,87,84,0 diff --git a/libc/sysv/consts/EOWNERDEAD.S b/libc/sysv/consts/EOWNERDEAD.S index bf2a9771..c91cbe1b 100644 --- a/libc/sysv/consts/EOWNERDEAD.S +++ b/libc/sysv/consts/EOWNERDEAD.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EOWNERDEAD,130,105,96,94,97,-1 +.syscon errno,EOWNERDEAD,130,105,96,94,97,0 diff --git a/libc/sysv/consts/EPROTO.S b/libc/sysv/consts/EPROTO.S index 436b4b3d..1e532d93 100644 --- a/libc/sysv/consts/EPROTO.S +++ b/libc/sysv/consts/EPROTO.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EPROTO,71,100,92,95,96,-1 +.syscon errno,EPROTO,71,100,92,95,96,0 diff --git a/libc/sysv/consts/ERANGE.S b/libc/sysv/consts/ERANGE.S index 09f8535a..0c46471d 100644 --- a/libc/sysv/consts/ERANGE.S +++ b/libc/sysv/consts/ERANGE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ERANGE,34,34,34,34,34,-1 +.syscon errno,ERANGE,34,34,34,34,34,0 diff --git a/libc/sysv/consts/EREMCHG.S b/libc/sysv/consts/EREMCHG.S index be770803..0097bc85 100644 --- a/libc/sysv/consts/EREMCHG.S +++ b/libc/sysv/consts/EREMCHG.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EREMCHG,78,-1,-1,-1,-1,-1 +.syscon errno,EREMCHG,78,0,0,0,0,0 diff --git a/libc/sysv/consts/EREMOTEIO.S b/libc/sysv/consts/EREMOTEIO.S index b5fd29a5..99326c17 100644 --- a/libc/sysv/consts/EREMOTEIO.S +++ b/libc/sysv/consts/EREMOTEIO.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EREMOTEIO,121,-1,-1,-1,-1,-1 +.syscon errno,EREMOTEIO,121,0,0,0,0,0 diff --git a/libc/sysv/consts/ERESTART.S b/libc/sysv/consts/ERESTART.S index d259eaca..646d27df 100644 --- a/libc/sysv/consts/ERESTART.S +++ b/libc/sysv/consts/ERESTART.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ERESTART,85,-1,-1,-1,-3,-1 +.syscon errno,ERESTART,85,0,0,0,-3,0 diff --git a/libc/sysv/consts/ERFKILL.S b/libc/sysv/consts/ERFKILL.S index c64e4ddb..2f331d26 100644 --- a/libc/sysv/consts/ERFKILL.S +++ b/libc/sysv/consts/ERFKILL.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ERFKILL,132,-1,-1,-1,-1,-1 +.syscon errno,ERFKILL,132,0,0,0,0,0 diff --git a/libc/sysv/consts/ESRMNT.S b/libc/sysv/consts/ESRMNT.S index 32e6cc91..99b5f960 100644 --- a/libc/sysv/consts/ESRMNT.S +++ b/libc/sysv/consts/ESRMNT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ESRMNT,69,-1,-1,-1,-1,-1 +.syscon errno,ESRMNT,69,0,0,0,0,0 diff --git a/libc/sysv/consts/ESTRPIPE.S b/libc/sysv/consts/ESTRPIPE.S index 8dd4760c..8892e8b2 100644 --- a/libc/sysv/consts/ESTRPIPE.S +++ b/libc/sysv/consts/ESTRPIPE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ESTRPIPE,86,-1,-1,-1,-1,-1 +.syscon errno,ESTRPIPE,86,0,0,0,0,0 diff --git a/libc/sysv/consts/ETIME.S b/libc/sysv/consts/ETIME.S index fd4498aa..e338e9f6 100644 --- a/libc/sysv/consts/ETIME.S +++ b/libc/sysv/consts/ETIME.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,ETIME,62,101,-1,-1,92,-1 +.syscon errno,ETIME,62,101,0,0,92,0 diff --git a/libc/sysv/consts/EUCLEAN.S b/libc/sysv/consts/EUCLEAN.S index 93dd638d..a827c02e 100644 --- a/libc/sysv/consts/EUCLEAN.S +++ b/libc/sysv/consts/EUCLEAN.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EUCLEAN,117,-1,-1,-1,-1,-1 +.syscon errno,EUCLEAN,117,0,0,0,0,0 diff --git a/libc/sysv/consts/EUNATCH.S b/libc/sysv/consts/EUNATCH.S index 4b2e6ef5..5595e478 100644 --- a/libc/sysv/consts/EUNATCH.S +++ b/libc/sysv/consts/EUNATCH.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EUNATCH,49,-1,-1,-1,-1,-1 +.syscon errno,EUNATCH,49,0,0,0,0,0 diff --git a/libc/sysv/consts/EXFULL.S b/libc/sysv/consts/EXFULL.S index a42d8706..0c0aad1d 100644 --- a/libc/sysv/consts/EXFULL.S +++ b/libc/sysv/consts/EXFULL.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon errno,EXFULL,54,-1,-1,-1,-1,-1 +.syscon errno,EXFULL,54,0,0,0,0,0 diff --git a/libc/sysv/consts/FDPIC_FUNCPTRS.S b/libc/sysv/consts/FDPIC_FUNCPTRS.S index aeed9b70..4140c78c 100644 --- a/libc/sysv/consts/FDPIC_FUNCPTRS.S +++ b/libc/sysv/consts/FDPIC_FUNCPTRS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon prsnlty,FDPIC_FUNCPTRS,0x0080000,-1,-1,-1,-1,-1 +.syscon prsnlty,FDPIC_FUNCPTRS,0x0080000,0,0,0,0,0 diff --git a/libc/sysv/consts/H4DISC.S b/libc/sysv/consts/H4DISC.S index 4da1e90b..28debcff 100644 --- a/libc/sysv/consts/H4DISC.S +++ b/libc/sysv/consts/H4DISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,H4DISC,0,0,0x7,0,0,-1 +.syscon termios,H4DISC,0,0,0x7,0,0,0 diff --git a/libc/sysv/consts/MMAP_PAGE_ZERO.S b/libc/sysv/consts/MMAP_PAGE_ZERO.S index 897e1e74..44a90993 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.internal.h" -.syscon prsnlty,MMAP_PAGE_ZERO,0x0100000,-1,-1,-1,-1,-1 +.syscon prsnlty,MMAP_PAGE_ZERO,0x0100000,0,0,0,0,0 diff --git a/libc/sysv/consts/NETGRAPHDISC.S b/libc/sysv/consts/NETGRAPHDISC.S index 71fb4f79..878e9d91 100644 --- a/libc/sysv/consts/NETGRAPHDISC.S +++ b/libc/sysv/consts/NETGRAPHDISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,NETGRAPHDISC,0,0,0x6,0,0,-1 +.syscon termios,NETGRAPHDISC,0,0,0x6,0,0,0 diff --git a/libc/sysv/consts/NMEADISC.S b/libc/sysv/consts/NMEADISC.S index 223733c0..9f8bf701 100644 --- a/libc/sysv/consts/NMEADISC.S +++ b/libc/sysv/consts/NMEADISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,NMEADISC,0,0,0,0x7,0x7,-1 +.syscon termios,NMEADISC,0,0,0,0x7,0x7,0 diff --git a/libc/sysv/consts/PPPDISC.S b/libc/sysv/consts/PPPDISC.S index 314548a9..18ed9e94 100644 --- a/libc/sysv/consts/PPPDISC.S +++ b/libc/sysv/consts/PPPDISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,PPPDISC,0,0x5,0x5,0x5,0x5,-1 +.syscon termios,PPPDISC,0,0x5,0x5,0x5,0x5,0 diff --git a/libc/sysv/consts/READ_IMPLIES_EXEC.S b/libc/sysv/consts/READ_IMPLIES_EXEC.S index d815efa1..c2a74915 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.internal.h" -.syscon prsnlty,READ_IMPLIES_EXEC,0x0400000,-1,-1,-1,-1,-1 +.syscon prsnlty,READ_IMPLIES_EXEC,0x0400000,0,0,0,0,0 diff --git a/libc/sysv/consts/RLIMIT_AS.S b/libc/sysv/consts/RLIMIT_AS.S index d27982e3..98cade3b 100644 --- a/libc/sysv/consts/RLIMIT_AS.S +++ b/libc/sysv/consts/RLIMIT_AS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_AS,9,5,10,-1,-1,-1 +.syscon rlim,RLIMIT_AS,9,5,10,127,127,127 diff --git a/libc/sysv/consts/RLIMIT_CORE.S b/libc/sysv/consts/RLIMIT_CORE.S index 41f091cd..5901b08f 100644 --- a/libc/sysv/consts/RLIMIT_CORE.S +++ b/libc/sysv/consts/RLIMIT_CORE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_CORE,4,4,4,4,4,-1 +.syscon rlim,RLIMIT_CORE,4,4,4,4,4,127 diff --git a/libc/sysv/consts/RLIMIT_CPU.S b/libc/sysv/consts/RLIMIT_CPU.S index 44395689..5acec12a 100644 --- a/libc/sysv/consts/RLIMIT_CPU.S +++ b/libc/sysv/consts/RLIMIT_CPU.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_CPU,0,0,0,0,0,-1 +.syscon rlim,RLIMIT_CPU,0,0,0,0,0,127 diff --git a/libc/sysv/consts/RLIMIT_DATA.S b/libc/sysv/consts/RLIMIT_DATA.S index 6d3a5c50..dded0c05 100644 --- a/libc/sysv/consts/RLIMIT_DATA.S +++ b/libc/sysv/consts/RLIMIT_DATA.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_DATA,2,2,2,2,2,-1 +.syscon rlim,RLIMIT_DATA,2,2,2,2,2,127 diff --git a/libc/sysv/consts/RLIMIT_FSIZE.S b/libc/sysv/consts/RLIMIT_FSIZE.S index 95277571..8e1daa55 100644 --- a/libc/sysv/consts/RLIMIT_FSIZE.S +++ b/libc/sysv/consts/RLIMIT_FSIZE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_FSIZE,1,1,1,1,1,-1 +.syscon rlim,RLIMIT_FSIZE,1,1,1,1,1,127 diff --git a/libc/sysv/consts/RLIMIT_LOCKS.S b/libc/sysv/consts/RLIMIT_LOCKS.S index 6509ca7a..3656d1bd 100644 --- a/libc/sysv/consts/RLIMIT_LOCKS.S +++ b/libc/sysv/consts/RLIMIT_LOCKS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_LOCKS,10,-1,-1,-1,-1,-1 +.syscon rlim,RLIMIT_LOCKS,10,127,127,127,127,127 diff --git a/libc/sysv/consts/RLIMIT_MEMLOCK.S b/libc/sysv/consts/RLIMIT_MEMLOCK.S index ca91eb79..9b7e9e9a 100644 --- a/libc/sysv/consts/RLIMIT_MEMLOCK.S +++ b/libc/sysv/consts/RLIMIT_MEMLOCK.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_MEMLOCK,8,6,6,6,6,-1 +.syscon rlim,RLIMIT_MEMLOCK,8,6,6,6,6,127 diff --git a/libc/sysv/consts/RLIMIT_MSGQUEUE.S b/libc/sysv/consts/RLIMIT_MSGQUEUE.S index a78d0193..6b526536 100644 --- a/libc/sysv/consts/RLIMIT_MSGQUEUE.S +++ b/libc/sysv/consts/RLIMIT_MSGQUEUE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_MSGQUEUE,12,-1,-1,-1,-1,-1 +.syscon rlim,RLIMIT_MSGQUEUE,12,127,127,127,127,127 diff --git a/libc/sysv/consts/RLIMIT_NICE.S b/libc/sysv/consts/RLIMIT_NICE.S index 6661f05f..0e023da2 100644 --- a/libc/sysv/consts/RLIMIT_NICE.S +++ b/libc/sysv/consts/RLIMIT_NICE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_NICE,13,-1,-1,-1,-1,-1 +.syscon rlim,RLIMIT_NICE,13,127,127,127,127,127 diff --git a/libc/sysv/consts/RLIMIT_NLIMITS.S b/libc/sysv/consts/RLIMIT_NLIMITS.S index a211fa3f..84104578 100644 --- a/libc/sysv/consts/RLIMIT_NLIMITS.S +++ b/libc/sysv/consts/RLIMIT_NLIMITS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_NLIMITS,16,-1,-1,-1,-1,-1 +.syscon rlim,RLIMIT_NLIMITS,16,127,127,127,127,127 diff --git a/libc/sysv/consts/RLIMIT_NOFILE.S b/libc/sysv/consts/RLIMIT_NOFILE.S index 6a8fc694..2708a6cd 100644 --- a/libc/sysv/consts/RLIMIT_NOFILE.S +++ b/libc/sysv/consts/RLIMIT_NOFILE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_NOFILE,7,8,8,8,8,-1 +.syscon rlim,RLIMIT_NOFILE,7,8,8,8,8,127 diff --git a/libc/sysv/consts/RLIMIT_NPROC.S b/libc/sysv/consts/RLIMIT_NPROC.S index 9bf4f44d..a4bb784e 100644 --- a/libc/sysv/consts/RLIMIT_NPROC.S +++ b/libc/sysv/consts/RLIMIT_NPROC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_NPROC,6,7,7,7,7,-1 +.syscon rlim,RLIMIT_NPROC,6,7,7,7,7,127 diff --git a/libc/sysv/consts/RLIMIT_RSS.S b/libc/sysv/consts/RLIMIT_RSS.S index 0b4577ea..2ab654e5 100644 --- a/libc/sysv/consts/RLIMIT_RSS.S +++ b/libc/sysv/consts/RLIMIT_RSS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_RSS,5,5,5,5,5,-1 +.syscon rlim,RLIMIT_RSS,5,5,5,5,5,127 diff --git a/libc/sysv/consts/RLIMIT_RTPRIO.S b/libc/sysv/consts/RLIMIT_RTPRIO.S index 0fe37625..c6c03638 100644 --- a/libc/sysv/consts/RLIMIT_RTPRIO.S +++ b/libc/sysv/consts/RLIMIT_RTPRIO.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_RTPRIO,14,-1,-1,-1,-1,-1 +.syscon rlim,RLIMIT_RTPRIO,14,127,127,127,127,127 diff --git a/libc/sysv/consts/RLIMIT_SIGPENDING.S b/libc/sysv/consts/RLIMIT_SIGPENDING.S index bbfe23a3..f3c87217 100644 --- a/libc/sysv/consts/RLIMIT_SIGPENDING.S +++ b/libc/sysv/consts/RLIMIT_SIGPENDING.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_SIGPENDING,11,-1,-1,-1,-1,-1 +.syscon rlim,RLIMIT_SIGPENDING,11,127,127,127,127,127 diff --git a/libc/sysv/consts/RLIMIT_STACK.S b/libc/sysv/consts/RLIMIT_STACK.S index 49aef8b8..e4bde29a 100644 --- a/libc/sysv/consts/RLIMIT_STACK.S +++ b/libc/sysv/consts/RLIMIT_STACK.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon rlim,RLIMIT_STACK,3,3,3,3,3,-1 +.syscon rlim,RLIMIT_STACK,3,3,3,3,3,127 diff --git a/libc/sysv/consts/SHORT_INODE.S b/libc/sysv/consts/SHORT_INODE.S index 939490c7..4605ea47 100644 --- a/libc/sysv/consts/SHORT_INODE.S +++ b/libc/sysv/consts/SHORT_INODE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon prsnlty,SHORT_INODE,0x1000000,-1,-1,-1,-1,-1 +.syscon prsnlty,SHORT_INODE,0x1000000,0,0,0,0,0 diff --git a/libc/sysv/consts/SLIPDISC.S b/libc/sysv/consts/SLIPDISC.S index d5114c3a..fa8ce10a 100644 --- a/libc/sysv/consts/SLIPDISC.S +++ b/libc/sysv/consts/SLIPDISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,SLIPDISC,0,0x4,0x4,0x4,0x4,-1 +.syscon termios,SLIPDISC,0,0x4,0x4,0x4,0x4,0 diff --git a/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.S b/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.S index c0026f04..99d8ee7e 100644 --- a/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.S +++ b/libc/sysv/consts/SO_EXCLUSIVEADDRUSE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon so,SO_EXCLUSIVEADDRUSE,-1,-1,-1,-1,-1,0xfffffffb +.syscon so,SO_EXCLUSIVEADDRUSE,0,0,0,0,0,0xfffffffb diff --git a/libc/sysv/consts/SO_REUSEADDR.S b/libc/sysv/consts/SO_REUSEADDR.S index a344ed6e..7c52c325 100644 --- a/libc/sysv/consts/SO_REUSEADDR.S +++ b/libc/sysv/consts/SO_REUSEADDR.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon so,SO_REUSEADDR,2,4,4,4,4,-1 +.syscon so,SO_REUSEADDR,2,4,4,4,4,0 diff --git a/libc/sysv/consts/STICKY_TIMEOUTS.S b/libc/sysv/consts/STICKY_TIMEOUTS.S index 4d92843f..e15c5f29 100644 --- a/libc/sysv/consts/STICKY_TIMEOUTS.S +++ b/libc/sysv/consts/STICKY_TIMEOUTS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon prsnlty,STICKY_TIMEOUTS,0x4000000,-1,-1,-1,-1,-1 +.syscon prsnlty,STICKY_TIMEOUTS,0x4000000,0,0,0,0,0 diff --git a/libc/sysv/consts/STRIPDISC.S b/libc/sysv/consts/STRIPDISC.S index 12bbb870..38a02e0d 100644 --- a/libc/sysv/consts/STRIPDISC.S +++ b/libc/sysv/consts/STRIPDISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,STRIPDISC,0,0,0,0x6,0x6,-1 +.syscon termios,STRIPDISC,0,0,0,0x6,0x6,0 diff --git a/libc/sysv/consts/TABLDISC.S b/libc/sysv/consts/TABLDISC.S index bc2f07e0..7dc72ad7 100644 --- a/libc/sysv/consts/TABLDISC.S +++ b/libc/sysv/consts/TABLDISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TABLDISC,0,0x3,0,0x3,0x3,-1 +.syscon termios,TABLDISC,0,0x3,0,0x3,0x3,0 diff --git a/libc/sysv/consts/TCGETS.S b/libc/sysv/consts/TCGETS.S index 12839733..61490ee3 100644 --- a/libc/sysv/consts/TCGETS.S +++ b/libc/sysv/consts/TCGETS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TCGETS,0x5401,0x40487413,0x402c7413,0x402c7413,0x402c7413,-1 +.syscon termios,TCGETS,0x5401,0x40487413,0x402c7413,0x402c7413,0x402c7413,0 diff --git a/libc/sysv/consts/TIOCCBRK.S b/libc/sysv/consts/TIOCCBRK.S index 187045c1..891cdc87 100644 --- a/libc/sysv/consts/TIOCCBRK.S +++ b/libc/sysv/consts/TIOCCBRK.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCCBRK,0x5428,0x2000747a,0x2000747a,0x2000747a,0x2000747a,-1 +.syscon termios,TIOCCBRK,0x5428,0x2000747a,0x2000747a,0x2000747a,0x2000747a,0 diff --git a/libc/sysv/consts/TIOCCDTR.S b/libc/sysv/consts/TIOCCDTR.S index 63cc8799..66e56ce2 100644 --- a/libc/sysv/consts/TIOCCDTR.S +++ b/libc/sysv/consts/TIOCCDTR.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCCDTR,0,0x20007478,0x20007478,0x20007478,0x20007478,-1 +.syscon termios,TIOCCDTR,0,0x20007478,0x20007478,0x20007478,0x20007478,0 diff --git a/libc/sysv/consts/TIOCCHKVERAUTH.S b/libc/sysv/consts/TIOCCHKVERAUTH.S index a31c37db..05b30a6e 100644 --- a/libc/sysv/consts/TIOCCHKVERAUTH.S +++ b/libc/sysv/consts/TIOCCHKVERAUTH.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCCHKVERAUTH,0,0,0,0x2000741e,0x2000741e,-1 +.syscon termios,TIOCCHKVERAUTH,0,0,0,0x2000741e,0x2000741e,0 diff --git a/libc/sysv/consts/TIOCCONS.S b/libc/sysv/consts/TIOCCONS.S index f8614a30..014ac687 100644 --- a/libc/sysv/consts/TIOCCONS.S +++ b/libc/sysv/consts/TIOCCONS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCCONS,0x541d,0x80047462,0x80047462,0x80047462,0x80047462,-1 +.syscon termios,TIOCCONS,0x541d,0x80047462,0x80047462,0x80047462,0x80047462,0 diff --git a/libc/sysv/consts/TIOCDRAIN.S b/libc/sysv/consts/TIOCDRAIN.S index 2b3c4d27..6d3a7e5d 100644 --- a/libc/sysv/consts/TIOCDRAIN.S +++ b/libc/sysv/consts/TIOCDRAIN.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCDRAIN,0,0x2000745e,0x2000745e,0x2000745e,0x2000745e,-1 +.syscon termios,TIOCDRAIN,0,0x2000745e,0x2000745e,0x2000745e,0x2000745e,0 diff --git a/libc/sysv/consts/TIOCEXT.S b/libc/sysv/consts/TIOCEXT.S index abfee4b6..7b07f160 100644 --- a/libc/sysv/consts/TIOCEXT.S +++ b/libc/sysv/consts/TIOCEXT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCEXT,0,0x80047460,0x80047460,0x80047460,0x80047460,-1 +.syscon termios,TIOCEXT,0,0x80047460,0x80047460,0x80047460,0x80047460,0 diff --git a/libc/sysv/consts/TIOCFLAG_CLOCAL.S b/libc/sysv/consts/TIOCFLAG_CLOCAL.S index 6ba0790d..4e073236 100644 --- a/libc/sysv/consts/TIOCFLAG_CLOCAL.S +++ b/libc/sysv/consts/TIOCFLAG_CLOCAL.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCFLAG_CLOCAL,0,0,0,0x2,0x2,-1 +.syscon termios,TIOCFLAG_CLOCAL,0,0,0,0x2,0x2,0 diff --git a/libc/sysv/consts/TIOCFLAG_MDMBUF.S b/libc/sysv/consts/TIOCFLAG_MDMBUF.S index 487aee1e..e3c9dcac 100644 --- a/libc/sysv/consts/TIOCFLAG_MDMBUF.S +++ b/libc/sysv/consts/TIOCFLAG_MDMBUF.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCFLAG_MDMBUF,0,0,0,0x8,0x8,-1 +.syscon termios,TIOCFLAG_MDMBUF,0,0,0,0x8,0x8,0 diff --git a/libc/sysv/consts/TIOCFLAG_PPS.S b/libc/sysv/consts/TIOCFLAG_PPS.S index 1430b595..dcb2ee5b 100644 --- a/libc/sysv/consts/TIOCFLAG_PPS.S +++ b/libc/sysv/consts/TIOCFLAG_PPS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCFLAG_PPS,0,0,0,0x10,0x10,-1 +.syscon termios,TIOCFLAG_PPS,0,0,0,0x10,0x10,0 diff --git a/libc/sysv/consts/TIOCFLAG_SOFTCAR.S b/libc/sysv/consts/TIOCFLAG_SOFTCAR.S index da7037ed..a4b25437 100644 --- a/libc/sysv/consts/TIOCFLAG_SOFTCAR.S +++ b/libc/sysv/consts/TIOCFLAG_SOFTCAR.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCFLAG_SOFTCAR,0,0,0,0x1,0x1,-1 +.syscon termios,TIOCFLAG_SOFTCAR,0,0,0,0x1,0x1,0 diff --git a/libc/sysv/consts/TIOCFLUSH.S b/libc/sysv/consts/TIOCFLUSH.S index f73920f3..311f1ffe 100644 --- a/libc/sysv/consts/TIOCFLUSH.S +++ b/libc/sysv/consts/TIOCFLUSH.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCFLUSH,0,0x80047410,0x80047410,0x80047410,0x80047410,-1 +.syscon termios,TIOCFLUSH,0,0x80047410,0x80047410,0x80047410,0x80047410,0 diff --git a/libc/sysv/consts/TIOCGDRAINWAIT.S b/libc/sysv/consts/TIOCGDRAINWAIT.S index e2b5503c..b6bf1181 100644 --- a/libc/sysv/consts/TIOCGDRAINWAIT.S +++ b/libc/sysv/consts/TIOCGDRAINWAIT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCGDRAINWAIT,0,0x40047456,0x40047456,0,0,-1 +.syscon termios,TIOCGDRAINWAIT,0,0x40047456,0x40047456,0,0,0 diff --git a/libc/sysv/consts/TIOCGETA.S b/libc/sysv/consts/TIOCGETA.S index 6ad9c33a..3c452c6f 100644 --- a/libc/sysv/consts/TIOCGETA.S +++ b/libc/sysv/consts/TIOCGETA.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon compat,TIOCGETA,0x5401,0x40487413,0x402c7413,0x402c7413,0x402c7413,-1 +.syscon compat,TIOCGETA,0x5401,0x40487413,0x402c7413,0x402c7413,0x402c7413,0 diff --git a/libc/sysv/consts/TIOCGETD.S b/libc/sysv/consts/TIOCGETD.S index 978b8c2d..f4ad1dba 100644 --- a/libc/sysv/consts/TIOCGETD.S +++ b/libc/sysv/consts/TIOCGETD.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCGETD,0x5424,0x4004741a,0x4004741a,0x4004741a,0x4004741a,-1 +.syscon termios,TIOCGETD,0x5424,0x4004741a,0x4004741a,0x4004741a,0x4004741a,0 diff --git a/libc/sysv/consts/TIOCGFLAGS.S b/libc/sysv/consts/TIOCGFLAGS.S index 7980a80f..182f380b 100644 --- a/libc/sysv/consts/TIOCGFLAGS.S +++ b/libc/sysv/consts/TIOCGFLAGS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCGFLAGS,0,0,0,0x4004745d,0x4004745d,-1 +.syscon termios,TIOCGFLAGS,0,0,0,0x4004745d,0x4004745d,0 diff --git a/libc/sysv/consts/TIOCGPGRP.S b/libc/sysv/consts/TIOCGPGRP.S index 5dcfc578..a54c6b65 100644 --- a/libc/sysv/consts/TIOCGPGRP.S +++ b/libc/sysv/consts/TIOCGPGRP.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCGPGRP,0x540f,0x40047477,0x40047477,0x40047477,0x40047477,-1 +.syscon termios,TIOCGPGRP,0x540f,0x40047477,0x40047477,0x40047477,0x40047477,0 diff --git a/libc/sysv/consts/TIOCGPTN.S b/libc/sysv/consts/TIOCGPTN.S index d3ade014..6bb173cc 100644 --- a/libc/sysv/consts/TIOCGPTN.S +++ b/libc/sysv/consts/TIOCGPTN.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCGPTN,0x80045430,0,0x4004740f,0,0,-1 +.syscon termios,TIOCGPTN,0x80045430,0,0x4004740f,0,0,0 diff --git a/libc/sysv/consts/TIOCGSID.S b/libc/sysv/consts/TIOCGSID.S index dcc4f271..8c342d9c 100644 --- a/libc/sysv/consts/TIOCGSID.S +++ b/libc/sysv/consts/TIOCGSID.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCGSID,0x5429,0,0x40047463,0x40047463,0x40047463,-1 +.syscon termios,TIOCGSID,0x5429,0,0x40047463,0x40047463,0x40047463,0 diff --git a/libc/sysv/consts/TIOCGTSTAMP.S b/libc/sysv/consts/TIOCGTSTAMP.S index 2e2a7bbb..c7d507d5 100644 --- a/libc/sysv/consts/TIOCGTSTAMP.S +++ b/libc/sysv/consts/TIOCGTSTAMP.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCGTSTAMP,0,0,0,0x4010745b,0x4010745b,-1 +.syscon termios,TIOCGTSTAMP,0,0,0,0x4010745b,0x4010745b,0 diff --git a/libc/sysv/consts/TIOCNOTTY.S b/libc/sysv/consts/TIOCNOTTY.S index 3161bb48..83dfbf63 100644 --- a/libc/sysv/consts/TIOCNOTTY.S +++ b/libc/sysv/consts/TIOCNOTTY.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCNOTTY,0x5422,0x20007471,0x20007471,0x20007471,0x20007471,-1 +.syscon termios,TIOCNOTTY,0x5422,0x20007471,0x20007471,0x20007471,0x20007471,0 diff --git a/libc/sysv/consts/TIOCNXCL.S b/libc/sysv/consts/TIOCNXCL.S index e02b5072..62306a4f 100644 --- a/libc/sysv/consts/TIOCNXCL.S +++ b/libc/sysv/consts/TIOCNXCL.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCNXCL,0x540d,0x2000740e,0x2000740e,0x2000740e,0x2000740e,-1 +.syscon termios,TIOCNXCL,0x540d,0x2000740e,0x2000740e,0x2000740e,0x2000740e,0 diff --git a/libc/sysv/consts/TIOCOUTQ.S b/libc/sysv/consts/TIOCOUTQ.S index 8b550a2b..9427ef4f 100644 --- a/libc/sysv/consts/TIOCOUTQ.S +++ b/libc/sysv/consts/TIOCOUTQ.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCOUTQ,0x5411,0x40047473,0x40047473,0x40047473,0x40047473,-1 +.syscon termios,TIOCOUTQ,0x5411,0x40047473,0x40047473,0x40047473,0x40047473,0 diff --git a/libc/sysv/consts/TIOCPTMASTER.S b/libc/sysv/consts/TIOCPTMASTER.S index 39252223..90d75ab3 100644 --- a/libc/sysv/consts/TIOCPTMASTER.S +++ b/libc/sysv/consts/TIOCPTMASTER.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCPTMASTER,0,0,0x2000741c,0,0,-1 +.syscon termios,TIOCPTMASTER,0,0,0x2000741c,0,0,0 diff --git a/libc/sysv/consts/TIOCREMOTE.S b/libc/sysv/consts/TIOCREMOTE.S index 2c335f2c..b89482ee 100644 --- a/libc/sysv/consts/TIOCREMOTE.S +++ b/libc/sysv/consts/TIOCREMOTE.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCREMOTE,0,0x80047469,0,0x80047469,0x80047469,-1 +.syscon termios,TIOCREMOTE,0,0x80047469,0,0x80047469,0x80047469,0 diff --git a/libc/sysv/consts/TIOCSBRK.S b/libc/sysv/consts/TIOCSBRK.S index e5d7feeb..52c5ea7c 100644 --- a/libc/sysv/consts/TIOCSBRK.S +++ b/libc/sysv/consts/TIOCSBRK.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSBRK,0x5427,0x2000747b,0x2000747b,0x2000747b,0x2000747b,-1 +.syscon termios,TIOCSBRK,0x5427,0x2000747b,0x2000747b,0x2000747b,0x2000747b,0 diff --git a/libc/sysv/consts/TIOCSCTTY.S b/libc/sysv/consts/TIOCSCTTY.S index 0ce898b9..6c73e86f 100644 --- a/libc/sysv/consts/TIOCSCTTY.S +++ b/libc/sysv/consts/TIOCSCTTY.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSCTTY,0x540e,0x20007461,0x20007461,0x20007461,0x20007461,-1 +.syscon termios,TIOCSCTTY,0x540e,0x20007461,0x20007461,0x20007461,0x20007461,0 diff --git a/libc/sysv/consts/TIOCSDRAINWAIT.S b/libc/sysv/consts/TIOCSDRAINWAIT.S index b6709f43..1dd88827 100644 --- a/libc/sysv/consts/TIOCSDRAINWAIT.S +++ b/libc/sysv/consts/TIOCSDRAINWAIT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSDRAINWAIT,0,0x80047457,0x80047457,0,0,-1 +.syscon termios,TIOCSDRAINWAIT,0,0x80047457,0x80047457,0,0,0 diff --git a/libc/sysv/consts/TIOCSDTR.S b/libc/sysv/consts/TIOCSDTR.S index 9e73926a..3e947bb4 100644 --- a/libc/sysv/consts/TIOCSDTR.S +++ b/libc/sysv/consts/TIOCSDTR.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSDTR,0,0x20007479,0x20007479,0x20007479,0x20007479,-1 +.syscon termios,TIOCSDTR,0,0x20007479,0x20007479,0x20007479,0x20007479,0 diff --git a/libc/sysv/consts/TIOCSETD.S b/libc/sysv/consts/TIOCSETD.S index 34a220e9..c5ef0571 100644 --- a/libc/sysv/consts/TIOCSETD.S +++ b/libc/sysv/consts/TIOCSETD.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSETD,0x5423,0x8004741b,0x8004741b,0x8004741b,0x8004741b,-1 +.syscon termios,TIOCSETD,0x5423,0x8004741b,0x8004741b,0x8004741b,0x8004741b,0 diff --git a/libc/sysv/consts/TIOCSETVERAUTH.S b/libc/sysv/consts/TIOCSETVERAUTH.S index 3d6359ea..2b715171 100644 --- a/libc/sysv/consts/TIOCSETVERAUTH.S +++ b/libc/sysv/consts/TIOCSETVERAUTH.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSETVERAUTH,0,0,0,0x8004741c,0x8004741c,-1 +.syscon termios,TIOCSETVERAUTH,0,0,0,0x8004741c,0x8004741c,0 diff --git a/libc/sysv/consts/TIOCSFLAGS.S b/libc/sysv/consts/TIOCSFLAGS.S index 3c9b0d66..57242547 100644 --- a/libc/sysv/consts/TIOCSFLAGS.S +++ b/libc/sysv/consts/TIOCSFLAGS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSFLAGS,0,0,0,0x8004745c,0x8004745c,-1 +.syscon termios,TIOCSFLAGS,0,0,0,0x8004745c,0x8004745c,0 diff --git a/libc/sysv/consts/TIOCSIG.S b/libc/sysv/consts/TIOCSIG.S index 8a2bb487..8bc32425 100644 --- a/libc/sysv/consts/TIOCSIG.S +++ b/libc/sysv/consts/TIOCSIG.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSIG,0x40045436,0x2000745f,0x2004745f,0x8004745f,0x8004745f,-1 +.syscon termios,TIOCSIG,0x40045436,0x2000745f,0x2004745f,0x8004745f,0x8004745f,0 diff --git a/libc/sysv/consts/TIOCSPGRP.S b/libc/sysv/consts/TIOCSPGRP.S index 6f25f2e6..16f1a7d9 100644 --- a/libc/sysv/consts/TIOCSPGRP.S +++ b/libc/sysv/consts/TIOCSPGRP.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSPGRP,0x5410,0x80047476,0x80047476,0x80047476,0x80047476,-1 +.syscon termios,TIOCSPGRP,0x5410,0x80047476,0x80047476,0x80047476,0x80047476,0 diff --git a/libc/sysv/consts/TIOCSTART.S b/libc/sysv/consts/TIOCSTART.S index 50d88977..14b43cbf 100644 --- a/libc/sysv/consts/TIOCSTART.S +++ b/libc/sysv/consts/TIOCSTART.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSTART,0,0x2000746e,0x2000746e,0x2000746e,0x2000746e,-1 +.syscon termios,TIOCSTART,0,0x2000746e,0x2000746e,0x2000746e,0x2000746e,0 diff --git a/libc/sysv/consts/TIOCSTAT.S b/libc/sysv/consts/TIOCSTAT.S index dece2c4d..35e81f5f 100644 --- a/libc/sysv/consts/TIOCSTAT.S +++ b/libc/sysv/consts/TIOCSTAT.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSTAT,0,0x20007465,0x20007465,0x20007465,0x20007465,-1 +.syscon termios,TIOCSTAT,0,0x20007465,0x20007465,0x20007465,0x20007465,0 diff --git a/libc/sysv/consts/TIOCSTI.S b/libc/sysv/consts/TIOCSTI.S index 3b44545f..f976e70e 100644 --- a/libc/sysv/consts/TIOCSTI.S +++ b/libc/sysv/consts/TIOCSTI.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSTI,0x5412,0x80017472,0x80017472,0,0,-1 +.syscon termios,TIOCSTI,0x5412,0x80017472,0x80017472,0,0,0 diff --git a/libc/sysv/consts/TIOCSTSTAMP.S b/libc/sysv/consts/TIOCSTSTAMP.S index 644e4ae7..d73b0d56 100644 --- a/libc/sysv/consts/TIOCSTSTAMP.S +++ b/libc/sysv/consts/TIOCSTSTAMP.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCSTSTAMP,0,0,0,0x8008745a,0x8008745a,-1 +.syscon termios,TIOCSTSTAMP,0,0,0,0x8008745a,0x8008745a,0 diff --git a/libc/sysv/consts/TIOCTIMESTAMP.S b/libc/sysv/consts/TIOCTIMESTAMP.S index f5346b8f..a9391a84 100644 --- a/libc/sysv/consts/TIOCTIMESTAMP.S +++ b/libc/sysv/consts/TIOCTIMESTAMP.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCTIMESTAMP,0,0x40107459,0x40107459,0,0,-1 +.syscon termios,TIOCTIMESTAMP,0,0x40107459,0x40107459,0,0,0 diff --git a/libc/sysv/consts/TIOCUCNTL_CBRK.S b/libc/sysv/consts/TIOCUCNTL_CBRK.S index af867c31..e0dbc010 100644 --- a/libc/sysv/consts/TIOCUCNTL_CBRK.S +++ b/libc/sysv/consts/TIOCUCNTL_CBRK.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TIOCUCNTL_CBRK,0,0,0,0x7a,0x7a,-1 +.syscon termios,TIOCUCNTL_CBRK,0,0,0,0x7a,0x7a,0 diff --git a/libc/sysv/consts/TTYDISC.S b/libc/sysv/consts/TTYDISC.S index de8c05ec..d38421c6 100644 --- a/libc/sysv/consts/TTYDISC.S +++ b/libc/sysv/consts/TTYDISC.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon termios,TTYDISC,0,0,0,0,0,-1 +.syscon termios,TTYDISC,0,0,0,0,0,0 diff --git a/libc/sysv/consts/UNAME26.S b/libc/sysv/consts/UNAME26.S index 79e7aa59..7288894b 100644 --- a/libc/sysv/consts/UNAME26.S +++ b/libc/sysv/consts/UNAME26.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon prsnlty,UNAME26,0x0020000,-1,-1,-1,-1,-1 +.syscon prsnlty,UNAME26,0x0020000,0,0,0,0,0 diff --git a/libc/sysv/consts/WHOLE_SECONDS.S b/libc/sysv/consts/WHOLE_SECONDS.S index a8c03cd5..161ad743 100644 --- a/libc/sysv/consts/WHOLE_SECONDS.S +++ b/libc/sysv/consts/WHOLE_SECONDS.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon prsnlty,WHOLE_SECONDS,0x2000000,-1,-1,-1,-1,-1 +.syscon prsnlty,WHOLE_SECONDS,0x2000000,0,0,0,0,0 diff --git a/libc/sysv/consts/__NR___mac_syscall.S b/libc/sysv/consts/__NR___mac_syscall.S index f4556b0a..810995d2 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.internal.h" -.syscon nr,__NR___mac_syscall,-1,0x200017d,-1,-1,-1,-1 +.syscon nr,__NR___mac_syscall,0xfff,0x200017d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR___sysctl.S b/libc/sysv/consts/__NR___sysctl.S index 6ee54739..254e329f 100644 --- a/libc/sysv/consts/__NR___sysctl.S +++ b/libc/sysv/consts/__NR___sysctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR___sysctl,-1,-1,0x00ca,-1,-1,-1 +.syscon nr,__NR___sysctl,0xfff,0xfff,0x00ca,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR__sysctl.S b/libc/sysv/consts/__NR__sysctl.S index 06e731f8..2eac6dad 100644 --- a/libc/sysv/consts/__NR__sysctl.S +++ b/libc/sysv/consts/__NR__sysctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR__sysctl,0x009c,-1,-1,-1,-1,-1 +.syscon nr,__NR__sysctl,0x009c,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR__umtx_op.S b/libc/sysv/consts/__NR__umtx_op.S index de5bf7e4..69c0c1e4 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.internal.h" -.syscon nr,__NR__umtx_op,-1,-1,0x01c6,-1,-1,-1 +.syscon nr,__NR__umtx_op,0xfff,0xfff,0x01c6,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_abort2.S b/libc/sysv/consts/__NR_abort2.S index 038b2e74..35009730 100644 --- a/libc/sysv/consts/__NR_abort2.S +++ b/libc/sysv/consts/__NR_abort2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_abort2,-1,-1,0x01cf,-1,-1,-1 +.syscon nr,__NR_abort2,0xfff,0xfff,0x01cf,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_abort_with_payload.S b/libc/sysv/consts/__NR_abort_with_payload.S index 45b0785b..56e8f493 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.internal.h" -.syscon nr,__NR_abort_with_payload,-1,0x2000209,-1,-1,-1,-1 +.syscon nr,__NR_abort_with_payload,0xfff,0x2000209,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_accept.S b/libc/sysv/consts/__NR_accept.S index edf086a6..abd3c830 100644 --- a/libc/sysv/consts/__NR_accept.S +++ b/libc/sysv/consts/__NR_accept.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_accept,0x002b,0x200001e,0x0063,0x001e,0x01e,-1 +.syscon nr,__NR_accept,0x002b,0x200001e,0x0063,0x001e,0x01e,0xfff diff --git a/libc/sysv/consts/__NR_accept4.S b/libc/sysv/consts/__NR_accept4.S index 4bec4cf3..13ccb795 100644 --- a/libc/sysv/consts/__NR_accept4.S +++ b/libc/sysv/consts/__NR_accept4.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_accept4,0x0120,-1,0x021d,0x005d,-1,-1 +.syscon nr,__NR_accept4,0x0120,0xfff,0x021d,0x005d,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_accept_nocancel.S b/libc/sysv/consts/__NR_accept_nocancel.S index 878c42d9..f854fa29 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.internal.h" -.syscon nr,__NR_accept_nocancel,-1,0x2000194,-1,-1,-1,-1 +.syscon nr,__NR_accept_nocancel,0xfff,0x2000194,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_access.S b/libc/sysv/consts/__NR_access.S index e5c4ef52..bcbebd9d 100644 --- a/libc/sysv/consts/__NR_access.S +++ b/libc/sysv/consts/__NR_access.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_access,0x0015,0x2000021,0x0021,0x0021,0x021,-1 +.syscon nr,__NR_access,0x0015,0x2000021,0x0021,0x0021,0x021,0xfff diff --git a/libc/sysv/consts/__NR_access_extended.S b/libc/sysv/consts/__NR_access_extended.S index 669b118c..d3a3d2a8 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.internal.h" -.syscon nr,__NR_access_extended,-1,0x200011c,-1,-1,-1,-1 +.syscon nr,__NR_access_extended,0xfff,0x200011c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acct.S b/libc/sysv/consts/__NR_acct.S index 13ac8604..5aa75db7 100644 --- a/libc/sysv/consts/__NR_acct.S +++ b/libc/sysv/consts/__NR_acct.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_acct,0x00a3,0x2000033,0x0033,0x0033,0x033,-1 +.syscon nr,__NR_acct,0x00a3,0x2000033,0x0033,0x0033,0x033,0xfff diff --git a/libc/sysv/consts/__NR_acl_aclcheck_fd.S b/libc/sysv/consts/__NR_acl_aclcheck_fd.S index bf356a51..ab0ffd3b 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.internal.h" -.syscon nr,__NR_acl_aclcheck_fd,-1,-1,0x0162,-1,-1,-1 +.syscon nr,__NR_acl_aclcheck_fd,0xfff,0xfff,0x0162,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_aclcheck_file.S b/libc/sysv/consts/__NR_acl_aclcheck_file.S index e61b2006..5da7a3c6 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.internal.h" -.syscon nr,__NR_acl_aclcheck_file,-1,-1,0x0161,-1,-1,-1 +.syscon nr,__NR_acl_aclcheck_file,0xfff,0xfff,0x0161,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_aclcheck_link.S b/libc/sysv/consts/__NR_acl_aclcheck_link.S index fa749460..0925b8a3 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.internal.h" -.syscon nr,__NR_acl_aclcheck_link,-1,-1,0x01ac,-1,-1,-1 +.syscon nr,__NR_acl_aclcheck_link,0xfff,0xfff,0x01ac,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_delete_fd.S b/libc/sysv/consts/__NR_acl_delete_fd.S index d1fbf9e2..df4ff80b 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.internal.h" -.syscon nr,__NR_acl_delete_fd,-1,-1,0x0160,-1,-1,-1 +.syscon nr,__NR_acl_delete_fd,0xfff,0xfff,0x0160,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_delete_file.S b/libc/sysv/consts/__NR_acl_delete_file.S index 3570a492..4a95760c 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.internal.h" -.syscon nr,__NR_acl_delete_file,-1,-1,0x015f,-1,-1,-1 +.syscon nr,__NR_acl_delete_file,0xfff,0xfff,0x015f,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_delete_link.S b/libc/sysv/consts/__NR_acl_delete_link.S index a4b431f4..9459e83b 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.internal.h" -.syscon nr,__NR_acl_delete_link,-1,-1,0x01ab,-1,-1,-1 +.syscon nr,__NR_acl_delete_link,0xfff,0xfff,0x01ab,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_get_fd.S b/libc/sysv/consts/__NR_acl_get_fd.S index 28ff8104..31d8892c 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.internal.h" -.syscon nr,__NR_acl_get_fd,-1,-1,0x015d,-1,-1,-1 +.syscon nr,__NR_acl_get_fd,0xfff,0xfff,0x015d,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_get_file.S b/libc/sysv/consts/__NR_acl_get_file.S index deca9e4f..07cdf89d 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.internal.h" -.syscon nr,__NR_acl_get_file,-1,-1,0x015b,-1,-1,-1 +.syscon nr,__NR_acl_get_file,0xfff,0xfff,0x015b,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_get_link.S b/libc/sysv/consts/__NR_acl_get_link.S index af7559c3..4c0f21d9 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.internal.h" -.syscon nr,__NR_acl_get_link,-1,-1,0x01a9,-1,-1,-1 +.syscon nr,__NR_acl_get_link,0xfff,0xfff,0x01a9,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_set_fd.S b/libc/sysv/consts/__NR_acl_set_fd.S index 8a62c051..37a00265 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.internal.h" -.syscon nr,__NR_acl_set_fd,-1,-1,0x015e,-1,-1,-1 +.syscon nr,__NR_acl_set_fd,0xfff,0xfff,0x015e,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_set_file.S b/libc/sysv/consts/__NR_acl_set_file.S index a91bdd29..e136b1c6 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.internal.h" -.syscon nr,__NR_acl_set_file,-1,-1,0x015c,-1,-1,-1 +.syscon nr,__NR_acl_set_file,0xfff,0xfff,0x015c,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_acl_set_link.S b/libc/sysv/consts/__NR_acl_set_link.S index f25e32e9..347732a2 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.internal.h" -.syscon nr,__NR_acl_set_link,-1,-1,0x01aa,-1,-1,-1 +.syscon nr,__NR_acl_set_link,0xfff,0xfff,0x01aa,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_add_key.S b/libc/sysv/consts/__NR_add_key.S index 8ae5fdb9..2b8a5c1d 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.internal.h" -.syscon nr,__NR_add_key,0x00f8,-1,-1,-1,-1,-1 +.syscon nr,__NR_add_key,0x00f8,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_adjfreq.S b/libc/sysv/consts/__NR_adjfreq.S index f976683b..84bcbb40 100644 --- a/libc/sysv/consts/__NR_adjfreq.S +++ b/libc/sysv/consts/__NR_adjfreq.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_adjfreq,-1,-1,-1,0x0131,-1,-1 +.syscon nr,__NR_adjfreq,0xfff,0xfff,0xfff,0x0131,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_adjtime.S b/libc/sysv/consts/__NR_adjtime.S index e6c35496..d7d90124 100644 --- a/libc/sysv/consts/__NR_adjtime.S +++ b/libc/sysv/consts/__NR_adjtime.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_adjtime,-1,0x200008c,0x008c,0x008c,0x1a5,-1 +.syscon nr,__NR_adjtime,0xfff,0x200008c,0x008c,0x008c,0x1a5,0xfff diff --git a/libc/sysv/consts/__NR_adjtimex.S b/libc/sysv/consts/__NR_adjtimex.S index ce03868b..2ee8722a 100644 --- a/libc/sysv/consts/__NR_adjtimex.S +++ b/libc/sysv/consts/__NR_adjtimex.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_adjtimex,0x009f,-1,-1,-1,-1,-1 +.syscon nr,__NR_adjtimex,0x009f,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_afs3_syscall.S b/libc/sysv/consts/__NR_afs3_syscall.S index 11ea3699..d68ffcd5 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.internal.h" -.syscon nr,__NR_afs3_syscall,-1,-1,0x0179,-1,-1,-1 +.syscon nr,__NR_afs3_syscall,0xfff,0xfff,0x0179,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_aio_cancel.S b/libc/sysv/consts/__NR_aio_cancel.S index b18091fb..2ce6eefa 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.internal.h" -.syscon nr,__NR_aio_cancel,-1,0x200013c,0x013c,-1,0x18f,-1 +.syscon nr,__NR_aio_cancel,0xfff,0x200013c,0x013c,0xfff,0x18f,0xfff diff --git a/libc/sysv/consts/__NR_aio_error.S b/libc/sysv/consts/__NR_aio_error.S index 1344dfe3..532dd2e9 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.internal.h" -.syscon nr,__NR_aio_error,-1,0x200013d,0x013d,-1,0x190,-1 +.syscon nr,__NR_aio_error,0xfff,0x200013d,0x013d,0xfff,0x190,0xfff diff --git a/libc/sysv/consts/__NR_aio_fsync.S b/libc/sysv/consts/__NR_aio_fsync.S index f059a03e..76813330 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.internal.h" -.syscon nr,__NR_aio_fsync,-1,0x2000139,0x01d1,-1,0x191,-1 +.syscon nr,__NR_aio_fsync,0xfff,0x2000139,0x01d1,0xfff,0x191,0xfff diff --git a/libc/sysv/consts/__NR_aio_mlock.S b/libc/sysv/consts/__NR_aio_mlock.S index e428fd52..235724e6 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.internal.h" -.syscon nr,__NR_aio_mlock,-1,-1,0x021f,-1,-1,-1 +.syscon nr,__NR_aio_mlock,0xfff,0xfff,0x021f,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_aio_read.S b/libc/sysv/consts/__NR_aio_read.S index bf98f372..141ad6fc 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.internal.h" -.syscon nr,__NR_aio_read,-1,0x200013e,0x013e,-1,0x192,-1 +.syscon nr,__NR_aio_read,0xfff,0x200013e,0x013e,0xfff,0x192,0xfff diff --git a/libc/sysv/consts/__NR_aio_return.S b/libc/sysv/consts/__NR_aio_return.S index d7a75935..89a01596 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.internal.h" -.syscon nr,__NR_aio_return,-1,0x200013a,0x013a,-1,0x193,-1 +.syscon nr,__NR_aio_return,0xfff,0x200013a,0x013a,0xfff,0x193,0xfff diff --git a/libc/sysv/consts/__NR_aio_suspend.S b/libc/sysv/consts/__NR_aio_suspend.S index d28f356f..fc0466ab 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.internal.h" -.syscon nr,__NR_aio_suspend,-1,0x200013b,0x013b,-1,0x1b6,-1 +.syscon nr,__NR_aio_suspend,0xfff,0x200013b,0x013b,0xfff,0x1b6,0xfff diff --git a/libc/sysv/consts/__NR_aio_suspend_nocancel.S b/libc/sysv/consts/__NR_aio_suspend_nocancel.S index ff7d753e..dff9f663 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.internal.h" -.syscon nr,__NR_aio_suspend_nocancel,-1,0x20001a5,-1,-1,-1,-1 +.syscon nr,__NR_aio_suspend_nocancel,0xfff,0x20001a5,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_aio_waitcomplete.S b/libc/sysv/consts/__NR_aio_waitcomplete.S index 354ae243..d5082785 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.internal.h" -.syscon nr,__NR_aio_waitcomplete,-1,-1,0x0167,-1,-1,-1 +.syscon nr,__NR_aio_waitcomplete,0xfff,0xfff,0x0167,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_aio_write.S b/libc/sysv/consts/__NR_aio_write.S index 7f387496..6344addd 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.internal.h" -.syscon nr,__NR_aio_write,-1,0x200013f,0x013f,-1,0x195,-1 +.syscon nr,__NR_aio_write,0xfff,0x200013f,0x013f,0xfff,0x195,0xfff diff --git a/libc/sysv/consts/__NR_alarm.S b/libc/sysv/consts/__NR_alarm.S index f0780077..5d1f19d9 100644 --- a/libc/sysv/consts/__NR_alarm.S +++ b/libc/sysv/consts/__NR_alarm.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_alarm,0x0025,-1,-1,-1,-1,-1 +.syscon nr,__NR_alarm,0x0025,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_arch_prctl.S b/libc/sysv/consts/__NR_arch_prctl.S index c3efe3d2..4d10be43 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.internal.h" -.syscon nr,__NR_arch_prctl,0x009e,-1,0x00a5,0x00a5,-1,-1 +.syscon nr,__NR_arch_prctl,0x009e,0xfff,0x00a5,0x00a5,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_audit.S b/libc/sysv/consts/__NR_audit.S index 6ec6c962..70c7a819 100644 --- a/libc/sysv/consts/__NR_audit.S +++ b/libc/sysv/consts/__NR_audit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_audit,-1,0x200015e,0x01bd,-1,-1,-1 +.syscon nr,__NR_audit,0xfff,0x200015e,0x01bd,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_audit_session_join.S b/libc/sysv/consts/__NR_audit_session_join.S index 910207a0..7bcb69c7 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.internal.h" -.syscon nr,__NR_audit_session_join,-1,0x20001ad,-1,-1,-1,-1 +.syscon nr,__NR_audit_session_join,0xfff,0x20001ad,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_audit_session_port.S b/libc/sysv/consts/__NR_audit_session_port.S index 71aa97ec..714878c8 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.internal.h" -.syscon nr,__NR_audit_session_port,-1,0x20001b0,-1,-1,-1,-1 +.syscon nr,__NR_audit_session_port,0xfff,0x20001b0,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_audit_session_self.S b/libc/sysv/consts/__NR_audit_session_self.S index c1446089..4cad7684 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.internal.h" -.syscon nr,__NR_audit_session_self,-1,0x20001ac,-1,-1,-1,-1 +.syscon nr,__NR_audit_session_self,0xfff,0x20001ac,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_auditctl.S b/libc/sysv/consts/__NR_auditctl.S index 41c5180f..86e2f81b 100644 --- a/libc/sysv/consts/__NR_auditctl.S +++ b/libc/sysv/consts/__NR_auditctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_auditctl,-1,0x2000167,0x01c5,-1,-1,-1 +.syscon nr,__NR_auditctl,0xfff,0x2000167,0x01c5,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_auditon.S b/libc/sysv/consts/__NR_auditon.S index 62302e86..1eede75d 100644 --- a/libc/sysv/consts/__NR_auditon.S +++ b/libc/sysv/consts/__NR_auditon.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_auditon,-1,0x200015f,0x01be,-1,-1,-1 +.syscon nr,__NR_auditon,0xfff,0x200015f,0x01be,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_bind.S b/libc/sysv/consts/__NR_bind.S index abe889c9..ce037f72 100644 --- a/libc/sysv/consts/__NR_bind.S +++ b/libc/sysv/consts/__NR_bind.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_bind,0x0031,0x2000068,0x0068,0x0068,0x068,-1 +.syscon nr,__NR_bind,0x0031,0x2000068,0x0068,0x0068,0x068,0xfff diff --git a/libc/sysv/consts/__NR_bindat.S b/libc/sysv/consts/__NR_bindat.S index 3cc62e31..9f17b548 100644 --- a/libc/sysv/consts/__NR_bindat.S +++ b/libc/sysv/consts/__NR_bindat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_bindat,-1,-1,0x021a,-1,-1,-1 +.syscon nr,__NR_bindat,0xfff,0xfff,0x021a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_bpf.S b/libc/sysv/consts/__NR_bpf.S index fc8b9e87..44c6d5fd 100644 --- a/libc/sysv/consts/__NR_bpf.S +++ b/libc/sysv/consts/__NR_bpf.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_bpf,0x0141,-1,-1,-1,-1,-1 +.syscon nr,__NR_bpf,0x0141,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_break.S b/libc/sysv/consts/__NR_break.S index dad07bd7..1029fca9 100644 --- a/libc/sysv/consts/__NR_break.S +++ b/libc/sysv/consts/__NR_break.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_break,-1,-1,0x0011,-1,-1,-1 +.syscon nr,__NR_break,0xfff,0xfff,0x0011,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_bsdthread_create.S b/libc/sysv/consts/__NR_bsdthread_create.S index 87dc70a6..149b7ee6 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.internal.h" -.syscon nr,__NR_bsdthread_create,-1,0x2000168,-1,-1,-1,-1 +.syscon nr,__NR_bsdthread_create,0xfff,0x2000168,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_bsdthread_ctl.S b/libc/sysv/consts/__NR_bsdthread_ctl.S index 6ff723c4..ca000a96 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.internal.h" -.syscon nr,__NR_bsdthread_ctl,-1,0x20001de,-1,-1,-1,-1 +.syscon nr,__NR_bsdthread_ctl,0xfff,0x20001de,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_bsdthread_register.S b/libc/sysv/consts/__NR_bsdthread_register.S index 4f1eab62..8a81f93c 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.internal.h" -.syscon nr,__NR_bsdthread_register,-1,0x200016e,-1,-1,-1,-1 +.syscon nr,__NR_bsdthread_register,0xfff,0x200016e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_bsdthread_terminate.S b/libc/sysv/consts/__NR_bsdthread_terminate.S index 17b218dc..2646dc6f 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.internal.h" -.syscon nr,__NR_bsdthread_terminate,-1,0x2000169,-1,-1,-1,-1 +.syscon nr,__NR_bsdthread_terminate,0xfff,0x2000169,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_enter.S b/libc/sysv/consts/__NR_cap_enter.S index 4c13cf78..a9b96fb4 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.internal.h" -.syscon nr,__NR_cap_enter,-1,-1,0x0204,-1,-1,-1 +.syscon nr,__NR_cap_enter,0xfff,0xfff,0x0204,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_fcntls_get.S b/libc/sysv/consts/__NR_cap_fcntls_get.S index facbf0ed..7f4de610 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.internal.h" -.syscon nr,__NR_cap_fcntls_get,-1,-1,0x0219,-1,-1,-1 +.syscon nr,__NR_cap_fcntls_get,0xfff,0xfff,0x0219,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_fcntls_limit.S b/libc/sysv/consts/__NR_cap_fcntls_limit.S index 477fdaca..762117d5 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.internal.h" -.syscon nr,__NR_cap_fcntls_limit,-1,-1,0x0218,-1,-1,-1 +.syscon nr,__NR_cap_fcntls_limit,0xfff,0xfff,0x0218,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_getmode.S b/libc/sysv/consts/__NR_cap_getmode.S index 49f838f5..50dcb8a7 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.internal.h" -.syscon nr,__NR_cap_getmode,-1,-1,0x0205,-1,-1,-1 +.syscon nr,__NR_cap_getmode,0xfff,0xfff,0x0205,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_ioctls_get.S b/libc/sysv/consts/__NR_cap_ioctls_get.S index 4c7873eb..550de290 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.internal.h" -.syscon nr,__NR_cap_ioctls_get,-1,-1,0x0217,-1,-1,-1 +.syscon nr,__NR_cap_ioctls_get,0xfff,0xfff,0x0217,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_ioctls_limit.S b/libc/sysv/consts/__NR_cap_ioctls_limit.S index 85adf17d..554a4a8f 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.internal.h" -.syscon nr,__NR_cap_ioctls_limit,-1,-1,0x0216,-1,-1,-1 +.syscon nr,__NR_cap_ioctls_limit,0xfff,0xfff,0x0216,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_rights_get.S b/libc/sysv/consts/__NR_cap_rights_get.S index 56a79181..3ffc228e 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.internal.h" -.syscon nr,__NR_cap_rights_get,-1,-1,0x0203,-1,-1,-1 +.syscon nr,__NR_cap_rights_get,0xfff,0xfff,0x0203,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cap_rights_limit.S b/libc/sysv/consts/__NR_cap_rights_limit.S index e4a7f526..785b457c 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.internal.h" -.syscon nr,__NR_cap_rights_limit,-1,-1,0x0215,-1,-1,-1 +.syscon nr,__NR_cap_rights_limit,0xfff,0xfff,0x0215,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_capget.S b/libc/sysv/consts/__NR_capget.S index 44080be1..176c082f 100644 --- a/libc/sysv/consts/__NR_capget.S +++ b/libc/sysv/consts/__NR_capget.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_capget,0x007d,-1,-1,-1,-1,-1 +.syscon nr,__NR_capget,0x007d,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_capset.S b/libc/sysv/consts/__NR_capset.S index db1ed701..e5e2f0c2 100644 --- a/libc/sysv/consts/__NR_capset.S +++ b/libc/sysv/consts/__NR_capset.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_capset,0x007e,-1,-1,-1,-1,-1 +.syscon nr,__NR_capset,0x007e,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_change_fdguard_np.S b/libc/sysv/consts/__NR_change_fdguard_np.S index cedc9673..8069c6b9 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.internal.h" -.syscon nr,__NR_change_fdguard_np,-1,0x20001bc,-1,-1,-1,-1 +.syscon nr,__NR_change_fdguard_np,0xfff,0x20001bc,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_chdir.S b/libc/sysv/consts/__NR_chdir.S index f996b9a1..f65b24d0 100644 --- a/libc/sysv/consts/__NR_chdir.S +++ b/libc/sysv/consts/__NR_chdir.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_chdir,0x0050,0x200000c,0x000c,0x000c,0x00c,-1 +.syscon nr,__NR_chdir,0x0050,0x200000c,0x000c,0x000c,0x00c,0xfff diff --git a/libc/sysv/consts/__NR_chflags.S b/libc/sysv/consts/__NR_chflags.S index 175a0a9d..4da171ed 100644 --- a/libc/sysv/consts/__NR_chflags.S +++ b/libc/sysv/consts/__NR_chflags.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_chflags,-1,0x2000022,0x0022,0x0022,0x022,-1 +.syscon nr,__NR_chflags,0xfff,0x2000022,0x0022,0x0022,0x022,0xfff diff --git a/libc/sysv/consts/__NR_chflagsat.S b/libc/sysv/consts/__NR_chflagsat.S index b9c339d4..17c82a0e 100644 --- a/libc/sysv/consts/__NR_chflagsat.S +++ b/libc/sysv/consts/__NR_chflagsat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_chflagsat,-1,-1,0x021c,0x006b,-1,-1 +.syscon nr,__NR_chflagsat,0xfff,0xfff,0x021c,0x006b,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_chmod.S b/libc/sysv/consts/__NR_chmod.S index 8c5d95ba..16a68237 100644 --- a/libc/sysv/consts/__NR_chmod.S +++ b/libc/sysv/consts/__NR_chmod.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_chmod,0x005a,0x200000f,0x000f,0x000f,0x00f,-1 +.syscon nr,__NR_chmod,0x005a,0x200000f,0x000f,0x000f,0x00f,0xfff diff --git a/libc/sysv/consts/__NR_chmod_extended.S b/libc/sysv/consts/__NR_chmod_extended.S index b81228dc..eb275938 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.internal.h" -.syscon nr,__NR_chmod_extended,-1,0x200011a,-1,-1,-1,-1 +.syscon nr,__NR_chmod_extended,0xfff,0x200011a,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_chown.S b/libc/sysv/consts/__NR_chown.S index 25268110..696da41c 100644 --- a/libc/sysv/consts/__NR_chown.S +++ b/libc/sysv/consts/__NR_chown.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_chown,0x005c,0x2000010,0x0010,0x0010,0x010,-1 +.syscon nr,__NR_chown,0x005c,0x2000010,0x0010,0x0010,0x010,0xfff diff --git a/libc/sysv/consts/__NR_chroot.S b/libc/sysv/consts/__NR_chroot.S index f08bc0b4..5f0a761a 100644 --- a/libc/sysv/consts/__NR_chroot.S +++ b/libc/sysv/consts/__NR_chroot.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_chroot,0x00a1,0x200003d,0x003d,0x003d,0x03d,-1 +.syscon nr,__NR_chroot,0x00a1,0x200003d,0x003d,0x003d,0x03d,0xfff diff --git a/libc/sysv/consts/__NR_clock_adjtime.S b/libc/sysv/consts/__NR_clock_adjtime.S index e38cc2cf..39e2f470 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.internal.h" -.syscon nr,__NR_clock_adjtime,0x0131,-1,-1,-1,-1,-1 +.syscon nr,__NR_clock_adjtime,0x0131,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_clock_getcpuclockid2.S b/libc/sysv/consts/__NR_clock_getcpuclockid2.S index 5ff29951..3f70f32d 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.internal.h" -.syscon nr,__NR_clock_getcpuclockid2,-1,-1,0x00f7,-1,0x1e2,-1 +.syscon nr,__NR_clock_getcpuclockid2,0xfff,0xfff,0x00f7,0xfff,0x1e2,0xfff diff --git a/libc/sysv/consts/__NR_clock_getres.S b/libc/sysv/consts/__NR_clock_getres.S index 3ad36aa3..5c1178c3 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.internal.h" -.syscon nr,__NR_clock_getres,0x00e5,-1,0x00ea,0x0059,0x1ad,-1 +.syscon nr,__NR_clock_getres,0x00e5,0xfff,0x00ea,0x0059,0x1ad,0xfff diff --git a/libc/sysv/consts/__NR_clock_gettime.S b/libc/sysv/consts/__NR_clock_gettime.S index 0c2d0da0..199133b7 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.internal.h" -.syscon nr,__NR_clock_gettime,0x00e4,-1,0x00e8,0x0057,0x1ab,-1 +.syscon nr,__NR_clock_gettime,0x00e4,0xfff,0x00e8,0x0057,0x1ab,0xfff diff --git a/libc/sysv/consts/__NR_clock_nanosleep.S b/libc/sysv/consts/__NR_clock_nanosleep.S index a94e878e..acc6517f 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.internal.h" -.syscon nr,__NR_clock_nanosleep,0x00e6,-1,0x00f4,-1,-1,-1 +.syscon nr,__NR_clock_nanosleep,0x00e6,0xfff,0x00f4,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_clock_settime.S b/libc/sysv/consts/__NR_clock_settime.S index 77022f88..b465f65d 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.internal.h" -.syscon nr,__NR_clock_settime,0x00e3,-1,0x00e9,0x0058,0x1ac,-1 +.syscon nr,__NR_clock_settime,0x00e3,0xfff,0x00e9,0x0058,0x1ac,0xfff diff --git a/libc/sysv/consts/__NR_clone.S b/libc/sysv/consts/__NR_clone.S index 86ef7aaf..58bab9ba 100644 --- a/libc/sysv/consts/__NR_clone.S +++ b/libc/sysv/consts/__NR_clone.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_clone,0x0038,-1,-1,-1,-1,-1 +.syscon nr,__NR_clone,0x0038,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_clonefileat.S b/libc/sysv/consts/__NR_clonefileat.S index 3d5c4e24..33435a55 100644 --- a/libc/sysv/consts/__NR_clonefileat.S +++ b/libc/sysv/consts/__NR_clonefileat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_clonefileat,-1,0x20001ce,-1,-1,-1,-1 +.syscon nr,__NR_clonefileat,0xfff,0x20001ce,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_close.S b/libc/sysv/consts/__NR_close.S index 640d65af..15f1b19f 100644 --- a/libc/sysv/consts/__NR_close.S +++ b/libc/sysv/consts/__NR_close.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_close,0x0003,0x2000006,0x0006,0x0006,0x006,-1 +.syscon nr,__NR_close,0x0003,0x2000006,0x0006,0x0006,0x006,0xfff diff --git a/libc/sysv/consts/__NR_close_nocancel.S b/libc/sysv/consts/__NR_close_nocancel.S index 0e277b36..c328230b 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.internal.h" -.syscon nr,__NR_close_nocancel,-1,0x200018f,-1,-1,-1,-1 +.syscon nr,__NR_close_nocancel,0xfff,0x200018f,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_closefrom.S b/libc/sysv/consts/__NR_closefrom.S index 2c5c712f..66f210f0 100644 --- a/libc/sysv/consts/__NR_closefrom.S +++ b/libc/sysv/consts/__NR_closefrom.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_closefrom,-1,-1,0x01fd,0x011f,-1,-1 +.syscon nr,__NR_closefrom,0xfff,0xfff,0x01fd,0x011f,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_coalition.S b/libc/sysv/consts/__NR_coalition.S index 7fdc99f6..9e5e03cc 100644 --- a/libc/sysv/consts/__NR_coalition.S +++ b/libc/sysv/consts/__NR_coalition.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_coalition,-1,0x20001ca,-1,-1,-1,-1 +.syscon nr,__NR_coalition,0xfff,0x20001ca,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_coalition_info.S b/libc/sysv/consts/__NR_coalition_info.S index f45e0e6b..8d6566fe 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.internal.h" -.syscon nr,__NR_coalition_info,-1,0x20001cb,-1,-1,-1,-1 +.syscon nr,__NR_coalition_info,0xfff,0x20001cb,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_connect.S b/libc/sysv/consts/__NR_connect.S index 35926d31..db3b78ce 100644 --- a/libc/sysv/consts/__NR_connect.S +++ b/libc/sysv/consts/__NR_connect.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_connect,0x002a,0x2000062,0x0062,0x0062,0x062,-1 +.syscon nr,__NR_connect,0x002a,0x2000062,0x0062,0x0062,0x062,0xfff diff --git a/libc/sysv/consts/__NR_connect_nocancel.S b/libc/sysv/consts/__NR_connect_nocancel.S index 91f124c9..be367bde 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.internal.h" -.syscon nr,__NR_connect_nocancel,-1,0x2000199,-1,-1,-1,-1 +.syscon nr,__NR_connect_nocancel,0xfff,0x2000199,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_connectat.S b/libc/sysv/consts/__NR_connectat.S index 2dadd571..bc68f381 100644 --- a/libc/sysv/consts/__NR_connectat.S +++ b/libc/sysv/consts/__NR_connectat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_connectat,-1,-1,0x021b,-1,-1,-1 +.syscon nr,__NR_connectat,0xfff,0xfff,0x021b,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_connectx.S b/libc/sysv/consts/__NR_connectx.S index 46b9ba1b..b01b1936 100644 --- a/libc/sysv/consts/__NR_connectx.S +++ b/libc/sysv/consts/__NR_connectx.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_connectx,-1,0x20001bf,-1,-1,-1,-1 +.syscon nr,__NR_connectx,0xfff,0x20001bf,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_copy_file_range.S b/libc/sysv/consts/__NR_copy_file_range.S index dbbfd6b9..2870056b 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.internal.h" -.syscon nr,__NR_copy_file_range,0x0146,-1,-1,-1,-1,-1 +.syscon nr,__NR_copy_file_range,0x0146,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_copyfile.S b/libc/sysv/consts/__NR_copyfile.S index d421d020..946a0e32 100644 --- a/libc/sysv/consts/__NR_copyfile.S +++ b/libc/sysv/consts/__NR_copyfile.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_copyfile,-1,0x20000e3,-1,-1,-1,-1 +.syscon nr,__NR_copyfile,0xfff,0x20000e3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cpuset.S b/libc/sysv/consts/__NR_cpuset.S index 0c5d1f88..5933a92c 100644 --- a/libc/sysv/consts/__NR_cpuset.S +++ b/libc/sysv/consts/__NR_cpuset.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_cpuset,-1,-1,0x01e4,-1,-1,-1 +.syscon nr,__NR_cpuset,0xfff,0xfff,0x01e4,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cpuset_getaffinity.S b/libc/sysv/consts/__NR_cpuset_getaffinity.S index 1fc8f072..7d24f9bb 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.internal.h" -.syscon nr,__NR_cpuset_getaffinity,-1,-1,0x01e7,-1,-1,-1 +.syscon nr,__NR_cpuset_getaffinity,0xfff,0xfff,0x01e7,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cpuset_getdomain.S b/libc/sysv/consts/__NR_cpuset_getdomain.S index 9b58ae8c..6862b2d1 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.internal.h" -.syscon nr,__NR_cpuset_getdomain,-1,-1,0x0231,-1,-1,-1 +.syscon nr,__NR_cpuset_getdomain,0xfff,0xfff,0x0231,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cpuset_getid.S b/libc/sysv/consts/__NR_cpuset_getid.S index 44681553..e2d9e7fc 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.internal.h" -.syscon nr,__NR_cpuset_getid,-1,-1,0x01e6,-1,-1,-1 +.syscon nr,__NR_cpuset_getid,0xfff,0xfff,0x01e6,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cpuset_setaffinity.S b/libc/sysv/consts/__NR_cpuset_setaffinity.S index f2c34deb..8c33fef1 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.internal.h" -.syscon nr,__NR_cpuset_setaffinity,-1,-1,0x01e8,-1,-1,-1 +.syscon nr,__NR_cpuset_setaffinity,0xfff,0xfff,0x01e8,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cpuset_setdomain.S b/libc/sysv/consts/__NR_cpuset_setdomain.S index 701abf09..1b00e4fd 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.internal.h" -.syscon nr,__NR_cpuset_setdomain,-1,-1,0x0232,-1,-1,-1 +.syscon nr,__NR_cpuset_setdomain,0xfff,0xfff,0x0232,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_cpuset_setid.S b/libc/sysv/consts/__NR_cpuset_setid.S index 9b284a5b..54593297 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.internal.h" -.syscon nr,__NR_cpuset_setid,-1,-1,0x01e5,-1,-1,-1 +.syscon nr,__NR_cpuset_setid,0xfff,0xfff,0x01e5,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_creat.S b/libc/sysv/consts/__NR_creat.S index ccd6b03c..5b87155a 100644 --- a/libc/sysv/consts/__NR_creat.S +++ b/libc/sysv/consts/__NR_creat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_creat,0x0055,-1,0x0008,-1,-1,-1 +.syscon nr,__NR_creat,0x0055,0xfff,0x0008,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_csops.S b/libc/sysv/consts/__NR_csops.S index 3e0b74c0..ff17c202 100644 --- a/libc/sysv/consts/__NR_csops.S +++ b/libc/sysv/consts/__NR_csops.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_csops,-1,0x20000a9,-1,-1,-1,-1 +.syscon nr,__NR_csops,0xfff,0x20000a9,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_csops_audittoken.S b/libc/sysv/consts/__NR_csops_audittoken.S index 85cd7a78..8a3aa6bc 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.internal.h" -.syscon nr,__NR_csops_audittoken,-1,0x20000aa,-1,-1,-1,-1 +.syscon nr,__NR_csops_audittoken,0xfff,0x20000aa,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_csrctl.S b/libc/sysv/consts/__NR_csrctl.S index 1dcecb6c..f80df769 100644 --- a/libc/sysv/consts/__NR_csrctl.S +++ b/libc/sysv/consts/__NR_csrctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_csrctl,-1,0x20001e3,-1,-1,-1,-1 +.syscon nr,__NR_csrctl,0xfff,0x20001e3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_delete.S b/libc/sysv/consts/__NR_delete.S index 47fe88a4..da2368c6 100644 --- a/libc/sysv/consts/__NR_delete.S +++ b/libc/sysv/consts/__NR_delete.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_delete,-1,0x20000e2,-1,-1,-1,-1 +.syscon nr,__NR_delete,0xfff,0x20000e2,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_delete_module.S b/libc/sysv/consts/__NR_delete_module.S index 40e25cf3..93c9f431 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.internal.h" -.syscon nr,__NR_delete_module,0x00b0,-1,-1,-1,-1,-1 +.syscon nr,__NR_delete_module,0x00b0,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_disable_threadsignal.S b/libc/sysv/consts/__NR_disable_threadsignal.S index b397671c..082332b6 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.internal.h" -.syscon nr,__NR_disable_threadsignal,-1,0x200014b,-1,-1,-1,-1 +.syscon nr,__NR_disable_threadsignal,0xfff,0x200014b,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_disconnectx.S b/libc/sysv/consts/__NR_disconnectx.S index 978e6037..9b1f1876 100644 --- a/libc/sysv/consts/__NR_disconnectx.S +++ b/libc/sysv/consts/__NR_disconnectx.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_disconnectx,-1,0x20001c0,-1,-1,-1,-1 +.syscon nr,__NR_disconnectx,0xfff,0x20001c0,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_dup.S b/libc/sysv/consts/__NR_dup.S index 9304871a..7c9c6a64 100644 --- a/libc/sysv/consts/__NR_dup.S +++ b/libc/sysv/consts/__NR_dup.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_dup,0x0020,0x2000029,0x0029,0x0029,0x029,-1 +.syscon nr,__NR_dup,0x0020,0x2000029,0x0029,0x0029,0x029,0xfff diff --git a/libc/sysv/consts/__NR_dup2.S b/libc/sysv/consts/__NR_dup2.S index f43fe63b..f60d3bed 100644 --- a/libc/sysv/consts/__NR_dup2.S +++ b/libc/sysv/consts/__NR_dup2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_dup2,0x0021,0x200005a,0x005a,0x005a,0x05a,-1 +.syscon nr,__NR_dup2,0x0021,0x200005a,0x005a,0x005a,0x05a,0xfff diff --git a/libc/sysv/consts/__NR_dup3.S b/libc/sysv/consts/__NR_dup3.S index 3603621c..a578989e 100644 --- a/libc/sysv/consts/__NR_dup3.S +++ b/libc/sysv/consts/__NR_dup3.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_dup3,0x0124,-1,-1,0x0066,0x1c6,-1 +.syscon nr,__NR_dup3,0x0124,0xfff,0xfff,0x0066,0x1c6,0xfff diff --git a/libc/sysv/consts/__NR_eaccess.S b/libc/sysv/consts/__NR_eaccess.S index f08bb69d..53c349a6 100644 --- a/libc/sysv/consts/__NR_eaccess.S +++ b/libc/sysv/consts/__NR_eaccess.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_eaccess,-1,-1,0x0178,-1,-1,-1 +.syscon nr,__NR_eaccess,0xfff,0xfff,0x0178,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_epoll_create.S b/libc/sysv/consts/__NR_epoll_create.S index 256fad86..911bcbc3 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.internal.h" -.syscon nr,__NR_epoll_create,0x00d5,-1,-1,-1,-1,-1 +.syscon nr,__NR_epoll_create,0x00d5,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_epoll_create1.S b/libc/sysv/consts/__NR_epoll_create1.S index ae3a092d..e156f913 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.internal.h" -.syscon nr,__NR_epoll_create1,0x0123,-1,-1,-1,-1,-1 +.syscon nr,__NR_epoll_create1,0x0123,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_epoll_ctl.S b/libc/sysv/consts/__NR_epoll_ctl.S index a759bd1e..373455fb 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.internal.h" -.syscon nr,__NR_epoll_ctl,0x00e9,-1,-1,-1,-1,-1 +.syscon nr,__NR_epoll_ctl,0x00e9,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_epoll_pwait.S b/libc/sysv/consts/__NR_epoll_pwait.S index ccd8e454..4005e238 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.internal.h" -.syscon nr,__NR_epoll_pwait,0x0119,-1,-1,-1,-1,-1 +.syscon nr,__NR_epoll_pwait,0x0119,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_epoll_wait.S b/libc/sysv/consts/__NR_epoll_wait.S index 02b259f1..9b4c9a0c 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.internal.h" -.syscon nr,__NR_epoll_wait,0x00e8,-1,-1,-1,-1,-1 +.syscon nr,__NR_epoll_wait,0x00e8,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_eventfd.S b/libc/sysv/consts/__NR_eventfd.S index 7b76b9a8..3bad98e7 100644 --- a/libc/sysv/consts/__NR_eventfd.S +++ b/libc/sysv/consts/__NR_eventfd.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_eventfd,0x011c,-1,-1,-1,-1,-1 +.syscon nr,__NR_eventfd,0x011c,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_eventfd2.S b/libc/sysv/consts/__NR_eventfd2.S index 04f5038c..7e2710e5 100644 --- a/libc/sysv/consts/__NR_eventfd2.S +++ b/libc/sysv/consts/__NR_eventfd2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_eventfd2,0x0122,-1,-1,-1,-1,-1 +.syscon nr,__NR_eventfd2,0x0122,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_exchangedata.S b/libc/sysv/consts/__NR_exchangedata.S index d1d57504..62d4e376 100644 --- a/libc/sysv/consts/__NR_exchangedata.S +++ b/libc/sysv/consts/__NR_exchangedata.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_exchangedata,-1,0x20000df,-1,-1,-1,-1 +.syscon nr,__NR_exchangedata,0xfff,0x20000df,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_execve.S b/libc/sysv/consts/__NR_execve.S index cb9ff66b..4f46f9ad 100644 --- a/libc/sysv/consts/__NR_execve.S +++ b/libc/sysv/consts/__NR_execve.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_execve,0x003b,0x200003b,0x003b,0x003b,0x03b,-1 +.syscon nr,__NR_execve,0x003b,0x200003b,0x003b,0x003b,0x03b,0xfff diff --git a/libc/sysv/consts/__NR_execveat.S b/libc/sysv/consts/__NR_execveat.S index ca108acb..0dc5e154 100644 --- a/libc/sysv/consts/__NR_execveat.S +++ b/libc/sysv/consts/__NR_execveat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_execveat,0x0142,-1,-1,-1,-1,-1 +.syscon nr,__NR_execveat,0x0142,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_exit.S b/libc/sysv/consts/__NR_exit.S index f020f0a3..aab333d4 100644 --- a/libc/sysv/consts/__NR_exit.S +++ b/libc/sysv/consts/__NR_exit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_exit,0x003c,0x2000001,0x0001,0x0001,0x001,-1 +.syscon nr,__NR_exit,0x003c,0x2000001,0x0001,0x0001,0x001,0xfff diff --git a/libc/sysv/consts/__NR_exit_group.S b/libc/sysv/consts/__NR_exit_group.S index af4d5893..8c3e70d1 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.internal.h" -.syscon nr,__NR_exit_group,0x00e7,0x2000001,0x0001,0x0001,0x001,-1 +.syscon nr,__NR_exit_group,0x00e7,0x2000001,0x0001,0x0001,0x001,0xfff diff --git a/libc/sysv/consts/__NR_extattr_delete_fd.S b/libc/sysv/consts/__NR_extattr_delete_fd.S index 665e372b..a914725c 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.internal.h" -.syscon nr,__NR_extattr_delete_fd,-1,-1,0x0175,-1,0x16e,-1 +.syscon nr,__NR_extattr_delete_fd,0xfff,0xfff,0x0175,0xfff,0x16e,0xfff diff --git a/libc/sysv/consts/__NR_extattr_delete_file.S b/libc/sysv/consts/__NR_extattr_delete_file.S index 0899d506..864e4757 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.internal.h" -.syscon nr,__NR_extattr_delete_file,-1,-1,0x0166,-1,0x16b,-1 +.syscon nr,__NR_extattr_delete_file,0xfff,0xfff,0x0166,0xfff,0x16b,0xfff diff --git a/libc/sysv/consts/__NR_extattr_delete_link.S b/libc/sysv/consts/__NR_extattr_delete_link.S index afa465e8..cc9a381c 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.internal.h" -.syscon nr,__NR_extattr_delete_link,-1,-1,0x019e,-1,0x171,-1 +.syscon nr,__NR_extattr_delete_link,0xfff,0xfff,0x019e,0xfff,0x171,0xfff diff --git a/libc/sysv/consts/__NR_extattr_get_fd.S b/libc/sysv/consts/__NR_extattr_get_fd.S index f0805fc7..692e80c1 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.internal.h" -.syscon nr,__NR_extattr_get_fd,-1,-1,0x0174,-1,0x16d,-1 +.syscon nr,__NR_extattr_get_fd,0xfff,0xfff,0x0174,0xfff,0x16d,0xfff diff --git a/libc/sysv/consts/__NR_extattr_get_file.S b/libc/sysv/consts/__NR_extattr_get_file.S index 2b5fc368..86271650 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.internal.h" -.syscon nr,__NR_extattr_get_file,-1,-1,0x0165,-1,0x16a,-1 +.syscon nr,__NR_extattr_get_file,0xfff,0xfff,0x0165,0xfff,0x16a,0xfff diff --git a/libc/sysv/consts/__NR_extattr_get_link.S b/libc/sysv/consts/__NR_extattr_get_link.S index cff5bb7f..48e377e4 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.internal.h" -.syscon nr,__NR_extattr_get_link,-1,-1,0x019d,-1,0x170,-1 +.syscon nr,__NR_extattr_get_link,0xfff,0xfff,0x019d,0xfff,0x170,0xfff diff --git a/libc/sysv/consts/__NR_extattr_list_fd.S b/libc/sysv/consts/__NR_extattr_list_fd.S index 0c9d608b..0756351d 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.internal.h" -.syscon nr,__NR_extattr_list_fd,-1,-1,0x01b5,-1,0x172,-1 +.syscon nr,__NR_extattr_list_fd,0xfff,0xfff,0x01b5,0xfff,0x172,0xfff diff --git a/libc/sysv/consts/__NR_extattr_list_file.S b/libc/sysv/consts/__NR_extattr_list_file.S index 1c8567ef..c41d71f1 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.internal.h" -.syscon nr,__NR_extattr_list_file,-1,-1,0x01b6,-1,0x173,-1 +.syscon nr,__NR_extattr_list_file,0xfff,0xfff,0x01b6,0xfff,0x173,0xfff diff --git a/libc/sysv/consts/__NR_extattr_list_link.S b/libc/sysv/consts/__NR_extattr_list_link.S index 26c3bf6f..5c99e3c8 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.internal.h" -.syscon nr,__NR_extattr_list_link,-1,-1,0x01b7,-1,0x174,-1 +.syscon nr,__NR_extattr_list_link,0xfff,0xfff,0x01b7,0xfff,0x174,0xfff diff --git a/libc/sysv/consts/__NR_extattr_set_fd.S b/libc/sysv/consts/__NR_extattr_set_fd.S index e9320ee8..8cfdf7bd 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.internal.h" -.syscon nr,__NR_extattr_set_fd,-1,-1,0x0173,-1,0x16c,-1 +.syscon nr,__NR_extattr_set_fd,0xfff,0xfff,0x0173,0xfff,0x16c,0xfff diff --git a/libc/sysv/consts/__NR_extattr_set_file.S b/libc/sysv/consts/__NR_extattr_set_file.S index 449d13ea..c310aeaa 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.internal.h" -.syscon nr,__NR_extattr_set_file,-1,-1,0x0164,-1,0x169,-1 +.syscon nr,__NR_extattr_set_file,0xfff,0xfff,0x0164,0xfff,0x169,0xfff diff --git a/libc/sysv/consts/__NR_extattr_set_link.S b/libc/sysv/consts/__NR_extattr_set_link.S index d49efd0c..d7d12f69 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.internal.h" -.syscon nr,__NR_extattr_set_link,-1,-1,0x019c,-1,0x16f,-1 +.syscon nr,__NR_extattr_set_link,0xfff,0xfff,0x019c,0xfff,0x16f,0xfff diff --git a/libc/sysv/consts/__NR_extattrctl.S b/libc/sysv/consts/__NR_extattrctl.S index c65eb575..a545d026 100644 --- a/libc/sysv/consts/__NR_extattrctl.S +++ b/libc/sysv/consts/__NR_extattrctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_extattrctl,-1,-1,0x0163,-1,0x168,-1 +.syscon nr,__NR_extattrctl,0xfff,0xfff,0x0163,0xfff,0x168,0xfff diff --git a/libc/sysv/consts/__NR_faccessat.S b/libc/sysv/consts/__NR_faccessat.S index 25f9abc4..84c542fb 100644 --- a/libc/sysv/consts/__NR_faccessat.S +++ b/libc/sysv/consts/__NR_faccessat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_faccessat,0x010d,0x20001d2,0x01e9,0x0139,0x1ce,-1 +.syscon nr,__NR_faccessat,0x010d,0x20001d2,0x01e9,0x0139,0x1ce,0xfff diff --git a/libc/sysv/consts/__NR_fadvise.S b/libc/sysv/consts/__NR_fadvise.S index 884faff3..2666a7a6 100644 --- a/libc/sysv/consts/__NR_fadvise.S +++ b/libc/sysv/consts/__NR_fadvise.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fadvise,0x00dd,-1,0x0213,-1,-1,-1 +.syscon nr,__NR_fadvise,0x00dd,0xfff,0x0213,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fallocate.S b/libc/sysv/consts/__NR_fallocate.S index f3ae9aab..a8879c77 100644 --- a/libc/sysv/consts/__NR_fallocate.S +++ b/libc/sysv/consts/__NR_fallocate.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fallocate,0x011d,-1,-1,-1,-1,-1 +.syscon nr,__NR_fallocate,0x011d,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fanotify_init.S b/libc/sysv/consts/__NR_fanotify_init.S index e27e2666..7d1cd9c7 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.internal.h" -.syscon nr,__NR_fanotify_init,0x012c,-1,-1,-1,-1,-1 +.syscon nr,__NR_fanotify_init,0x012c,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fanotify_mark.S b/libc/sysv/consts/__NR_fanotify_mark.S index d7a1f577..71ef3b72 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.internal.h" -.syscon nr,__NR_fanotify_mark,0x012d,-1,-1,-1,-1,-1 +.syscon nr,__NR_fanotify_mark,0x012d,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fchdir.S b/libc/sysv/consts/__NR_fchdir.S index 996e55cc..025b0331 100644 --- a/libc/sysv/consts/__NR_fchdir.S +++ b/libc/sysv/consts/__NR_fchdir.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fchdir,0x0051,0x200000d,0x000d,0x000d,0x00d,-1 +.syscon nr,__NR_fchdir,0x0051,0x200000d,0x000d,0x000d,0x00d,0xfff diff --git a/libc/sysv/consts/__NR_fchflags.S b/libc/sysv/consts/__NR_fchflags.S index 32ba1d5a..99205ed7 100644 --- a/libc/sysv/consts/__NR_fchflags.S +++ b/libc/sysv/consts/__NR_fchflags.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fchflags,-1,0x2000023,0x0023,0x0023,0x023,-1 +.syscon nr,__NR_fchflags,0xfff,0x2000023,0x0023,0x0023,0x023,0xfff diff --git a/libc/sysv/consts/__NR_fchmod.S b/libc/sysv/consts/__NR_fchmod.S index ffe7b4ef..6908b843 100644 --- a/libc/sysv/consts/__NR_fchmod.S +++ b/libc/sysv/consts/__NR_fchmod.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fchmod,0x005b,0x200007c,0x007c,0x007c,0x07c,-1 +.syscon nr,__NR_fchmod,0x005b,0x200007c,0x007c,0x007c,0x07c,0xfff diff --git a/libc/sysv/consts/__NR_fchmod_extended.S b/libc/sysv/consts/__NR_fchmod_extended.S index f784f2b8..1fac5522 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.internal.h" -.syscon nr,__NR_fchmod_extended,-1,0x200011b,-1,-1,-1,-1 +.syscon nr,__NR_fchmod_extended,0xfff,0x200011b,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fchmodat.S b/libc/sysv/consts/__NR_fchmodat.S index 10a82b3b..82a950b4 100644 --- a/libc/sysv/consts/__NR_fchmodat.S +++ b/libc/sysv/consts/__NR_fchmodat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fchmodat,0x010c,0x20001d3,0x01ea,0x013a,0x1cf,-1 +.syscon nr,__NR_fchmodat,0x010c,0x20001d3,0x01ea,0x013a,0x1cf,0xfff diff --git a/libc/sysv/consts/__NR_fchown.S b/libc/sysv/consts/__NR_fchown.S index 7743df63..50ad43ad 100644 --- a/libc/sysv/consts/__NR_fchown.S +++ b/libc/sysv/consts/__NR_fchown.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fchown,0x005d,0x200007b,0x007b,0x007b,0x07b,-1 +.syscon nr,__NR_fchown,0x005d,0x200007b,0x007b,0x007b,0x07b,0xfff diff --git a/libc/sysv/consts/__NR_fchownat.S b/libc/sysv/consts/__NR_fchownat.S index 83553362..e40c43fa 100644 --- a/libc/sysv/consts/__NR_fchownat.S +++ b/libc/sysv/consts/__NR_fchownat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fchownat,0x0104,0x20001d4,0x01eb,0x013b,0x1d0,-1 +.syscon nr,__NR_fchownat,0x0104,0x20001d4,0x01eb,0x013b,0x1d0,0xfff diff --git a/libc/sysv/consts/__NR_fclonefileat.S b/libc/sysv/consts/__NR_fclonefileat.S index adb04e0b..18b7b465 100644 --- a/libc/sysv/consts/__NR_fclonefileat.S +++ b/libc/sysv/consts/__NR_fclonefileat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fclonefileat,-1,0x2000205,-1,-1,-1,-1 +.syscon nr,__NR_fclonefileat,0xfff,0x2000205,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fcntl.S b/libc/sysv/consts/__NR_fcntl.S index 7954ccde..168ed217 100644 --- a/libc/sysv/consts/__NR_fcntl.S +++ b/libc/sysv/consts/__NR_fcntl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fcntl,0x0048,0x200005c,0x005c,0x005c,0x05c,-1 +.syscon nr,__NR_fcntl,0x0048,0x200005c,0x005c,0x005c,0x05c,0xfff diff --git a/libc/sysv/consts/__NR_fcntl_nocancel.S b/libc/sysv/consts/__NR_fcntl_nocancel.S index 3d13a6bc..6c53432c 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.internal.h" -.syscon nr,__NR_fcntl_nocancel,-1,0x2000196,-1,-1,-1,-1 +.syscon nr,__NR_fcntl_nocancel,0xfff,0x2000196,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fdatasync.S b/libc/sysv/consts/__NR_fdatasync.S index 5c529298..a11c28d7 100644 --- a/libc/sysv/consts/__NR_fdatasync.S +++ b/libc/sysv/consts/__NR_fdatasync.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fdatasync,0x004b,0x20000bb,0x0226,0x005f,0x0f1,-1 +.syscon nr,__NR_fdatasync,0x004b,0x20000bb,0x0226,0x005f,0x0f1,0xfff diff --git a/libc/sysv/consts/__NR_fexecve.S b/libc/sysv/consts/__NR_fexecve.S index 72e70959..863eda8c 100644 --- a/libc/sysv/consts/__NR_fexecve.S +++ b/libc/sysv/consts/__NR_fexecve.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fexecve,-1,-1,0x01ec,-1,0x1d1,-1 +.syscon nr,__NR_fexecve,0xfff,0xfff,0x01ec,0xfff,0x1d1,0xfff diff --git a/libc/sysv/consts/__NR_ffclock_getcounter.S b/libc/sysv/consts/__NR_ffclock_getcounter.S index 8c294ace..d728162c 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.internal.h" -.syscon nr,__NR_ffclock_getcounter,-1,-1,0x00f1,-1,-1,-1 +.syscon nr,__NR_ffclock_getcounter,0xfff,0xfff,0x00f1,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ffclock_getestimate.S b/libc/sysv/consts/__NR_ffclock_getestimate.S index 7079dbbc..6ac10c1d 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.internal.h" -.syscon nr,__NR_ffclock_getestimate,-1,-1,0x00f3,-1,-1,-1 +.syscon nr,__NR_ffclock_getestimate,0xfff,0xfff,0x00f3,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ffclock_setestimate.S b/libc/sysv/consts/__NR_ffclock_setestimate.S index 3506c75b..35134d77 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.internal.h" -.syscon nr,__NR_ffclock_setestimate,-1,-1,0x00f2,-1,-1,-1 +.syscon nr,__NR_ffclock_setestimate,0xfff,0xfff,0x00f2,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ffsctl.S b/libc/sysv/consts/__NR_ffsctl.S index 1926f09a..e00d7544 100644 --- a/libc/sysv/consts/__NR_ffsctl.S +++ b/libc/sysv/consts/__NR_ffsctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ffsctl,-1,0x20000f5,-1,-1,-1,-1 +.syscon nr,__NR_ffsctl,0xfff,0x20000f5,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fgetattrlist.S b/libc/sysv/consts/__NR_fgetattrlist.S index 81ef6aa1..050f6847 100644 --- a/libc/sysv/consts/__NR_fgetattrlist.S +++ b/libc/sysv/consts/__NR_fgetattrlist.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fgetattrlist,-1,0x20000e4,-1,-1,-1,-1 +.syscon nr,__NR_fgetattrlist,0xfff,0x20000e4,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fgetxattr.S b/libc/sysv/consts/__NR_fgetxattr.S index 9099bf4d..00a21ee3 100644 --- a/libc/sysv/consts/__NR_fgetxattr.S +++ b/libc/sysv/consts/__NR_fgetxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fgetxattr,0x00c1,0x20000eb,-1,-1,0x17c,-1 +.syscon nr,__NR_fgetxattr,0x00c1,0x20000eb,0xfff,0xfff,0x17c,0xfff diff --git a/libc/sysv/consts/__NR_fhlink.S b/libc/sysv/consts/__NR_fhlink.S index b7b1a401..24450072 100644 --- a/libc/sysv/consts/__NR_fhlink.S +++ b/libc/sysv/consts/__NR_fhlink.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fhlink,-1,-1,0x0235,-1,-1,-1 +.syscon nr,__NR_fhlink,0xfff,0xfff,0x0235,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fhlinkat.S b/libc/sysv/consts/__NR_fhlinkat.S index cd3ef996..a9a3a344 100644 --- a/libc/sysv/consts/__NR_fhlinkat.S +++ b/libc/sysv/consts/__NR_fhlinkat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fhlinkat,-1,-1,0x0236,-1,-1,-1 +.syscon nr,__NR_fhlinkat,0xfff,0xfff,0x0236,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fhopen.S b/libc/sysv/consts/__NR_fhopen.S index 538efa31..22eeb5c8 100644 --- a/libc/sysv/consts/__NR_fhopen.S +++ b/libc/sysv/consts/__NR_fhopen.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fhopen,-1,0x20000f8,0x012a,0x0108,0x18c,-1 +.syscon nr,__NR_fhopen,0xfff,0x20000f8,0x012a,0x0108,0x18c,0xfff diff --git a/libc/sysv/consts/__NR_fhreadlink.S b/libc/sysv/consts/__NR_fhreadlink.S index ff6f4037..7f299778 100644 --- a/libc/sysv/consts/__NR_fhreadlink.S +++ b/libc/sysv/consts/__NR_fhreadlink.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fhreadlink,-1,-1,0x0237,-1,-1,-1 +.syscon nr,__NR_fhreadlink,0xfff,0xfff,0x0237,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fhstat.S b/libc/sysv/consts/__NR_fhstat.S index 00a848e5..65ecea12 100644 --- a/libc/sysv/consts/__NR_fhstat.S +++ b/libc/sysv/consts/__NR_fhstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fhstat,-1,-1,0x0229,0x0126,0x1c3,-1 +.syscon nr,__NR_fhstat,0xfff,0xfff,0x0229,0x0126,0x1c3,0xfff diff --git a/libc/sysv/consts/__NR_fhstatfs.S b/libc/sysv/consts/__NR_fhstatfs.S index 9c2efb6d..54612618 100644 --- a/libc/sysv/consts/__NR_fhstatfs.S +++ b/libc/sysv/consts/__NR_fhstatfs.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fhstatfs,-1,-1,0x022e,0x0041,-1,-1 +.syscon nr,__NR_fhstatfs,0xfff,0xfff,0x022e,0x0041,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fileport_makefd.S b/libc/sysv/consts/__NR_fileport_makefd.S index 3c86d91a..1a5cdd7b 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.internal.h" -.syscon nr,__NR_fileport_makefd,-1,0x20001af,-1,-1,-1,-1 +.syscon nr,__NR_fileport_makefd,0xfff,0x20001af,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fileport_makeport.S b/libc/sysv/consts/__NR_fileport_makeport.S index 72f31a9d..c0494338 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.internal.h" -.syscon nr,__NR_fileport_makeport,-1,0x20001ae,-1,-1,-1,-1 +.syscon nr,__NR_fileport_makeport,0xfff,0x20001ae,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_finit_module.S b/libc/sysv/consts/__NR_finit_module.S index 10cc1fe7..85bd972e 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.internal.h" -.syscon nr,__NR_finit_module,0x0139,-1,-1,-1,-1,-1 +.syscon nr,__NR_finit_module,0x0139,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_flistxattr.S b/libc/sysv/consts/__NR_flistxattr.S index 381b9eab..3201ed5f 100644 --- a/libc/sysv/consts/__NR_flistxattr.S +++ b/libc/sysv/consts/__NR_flistxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_flistxattr,0x00c4,0x20000f1,-1,-1,0x17f,-1 +.syscon nr,__NR_flistxattr,0x00c4,0x20000f1,0xfff,0xfff,0x17f,0xfff diff --git a/libc/sysv/consts/__NR_flock.S b/libc/sysv/consts/__NR_flock.S index c03e27fb..3257555e 100644 --- a/libc/sysv/consts/__NR_flock.S +++ b/libc/sysv/consts/__NR_flock.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_flock,0x0049,0x2000083,0x0083,0x0083,0x083,-1 +.syscon nr,__NR_flock,0x0049,0x2000083,0x0083,0x0083,0x083,0xfff diff --git a/libc/sysv/consts/__NR_fmount.S b/libc/sysv/consts/__NR_fmount.S index 49afd0f4..16245507 100644 --- a/libc/sysv/consts/__NR_fmount.S +++ b/libc/sysv/consts/__NR_fmount.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fmount,-1,0x200020e,-1,-1,-1,-1 +.syscon nr,__NR_fmount,0xfff,0x200020e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fork.S b/libc/sysv/consts/__NR_fork.S index e8487f63..8af233ca 100644 --- a/libc/sysv/consts/__NR_fork.S +++ b/libc/sysv/consts/__NR_fork.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fork,0x0039,0x2000002,0x0002,0x0002,0x002,-1 +.syscon nr,__NR_fork,0x0039,0x2000002,0x0002,0x0002,0x002,0xfff diff --git a/libc/sysv/consts/__NR_fpathconf.S b/libc/sysv/consts/__NR_fpathconf.S index d2c6118b..f8004f3b 100644 --- a/libc/sysv/consts/__NR_fpathconf.S +++ b/libc/sysv/consts/__NR_fpathconf.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fpathconf,-1,0x20000c0,0x00c0,0x00c0,0x0c0,-1 +.syscon nr,__NR_fpathconf,0xfff,0x20000c0,0x00c0,0x00c0,0x0c0,0xfff diff --git a/libc/sysv/consts/__NR_fremovexattr.S b/libc/sysv/consts/__NR_fremovexattr.S index 3915ecba..f97f5299 100644 --- a/libc/sysv/consts/__NR_fremovexattr.S +++ b/libc/sysv/consts/__NR_fremovexattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fremovexattr,0x00c7,0x20000ef,-1,-1,0x182,-1 +.syscon nr,__NR_fremovexattr,0x00c7,0x20000ef,0xfff,0xfff,0x182,0xfff diff --git a/libc/sysv/consts/__NR_fs_snapshot.S b/libc/sysv/consts/__NR_fs_snapshot.S index a42b5bbc..15d50345 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.internal.h" -.syscon nr,__NR_fs_snapshot,-1,0x2000206,-1,-1,-1,-1 +.syscon nr,__NR_fs_snapshot,0xfff,0x2000206,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fsctl.S b/libc/sysv/consts/__NR_fsctl.S index 6bed6dff..8a5b98c0 100644 --- a/libc/sysv/consts/__NR_fsctl.S +++ b/libc/sysv/consts/__NR_fsctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fsctl,-1,0x20000f2,-1,-1,-1,-1 +.syscon nr,__NR_fsctl,0xfff,0x20000f2,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fsetattrlist.S b/libc/sysv/consts/__NR_fsetattrlist.S index c949d678..79822fed 100644 --- a/libc/sysv/consts/__NR_fsetattrlist.S +++ b/libc/sysv/consts/__NR_fsetattrlist.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fsetattrlist,-1,0x20000e5,-1,-1,-1,-1 +.syscon nr,__NR_fsetattrlist,0xfff,0x20000e5,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fsetxattr.S b/libc/sysv/consts/__NR_fsetxattr.S index 413af33b..5f39e810 100644 --- a/libc/sysv/consts/__NR_fsetxattr.S +++ b/libc/sysv/consts/__NR_fsetxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fsetxattr,0x00be,0x20000ed,-1,-1,0x179,-1 +.syscon nr,__NR_fsetxattr,0x00be,0x20000ed,0xfff,0xfff,0x179,0xfff diff --git a/libc/sysv/consts/__NR_fstat.S b/libc/sysv/consts/__NR_fstat.S index ed2c783a..0bf1c3a0 100644 --- a/libc/sysv/consts/__NR_fstat.S +++ b/libc/sysv/consts/__NR_fstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fstat,0x0005,0x2000153,0x0227,0x0035,0x1b8,-1 +.syscon nr,__NR_fstat,0x0005,0x2000153,0x0227,0x0035,0x1b8,0xfff diff --git a/libc/sysv/consts/__NR_fstat_extended.S b/libc/sysv/consts/__NR_fstat_extended.S index 2740593e..8877a673 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.internal.h" -.syscon nr,__NR_fstat_extended,-1,0x2000119,-1,-1,-1,-1 +.syscon nr,__NR_fstat_extended,0xfff,0x2000119,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fstatat.S b/libc/sysv/consts/__NR_fstatat.S index 04bb86e8..42b606ba 100644 --- a/libc/sysv/consts/__NR_fstatat.S +++ b/libc/sysv/consts/__NR_fstatat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fstatat,0x0106,0x20001d6,0x0228,0x002a,0x1d2,-1 +.syscon nr,__NR_fstatat,0x0106,0x20001d6,0x0228,0x002a,0x1d2,0xfff diff --git a/libc/sysv/consts/__NR_fstatfs.S b/libc/sysv/consts/__NR_fstatfs.S index bb9ba72d..7892a980 100644 --- a/libc/sysv/consts/__NR_fstatfs.S +++ b/libc/sysv/consts/__NR_fstatfs.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fstatfs,0x008a,0x200015a,0x022c,0x0040,-1,-1 +.syscon nr,__NR_fstatfs,0x008a,0x200015a,0x022c,0x0040,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_fsync.S b/libc/sysv/consts/__NR_fsync.S index 31d39f28..21eda63c 100644 --- a/libc/sysv/consts/__NR_fsync.S +++ b/libc/sysv/consts/__NR_fsync.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_fsync,0x004a,0x200005f,0x005f,0x005f,0x05f,-1 +.syscon nr,__NR_fsync,0x004a,0x200005f,0x005f,0x005f,0x05f,0xfff diff --git a/libc/sysv/consts/__NR_fsync_nocancel.S b/libc/sysv/consts/__NR_fsync_nocancel.S index eae8c557..ef9acfe2 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.internal.h" -.syscon nr,__NR_fsync_nocancel,-1,0x2000198,-1,-1,-1,-1 +.syscon nr,__NR_fsync_nocancel,0xfff,0x2000198,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ftruncate.S b/libc/sysv/consts/__NR_ftruncate.S index fbbf0fff..008a10cf 100644 --- a/libc/sysv/consts/__NR_ftruncate.S +++ b/libc/sysv/consts/__NR_ftruncate.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ftruncate,0x004d,0x20000c9,0x01e0,0x00c9,0x0c9,-1 +.syscon nr,__NR_ftruncate,0x004d,0x20000c9,0x01e0,0x00c9,0x0c9,0xfff diff --git a/libc/sysv/consts/__NR_futex.S b/libc/sysv/consts/__NR_futex.S index 6a5f3cee..42e14e81 100644 --- a/libc/sysv/consts/__NR_futex.S +++ b/libc/sysv/consts/__NR_futex.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_futex,0x00ca,-1,-1,0x0053,-1,-1 +.syscon nr,__NR_futex,0x00ca,0xfff,0xfff,0x0053,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_futimens.S b/libc/sysv/consts/__NR_futimens.S index a161fd61..0eae2d7b 100644 --- a/libc/sysv/consts/__NR_futimens.S +++ b/libc/sysv/consts/__NR_futimens.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_futimens,-1,-1,0x0222,0x0055,0x1d8,-1 +.syscon nr,__NR_futimens,0xfff,0xfff,0x0222,0x0055,0x1d8,0xfff diff --git a/libc/sysv/consts/__NR_futimes.S b/libc/sysv/consts/__NR_futimes.S index 93ae0fa0..fc1ec59b 100644 --- a/libc/sysv/consts/__NR_futimes.S +++ b/libc/sysv/consts/__NR_futimes.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_futimes,-1,0x200008b,0x00ce,0x004d,0x1a7,-1 +.syscon nr,__NR_futimes,0xfff,0x200008b,0x00ce,0x004d,0x1a7,0xfff diff --git a/libc/sysv/consts/__NR_futimesat.S b/libc/sysv/consts/__NR_futimesat.S index 4e1062ae..12cc92ab 100644 --- a/libc/sysv/consts/__NR_futimesat.S +++ b/libc/sysv/consts/__NR_futimesat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_futimesat,0x0105,-1,0x01ee,-1,-1,-1 +.syscon nr,__NR_futimesat,0x0105,0xfff,0x01ee,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_get_mempolicy.S b/libc/sysv/consts/__NR_get_mempolicy.S index 866d60a7..a28c8e5f 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.internal.h" -.syscon nr,__NR_get_mempolicy,0x00ef,-1,-1,-1,-1,-1 +.syscon nr,__NR_get_mempolicy,0x00ef,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_get_robust_list.S b/libc/sysv/consts/__NR_get_robust_list.S index d27d873b..6ca74edb 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.internal.h" -.syscon nr,__NR_get_robust_list,0x0112,-1,-1,-1,-1,-1 +.syscon nr,__NR_get_robust_list,0x0112,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_get_tcb.S b/libc/sysv/consts/__NR_get_tcb.S index 7469d659..ab430793 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.internal.h" -.syscon nr,__NR_get_tcb,-1,-1,-1,0x014a,-1,-1 +.syscon nr,__NR_get_tcb,0xfff,0xfff,0xfff,0x014a,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getattrlist.S b/libc/sysv/consts/__NR_getattrlist.S index 83cca076..2ddcafac 100644 --- a/libc/sysv/consts/__NR_getattrlist.S +++ b/libc/sysv/consts/__NR_getattrlist.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getattrlist,-1,0x20000dc,-1,-1,-1,-1 +.syscon nr,__NR_getattrlist,0xfff,0x20000dc,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getattrlistat.S b/libc/sysv/consts/__NR_getattrlistat.S index 12ed3375..b1668176 100644 --- a/libc/sysv/consts/__NR_getattrlistat.S +++ b/libc/sysv/consts/__NR_getattrlistat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getattrlistat,-1,0x20001dc,-1,-1,-1,-1 +.syscon nr,__NR_getattrlistat,0xfff,0x20001dc,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getattrlistbulk.S b/libc/sysv/consts/__NR_getattrlistbulk.S index c9e98477..6c16c336 100644 --- a/libc/sysv/consts/__NR_getattrlistbulk.S +++ b/libc/sysv/consts/__NR_getattrlistbulk.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getattrlistbulk,-1,0x20001cd,-1,-1,-1,-1 +.syscon nr,__NR_getattrlistbulk,0xfff,0x20001cd,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getaudit.S b/libc/sysv/consts/__NR_getaudit.S index 34a28ce5..0bfbae3f 100644 --- a/libc/sysv/consts/__NR_getaudit.S +++ b/libc/sysv/consts/__NR_getaudit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getaudit,-1,-1,0x01c1,-1,-1,-1 +.syscon nr,__NR_getaudit,0xfff,0xfff,0x01c1,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getaudit_addr.S b/libc/sysv/consts/__NR_getaudit_addr.S index f90f5163..fd6082e4 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.internal.h" -.syscon nr,__NR_getaudit_addr,-1,0x2000165,0x01c3,-1,-1,-1 +.syscon nr,__NR_getaudit_addr,0xfff,0x2000165,0x01c3,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getauid.S b/libc/sysv/consts/__NR_getauid.S index c4bd0d9e..0eb2a13e 100644 --- a/libc/sysv/consts/__NR_getauid.S +++ b/libc/sysv/consts/__NR_getauid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getauid,-1,0x2000161,0x01bf,-1,-1,-1 +.syscon nr,__NR_getauid,0xfff,0x2000161,0x01bf,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getcontext.S b/libc/sysv/consts/__NR_getcontext.S index e983a9af..be4eaee5 100644 --- a/libc/sysv/consts/__NR_getcontext.S +++ b/libc/sysv/consts/__NR_getcontext.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getcontext,-1,-1,0x01a5,-1,0x133,-1 +.syscon nr,__NR_getcontext,0xfff,0xfff,0x01a5,0xfff,0x133,0xfff diff --git a/libc/sysv/consts/__NR_getcpu.S b/libc/sysv/consts/__NR_getcpu.S index 62e30659..8cbc875c 100644 --- a/libc/sysv/consts/__NR_getcpu.S +++ b/libc/sysv/consts/__NR_getcpu.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getcpu,0x0135,-1,-1,-1,-1,-1 +.syscon nr,__NR_getcpu,0x0135,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getcwd.S b/libc/sysv/consts/__NR_getcwd.S index c3489068..0fc634eb 100644 --- a/libc/sysv/consts/__NR_getcwd.S +++ b/libc/sysv/consts/__NR_getcwd.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getcwd,0x004f,-1,0x0146,0x0130,0x128,-1 +.syscon nr,__NR_getcwd,0x004f,0xfff,0x0146,0x0130,0x128,0xfff diff --git a/libc/sysv/consts/__NR_getdents.S b/libc/sysv/consts/__NR_getdents.S index 9115953e..820b9c25 100644 --- a/libc/sysv/consts/__NR_getdents.S +++ b/libc/sysv/consts/__NR_getdents.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getdents,0x00d9,-1,0x0110,0x0063,0x186,-1 +.syscon nr,__NR_getdents,0x00d9,0xfff,0x0110,0x0063,0x186,0xfff diff --git a/libc/sysv/consts/__NR_getdirentries.S b/libc/sysv/consts/__NR_getdirentries.S index cd5d831f..28e597a3 100644 --- a/libc/sysv/consts/__NR_getdirentries.S +++ b/libc/sysv/consts/__NR_getdirentries.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getdirentries,-1,0x2000158,0x022a,-1,-1,-1 +.syscon nr,__NR_getdirentries,0xfff,0x2000158,0x022a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getdirentriesattr.S b/libc/sysv/consts/__NR_getdirentriesattr.S index c9289066..a2377e0f 100644 --- a/libc/sysv/consts/__NR_getdirentriesattr.S +++ b/libc/sysv/consts/__NR_getdirentriesattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getdirentriesattr,-1,0x20000de,-1,-1,-1,-1 +.syscon nr,__NR_getdirentriesattr,0xfff,0x20000de,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getdtablecount.S b/libc/sysv/consts/__NR_getdtablecount.S index 609aac85..bccd7e80 100644 --- a/libc/sysv/consts/__NR_getdtablecount.S +++ b/libc/sysv/consts/__NR_getdtablecount.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getdtablecount,-1,-1,-1,0x0012,-1,-1 +.syscon nr,__NR_getdtablecount,0xfff,0xfff,0xfff,0x0012,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getdtablesize.S b/libc/sysv/consts/__NR_getdtablesize.S index 6f79f199..9a18199f 100644 --- a/libc/sysv/consts/__NR_getdtablesize.S +++ b/libc/sysv/consts/__NR_getdtablesize.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getdtablesize,-1,0x2000059,0x0059,-1,-1,-1 +.syscon nr,__NR_getdtablesize,0xfff,0x2000059,0x0059,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getegid.S b/libc/sysv/consts/__NR_getegid.S index faa9f081..3eb25e4b 100644 --- a/libc/sysv/consts/__NR_getegid.S +++ b/libc/sysv/consts/__NR_getegid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getegid,0x006c,0x200002b,0x002b,0x002b,-1,-1 +.syscon nr,__NR_getegid,0x006c,0x200002b,0x002b,0x002b,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_geteuid.S b/libc/sysv/consts/__NR_geteuid.S index 8c096a5d..2e6ef635 100644 --- a/libc/sysv/consts/__NR_geteuid.S +++ b/libc/sysv/consts/__NR_geteuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_geteuid,0x006b,0x2000019,0x0019,0x0019,-1,-1 +.syscon nr,__NR_geteuid,0x006b,0x2000019,0x0019,0x0019,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getfh.S b/libc/sysv/consts/__NR_getfh.S index 6ca31d85..b23cde49 100644 --- a/libc/sysv/consts/__NR_getfh.S +++ b/libc/sysv/consts/__NR_getfh.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getfh,-1,0x20000a1,0x00a1,0x00a1,0x18b,-1 +.syscon nr,__NR_getfh,0xfff,0x20000a1,0x00a1,0x00a1,0x18b,0xfff diff --git a/libc/sysv/consts/__NR_getfhat.S b/libc/sysv/consts/__NR_getfhat.S index 531fb059..3c90fbd2 100644 --- a/libc/sysv/consts/__NR_getfhat.S +++ b/libc/sysv/consts/__NR_getfhat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getfhat,-1,-1,0x0234,-1,-1,-1 +.syscon nr,__NR_getfhat,0xfff,0xfff,0x0234,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getfsstat.S b/libc/sysv/consts/__NR_getfsstat.S index 4f38063c..2f2474cf 100644 --- a/libc/sysv/consts/__NR_getfsstat.S +++ b/libc/sysv/consts/__NR_getfsstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getfsstat,-1,0x200015b,0x022d,0x003e,-1,-1 +.syscon nr,__NR_getfsstat,0xfff,0x200015b,0x022d,0x003e,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getgid.S b/libc/sysv/consts/__NR_getgid.S index 0fc5498e..23139c62 100644 --- a/libc/sysv/consts/__NR_getgid.S +++ b/libc/sysv/consts/__NR_getgid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getgid,0x0068,0x200002f,0x002f,0x002f,0x02f,-1 +.syscon nr,__NR_getgid,0x0068,0x200002f,0x002f,0x002f,0x02f,0xfff diff --git a/libc/sysv/consts/__NR_getgroups.S b/libc/sysv/consts/__NR_getgroups.S index e27853b3..1dd280c5 100644 --- a/libc/sysv/consts/__NR_getgroups.S +++ b/libc/sysv/consts/__NR_getgroups.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getgroups,0x0073,0x200004f,0x004f,0x004f,0x04f,-1 +.syscon nr,__NR_getgroups,0x0073,0x200004f,0x004f,0x004f,0x04f,0xfff diff --git a/libc/sysv/consts/__NR_gethostid.S b/libc/sysv/consts/__NR_gethostid.S index 242233c5..b609d1e7 100644 --- a/libc/sysv/consts/__NR_gethostid.S +++ b/libc/sysv/consts/__NR_gethostid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_gethostid,-1,-1,0x008e,-1,-1,-1 +.syscon nr,__NR_gethostid,0xfff,0xfff,0x008e,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_gethostuuid.S b/libc/sysv/consts/__NR_gethostuuid.S index 753211fa..57ea0851 100644 --- a/libc/sysv/consts/__NR_gethostuuid.S +++ b/libc/sysv/consts/__NR_gethostuuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_gethostuuid,-1,0x200008e,-1,-1,-1,-1 +.syscon nr,__NR_gethostuuid,0xfff,0x200008e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getitimer.S b/libc/sysv/consts/__NR_getitimer.S index cb0dfef7..a5852489 100644 --- a/libc/sysv/consts/__NR_getitimer.S +++ b/libc/sysv/consts/__NR_getitimer.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getitimer,0x0024,0x2000056,0x0056,0x0046,0x1aa,-1 +.syscon nr,__NR_getitimer,0x0024,0x2000056,0x0056,0x0046,0x1aa,0xfff diff --git a/libc/sysv/consts/__NR_getkerninfo.S b/libc/sysv/consts/__NR_getkerninfo.S index 2d33909f..83649f68 100644 --- a/libc/sysv/consts/__NR_getkerninfo.S +++ b/libc/sysv/consts/__NR_getkerninfo.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getkerninfo,-1,-1,0x003f,-1,-1,-1 +.syscon nr,__NR_getkerninfo,0xfff,0xfff,0x003f,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getlogin.S b/libc/sysv/consts/__NR_getlogin.S index 1d953fa4..f6ad9f93 100644 --- a/libc/sysv/consts/__NR_getlogin.S +++ b/libc/sysv/consts/__NR_getlogin.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getlogin,-1,0x2000031,0x0031,-1,-1,-1 +.syscon nr,__NR_getlogin,0xfff,0x2000031,0x0031,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getlogin_r.S b/libc/sysv/consts/__NR_getlogin_r.S index 9ae7caa0..d076b710 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.internal.h" -.syscon nr,__NR_getlogin_r,-1,-1,-1,0x008d,-1,-1 +.syscon nr,__NR_getlogin_r,0xfff,0xfff,0xfff,0x008d,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getloginclass.S b/libc/sysv/consts/__NR_getloginclass.S index 9c9c725e..d2ddd4bd 100644 --- a/libc/sysv/consts/__NR_getloginclass.S +++ b/libc/sysv/consts/__NR_getloginclass.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getloginclass,-1,-1,0x020b,-1,-1,-1 +.syscon nr,__NR_getloginclass,0xfff,0xfff,0x020b,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getpagesize.S b/libc/sysv/consts/__NR_getpagesize.S index c269c5ef..e7b69e31 100644 --- a/libc/sysv/consts/__NR_getpagesize.S +++ b/libc/sysv/consts/__NR_getpagesize.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getpagesize,-1,-1,0x0040,-1,-1,-1 +.syscon nr,__NR_getpagesize,0xfff,0xfff,0x0040,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getpeername.S b/libc/sysv/consts/__NR_getpeername.S index c1a194b1..30982f27 100644 --- a/libc/sysv/consts/__NR_getpeername.S +++ b/libc/sysv/consts/__NR_getpeername.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getpeername,0x0034,0x200001f,0x008d,0x001f,0x01f,-1 +.syscon nr,__NR_getpeername,0x0034,0x200001f,0x008d,0x001f,0x01f,0xfff diff --git a/libc/sysv/consts/__NR_getpgid.S b/libc/sysv/consts/__NR_getpgid.S index 9708aac1..63fa41f1 100644 --- a/libc/sysv/consts/__NR_getpgid.S +++ b/libc/sysv/consts/__NR_getpgid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getpgid,0x0079,0x2000097,0x00cf,0x00cf,0x0cf,-1 +.syscon nr,__NR_getpgid,0x0079,0x2000097,0x00cf,0x00cf,0x0cf,0xfff diff --git a/libc/sysv/consts/__NR_getpgrp.S b/libc/sysv/consts/__NR_getpgrp.S index b7ff4dc8..3677572f 100644 --- a/libc/sysv/consts/__NR_getpgrp.S +++ b/libc/sysv/consts/__NR_getpgrp.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getpgrp,0x006f,0x2000051,0x0051,0x0051,0x051,-1 +.syscon nr,__NR_getpgrp,0x006f,0x2000051,0x0051,0x0051,0x051,0xfff diff --git a/libc/sysv/consts/__NR_getpid.S b/libc/sysv/consts/__NR_getpid.S index bf6b2de1..34e02ca7 100644 --- a/libc/sysv/consts/__NR_getpid.S +++ b/libc/sysv/consts/__NR_getpid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getpid,0x0027,0x2000014,0x0014,0x0014,0x014,-1 +.syscon nr,__NR_getpid,0x0027,0x2000014,0x0014,0x0014,0x014,0xfff diff --git a/libc/sysv/consts/__NR_getppid.S b/libc/sysv/consts/__NR_getppid.S index bbfac3ee..ec151850 100644 --- a/libc/sysv/consts/__NR_getppid.S +++ b/libc/sysv/consts/__NR_getppid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getppid,0x006e,0x2000027,0x0027,0x0027,-1,-1 +.syscon nr,__NR_getppid,0x006e,0x2000027,0x0027,0x0027,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getpriority.S b/libc/sysv/consts/__NR_getpriority.S index 1530e33f..21f6d991 100644 --- a/libc/sysv/consts/__NR_getpriority.S +++ b/libc/sysv/consts/__NR_getpriority.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getpriority,0x008c,0x2000064,0x0064,0x0064,0x064,-1 +.syscon nr,__NR_getpriority,0x008c,0x2000064,0x0064,0x0064,0x064,0xfff diff --git a/libc/sysv/consts/__NR_getrandom.S b/libc/sysv/consts/__NR_getrandom.S index b34bac23..82edc902 100644 --- a/libc/sysv/consts/__NR_getrandom.S +++ b/libc/sysv/consts/__NR_getrandom.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getrandom,0x013e,0x20001f4,0x0233,0x0007,0x05b,-1 +.syscon nr,__NR_getrandom,0x013e,0x20001f4,0x0233,0x0007,0x05b,0xfff diff --git a/libc/sysv/consts/__NR_getresgid.S b/libc/sysv/consts/__NR_getresgid.S index 113685fb..6ab2cd6a 100644 --- a/libc/sysv/consts/__NR_getresgid.S +++ b/libc/sysv/consts/__NR_getresgid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getresgid,0x0078,-1,0x0169,0x011b,-1,-1 +.syscon nr,__NR_getresgid,0x0078,0xfff,0x0169,0x011b,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getresuid.S b/libc/sysv/consts/__NR_getresuid.S index 2b15b027..7c25f39c 100644 --- a/libc/sysv/consts/__NR_getresuid.S +++ b/libc/sysv/consts/__NR_getresuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getresuid,0x0076,-1,0x0168,0x0119,-1,-1 +.syscon nr,__NR_getresuid,0x0076,0xfff,0x0168,0x0119,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getrlimit.S b/libc/sysv/consts/__NR_getrlimit.S index 67f26fcb..04d47601 100644 --- a/libc/sysv/consts/__NR_getrlimit.S +++ b/libc/sysv/consts/__NR_getrlimit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getrlimit,0x0061,0x20000c2,0x00c2,0x00c2,0x0c2,-1 +.syscon nr,__NR_getrlimit,0x0061,0x20000c2,0x00c2,0x00c2,0x0c2,0xfff diff --git a/libc/sysv/consts/__NR_getrtable.S b/libc/sysv/consts/__NR_getrtable.S index c4162bab..bcb5330e 100644 --- a/libc/sysv/consts/__NR_getrtable.S +++ b/libc/sysv/consts/__NR_getrtable.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getrtable,-1,-1,-1,0x0137,-1,-1 +.syscon nr,__NR_getrtable,0xfff,0xfff,0xfff,0x0137,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getrusage.S b/libc/sysv/consts/__NR_getrusage.S index 8a3f0c70..86eb1d0a 100644 --- a/libc/sysv/consts/__NR_getrusage.S +++ b/libc/sysv/consts/__NR_getrusage.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getrusage,0x0062,0x2000075,0x0075,0x0013,0x1bd,-1 +.syscon nr,__NR_getrusage,0x0062,0x2000075,0x0075,0x0013,0x1bd,0xfff diff --git a/libc/sysv/consts/__NR_getsgroups.S b/libc/sysv/consts/__NR_getsgroups.S index 762a8fef..3d498f8c 100644 --- a/libc/sysv/consts/__NR_getsgroups.S +++ b/libc/sysv/consts/__NR_getsgroups.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getsgroups,-1,0x2000120,-1,-1,-1,-1 +.syscon nr,__NR_getsgroups,0xfff,0x2000120,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getsid.S b/libc/sysv/consts/__NR_getsid.S index a80d1224..8ae61779 100644 --- a/libc/sysv/consts/__NR_getsid.S +++ b/libc/sysv/consts/__NR_getsid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getsid,0x007c,0x2000136,0x0136,0x00ff,0x11e,-1 +.syscon nr,__NR_getsid,0x007c,0x2000136,0x0136,0x00ff,0x11e,0xfff diff --git a/libc/sysv/consts/__NR_getsockname.S b/libc/sysv/consts/__NR_getsockname.S index ea1bb7a6..c093814d 100644 --- a/libc/sysv/consts/__NR_getsockname.S +++ b/libc/sysv/consts/__NR_getsockname.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getsockname,0x0033,0x2000020,0x0020,0x0020,0x020,-1 +.syscon nr,__NR_getsockname,0x0033,0x2000020,0x0020,0x0020,0x020,0xfff diff --git a/libc/sysv/consts/__NR_getsockopt.S b/libc/sysv/consts/__NR_getsockopt.S index 76ec7062..994acca1 100644 --- a/libc/sysv/consts/__NR_getsockopt.S +++ b/libc/sysv/consts/__NR_getsockopt.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getsockopt,0x0037,0x2000076,0x0076,0x0076,0x076,-1 +.syscon nr,__NR_getsockopt,0x0037,0x2000076,0x0076,0x0076,0x076,0xfff diff --git a/libc/sysv/consts/__NR_getthrid.S b/libc/sysv/consts/__NR_getthrid.S index 575627a7..153b4ac3 100644 --- a/libc/sysv/consts/__NR_getthrid.S +++ b/libc/sysv/consts/__NR_getthrid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getthrid,-1,-1,-1,0x012b,-1,-1 +.syscon nr,__NR_getthrid,0xfff,0xfff,0xfff,0x012b,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_gettid.S b/libc/sysv/consts/__NR_gettid.S index dcf10a73..d881f58b 100644 --- a/libc/sysv/consts/__NR_gettid.S +++ b/libc/sysv/consts/__NR_gettid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_gettid,0x00ba,0x200011e,-1,-1,-1,-1 +.syscon nr,__NR_gettid,0x00ba,0x200011e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_gettimeofday.S b/libc/sysv/consts/__NR_gettimeofday.S index 69046c7a..6511d007 100644 --- a/libc/sysv/consts/__NR_gettimeofday.S +++ b/libc/sysv/consts/__NR_gettimeofday.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_gettimeofday,0x0060,0x2000074,0x0074,0x0043,0x1a2,-1 +.syscon nr,__NR_gettimeofday,0x0060,0x2000074,0x0074,0x0043,0x1a2,0xfff diff --git a/libc/sysv/consts/__NR_getuid.S b/libc/sysv/consts/__NR_getuid.S index 74c74ab4..c6f261c8 100644 --- a/libc/sysv/consts/__NR_getuid.S +++ b/libc/sysv/consts/__NR_getuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getuid,0x0066,0x2000018,0x0018,0x0018,0x018,-1 +.syscon nr,__NR_getuid,0x0066,0x2000018,0x0018,0x0018,0x018,0xfff diff --git a/libc/sysv/consts/__NR_getwgroups.S b/libc/sysv/consts/__NR_getwgroups.S index 4a4233b2..24f0a152 100644 --- a/libc/sysv/consts/__NR_getwgroups.S +++ b/libc/sysv/consts/__NR_getwgroups.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getwgroups,-1,0x2000122,-1,-1,-1,-1 +.syscon nr,__NR_getwgroups,0xfff,0x2000122,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_getxattr.S b/libc/sysv/consts/__NR_getxattr.S index 88926eee..ad4d687c 100644 --- a/libc/sysv/consts/__NR_getxattr.S +++ b/libc/sysv/consts/__NR_getxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_getxattr,0x00bf,0x20000ea,-1,-1,0x17a,-1 +.syscon nr,__NR_getxattr,0x00bf,0x20000ea,0xfff,0xfff,0x17a,0xfff diff --git a/libc/sysv/consts/__NR_grab_pgo_data.S b/libc/sysv/consts/__NR_grab_pgo_data.S index 4fa277f5..41062175 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.internal.h" -.syscon nr,__NR_grab_pgo_data,-1,0x20001ed,-1,-1,-1,-1 +.syscon nr,__NR_grab_pgo_data,0xfff,0x20001ed,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_gssd_syscall.S b/libc/sysv/consts/__NR_gssd_syscall.S index 8f346566..3c2a28e4 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.internal.h" -.syscon nr,__NR_gssd_syscall,-1,-1,0x01f9,-1,-1,-1 +.syscon nr,__NR_gssd_syscall,0xfff,0xfff,0x01f9,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_guarded_close_np.S b/libc/sysv/consts/__NR_guarded_close_np.S index df54851c..0a114876 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.internal.h" -.syscon nr,__NR_guarded_close_np,-1,0x20001ba,-1,-1,-1,-1 +.syscon nr,__NR_guarded_close_np,0xfff,0x20001ba,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_guarded_kqueue_np.S b/libc/sysv/consts/__NR_guarded_kqueue_np.S index 9a1f1fdc..ec2721b2 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.internal.h" -.syscon nr,__NR_guarded_kqueue_np,-1,0x20001bb,-1,-1,-1,-1 +.syscon nr,__NR_guarded_kqueue_np,0xfff,0x20001bb,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_guarded_open_dprotected_np.S b/libc/sysv/consts/__NR_guarded_open_dprotected_np.S index f2822b30..d6edd898 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.internal.h" -.syscon nr,__NR_guarded_open_dprotected_np,-1,0x20001e4,-1,-1,-1,-1 +.syscon nr,__NR_guarded_open_dprotected_np,0xfff,0x20001e4,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_guarded_open_np.S b/libc/sysv/consts/__NR_guarded_open_np.S index 96bf61f3..5f7db948 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.internal.h" -.syscon nr,__NR_guarded_open_np,-1,0x20001b9,-1,-1,-1,-1 +.syscon nr,__NR_guarded_open_np,0xfff,0x20001b9,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_guarded_pwrite_np.S b/libc/sysv/consts/__NR_guarded_pwrite_np.S index 47d33d70..ba815c05 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.internal.h" -.syscon nr,__NR_guarded_pwrite_np,-1,0x20001e6,-1,-1,-1,-1 +.syscon nr,__NR_guarded_pwrite_np,0xfff,0x20001e6,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_guarded_write_np.S b/libc/sysv/consts/__NR_guarded_write_np.S index 644ac0e5..393a5906 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.internal.h" -.syscon nr,__NR_guarded_write_np,-1,0x20001e5,-1,-1,-1,-1 +.syscon nr,__NR_guarded_write_np,0xfff,0x20001e5,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_guarded_writev_np.S b/libc/sysv/consts/__NR_guarded_writev_np.S index 9156ee11..3038e362 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.internal.h" -.syscon nr,__NR_guarded_writev_np,-1,0x20001e7,-1,-1,-1,-1 +.syscon nr,__NR_guarded_writev_np,0xfff,0x20001e7,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_identitysvc.S b/libc/sysv/consts/__NR_identitysvc.S index d218b74e..f21b81b1 100644 --- a/libc/sysv/consts/__NR_identitysvc.S +++ b/libc/sysv/consts/__NR_identitysvc.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_identitysvc,-1,0x2000125,-1,-1,-1,-1 +.syscon nr,__NR_identitysvc,0xfff,0x2000125,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_init_module.S b/libc/sysv/consts/__NR_init_module.S index 1f0be07c..3bdbf940 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.internal.h" -.syscon nr,__NR_init_module,0x00af,-1,-1,-1,-1,-1 +.syscon nr,__NR_init_module,0x00af,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_initgroups.S b/libc/sysv/consts/__NR_initgroups.S index 8abe6298..16ab23a5 100644 --- a/libc/sysv/consts/__NR_initgroups.S +++ b/libc/sysv/consts/__NR_initgroups.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_initgroups,-1,0x20000f3,-1,-1,-1,-1 +.syscon nr,__NR_initgroups,0xfff,0x20000f3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_inotify_add_watch.S b/libc/sysv/consts/__NR_inotify_add_watch.S index 53dc33b9..63663996 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.internal.h" -.syscon nr,__NR_inotify_add_watch,0x00fe,-1,-1,-1,-1,-1 +.syscon nr,__NR_inotify_add_watch,0x00fe,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_inotify_init.S b/libc/sysv/consts/__NR_inotify_init.S index ee372c33..68a48ac7 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.internal.h" -.syscon nr,__NR_inotify_init,0x00fd,-1,-1,-1,-1,-1 +.syscon nr,__NR_inotify_init,0x00fd,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_inotify_init1.S b/libc/sysv/consts/__NR_inotify_init1.S index 7abf662a..7ed4d336 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.internal.h" -.syscon nr,__NR_inotify_init1,0x0126,-1,-1,-1,-1,-1 +.syscon nr,__NR_inotify_init1,0x0126,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_inotify_rm_watch.S b/libc/sysv/consts/__NR_inotify_rm_watch.S index ceb1283a..c4722ab1 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.internal.h" -.syscon nr,__NR_inotify_rm_watch,0x00ff,-1,-1,-1,-1,-1 +.syscon nr,__NR_inotify_rm_watch,0x00ff,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_cancel.S b/libc/sysv/consts/__NR_io_cancel.S index 1c8a03fb..d239a51e 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.internal.h" -.syscon nr,__NR_io_cancel,0x00d2,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_cancel,0x00d2,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_destroy.S b/libc/sysv/consts/__NR_io_destroy.S index 06f8b0e3..76626373 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.internal.h" -.syscon nr,__NR_io_destroy,0x00cf,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_destroy,0x00cf,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_getevents.S b/libc/sysv/consts/__NR_io_getevents.S index 4bb84ba7..2d1695e9 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.internal.h" -.syscon nr,__NR_io_getevents,0x00d0,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_getevents,0x00d0,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_pgetevents.S b/libc/sysv/consts/__NR_io_pgetevents.S index 174d2866..aabde4ac 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.internal.h" -.syscon nr,__NR_io_pgetevents,0x014d,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_pgetevents,0x014d,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_setup.S b/libc/sysv/consts/__NR_io_setup.S index 84f38a4d..46424939 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.internal.h" -.syscon nr,__NR_io_setup,0x00ce,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_setup,0x00ce,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_submit.S b/libc/sysv/consts/__NR_io_submit.S index 126894af..4d991b49 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.internal.h" -.syscon nr,__NR_io_submit,0x00d1,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_submit,0x00d1,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_uring_enter.S b/libc/sysv/consts/__NR_io_uring_enter.S index 4c771ab0..e301f2ee 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.internal.h" -.syscon nr,__NR_io_uring_enter,0x01aa,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_uring_enter,0x01aa,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_uring_register.S b/libc/sysv/consts/__NR_io_uring_register.S index ca0a527e..75bafe4b 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.internal.h" -.syscon nr,__NR_io_uring_register,0x01ab,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_uring_register,0x01ab,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_io_uring_setup.S b/libc/sysv/consts/__NR_io_uring_setup.S index b1022071..9baf0b2b 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.internal.h" -.syscon nr,__NR_io_uring_setup,0x01a9,-1,-1,-1,-1,-1 +.syscon nr,__NR_io_uring_setup,0x01a9,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ioctl.S b/libc/sysv/consts/__NR_ioctl.S index 66bfd68a..59ae95c3 100644 --- a/libc/sysv/consts/__NR_ioctl.S +++ b/libc/sysv/consts/__NR_ioctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ioctl,0x0010,0x2000036,0x0036,0x0036,0x036,-1 +.syscon nr,__NR_ioctl,0x0010,0x2000036,0x0036,0x0036,0x036,0xfff diff --git a/libc/sysv/consts/__NR_ioperm.S b/libc/sysv/consts/__NR_ioperm.S index 8972fa08..c84a8f61 100644 --- a/libc/sysv/consts/__NR_ioperm.S +++ b/libc/sysv/consts/__NR_ioperm.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ioperm,0x00ad,-1,-1,-1,-1,-1 +.syscon nr,__NR_ioperm,0x00ad,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_iopl.S b/libc/sysv/consts/__NR_iopl.S index 8771f898..455b2e6a 100644 --- a/libc/sysv/consts/__NR_iopl.S +++ b/libc/sysv/consts/__NR_iopl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_iopl,0x00ac,-1,-1,-1,-1,-1 +.syscon nr,__NR_iopl,0x00ac,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_iopolicysys.S b/libc/sysv/consts/__NR_iopolicysys.S index d1443329..54bf1644 100644 --- a/libc/sysv/consts/__NR_iopolicysys.S +++ b/libc/sysv/consts/__NR_iopolicysys.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_iopolicysys,-1,0x2000142,-1,-1,-1,-1 +.syscon nr,__NR_iopolicysys,0xfff,0x2000142,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ioprio_get.S b/libc/sysv/consts/__NR_ioprio_get.S index 8fdfb582..1ea6a96d 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.internal.h" -.syscon nr,__NR_ioprio_get,0x00fc,-1,-1,-1,-1,-1 +.syscon nr,__NR_ioprio_get,0x00fc,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ioprio_set.S b/libc/sysv/consts/__NR_ioprio_set.S index 76b36777..8d1b3b79 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.internal.h" -.syscon nr,__NR_ioprio_set,0x00fb,-1,-1,-1,-1,-1 +.syscon nr,__NR_ioprio_set,0x00fb,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_issetugid.S b/libc/sysv/consts/__NR_issetugid.S index 5844404a..bd0a2d50 100644 --- a/libc/sysv/consts/__NR_issetugid.S +++ b/libc/sysv/consts/__NR_issetugid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_issetugid,-1,0x2000147,0x00fd,0x00fd,-1,-1 +.syscon nr,__NR_issetugid,0xfff,0x2000147,0x00fd,0x00fd,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_jail.S b/libc/sysv/consts/__NR_jail.S index eb7c6aac..c99973fd 100644 --- a/libc/sysv/consts/__NR_jail.S +++ b/libc/sysv/consts/__NR_jail.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_jail,-1,-1,0x0152,-1,-1,-1 +.syscon nr,__NR_jail,0xfff,0xfff,0x0152,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_jail_attach.S b/libc/sysv/consts/__NR_jail_attach.S index 8497d9bd..115c8b77 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.internal.h" -.syscon nr,__NR_jail_attach,-1,-1,0x01b4,-1,-1,-1 +.syscon nr,__NR_jail_attach,0xfff,0xfff,0x01b4,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_jail_get.S b/libc/sysv/consts/__NR_jail_get.S index 1164daad..6b86e9e6 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.internal.h" -.syscon nr,__NR_jail_get,-1,-1,0x01fa,-1,-1,-1 +.syscon nr,__NR_jail_get,0xfff,0xfff,0x01fa,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_jail_remove.S b/libc/sysv/consts/__NR_jail_remove.S index c3a3a5d8..ed695c7e 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.internal.h" -.syscon nr,__NR_jail_remove,-1,-1,0x01fc,-1,-1,-1 +.syscon nr,__NR_jail_remove,0xfff,0xfff,0x01fc,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_jail_set.S b/libc/sysv/consts/__NR_jail_set.S index c14823f9..3d55fbe9 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.internal.h" -.syscon nr,__NR_jail_set,-1,-1,0x01fb,-1,-1,-1 +.syscon nr,__NR_jail_set,0xfff,0xfff,0x01fb,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kas_info.S b/libc/sysv/consts/__NR_kas_info.S index a5ed7a19..a84c92ca 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.internal.h" -.syscon nr,__NR_kas_info,-1,0x20001b7,-1,-1,-1,-1 +.syscon nr,__NR_kas_info,0xfff,0x20001b7,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kbind.S b/libc/sysv/consts/__NR_kbind.S index 919c9080..9b3cb1d0 100644 --- a/libc/sysv/consts/__NR_kbind.S +++ b/libc/sysv/consts/__NR_kbind.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kbind,-1,-1,-1,0x0056,-1,-1 +.syscon nr,__NR_kbind,0xfff,0xfff,0xfff,0x0056,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kcmp.S b/libc/sysv/consts/__NR_kcmp.S index 446b883e..c42d8fe8 100644 --- a/libc/sysv/consts/__NR_kcmp.S +++ b/libc/sysv/consts/__NR_kcmp.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kcmp,0x0138,-1,-1,-1,-1,-1 +.syscon nr,__NR_kcmp,0x0138,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kdebug_trace.S b/libc/sysv/consts/__NR_kdebug_trace.S index 62b70b1c..0e57d753 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.internal.h" -.syscon nr,__NR_kdebug_trace,-1,0x20000b3,-1,-1,-1,-1 +.syscon nr,__NR_kdebug_trace,0xfff,0x20000b3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kdebug_trace_string.S b/libc/sysv/consts/__NR_kdebug_trace_string.S index 91415631..38430045 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.internal.h" -.syscon nr,__NR_kdebug_trace_string,-1,0x20000b2,-1,-1,-1,-1 +.syscon nr,__NR_kdebug_trace_string,0xfff,0x20000b2,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kdebug_typefilter.S b/libc/sysv/consts/__NR_kdebug_typefilter.S index 26ec0bbc..27a1a551 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.internal.h" -.syscon nr,__NR_kdebug_typefilter,-1,0x20000b1,-1,-1,-1,-1 +.syscon nr,__NR_kdebug_typefilter,0xfff,0x20000b1,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kenv.S b/libc/sysv/consts/__NR_kenv.S index 18b15537..1412e112 100644 --- a/libc/sysv/consts/__NR_kenv.S +++ b/libc/sysv/consts/__NR_kenv.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kenv,-1,-1,0x0186,-1,-1,-1 +.syscon nr,__NR_kenv,0xfff,0xfff,0x0186,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kevent.S b/libc/sysv/consts/__NR_kevent.S index 2736e8b8..2f74ea20 100644 --- a/libc/sysv/consts/__NR_kevent.S +++ b/libc/sysv/consts/__NR_kevent.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kevent,-1,0x2000171,0x0230,0x0048,0x1b3,-1 +.syscon nr,__NR_kevent,0xfff,0x2000171,0x0230,0x0048,0x1b3,0xfff diff --git a/libc/sysv/consts/__NR_kevent_id.S b/libc/sysv/consts/__NR_kevent_id.S index f810b559..2ef048ce 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.internal.h" -.syscon nr,__NR_kevent_id,-1,0x2000177,-1,-1,-1,-1 +.syscon nr,__NR_kevent_id,0xfff,0x2000177,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kevent_qos.S b/libc/sysv/consts/__NR_kevent_qos.S index da028e19..3e0f80f2 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.internal.h" -.syscon nr,__NR_kevent_qos,-1,0x2000176,-1,-1,-1,-1 +.syscon nr,__NR_kevent_qos,0xfff,0x2000176,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kexec_file_load.S b/libc/sysv/consts/__NR_kexec_file_load.S index bca054d2..16a35328 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.internal.h" -.syscon nr,__NR_kexec_file_load,0x0140,-1,-1,-1,-1,-1 +.syscon nr,__NR_kexec_file_load,0x0140,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kexec_load.S b/libc/sysv/consts/__NR_kexec_load.S index 16d5bc44..7c9f1f0c 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.internal.h" -.syscon nr,__NR_kexec_load,0x00f6,-1,-1,-1,-1,-1 +.syscon nr,__NR_kexec_load,0x00f6,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_keyctl.S b/libc/sysv/consts/__NR_keyctl.S index d31f9ad6..4390c482 100644 --- a/libc/sysv/consts/__NR_keyctl.S +++ b/libc/sysv/consts/__NR_keyctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_keyctl,0x00fa,-1,-1,-1,-1,-1 +.syscon nr,__NR_keyctl,0x00fa,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kill.S b/libc/sysv/consts/__NR_kill.S index d493ea91..96ab5bd3 100644 --- a/libc/sysv/consts/__NR_kill.S +++ b/libc/sysv/consts/__NR_kill.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kill,0x003e,0x2000025,0x0025,0x007a,0x025,-1 +.syscon nr,__NR_kill,0x003e,0x2000025,0x0025,0x007a,0x025,0xfff diff --git a/libc/sysv/consts/__NR_killpg.S b/libc/sysv/consts/__NR_killpg.S index 005e9e74..f44da508 100644 --- a/libc/sysv/consts/__NR_killpg.S +++ b/libc/sysv/consts/__NR_killpg.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_killpg,-1,-1,0x0092,-1,-1,-1 +.syscon nr,__NR_killpg,0xfff,0xfff,0x0092,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldfind.S b/libc/sysv/consts/__NR_kldfind.S index b1ed0aa3..e41062f5 100644 --- a/libc/sysv/consts/__NR_kldfind.S +++ b/libc/sysv/consts/__NR_kldfind.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldfind,-1,-1,0x0132,-1,-1,-1 +.syscon nr,__NR_kldfind,0xfff,0xfff,0x0132,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldfirstmod.S b/libc/sysv/consts/__NR_kldfirstmod.S index 52abbd4d..cd7e14b6 100644 --- a/libc/sysv/consts/__NR_kldfirstmod.S +++ b/libc/sysv/consts/__NR_kldfirstmod.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldfirstmod,-1,-1,0x0135,-1,-1,-1 +.syscon nr,__NR_kldfirstmod,0xfff,0xfff,0x0135,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldload.S b/libc/sysv/consts/__NR_kldload.S index 6d1fa01d..59b2c60e 100644 --- a/libc/sysv/consts/__NR_kldload.S +++ b/libc/sysv/consts/__NR_kldload.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldload,-1,-1,0x0130,-1,-1,-1 +.syscon nr,__NR_kldload,0xfff,0xfff,0x0130,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldnext.S b/libc/sysv/consts/__NR_kldnext.S index 75067d6d..ce9a5bf2 100644 --- a/libc/sysv/consts/__NR_kldnext.S +++ b/libc/sysv/consts/__NR_kldnext.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldnext,-1,-1,0x0133,-1,-1,-1 +.syscon nr,__NR_kldnext,0xfff,0xfff,0x0133,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldstat.S b/libc/sysv/consts/__NR_kldstat.S index 0513dbe9..4c8b46ae 100644 --- a/libc/sysv/consts/__NR_kldstat.S +++ b/libc/sysv/consts/__NR_kldstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldstat,-1,-1,0x0134,-1,-1,-1 +.syscon nr,__NR_kldstat,0xfff,0xfff,0x0134,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldsym.S b/libc/sysv/consts/__NR_kldsym.S index de85d3ff..fc650f52 100644 --- a/libc/sysv/consts/__NR_kldsym.S +++ b/libc/sysv/consts/__NR_kldsym.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldsym,-1,-1,0x0151,-1,-1,-1 +.syscon nr,__NR_kldsym,0xfff,0xfff,0x0151,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldunload.S b/libc/sysv/consts/__NR_kldunload.S index b8249349..81e55d10 100644 --- a/libc/sysv/consts/__NR_kldunload.S +++ b/libc/sysv/consts/__NR_kldunload.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldunload,-1,-1,0x0131,-1,-1,-1 +.syscon nr,__NR_kldunload,0xfff,0xfff,0x0131,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kldunloadf.S b/libc/sysv/consts/__NR_kldunloadf.S index 3d4fc0f3..20792bf4 100644 --- a/libc/sysv/consts/__NR_kldunloadf.S +++ b/libc/sysv/consts/__NR_kldunloadf.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kldunloadf,-1,-1,0x01bc,-1,-1,-1 +.syscon nr,__NR_kldunloadf,0xfff,0xfff,0x01bc,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kmq_notify.S b/libc/sysv/consts/__NR_kmq_notify.S index 1dbf9ebc..138cf3fd 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.internal.h" -.syscon nr,__NR_kmq_notify,-1,-1,0x01cd,-1,-1,-1 +.syscon nr,__NR_kmq_notify,0xfff,0xfff,0x01cd,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kmq_setattr.S b/libc/sysv/consts/__NR_kmq_setattr.S index c347559c..dbb1d115 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.internal.h" -.syscon nr,__NR_kmq_setattr,-1,-1,0x01ca,-1,-1,-1 +.syscon nr,__NR_kmq_setattr,0xfff,0xfff,0x01ca,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kmq_timedreceive.S b/libc/sysv/consts/__NR_kmq_timedreceive.S index d822e99e..bb768dcc 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.internal.h" -.syscon nr,__NR_kmq_timedreceive,-1,-1,0x01cb,-1,-1,-1 +.syscon nr,__NR_kmq_timedreceive,0xfff,0xfff,0x01cb,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kmq_timedsend.S b/libc/sysv/consts/__NR_kmq_timedsend.S index f9f02af3..34fecec4 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.internal.h" -.syscon nr,__NR_kmq_timedsend,-1,-1,0x01cc,-1,-1,-1 +.syscon nr,__NR_kmq_timedsend,0xfff,0xfff,0x01cc,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kmq_unlink.S b/libc/sysv/consts/__NR_kmq_unlink.S index 8fe98b1a..1e6483f9 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.internal.h" -.syscon nr,__NR_kmq_unlink,-1,-1,0x01ce,-1,-1,-1 +.syscon nr,__NR_kmq_unlink,0xfff,0xfff,0x01ce,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_kqueue.S b/libc/sysv/consts/__NR_kqueue.S index 85cb2413..3108e58e 100644 --- a/libc/sysv/consts/__NR_kqueue.S +++ b/libc/sysv/consts/__NR_kqueue.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_kqueue,-1,0x200016a,0x016a,0x010d,0x158,-1 +.syscon nr,__NR_kqueue,0xfff,0x200016a,0x016a,0x010d,0x158,0xfff diff --git a/libc/sysv/consts/__NR_ksem_close.S b/libc/sysv/consts/__NR_ksem_close.S index 271cc5e8..779b9f16 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.internal.h" -.syscon nr,__NR_ksem_close,-1,-1,0x0190,-1,-1,-1 +.syscon nr,__NR_ksem_close,0xfff,0xfff,0x0190,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_destroy.S b/libc/sysv/consts/__NR_ksem_destroy.S index 5d5feb2f..efe5a7d3 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.internal.h" -.syscon nr,__NR_ksem_destroy,-1,-1,0x0198,-1,-1,-1 +.syscon nr,__NR_ksem_destroy,0xfff,0xfff,0x0198,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_getvalue.S b/libc/sysv/consts/__NR_ksem_getvalue.S index 9e49a29b..47b17c46 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.internal.h" -.syscon nr,__NR_ksem_getvalue,-1,-1,0x0197,-1,-1,-1 +.syscon nr,__NR_ksem_getvalue,0xfff,0xfff,0x0197,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_init.S b/libc/sysv/consts/__NR_ksem_init.S index 5a89eca4..42abd192 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.internal.h" -.syscon nr,__NR_ksem_init,-1,-1,0x0194,-1,-1,-1 +.syscon nr,__NR_ksem_init,0xfff,0xfff,0x0194,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_open.S b/libc/sysv/consts/__NR_ksem_open.S index dd0523e8..fe27b371 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.internal.h" -.syscon nr,__NR_ksem_open,-1,-1,0x0195,-1,-1,-1 +.syscon nr,__NR_ksem_open,0xfff,0xfff,0x0195,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_post.S b/libc/sysv/consts/__NR_ksem_post.S index 8bd2500a..6b058a9d 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.internal.h" -.syscon nr,__NR_ksem_post,-1,-1,0x0191,-1,-1,-1 +.syscon nr,__NR_ksem_post,0xfff,0xfff,0x0191,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_timedwait.S b/libc/sysv/consts/__NR_ksem_timedwait.S index ca7d4d99..482a1f83 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.internal.h" -.syscon nr,__NR_ksem_timedwait,-1,-1,0x01b9,-1,-1,-1 +.syscon nr,__NR_ksem_timedwait,0xfff,0xfff,0x01b9,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_trywait.S b/libc/sysv/consts/__NR_ksem_trywait.S index db6f27f9..9aae27aa 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.internal.h" -.syscon nr,__NR_ksem_trywait,-1,-1,0x0193,-1,-1,-1 +.syscon nr,__NR_ksem_trywait,0xfff,0xfff,0x0193,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_unlink.S b/libc/sysv/consts/__NR_ksem_unlink.S index 7a1df5a9..3c17c10c 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.internal.h" -.syscon nr,__NR_ksem_unlink,-1,-1,0x0196,-1,-1,-1 +.syscon nr,__NR_ksem_unlink,0xfff,0xfff,0x0196,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ksem_wait.S b/libc/sysv/consts/__NR_ksem_wait.S index f87d5bbe..2b6fb7ad 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.internal.h" -.syscon nr,__NR_ksem_wait,-1,-1,0x0192,-1,-1,-1 +.syscon nr,__NR_ksem_wait,0xfff,0xfff,0x0192,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ktimer_create.S b/libc/sysv/consts/__NR_ktimer_create.S index f0861b68..3b6a4921 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.internal.h" -.syscon nr,__NR_ktimer_create,-1,-1,0x00eb,-1,-1,-1 +.syscon nr,__NR_ktimer_create,0xfff,0xfff,0x00eb,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ktimer_delete.S b/libc/sysv/consts/__NR_ktimer_delete.S index 329f56c9..59e18bfc 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.internal.h" -.syscon nr,__NR_ktimer_delete,-1,-1,0x00ec,-1,-1,-1 +.syscon nr,__NR_ktimer_delete,0xfff,0xfff,0x00ec,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ktimer_getoverrun.S b/libc/sysv/consts/__NR_ktimer_getoverrun.S index 2606a599..3338a81a 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.internal.h" -.syscon nr,__NR_ktimer_getoverrun,-1,-1,0x00ef,-1,-1,-1 +.syscon nr,__NR_ktimer_getoverrun,0xfff,0xfff,0x00ef,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ktimer_gettime.S b/libc/sysv/consts/__NR_ktimer_gettime.S index ee461a8d..2647b56b 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.internal.h" -.syscon nr,__NR_ktimer_gettime,-1,-1,0x00ee,-1,-1,-1 +.syscon nr,__NR_ktimer_gettime,0xfff,0xfff,0x00ee,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ktimer_settime.S b/libc/sysv/consts/__NR_ktimer_settime.S index f3e6e57e..babd9dcd 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.internal.h" -.syscon nr,__NR_ktimer_settime,-1,-1,0x00ed,-1,-1,-1 +.syscon nr,__NR_ktimer_settime,0xfff,0xfff,0x00ed,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ktrace.S b/libc/sysv/consts/__NR_ktrace.S index f1caddc8..33e4dc47 100644 --- a/libc/sysv/consts/__NR_ktrace.S +++ b/libc/sysv/consts/__NR_ktrace.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ktrace,-1,-1,0x002d,0x002d,0x02d,-1 +.syscon nr,__NR_ktrace,0xfff,0xfff,0x002d,0x002d,0x02d,0xfff diff --git a/libc/sysv/consts/__NR_lchflags.S b/libc/sysv/consts/__NR_lchflags.S index fb1f1ab3..857dba90 100644 --- a/libc/sysv/consts/__NR_lchflags.S +++ b/libc/sysv/consts/__NR_lchflags.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lchflags,-1,-1,0x0187,-1,0x130,-1 +.syscon nr,__NR_lchflags,0xfff,0xfff,0x0187,0xfff,0x130,0xfff diff --git a/libc/sysv/consts/__NR_lchmod.S b/libc/sysv/consts/__NR_lchmod.S index 1ad9e93c..6119e37f 100644 --- a/libc/sysv/consts/__NR_lchmod.S +++ b/libc/sysv/consts/__NR_lchmod.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lchmod,-1,-1,0x0112,-1,0x112,-1 +.syscon nr,__NR_lchmod,0xfff,0xfff,0x0112,0xfff,0x112,0xfff diff --git a/libc/sysv/consts/__NR_lchown.S b/libc/sysv/consts/__NR_lchown.S index 920888c6..6fca22bc 100644 --- a/libc/sysv/consts/__NR_lchown.S +++ b/libc/sysv/consts/__NR_lchown.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lchown,0x005e,0x200016c,0x00fe,0x00fe,0x113,-1 +.syscon nr,__NR_lchown,0x005e,0x200016c,0x00fe,0x00fe,0x113,0xfff diff --git a/libc/sysv/consts/__NR_ledger.S b/libc/sysv/consts/__NR_ledger.S index 2b4d3f41..fcd200a6 100644 --- a/libc/sysv/consts/__NR_ledger.S +++ b/libc/sysv/consts/__NR_ledger.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ledger,-1,0x2000175,-1,-1,-1,-1 +.syscon nr,__NR_ledger,0xfff,0x2000175,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_lgetfh.S b/libc/sysv/consts/__NR_lgetfh.S index 22a677ea..b290b833 100644 --- a/libc/sysv/consts/__NR_lgetfh.S +++ b/libc/sysv/consts/__NR_lgetfh.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lgetfh,-1,-1,0x00a0,-1,-1,-1 +.syscon nr,__NR_lgetfh,0xfff,0xfff,0x00a0,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_lgetxattr.S b/libc/sysv/consts/__NR_lgetxattr.S index 79eed1e6..a13e1bbc 100644 --- a/libc/sysv/consts/__NR_lgetxattr.S +++ b/libc/sysv/consts/__NR_lgetxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lgetxattr,0x00c0,-1,-1,-1,0x17b,-1 +.syscon nr,__NR_lgetxattr,0x00c0,0xfff,0xfff,0xfff,0x17b,0xfff diff --git a/libc/sysv/consts/__NR_link.S b/libc/sysv/consts/__NR_link.S index 30bbb9c3..94b034dc 100644 --- a/libc/sysv/consts/__NR_link.S +++ b/libc/sysv/consts/__NR_link.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_link,0x0056,0x2000009,0x0009,0x0009,0x009,-1 +.syscon nr,__NR_link,0x0056,0x2000009,0x0009,0x0009,0x009,0xfff diff --git a/libc/sysv/consts/__NR_linkat.S b/libc/sysv/consts/__NR_linkat.S index c062898e..613826a2 100644 --- a/libc/sysv/consts/__NR_linkat.S +++ b/libc/sysv/consts/__NR_linkat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_linkat,0x0109,0x20001d7,0x01ef,0x013d,0x1c9,-1 +.syscon nr,__NR_linkat,0x0109,0x20001d7,0x01ef,0x013d,0x1c9,0xfff diff --git a/libc/sysv/consts/__NR_lio_listio.S b/libc/sysv/consts/__NR_lio_listio.S index 20739b7d..bd168cf7 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.internal.h" -.syscon nr,__NR_lio_listio,-1,0x2000140,0x0140,-1,0x196,-1 +.syscon nr,__NR_lio_listio,0xfff,0x2000140,0x0140,0xfff,0x196,0xfff diff --git a/libc/sysv/consts/__NR_listen.S b/libc/sysv/consts/__NR_listen.S index 7c7af504..ebbe0153 100644 --- a/libc/sysv/consts/__NR_listen.S +++ b/libc/sysv/consts/__NR_listen.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_listen,0x0032,0x200006a,0x006a,0x006a,0x06a,-1 +.syscon nr,__NR_listen,0x0032,0x200006a,0x006a,0x006a,0x06a,0xfff diff --git a/libc/sysv/consts/__NR_listxattr.S b/libc/sysv/consts/__NR_listxattr.S index e796bee5..b7fafcdf 100644 --- a/libc/sysv/consts/__NR_listxattr.S +++ b/libc/sysv/consts/__NR_listxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_listxattr,0x00c2,0x20000f0,-1,-1,0x17d,-1 +.syscon nr,__NR_listxattr,0x00c2,0x20000f0,0xfff,0xfff,0x17d,0xfff diff --git a/libc/sysv/consts/__NR_llistxattr.S b/libc/sysv/consts/__NR_llistxattr.S index d1ddd5d0..ef8be62a 100644 --- a/libc/sysv/consts/__NR_llistxattr.S +++ b/libc/sysv/consts/__NR_llistxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_llistxattr,0x00c3,-1,-1,-1,0x17e,-1 +.syscon nr,__NR_llistxattr,0x00c3,0xfff,0xfff,0xfff,0x17e,0xfff diff --git a/libc/sysv/consts/__NR_lookup_dcookie.S b/libc/sysv/consts/__NR_lookup_dcookie.S index ee1f0aed..72cfe06e 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.internal.h" -.syscon nr,__NR_lookup_dcookie,0x00d4,-1,-1,-1,-1,-1 +.syscon nr,__NR_lookup_dcookie,0x00d4,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_lpathconf.S b/libc/sysv/consts/__NR_lpathconf.S index e2fda25a..7a075dfc 100644 --- a/libc/sysv/consts/__NR_lpathconf.S +++ b/libc/sysv/consts/__NR_lpathconf.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lpathconf,-1,-1,0x0201,-1,0x1f3,-1 +.syscon nr,__NR_lpathconf,0xfff,0xfff,0x0201,0xfff,0x1f3,0xfff diff --git a/libc/sysv/consts/__NR_lremovexattr.S b/libc/sysv/consts/__NR_lremovexattr.S index d9827796..feaabc34 100644 --- a/libc/sysv/consts/__NR_lremovexattr.S +++ b/libc/sysv/consts/__NR_lremovexattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lremovexattr,0x00c6,-1,-1,-1,0x181,-1 +.syscon nr,__NR_lremovexattr,0x00c6,0xfff,0xfff,0xfff,0x181,0xfff diff --git a/libc/sysv/consts/__NR_lseek.S b/libc/sysv/consts/__NR_lseek.S index bdcedb9f..74fe4178 100644 --- a/libc/sysv/consts/__NR_lseek.S +++ b/libc/sysv/consts/__NR_lseek.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lseek,0x0008,0x20000c7,0x01de,0x00c7,0x0c7,-1 +.syscon nr,__NR_lseek,0x0008,0x20000c7,0x01de,0x00c7,0x0c7,0xfff diff --git a/libc/sysv/consts/__NR_lsetxattr.S b/libc/sysv/consts/__NR_lsetxattr.S index 39c8dcbc..9778ce59 100644 --- a/libc/sysv/consts/__NR_lsetxattr.S +++ b/libc/sysv/consts/__NR_lsetxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lsetxattr,0x00bd,-1,-1,-1,0x178,-1 +.syscon nr,__NR_lsetxattr,0x00bd,0xfff,0xfff,0xfff,0x178,0xfff diff --git a/libc/sysv/consts/__NR_lstat.S b/libc/sysv/consts/__NR_lstat.S index e4473ca7..a54bca61 100644 --- a/libc/sysv/consts/__NR_lstat.S +++ b/libc/sysv/consts/__NR_lstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lstat,0x0006,0x2000154,0x0028,0x0028,0x1b9,-1 +.syscon nr,__NR_lstat,0x0006,0x2000154,0x0028,0x0028,0x1b9,0xfff diff --git a/libc/sysv/consts/__NR_lstat_extended.S b/libc/sysv/consts/__NR_lstat_extended.S index 1821c7be..b03e8c2e 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.internal.h" -.syscon nr,__NR_lstat_extended,-1,0x2000156,-1,-1,-1,-1 +.syscon nr,__NR_lstat_extended,0xfff,0x2000156,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_lutimes.S b/libc/sysv/consts/__NR_lutimes.S index 3d178493..738ff9bc 100644 --- a/libc/sysv/consts/__NR_lutimes.S +++ b/libc/sysv/consts/__NR_lutimes.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_lutimes,-1,-1,0x0114,-1,0x1a8,-1 +.syscon nr,__NR_lutimes,0xfff,0xfff,0x0114,0xfff,0x1a8,0xfff diff --git a/libc/sysv/consts/__NR_mac_execve.S b/libc/sysv/consts/__NR_mac_execve.S index e04b0649..78cf46d8 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.internal.h" -.syscon nr,__NR_mac_execve,-1,0x200017c,0x019f,-1,-1,-1 +.syscon nr,__NR_mac_execve,0xfff,0x200017c,0x019f,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_get_fd.S b/libc/sysv/consts/__NR_mac_get_fd.S index 50de620a..d6f9cb93 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.internal.h" -.syscon nr,__NR_mac_get_fd,-1,0x2000184,0x0182,-1,-1,-1 +.syscon nr,__NR_mac_get_fd,0xfff,0x2000184,0x0182,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_get_file.S b/libc/sysv/consts/__NR_mac_get_file.S index 6f054d4a..3d8a3354 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.internal.h" -.syscon nr,__NR_mac_get_file,-1,0x200017e,0x0183,-1,-1,-1 +.syscon nr,__NR_mac_get_file,0xfff,0x200017e,0x0183,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_get_link.S b/libc/sysv/consts/__NR_mac_get_link.S index 3e71061f..95e4e9c0 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.internal.h" -.syscon nr,__NR_mac_get_link,-1,0x2000180,0x019a,-1,-1,-1 +.syscon nr,__NR_mac_get_link,0xfff,0x2000180,0x019a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_get_mount.S b/libc/sysv/consts/__NR_mac_get_mount.S index 06574922..37d9c78e 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.internal.h" -.syscon nr,__NR_mac_get_mount,-1,0x20001a9,-1,-1,-1,-1 +.syscon nr,__NR_mac_get_mount,0xfff,0x20001a9,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_get_pid.S b/libc/sysv/consts/__NR_mac_get_pid.S index 8cc27682..a5ebea8e 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.internal.h" -.syscon nr,__NR_mac_get_pid,-1,0x2000186,0x0199,-1,-1,-1 +.syscon nr,__NR_mac_get_pid,0xfff,0x2000186,0x0199,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_get_proc.S b/libc/sysv/consts/__NR_mac_get_proc.S index b83b57fd..7cf5582b 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.internal.h" -.syscon nr,__NR_mac_get_proc,-1,0x2000182,0x0180,-1,-1,-1 +.syscon nr,__NR_mac_get_proc,0xfff,0x2000182,0x0180,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_getfsstat.S b/libc/sysv/consts/__NR_mac_getfsstat.S index e096990e..8c6d1147 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.internal.h" -.syscon nr,__NR_mac_getfsstat,-1,0x20001aa,-1,-1,-1,-1 +.syscon nr,__NR_mac_getfsstat,0xfff,0x20001aa,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_mount.S b/libc/sysv/consts/__NR_mac_mount.S index b5ff17ec..ebbe2f44 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.internal.h" -.syscon nr,__NR_mac_mount,-1,0x20001a8,-1,-1,-1,-1 +.syscon nr,__NR_mac_mount,0xfff,0x20001a8,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_set_fd.S b/libc/sysv/consts/__NR_mac_set_fd.S index 57091fb7..cccbca9a 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.internal.h" -.syscon nr,__NR_mac_set_fd,-1,0x2000185,0x0184,-1,-1,-1 +.syscon nr,__NR_mac_set_fd,0xfff,0x2000185,0x0184,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_set_file.S b/libc/sysv/consts/__NR_mac_set_file.S index 786b82ff..633e11bc 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.internal.h" -.syscon nr,__NR_mac_set_file,-1,0x200017f,0x0185,-1,-1,-1 +.syscon nr,__NR_mac_set_file,0xfff,0x200017f,0x0185,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_set_link.S b/libc/sysv/consts/__NR_mac_set_link.S index 9f86ede2..162f6910 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.internal.h" -.syscon nr,__NR_mac_set_link,-1,0x2000181,0x019b,-1,-1,-1 +.syscon nr,__NR_mac_set_link,0xfff,0x2000181,0x019b,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_set_proc.S b/libc/sysv/consts/__NR_mac_set_proc.S index 07c08613..968b9eae 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.internal.h" -.syscon nr,__NR_mac_set_proc,-1,0x2000183,0x0181,-1,-1,-1 +.syscon nr,__NR_mac_set_proc,0xfff,0x2000183,0x0181,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mac_syscall.S b/libc/sysv/consts/__NR_mac_syscall.S index ae71c0b2..ded0ec54 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.internal.h" -.syscon nr,__NR_mac_syscall,-1,-1,0x018a,-1,-1,-1 +.syscon nr,__NR_mac_syscall,0xfff,0xfff,0x018a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_madvise.S b/libc/sysv/consts/__NR_madvise.S index 861efe57..5c809d6d 100644 --- a/libc/sysv/consts/__NR_madvise.S +++ b/libc/sysv/consts/__NR_madvise.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_madvise,0x001c,0x200004b,0x004b,0x004b,0x04b,-1 +.syscon nr,__NR_madvise,0x001c,0x200004b,0x004b,0x004b,0x04b,0xfff diff --git a/libc/sysv/consts/__NR_mbind.S b/libc/sysv/consts/__NR_mbind.S index 1d2e6ca7..0ad30f84 100644 --- a/libc/sysv/consts/__NR_mbind.S +++ b/libc/sysv/consts/__NR_mbind.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mbind,0x00ed,-1,-1,-1,-1,-1 +.syscon nr,__NR_mbind,0x00ed,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_membarrier.S b/libc/sysv/consts/__NR_membarrier.S index 9d6d875a..5ac4eba2 100644 --- a/libc/sysv/consts/__NR_membarrier.S +++ b/libc/sysv/consts/__NR_membarrier.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_membarrier,0x0144,-1,-1,-1,-1,-1 +.syscon nr,__NR_membarrier,0x0144,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_memfd_create.S b/libc/sysv/consts/__NR_memfd_create.S index d6148922..9f1c5f6e 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.internal.h" -.syscon nr,__NR_memfd_create,0x013f,-1,-1,-1,-1,-1 +.syscon nr,__NR_memfd_create,0x013f,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_memorystatus_control.S b/libc/sysv/consts/__NR_memorystatus_control.S index ba88d3f9..be05d239 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.internal.h" -.syscon nr,__NR_memorystatus_control,-1,0x20001b8,-1,-1,-1,-1 +.syscon nr,__NR_memorystatus_control,0xfff,0x20001b8,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_memorystatus_get_level.S b/libc/sysv/consts/__NR_memorystatus_get_level.S index c163de22..f6b92be3 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.internal.h" -.syscon nr,__NR_memorystatus_get_level,-1,0x20001c5,-1,-1,-1,-1 +.syscon nr,__NR_memorystatus_get_level,0xfff,0x20001c5,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_microstackshot.S b/libc/sysv/consts/__NR_microstackshot.S index 78f42cb0..bec8cb25 100644 --- a/libc/sysv/consts/__NR_microstackshot.S +++ b/libc/sysv/consts/__NR_microstackshot.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_microstackshot,-1,0x20001ec,-1,-1,-1,-1 +.syscon nr,__NR_microstackshot,0xfff,0x20001ec,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_migrate_pages.S b/libc/sysv/consts/__NR_migrate_pages.S index 3ca5c56b..d6a42f8a 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.internal.h" -.syscon nr,__NR_migrate_pages,0x0100,-1,-1,-1,-1,-1 +.syscon nr,__NR_migrate_pages,0x0100,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mincore.S b/libc/sysv/consts/__NR_mincore.S index 1cbd80a3..0fec5be2 100644 --- a/libc/sysv/consts/__NR_mincore.S +++ b/libc/sysv/consts/__NR_mincore.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mincore,0x001b,0x200004e,0x004e,0x004e,0x04e,-1 +.syscon nr,__NR_mincore,0x001b,0x200004e,0x004e,0x004e,0x04e,0xfff diff --git a/libc/sysv/consts/__NR_minherit.S b/libc/sysv/consts/__NR_minherit.S index 0ea8ea13..ec4c9a5e 100644 --- a/libc/sysv/consts/__NR_minherit.S +++ b/libc/sysv/consts/__NR_minherit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_minherit,-1,0x20000fa,0x00fa,0x00fa,0x111,-1 +.syscon nr,__NR_minherit,0xfff,0x20000fa,0x00fa,0x00fa,0x111,0xfff diff --git a/libc/sysv/consts/__NR_mkdir.S b/libc/sysv/consts/__NR_mkdir.S index 0cbead19..71ef7394 100644 --- a/libc/sysv/consts/__NR_mkdir.S +++ b/libc/sysv/consts/__NR_mkdir.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mkdir,0x0053,0x2000088,0x0088,0x0088,0x088,-1 +.syscon nr,__NR_mkdir,0x0053,0x2000088,0x0088,0x0088,0x088,0xfff diff --git a/libc/sysv/consts/__NR_mkdir_extended.S b/libc/sysv/consts/__NR_mkdir_extended.S index 812eefd3..e25b27b4 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.internal.h" -.syscon nr,__NR_mkdir_extended,-1,0x2000124,-1,-1,-1,-1 +.syscon nr,__NR_mkdir_extended,0xfff,0x2000124,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mkdirat.S b/libc/sysv/consts/__NR_mkdirat.S index 8286c2be..7a611b26 100644 --- a/libc/sysv/consts/__NR_mkdirat.S +++ b/libc/sysv/consts/__NR_mkdirat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mkdirat,0x0102,0x20001db,0x01f0,0x013e,0x1cd,-1 +.syscon nr,__NR_mkdirat,0x0102,0x20001db,0x01f0,0x013e,0x1cd,0xfff diff --git a/libc/sysv/consts/__NR_mkfifo.S b/libc/sysv/consts/__NR_mkfifo.S index 31964a55..7f69a564 100644 --- a/libc/sysv/consts/__NR_mkfifo.S +++ b/libc/sysv/consts/__NR_mkfifo.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mkfifo,-1,0x2000084,0x0084,0x0084,0x084,-1 +.syscon nr,__NR_mkfifo,0xfff,0x2000084,0x0084,0x0084,0x084,0xfff diff --git a/libc/sysv/consts/__NR_mkfifo_extended.S b/libc/sysv/consts/__NR_mkfifo_extended.S index 8b3794f1..174a8426 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.internal.h" -.syscon nr,__NR_mkfifo_extended,-1,0x2000123,-1,-1,-1,-1 +.syscon nr,__NR_mkfifo_extended,0xfff,0x2000123,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mkfifoat.S b/libc/sysv/consts/__NR_mkfifoat.S index b0f7aea8..e7da7daa 100644 --- a/libc/sysv/consts/__NR_mkfifoat.S +++ b/libc/sysv/consts/__NR_mkfifoat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mkfifoat,-1,-1,0x01f1,0x013f,0x1cb,-1 +.syscon nr,__NR_mkfifoat,0xfff,0xfff,0x01f1,0x013f,0x1cb,0xfff diff --git a/libc/sysv/consts/__NR_mknod.S b/libc/sysv/consts/__NR_mknod.S index 2de1a3e3..addff057 100644 --- a/libc/sysv/consts/__NR_mknod.S +++ b/libc/sysv/consts/__NR_mknod.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mknod,0x0085,0x200000e,0x000e,0x000e,0x1c2,-1 +.syscon nr,__NR_mknod,0x0085,0x200000e,0x000e,0x000e,0x1c2,0xfff diff --git a/libc/sysv/consts/__NR_mknodat.S b/libc/sysv/consts/__NR_mknodat.S index eb0a2df0..65397068 100644 --- a/libc/sysv/consts/__NR_mknodat.S +++ b/libc/sysv/consts/__NR_mknodat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mknodat,0x0103,-1,0x22ff,0x0140,0x1cc,-1 +.syscon nr,__NR_mknodat,0x0103,0xfff,0x22ff,0x0140,0x1cc,0xfff diff --git a/libc/sysv/consts/__NR_mlock.S b/libc/sysv/consts/__NR_mlock.S index fa9476dd..06bb13d6 100644 --- a/libc/sysv/consts/__NR_mlock.S +++ b/libc/sysv/consts/__NR_mlock.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mlock,0x0095,0x20000cb,0x00cb,0x00cb,0x0cb,-1 +.syscon nr,__NR_mlock,0x0095,0x20000cb,0x00cb,0x00cb,0x0cb,0xfff diff --git a/libc/sysv/consts/__NR_mlock2.S b/libc/sysv/consts/__NR_mlock2.S index bb696c56..21a5d4e9 100644 --- a/libc/sysv/consts/__NR_mlock2.S +++ b/libc/sysv/consts/__NR_mlock2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mlock2,0x0145,-1,-1,-1,-1,-1 +.syscon nr,__NR_mlock2,0x0145,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mlockall.S b/libc/sysv/consts/__NR_mlockall.S index 737c7314..023d17ec 100644 --- a/libc/sysv/consts/__NR_mlockall.S +++ b/libc/sysv/consts/__NR_mlockall.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mlockall,0x0097,0x2000144,0x0144,0x010f,0x0f2,-1 +.syscon nr,__NR_mlockall,0x0097,0x2000144,0x0144,0x010f,0x0f2,0xfff diff --git a/libc/sysv/consts/__NR_mmap.S b/libc/sysv/consts/__NR_mmap.S index 6639ed4b..0e9c53ac 100644 --- a/libc/sysv/consts/__NR_mmap.S +++ b/libc/sysv/consts/__NR_mmap.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mmap,0x0009,0x20000c5,0x01dd,0x00c5,0x0c5,-1 +.syscon nr,__NR_mmap,0x0009,0x20000c5,0x01dd,0x00c5,0x0c5,0xfff diff --git a/libc/sysv/consts/__NR_modfind.S b/libc/sysv/consts/__NR_modfind.S index 47f7cdd8..8165339c 100644 --- a/libc/sysv/consts/__NR_modfind.S +++ b/libc/sysv/consts/__NR_modfind.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_modfind,-1,-1,0x012f,-1,-1,-1 +.syscon nr,__NR_modfind,0xfff,0xfff,0x012f,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_modfnext.S b/libc/sysv/consts/__NR_modfnext.S index 7edf6180..9564a335 100644 --- a/libc/sysv/consts/__NR_modfnext.S +++ b/libc/sysv/consts/__NR_modfnext.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_modfnext,-1,-1,0x012e,-1,-1,-1 +.syscon nr,__NR_modfnext,0xfff,0xfff,0x012e,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_modify_ldt.S b/libc/sysv/consts/__NR_modify_ldt.S index c05ef83a..850203e2 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.internal.h" -.syscon nr,__NR_modify_ldt,0x009a,-1,-1,-1,-1,-1 +.syscon nr,__NR_modify_ldt,0x009a,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_modnext.S b/libc/sysv/consts/__NR_modnext.S index 03f7dde9..6edb7923 100644 --- a/libc/sysv/consts/__NR_modnext.S +++ b/libc/sysv/consts/__NR_modnext.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_modnext,-1,-1,0x012c,-1,-1,-1 +.syscon nr,__NR_modnext,0xfff,0xfff,0x012c,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_modstat.S b/libc/sysv/consts/__NR_modstat.S index 8c4baf87..bc5e1a58 100644 --- a/libc/sysv/consts/__NR_modstat.S +++ b/libc/sysv/consts/__NR_modstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_modstat,-1,-1,0x012d,-1,-1,-1 +.syscon nr,__NR_modstat,0xfff,0xfff,0x012d,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_modwatch.S b/libc/sysv/consts/__NR_modwatch.S index 6cc2cfe8..18e3d4bf 100644 --- a/libc/sysv/consts/__NR_modwatch.S +++ b/libc/sysv/consts/__NR_modwatch.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_modwatch,-1,0x20000e9,-1,-1,-1,-1 +.syscon nr,__NR_modwatch,0xfff,0x20000e9,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mount.S b/libc/sysv/consts/__NR_mount.S index 77e266a9..f27afb0a 100644 --- a/libc/sysv/consts/__NR_mount.S +++ b/libc/sysv/consts/__NR_mount.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mount,0x00a5,0x20000a7,0x0015,0x0015,0x19a,-1 +.syscon nr,__NR_mount,0x00a5,0x20000a7,0x0015,0x0015,0x19a,0xfff diff --git a/libc/sysv/consts/__NR_move_pages.S b/libc/sysv/consts/__NR_move_pages.S index 7e65f3ad..6a267f81 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.internal.h" -.syscon nr,__NR_move_pages,0x0117,-1,-1,-1,-1,-1 +.syscon nr,__NR_move_pages,0x0117,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mprotect.S b/libc/sysv/consts/__NR_mprotect.S index a8bb15a9..7e0542ff 100644 --- a/libc/sysv/consts/__NR_mprotect.S +++ b/libc/sysv/consts/__NR_mprotect.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mprotect,0x000a,0x200004a,0x004a,0x004a,0x04a,-1 +.syscon nr,__NR_mprotect,0x000a,0x200004a,0x004a,0x004a,0x04a,0xfff diff --git a/libc/sysv/consts/__NR_mq_getsetattr.S b/libc/sysv/consts/__NR_mq_getsetattr.S index 155c2e26..29061a0f 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.internal.h" -.syscon nr,__NR_mq_getsetattr,0x00f5,-1,-1,-1,-1,-1 +.syscon nr,__NR_mq_getsetattr,0x00f5,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mq_notify.S b/libc/sysv/consts/__NR_mq_notify.S index 4a6f98b1..a569754f 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.internal.h" -.syscon nr,__NR_mq_notify,0x00f4,-1,-1,-1,0x106,-1 +.syscon nr,__NR_mq_notify,0x00f4,0xfff,0xfff,0xfff,0x106,0xfff diff --git a/libc/sysv/consts/__NR_mq_open.S b/libc/sysv/consts/__NR_mq_open.S index e7260d6d..3674dec4 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.internal.h" -.syscon nr,__NR_mq_open,0x00f0,-1,-1,-1,0x101,-1 +.syscon nr,__NR_mq_open,0x00f0,0xfff,0xfff,0xfff,0x101,0xfff diff --git a/libc/sysv/consts/__NR_mq_timedreceive.S b/libc/sysv/consts/__NR_mq_timedreceive.S index 79bf57a8..ed585036 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.internal.h" -.syscon nr,__NR_mq_timedreceive,0x00f3,-1,-1,-1,0x1b1,-1 +.syscon nr,__NR_mq_timedreceive,0x00f3,0xfff,0xfff,0xfff,0x1b1,0xfff diff --git a/libc/sysv/consts/__NR_mq_timedsend.S b/libc/sysv/consts/__NR_mq_timedsend.S index ad730a5b..2d508814 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.internal.h" -.syscon nr,__NR_mq_timedsend,0x00f2,-1,-1,-1,0x1b0,-1 +.syscon nr,__NR_mq_timedsend,0x00f2,0xfff,0xfff,0xfff,0x1b0,0xfff diff --git a/libc/sysv/consts/__NR_mq_unlink.S b/libc/sysv/consts/__NR_mq_unlink.S index 66e9e610..ab6b2d59 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.internal.h" -.syscon nr,__NR_mq_unlink,0x00f1,-1,-1,-1,0x103,-1 +.syscon nr,__NR_mq_unlink,0x00f1,0xfff,0xfff,0xfff,0x103,0xfff diff --git a/libc/sysv/consts/__NR_mquery.S b/libc/sysv/consts/__NR_mquery.S index 252e3952..ed0be329 100644 --- a/libc/sysv/consts/__NR_mquery.S +++ b/libc/sysv/consts/__NR_mquery.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mquery,-1,-1,-1,0x011e,-1,-1 +.syscon nr,__NR_mquery,0xfff,0xfff,0xfff,0x011e,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_mremap.S b/libc/sysv/consts/__NR_mremap.S index 1d92be5d..f0b68fd6 100644 --- a/libc/sysv/consts/__NR_mremap.S +++ b/libc/sysv/consts/__NR_mremap.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_mremap,0x0019,-1,-1,-1,0x19b,-1 +.syscon nr,__NR_mremap,0x0019,0xfff,0xfff,0xfff,0x19b,0xfff diff --git a/libc/sysv/consts/__NR_mremap_encrypted.S b/libc/sysv/consts/__NR_mremap_encrypted.S index 2c90506d..efb15e03 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.internal.h" -.syscon nr,__NR_mremap_encrypted,-1,0x20001e9,-1,-1,-1,-1 +.syscon nr,__NR_mremap_encrypted,0xfff,0x20001e9,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_msgctl.S b/libc/sysv/consts/__NR_msgctl.S index 39326260..3eb268f9 100644 --- a/libc/sysv/consts/__NR_msgctl.S +++ b/libc/sysv/consts/__NR_msgctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_msgctl,0x0047,0x2000102,0x01ff,0x0129,0x1bc,-1 +.syscon nr,__NR_msgctl,0x0047,0x2000102,0x01ff,0x0129,0x1bc,0xfff diff --git a/libc/sysv/consts/__NR_msgget.S b/libc/sysv/consts/__NR_msgget.S index 064ca2dc..6bf99618 100644 --- a/libc/sysv/consts/__NR_msgget.S +++ b/libc/sysv/consts/__NR_msgget.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_msgget,0x0044,0x2000103,0x00e1,0x00e1,0x0e1,-1 +.syscon nr,__NR_msgget,0x0044,0x2000103,0x00e1,0x00e1,0x0e1,0xfff diff --git a/libc/sysv/consts/__NR_msgrcv.S b/libc/sysv/consts/__NR_msgrcv.S index efd4262e..0c233c64 100644 --- a/libc/sysv/consts/__NR_msgrcv.S +++ b/libc/sysv/consts/__NR_msgrcv.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_msgrcv,0x0046,0x2000105,0x00e3,0x00e3,0x0e3,-1 +.syscon nr,__NR_msgrcv,0x0046,0x2000105,0x00e3,0x00e3,0x0e3,0xfff diff --git a/libc/sysv/consts/__NR_msgrcv_nocancel.S b/libc/sysv/consts/__NR_msgrcv_nocancel.S index 909d4f0b..5d02784a 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.internal.h" -.syscon nr,__NR_msgrcv_nocancel,-1,0x20001a3,-1,-1,-1,-1 +.syscon nr,__NR_msgrcv_nocancel,0xfff,0x20001a3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_msgsnd.S b/libc/sysv/consts/__NR_msgsnd.S index 1b0f56b0..070bb2da 100644 --- a/libc/sysv/consts/__NR_msgsnd.S +++ b/libc/sysv/consts/__NR_msgsnd.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_msgsnd,0x0045,0x2000104,0x00e2,0x00e2,0x0e2,-1 +.syscon nr,__NR_msgsnd,0x0045,0x2000104,0x00e2,0x00e2,0x0e2,0xfff diff --git a/libc/sysv/consts/__NR_msgsnd_nocancel.S b/libc/sysv/consts/__NR_msgsnd_nocancel.S index 50e6ff8e..ba3fada2 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.internal.h" -.syscon nr,__NR_msgsnd_nocancel,-1,0x20001a2,-1,-1,-1,-1 +.syscon nr,__NR_msgsnd_nocancel,0xfff,0x20001a2,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_msgsys.S b/libc/sysv/consts/__NR_msgsys.S index 391448fd..17174177 100644 --- a/libc/sysv/consts/__NR_msgsys.S +++ b/libc/sysv/consts/__NR_msgsys.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_msgsys,-1,0x20000fc,0x00aa,-1,-1,-1 +.syscon nr,__NR_msgsys,0xfff,0x20000fc,0x00aa,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_msync.S b/libc/sysv/consts/__NR_msync.S index 501c2193..5b6f15b2 100644 --- a/libc/sysv/consts/__NR_msync.S +++ b/libc/sysv/consts/__NR_msync.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_msync,0x001a,0x2000041,0x0041,0x0100,0x115,-1 +.syscon nr,__NR_msync,0x001a,0x2000041,0x0041,0x0100,0x115,0xfff diff --git a/libc/sysv/consts/__NR_msync_nocancel.S b/libc/sysv/consts/__NR_msync_nocancel.S index 8c37e77b..996b3071 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.internal.h" -.syscon nr,__NR_msync_nocancel,-1,0x2000195,-1,-1,-1,-1 +.syscon nr,__NR_msync_nocancel,0xfff,0x2000195,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_msyscall.S b/libc/sysv/consts/__NR_msyscall.S index 959606ec..57ea56e1 100644 --- a/libc/sysv/consts/__NR_msyscall.S +++ b/libc/sysv/consts/__NR_msyscall.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_msyscall,-1,-1,-1,0x0025,-1,-1 +.syscon nr,__NR_msyscall,0xfff,0xfff,0xfff,0x0025,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_munlock.S b/libc/sysv/consts/__NR_munlock.S index c24a2942..10a295c0 100644 --- a/libc/sysv/consts/__NR_munlock.S +++ b/libc/sysv/consts/__NR_munlock.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_munlock,0x0096,0x20000cc,0x00cc,0x00cc,0x0cc,-1 +.syscon nr,__NR_munlock,0x0096,0x20000cc,0x00cc,0x00cc,0x0cc,0xfff diff --git a/libc/sysv/consts/__NR_munlockall.S b/libc/sysv/consts/__NR_munlockall.S index 030d1507..8d814ff1 100644 --- a/libc/sysv/consts/__NR_munlockall.S +++ b/libc/sysv/consts/__NR_munlockall.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_munlockall,0x0098,0x2000145,0x0145,0x0110,0x0f3,-1 +.syscon nr,__NR_munlockall,0x0098,0x2000145,0x0145,0x0110,0x0f3,0xfff diff --git a/libc/sysv/consts/__NR_munmap.S b/libc/sysv/consts/__NR_munmap.S index 46c51b9d..40e37418 100644 --- a/libc/sysv/consts/__NR_munmap.S +++ b/libc/sysv/consts/__NR_munmap.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_munmap,0x000b,0x2000049,0x0049,0x0049,0x049,-1 +.syscon nr,__NR_munmap,0x000b,0x2000049,0x0049,0x0049,0x049,0xfff diff --git a/libc/sysv/consts/__NR_name_to_handle_at.S b/libc/sysv/consts/__NR_name_to_handle_at.S index 373bea03..b427061e 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.internal.h" -.syscon nr,__NR_name_to_handle_at,0x012f,-1,-1,-1,-1,-1 +.syscon nr,__NR_name_to_handle_at,0x012f,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nanosleep.S b/libc/sysv/consts/__NR_nanosleep.S index b06e38e3..f8998c4b 100644 --- a/libc/sysv/consts/__NR_nanosleep.S +++ b/libc/sysv/consts/__NR_nanosleep.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_nanosleep,0x0023,-1,0x00f0,0x005b,0x1ae,-1 +.syscon nr,__NR_nanosleep,0x0023,0xfff,0x00f0,0x005b,0x1ae,0xfff diff --git a/libc/sysv/consts/__NR_necp_client_action.S b/libc/sysv/consts/__NR_necp_client_action.S index 600ae781..5988cc34 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.internal.h" -.syscon nr,__NR_necp_client_action,-1,0x20001f6,-1,-1,-1,-1 +.syscon nr,__NR_necp_client_action,0xfff,0x20001f6,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_necp_match_policy.S b/libc/sysv/consts/__NR_necp_match_policy.S index 35c028e4..809121c8 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.internal.h" -.syscon nr,__NR_necp_match_policy,-1,0x20001cc,-1,-1,-1,-1 +.syscon nr,__NR_necp_match_policy,0xfff,0x20001cc,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_necp_open.S b/libc/sysv/consts/__NR_necp_open.S index e3beaf9e..44e54d97 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.internal.h" -.syscon nr,__NR_necp_open,-1,0x20001f5,-1,-1,-1,-1 +.syscon nr,__NR_necp_open,0xfff,0x20001f5,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_necp_session_action.S b/libc/sysv/consts/__NR_necp_session_action.S index 5ae394ab..f22f9124 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.internal.h" -.syscon nr,__NR_necp_session_action,-1,0x200020b,-1,-1,-1,-1 +.syscon nr,__NR_necp_session_action,0xfff,0x200020b,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_necp_session_open.S b/libc/sysv/consts/__NR_necp_session_open.S index 5711f58a..c05c7a23 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.internal.h" -.syscon nr,__NR_necp_session_open,-1,0x200020a,-1,-1,-1,-1 +.syscon nr,__NR_necp_session_open,0xfff,0x200020a,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_net_qos_guideline.S b/libc/sysv/consts/__NR_net_qos_guideline.S index c76084fd..67b5577e 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.internal.h" -.syscon nr,__NR_net_qos_guideline,-1,0x200020d,-1,-1,-1,-1 +.syscon nr,__NR_net_qos_guideline,0xfff,0x200020d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_netagent_trigger.S b/libc/sysv/consts/__NR_netagent_trigger.S index f4a346dd..7ecd5fa6 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.internal.h" -.syscon nr,__NR_netagent_trigger,-1,0x20001ea,-1,-1,-1,-1 +.syscon nr,__NR_netagent_trigger,0xfff,0x20001ea,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nfsclnt.S b/libc/sysv/consts/__NR_nfsclnt.S index 0f22ef67..4f94bbfd 100644 --- a/libc/sysv/consts/__NR_nfsclnt.S +++ b/libc/sysv/consts/__NR_nfsclnt.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_nfsclnt,-1,0x20000f7,-1,-1,-1,-1 +.syscon nr,__NR_nfsclnt,0xfff,0x20000f7,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nfssvc.S b/libc/sysv/consts/__NR_nfssvc.S index 67af597a..678e65b9 100644 --- a/libc/sysv/consts/__NR_nfssvc.S +++ b/libc/sysv/consts/__NR_nfssvc.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_nfssvc,-1,0x200009b,0x009b,0x009b,0x09b,-1 +.syscon nr,__NR_nfssvc,0xfff,0x200009b,0x009b,0x009b,0x09b,0xfff diff --git a/libc/sysv/consts/__NR_nfstat.S b/libc/sysv/consts/__NR_nfstat.S index 303c8389..a9abdf9c 100644 --- a/libc/sysv/consts/__NR_nfstat.S +++ b/libc/sysv/consts/__NR_nfstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_nfstat,-1,-1,0x0117,-1,-1,-1 +.syscon nr,__NR_nfstat,0xfff,0xfff,0x0117,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nlm_syscall.S b/libc/sysv/consts/__NR_nlm_syscall.S index 03b79c7e..3ea89bf4 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.internal.h" -.syscon nr,__NR_nlm_syscall,-1,-1,0x009a,-1,-1,-1 +.syscon nr,__NR_nlm_syscall,0xfff,0xfff,0x009a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nlstat.S b/libc/sysv/consts/__NR_nlstat.S index b57c4b00..5bc35e36 100644 --- a/libc/sysv/consts/__NR_nlstat.S +++ b/libc/sysv/consts/__NR_nlstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_nlstat,-1,-1,0x0118,-1,-1,-1 +.syscon nr,__NR_nlstat,0xfff,0xfff,0x0118,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nmount.S b/libc/sysv/consts/__NR_nmount.S index ef0b01a3..7dd0915e 100644 --- a/libc/sysv/consts/__NR_nmount.S +++ b/libc/sysv/consts/__NR_nmount.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_nmount,-1,-1,0x017a,-1,-1,-1 +.syscon nr,__NR_nmount,0xfff,0xfff,0x017a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nnpfs_syscall.S b/libc/sysv/consts/__NR_nnpfs_syscall.S index 8e4ca1c8..30ae7f51 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.internal.h" -.syscon nr,__NR_nnpfs_syscall,-1,-1,0x0153,-1,-1,-1 +.syscon nr,__NR_nnpfs_syscall,0xfff,0xfff,0x0153,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_nstat.S b/libc/sysv/consts/__NR_nstat.S index a7afad15..5f6d0743 100644 --- a/libc/sysv/consts/__NR_nstat.S +++ b/libc/sysv/consts/__NR_nstat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_nstat,-1,-1,0x0116,-1,-1,-1 +.syscon nr,__NR_nstat,0xfff,0xfff,0x0116,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ntp_adjtime.S b/libc/sysv/consts/__NR_ntp_adjtime.S index 2d6db663..0a0387d9 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.internal.h" -.syscon nr,__NR_ntp_adjtime,-1,0x200020f,0x00b0,-1,0x0b0,-1 +.syscon nr,__NR_ntp_adjtime,0xfff,0x200020f,0x00b0,0xfff,0x0b0,0xfff diff --git a/libc/sysv/consts/__NR_ntp_gettime.S b/libc/sysv/consts/__NR_ntp_gettime.S index 64698f39..35440256 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.internal.h" -.syscon nr,__NR_ntp_gettime,-1,0x2000210,0x00f8,-1,0x1c0,-1 +.syscon nr,__NR_ntp_gettime,0xfff,0x2000210,0x00f8,0xfff,0x1c0,0xfff diff --git a/libc/sysv/consts/__NR_obreak.S b/libc/sysv/consts/__NR_obreak.S index 40ee5e67..0c515993 100644 --- a/libc/sysv/consts/__NR_obreak.S +++ b/libc/sysv/consts/__NR_obreak.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_obreak,-1,-1,-1,0x0011,0x011,-1 +.syscon nr,__NR_obreak,0xfff,0xfff,0xfff,0x0011,0x011,0xfff diff --git a/libc/sysv/consts/__NR_old_semwait_signal.S b/libc/sysv/consts/__NR_old_semwait_signal.S index 396c2402..7ed5d018 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.internal.h" -.syscon nr,__NR_old_semwait_signal,-1,0x2000172,-1,-1,-1,-1 +.syscon nr,__NR_old_semwait_signal,0xfff,0x2000172,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_old_semwait_signal_nocancel.S b/libc/sysv/consts/__NR_old_semwait_signal_nocancel.S index 7527589a..180c00e5 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.internal.h" -.syscon nr,__NR_old_semwait_signal_nocancel,-1,0x2000173,-1,-1,-1,-1 +.syscon nr,__NR_old_semwait_signal_nocancel,0xfff,0x2000173,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_open.S b/libc/sysv/consts/__NR_open.S index bfaae846..950db95d 100644 --- a/libc/sysv/consts/__NR_open.S +++ b/libc/sysv/consts/__NR_open.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_open,0x0002,0x2000005,0x0005,0x0005,0x005,-1 +.syscon nr,__NR_open,0x0002,0x2000005,0x0005,0x0005,0x005,0xfff diff --git a/libc/sysv/consts/__NR_open_by_handle_at.S b/libc/sysv/consts/__NR_open_by_handle_at.S index 807468aa..80142895 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.internal.h" -.syscon nr,__NR_open_by_handle_at,0x0130,-1,-1,-1,-1,-1 +.syscon nr,__NR_open_by_handle_at,0x0130,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_open_dprotected_np.S b/libc/sysv/consts/__NR_open_dprotected_np.S index 24414ed5..ff9faa0d 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.internal.h" -.syscon nr,__NR_open_dprotected_np,-1,0x20000d8,-1,-1,-1,-1 +.syscon nr,__NR_open_dprotected_np,0xfff,0x20000d8,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_open_extended.S b/libc/sysv/consts/__NR_open_extended.S index 47287c8f..92e2e6c3 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.internal.h" -.syscon nr,__NR_open_extended,-1,0x2000115,-1,-1,-1,-1 +.syscon nr,__NR_open_extended,0xfff,0x2000115,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_open_nocancel.S b/libc/sysv/consts/__NR_open_nocancel.S index 0bf6d17e..f1b0917c 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.internal.h" -.syscon nr,__NR_open_nocancel,-1,0x200018e,-1,-1,-1,-1 +.syscon nr,__NR_open_nocancel,0xfff,0x200018e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_openat.S b/libc/sysv/consts/__NR_openat.S index 763f2389..d6d343e9 100644 --- a/libc/sysv/consts/__NR_openat.S +++ b/libc/sysv/consts/__NR_openat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_openat,0x0101,0x20001cf,0x01f3,0x0141,0x1d4,-1 +.syscon nr,__NR_openat,0x0101,0x20001cf,0x01f3,0x0141,0x1d4,0xfff diff --git a/libc/sysv/consts/__NR_openat_nocancel.S b/libc/sysv/consts/__NR_openat_nocancel.S index c12bd75e..2277857d 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.internal.h" -.syscon nr,__NR_openat_nocancel,-1,0x20001d0,-1,-1,-1,-1 +.syscon nr,__NR_openat_nocancel,0xfff,0x20001d0,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_openbyid_np.S b/libc/sysv/consts/__NR_openbyid_np.S index 8f23274b..0a0e63b7 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.internal.h" -.syscon nr,__NR_openbyid_np,-1,0x20001df,-1,-1,-1,-1 +.syscon nr,__NR_openbyid_np,0xfff,0x20001df,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_os_fault_with_payload.S b/libc/sysv/consts/__NR_os_fault_with_payload.S index 80bde945..e934ca8f 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.internal.h" -.syscon nr,__NR_os_fault_with_payload,-1,0x2000211,-1,-1,-1,-1 +.syscon nr,__NR_os_fault_with_payload,0xfff,0x2000211,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pathconf.S b/libc/sysv/consts/__NR_pathconf.S index 63b23090..8adcef14 100644 --- a/libc/sysv/consts/__NR_pathconf.S +++ b/libc/sysv/consts/__NR_pathconf.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pathconf,-1,0x20000bf,0x00bf,0x00bf,0x0bf,-1 +.syscon nr,__NR_pathconf,0xfff,0x20000bf,0x00bf,0x00bf,0x0bf,0xfff diff --git a/libc/sysv/consts/__NR_pause.S b/libc/sysv/consts/__NR_pause.S index 2a3d4329..26c69544 100644 --- a/libc/sysv/consts/__NR_pause.S +++ b/libc/sysv/consts/__NR_pause.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pause,0x0022,-1,-1,-1,-1,-1 +.syscon nr,__NR_pause,0x0022,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pdfork.S b/libc/sysv/consts/__NR_pdfork.S index 0dabfcf3..0dffaa71 100644 --- a/libc/sysv/consts/__NR_pdfork.S +++ b/libc/sysv/consts/__NR_pdfork.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pdfork,-1,-1,0x0206,-1,-1,-1 +.syscon nr,__NR_pdfork,0xfff,0xfff,0x0206,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pdgetpid.S b/libc/sysv/consts/__NR_pdgetpid.S index 62f7e67d..40641f25 100644 --- a/libc/sysv/consts/__NR_pdgetpid.S +++ b/libc/sysv/consts/__NR_pdgetpid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pdgetpid,-1,-1,0x0208,-1,-1,-1 +.syscon nr,__NR_pdgetpid,0xfff,0xfff,0x0208,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pdkill.S b/libc/sysv/consts/__NR_pdkill.S index 8880e82d..9fe46f6b 100644 --- a/libc/sysv/consts/__NR_pdkill.S +++ b/libc/sysv/consts/__NR_pdkill.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pdkill,-1,-1,0x0207,-1,-1,-1 +.syscon nr,__NR_pdkill,0xfff,0xfff,0x0207,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_peeloff.S b/libc/sysv/consts/__NR_peeloff.S index b0275db1..fb0e7fde 100644 --- a/libc/sysv/consts/__NR_peeloff.S +++ b/libc/sysv/consts/__NR_peeloff.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_peeloff,-1,0x20001c1,-1,-1,-1,-1 +.syscon nr,__NR_peeloff,0xfff,0x20001c1,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_perf_event_open.S b/libc/sysv/consts/__NR_perf_event_open.S index c165d619..96d9009e 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.internal.h" -.syscon nr,__NR_perf_event_open,0x012a,-1,-1,-1,-1,-1 +.syscon nr,__NR_perf_event_open,0x012a,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_persona.S b/libc/sysv/consts/__NR_persona.S index b044b229..add76381 100644 --- a/libc/sysv/consts/__NR_persona.S +++ b/libc/sysv/consts/__NR_persona.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_persona,-1,0x20001ee,-1,-1,-1,-1 +.syscon nr,__NR_persona,0xfff,0x20001ee,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_personality.S b/libc/sysv/consts/__NR_personality.S index a279927d..b75c162d 100644 --- a/libc/sysv/consts/__NR_personality.S +++ b/libc/sysv/consts/__NR_personality.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_personality,0x0087,-1,-1,-1,-1,-1 +.syscon nr,__NR_personality,0x0087,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pid_hibernate.S b/libc/sysv/consts/__NR_pid_hibernate.S index 6846177e..8605a6e0 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.internal.h" -.syscon nr,__NR_pid_hibernate,-1,0x20001b3,-1,-1,-1,-1 +.syscon nr,__NR_pid_hibernate,0xfff,0x20001b3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pid_resume.S b/libc/sysv/consts/__NR_pid_resume.S index bce6b295..7c9ecf01 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.internal.h" -.syscon nr,__NR_pid_resume,-1,0x20001b2,-1,-1,-1,-1 +.syscon nr,__NR_pid_resume,0xfff,0x20001b2,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pid_shutdown_sockets.S b/libc/sysv/consts/__NR_pid_shutdown_sockets.S index 18408593..b1c2bdaf 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.internal.h" -.syscon nr,__NR_pid_shutdown_sockets,-1,0x20001b4,-1,-1,-1,-1 +.syscon nr,__NR_pid_shutdown_sockets,0xfff,0x20001b4,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pid_suspend.S b/libc/sysv/consts/__NR_pid_suspend.S index 3a26d3b7..3b63c61c 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.internal.h" -.syscon nr,__NR_pid_suspend,-1,0x20001b1,-1,-1,-1,-1 +.syscon nr,__NR_pid_suspend,0xfff,0x20001b1,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pidfd_send_signal.S b/libc/sysv/consts/__NR_pidfd_send_signal.S index 3b313d0e..21d65687 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.internal.h" -.syscon nr,__NR_pidfd_send_signal,0x01a8,-1,-1,-1,-1,-1 +.syscon nr,__NR_pidfd_send_signal,0x01a8,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pipe.S b/libc/sysv/consts/__NR_pipe.S index 8b13e379..d70ec790 100644 --- a/libc/sysv/consts/__NR_pipe.S +++ b/libc/sysv/consts/__NR_pipe.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pipe,0x0016,0x200002a,0x021e,0x0107,0x02a,-1 +.syscon nr,__NR_pipe,0x0016,0x200002a,0x021e,0x0107,0x02a,0xfff diff --git a/libc/sysv/consts/__NR_pipe2.S b/libc/sysv/consts/__NR_pipe2.S index 425eb5a6..506bfabe 100644 --- a/libc/sysv/consts/__NR_pipe2.S +++ b/libc/sysv/consts/__NR_pipe2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pipe2,0x0125,-1,0x021e,0x0065,0x1c5,-1 +.syscon nr,__NR_pipe2,0x0125,0xfff,0x021e,0x0065,0x1c5,0xfff diff --git a/libc/sysv/consts/__NR_pivot_root.S b/libc/sysv/consts/__NR_pivot_root.S index 6f4a497e..00fbd6d4 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.internal.h" -.syscon nr,__NR_pivot_root,0x009b,-1,-1,-1,-1,-1 +.syscon nr,__NR_pivot_root,0x009b,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pkey_alloc.S b/libc/sysv/consts/__NR_pkey_alloc.S index b83c0c7f..9a0b5c49 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.internal.h" -.syscon nr,__NR_pkey_alloc,0x014a,-1,-1,-1,-1,-1 +.syscon nr,__NR_pkey_alloc,0x014a,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pkey_free.S b/libc/sysv/consts/__NR_pkey_free.S index f0b18c99..de2beb48 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.internal.h" -.syscon nr,__NR_pkey_free,0x014b,-1,-1,-1,-1,-1 +.syscon nr,__NR_pkey_free,0x014b,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pkey_mprotect.S b/libc/sysv/consts/__NR_pkey_mprotect.S index 703aa405..865b5723 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.internal.h" -.syscon nr,__NR_pkey_mprotect,0x0149,-1,-1,-1,-1,-1 +.syscon nr,__NR_pkey_mprotect,0x0149,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pledge.S b/libc/sysv/consts/__NR_pledge.S index 648aa8ff..de194240 100644 --- a/libc/sysv/consts/__NR_pledge.S +++ b/libc/sysv/consts/__NR_pledge.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pledge,-1,-1,-1,0x006c,-1,-1 +.syscon nr,__NR_pledge,0xfff,0xfff,0xfff,0x006c,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_poll.S b/libc/sysv/consts/__NR_poll.S index 15b043fb..9aa76c35 100644 --- a/libc/sysv/consts/__NR_poll.S +++ b/libc/sysv/consts/__NR_poll.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_poll,0x0007,0x20000e6,0x00d1,0x00fc,0x0d1,-1 +.syscon nr,__NR_poll,0x0007,0x20000e6,0x00d1,0x00fc,0x0d1,0xfff diff --git a/libc/sysv/consts/__NR_poll_nocancel.S b/libc/sysv/consts/__NR_poll_nocancel.S index 55c8e94e..c58de574 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.internal.h" -.syscon nr,__NR_poll_nocancel,-1,0x20001a1,-1,-1,-1,-1 +.syscon nr,__NR_poll_nocancel,0xfff,0x20001a1,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_posix_fallocate.S b/libc/sysv/consts/__NR_posix_fallocate.S index 6a8e6b51..f805e60a 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.internal.h" -.syscon nr,__NR_posix_fallocate,-1,-1,0x0212,-1,-1,-1 +.syscon nr,__NR_posix_fallocate,0xfff,0xfff,0x0212,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_posix_openpt.S b/libc/sysv/consts/__NR_posix_openpt.S index c5fe24e2..536ed8c5 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.internal.h" -.syscon nr,__NR_posix_openpt,-1,-1,0x01f8,-1,-1,-1 +.syscon nr,__NR_posix_openpt,0xfff,0xfff,0x01f8,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_posix_spawn.S b/libc/sysv/consts/__NR_posix_spawn.S index 4e3b0b9f..e78862fa 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.internal.h" -.syscon nr,__NR_posix_spawn,-1,0x20000f4,-1,-1,-1,-1 +.syscon nr,__NR_posix_spawn,0xfff,0x20000f4,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ppoll.S b/libc/sysv/consts/__NR_ppoll.S index 75972944..777841b9 100644 --- a/libc/sysv/consts/__NR_ppoll.S +++ b/libc/sysv/consts/__NR_ppoll.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ppoll,0x010f,-1,0x0221,0x006d,-1,-1 +.syscon nr,__NR_ppoll,0x010f,0xfff,0x0221,0x006d,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_prctl.S b/libc/sysv/consts/__NR_prctl.S index d7f10740..e4275112 100644 --- a/libc/sysv/consts/__NR_prctl.S +++ b/libc/sysv/consts/__NR_prctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_prctl,0x009d,-1,-1,-1,-1,-1 +.syscon nr,__NR_prctl,0x009d,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pread.S b/libc/sysv/consts/__NR_pread.S index 85118c1a..117a02a7 100644 --- a/libc/sysv/consts/__NR_pread.S +++ b/libc/sysv/consts/__NR_pread.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pread,0x0011,0x2000099,0x01db,0x00ad,0x0ad,-1 +.syscon nr,__NR_pread,0x0011,0x2000099,0x01db,0x00ad,0x0ad,0xfff diff --git a/libc/sysv/consts/__NR_pread_nocancel.S b/libc/sysv/consts/__NR_pread_nocancel.S index f1c2338d..03861469 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.internal.h" -.syscon nr,__NR_pread_nocancel,-1,0x200019e,-1,-1,-1,-1 +.syscon nr,__NR_pread_nocancel,0xfff,0x200019e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_preadv.S b/libc/sysv/consts/__NR_preadv.S index f83bb195..c81f7906 100644 --- a/libc/sysv/consts/__NR_preadv.S +++ b/libc/sysv/consts/__NR_preadv.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_preadv,0x0127,-1,0x0121,0x010b,0x121,-1 +.syscon nr,__NR_preadv,0x0127,0xfff,0x0121,0x010b,0x121,0xfff diff --git a/libc/sysv/consts/__NR_preadv2.S b/libc/sysv/consts/__NR_preadv2.S index 11d97e3f..2bccb7be 100644 --- a/libc/sysv/consts/__NR_preadv2.S +++ b/libc/sysv/consts/__NR_preadv2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_preadv2,0x0147,-1,-1,-1,-1,-1 +.syscon nr,__NR_preadv2,0x0147,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_prlimit.S b/libc/sysv/consts/__NR_prlimit.S index cf03a0c8..10447bcf 100644 --- a/libc/sysv/consts/__NR_prlimit.S +++ b/libc/sysv/consts/__NR_prlimit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_prlimit,0x012e,-1,-1,-1,-1,-1 +.syscon nr,__NR_prlimit,0x012e,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_proc_info.S b/libc/sysv/consts/__NR_proc_info.S index ea19d0bd..85a75ac6 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.internal.h" -.syscon nr,__NR_proc_info,-1,0x2000150,-1,-1,-1,-1 +.syscon nr,__NR_proc_info,0xfff,0x2000150,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_proc_rlimit_control.S b/libc/sysv/consts/__NR_proc_rlimit_control.S index 401bfa1a..a9b6c34a 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.internal.h" -.syscon nr,__NR_proc_rlimit_control,-1,0x20001be,-1,-1,-1,-1 +.syscon nr,__NR_proc_rlimit_control,0xfff,0x20001be,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_proc_trace_log.S b/libc/sysv/consts/__NR_proc_trace_log.S index 9fc683e1..caa15a54 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.internal.h" -.syscon nr,__NR_proc_trace_log,-1,0x20001dd,-1,-1,-1,-1 +.syscon nr,__NR_proc_trace_log,0xfff,0x20001dd,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_proc_uuid_policy.S b/libc/sysv/consts/__NR_proc_uuid_policy.S index 6ac2a6e1..703df331 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.internal.h" -.syscon nr,__NR_proc_uuid_policy,-1,0x20001c4,-1,-1,-1,-1 +.syscon nr,__NR_proc_uuid_policy,0xfff,0x20001c4,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_procctl.S b/libc/sysv/consts/__NR_procctl.S index a3ea6e5f..1d77a70c 100644 --- a/libc/sysv/consts/__NR_procctl.S +++ b/libc/sysv/consts/__NR_procctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_procctl,-1,-1,0x0220,-1,-1,-1 +.syscon nr,__NR_procctl,0xfff,0xfff,0x0220,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_process_policy.S b/libc/sysv/consts/__NR_process_policy.S index a743f25f..0d82eca7 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.internal.h" -.syscon nr,__NR_process_policy,-1,0x2000143,-1,-1,-1,-1 +.syscon nr,__NR_process_policy,0xfff,0x2000143,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_process_vm_readv.S b/libc/sysv/consts/__NR_process_vm_readv.S index 29f69b98..c483ab35 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.internal.h" -.syscon nr,__NR_process_vm_readv,0x0136,-1,-1,-1,-1,-1 +.syscon nr,__NR_process_vm_readv,0x0136,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_process_vm_writev.S b/libc/sysv/consts/__NR_process_vm_writev.S index c84da8f9..7acbc5f6 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.internal.h" -.syscon nr,__NR_process_vm_writev,0x0137,-1,-1,-1,-1,-1 +.syscon nr,__NR_process_vm_writev,0x0137,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_profil.S b/libc/sysv/consts/__NR_profil.S index f84e8458..6b85ed90 100644 --- a/libc/sysv/consts/__NR_profil.S +++ b/libc/sysv/consts/__NR_profil.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_profil,-1,-1,0x002c,0x002c,0x02c,-1 +.syscon nr,__NR_profil,0xfff,0xfff,0x002c,0x002c,0x02c,0xfff diff --git a/libc/sysv/consts/__NR_pselect.S b/libc/sysv/consts/__NR_pselect.S index 1a20a3d3..67cefb13 100644 --- a/libc/sysv/consts/__NR_pselect.S +++ b/libc/sysv/consts/__NR_pselect.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pselect,-1,0x200018a,0x020a,0x006e,0x1b4,-1 +.syscon nr,__NR_pselect,0xfff,0x200018a,0x020a,0x006e,0x1b4,0xfff diff --git a/libc/sysv/consts/__NR_pselect6.S b/libc/sysv/consts/__NR_pselect6.S index 1e55d0c4..830dd7b9 100644 --- a/libc/sysv/consts/__NR_pselect6.S +++ b/libc/sysv/consts/__NR_pselect6.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pselect6,0x010e,-1,-1,-1,-1,-1 +.syscon nr,__NR_pselect6,0x010e,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pselect_nocancel.S b/libc/sysv/consts/__NR_pselect_nocancel.S index c9ea93ff..4781b6f7 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.internal.h" -.syscon nr,__NR_pselect_nocancel,-1,0x200018b,-1,-1,-1,-1 +.syscon nr,__NR_pselect_nocancel,0xfff,0x200018b,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_cvbroad.S b/libc/sysv/consts/__NR_psynch_cvbroad.S index 47dbc54c..831e0fc2 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.internal.h" -.syscon nr,__NR_psynch_cvbroad,-1,0x200012f,-1,-1,-1,-1 +.syscon nr,__NR_psynch_cvbroad,0xfff,0x200012f,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_cvclrprepost.S b/libc/sysv/consts/__NR_psynch_cvclrprepost.S index 6582a21f..155c8e41 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.internal.h" -.syscon nr,__NR_psynch_cvclrprepost,-1,0x2000138,-1,-1,-1,-1 +.syscon nr,__NR_psynch_cvclrprepost,0xfff,0x2000138,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_cvsignal.S b/libc/sysv/consts/__NR_psynch_cvsignal.S index 6fd479a3..9485288b 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.internal.h" -.syscon nr,__NR_psynch_cvsignal,-1,0x2000130,-1,-1,-1,-1 +.syscon nr,__NR_psynch_cvsignal,0xfff,0x2000130,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_cvwait.S b/libc/sysv/consts/__NR_psynch_cvwait.S index bd07273e..83802892 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.internal.h" -.syscon nr,__NR_psynch_cvwait,-1,0x2000131,-1,-1,-1,-1 +.syscon nr,__NR_psynch_cvwait,0xfff,0x2000131,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_mutexdrop.S b/libc/sysv/consts/__NR_psynch_mutexdrop.S index 36826e22..fda6498a 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.internal.h" -.syscon nr,__NR_psynch_mutexdrop,-1,0x200012e,-1,-1,-1,-1 +.syscon nr,__NR_psynch_mutexdrop,0xfff,0x200012e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_mutexwait.S b/libc/sysv/consts/__NR_psynch_mutexwait.S index b2cdbc03..8735e6f3 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.internal.h" -.syscon nr,__NR_psynch_mutexwait,-1,0x200012d,-1,-1,-1,-1 +.syscon nr,__NR_psynch_mutexwait,0xfff,0x200012d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_downgrade.S b/libc/sysv/consts/__NR_psynch_rw_downgrade.S index 57cb1f3a..e1b6b679 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.internal.h" -.syscon nr,__NR_psynch_rw_downgrade,-1,0x200012b,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_downgrade,0xfff,0x200012b,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_longrdlock.S b/libc/sysv/consts/__NR_psynch_rw_longrdlock.S index b07a7257..89d9a1cb 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.internal.h" -.syscon nr,__NR_psynch_rw_longrdlock,-1,0x2000129,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_longrdlock,0xfff,0x2000129,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_rdlock.S b/libc/sysv/consts/__NR_psynch_rw_rdlock.S index 5d2cbee1..e509262a 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.internal.h" -.syscon nr,__NR_psynch_rw_rdlock,-1,0x2000132,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_rdlock,0xfff,0x2000132,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_unlock.S b/libc/sysv/consts/__NR_psynch_rw_unlock.S index 3b71a6d8..db4921e2 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.internal.h" -.syscon nr,__NR_psynch_rw_unlock,-1,0x2000134,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_unlock,0xfff,0x2000134,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_unlock2.S b/libc/sysv/consts/__NR_psynch_rw_unlock2.S index 0aa101d3..03137523 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.internal.h" -.syscon nr,__NR_psynch_rw_unlock2,-1,0x2000135,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_unlock2,0xfff,0x2000135,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_upgrade.S b/libc/sysv/consts/__NR_psynch_rw_upgrade.S index 3bbd1d43..07cb79b7 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.internal.h" -.syscon nr,__NR_psynch_rw_upgrade,-1,0x200012c,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_upgrade,0xfff,0x200012c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_wrlock.S b/libc/sysv/consts/__NR_psynch_rw_wrlock.S index 55849544..ed535dad 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.internal.h" -.syscon nr,__NR_psynch_rw_wrlock,-1,0x2000133,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_wrlock,0xfff,0x2000133,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_psynch_rw_yieldwrlock.S b/libc/sysv/consts/__NR_psynch_rw_yieldwrlock.S index 1e17b581..43049f2d 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.internal.h" -.syscon nr,__NR_psynch_rw_yieldwrlock,-1,0x200012a,-1,-1,-1,-1 +.syscon nr,__NR_psynch_rw_yieldwrlock,0xfff,0x200012a,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pthread_canceled.S b/libc/sysv/consts/__NR_pthread_canceled.S index e52fdb06..db21c137 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.internal.h" -.syscon nr,__NR_pthread_canceled,-1,0x200014d,-1,-1,-1,-1 +.syscon nr,__NR_pthread_canceled,0xfff,0x200014d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pthread_chdir.S b/libc/sysv/consts/__NR_pthread_chdir.S index 648aab57..9cb6b6ae 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.internal.h" -.syscon nr,__NR_pthread_chdir,-1,0x200015c,-1,-1,-1,-1 +.syscon nr,__NR_pthread_chdir,0xfff,0x200015c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pthread_fchdir.S b/libc/sysv/consts/__NR_pthread_fchdir.S index 2d4d22ff..6879cec6 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.internal.h" -.syscon nr,__NR_pthread_fchdir,-1,0x200015d,-1,-1,-1,-1 +.syscon nr,__NR_pthread_fchdir,0xfff,0x200015d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pthread_kill.S b/libc/sysv/consts/__NR_pthread_kill.S index 028b0283..364d8e63 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.internal.h" -.syscon nr,__NR_pthread_kill,-1,0x2000148,-1,-1,-1,-1 +.syscon nr,__NR_pthread_kill,0xfff,0x2000148,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pthread_markcancel.S b/libc/sysv/consts/__NR_pthread_markcancel.S index 7903cf1a..b98c6ddf 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.internal.h" -.syscon nr,__NR_pthread_markcancel,-1,0x200014c,-1,-1,-1,-1 +.syscon nr,__NR_pthread_markcancel,0xfff,0x200014c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pthread_sigmask.S b/libc/sysv/consts/__NR_pthread_sigmask.S index dbb6243f..082b103f 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.internal.h" -.syscon nr,__NR_pthread_sigmask,-1,0x2000149,-1,-1,-1,-1 +.syscon nr,__NR_pthread_sigmask,0xfff,0x2000149,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ptrace.S b/libc/sysv/consts/__NR_ptrace.S index 88fa0b23..ec825fdf 100644 --- a/libc/sysv/consts/__NR_ptrace.S +++ b/libc/sysv/consts/__NR_ptrace.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ptrace,0x0065,0x200001a,0x001a,0x001a,0x01a,-1 +.syscon nr,__NR_ptrace,0x0065,0x200001a,0x001a,0x001a,0x01a,0xfff diff --git a/libc/sysv/consts/__NR_pwrite.S b/libc/sysv/consts/__NR_pwrite.S index 84184fd6..b1785585 100644 --- a/libc/sysv/consts/__NR_pwrite.S +++ b/libc/sysv/consts/__NR_pwrite.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pwrite,0x0012,0x200009a,0x01dc,0x00ae,0x0ae,-1 +.syscon nr,__NR_pwrite,0x0012,0x200009a,0x01dc,0x00ae,0x0ae,0xfff diff --git a/libc/sysv/consts/__NR_pwrite_nocancel.S b/libc/sysv/consts/__NR_pwrite_nocancel.S index a3feb634..bdfb4f1a 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.internal.h" -.syscon nr,__NR_pwrite_nocancel,-1,0x200019f,-1,-1,-1,-1 +.syscon nr,__NR_pwrite_nocancel,0xfff,0x200019f,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_pwritev.S b/libc/sysv/consts/__NR_pwritev.S index 37133716..e7c2a6af 100644 --- a/libc/sysv/consts/__NR_pwritev.S +++ b/libc/sysv/consts/__NR_pwritev.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pwritev,0x0128,-1,0x0122,0x010c,0x122,-1 +.syscon nr,__NR_pwritev,0x0128,0xfff,0x0122,0x010c,0x122,0xfff diff --git a/libc/sysv/consts/__NR_pwritev2.S b/libc/sysv/consts/__NR_pwritev2.S index 206e91bf..e305216b 100644 --- a/libc/sysv/consts/__NR_pwritev2.S +++ b/libc/sysv/consts/__NR_pwritev2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_pwritev2,0x0148,-1,-1,-1,-1,-1 +.syscon nr,__NR_pwritev2,0x0148,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_quota.S b/libc/sysv/consts/__NR_quota.S index f1952f08..78da1a55 100644 --- a/libc/sysv/consts/__NR_quota.S +++ b/libc/sysv/consts/__NR_quota.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_quota,-1,-1,0x0095,-1,-1,-1 +.syscon nr,__NR_quota,0xfff,0xfff,0x0095,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_quotactl.S b/libc/sysv/consts/__NR_quotactl.S index 7f56784f..5b85d41b 100644 --- a/libc/sysv/consts/__NR_quotactl.S +++ b/libc/sysv/consts/__NR_quotactl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_quotactl,0x00b3,0x20000a5,0x0094,0x0094,-1,-1 +.syscon nr,__NR_quotactl,0x00b3,0x20000a5,0x0094,0x0094,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rctl_add_rule.S b/libc/sysv/consts/__NR_rctl_add_rule.S index 5ddc7961..9b1b7116 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.internal.h" -.syscon nr,__NR_rctl_add_rule,-1,-1,0x0210,-1,-1,-1 +.syscon nr,__NR_rctl_add_rule,0xfff,0xfff,0x0210,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rctl_get_limits.S b/libc/sysv/consts/__NR_rctl_get_limits.S index 01fa9df4..f1e4510f 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.internal.h" -.syscon nr,__NR_rctl_get_limits,-1,-1,0x020f,-1,-1,-1 +.syscon nr,__NR_rctl_get_limits,0xfff,0xfff,0x020f,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rctl_get_racct.S b/libc/sysv/consts/__NR_rctl_get_racct.S index a16079a4..ebc497a4 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.internal.h" -.syscon nr,__NR_rctl_get_racct,-1,-1,0x020d,-1,-1,-1 +.syscon nr,__NR_rctl_get_racct,0xfff,0xfff,0x020d,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rctl_get_rules.S b/libc/sysv/consts/__NR_rctl_get_rules.S index f48f8ae2..8d9133ca 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.internal.h" -.syscon nr,__NR_rctl_get_rules,-1,-1,0x020e,-1,-1,-1 +.syscon nr,__NR_rctl_get_rules,0xfff,0xfff,0x020e,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rctl_remove_rule.S b/libc/sysv/consts/__NR_rctl_remove_rule.S index 98dcbe52..557e2620 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.internal.h" -.syscon nr,__NR_rctl_remove_rule,-1,-1,0x0211,-1,-1,-1 +.syscon nr,__NR_rctl_remove_rule,0xfff,0xfff,0x0211,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_read.S b/libc/sysv/consts/__NR_read.S index daaf31a4..01edfed8 100644 --- a/libc/sysv/consts/__NR_read.S +++ b/libc/sysv/consts/__NR_read.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_read,0x0000,0x2000003,0x0003,0x0003,0x003,-1 +.syscon nr,__NR_read,0x0000,0x2000003,0x0003,0x0003,0x003,0xfff diff --git a/libc/sysv/consts/__NR_read_nocancel.S b/libc/sysv/consts/__NR_read_nocancel.S index 205a515f..a62c34bf 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.internal.h" -.syscon nr,__NR_read_nocancel,-1,0x200018c,-1,-1,-1,-1 +.syscon nr,__NR_read_nocancel,0xfff,0x200018c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_readahead.S b/libc/sysv/consts/__NR_readahead.S index 0c08da51..06207382 100644 --- a/libc/sysv/consts/__NR_readahead.S +++ b/libc/sysv/consts/__NR_readahead.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_readahead,0x00bb,-1,-1,-1,-1,-1 +.syscon nr,__NR_readahead,0x00bb,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_readlink.S b/libc/sysv/consts/__NR_readlink.S index f67508d0..106ce431 100644 --- a/libc/sysv/consts/__NR_readlink.S +++ b/libc/sysv/consts/__NR_readlink.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_readlink,0x0059,0x200003a,0x003a,0x003a,0x03a,-1 +.syscon nr,__NR_readlink,0x0059,0x200003a,0x003a,0x003a,0x03a,0xfff diff --git a/libc/sysv/consts/__NR_readlinkat.S b/libc/sysv/consts/__NR_readlinkat.S index 17031062..46a0819f 100644 --- a/libc/sysv/consts/__NR_readlinkat.S +++ b/libc/sysv/consts/__NR_readlinkat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_readlinkat,0x010b,0x20001d9,0x01f4,0x0142,0x1d5,-1 +.syscon nr,__NR_readlinkat,0x010b,0x20001d9,0x01f4,0x0142,0x1d5,0xfff diff --git a/libc/sysv/consts/__NR_readv.S b/libc/sysv/consts/__NR_readv.S index 66e774fd..1c70e0df 100644 --- a/libc/sysv/consts/__NR_readv.S +++ b/libc/sysv/consts/__NR_readv.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_readv,0x0013,0x2000078,0x0078,0x0078,0x078,-1 +.syscon nr,__NR_readv,0x0013,0x2000078,0x0078,0x0078,0x078,0xfff diff --git a/libc/sysv/consts/__NR_readv_nocancel.S b/libc/sysv/consts/__NR_readv_nocancel.S index 5719791b..bdecd444 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.internal.h" -.syscon nr,__NR_readv_nocancel,-1,0x200019b,-1,-1,-1,-1 +.syscon nr,__NR_readv_nocancel,0xfff,0x200019b,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_reboot.S b/libc/sysv/consts/__NR_reboot.S index 6997e483..02ed92ad 100644 --- a/libc/sysv/consts/__NR_reboot.S +++ b/libc/sysv/consts/__NR_reboot.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_reboot,0x00a9,0x2000037,0x0037,0x0037,0x0d0,-1 +.syscon nr,__NR_reboot,0x00a9,0x2000037,0x0037,0x0037,0x0d0,0xfff diff --git a/libc/sysv/consts/__NR_recv.S b/libc/sysv/consts/__NR_recv.S index fd3fbf1b..0bcb742a 100644 --- a/libc/sysv/consts/__NR_recv.S +++ b/libc/sysv/consts/__NR_recv.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_recv,-1,-1,0x0066,-1,-1,-1 +.syscon nr,__NR_recv,0xfff,0xfff,0x0066,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_recvfrom.S b/libc/sysv/consts/__NR_recvfrom.S index fcaefd5a..ab28cf90 100644 --- a/libc/sysv/consts/__NR_recvfrom.S +++ b/libc/sysv/consts/__NR_recvfrom.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_recvfrom,0x002d,0x200001d,0x001d,0x001d,0x01d,-1 +.syscon nr,__NR_recvfrom,0x002d,0x200001d,0x001d,0x001d,0x01d,0xfff diff --git a/libc/sysv/consts/__NR_recvfrom_nocancel.S b/libc/sysv/consts/__NR_recvfrom_nocancel.S index a4b8a1a2..fc216c0d 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.internal.h" -.syscon nr,__NR_recvfrom_nocancel,-1,0x2000193,-1,-1,-1,-1 +.syscon nr,__NR_recvfrom_nocancel,0xfff,0x2000193,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_recvmmsg.S b/libc/sysv/consts/__NR_recvmmsg.S index 385c6534..c4adbba3 100644 --- a/libc/sysv/consts/__NR_recvmmsg.S +++ b/libc/sysv/consts/__NR_recvmmsg.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_recvmmsg,0x012b,-1,-1,-1,0x1db,-1 +.syscon nr,__NR_recvmmsg,0x012b,0xfff,0xfff,0xfff,0x1db,0xfff diff --git a/libc/sysv/consts/__NR_recvmsg.S b/libc/sysv/consts/__NR_recvmsg.S index 22893e8b..c08de91a 100644 --- a/libc/sysv/consts/__NR_recvmsg.S +++ b/libc/sysv/consts/__NR_recvmsg.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_recvmsg,0x002f,0x200001b,0x001b,0x001b,0x01b,-1 +.syscon nr,__NR_recvmsg,0x002f,0x200001b,0x001b,0x001b,0x01b,0xfff diff --git a/libc/sysv/consts/__NR_recvmsg_nocancel.S b/libc/sysv/consts/__NR_recvmsg_nocancel.S index 8c5f6749..3a4bfc6d 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.internal.h" -.syscon nr,__NR_recvmsg_nocancel,-1,0x2000191,-1,-1,-1,-1 +.syscon nr,__NR_recvmsg_nocancel,0xfff,0x2000191,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_recvmsg_x.S b/libc/sysv/consts/__NR_recvmsg_x.S index 4794acee..1b9563af 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.internal.h" -.syscon nr,__NR_recvmsg_x,-1,0x20001e0,-1,-1,-1,-1 +.syscon nr,__NR_recvmsg_x,0xfff,0x20001e0,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_removexattr.S b/libc/sysv/consts/__NR_removexattr.S index 4640b4a2..3506c395 100644 --- a/libc/sysv/consts/__NR_removexattr.S +++ b/libc/sysv/consts/__NR_removexattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_removexattr,0x00c5,0x20000ee,-1,-1,0x180,-1 +.syscon nr,__NR_removexattr,0x00c5,0x20000ee,0xfff,0xfff,0x180,0xfff diff --git a/libc/sysv/consts/__NR_rename.S b/libc/sysv/consts/__NR_rename.S index fab091a7..3fa65159 100644 --- a/libc/sysv/consts/__NR_rename.S +++ b/libc/sysv/consts/__NR_rename.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_rename,0x0052,0x2000080,0x0080,0x0080,0x080,-1 +.syscon nr,__NR_rename,0x0052,0x2000080,0x0080,0x0080,0x080,0xfff diff --git a/libc/sysv/consts/__NR_renameat.S b/libc/sysv/consts/__NR_renameat.S index dd3bc29d..b2ee29ee 100644 --- a/libc/sysv/consts/__NR_renameat.S +++ b/libc/sysv/consts/__NR_renameat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_renameat,0x0108,0x20001d1,0x01f5,0x0143,0x1ca,-1 +.syscon nr,__NR_renameat,0x0108,0x20001d1,0x01f5,0x0143,0x1ca,0xfff diff --git a/libc/sysv/consts/__NR_renameat2.S b/libc/sysv/consts/__NR_renameat2.S index 24c636fa..52c2f794 100644 --- a/libc/sysv/consts/__NR_renameat2.S +++ b/libc/sysv/consts/__NR_renameat2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_renameat2,0x013c,-1,-1,-1,-1,-1 +.syscon nr,__NR_renameat2,0x013c,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_renameatx_np.S b/libc/sysv/consts/__NR_renameatx_np.S index 009161be..3c227a9f 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.internal.h" -.syscon nr,__NR_renameatx_np,-1,0x20001e8,-1,-1,-1,-1 +.syscon nr,__NR_renameatx_np,0xfff,0x20001e8,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_request_key.S b/libc/sysv/consts/__NR_request_key.S index 82ef1436..d36ef66d 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.internal.h" -.syscon nr,__NR_request_key,0x00f9,-1,-1,-1,-1,-1 +.syscon nr,__NR_request_key,0x00f9,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_restart_syscall.S b/libc/sysv/consts/__NR_restart_syscall.S index 087071c9..da0720ce 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.internal.h" -.syscon nr,__NR_restart_syscall,0x00db,-1,-1,-1,-1,-1 +.syscon nr,__NR_restart_syscall,0x00db,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_revoke.S b/libc/sysv/consts/__NR_revoke.S index 9f4d5978..1dae7486 100644 --- a/libc/sysv/consts/__NR_revoke.S +++ b/libc/sysv/consts/__NR_revoke.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_revoke,-1,0x2000038,0x0038,0x0038,0x038,-1 +.syscon nr,__NR_revoke,0xfff,0x2000038,0x0038,0x0038,0x038,0xfff diff --git a/libc/sysv/consts/__NR_rfork.S b/libc/sysv/consts/__NR_rfork.S index 3d8b1968..a3aa9257 100644 --- a/libc/sysv/consts/__NR_rfork.S +++ b/libc/sysv/consts/__NR_rfork.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_rfork,-1,-1,0x00fb,-1,-1,-1 +.syscon nr,__NR_rfork,0xfff,0xfff,0x00fb,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rmdir.S b/libc/sysv/consts/__NR_rmdir.S index 8acf26d4..bee8e349 100644 --- a/libc/sysv/consts/__NR_rmdir.S +++ b/libc/sysv/consts/__NR_rmdir.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_rmdir,0x0054,0x2000089,0x0089,0x0089,0x089,-1 +.syscon nr,__NR_rmdir,0x0054,0x2000089,0x0089,0x0089,0x089,0xfff diff --git a/libc/sysv/consts/__NR_rseq.S b/libc/sysv/consts/__NR_rseq.S index 61a430c1..eed3c628 100644 --- a/libc/sysv/consts/__NR_rseq.S +++ b/libc/sysv/consts/__NR_rseq.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_rseq,0x014e,-1,-1,-1,-1,-1 +.syscon nr,__NR_rseq,0x014e,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rt_sigqueueinfo.S b/libc/sysv/consts/__NR_rt_sigqueueinfo.S index 9d9925b9..ba4b165a 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.internal.h" -.syscon nr,__NR_rt_sigqueueinfo,0x0081,-1,-1,-1,-1,-1 +.syscon nr,__NR_rt_sigqueueinfo,0x0081,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rt_tgsigqueueinfo.S b/libc/sysv/consts/__NR_rt_tgsigqueueinfo.S index 55f9155d..a07225a3 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.internal.h" -.syscon nr,__NR_rt_tgsigqueueinfo,0x0129,-1,-1,-1,-1,-1 +.syscon nr,__NR_rt_tgsigqueueinfo,0x0129,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rtprio.S b/libc/sysv/consts/__NR_rtprio.S index 0f4cf4da..0f40d3cc 100644 --- a/libc/sysv/consts/__NR_rtprio.S +++ b/libc/sysv/consts/__NR_rtprio.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_rtprio,-1,-1,0x00a6,-1,-1,-1 +.syscon nr,__NR_rtprio,0xfff,0xfff,0x00a6,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_rtprio_thread.S b/libc/sysv/consts/__NR_rtprio_thread.S index e51005ae..7acc130b 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.internal.h" -.syscon nr,__NR_rtprio_thread,-1,-1,0x01d2,-1,-1,-1 +.syscon nr,__NR_rtprio_thread,0xfff,0xfff,0x01d2,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_get_priority_max.S b/libc/sysv/consts/__NR_sched_get_priority_max.S index 21505189..193431d2 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.internal.h" -.syscon nr,__NR_sched_get_priority_max,0x0092,-1,0x014c,-1,-1,-1 +.syscon nr,__NR_sched_get_priority_max,0x0092,0xfff,0x014c,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_get_priority_min.S b/libc/sysv/consts/__NR_sched_get_priority_min.S index b3e60f53..e0e21050 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.internal.h" -.syscon nr,__NR_sched_get_priority_min,0x0093,-1,0x014d,-1,-1,-1 +.syscon nr,__NR_sched_get_priority_min,0x0093,0xfff,0x014d,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_getaffinity.S b/libc/sysv/consts/__NR_sched_getaffinity.S index da489995..defda07d 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.internal.h" -.syscon nr,__NR_sched_getaffinity,0x00cc,-1,-1,-1,-1,-1 +.syscon nr,__NR_sched_getaffinity,0x00cc,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_getattr.S b/libc/sysv/consts/__NR_sched_getattr.S index 5bf45777..5ebcdce4 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.internal.h" -.syscon nr,__NR_sched_getattr,0x013b,-1,-1,-1,-1,-1 +.syscon nr,__NR_sched_getattr,0x013b,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_getparam.S b/libc/sysv/consts/__NR_sched_getparam.S index af5d7bef..da2ea896 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.internal.h" -.syscon nr,__NR_sched_getparam,0x008f,-1,0x0148,-1,-1,-1 +.syscon nr,__NR_sched_getparam,0x008f,0xfff,0x0148,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_getscheduler.S b/libc/sysv/consts/__NR_sched_getscheduler.S index f10d32db..599714ec 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.internal.h" -.syscon nr,__NR_sched_getscheduler,0x0091,-1,0x014a,-1,-1,-1 +.syscon nr,__NR_sched_getscheduler,0x0091,0xfff,0x014a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_rr_get_interval.S b/libc/sysv/consts/__NR_sched_rr_get_interval.S index f457053e..d2e19738 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.internal.h" -.syscon nr,__NR_sched_rr_get_interval,0x0094,-1,0x014e,-1,-1,-1 +.syscon nr,__NR_sched_rr_get_interval,0x0094,0xfff,0x014e,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_setaffinity.S b/libc/sysv/consts/__NR_sched_setaffinity.S index 9568e646..50ec3ae0 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.internal.h" -.syscon nr,__NR_sched_setaffinity,0x00cb,-1,-1,-1,-1,-1 +.syscon nr,__NR_sched_setaffinity,0x00cb,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_setattr.S b/libc/sysv/consts/__NR_sched_setattr.S index 0d10310c..a700a4b6 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.internal.h" -.syscon nr,__NR_sched_setattr,0x013a,-1,-1,-1,-1,-1 +.syscon nr,__NR_sched_setattr,0x013a,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_setparam.S b/libc/sysv/consts/__NR_sched_setparam.S index ed793850..9980c998 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.internal.h" -.syscon nr,__NR_sched_setparam,0x008e,-1,0x0147,-1,-1,-1 +.syscon nr,__NR_sched_setparam,0x008e,0xfff,0x0147,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_setscheduler.S b/libc/sysv/consts/__NR_sched_setscheduler.S index 5b5a9d3d..2dd5e0dd 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.internal.h" -.syscon nr,__NR_sched_setscheduler,0x0090,-1,0x0149,-1,-1,-1 +.syscon nr,__NR_sched_setscheduler,0x0090,0xfff,0x0149,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sched_yield.S b/libc/sysv/consts/__NR_sched_yield.S index 347395b1..f39ccfe5 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.internal.h" -.syscon nr,__NR_sched_yield,0x0018,0x010003c,0x014b,0x012a,0x15e,-1 +.syscon nr,__NR_sched_yield,0x0018,0x010003c,0x014b,0x012a,0x15e,0xfff diff --git a/libc/sysv/consts/__NR_sctp_generic_recvmsg.S b/libc/sysv/consts/__NR_sctp_generic_recvmsg.S index c438d417..9bf42553 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.internal.h" -.syscon nr,__NR_sctp_generic_recvmsg,-1,-1,0x01da,-1,-1,-1 +.syscon nr,__NR_sctp_generic_recvmsg,0xfff,0xfff,0x01da,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sctp_generic_sendmsg.S b/libc/sysv/consts/__NR_sctp_generic_sendmsg.S index f3993e40..c30266fb 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.internal.h" -.syscon nr,__NR_sctp_generic_sendmsg,-1,-1,0x01d8,-1,-1,-1 +.syscon nr,__NR_sctp_generic_sendmsg,0xfff,0xfff,0x01d8,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sctp_generic_sendmsg_iov.S b/libc/sysv/consts/__NR_sctp_generic_sendmsg_iov.S index 349ee375..729af0dc 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.internal.h" -.syscon nr,__NR_sctp_generic_sendmsg_iov,-1,-1,0x01d9,-1,-1,-1 +.syscon nr,__NR_sctp_generic_sendmsg_iov,0xfff,0xfff,0x01d9,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sctp_peeloff.S b/libc/sysv/consts/__NR_sctp_peeloff.S index 512a20c5..737d97f7 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.internal.h" -.syscon nr,__NR_sctp_peeloff,-1,-1,0x01d7,-1,-1,-1 +.syscon nr,__NR_sctp_peeloff,0xfff,0xfff,0x01d7,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_searchfs.S b/libc/sysv/consts/__NR_searchfs.S index 8ba4e393..6a5f282c 100644 --- a/libc/sysv/consts/__NR_searchfs.S +++ b/libc/sysv/consts/__NR_searchfs.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_searchfs,-1,0x20000e1,-1,-1,-1,-1 +.syscon nr,__NR_searchfs,0xfff,0x20000e1,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_seccomp.S b/libc/sysv/consts/__NR_seccomp.S index 89553581..a58d763e 100644 --- a/libc/sysv/consts/__NR_seccomp.S +++ b/libc/sysv/consts/__NR_seccomp.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_seccomp,0x013d,-1,-1,-1,-1,-1 +.syscon nr,__NR_seccomp,0x013d,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_select.S b/libc/sysv/consts/__NR_select.S index 6e2afa01..e9b4ead8 100644 --- a/libc/sysv/consts/__NR_select.S +++ b/libc/sysv/consts/__NR_select.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_select,0x0017,0x200005d,0x005d,0x0047,0x1a1,-1 +.syscon nr,__NR_select,0x0017,0x200005d,0x005d,0x0047,0x1a1,0xfff diff --git a/libc/sysv/consts/__NR_select_nocancel.S b/libc/sysv/consts/__NR_select_nocancel.S index 95a21d62..eeca7ec6 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.internal.h" -.syscon nr,__NR_select_nocancel,-1,0x2000197,-1,-1,-1,-1 +.syscon nr,__NR_select_nocancel,0xfff,0x2000197,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sem_close.S b/libc/sysv/consts/__NR_sem_close.S index 80c59be2..2b44a082 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.internal.h" -.syscon nr,__NR_sem_close,-1,0x200010d,-1,-1,-1,-1 +.syscon nr,__NR_sem_close,0xfff,0x200010d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sem_open.S b/libc/sysv/consts/__NR_sem_open.S index dbe1fb64..ec83486f 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.internal.h" -.syscon nr,__NR_sem_open,-1,0x200010c,-1,-1,-1,-1 +.syscon nr,__NR_sem_open,0xfff,0x200010c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sem_post.S b/libc/sysv/consts/__NR_sem_post.S index 6653f903..a09cb6f6 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.internal.h" -.syscon nr,__NR_sem_post,-1,0x2000111,-1,-1,-1,-1 +.syscon nr,__NR_sem_post,0xfff,0x2000111,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sem_trywait.S b/libc/sysv/consts/__NR_sem_trywait.S index 460b9105..d6e59a8f 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.internal.h" -.syscon nr,__NR_sem_trywait,-1,0x2000110,-1,-1,-1,-1 +.syscon nr,__NR_sem_trywait,0xfff,0x2000110,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sem_unlink.S b/libc/sysv/consts/__NR_sem_unlink.S index 59559c32..c89f35cd 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.internal.h" -.syscon nr,__NR_sem_unlink,-1,0x200010e,-1,-1,-1,-1 +.syscon nr,__NR_sem_unlink,0xfff,0x200010e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sem_wait.S b/libc/sysv/consts/__NR_sem_wait.S index 08a7495f..69014467 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.internal.h" -.syscon nr,__NR_sem_wait,-1,0x200010f,-1,-1,-1,-1 +.syscon nr,__NR_sem_wait,0xfff,0x200010f,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sem_wait_nocancel.S b/libc/sysv/consts/__NR_sem_wait_nocancel.S index fd482644..70be96dc 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.internal.h" -.syscon nr,__NR_sem_wait_nocancel,-1,0x20001a4,-1,-1,-1,-1 +.syscon nr,__NR_sem_wait_nocancel,0xfff,0x20001a4,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_semctl.S b/libc/sysv/consts/__NR_semctl.S index 4b974738..a6b03b43 100644 --- a/libc/sysv/consts/__NR_semctl.S +++ b/libc/sysv/consts/__NR_semctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_semctl,0x0042,0x20000fe,0x01fe,0x0127,-1,-1 +.syscon nr,__NR_semctl,0x0042,0x20000fe,0x01fe,0x0127,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_semget.S b/libc/sysv/consts/__NR_semget.S index a0eedf99..3649102d 100644 --- a/libc/sysv/consts/__NR_semget.S +++ b/libc/sysv/consts/__NR_semget.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_semget,0x0040,0x20000ff,0x00dd,0x00dd,0x0dd,-1 +.syscon nr,__NR_semget,0x0040,0x20000ff,0x00dd,0x00dd,0x0dd,0xfff diff --git a/libc/sysv/consts/__NR_semop.S b/libc/sysv/consts/__NR_semop.S index 8ffc1e32..d15b6834 100644 --- a/libc/sysv/consts/__NR_semop.S +++ b/libc/sysv/consts/__NR_semop.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_semop,0x0041,0x2000100,0x00de,0x0122,0x0de,-1 +.syscon nr,__NR_semop,0x0041,0x2000100,0x00de,0x0122,0x0de,0xfff diff --git a/libc/sysv/consts/__NR_semsys.S b/libc/sysv/consts/__NR_semsys.S index ec24b82c..1cf854f6 100644 --- a/libc/sysv/consts/__NR_semsys.S +++ b/libc/sysv/consts/__NR_semsys.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_semsys,-1,0x20000fb,0x00a9,-1,-1,-1 +.syscon nr,__NR_semsys,0xfff,0x20000fb,0x00a9,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_semtimedop.S b/libc/sysv/consts/__NR_semtimedop.S index 814d1f28..468a24d8 100644 --- a/libc/sysv/consts/__NR_semtimedop.S +++ b/libc/sysv/consts/__NR_semtimedop.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_semtimedop,0x00dc,-1,-1,-1,-1,-1 +.syscon nr,__NR_semtimedop,0x00dc,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_semwait_signal.S b/libc/sysv/consts/__NR_semwait_signal.S index 23f805c1..4116ed08 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.internal.h" -.syscon nr,__NR_semwait_signal,-1,0x200014e,-1,-1,-1,-1 +.syscon nr,__NR_semwait_signal,0xfff,0x200014e,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_semwait_signal_nocancel.S b/libc/sysv/consts/__NR_semwait_signal_nocancel.S index a79490c5..3c37b235 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.internal.h" -.syscon nr,__NR_semwait_signal_nocancel,-1,0x20001a7,-1,-1,-1,-1 +.syscon nr,__NR_semwait_signal_nocancel,0xfff,0x20001a7,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_send.S b/libc/sysv/consts/__NR_send.S index c26d3016..cb98901b 100644 --- a/libc/sysv/consts/__NR_send.S +++ b/libc/sysv/consts/__NR_send.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_send,-1,-1,0x0065,-1,-1,-1 +.syscon nr,__NR_send,0xfff,0xfff,0x0065,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sendfile.S b/libc/sysv/consts/__NR_sendfile.S index dffa449b..5fd91b7b 100644 --- a/libc/sysv/consts/__NR_sendfile.S +++ b/libc/sysv/consts/__NR_sendfile.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sendfile,0x0028,0x2000151,0x0189,-1,-1,-1 +.syscon nr,__NR_sendfile,0x0028,0x2000151,0x0189,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sendmmsg.S b/libc/sysv/consts/__NR_sendmmsg.S index a21db578..b06c78e6 100644 --- a/libc/sysv/consts/__NR_sendmmsg.S +++ b/libc/sysv/consts/__NR_sendmmsg.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sendmmsg,0x0133,-1,-1,-1,0x1dc,-1 +.syscon nr,__NR_sendmmsg,0x0133,0xfff,0xfff,0xfff,0x1dc,0xfff diff --git a/libc/sysv/consts/__NR_sendmsg.S b/libc/sysv/consts/__NR_sendmsg.S index d5abb33d..5e2adfff 100644 --- a/libc/sysv/consts/__NR_sendmsg.S +++ b/libc/sysv/consts/__NR_sendmsg.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sendmsg,0x002e,0x200001c,0x001c,0x001c,0x01c,-1 +.syscon nr,__NR_sendmsg,0x002e,0x200001c,0x001c,0x001c,0x01c,0xfff diff --git a/libc/sysv/consts/__NR_sendmsg_nocancel.S b/libc/sysv/consts/__NR_sendmsg_nocancel.S index 3e75d05f..aa17e512 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.internal.h" -.syscon nr,__NR_sendmsg_nocancel,-1,0x2000192,-1,-1,-1,-1 +.syscon nr,__NR_sendmsg_nocancel,0xfff,0x2000192,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sendmsg_x.S b/libc/sysv/consts/__NR_sendmsg_x.S index ed6c80b7..8e7874a5 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.internal.h" -.syscon nr,__NR_sendmsg_x,-1,0x20001e1,-1,-1,-1,-1 +.syscon nr,__NR_sendmsg_x,0xfff,0x20001e1,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sendsyslog.S b/libc/sysv/consts/__NR_sendsyslog.S index 00f7c1c7..8fd30b34 100644 --- a/libc/sysv/consts/__NR_sendsyslog.S +++ b/libc/sysv/consts/__NR_sendsyslog.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sendsyslog,-1,-1,-1,0x0070,-1,-1 +.syscon nr,__NR_sendsyslog,0xfff,0xfff,0xfff,0x0070,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sendto.S b/libc/sysv/consts/__NR_sendto.S index 245744bf..00c1e27d 100644 --- a/libc/sysv/consts/__NR_sendto.S +++ b/libc/sysv/consts/__NR_sendto.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sendto,0x002c,0x2000085,0x0085,0x0085,0x085,-1 +.syscon nr,__NR_sendto,0x002c,0x2000085,0x0085,0x0085,0x085,0xfff diff --git a/libc/sysv/consts/__NR_sendto_nocancel.S b/libc/sysv/consts/__NR_sendto_nocancel.S index f663864d..aac1058e 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.internal.h" -.syscon nr,__NR_sendto_nocancel,-1,0x200019d,-1,-1,-1,-1 +.syscon nr,__NR_sendto_nocancel,0xfff,0x200019d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_set_mempolicy.S b/libc/sysv/consts/__NR_set_mempolicy.S index 4e182f73..1b553e05 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.internal.h" -.syscon nr,__NR_set_mempolicy,0x00ee,-1,-1,-1,-1,-1 +.syscon nr,__NR_set_mempolicy,0x00ee,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_set_robust_list.S b/libc/sysv/consts/__NR_set_robust_list.S index 735687c7..039210c5 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.internal.h" -.syscon nr,__NR_set_robust_list,0x0111,-1,-1,-1,-1,-1 +.syscon nr,__NR_set_robust_list,0x0111,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_set_tcb.S b/libc/sysv/consts/__NR_set_tcb.S index b7255fcd..70a3cb95 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.internal.h" -.syscon nr,__NR_set_tcb,-1,-1,-1,0x0149,-1,-1 +.syscon nr,__NR_set_tcb,0xfff,0xfff,0xfff,0x0149,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_set_tid_address.S b/libc/sysv/consts/__NR_set_tid_address.S index 862ce412..b629f491 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.internal.h" -.syscon nr,__NR_set_tid_address,0x00da,-1,-1,-1,-1,-1 +.syscon nr,__NR_set_tid_address,0x00da,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setattrlist.S b/libc/sysv/consts/__NR_setattrlist.S index fb81bc0b..933f9f67 100644 --- a/libc/sysv/consts/__NR_setattrlist.S +++ b/libc/sysv/consts/__NR_setattrlist.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setattrlist,-1,0x20000dd,-1,-1,-1,-1 +.syscon nr,__NR_setattrlist,0xfff,0x20000dd,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setattrlistat.S b/libc/sysv/consts/__NR_setattrlistat.S index b5e083e7..7a2cc34a 100644 --- a/libc/sysv/consts/__NR_setattrlistat.S +++ b/libc/sysv/consts/__NR_setattrlistat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setattrlistat,-1,0x200020c,-1,-1,-1,-1 +.syscon nr,__NR_setattrlistat,0xfff,0x200020c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setaudit.S b/libc/sysv/consts/__NR_setaudit.S index 257ce861..4af3a95b 100644 --- a/libc/sysv/consts/__NR_setaudit.S +++ b/libc/sysv/consts/__NR_setaudit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setaudit,-1,-1,0x01c2,-1,-1,-1 +.syscon nr,__NR_setaudit,0xfff,0xfff,0x01c2,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setaudit_addr.S b/libc/sysv/consts/__NR_setaudit_addr.S index 7b0329d5..a7c76d21 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.internal.h" -.syscon nr,__NR_setaudit_addr,-1,0x2000166,0x01c4,-1,-1,-1 +.syscon nr,__NR_setaudit_addr,0xfff,0x2000166,0x01c4,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setauid.S b/libc/sysv/consts/__NR_setauid.S index cd3919d9..32bf66d3 100644 --- a/libc/sysv/consts/__NR_setauid.S +++ b/libc/sysv/consts/__NR_setauid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setauid,-1,0x2000162,0x01c0,-1,-1,-1 +.syscon nr,__NR_setauid,0xfff,0x2000162,0x01c0,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setcontext.S b/libc/sysv/consts/__NR_setcontext.S index 58ba4bfb..a7b15677 100644 --- a/libc/sysv/consts/__NR_setcontext.S +++ b/libc/sysv/consts/__NR_setcontext.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setcontext,-1,-1,0x01a6,-1,0x134,-1 +.syscon nr,__NR_setcontext,0xfff,0xfff,0x01a6,0xfff,0x134,0xfff diff --git a/libc/sysv/consts/__NR_setdomainname.S b/libc/sysv/consts/__NR_setdomainname.S index cfda3d87..11d98d4f 100644 --- a/libc/sysv/consts/__NR_setdomainname.S +++ b/libc/sysv/consts/__NR_setdomainname.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setdomainname,0x00ab,-1,0x00a3,-1,-1,-1 +.syscon nr,__NR_setdomainname,0x00ab,0xfff,0x00a3,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setegid.S b/libc/sysv/consts/__NR_setegid.S index 59568bff..684291b6 100644 --- a/libc/sysv/consts/__NR_setegid.S +++ b/libc/sysv/consts/__NR_setegid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setegid,-1,0x20000b6,0x00b6,0x00b6,-1,-1 +.syscon nr,__NR_setegid,0xfff,0x20000b6,0x00b6,0x00b6,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_seteuid.S b/libc/sysv/consts/__NR_seteuid.S index 583f892f..7b6d092e 100644 --- a/libc/sysv/consts/__NR_seteuid.S +++ b/libc/sysv/consts/__NR_seteuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_seteuid,-1,0x20000b7,0x00b7,0x00b7,-1,-1 +.syscon nr,__NR_seteuid,0xfff,0x20000b7,0x00b7,0x00b7,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setfib.S b/libc/sysv/consts/__NR_setfib.S index b66fef2f..4e17c289 100644 --- a/libc/sysv/consts/__NR_setfib.S +++ b/libc/sysv/consts/__NR_setfib.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setfib,-1,-1,0x00af,-1,-1,-1 +.syscon nr,__NR_setfib,0xfff,0xfff,0x00af,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setfsgid.S b/libc/sysv/consts/__NR_setfsgid.S index 19e00555..8ff1bc11 100644 --- a/libc/sysv/consts/__NR_setfsgid.S +++ b/libc/sysv/consts/__NR_setfsgid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setfsgid,0x007b,-1,-1,-1,-1,-1 +.syscon nr,__NR_setfsgid,0x007b,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setfsuid.S b/libc/sysv/consts/__NR_setfsuid.S index 4ceb05e3..ef6f8c3f 100644 --- a/libc/sysv/consts/__NR_setfsuid.S +++ b/libc/sysv/consts/__NR_setfsuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setfsuid,0x007a,-1,-1,-1,-1,-1 +.syscon nr,__NR_setfsuid,0x007a,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setgid.S b/libc/sysv/consts/__NR_setgid.S index 2a6fe68d..666daa06 100644 --- a/libc/sysv/consts/__NR_setgid.S +++ b/libc/sysv/consts/__NR_setgid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setgid,0x006a,0x20000b5,0x00b5,0x00b5,0x0b5,-1 +.syscon nr,__NR_setgid,0x006a,0x20000b5,0x00b5,0x00b5,0x0b5,0xfff diff --git a/libc/sysv/consts/__NR_setgroups.S b/libc/sysv/consts/__NR_setgroups.S index 155d6686..704e52e3 100644 --- a/libc/sysv/consts/__NR_setgroups.S +++ b/libc/sysv/consts/__NR_setgroups.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setgroups,0x0074,0x2000050,0x0050,0x0050,0x050,-1 +.syscon nr,__NR_setgroups,0x0074,0x2000050,0x0050,0x0050,0x050,0xfff diff --git a/libc/sysv/consts/__NR_sethostid.S b/libc/sysv/consts/__NR_sethostid.S index 914438de..5f00d610 100644 --- a/libc/sysv/consts/__NR_sethostid.S +++ b/libc/sysv/consts/__NR_sethostid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sethostid,-1,-1,0x008f,-1,-1,-1 +.syscon nr,__NR_sethostid,0xfff,0xfff,0x008f,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sethostname.S b/libc/sysv/consts/__NR_sethostname.S index 1b9f8a1d..fa1ada18 100644 --- a/libc/sysv/consts/__NR_sethostname.S +++ b/libc/sysv/consts/__NR_sethostname.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sethostname,0x00aa,-1,0x0058,-1,-1,-1 +.syscon nr,__NR_sethostname,0x00aa,0xfff,0x0058,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setitimer.S b/libc/sysv/consts/__NR_setitimer.S index adf836e8..3bbed59a 100644 --- a/libc/sysv/consts/__NR_setitimer.S +++ b/libc/sysv/consts/__NR_setitimer.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setitimer,0x0026,0x2000053,0x0053,0x0045,0x1a9,-1 +.syscon nr,__NR_setitimer,0x0026,0x2000053,0x0053,0x0045,0x1a9,0xfff diff --git a/libc/sysv/consts/__NR_setlogin.S b/libc/sysv/consts/__NR_setlogin.S index 94372567..c611abf2 100644 --- a/libc/sysv/consts/__NR_setlogin.S +++ b/libc/sysv/consts/__NR_setlogin.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setlogin,-1,0x2000032,0x0032,0x0032,-1,-1 +.syscon nr,__NR_setlogin,0xfff,0x2000032,0x0032,0x0032,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setloginclass.S b/libc/sysv/consts/__NR_setloginclass.S index b4a56acd..788ecfe2 100644 --- a/libc/sysv/consts/__NR_setloginclass.S +++ b/libc/sysv/consts/__NR_setloginclass.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setloginclass,-1,-1,0x020c,-1,-1,-1 +.syscon nr,__NR_setloginclass,0xfff,0xfff,0x020c,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setns.S b/libc/sysv/consts/__NR_setns.S index dd815011..8247faa7 100644 --- a/libc/sysv/consts/__NR_setns.S +++ b/libc/sysv/consts/__NR_setns.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setns,0x0134,-1,-1,-1,-1,-1 +.syscon nr,__NR_setns,0x0134,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setpgid.S b/libc/sysv/consts/__NR_setpgid.S index 7f16059d..5ae0d9d6 100644 --- a/libc/sysv/consts/__NR_setpgid.S +++ b/libc/sysv/consts/__NR_setpgid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setpgid,0x006d,0x2000052,0x0052,0x0052,0x052,-1 +.syscon nr,__NR_setpgid,0x006d,0x2000052,0x0052,0x0052,0x052,0xfff diff --git a/libc/sysv/consts/__NR_setpriority.S b/libc/sysv/consts/__NR_setpriority.S index f1987e18..e40ecad9 100644 --- a/libc/sysv/consts/__NR_setpriority.S +++ b/libc/sysv/consts/__NR_setpriority.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setpriority,0x008d,0x2000060,0x0060,0x0060,0x060,-1 +.syscon nr,__NR_setpriority,0x008d,0x2000060,0x0060,0x0060,0x060,0xfff diff --git a/libc/sysv/consts/__NR_setprivexec.S b/libc/sysv/consts/__NR_setprivexec.S index 8cd0aa7c..98cf6a4e 100644 --- a/libc/sysv/consts/__NR_setprivexec.S +++ b/libc/sysv/consts/__NR_setprivexec.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setprivexec,-1,0x2000098,-1,-1,-1,-1 +.syscon nr,__NR_setprivexec,0xfff,0x2000098,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setregid.S b/libc/sysv/consts/__NR_setregid.S index f61a350d..ddea4720 100644 --- a/libc/sysv/consts/__NR_setregid.S +++ b/libc/sysv/consts/__NR_setregid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setregid,0x0072,0x200007f,0x007f,0x007f,0x07f,-1 +.syscon nr,__NR_setregid,0x0072,0x200007f,0x007f,0x007f,0x07f,0xfff diff --git a/libc/sysv/consts/__NR_setresgid.S b/libc/sysv/consts/__NR_setresgid.S index b5a79363..2c48d19e 100644 --- a/libc/sysv/consts/__NR_setresgid.S +++ b/libc/sysv/consts/__NR_setresgid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setresgid,0x0077,-1,0x0138,0x011c,-1,-1 +.syscon nr,__NR_setresgid,0x0077,0xfff,0x0138,0x011c,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setresuid.S b/libc/sysv/consts/__NR_setresuid.S index 9f2ae1d0..bf0ff214 100644 --- a/libc/sysv/consts/__NR_setresuid.S +++ b/libc/sysv/consts/__NR_setresuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setresuid,0x0075,-1,0x0137,0x011a,-1,-1 +.syscon nr,__NR_setresuid,0x0075,0xfff,0x0137,0x011a,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setreuid.S b/libc/sysv/consts/__NR_setreuid.S index d500abdb..3ef780df 100644 --- a/libc/sysv/consts/__NR_setreuid.S +++ b/libc/sysv/consts/__NR_setreuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setreuid,0x0071,0x200007e,0x007e,0x007e,0x07e,-1 +.syscon nr,__NR_setreuid,0x0071,0x200007e,0x007e,0x007e,0x07e,0xfff diff --git a/libc/sysv/consts/__NR_setrlimit.S b/libc/sysv/consts/__NR_setrlimit.S index b62321d2..9bf4a773 100644 --- a/libc/sysv/consts/__NR_setrlimit.S +++ b/libc/sysv/consts/__NR_setrlimit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setrlimit,0x00a0,0x20000c3,0x00c3,0x00c3,0x0c3,-1 +.syscon nr,__NR_setrlimit,0x00a0,0x20000c3,0x00c3,0x00c3,0x0c3,0xfff diff --git a/libc/sysv/consts/__NR_setrtable.S b/libc/sysv/consts/__NR_setrtable.S index 5f37ed39..105e134b 100644 --- a/libc/sysv/consts/__NR_setrtable.S +++ b/libc/sysv/consts/__NR_setrtable.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setrtable,-1,-1,-1,0x0136,-1,-1 +.syscon nr,__NR_setrtable,0xfff,0xfff,0xfff,0x0136,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setsgroups.S b/libc/sysv/consts/__NR_setsgroups.S index e67650e8..3cccb802 100644 --- a/libc/sysv/consts/__NR_setsgroups.S +++ b/libc/sysv/consts/__NR_setsgroups.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setsgroups,-1,0x200011f,-1,-1,-1,-1 +.syscon nr,__NR_setsgroups,0xfff,0x200011f,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setsid.S b/libc/sysv/consts/__NR_setsid.S index 37a29c1f..314e7d4b 100644 --- a/libc/sysv/consts/__NR_setsid.S +++ b/libc/sysv/consts/__NR_setsid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setsid,0x0070,0x2000093,0x0093,0x0093,0x093,-1 +.syscon nr,__NR_setsid,0x0070,0x2000093,0x0093,0x0093,0x093,0xfff diff --git a/libc/sysv/consts/__NR_setsockopt.S b/libc/sysv/consts/__NR_setsockopt.S index 506f94d4..1c408973 100644 --- a/libc/sysv/consts/__NR_setsockopt.S +++ b/libc/sysv/consts/__NR_setsockopt.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setsockopt,0x0036,0x2000069,0x0069,0x0069,0x069,-1 +.syscon nr,__NR_setsockopt,0x0036,0x2000069,0x0069,0x0069,0x069,0xfff diff --git a/libc/sysv/consts/__NR_settid.S b/libc/sysv/consts/__NR_settid.S index 4f25cb52..a503d110 100644 --- a/libc/sysv/consts/__NR_settid.S +++ b/libc/sysv/consts/__NR_settid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_settid,-1,0x200011d,-1,-1,-1,-1 +.syscon nr,__NR_settid,0xfff,0x200011d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_settid_with_pid.S b/libc/sysv/consts/__NR_settid_with_pid.S index aa19be42..7eac35fd 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.internal.h" -.syscon nr,__NR_settid_with_pid,-1,0x2000137,-1,-1,-1,-1 +.syscon nr,__NR_settid_with_pid,0xfff,0x2000137,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_settimeofday.S b/libc/sysv/consts/__NR_settimeofday.S index 064be808..84a6acfa 100644 --- a/libc/sysv/consts/__NR_settimeofday.S +++ b/libc/sysv/consts/__NR_settimeofday.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_settimeofday,0x00a4,0x200007a,0x007a,0x0044,0x1a3,-1 +.syscon nr,__NR_settimeofday,0x00a4,0x200007a,0x007a,0x0044,0x1a3,0xfff diff --git a/libc/sysv/consts/__NR_setugid.S b/libc/sysv/consts/__NR_setugid.S index 4ba58462..bff48880 100644 --- a/libc/sysv/consts/__NR_setugid.S +++ b/libc/sysv/consts/__NR_setugid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setugid,-1,-1,0x0176,-1,-1,-1 +.syscon nr,__NR_setugid,0xfff,0xfff,0x0176,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setuid.S b/libc/sysv/consts/__NR_setuid.S index 15662212..65c3c786 100644 --- a/libc/sysv/consts/__NR_setuid.S +++ b/libc/sysv/consts/__NR_setuid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setuid,0x0069,0x2000017,0x0017,0x0017,0x017,-1 +.syscon nr,__NR_setuid,0x0069,0x2000017,0x0017,0x0017,0x017,0xfff diff --git a/libc/sysv/consts/__NR_setwgroups.S b/libc/sysv/consts/__NR_setwgroups.S index 6c088a5c..8eba918a 100644 --- a/libc/sysv/consts/__NR_setwgroups.S +++ b/libc/sysv/consts/__NR_setwgroups.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setwgroups,-1,0x2000121,-1,-1,-1,-1 +.syscon nr,__NR_setwgroups,0xfff,0x2000121,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_setxattr.S b/libc/sysv/consts/__NR_setxattr.S index 45055d3c..0cbf44b6 100644 --- a/libc/sysv/consts/__NR_setxattr.S +++ b/libc/sysv/consts/__NR_setxattr.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_setxattr,0x00bc,0x20000ec,-1,-1,0x177,-1 +.syscon nr,__NR_setxattr,0x00bc,0x20000ec,0xfff,0xfff,0x177,0xfff diff --git a/libc/sysv/consts/__NR_sfi_ctl.S b/libc/sysv/consts/__NR_sfi_ctl.S index b233327e..a3fc48e0 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.internal.h" -.syscon nr,__NR_sfi_ctl,-1,0x20001c8,-1,-1,-1,-1 +.syscon nr,__NR_sfi_ctl,0xfff,0x20001c8,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sfi_pidctl.S b/libc/sysv/consts/__NR_sfi_pidctl.S index b135b93b..d0791508 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.internal.h" -.syscon nr,__NR_sfi_pidctl,-1,0x20001c9,-1,-1,-1,-1 +.syscon nr,__NR_sfi_pidctl,0xfff,0x20001c9,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_shared_region_check_np.S b/libc/sysv/consts/__NR_shared_region_check_np.S index f5e2f88e..df81c227 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.internal.h" -.syscon nr,__NR_shared_region_check_np,-1,0x2000126,-1,-1,-1,-1 +.syscon nr,__NR_shared_region_check_np,0xfff,0x2000126,0xfff,0xfff,0xfff,0xfff 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 1bb95892..2070082b 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.internal.h" -.syscon nr,__NR_shared_region_map_and_slide_np,-1,0x20001b6,-1,-1,-1,-1 +.syscon nr,__NR_shared_region_map_and_slide_np,0xfff,0x20001b6,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_shm_open.S b/libc/sysv/consts/__NR_shm_open.S index cc666558..d305b2cf 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.internal.h" -.syscon nr,__NR_shm_open,-1,0x200010a,0x01e2,-1,-1,-1 +.syscon nr,__NR_shm_open,0xfff,0x200010a,0x01e2,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_shm_unlink.S b/libc/sysv/consts/__NR_shm_unlink.S index a2bf8ea8..40b7f298 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.internal.h" -.syscon nr,__NR_shm_unlink,-1,0x200010b,0x01e3,-1,-1,-1 +.syscon nr,__NR_shm_unlink,0xfff,0x200010b,0x01e3,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_shmat.S b/libc/sysv/consts/__NR_shmat.S index 1652867d..d3285ec2 100644 --- a/libc/sysv/consts/__NR_shmat.S +++ b/libc/sysv/consts/__NR_shmat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_shmat,0x001e,0x2000106,0x00e4,0x00e4,0x0e4,-1 +.syscon nr,__NR_shmat,0x001e,0x2000106,0x00e4,0x00e4,0x0e4,0xfff diff --git a/libc/sysv/consts/__NR_shmctl.S b/libc/sysv/consts/__NR_shmctl.S index 30409088..7732a3f3 100644 --- a/libc/sysv/consts/__NR_shmctl.S +++ b/libc/sysv/consts/__NR_shmctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_shmctl,0x001f,0x2000107,0x0200,0x0128,0x1bb,-1 +.syscon nr,__NR_shmctl,0x001f,0x2000107,0x0200,0x0128,0x1bb,0xfff diff --git a/libc/sysv/consts/__NR_shmdt.S b/libc/sysv/consts/__NR_shmdt.S index 11a96744..ea401cd1 100644 --- a/libc/sysv/consts/__NR_shmdt.S +++ b/libc/sysv/consts/__NR_shmdt.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_shmdt,0x0043,0x2000108,0x00e6,0x00e6,0x0e6,-1 +.syscon nr,__NR_shmdt,0x0043,0x2000108,0x00e6,0x00e6,0x0e6,0xfff diff --git a/libc/sysv/consts/__NR_shmget.S b/libc/sysv/consts/__NR_shmget.S index a07e2342..c8189f23 100644 --- a/libc/sysv/consts/__NR_shmget.S +++ b/libc/sysv/consts/__NR_shmget.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_shmget,0x001d,0x2000109,0x00e7,0x0121,0x0e7,-1 +.syscon nr,__NR_shmget,0x001d,0x2000109,0x00e7,0x0121,0x0e7,0xfff diff --git a/libc/sysv/consts/__NR_shmsys.S b/libc/sysv/consts/__NR_shmsys.S index d299dddc..0df8a304 100644 --- a/libc/sysv/consts/__NR_shmsys.S +++ b/libc/sysv/consts/__NR_shmsys.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_shmsys,-1,0x20000fd,0x00ab,-1,-1,-1 +.syscon nr,__NR_shmsys,0xfff,0x20000fd,0x00ab,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_shutdown.S b/libc/sysv/consts/__NR_shutdown.S index b5131231..a84d5f58 100644 --- a/libc/sysv/consts/__NR_shutdown.S +++ b/libc/sysv/consts/__NR_shutdown.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_shutdown,0x0030,0x2000086,0x0086,0x0086,0x086,-1 +.syscon nr,__NR_shutdown,0x0030,0x2000086,0x0086,0x0086,0x086,0xfff diff --git a/libc/sysv/consts/__NR_sigaction.S b/libc/sysv/consts/__NR_sigaction.S index a91b8954..3859b606 100644 --- a/libc/sysv/consts/__NR_sigaction.S +++ b/libc/sysv/consts/__NR_sigaction.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigaction,0x000d,0x200002e,0x01a0,0x002e,0x154,-1 +.syscon nr,__NR_sigaction,0x000d,0x200002e,0x01a0,0x002e,0x154,0xfff diff --git a/libc/sysv/consts/__NR_sigaltstack.S b/libc/sysv/consts/__NR_sigaltstack.S index 734fa18d..9a0558e1 100644 --- a/libc/sysv/consts/__NR_sigaltstack.S +++ b/libc/sysv/consts/__NR_sigaltstack.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigaltstack,0x0083,0x2000035,0x0035,0x0120,0x119,-1 +.syscon nr,__NR_sigaltstack,0x0083,0x2000035,0x0035,0x0120,0x119,0xfff diff --git a/libc/sysv/consts/__NR_sigblock.S b/libc/sysv/consts/__NR_sigblock.S index bb696206..cc8d4aa0 100644 --- a/libc/sysv/consts/__NR_sigblock.S +++ b/libc/sysv/consts/__NR_sigblock.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigblock,-1,-1,0x006d,-1,-1,-1 +.syscon nr,__NR_sigblock,0xfff,0xfff,0x006d,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_signalfd.S b/libc/sysv/consts/__NR_signalfd.S index 7bfe0b9d..6e0440d9 100644 --- a/libc/sysv/consts/__NR_signalfd.S +++ b/libc/sysv/consts/__NR_signalfd.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_signalfd,0x011a,-1,-1,-1,-1,-1 +.syscon nr,__NR_signalfd,0x011a,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_signalfd4.S b/libc/sysv/consts/__NR_signalfd4.S index 1b815043..e81bcdcb 100644 --- a/libc/sysv/consts/__NR_signalfd4.S +++ b/libc/sysv/consts/__NR_signalfd4.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_signalfd4,0x0121,-1,-1,-1,-1,-1 +.syscon nr,__NR_signalfd4,0x0121,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigpending.S b/libc/sysv/consts/__NR_sigpending.S index b2ab0d9b..e9e2e55d 100644 --- a/libc/sysv/consts/__NR_sigpending.S +++ b/libc/sysv/consts/__NR_sigpending.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigpending,0x007f,0x2000034,0x0034,0x0034,0x124,-1 +.syscon nr,__NR_sigpending,0x007f,0x2000034,0x0034,0x0034,0x124,0xfff diff --git a/libc/sysv/consts/__NR_sigprocmask.S b/libc/sysv/consts/__NR_sigprocmask.S index 2a1dd867..5d2629fb 100644 --- a/libc/sysv/consts/__NR_sigprocmask.S +++ b/libc/sysv/consts/__NR_sigprocmask.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigprocmask,0x000e,0x2000030,0x0154,0x0030,0x125,-1 +.syscon nr,__NR_sigprocmask,0x000e,0x2000030,0x0154,0x0030,0x125,0xfff diff --git a/libc/sysv/consts/__NR_sigqueue.S b/libc/sysv/consts/__NR_sigqueue.S index 1808d470..4fda7f12 100644 --- a/libc/sysv/consts/__NR_sigqueue.S +++ b/libc/sysv/consts/__NR_sigqueue.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigqueue,-1,-1,0x01c8,-1,-1,-1 +.syscon nr,__NR_sigqueue,0xfff,0xfff,0x01c8,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigsetmask.S b/libc/sysv/consts/__NR_sigsetmask.S index 58180653..93975d95 100644 --- a/libc/sysv/consts/__NR_sigsetmask.S +++ b/libc/sysv/consts/__NR_sigsetmask.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigsetmask,-1,-1,0x006e,-1,-1,-1 +.syscon nr,__NR_sigsetmask,0xfff,0xfff,0x006e,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigstack.S b/libc/sysv/consts/__NR_sigstack.S index 9661abdf..57e0060f 100644 --- a/libc/sysv/consts/__NR_sigstack.S +++ b/libc/sysv/consts/__NR_sigstack.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigstack,-1,-1,0x0070,-1,-1,-1 +.syscon nr,__NR_sigstack,0xfff,0xfff,0x0070,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigsuspend.S b/libc/sysv/consts/__NR_sigsuspend.S index 25b9a1fb..b8d5acbd 100644 --- a/libc/sysv/consts/__NR_sigsuspend.S +++ b/libc/sysv/consts/__NR_sigsuspend.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigsuspend,0x0082,0x200006f,0x0155,0x006f,0x126,-1 +.syscon nr,__NR_sigsuspend,0x0082,0x200006f,0x0155,0x006f,0x126,0xfff diff --git a/libc/sysv/consts/__NR_sigsuspend_nocancel.S b/libc/sysv/consts/__NR_sigsuspend_nocancel.S index 388ae662..8a0e4f4e 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.internal.h" -.syscon nr,__NR_sigsuspend_nocancel,-1,0x200019a,-1,-1,-1,-1 +.syscon nr,__NR_sigsuspend_nocancel,0xfff,0x200019a,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigtimedwait.S b/libc/sysv/consts/__NR_sigtimedwait.S index c1c1c7d1..6e5f76ee 100644 --- a/libc/sysv/consts/__NR_sigtimedwait.S +++ b/libc/sysv/consts/__NR_sigtimedwait.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigtimedwait,0x0080,-1,0x0159,-1,-1,-1 +.syscon nr,__NR_sigtimedwait,0x0080,0xfff,0x0159,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigvec.S b/libc/sysv/consts/__NR_sigvec.S index fbbf5c9f..9e06c656 100644 --- a/libc/sysv/consts/__NR_sigvec.S +++ b/libc/sysv/consts/__NR_sigvec.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigvec,-1,-1,0x006c,-1,-1,-1 +.syscon nr,__NR_sigvec,0xfff,0xfff,0x006c,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigwait.S b/libc/sysv/consts/__NR_sigwait.S index 5134fe8f..0565054d 100644 --- a/libc/sysv/consts/__NR_sigwait.S +++ b/libc/sysv/consts/__NR_sigwait.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigwait,-1,0x200014a,0x01ad,-1,-1,-1 +.syscon nr,__NR_sigwait,0xfff,0x200014a,0x01ad,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigwait_nocancel.S b/libc/sysv/consts/__NR_sigwait_nocancel.S index 8c319fc9..4b45521a 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.internal.h" -.syscon nr,__NR_sigwait_nocancel,-1,0x20001a6,-1,-1,-1,-1 +.syscon nr,__NR_sigwait_nocancel,0xfff,0x20001a6,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sigwaitinfo.S b/libc/sysv/consts/__NR_sigwaitinfo.S index 780544d6..d1b7f952 100644 --- a/libc/sysv/consts/__NR_sigwaitinfo.S +++ b/libc/sysv/consts/__NR_sigwaitinfo.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sigwaitinfo,-1,-1,0x015a,-1,-1,-1 +.syscon nr,__NR_sigwaitinfo,0xfff,0xfff,0x015a,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_socket.S b/libc/sysv/consts/__NR_socket.S index 9e0e01c0..892f0175 100644 --- a/libc/sysv/consts/__NR_socket.S +++ b/libc/sysv/consts/__NR_socket.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_socket,0x0029,0x2000061,0x0061,0x0061,0x18a,-1 +.syscon nr,__NR_socket,0x0029,0x2000061,0x0061,0x0061,0x18a,0xfff diff --git a/libc/sysv/consts/__NR_socket_delegate.S b/libc/sysv/consts/__NR_socket_delegate.S index e9f3a236..26f854eb 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.internal.h" -.syscon nr,__NR_socket_delegate,-1,0x20001c2,-1,-1,-1,-1 +.syscon nr,__NR_socket_delegate,0xfff,0x20001c2,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_socketpair.S b/libc/sysv/consts/__NR_socketpair.S index 97fe589e..73cbc07e 100644 --- a/libc/sysv/consts/__NR_socketpair.S +++ b/libc/sysv/consts/__NR_socketpair.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_socketpair,0x0035,0x2000087,0x0087,0x0087,0x087,-1 +.syscon nr,__NR_socketpair,0x0035,0x2000087,0x0087,0x0087,0x087,0xfff diff --git a/libc/sysv/consts/__NR_splice.S b/libc/sysv/consts/__NR_splice.S index c89f1f68..13633ec7 100644 --- a/libc/sysv/consts/__NR_splice.S +++ b/libc/sysv/consts/__NR_splice.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_splice,0x0113,-1,-1,-1,-1,-1 +.syscon nr,__NR_splice,0x0113,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sstk.S b/libc/sysv/consts/__NR_sstk.S index 74f5aba1..75da6cae 100644 --- a/libc/sysv/consts/__NR_sstk.S +++ b/libc/sysv/consts/__NR_sstk.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sstk,-1,-1,0x0046,-1,-1,-1 +.syscon nr,__NR_sstk,0xfff,0xfff,0x0046,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_stack_snapshot_with_config.S b/libc/sysv/consts/__NR_stack_snapshot_with_config.S index ace50de6..455b38e5 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.internal.h" -.syscon nr,__NR_stack_snapshot_with_config,-1,0x20001eb,-1,-1,-1,-1 +.syscon nr,__NR_stack_snapshot_with_config,0xfff,0x20001eb,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_stat.S b/libc/sysv/consts/__NR_stat.S index 677bde6e..7bd900d3 100644 --- a/libc/sysv/consts/__NR_stat.S +++ b/libc/sysv/consts/__NR_stat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_stat,0x0004,0x2000152,-1,0x0026,0x1b7,-1 +.syscon nr,__NR_stat,0x0004,0x2000152,0xfff,0x0026,0x1b7,0xfff diff --git a/libc/sysv/consts/__NR_stat_extended.S b/libc/sysv/consts/__NR_stat_extended.S index fde666c7..b2fb45bc 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.internal.h" -.syscon nr,__NR_stat_extended,-1,0x2000155,-1,-1,-1,-1 +.syscon nr,__NR_stat_extended,0xfff,0x2000155,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_statfs.S b/libc/sysv/consts/__NR_statfs.S index 22b53ca6..4faec40b 100644 --- a/libc/sysv/consts/__NR_statfs.S +++ b/libc/sysv/consts/__NR_statfs.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_statfs,0x0089,0x2000159,0x022b,0x003f,-1,-1 +.syscon nr,__NR_statfs,0x0089,0x2000159,0x022b,0x003f,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_statx.S b/libc/sysv/consts/__NR_statx.S index e75fb278..499c771d 100644 --- a/libc/sysv/consts/__NR_statx.S +++ b/libc/sysv/consts/__NR_statx.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_statx,0x014c,-1,-1,-1,-1,-1 +.syscon nr,__NR_statx,0x014c,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_swapcontext.S b/libc/sysv/consts/__NR_swapcontext.S index 612248ce..be61d0a7 100644 --- a/libc/sysv/consts/__NR_swapcontext.S +++ b/libc/sysv/consts/__NR_swapcontext.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_swapcontext,-1,-1,0x01a7,-1,-1,-1 +.syscon nr,__NR_swapcontext,0xfff,0xfff,0x01a7,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_swapctl.S b/libc/sysv/consts/__NR_swapctl.S index 556194a5..c5ff5aff 100644 --- a/libc/sysv/consts/__NR_swapctl.S +++ b/libc/sysv/consts/__NR_swapctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_swapctl,-1,-1,-1,0x00c1,0x10f,-1 +.syscon nr,__NR_swapctl,0xfff,0xfff,0xfff,0x00c1,0x10f,0xfff diff --git a/libc/sysv/consts/__NR_swapoff.S b/libc/sysv/consts/__NR_swapoff.S index 7f6a4919..841b5455 100644 --- a/libc/sysv/consts/__NR_swapoff.S +++ b/libc/sysv/consts/__NR_swapoff.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_swapoff,0x00a8,-1,0x01a8,-1,-1,-1 +.syscon nr,__NR_swapoff,0x00a8,0xfff,0x01a8,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_swapon.S b/libc/sysv/consts/__NR_swapon.S index 6e1d7b63..b717aceb 100644 --- a/libc/sysv/consts/__NR_swapon.S +++ b/libc/sysv/consts/__NR_swapon.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_swapon,0x00a7,0x2000055,0x0055,-1,-1,-1 +.syscon nr,__NR_swapon,0x00a7,0x2000055,0x0055,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_symlink.S b/libc/sysv/consts/__NR_symlink.S index 18773623..6cd47eaf 100644 --- a/libc/sysv/consts/__NR_symlink.S +++ b/libc/sysv/consts/__NR_symlink.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_symlink,0x0058,0x2000039,0x0039,0x0039,0x039,-1 +.syscon nr,__NR_symlink,0x0058,0x2000039,0x0039,0x0039,0x039,0xfff diff --git a/libc/sysv/consts/__NR_symlinkat.S b/libc/sysv/consts/__NR_symlinkat.S index 3e2b7f1e..fc5fa8bc 100644 --- a/libc/sysv/consts/__NR_symlinkat.S +++ b/libc/sysv/consts/__NR_symlinkat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_symlinkat,0x010a,0x20001da,0x01f6,0x0144,0x1d6,-1 +.syscon nr,__NR_symlinkat,0x010a,0x20001da,0x01f6,0x0144,0x1d6,0xfff diff --git a/libc/sysv/consts/__NR_sync.S b/libc/sysv/consts/__NR_sync.S index 6f047de9..a8d872ea 100644 --- a/libc/sysv/consts/__NR_sync.S +++ b/libc/sysv/consts/__NR_sync.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sync,0x00a2,0x2000024,0x0024,0x0024,-1,-1 +.syscon nr,__NR_sync,0x00a2,0x2000024,0x0024,0x0024,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sync_file_range.S b/libc/sysv/consts/__NR_sync_file_range.S index be7229ed..f8856e2c 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.internal.h" -.syscon nr,__NR_sync_file_range,0x0115,-1,-1,-1,-1,-1 +.syscon nr,__NR_sync_file_range,0x0115,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_syncfs.S b/libc/sysv/consts/__NR_syncfs.S index 856dc029..c61d1e3c 100644 --- a/libc/sysv/consts/__NR_syncfs.S +++ b/libc/sysv/consts/__NR_syncfs.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_syncfs,0x0132,-1,-1,-1,-1,-1 +.syscon nr,__NR_syncfs,0x0132,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_syscall.S b/libc/sysv/consts/__NR_syscall.S index 5a36232d..c482d23c 100644 --- a/libc/sysv/consts/__NR_syscall.S +++ b/libc/sysv/consts/__NR_syscall.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_syscall,-1,-1,-1,0x00c6,-1,-1 +.syscon nr,__NR_syscall,0xfff,0xfff,0xfff,0x00c6,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sysctl.S b/libc/sysv/consts/__NR_sysctl.S index ae4e0028..541f3b69 100644 --- a/libc/sysv/consts/__NR_sysctl.S +++ b/libc/sysv/consts/__NR_sysctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sysctl,-1,0x20000ca,-1,0x00ca,0x0ca,-1 +.syscon nr,__NR_sysctl,0xfff,0x20000ca,0xfff,0x00ca,0x0ca,0xfff diff --git a/libc/sysv/consts/__NR_sysctlbyname.S b/libc/sysv/consts/__NR_sysctlbyname.S index 4fae2f87..9b56e643 100644 --- a/libc/sysv/consts/__NR_sysctlbyname.S +++ b/libc/sysv/consts/__NR_sysctlbyname.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sysctlbyname,-1,0x2000112,-1,-1,-1,-1 +.syscon nr,__NR_sysctlbyname,0xfff,0x2000112,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sysfs.S b/libc/sysv/consts/__NR_sysfs.S index a98b3e7f..f2d8a902 100644 --- a/libc/sysv/consts/__NR_sysfs.S +++ b/libc/sysv/consts/__NR_sysfs.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sysfs,0x008b,-1,-1,-1,-1,-1 +.syscon nr,__NR_sysfs,0x008b,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_sysinfo.S b/libc/sysv/consts/__NR_sysinfo.S index 07e0c772..1e993b22 100644 --- a/libc/sysv/consts/__NR_sysinfo.S +++ b/libc/sysv/consts/__NR_sysinfo.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_sysinfo,0x0063,-1,-1,-1,-1,-1 +.syscon nr,__NR_sysinfo,0x0063,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_syslog.S b/libc/sysv/consts/__NR_syslog.S index c0862574..bd7110ff 100644 --- a/libc/sysv/consts/__NR_syslog.S +++ b/libc/sysv/consts/__NR_syslog.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_syslog,0x0067,-1,-1,-1,-1,-1 +.syscon nr,__NR_syslog,0x0067,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_system_override.S b/libc/sysv/consts/__NR_system_override.S index a8cec6ee..9bfe6ba0 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.internal.h" -.syscon nr,__NR_system_override,-1,0x20001c6,-1,-1,-1,-1 +.syscon nr,__NR_system_override,0xfff,0x20001c6,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_tee.S b/libc/sysv/consts/__NR_tee.S index 0f8798c3..f806ba40 100644 --- a/libc/sysv/consts/__NR_tee.S +++ b/libc/sysv/consts/__NR_tee.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_tee,0x0114,-1,-1,-1,-1,-1 +.syscon nr,__NR_tee,0x0114,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_telemetry.S b/libc/sysv/consts/__NR_telemetry.S index 6a5b4dc6..903fd052 100644 --- a/libc/sysv/consts/__NR_telemetry.S +++ b/libc/sysv/consts/__NR_telemetry.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_telemetry,-1,0x20001c3,-1,-1,-1,-1 +.syscon nr,__NR_telemetry,0xfff,0x20001c3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_terminate_with_payload.S b/libc/sysv/consts/__NR_terminate_with_payload.S index e23f3224..05da8ac4 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.internal.h" -.syscon nr,__NR_terminate_with_payload,-1,0x2000208,-1,-1,-1,-1 +.syscon nr,__NR_terminate_with_payload,0xfff,0x2000208,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_tfork.S b/libc/sysv/consts/__NR_tfork.S index 8d45c951..6d8d6487 100644 --- a/libc/sysv/consts/__NR_tfork.S +++ b/libc/sysv/consts/__NR_tfork.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_tfork,-1,-1,-1,0x0008,-1,-1 +.syscon nr,__NR_tfork,0xfff,0xfff,0xfff,0x0008,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_tgkill.S b/libc/sysv/consts/__NR_tgkill.S index 1f23a20a..06423f7a 100644 --- a/libc/sysv/consts/__NR_tgkill.S +++ b/libc/sysv/consts/__NR_tgkill.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_tgkill,0x00ea,-1,-1,-1,-1,-1 +.syscon nr,__NR_tgkill,0x00ea,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_create.S b/libc/sysv/consts/__NR_thr_create.S index a4ac6b54..578761c5 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.internal.h" -.syscon nr,__NR_thr_create,-1,-1,0x01ae,-1,-1,-1 +.syscon nr,__NR_thr_create,0xfff,0xfff,0x01ae,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_exit.S b/libc/sysv/consts/__NR_thr_exit.S index c8b76427..c5c2e699 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.internal.h" -.syscon nr,__NR_thr_exit,-1,-1,0x01af,-1,-1,-1 +.syscon nr,__NR_thr_exit,0xfff,0xfff,0x01af,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_kill.S b/libc/sysv/consts/__NR_thr_kill.S index 21dd264e..6c1b7ca9 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.internal.h" -.syscon nr,__NR_thr_kill,-1,-1,0x01b1,-1,-1,-1 +.syscon nr,__NR_thr_kill,0xfff,0xfff,0x01b1,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_kill2.S b/libc/sysv/consts/__NR_thr_kill2.S index b3cff896..00e9849d 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.internal.h" -.syscon nr,__NR_thr_kill2,-1,-1,0x01e1,-1,-1,-1 +.syscon nr,__NR_thr_kill2,0xfff,0xfff,0x01e1,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_new.S b/libc/sysv/consts/__NR_thr_new.S index 9218786d..f985797f 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.internal.h" -.syscon nr,__NR_thr_new,-1,-1,0x01c7,-1,-1,-1 +.syscon nr,__NR_thr_new,0xfff,0xfff,0x01c7,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_self.S b/libc/sysv/consts/__NR_thr_self.S index 8d672b41..53c298d2 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.internal.h" -.syscon nr,__NR_thr_self,-1,-1,0x01b0,-1,-1,-1 +.syscon nr,__NR_thr_self,0xfff,0xfff,0x01b0,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_set_name.S b/libc/sysv/consts/__NR_thr_set_name.S index af9e09ca..3421d2d7 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.internal.h" -.syscon nr,__NR_thr_set_name,-1,-1,0x01d0,-1,-1,-1 +.syscon nr,__NR_thr_set_name,0xfff,0xfff,0x01d0,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_suspend.S b/libc/sysv/consts/__NR_thr_suspend.S index 9069da73..527d493f 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.internal.h" -.syscon nr,__NR_thr_suspend,-1,-1,0x01ba,-1,-1,-1 +.syscon nr,__NR_thr_suspend,0xfff,0xfff,0x01ba,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thr_wake.S b/libc/sysv/consts/__NR_thr_wake.S index 3f3b9c42..0d0cfd88 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.internal.h" -.syscon nr,__NR_thr_wake,-1,-1,0x01bb,-1,-1,-1 +.syscon nr,__NR_thr_wake,0xfff,0xfff,0x01bb,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thread_selfcounts.S b/libc/sysv/consts/__NR_thread_selfcounts.S index add24739..443f9945 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.internal.h" -.syscon nr,__NR_thread_selfcounts,-1,0x20000ba,-1,-1,-1,-1 +.syscon nr,__NR_thread_selfcounts,0xfff,0x20000ba,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thread_selfid.S b/libc/sysv/consts/__NR_thread_selfid.S index 87c981cf..15c3d7dc 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.internal.h" -.syscon nr,__NR_thread_selfid,-1,0x2000174,-1,-1,-1,-1 +.syscon nr,__NR_thread_selfid,0xfff,0x2000174,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thread_selfusage.S b/libc/sysv/consts/__NR_thread_selfusage.S index 10ab64ed..eb0dbcd6 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.internal.h" -.syscon nr,__NR_thread_selfusage,-1,0x20001e2,-1,-1,-1,-1 +.syscon nr,__NR_thread_selfusage,0xfff,0x20001e2,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_threxit.S b/libc/sysv/consts/__NR_threxit.S index 41ccf1b5..cd6c55b5 100644 --- a/libc/sysv/consts/__NR_threxit.S +++ b/libc/sysv/consts/__NR_threxit.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_threxit,-1,-1,-1,0x012e,-1,-1 +.syscon nr,__NR_threxit,0xfff,0xfff,0xfff,0x012e,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thrkill.S b/libc/sysv/consts/__NR_thrkill.S index 1bdf1003..3bcde547 100644 --- a/libc/sysv/consts/__NR_thrkill.S +++ b/libc/sysv/consts/__NR_thrkill.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_thrkill,-1,-1,-1,0x0077,-1,-1 +.syscon nr,__NR_thrkill,0xfff,0xfff,0xfff,0x0077,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thrsigdivert.S b/libc/sysv/consts/__NR_thrsigdivert.S index 0d8154b8..5b516866 100644 --- a/libc/sysv/consts/__NR_thrsigdivert.S +++ b/libc/sysv/consts/__NR_thrsigdivert.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_thrsigdivert,-1,-1,-1,0x012f,-1,-1 +.syscon nr,__NR_thrsigdivert,0xfff,0xfff,0xfff,0x012f,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thrsleep.S b/libc/sysv/consts/__NR_thrsleep.S index cbdf0778..08c755e1 100644 --- a/libc/sysv/consts/__NR_thrsleep.S +++ b/libc/sysv/consts/__NR_thrsleep.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_thrsleep,-1,-1,-1,0x005e,-1,-1 +.syscon nr,__NR_thrsleep,0xfff,0xfff,0xfff,0x005e,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_thrwakeup.S b/libc/sysv/consts/__NR_thrwakeup.S index 00a54e34..7a5df278 100644 --- a/libc/sysv/consts/__NR_thrwakeup.S +++ b/libc/sysv/consts/__NR_thrwakeup.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_thrwakeup,-1,-1,-1,0x012d,-1,-1 +.syscon nr,__NR_thrwakeup,0xfff,0xfff,0xfff,0x012d,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_timer_create.S b/libc/sysv/consts/__NR_timer_create.S index cc0ecfed..b03f2177 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.internal.h" -.syscon nr,__NR_timer_create,0x00de,-1,-1,-1,0x0eb,-1 +.syscon nr,__NR_timer_create,0x00de,0xfff,0xfff,0xfff,0x0eb,0xfff diff --git a/libc/sysv/consts/__NR_timer_delete.S b/libc/sysv/consts/__NR_timer_delete.S index 479a74fe..54b50bb6 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.internal.h" -.syscon nr,__NR_timer_delete,0x00e2,-1,-1,-1,0x0ec,-1 +.syscon nr,__NR_timer_delete,0x00e2,0xfff,0xfff,0xfff,0x0ec,0xfff diff --git a/libc/sysv/consts/__NR_timer_getoverrun.S b/libc/sysv/consts/__NR_timer_getoverrun.S index c26627e7..06fa92b8 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.internal.h" -.syscon nr,__NR_timer_getoverrun,0x00e1,-1,-1,-1,0x0ef,-1 +.syscon nr,__NR_timer_getoverrun,0x00e1,0xfff,0xfff,0xfff,0x0ef,0xfff diff --git a/libc/sysv/consts/__NR_timer_gettime.S b/libc/sysv/consts/__NR_timer_gettime.S index 24439746..f704972e 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.internal.h" -.syscon nr,__NR_timer_gettime,0x00e0,-1,-1,-1,0x1bf,-1 +.syscon nr,__NR_timer_gettime,0x00e0,0xfff,0xfff,0xfff,0x1bf,0xfff diff --git a/libc/sysv/consts/__NR_timer_settime.S b/libc/sysv/consts/__NR_timer_settime.S index 3eaae4f7..41f87761 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.internal.h" -.syscon nr,__NR_timer_settime,0x00df,-1,-1,-1,0x1be,-1 +.syscon nr,__NR_timer_settime,0x00df,0xfff,0xfff,0xfff,0x1be,0xfff diff --git a/libc/sysv/consts/__NR_timerfd_create.S b/libc/sysv/consts/__NR_timerfd_create.S index 273cbc54..3299c7b2 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.internal.h" -.syscon nr,__NR_timerfd_create,0x011b,-1,-1,-1,-1,-1 +.syscon nr,__NR_timerfd_create,0x011b,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_timerfd_gettime.S b/libc/sysv/consts/__NR_timerfd_gettime.S index ff7ea2a2..5672f03f 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.internal.h" -.syscon nr,__NR_timerfd_gettime,0x011f,-1,-1,-1,-1,-1 +.syscon nr,__NR_timerfd_gettime,0x011f,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_timerfd_settime.S b/libc/sysv/consts/__NR_timerfd_settime.S index c0143cac..f12543c9 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.internal.h" -.syscon nr,__NR_timerfd_settime,0x011e,-1,-1,-1,-1,-1 +.syscon nr,__NR_timerfd_settime,0x011e,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_times.S b/libc/sysv/consts/__NR_times.S index 483521ec..7b30b578 100644 --- a/libc/sysv/consts/__NR_times.S +++ b/libc/sysv/consts/__NR_times.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_times,0x0064,-1,-1,-1,-1,-1 +.syscon nr,__NR_times,0x0064,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_tkill.S b/libc/sysv/consts/__NR_tkill.S index 4b43f526..0f54ad09 100644 --- a/libc/sysv/consts/__NR_tkill.S +++ b/libc/sysv/consts/__NR_tkill.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_tkill,0x00c8,-1,-1,-1,-1,-1 +.syscon nr,__NR_tkill,0x00c8,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_truncate.S b/libc/sysv/consts/__NR_truncate.S index 770aaff3..6a054bbe 100644 --- a/libc/sysv/consts/__NR_truncate.S +++ b/libc/sysv/consts/__NR_truncate.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_truncate,0x004c,0x20000c8,0x01df,0x00c8,0x0c8,-1 +.syscon nr,__NR_truncate,0x004c,0x20000c8,0x01df,0x00c8,0x0c8,0xfff diff --git a/libc/sysv/consts/__NR_ulock_wait.S b/libc/sysv/consts/__NR_ulock_wait.S index d9ab7928..02486f5d 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.internal.h" -.syscon nr,__NR_ulock_wait,-1,0x2000203,-1,-1,-1,-1 +.syscon nr,__NR_ulock_wait,0xfff,0x2000203,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ulock_wake.S b/libc/sysv/consts/__NR_ulock_wake.S index eeb9c5de..86d9d89a 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.internal.h" -.syscon nr,__NR_ulock_wake,-1,0x2000204,-1,-1,-1,-1 +.syscon nr,__NR_ulock_wake,0xfff,0x2000204,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_umask.S b/libc/sysv/consts/__NR_umask.S index 7ac8293a..e2783953 100644 --- a/libc/sysv/consts/__NR_umask.S +++ b/libc/sysv/consts/__NR_umask.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_umask,0x005f,0x200003c,0x003c,0x003c,0x03c,-1 +.syscon nr,__NR_umask,0x005f,0x200003c,0x003c,0x003c,0x03c,0xfff diff --git a/libc/sysv/consts/__NR_umask_extended.S b/libc/sysv/consts/__NR_umask_extended.S index b415acfb..52f32ce0 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.internal.h" -.syscon nr,__NR_umask_extended,-1,0x2000116,-1,-1,-1,-1 +.syscon nr,__NR_umask_extended,0xfff,0x2000116,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_umount2.S b/libc/sysv/consts/__NR_umount2.S index e65d96bd..2cec1046 100644 --- a/libc/sysv/consts/__NR_umount2.S +++ b/libc/sysv/consts/__NR_umount2.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_umount2,0x00a6,-1,-1,-1,-1,-1 +.syscon nr,__NR_umount2,0x00a6,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_uname.S b/libc/sysv/consts/__NR_uname.S index 7c009388..dda2bef4 100644 --- a/libc/sysv/consts/__NR_uname.S +++ b/libc/sysv/consts/__NR_uname.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_uname,0x003f,-1,0x00a4,-1,-1,-1 +.syscon nr,__NR_uname,0x003f,0xfff,0x00a4,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_undelete.S b/libc/sysv/consts/__NR_undelete.S index 62fdd1b6..c8e754e7 100644 --- a/libc/sysv/consts/__NR_undelete.S +++ b/libc/sysv/consts/__NR_undelete.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_undelete,-1,0x20000cd,0x00cd,-1,0x0cd,-1 +.syscon nr,__NR_undelete,0xfff,0x20000cd,0x00cd,0xfff,0x0cd,0xfff diff --git a/libc/sysv/consts/__NR_unlink.S b/libc/sysv/consts/__NR_unlink.S index 2a2820f7..aa546ad3 100644 --- a/libc/sysv/consts/__NR_unlink.S +++ b/libc/sysv/consts/__NR_unlink.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_unlink,0x0057,0x200000a,0x000a,0x000a,0x00a,-1 +.syscon nr,__NR_unlink,0x0057,0x200000a,0x000a,0x000a,0x00a,0xfff diff --git a/libc/sysv/consts/__NR_unlinkat.S b/libc/sysv/consts/__NR_unlinkat.S index bb25e172..a95d6977 100644 --- a/libc/sysv/consts/__NR_unlinkat.S +++ b/libc/sysv/consts/__NR_unlinkat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_unlinkat,0x0107,0x20001d8,0x01f7,0x0145,0x1d7,-1 +.syscon nr,__NR_unlinkat,0x0107,0x20001d8,0x01f7,0x0145,0x1d7,0xfff diff --git a/libc/sysv/consts/__NR_unmount.S b/libc/sysv/consts/__NR_unmount.S index 4645f638..d62cec4d 100644 --- a/libc/sysv/consts/__NR_unmount.S +++ b/libc/sysv/consts/__NR_unmount.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_unmount,-1,0x200009f,0x0016,0x0016,0x016,-1 +.syscon nr,__NR_unmount,0xfff,0x200009f,0x0016,0x0016,0x016,0xfff diff --git a/libc/sysv/consts/__NR_unshare.S b/libc/sysv/consts/__NR_unshare.S index dddf89b0..f82ffd63 100644 --- a/libc/sysv/consts/__NR_unshare.S +++ b/libc/sysv/consts/__NR_unshare.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_unshare,0x0110,-1,-1,-1,-1,-1 +.syscon nr,__NR_unshare,0x0110,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_unveil.S b/libc/sysv/consts/__NR_unveil.S index 3f6ac740..c2627543 100644 --- a/libc/sysv/consts/__NR_unveil.S +++ b/libc/sysv/consts/__NR_unveil.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_unveil,-1,-1,-1,0x0072,-1,-1 +.syscon nr,__NR_unveil,0xfff,0xfff,0xfff,0x0072,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_userfaultfd.S b/libc/sysv/consts/__NR_userfaultfd.S index 6af9b8e9..09a456d1 100644 --- a/libc/sysv/consts/__NR_userfaultfd.S +++ b/libc/sysv/consts/__NR_userfaultfd.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_userfaultfd,0x0143,-1,-1,-1,-1,-1 +.syscon nr,__NR_userfaultfd,0x0143,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_usrctl.S b/libc/sysv/consts/__NR_usrctl.S index cb71bc4c..b5e22c6f 100644 --- a/libc/sysv/consts/__NR_usrctl.S +++ b/libc/sysv/consts/__NR_usrctl.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_usrctl,-1,0x20001bd,-1,-1,-1,-1 +.syscon nr,__NR_usrctl,0xfff,0x20001bd,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_ustat.S b/libc/sysv/consts/__NR_ustat.S index 75f232be..4267c7f1 100644 --- a/libc/sysv/consts/__NR_ustat.S +++ b/libc/sysv/consts/__NR_ustat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_ustat,0x0088,-1,-1,-1,-1,-1 +.syscon nr,__NR_ustat,0x0088,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_utime.S b/libc/sysv/consts/__NR_utime.S index c84f9811..8bdbda9a 100644 --- a/libc/sysv/consts/__NR_utime.S +++ b/libc/sysv/consts/__NR_utime.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_utime,0x0084,-1,-1,-1,-1,-1 +.syscon nr,__NR_utime,0x0084,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_utimensat.S b/libc/sysv/consts/__NR_utimensat.S index 7c577f40..f3350f4c 100644 --- a/libc/sysv/consts/__NR_utimensat.S +++ b/libc/sysv/consts/__NR_utimensat.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_utimensat,0x0118,-1,0x0223,0x0054,0x1d3,-1 +.syscon nr,__NR_utimensat,0x0118,0xfff,0x0223,0x0054,0x1d3,0xfff diff --git a/libc/sysv/consts/__NR_utimes.S b/libc/sysv/consts/__NR_utimes.S index a11bd922..5bef5667 100644 --- a/libc/sysv/consts/__NR_utimes.S +++ b/libc/sysv/consts/__NR_utimes.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_utimes,0x00eb,0x200008a,0x008a,0x004c,0x1a4,-1 +.syscon nr,__NR_utimes,0x00eb,0x200008a,0x008a,0x004c,0x1a4,0xfff diff --git a/libc/sysv/consts/__NR_utrace.S b/libc/sysv/consts/__NR_utrace.S index 1bf5a3b7..1c830af5 100644 --- a/libc/sysv/consts/__NR_utrace.S +++ b/libc/sysv/consts/__NR_utrace.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_utrace,-1,-1,0x014f,0x00d1,0x132,-1 +.syscon nr,__NR_utrace,0xfff,0xfff,0x014f,0x00d1,0x132,0xfff diff --git a/libc/sysv/consts/__NR_uuidgen.S b/libc/sysv/consts/__NR_uuidgen.S index 2c7eea6f..0dfb36f8 100644 --- a/libc/sysv/consts/__NR_uuidgen.S +++ b/libc/sysv/consts/__NR_uuidgen.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_uuidgen,-1,-1,0x0188,-1,0x163,-1 +.syscon nr,__NR_uuidgen,0xfff,0xfff,0x0188,0xfff,0x163,0xfff diff --git a/libc/sysv/consts/__NR_vadvise.S b/libc/sysv/consts/__NR_vadvise.S index f0c730ab..b1e4863e 100644 --- a/libc/sysv/consts/__NR_vadvise.S +++ b/libc/sysv/consts/__NR_vadvise.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_vadvise,-1,-1,0x0048,-1,-1,-1 +.syscon nr,__NR_vadvise,0xfff,0xfff,0x0048,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_vfork.S b/libc/sysv/consts/__NR_vfork.S index 509bd14d..6c0000cb 100644 --- a/libc/sysv/consts/__NR_vfork.S +++ b/libc/sysv/consts/__NR_vfork.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_vfork,0x003a,0x2000042,0x0042,0x0042,0x042,-1 +.syscon nr,__NR_vfork,0x003a,0x2000042,0x0042,0x0042,0x042,0xfff diff --git a/libc/sysv/consts/__NR_vfs_purge.S b/libc/sysv/consts/__NR_vfs_purge.S index 36f3b020..3c009cea 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.internal.h" -.syscon nr,__NR_vfs_purge,-1,0x20001c7,-1,-1,-1,-1 +.syscon nr,__NR_vfs_purge,0xfff,0x20001c7,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_vhangup.S b/libc/sysv/consts/__NR_vhangup.S index 91cced6a..ab59a97c 100644 --- a/libc/sysv/consts/__NR_vhangup.S +++ b/libc/sysv/consts/__NR_vhangup.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_vhangup,0x0099,-1,-1,-1,-1,-1 +.syscon nr,__NR_vhangup,0x0099,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_vm_pressure_monitor.S b/libc/sysv/consts/__NR_vm_pressure_monitor.S index 067236ee..e5af2f7a 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.internal.h" -.syscon nr,__NR_vm_pressure_monitor,-1,0x2000128,-1,-1,-1,-1 +.syscon nr,__NR_vm_pressure_monitor,0xfff,0x2000128,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_vmsplice.S b/libc/sysv/consts/__NR_vmsplice.S index 7badffb6..624b0f79 100644 --- a/libc/sysv/consts/__NR_vmsplice.S +++ b/libc/sysv/consts/__NR_vmsplice.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_vmsplice,0x0116,-1,-1,-1,-1,-1 +.syscon nr,__NR_vmsplice,0x0116,0xfff,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_wait.S b/libc/sysv/consts/__NR_wait.S index 6e66345e..bc5ff24e 100644 --- a/libc/sysv/consts/__NR_wait.S +++ b/libc/sysv/consts/__NR_wait.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_wait,-1,-1,0x0054,-1,-1,-1 +.syscon nr,__NR_wait,0xfff,0xfff,0x0054,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_wait4.S b/libc/sysv/consts/__NR_wait4.S index 1c76f22a..bdeecb55 100644 --- a/libc/sysv/consts/__NR_wait4.S +++ b/libc/sysv/consts/__NR_wait4.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_wait4,0x003d,0x2000007,0x0007,0x000b,0x1c1,-1 +.syscon nr,__NR_wait4,0x003d,0x2000007,0x0007,0x000b,0x1c1,0xfff diff --git a/libc/sysv/consts/__NR_wait4_nocancel.S b/libc/sysv/consts/__NR_wait4_nocancel.S index 7d1222b4..b5c0bc40 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.internal.h" -.syscon nr,__NR_wait4_nocancel,-1,0x2000190,-1,-1,-1,-1 +.syscon nr,__NR_wait4_nocancel,0xfff,0x2000190,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_wait6.S b/libc/sysv/consts/__NR_wait6.S index 7d1ae492..25f159d1 100644 --- a/libc/sysv/consts/__NR_wait6.S +++ b/libc/sysv/consts/__NR_wait6.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_wait6,-1,-1,0x0214,-1,0x1e1,-1 +.syscon nr,__NR_wait6,0xfff,0xfff,0x0214,0xfff,0x1e1,0xfff diff --git a/libc/sysv/consts/__NR_waitevent.S b/libc/sysv/consts/__NR_waitevent.S index b8d4e253..c7d8d592 100644 --- a/libc/sysv/consts/__NR_waitevent.S +++ b/libc/sysv/consts/__NR_waitevent.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_waitevent,-1,0x20000e8,-1,-1,-1,-1 +.syscon nr,__NR_waitevent,0xfff,0x20000e8,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_waitid.S b/libc/sysv/consts/__NR_waitid.S index 267cd471..7af45d44 100644 --- a/libc/sysv/consts/__NR_waitid.S +++ b/libc/sysv/consts/__NR_waitid.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_waitid,0x00f7,0x20000ad,-1,-1,-1,-1 +.syscon nr,__NR_waitid,0x00f7,0x20000ad,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_waitid_nocancel.S b/libc/sysv/consts/__NR_waitid_nocancel.S index 0eb1d955..2300a006 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.internal.h" -.syscon nr,__NR_waitid_nocancel,-1,0x20001a0,-1,-1,-1,-1 +.syscon nr,__NR_waitid_nocancel,0xfff,0x20001a0,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_watchevent.S b/libc/sysv/consts/__NR_watchevent.S index 2d6e7842..5e2e3344 100644 --- a/libc/sysv/consts/__NR_watchevent.S +++ b/libc/sysv/consts/__NR_watchevent.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_watchevent,-1,0x20000e7,-1,-1,-1,-1 +.syscon nr,__NR_watchevent,0xfff,0x20000e7,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_work_interval_ctl.S b/libc/sysv/consts/__NR_work_interval_ctl.S index dc69316c..b6c07db6 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.internal.h" -.syscon nr,__NR_work_interval_ctl,-1,0x20001f3,-1,-1,-1,-1 +.syscon nr,__NR_work_interval_ctl,0xfff,0x20001f3,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_workq_kernreturn.S b/libc/sysv/consts/__NR_workq_kernreturn.S index 4aa6dfec..0b12e4bf 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.internal.h" -.syscon nr,__NR_workq_kernreturn,-1,0x2000170,-1,-1,-1,-1 +.syscon nr,__NR_workq_kernreturn,0xfff,0x2000170,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_workq_open.S b/libc/sysv/consts/__NR_workq_open.S index 817e2587..65f82ae6 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.internal.h" -.syscon nr,__NR_workq_open,-1,0x200016f,-1,-1,-1,-1 +.syscon nr,__NR_workq_open,0xfff,0x200016f,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_write.S b/libc/sysv/consts/__NR_write.S index 05284f95..c2773b80 100644 --- a/libc/sysv/consts/__NR_write.S +++ b/libc/sysv/consts/__NR_write.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_write,0x0001,0x2000004,0x0004,0x0004,0x004,-1 +.syscon nr,__NR_write,0x0001,0x2000004,0x0004,0x0004,0x004,0xfff diff --git a/libc/sysv/consts/__NR_write_nocancel.S b/libc/sysv/consts/__NR_write_nocancel.S index 69d3e8f1..03c496a5 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.internal.h" -.syscon nr,__NR_write_nocancel,-1,0x200018d,-1,-1,-1,-1 +.syscon nr,__NR_write_nocancel,0xfff,0x200018d,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_writev.S b/libc/sysv/consts/__NR_writev.S index f6b80a2a..c233e3c5 100644 --- a/libc/sysv/consts/__NR_writev.S +++ b/libc/sysv/consts/__NR_writev.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_writev,0x0014,0x2000079,0x0079,0x0079,0x079,-1 +.syscon nr,__NR_writev,0x0014,0x2000079,0x0079,0x0079,0x079,0xfff diff --git a/libc/sysv/consts/__NR_writev_nocancel.S b/libc/sysv/consts/__NR_writev_nocancel.S index eccbb236..bfcc2ece 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.internal.h" -.syscon nr,__NR_writev_nocancel,-1,0x200019c,-1,-1,-1,-1 +.syscon nr,__NR_writev_nocancel,0xfff,0x200019c,0xfff,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/__NR_yield.S b/libc/sysv/consts/__NR_yield.S index 8195e4e1..74ec8055 100644 --- a/libc/sysv/consts/__NR_yield.S +++ b/libc/sysv/consts/__NR_yield.S @@ -1,2 +1,2 @@ #include "libc/sysv/consts/syscon.internal.h" -.syscon nr,__NR_yield,-1,-1,0x0141,-1,-1,-1 +.syscon nr,__NR_yield,0xfff,0xfff,0x0141,0xfff,0xfff,0xfff diff --git a/libc/sysv/consts/syscon.internal.h b/libc/sysv/consts/syscon.internal.h index be78d227..3fe31d09 100644 --- a/libc/sysv/consts/syscon.internal.h +++ b/libc/sysv/consts/syscon.internal.h @@ -29,37 +29,37 @@ #if SupportsLinux() || SupportsMetal() .section .sort.rodata.syscon.linux.2.\group\().\name,"a",@progbits - .sleb128 \linux + .uleb128 \linux .previous #endif #if SupportsXnu() .section .sort.rodata.syscon.xnu.2.\group\().\name,"a",@progbits - .sleb128 \xnu + .uleb128 \xnu .previous #endif #if SupportsFreebsd() .section .sort.rodata.syscon.freebsd.2.\group\().\name,"a",@progbits - .sleb128 \freebsd + .uleb128 \freebsd .previous #endif #if SupportsOpenbsd() .section .sort.rodata.syscon.openbsd.2.\group\().\name,"a",@progbits - .sleb128 \openbsd + .uleb128 \openbsd .previous #endif #if SupportsNetbsd() .section .sort.rodata.syscon.netbsd.2.\group\().\name,"a",@progbits - .sleb128 \netbsd + .uleb128 \netbsd .previous #endif #if SupportsWindows() .section .sort.rodata.syscon.windows.2.\group\().\name,"a",@progbits - .sleb128 \windows + .uleb128 \windows .previous #endif diff --git a/libc/sysv/systemfive.S b/libc/sysv/systemfive.S index b41ed340..a5345d6f 100644 --- a/libc/sysv/systemfive.S +++ b/libc/sysv/systemfive.S @@ -194,122 +194,120 @@ systemfive_xnu: .init.start 300,_init_systemfive push %rbx push %rsi -#if SupportsXnu() - testb $XNU,(%rdi) # @see libc/crt/crt.S - jnz _init_systemfive_xnu -#endif -#if SupportsMetal() - testb $METAL,(%rdi) # @see ape/ape.S - jnz _init_systemfive_metal -#endif -#if SupportsFreebsd() - testb $FREEBSD,(%rdi) # @see libc/crt/crt.S - jnz _init_systemfive_freebsd -#endif -#if SupportsWindows() - testb $WINDOWS,(%rdi) # @see libc/runtime/winmain.c - jnz _init_systemfive_windows -#endif + mov (%rdi),%eax #if SupportsOpenbsd() - cmpq $0,(%r15) # OpenBSD doesn't have auxv - je _init_systemfive_openbsd + cmpq $0,(%r15) # OpenBSD has no auxv + jnz 0f + mov $OPENBSD,%al +0: #endif #if SupportsNetbsd() - xor %eax,%eax -0: cmpq $2014,(%r15,%rax,8) # NetBSD's distinctive AT_EXECFN - je _init_systemfive_netbsd - cmpq $0,(%r15,%rax,8) - lea 2(%eax),%eax + xor %ecx,%ecx +0: cmpq $2014,(%r15,%rcx,8) # NetBSD AT_EXECFN + jne 1f + mov $NETBSD,%al +1: cmpq $0,(%r15,%rcx,8) + lea 2(%ecx),%ecx jnz 0b +2: #endif -#if SupportsLinux() + test %eax,%eax + jnz 1f + mov $LINUX,%al +1: stosq #→ __hostos + bsr %eax,%eax + mov $_init_systemfive_jmptab,%ebx + movzbl (%rbx,%rax),%eax + lea (%rbx,%rax),%eax + jmp *%rax +_init_systemfive_jmptab: + .byte _init_systemfive_linux-_init_systemfive_jmptab + .byte _init_systemfive_metal-_init_systemfive_jmptab + .byte _init_systemfive_windows-_init_systemfive_jmptab + .byte _init_systemfive_xnu-_init_systemfive_jmptab + .byte _init_systemfive_openbsd-_init_systemfive_jmptab + .byte _init_systemfive_freebsd-_init_systemfive_jmptab + .byte _init_systemfive_netbsd-_init_systemfive_jmptab + .endobj _init_systemfive_jmptab _init_systemfive_linux: +#if SupportsLinux() pushb systemfive_linux-.Lanchorpoint - push $LINUX - ezlea syscon_linux,si + mov $syscon_linux,%esi jmp _init_systemfive_os #endif -#if SupportsMetal() + .endfn _init_systemfive_linux _init_systemfive_metal: +#if SupportsMetal() pushb systemfive_linux-.Lanchorpoint - push $METAL - ezlea syscon_linux,si + mov $syscon_linux,%esi jmp _init_systemfive_os #endif -#if SupportsWindows() + .endfn _init_systemfive_metal _init_systemfive_windows: +#if SupportsWindows() pushb systemfive_enosys-.Lanchorpoint - push $WINDOWS - ezlea syscon_windows,si + mov $syscon_windows,%esi jmp _init_systemfive_os #endif -#if SupportsFreebsd() -_init_systemfive_freebsd: - pushb systemfive_freebsd-.Lanchorpoint - push $FREEBSD - ezlea syscon_freebsd,si - jmp _init_systemfive_os -#endif -#if SupportsOpenbsd() -_init_systemfive_openbsd: - pushb systemfive_openbsd-.Lanchorpoint - push $OPENBSD - ezlea syscon_openbsd,si - jmp _init_systemfive_os -#endif -#if SupportsNetbsd() -_init_systemfive_netbsd: - pushb systemfive_netbsd-.Lanchorpoint - push $NETBSD - ezlea syscon_netbsd,si - jmp _init_systemfive_os -#endif -#if SupportsXnu() + .endfn _init_systemfive_windows _init_systemfive_xnu: +#if SupportsXnu() pushb systemfive_xnu-.Lanchorpoint - push $XNU - ezlea syscon_xnu,si + mov $syscon_xnu,%esi + jmp _init_systemfive_os +#endif + .endfn _init_systemfive_xnu +_init_systemfive_openbsd: +#if SupportsOpenbsd() + pushb systemfive_openbsd-.Lanchorpoint + mov $syscon_openbsd,%esi + jmp _init_systemfive_os +#endif + .endfn _init_systemfive_openbsd +_init_systemfive_freebsd: +#if SupportsFreebsd() + pushb systemfive_freebsd-.Lanchorpoint + mov $syscon_freebsd,%esi + jmp _init_systemfive_os +#endif + .endfn _init_systemfive_freebsd +_init_systemfive_netbsd: +#if SupportsNetbsd() + pushb systemfive_netbsd-.Lanchorpoint + mov $syscon_netbsd,%esi // 𝑠𝑙𝑖𝑑𝑒 #endif + .endfn _init_systemfive_netbsd _init_systemfive_os: - ezlea .Lanchorpoint,cx pop %rax - stosq #→ __hostos - pop %rax - add %rcx,%rax + add $.Lanchorpoint,%eax stosq #→ __systemfive // 𝑠𝑙𝑖𝑑𝑒 + .endfn _init_systemfive_os _init_systemfive_magnums: push %rdi - ezlea syscon_start,di - ezlea syscon_end,bx - or $-1,%r9 -2: cmp %rbx,%rdi + mov $syscon_start,%edi +2: cmp $syscon_end,%edi jnb 5f + xor %ebx,%ebx xor %ecx,%ecx xor %edx,%edx -3: lodsb # decodes sleb128 - mov %rax,%r8 - and $127,%r8d - sal %cl,%r8 - add $7,%ecx - or %r8,%rdx - test %al,%al - js 3b - test $64,%al - je 4f - mov %r9,%rax - sal %cl,%rax - or %rax,%rdx -4: mov %rdx,%rax - cmpq $0,(%rdi) # dont change if set - cmovne (%rdi),%rax # @see WinMain() +3: lodsb # decodes uleb128 + movzbl %al,%edx + and $127,%dl + shl %cl,%rdx + or %rdx,%rbx + add $7,%cl + test $128,%al + jnz 3b + xchg %rbx,%rax stosq jmp 2b 5: pop %rdi pop %rsi pop %rbx // 𝑠𝑙𝑖𝑑𝑒 + .endfn _init_systemfive_magnums #if SupportsSystemv() && !defined(TINY) _init_systemfive_stack: # determinism ftw! #if SupportsWindows() || SupportsMetal() @@ -377,8 +375,8 @@ _init_systemfive_stack: # determinism ftw! // 𝑠𝑙𝑖𝑑𝑒 _init_systemfive_syscall: mov __NR_msyscall,%eax # syscall origin protect - test %eax,%eax # openbsd is pretty cool - js _init_systemfive_done + cmp $0xfff,%ax # openbsd is pretty cool + jae _init_systemfive_done push %rdi push %rsi .weak __privileged_addr diff --git a/test/libc/time/strftime_test.c b/test/libc/time/strftime_test.c index 84ef16a2..56274478 100644 --- a/test/libc/time/strftime_test.c +++ b/test/libc/time/strftime_test.c @@ -59,6 +59,7 @@ TEST(strftime_100, rfc822_ShakaZuluTime) { TEST(strftime_201, iso8601_GoogleStandardTime) { int64_t t = 0x5cd04d0e; + ASSERT_STREQ("GST", getenv("TZ")); ASSERT_STREQ("2019-05-06T08:04:46PDT", FormatTime("%Y-%m-%dT%H:%M:%S%Z", localtime(&t))); } diff --git a/tool/net/echoserver.c b/tool/net/echoserver.c index ebca4d9b..81e1342f 100644 --- a/tool/net/echoserver.c +++ b/tool/net/echoserver.c @@ -102,7 +102,7 @@ nodiscard char *DescribeSocket(struct Socket *s) { wontreturn void ShowUsageAndExit(bool iserror) { FILE *f = iserror ? stderr : stdout; int rc = iserror ? EXIT_FAILURE : EXIT_SUCCESS; - fprintf(f, "%s: %s %s\n", "Usage", g_argv[0], "PROTOCOL:ADDR:PORT..."); + fprintf(f, "%s: %s %s\n", "Usage", __argv[0], "PROTOCOL:ADDR:PORT..."); exit(rc); }