mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-25 20:10:29 +00:00
Fix XNU / FreeBSD / OpenBSD / RHEL5 / NT bugs
For the first time ever, all tests in this codebase now pass, when run automatically on macos, freebsd, openbsd, rhel5, rhel7, alpine and windows via the network using the runit and runitd build tools - Fix vfork exec path etc. - Add XNU opendir() support - Add OpenBSD opendir() support - Add Linux history to syscalls.sh - Use copy_file_range on FreeBSD 13+ - Fix system calls with 7+ arguments - Fix Windows with greater than 16 FDs - Fix RUNIT.COM and RUNITD.COM flakiness - Fix OpenBSD munmap() when files are mapped - Fix long double so it's actually long on Windows - Fix OpenBSD truncate() and ftruncate() thunk typo - Let Windows fcntl() be used on socket files descriptors - Fix Windows fstat() which had an accidental printf statement - Fix RHEL5 CLOCK_MONOTONIC by not aliasing to CLOCK_MONOTONIC_RAW This is wonderful. I never could have dreamed it would be possible to get it working so well on so many platforms with tiny binaries. Fixes #31 Fixes #25 Fixes #14
This commit is contained in:
parent
c20dad3534
commit
45b72485ad
1032 changed files with 6083 additions and 2348 deletions
|
@ -1,2 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall __accept$sysv 0x001e0063201e002b globl hidden
|
||||
.scall __accept$sysv 0x001e021d201e002b globl hidden
|
||||
|
|
2
libc/sysv/calls/__execve-sysv.s
Normal file
2
libc/sysv/calls/__execve-sysv.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall __execve$sysv 0x003b003b203b003b globl hidden
|
2
libc/sysv/calls/__fork-sysv.s
Normal file
2
libc/sysv/calls/__fork-sysv.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall __fork$sysv 0x0002000220020039 globl hidden
|
|
@ -1,2 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall copy_file_range$sysv 0xffffffffffff0146 globl hidden
|
||||
.scall copy_file_range$sysv 0xffff0239ffff0146 globl hidden
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall execve$sysv 0x003b003b203b003b globl hidden
|
|
@ -1,2 +0,0 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall fork$sysv 0x0002000220020039 globl hidden
|
|
@ -1,2 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall getdents 0x00630110ffff00d9 globl hidden
|
||||
.scall getdents 0x0063011020c400d9 globl hidden
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall getdirentries 0xffff022a2158ffff globl
|
||||
.scall getdirentries 0xffff022a20c4ffff globl
|
||||
|
|
2
libc/sysv/calls/ptrace-sysv.s
Normal file
2
libc/sysv/calls/ptrace-sysv.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall ptrace$sysv 0x001a001a201a0065 globl hidden
|
|
@ -1,2 +0,0 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall ptrace 0x001a001a201a0065 globl
|
|
@ -1,2 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall sysctl 0x00caffff20caffff globl
|
||||
.scall sysctl 0x00ca00ca20caffff globl
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
|
||||
lineno = 0
|
||||
|
|
|
@ -388,6 +388,7 @@ syscon fcntl2 F_DUPFD 0 0 0 0 0 # consensus
|
|||
syscon fcntl2 F_GETFD 1 1 1 1 1 # unix consensus & faked nt
|
||||
syscon fcntl2 F_SETFD 2 2 2 2 2 # unix consensus & faked nt
|
||||
syscon fcntl3 FD_CLOEXEC 1 1 1 1 1 # unix consensus & faked nt
|
||||
syscon fcntl F_DUPFD_CLOEXEC 0x0406 67 17 10 0
|
||||
|
||||
syscon fcntl2 F_GETFL 3 3 3 3 3 # unix consensus & faked nt
|
||||
syscon fcntl2 F_SETFL 4 4 4 4 4 # unix consensus & faked nt
|
||||
|
@ -408,10 +409,10 @@ syscon fcntl F_TLOCK 2 2 2 2 0 # unix consensus
|
|||
syscon fcntl F_UNLCK 2 2 2 2 0 # unix consensus
|
||||
syscon fcntl F_TEST 3 3 3 3 0 # unix consensus
|
||||
syscon fcntl F_GETLK 5 7 11 7 0
|
||||
syscon fcntl F_GETLK64 5 0 0 0 0
|
||||
syscon fcntl F_SETLK 6 8 12 8 0
|
||||
syscon fcntl F_SETLK64 6 0 0 0 0
|
||||
syscon fcntl F_SETLKW 7 9 13 9 0
|
||||
syscon fcntl F_GETLK64 5 0 0 0 0
|
||||
syscon fcntl F_SETLK64 6 0 0 0 0
|
||||
syscon fcntl F_SETLKW64 7 0 0 0 0
|
||||
syscon fcntl F_SETSIG 10 0 0 0 0
|
||||
syscon fcntl F_GETSIG 11 0 0 0 0
|
||||
|
@ -423,7 +424,6 @@ syscon fcntl F_OFD_SETLKW 38 0 0 0 0
|
|||
syscon fcntl F_SETLEASE 0x0400 0 0 0 0
|
||||
syscon fcntl F_GETLEASE 0x0401 0 0 0 0
|
||||
syscon fcntl F_NOTIFY 0x0402 0 0 0 0
|
||||
syscon fcntl F_DUPFD_CLOEXEC 0x0406 67 17 10 0
|
||||
syscon fcntl F_SETPIPE_SZ 0x0407 0 0 0 0
|
||||
syscon fcntl F_GETPIPE_SZ 0x0408 0 0 0 0
|
||||
|
||||
|
@ -474,6 +474,56 @@ syscon auxv AT_EXECFN 31 999 999 999 999 # faked on non-linux
|
|||
syscon auxv AT_SYSINFO_EHDR 33 0 0 0 0
|
||||
syscon auxv AT_NO_AUTOMOUNT 0x0800 0 0 0 0
|
||||
|
||||
# ptrace() codes
|
||||
#
|
||||
# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX Commentary
|
||||
syscon ptrace PTRACE_TRACEME 0 0 0 0 -1 # unix consensus a.k.a. PT_TRACE_ME
|
||||
syscon ptrace PTRACE_PEEKTEXT 1 1 1 1 -1 # unix consensus a.k.a. PT_READ_I
|
||||
syscon ptrace PTRACE_PEEKDATA 2 2 2 2 -1 # unix consensus a.k.a. PT_READ_D
|
||||
syscon ptrace PTRACE_PEEKUSER 3 3 -1 -1 -1 # a.k.a. PT_READ_U
|
||||
syscon ptrace PTRACE_POKETEXT 4 4 4 4 -1 # unix consensus a.k.a. PT_WRITE_I
|
||||
syscon ptrace PTRACE_POKEDATA 5 5 5 5 -1 # unix consensus a.k.a. PT_WRITE_D
|
||||
syscon ptrace PTRACE_POKEUSER 6 6 -1 -1 -1 # a.k.a. PT_WRITE_U
|
||||
syscon ptrace PTRACE_CONT 7 7 7 7 -1 # unix consensus a.k.a. PT_CONTINUE
|
||||
syscon ptrace PTRACE_KILL 8 8 8 8 -1 # unix consensus a.k.a. PT_KILL
|
||||
syscon ptrace PTRACE_SINGLESTEP 9 9 9 32 -1 # a.k.a. PT_STEP
|
||||
syscon ptrace PTRACE_GETREGS 12 -1 33 33 -1 # a.k.a. PT_GETREGS
|
||||
syscon ptrace PTRACE_SETREGS 13 -1 34 34 -1 # a.k.a. PT_SETREGS
|
||||
syscon ptrace PTRACE_GETFPREGS 14 -1 35 35 -1 # a.k.a. PT_GETFPREGS
|
||||
syscon ptrace PTRACE_SETFPREGS 15 -1 36 36 -1 # a.k.a. PT_SETFPREGS
|
||||
syscon ptrace PTRACE_ATTACH 16 10 10 9 -1 # a.k.a. PT_ATTACH
|
||||
syscon ptrace PTRACE_DETACH 17 11 11 10 -1 # a.k.a. PT_DETACH
|
||||
syscon ptrace PTRACE_GETFPXREGS 18 -1 -1 -1 -1 # a.k.a. PT_GETFPXREGS
|
||||
syscon ptrace PTRACE_SETFPXREGS 19 -1 -1 -1 -1 # a.k.a. PT_SETFPXREGS
|
||||
syscon ptrace PTRACE_SYSCALL 24 -1 22 -1 -1 # a.k.a. PT_SYSCALL
|
||||
syscon ptrace PTRACE_GETEVENTMSG 0x4201 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_GETSIGINFO 0x4202 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_SETOPTIONS 0x4200 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_SETSIGINFO 0x4203 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_GETREGSET 0x4204 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_GETSIGMASK 0x420a -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_INTERRUPT 0x4207 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_LISTEN 0x4208 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_PEEKSIGINFO 0x4209 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_SEIZE 0x4206 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_SETREGSET 0x4205 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_SETSIGMASK 0x420b -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_TRACESYSGOOD 0x0001 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_TRACEFORK 0x0002 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_TRACEVFORK 0x0004 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_TRACECLONE 0x0008 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_TRACEEXEC 0x0010 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_TRACEVFORKDONE 0x0020 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_TRACEEXIT 0x0040 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_O_MASK 0x007f -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_EVENT_FORK 1 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_EVENT_VFORK 2 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_EVENT_CLONE 3 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_EVENT_EXEC 4 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_EVENT_VFORK_DONE 5 -1 -1 -1 -1
|
||||
syscon ptrace PTRACE_EVENT_EXIT 6 -1 -1 -1 -1
|
||||
|
||||
syscon sigact SA_RESTORER 0x04000000 0 0 0 0
|
||||
syscon sigact SA_ONSTACK 0x08000000 1 1 1 0 # bsd consensus
|
||||
syscon sigact SA_RESTART 0x10000000 2 2 2 0 # bsd consensus
|
||||
|
@ -486,10 +536,10 @@ syscon sigact SA_RESETHAND 0x80000000 4 4 4 0 # bsd consensus
|
|||
syscon sigact SA_ONESHOT 0x80000000 0 0 0 0
|
||||
|
||||
syscon clock CLOCK_REALTIME 0 0 0 0 0 # consensus
|
||||
syscon clock CLOCK_MONOTONIC 1 1 4 3 1 # XNU/NT faked
|
||||
syscon clock CLOCK_PROCESS_CPUTIME_ID 2 -1 15 2 0
|
||||
syscon clock CLOCK_THREAD_CPUTIME_ID 3 -1 14 4 0
|
||||
syscon clock CLOCK_MONOTONIC 4 1 4 3 1 # XNU/NT faked
|
||||
syscon clock CLOCK_MONOTONIC_RAW 4 4 0x4000 0x4000 4 # XNU/NT/FreeBSD/OpenBSD faked
|
||||
syscon clock CLOCK_MONOTONIC_RAW 4 4 0x4000 0x4000 4 # XNU/NT/FreeBSD/OpenBSD faked, not available on RHEL5
|
||||
syscon clock CLOCK_REALTIME_COARSE 5 -1 0 0 0 # bsd consensus
|
||||
syscon clock CLOCK_MONOTONIC_COARSE 6 -1 0 0 0 # bsd consensus
|
||||
syscon clock CLOCK_BOOTTIME 7 -1 0 6 0
|
||||
|
@ -1472,30 +1522,6 @@ syscon in IN_OPEN 0x20 0 0 0 0
|
|||
syscon in IN_Q_OVERFLOW 0x4000 0 0 0 0
|
||||
syscon in IN_UNMOUNT 0x2000 0 0 0 0
|
||||
|
||||
syscon pt PT_TRACE_ME 0 0 0 0 0 # consensus
|
||||
syscon pt PT_CONTINUE 7 7 7 7 0 # unix consensus
|
||||
syscon pt PT_KILL 8 8 8 8 0 # unix consensus
|
||||
syscon pt PT_READ_D 2 2 2 2 0 # unix consensus
|
||||
syscon pt PT_READ_I 1 1 1 1 0 # unix consensus
|
||||
syscon pt PT_WRITE_D 5 5 5 5 0 # unix consensus
|
||||
syscon pt PT_WRITE_I 4 4 4 4 0 # unix consensus
|
||||
syscon pt PT_ATTACH 0x10 10 10 9 0
|
||||
syscon pt PT_DETACH 17 11 11 10 0
|
||||
syscon pt PT_STEP 9 9 9 0x20 0
|
||||
syscon pt PT_GETFPREGS 14 0 35 35 0
|
||||
syscon pt PT_GETREGS 12 0 33 33 0
|
||||
syscon pt PT_SETFPREGS 15 0 36 36 0
|
||||
syscon pt PT_SETREGS 13 0 34 34 0
|
||||
syscon pt PT_READ_U 3 3 0 0 0
|
||||
syscon pt PT_SYSCALL 24 0 22 0 0
|
||||
syscon pt PT_WRITE_U 6 6 0 0 0
|
||||
syscon pt PT_GETEVENTMSG 0x4201 0 0 0 0
|
||||
syscon pt PT_GETFPXREGS 18 0 0 0 0
|
||||
syscon pt PT_GETSIGINFO 0x4202 0 0 0 0
|
||||
syscon pt PT_SETFPXREGS 19 0 0 0 0
|
||||
syscon pt PT_SETOPTIONS 0x4200 0 0 0 0
|
||||
syscon pt PT_SETSIGINFO 0x4203 0 0 0 0
|
||||
|
||||
syscon iff IFF_BROADCAST 2 2 2 2 2 # consensus
|
||||
syscon iff IFF_LOOPBACK 8 8 8 8 4 # unix consensus
|
||||
syscon iff IFF_MULTICAST 0x1000 0x8000 0x8000 0x8000 0x10 # bsd consensus
|
||||
|
@ -1887,17 +1913,6 @@ syscon misc LC_ALL_MASK 0x1fbf 0 63 126 0
|
|||
|
||||
syscon lock LOCK_UNLOCK_CACHE 54 0 0 0 0 # wut
|
||||
|
||||
syscon ptrace PTRACE_GETREGSET 0x4204 0 0 0 0
|
||||
syscon ptrace PTRACE_GETSIGMASK 0x420a 0 0 0 0
|
||||
syscon ptrace PTRACE_INTERRUPT 0x4207 0 0 0 0
|
||||
syscon ptrace PTRACE_LISTEN 0x4208 0 0 0 0
|
||||
syscon ptrace PTRACE_PEEKSIGINFO 0x4209 0 0 0 0
|
||||
syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c 0 0 0 0
|
||||
syscon ptrace PTRACE_SEIZE 0x4206 0 0 0 0
|
||||
syscon ptrace PTRACE_SETREGSET 0x4205 0 0 0 0
|
||||
syscon ptrace PTRACE_SETSIGMASK 0x420b 0 0 0 0
|
||||
syscon ptrace PTRACE_SYSCALL 0 0 6 0 0
|
||||
|
||||
syscon misc ARPHRD_ETHER 1 1 1 1 0 # unix consensus
|
||||
syscon misc ARPHRD_FCFABRIC 787 0 0 0 0
|
||||
syscon misc ARPHRD_IEEE80211 801 0 0 0 0
|
||||
|
@ -2779,38 +2794,770 @@ syscon misc YESSTR 0x050002 54 54 46 0
|
|||
# System Call Numbers.
|
||||
#
|
||||
# group name GNU/Systemd XNU's Not UNIX FreeBSD OpenBSD XENIX
|
||||
syscon nr __NR_exit 0x003c 0x2000001 0x0001 0x0001 -1
|
||||
syscon nr __NR_exit_group 0x00e7 0x2000001 0x0001 0x0001 -1
|
||||
syscon nr __NR_read 0x0000 0x2000003 0x0003 0x0003 -1
|
||||
syscon nr __NR_write 0x0001 0x2000004 0x0004 0x0004 -1
|
||||
syscon nr __NR_open 0x0002 0x2000005 0x0005 0x0005 -1
|
||||
syscon nr __NR_close 0x0003 0x2000006 0x0006 0x0006 -1
|
||||
syscon nr __NR_stat 0x0004 0x2000152 -1 0x0026 -1
|
||||
syscon nr __NR_fstat 0x0005 0x2000153 0x0227 0x0035 -1
|
||||
syscon nr __NR_lstat 0x0006 0x2000154 0x0028 0x0028 -1
|
||||
syscon nr __NR_poll 0x0007 0x20000e6 0x00d1 0x00fc -1
|
||||
syscon nr __NR_ppoll 0x010f -1 0x0221 0x006d -1
|
||||
syscon nr __NR_lseek 0x0008 0x20000c7 0x01de 0x00c7 -1
|
||||
syscon nr __NR_mmap 0x0009 0x20000c5 0x01dd 0x00c5 -1
|
||||
syscon nr __NR_msync 0x001a 0x2000041 0x0041 0x0100 -1
|
||||
syscon nr __NR_mprotect 0x000a 0x200004a 0x004a 0x004a -1
|
||||
syscon nr __NR_munmap 0x000b 0x2000049 0x0049 0x0049 -1
|
||||
syscon nr __NR_sigaction 0x000d 0x200002e 0x01a0 0x002e -1
|
||||
syscon nr __NR_sigprocmask 0x000e 0x2000030 0x0154 0x0030 -1
|
||||
syscon nr __NR_ioctl 0x0010 0x2000036 0x0036 0x0036 -1
|
||||
syscon nr __NR_pread 0x0011 0x2000099 0x01db 0x00ad -1
|
||||
syscon nr __NR_pwrite 0x0012 0x200009a 0x01dc 0x00ae -1
|
||||
syscon nr __NR_readv 0x0013 0x2000078 0x0078 0x0078 -1
|
||||
syscon nr __NR_writev 0x0014 0x2000079 0x0079 0x0079 -1
|
||||
syscon nr __NR_access 0x0015 0x2000021 0x0021 0x0021 -1
|
||||
syscon nr __NR_pipe 0x0016 0x200002a 0x021e 0x0107 -1
|
||||
syscon nr __NR_select 0x0017 0x200005d 0x005d 0x0047 -1
|
||||
syscon nr __NR_pselect -1 0x200018a 0x020a 0x006e -1
|
||||
syscon nr __NR_pselect6 0x010e -1 -1 -1 -1
|
||||
syscon nr __NR_sched_yield 0x0018 0x010003c 0x014b 0x012a -1
|
||||
syscon nr __NR_mremap 0x0019 -1 -1 -1 -1
|
||||
syscon nr __NR_mincore 0x001b 0x200004e 0x004e 0x004e -1
|
||||
syscon nr __NR_madvise 0x001c 0x200004b 0x004b 0x004b -1
|
||||
syscon nr __NR_shmget 0x001d 0x2000109 0x00e7 0x0121 -1
|
||||
syscon nr __NR_shmat 0x001e 0x2000106 0x00e4 0x00e4 -1
|
||||
syscon nr __NR_shmctl 0x001f 0x2000107 0x0200 0x0128 -1
|
||||
syscon nr __NR_dup 0x0020 0x2000029 0x0029 0x0029 -1
|
||||
syscon nr __NR_dup2 0x0021 0x200005a 0x005a 0x005a -1
|
||||
syscon nr __NR_pause 0x0022 -1 -1 -1 -1
|
||||
syscon nr __NR_nanosleep 0x0023 -1 0x00f0 0x005b -1
|
||||
syscon nr __NR_getitimer 0x0024 0x2000056 0x0056 0x0046 -1
|
||||
syscon nr __NR_setitimer 0x0026 0x2000053 0x0053 0x0045 -1
|
||||
syscon nr __NR_alarm 0x0025 -1 -1 -1 -1
|
||||
syscon nr __NR_getpid 0x0027 0x2000014 0x0014 0x0014 -1
|
||||
syscon nr __NR_kill 0x003e 0x2000025 0x0025 0x007a -1
|
||||
syscon nr __NR_exit 0x00e7 0x2000001 0x0001 0x0001 -1
|
||||
syscon nr __NR_read 0x0000 0x2000003 0x0003 0x0003 -1
|
||||
syscon nr __NR_write 0x0001 0x2000004 0x0004 0x0004 -1
|
||||
syscon nr __NR_open 0x0002 0x2000005 0x0005 0x0005 -1
|
||||
syscon nr __NR_close 0x0003 0x2000006 0x0006 0x0006 -1
|
||||
syscon nr __NR_wait4 0x003d 0x1000007 0x0007 0x000b -1
|
||||
syscon nr __NR_stat 0x0004 0x2000152 0x00bc 0x0026 -1
|
||||
syscon nr __NR_fstat 0x0005 0x2000153 0x0227 0x0035 -1
|
||||
syscon nr __NR_lstat 0x0006 0x2000154 0x0028 0x0028 -1
|
||||
syscon nr __NR_mmap 0x0009 0x20000c5 0x01dd 0x00c5 -1
|
||||
syscon nr __NR_mprotect 0x000a 0x200004a 0x004a 0x004a -1
|
||||
syscon nr __NR_munmap 0x000b 0x2000049 0x0049 0x0049 -1
|
||||
syscon nr __NR_sigaction 0x000d 0x200002e 0x01a0 0x002e -1
|
||||
syscon nr __NR_pread 0x0011 0x2000099 0x01db 0x00ad -1
|
||||
syscon nr __NR_pwrite 0x0012 0x200009a 0x01dc 0x00ae -1
|
||||
syscon nr __NR_access 0x0015 0x2000021 0x0021 0x0021 -1
|
||||
syscon nr __NR_sched_yield 0x0018 0x100003c 0x014b 0x012a -1
|
||||
syscon nr __NR_sendfile 0x0028 0x2000151 0x0189 0xffff -1
|
||||
syscon nr __NR_fork 0x0039 0x2000002 0x0002 0x0002 -1
|
||||
syscon nr __NR_sendfile 0x0028 0x2000151 0x0189 -1 -1
|
||||
syscon nr __NR_socket 0x0029 0x2000061 0x0061 0x0061 -1
|
||||
syscon nr __NR_connect 0x002a 0x2000062 0x0062 0x0062 -1
|
||||
syscon nr __NR_accept 0x002b 0x200001e 0x0063 0x001e -1
|
||||
syscon nr __NR_sendto 0x002c 0x2000085 0x0085 0x0085 -1
|
||||
syscon nr __NR_recvfrom 0x002d 0x200001d 0x001d 0x001d -1
|
||||
syscon nr __NR_sendmsg 0x002e 0x200001c 0x001c 0x001c -1
|
||||
syscon nr __NR_recvmsg 0x002f 0x200001b 0x001b 0x001b -1
|
||||
syscon nr __NR_shutdown 0x0030 0x2000086 0x0086 0x0086 -1
|
||||
syscon nr __NR_bind 0x0031 0x2000068 0x0068 0x0068 -1
|
||||
syscon nr __NR_listen 0x0032 0x200006a 0x006a 0x006a -1
|
||||
syscon nr __NR_getsockname 0x0033 0x2000020 0x0020 0x0020 -1
|
||||
syscon nr __NR_getpeername 0x0034 0x200001f 0x008d 0x001f -1
|
||||
syscon nr __NR_socketpair 0x0035 0x2000087 0x0087 0x0087 -1
|
||||
syscon nr __NR_setsockopt 0x0036 0x2000069 0x0069 0x0069 -1
|
||||
syscon nr __NR_getsockopt 0x0037 0x2000076 0x0076 0x0076 -1
|
||||
syscon nr __NR_fork 0x0039 0x2000002 0x0002 0x0002 -1
|
||||
syscon nr __NR_vfork 0x003a 0x2000042 0x0042 0x0042 -1
|
||||
syscon nr __NR_gettimeofday 0x0060 0x2000074 0x0074 0x0043 -1
|
||||
syscon nr __NR_arch_prctl 0x009e 0x000ffff 0x00a5 0x00a5 -1
|
||||
syscon nr __NR_gettid 0x00ba 0x200011e 0xffff 0xffff -1
|
||||
syscon nr __NR_fadvise 0x00dd 0x000ffff 0x0213 0xffff -1
|
||||
syscon nr __NR_clock_gettime 0x00e4 0x000ffff 0x00e8 0x0057 -1
|
||||
syscon nr __NR_posix_spawn -1 0x20000f4 -1 -1 -1
|
||||
syscon nr __NR_execve 0x003b 0x200003b 0x003b 0x003b -1
|
||||
syscon nr __NR_wait4 0x003d 0x2000007 0x0007 0x000b -1
|
||||
syscon nr __NR_kill 0x003e 0x2000025 0x0025 0x007a -1
|
||||
syscon nr __NR_killpg -1 -1 0x0092 -1 -1
|
||||
syscon nr __NR_clone 0x0038 -1 -1 -1 -1
|
||||
syscon nr __NR_tkill 0x00c8 -1 -1 -1 -1
|
||||
syscon nr __NR_futex 0x00ca -1 -1 0x0053 -1
|
||||
syscon nr __NR_set_robust_list 0x0111 -1 -1 -1 -1
|
||||
syscon nr __NR_get_robust_list 0x0112 -1 -1 -1 -1
|
||||
syscon nr __NR_uname 0x003f -1 0x00a4 -1 -1
|
||||
syscon nr __NR_semget 0x0040 0x20000ff 0x00dd 0x00dd -1
|
||||
syscon nr __NR_semop 0x0041 0x2000100 0x00de 0x0122 -1
|
||||
syscon nr __NR_semctl 0x0042 0x20000fe 0x01fe 0x0127 -1
|
||||
syscon nr __NR_shmdt 0x0043 0x2000108 0x00e6 0x00e6 -1
|
||||
syscon nr __NR_msgget 0x0044 0x2000103 0x00e1 0x00e1 -1
|
||||
syscon nr __NR_msgsnd 0x0045 0x2000104 0x00e2 0x00e2 -1
|
||||
syscon nr __NR_msgrcv 0x0046 0x2000105 0x00e3 0x00e3 -1
|
||||
syscon nr __NR_msgctl 0x0047 0x2000102 0x01ff 0x0129 -1
|
||||
syscon nr __NR_fcntl 0x0048 0x200005c 0x005c 0x005c -1
|
||||
syscon nr __NR_flock 0x0049 0x2000083 0x0083 0x0083 -1
|
||||
syscon nr __NR_fsync 0x004a 0x200005f 0x005f 0x005f -1
|
||||
syscon nr __NR_fdatasync 0x004b 0x20000bb 0x0226 0x005f -1
|
||||
syscon nr __NR_truncate 0x004c 0x20000c8 0x01df 0x00c8 -1
|
||||
syscon nr __NR_ftruncate 0x004d 0x20000c9 0x01e0 0x00c9 -1
|
||||
syscon nr __NR_getcwd 0x004f -1 0x0146 0x0130 -1
|
||||
syscon nr __NR_chdir 0x0050 0x200000c 0x000c 0x000c -1
|
||||
syscon nr __NR_fchdir 0x0051 0x200000d 0x000d 0x000d -1
|
||||
syscon nr __NR_rename 0x0052 0x2000080 0x0080 0x0080 -1
|
||||
syscon nr __NR_mkdir 0x0053 0x2000088 0x0088 0x0088 -1
|
||||
syscon nr __NR_rmdir 0x0054 0x2000089 0x0089 0x0089 -1
|
||||
syscon nr __NR_creat 0x0055 -1 0x0008 -1 -1
|
||||
syscon nr __NR_link 0x0056 0x2000009 0x0009 0x0009 -1
|
||||
syscon nr __NR_unlink 0x0057 0x200000a 0x000a 0x000a -1
|
||||
syscon nr __NR_symlink 0x0058 0x2000039 0x0039 0x0039 -1
|
||||
syscon nr __NR_readlink 0x0059 0x200003a 0x003a 0x003a -1
|
||||
syscon nr __NR_chmod 0x005a 0x200000f 0x000f 0x000f -1
|
||||
syscon nr __NR_fchmod 0x005b 0x200007c 0x007c 0x007c -1
|
||||
syscon nr __NR_chown 0x005c 0x2000010 0x0010 0x0010 -1
|
||||
syscon nr __NR_fchown 0x005d 0x200007b 0x007b 0x007b -1
|
||||
syscon nr __NR_lchown 0x005e 0x200016c 0x00fe 0x00fe -1
|
||||
syscon nr __NR_umask 0x005f 0x200003c 0x003c 0x003c -1
|
||||
syscon nr __NR_gettimeofday 0x0060 0x2000074 0x0074 0x0043 -1
|
||||
syscon nr __NR_getrlimit 0x0061 0x20000c2 0x00c2 0x00c2 -1
|
||||
syscon nr __NR_getrusage 0x0062 0x2000075 0x0075 0x0013 -1
|
||||
syscon nr __NR_sysinfo 0x0063 -1 -1 -1 -1
|
||||
syscon nr __NR_times 0x0064 -1 -1 -1 -1
|
||||
syscon nr __NR_ptrace 0x0065 0x200001a 0x001a 0x001a -1
|
||||
syscon nr __NR_syslog 0x0067 -1 -1 -1 -1
|
||||
syscon nr __NR_getuid 0x0066 0x2000018 0x0018 0x0018 -1
|
||||
syscon nr __NR_getgid 0x0068 0x200002f 0x002f 0x002f -1
|
||||
syscon nr __NR_getppid 0x006e 0x2000027 0x0027 0x0027 -1
|
||||
syscon nr __NR_getpgrp 0x006f 0x2000051 0x0051 0x0051 -1
|
||||
syscon nr __NR_setsid 0x0070 0x2000093 0x0093 0x0093 -1
|
||||
syscon nr __NR_getsid 0x007c 0x2000136 0x0136 0x00ff -1
|
||||
syscon nr __NR_getpgid 0x0079 0x2000097 0x00cf 0x00cf -1
|
||||
syscon nr __NR_setpgid 0x006d 0x2000052 0x0052 0x0052 -1
|
||||
syscon nr __NR_geteuid 0x006b 0x2000019 0x0019 0x0019 -1
|
||||
syscon nr __NR_getegid 0x006c 0x200002b 0x002b 0x002b -1
|
||||
syscon nr __NR_madvise 0x001c 0x200004b 0x004b 0x004b -1
|
||||
syscon nr __NR_sigprocmask 0x000e 0x2000030 0x0154 0x0030 -1
|
||||
syscon nr __NR_getgroups 0x0073 0x200004f 0x004f 0x004f -1
|
||||
syscon nr __NR_setgroups 0x0074 0x2000050 0x0050 0x0050 -1
|
||||
syscon nr __NR_setreuid 0x0071 0x200007e 0x007e 0x007e -1
|
||||
syscon nr __NR_setregid 0x0072 0x200007f 0x007f 0x007f -1
|
||||
syscon nr __NR_setuid 0x0069 0x2000017 0x0017 0x0017 -1
|
||||
syscon nr __NR_setgid 0x006a 0x20000b5 0x00b5 0x00b5 -1
|
||||
syscon nr __NR_setresuid 0x0075 -1 0x0137 0x011a -1
|
||||
syscon nr __NR_setresgid 0x0077 -1 0x0138 0x011c -1
|
||||
syscon nr __NR_getresuid 0x0076 -1 0x0168 0x0119 -1
|
||||
syscon nr __NR_getresgid 0x0078 -1 0x0169 0x011b -1
|
||||
syscon nr __NR_sigpending 0x007f 0x2000034 0x0034 0x0034 -1
|
||||
syscon nr __NR_sigsuspend 0x0082 0x200006f 0x0155 0x006f -1
|
||||
syscon nr __NR_sigaltstack 0x0083 0x2000035 0x0035 0x0120 -1
|
||||
syscon nr __NR_mknod 0x0085 0x200000e 0x000e 0x000e -1
|
||||
syscon nr __NR_mknodat 0x0103 -1 0x22ff 0x0140 -1
|
||||
syscon nr __NR_mkfifo -1 0x2000084 0x0084 0x0084 -1
|
||||
syscon nr __NR_mkfifoat -1 -1 0x01f1 0x013f -1
|
||||
syscon nr __NR_statfs 0x0089 0x2000159 0x022b 0x003f -1
|
||||
syscon nr __NR_fstatfs 0x008a 0x200015a 0x022c 0x0040 -1
|
||||
syscon nr __NR_getpriority 0x008c 0x2000064 0x0064 0x0064 -1
|
||||
syscon nr __NR_setpriority 0x008d 0x2000060 0x0060 0x0060 -1
|
||||
syscon nr __NR_mlock 0x0095 0x20000cb 0x00cb 0x00cb -1
|
||||
syscon nr __NR_munlock 0x0096 0x20000cc 0x00cc 0x00cc -1
|
||||
syscon nr __NR_mlockall 0x0097 0x2000144 0x0144 0x010f -1
|
||||
syscon nr __NR_munlockall 0x0098 0x2000145 0x0145 0x0110 -1
|
||||
syscon nr __NR_setrlimit 0x00a0 0x20000c3 0x00c3 0x00c3 -1
|
||||
syscon nr __NR_chroot 0x00a1 0x200003d 0x003d 0x003d -1
|
||||
syscon nr __NR_sync 0x00a2 0x2000024 0x0024 0x0024 -1
|
||||
syscon nr __NR_acct 0x00a3 0x2000033 0x0033 0x0033 -1
|
||||
syscon nr __NR_settimeofday 0x00a4 0x200007a 0x007a 0x0044 -1
|
||||
syscon nr __NR_mount 0x00a5 0x20000a7 0x0015 0x0015 -1
|
||||
syscon nr __NR_reboot 0x00a9 0x2000037 0x0037 0x0037 -1
|
||||
syscon nr __NR_quotactl 0x00b3 0x20000a5 0x0094 0x0094 -1
|
||||
syscon nr __NR_setfsuid 0x007a -1 -1 -1 -1
|
||||
syscon nr __NR_setfsgid 0x007b -1 -1 -1 -1
|
||||
syscon nr __NR_capget 0x007d -1 -1 -1 -1
|
||||
syscon nr __NR_capset 0x007e -1 -1 -1 -1
|
||||
syscon nr __NR_sigtimedwait 0x0080 -1 0x0159 -1 -1
|
||||
syscon nr __NR_rt_sigqueueinfo 0x0081 -1 -1 -1 -1
|
||||
syscon nr __NR_personality 0x0087 -1 -1 -1 -1
|
||||
syscon nr __NR_ustat 0x0088 -1 -1 -1 -1
|
||||
syscon nr __NR_sysfs 0x008b -1 -1 -1 -1
|
||||
syscon nr __NR_sched_setparam 0x008e -1 0x0147 -1 -1
|
||||
syscon nr __NR_sched_getparam 0x008f -1 0x0148 -1 -1
|
||||
syscon nr __NR_sched_setscheduler 0x0090 -1 0x0149 -1 -1
|
||||
syscon nr __NR_sched_getscheduler 0x0091 -1 0x014a -1 -1
|
||||
syscon nr __NR_sched_get_priority_max 0x0092 -1 0x014c -1 -1
|
||||
syscon nr __NR_sched_get_priority_min 0x0093 -1 0x014d -1 -1
|
||||
syscon nr __NR_sched_rr_get_interval 0x0094 -1 0x014e -1 -1
|
||||
syscon nr __NR_vhangup 0x0099 -1 -1 -1 -1
|
||||
syscon nr __NR_modify_ldt 0x009a -1 -1 -1 -1
|
||||
syscon nr __NR_pivot_root 0x009b -1 -1 -1 -1
|
||||
syscon nr __NR__sysctl 0x009c -1 -1 -1 -1
|
||||
syscon nr __NR_prctl 0x009d -1 -1 -1 -1
|
||||
syscon nr __NR_arch_prctl 0x009e -1 0x00a5 0x00a5 -1
|
||||
syscon nr __NR_adjtimex 0x009f -1 -1 -1 -1
|
||||
syscon nr __NR_umount2 0x00a6 -1 -1 -1 -1
|
||||
syscon nr __NR_swapon 0x00a7 0x2000055 0x0055 -1 -1
|
||||
syscon nr __NR_swapoff 0x00a8 -1 0x01a8 -1 -1
|
||||
syscon nr __NR_sethostname 0x00aa -1 0x0058 -1 -1
|
||||
syscon nr __NR_setdomainname 0x00ab -1 0x00a3 -1 -1
|
||||
syscon nr __NR_iopl 0x00ac -1 -1 -1 -1
|
||||
syscon nr __NR_ioperm 0x00ad -1 -1 -1 -1
|
||||
syscon nr __NR_init_module 0x00af -1 -1 -1 -1
|
||||
syscon nr __NR_delete_module 0x00b0 -1 -1 -1 -1
|
||||
syscon nr __NR_gettid 0x00ba 0x200011e -1 -1 -1
|
||||
syscon nr __NR_readahead 0x00bb -1 -1 -1 -1
|
||||
syscon nr __NR_setxattr 0x00bc 0x20000ec -1 -1 -1
|
||||
syscon nr __NR_fsetxattr 0x00be 0x20000ed -1 -1 -1
|
||||
syscon nr __NR_getxattr 0x00bf 0x20000ea -1 -1 -1
|
||||
syscon nr __NR_fgetxattr 0x00c1 0x20000eb -1 -1 -1
|
||||
syscon nr __NR_listxattr 0x00c2 0x20000f0 -1 -1 -1
|
||||
syscon nr __NR_flistxattr 0x00c4 0x20000f1 -1 -1 -1
|
||||
syscon nr __NR_removexattr 0x00c5 0x20000ee -1 -1 -1
|
||||
syscon nr __NR_fremovexattr 0x00c7 0x20000ef -1 -1 -1
|
||||
syscon nr __NR_lsetxattr 0x00bd -1 -1 -1 -1
|
||||
syscon nr __NR_lgetxattr 0x00c0 -1 -1 -1 -1
|
||||
syscon nr __NR_llistxattr 0x00c3 -1 -1 -1 -1
|
||||
syscon nr __NR_lremovexattr 0x00c6 -1 -1 -1 -1
|
||||
syscon nr __NR_sched_setaffinity 0x00cb -1 -1 -1 -1
|
||||
syscon nr __NR_sched_getaffinity 0x00cc -1 -1 -1 -1
|
||||
syscon nr __NR_cpuset_getaffinity -1 -1 0x01e7 -1 -1
|
||||
syscon nr __NR_cpuset_setaffinity -1 -1 0x01e8 -1 -1
|
||||
syscon nr __NR_io_setup 0x00ce -1 -1 -1 -1
|
||||
syscon nr __NR_io_destroy 0x00cf -1 -1 -1 -1
|
||||
syscon nr __NR_io_getevents 0x00d0 -1 -1 -1 -1
|
||||
syscon nr __NR_io_submit 0x00d1 -1 -1 -1 -1
|
||||
syscon nr __NR_io_cancel 0x00d2 -1 -1 -1 -1
|
||||
syscon nr __NR_lookup_dcookie 0x00d4 -1 -1 -1 -1
|
||||
syscon nr __NR_epoll_create 0x00d5 -1 -1 -1 -1
|
||||
syscon nr __NR_epoll_wait 0x00e8 -1 -1 -1 -1
|
||||
syscon nr __NR_epoll_ctl 0x00e9 -1 -1 -1 -1
|
||||
syscon nr __NR_getdents 0x00d9 -1 0x0110 0x0063 -1
|
||||
syscon nr __NR_set_tid_address 0x00da -1 -1 -1 -1
|
||||
syscon nr __NR_restart_syscall 0x00db -1 -1 -1 -1
|
||||
syscon nr __NR_semtimedop 0x00dc -1 -1 -1 -1
|
||||
syscon nr __NR_fadvise 0x00dd -1 0x0213 -1 -1
|
||||
syscon nr __NR_timer_create 0x00de -1 -1 -1 -1
|
||||
syscon nr __NR_timer_settime 0x00df -1 -1 -1 -1
|
||||
syscon nr __NR_timer_gettime 0x00e0 -1 -1 -1 -1
|
||||
syscon nr __NR_timer_getoverrun 0x00e1 -1 -1 -1 -1
|
||||
syscon nr __NR_timer_delete 0x00e2 -1 -1 -1 -1
|
||||
syscon nr __NR_clock_settime 0x00e3 -1 0x00e9 0x0058 -1
|
||||
syscon nr __NR_clock_gettime 0x00e4 -1 0x00e8 0x0057 -1
|
||||
syscon nr __NR_clock_getres 0x00e5 -1 0x00ea 0x0059 -1
|
||||
syscon nr __NR_clock_nanosleep 0x00e6 -1 0x00f4 -1 -1
|
||||
syscon nr __NR_tgkill 0x00ea -1 -1 -1 -1
|
||||
syscon nr __NR_mbind 0x00ed -1 -1 -1 -1
|
||||
syscon nr __NR_set_mempolicy 0x00ee -1 -1 -1 -1
|
||||
syscon nr __NR_get_mempolicy 0x00ef -1 -1 -1 -1
|
||||
syscon nr __NR_mq_open 0x00f0 -1 -1 -1 -1
|
||||
syscon nr __NR_mq_unlink 0x00f1 -1 -1 -1 -1
|
||||
syscon nr __NR_mq_timedsend 0x00f2 -1 -1 -1 -1
|
||||
syscon nr __NR_mq_timedreceive 0x00f3 -1 -1 -1 -1
|
||||
syscon nr __NR_mq_notify 0x00f4 -1 -1 -1 -1
|
||||
syscon nr __NR_mq_getsetattr 0x00f5 -1 -1 -1 -1
|
||||
syscon nr __NR_kexec_load 0x00f6 -1 -1 -1 -1
|
||||
syscon nr __NR_waitid 0x00f7 0x20000ad -1 -1 -1
|
||||
syscon nr __NR_add_key 0x00f8 -1 -1 -1 -1
|
||||
syscon nr __NR_request_key 0x00f9 -1 -1 -1 -1
|
||||
syscon nr __NR_keyctl 0x00fa -1 -1 -1 -1
|
||||
syscon nr __NR_ioprio_set 0x00fb -1 -1 -1 -1
|
||||
syscon nr __NR_ioprio_get 0x00fc -1 -1 -1 -1
|
||||
syscon nr __NR_inotify_init 0x00fd -1 -1 -1 -1
|
||||
syscon nr __NR_inotify_add_watch 0x00fe -1 -1 -1 -1
|
||||
syscon nr __NR_inotify_rm_watch 0x00ff -1 -1 -1 -1
|
||||
syscon nr __NR_openat 0x0101 0x20001cf 0x01f3 0x0141 -1
|
||||
syscon nr __NR_mkdirat 0x0102 0x20001db 0x01f0 0x013e -1
|
||||
syscon nr __NR_fchownat 0x0104 0x20001d4 0x01eb 0x013b -1
|
||||
syscon nr __NR_utime 0x0084 -1 -1 -1 -1
|
||||
syscon nr __NR_utimes 0x00eb 0x200008a 0x008a 0x004c -1
|
||||
syscon nr __NR_futimesat 0x0105 -1 0x01ee -1 -1
|
||||
syscon nr __NR_futimes -1 0x200008b 0x00ce 0x004d -1
|
||||
syscon nr __NR_futimens -1 -1 0x0222 0x0055 -1
|
||||
syscon nr __NR_fstatat 0x0106 0x20001d6 0x0228 0x002a -1
|
||||
syscon nr __NR_unlinkat 0x0107 0x20001d8 0x01f7 0x0145 -1
|
||||
syscon nr __NR_renameat 0x0108 0x20001d1 0x01f5 0x0143 -1
|
||||
syscon nr __NR_linkat 0x0109 0x20001d7 0x01ef 0x013d -1
|
||||
syscon nr __NR_symlinkat 0x010a 0x20001da 0x01f6 0x0144 -1
|
||||
syscon nr __NR_readlinkat 0x010b 0x20001d9 0x01f4 0x0142 -1
|
||||
syscon nr __NR_fchmodat 0x010c 0x20001d3 0x01ea 0x013a -1
|
||||
syscon nr __NR_faccessat 0x010d 0x20001d2 0x01e9 0x0139 -1
|
||||
syscon nr __NR_unshare 0x0110 -1 -1 -1 -1
|
||||
syscon nr __NR_splice 0x0113 -1 -1 -1 -1
|
||||
syscon nr __NR_tee 0x0114 -1 -1 -1 -1
|
||||
syscon nr __NR_sync_file_range 0x0115 -1 -1 -1 -1
|
||||
syscon nr __NR_vmsplice 0x0116 -1 -1 -1 -1
|
||||
syscon nr __NR_migrate_pages 0x0100 -1 -1 -1 -1
|
||||
syscon nr __NR_move_pages 0x0117 -1 -1 -1 -1
|
||||
syscon nr __NR_preadv 0x0127 -1 0x0121 0x010b -1
|
||||
syscon nr __NR_pwritev 0x0128 -1 0x0122 0x010c -1
|
||||
syscon nr __NR_utimensat 0x0118 -1 0x0223 0x0054 -1
|
||||
syscon nr __NR_fallocate 0x011d -1 -1 -1 -1
|
||||
syscon nr __NR_posix_fallocate -1 -1 0x0212 -1 -1
|
||||
syscon nr __NR_accept4 0x0120 -1 0x021d 0x005d -1
|
||||
syscon nr __NR_dup3 0x0124 -1 -1 0x0066 -1
|
||||
syscon nr __NR_pipe2 0x0125 -1 0x021e 0x0065 -1
|
||||
syscon nr __NR_epoll_pwait 0x0119 -1 -1 -1 -1
|
||||
syscon nr __NR_epoll_create1 0x0123 -1 -1 -1 -1
|
||||
syscon nr __NR_perf_event_open 0x012a -1 -1 -1 -1
|
||||
syscon nr __NR_inotify_init1 0x0126 -1 -1 -1 -1
|
||||
syscon nr __NR_rt_tgsigqueueinfo 0x0129 -1 -1 -1 -1
|
||||
syscon nr __NR_signalfd 0x011a -1 -1 -1 -1
|
||||
syscon nr __NR_signalfd4 0x0121 -1 -1 -1 -1
|
||||
syscon nr __NR_eventfd 0x011c -1 -1 -1 -1
|
||||
syscon nr __NR_eventfd2 0x0122 -1 -1 -1 -1
|
||||
syscon nr __NR_timerfd_create 0x011b -1 -1 -1 -1
|
||||
syscon nr __NR_timerfd_settime 0x011e -1 -1 -1 -1
|
||||
syscon nr __NR_timerfd_gettime 0x011f -1 -1 -1 -1
|
||||
syscon nr __NR_recvmmsg 0x012b -1 -1 -1 -1
|
||||
syscon nr __NR_fanotify_init 0x012c -1 -1 -1 -1
|
||||
syscon nr __NR_fanotify_mark 0x012d -1 -1 -1 -1
|
||||
syscon nr __NR_prlimit 0x012e -1 -1 -1 -1
|
||||
syscon nr __NR_name_to_handle_at 0x012f -1 -1 -1 -1
|
||||
syscon nr __NR_open_by_handle_at 0x0130 -1 -1 -1 -1
|
||||
syscon nr __NR_clock_adjtime 0x0131 -1 -1 -1 -1
|
||||
syscon nr __NR_syncfs 0x0132 -1 -1 -1 -1
|
||||
syscon nr __NR_sendmmsg 0x0133 -1 -1 -1 -1
|
||||
syscon nr __NR_setns 0x0134 -1 -1 -1 -1
|
||||
syscon nr __NR_getcpu 0x0135 -1 -1 -1 -1
|
||||
syscon nr __NR_process_vm_readv 0x0136 -1 -1 -1 -1
|
||||
syscon nr __NR_process_vm_writev 0x0137 -1 -1 -1 -1
|
||||
syscon nr __NR_kcmp 0x0138 -1 -1 -1 -1
|
||||
syscon nr __NR_finit_module 0x0139 -1 -1 -1 -1
|
||||
syscon nr __NR_sched_setattr 0x013a -1 -1 -1 -1
|
||||
syscon nr __NR_sched_getattr 0x013b -1 -1 -1 -1
|
||||
syscon nr __NR_renameat2 0x013c -1 -1 -1 -1
|
||||
syscon nr __NR_seccomp 0x013d -1 -1 -1 -1
|
||||
syscon nr __NR_getrandom 0x013e 0x20001f4 0x0233 0x0007 -1
|
||||
syscon nr __NR_memfd_create 0x013f -1 -1 -1 -1
|
||||
syscon nr __NR_kexec_file_load 0x0140 -1 -1 -1 -1
|
||||
syscon nr __NR_bpf 0x0141 -1 -1 -1 -1
|
||||
syscon nr __NR_execveat 0x0142 -1 -1 -1 -1
|
||||
syscon nr __NR_userfaultfd 0x0143 -1 -1 -1 -1
|
||||
syscon nr __NR_membarrier 0x0144 -1 -1 -1 -1
|
||||
syscon nr __NR_mlock2 0x0145 -1 -1 -1 -1
|
||||
syscon nr __NR_copy_file_range 0x0146 -1 -1 -1 -1
|
||||
syscon nr __NR_preadv2 0x0147 -1 -1 -1 -1
|
||||
syscon nr __NR_pwritev2 0x0148 -1 -1 -1 -1
|
||||
syscon nr __NR_pkey_mprotect 0x0149 -1 -1 -1 -1
|
||||
syscon nr __NR_pkey_alloc 0x014a -1 -1 -1 -1
|
||||
syscon nr __NR_pkey_free 0x014b -1 -1 -1 -1
|
||||
syscon nr __NR_statx 0x014c -1 -1 -1 -1
|
||||
syscon nr __NR_io_pgetevents 0x014d -1 -1 -1 -1
|
||||
syscon nr __NR_rseq 0x014e -1 -1 -1 -1
|
||||
syscon nr __NR_pidfd_send_signal 0x01a8 -1 -1 -1 -1
|
||||
syscon nr __NR_io_uring_setup 0x01a9 -1 -1 -1 -1
|
||||
syscon nr __NR_io_uring_enter 0x01aa -1 -1 -1 -1
|
||||
syscon nr __NR_io_uring_register 0x01ab -1 -1 -1 -1
|
||||
syscon nr __NR_pledge -1 -1 -1 0x006c -1
|
||||
syscon nr __NR_ktrace -1 -1 0x002d 0x002d -1
|
||||
syscon nr __NR_kqueue -1 0x200016a 0x016a 0x010d -1
|
||||
syscon nr __NR_kevent -1 0x2000171 0x0230 0x0048 -1
|
||||
syscon nr __NR_revoke -1 0x2000038 0x0038 0x0038 -1
|
||||
syscon nr __NR_setlogin -1 0x2000032 0x0032 0x0032 -1
|
||||
syscon nr __NR_getfh -1 0x20000a1 0x00a1 0x00a1 -1
|
||||
syscon nr __NR_chflags -1 0x2000022 0x0022 0x0022 -1
|
||||
syscon nr __NR_getfsstat -1 0x200015b 0x022d 0x003e -1
|
||||
syscon nr __NR_nfssvc -1 0x200009b 0x009b 0x009b -1
|
||||
syscon nr __NR_adjtime -1 0x200008c 0x008c 0x008c -1
|
||||
syscon nr __NR_fchflags -1 0x2000023 0x0023 0x0023 -1
|
||||
syscon nr __NR_seteuid -1 0x20000b7 0x00b7 0x00b7 -1
|
||||
syscon nr __NR_setegid -1 0x20000b6 0x00b6 0x00b6 -1
|
||||
syscon nr __NR_fpathconf -1 0x20000c0 0x00c0 0x00c0 -1
|
||||
syscon nr __NR_fhopen -1 0x20000f8 0x012a 0x0108 -1
|
||||
syscon nr __NR_unmount -1 0x200009f 0x0016 0x0016 -1
|
||||
syscon nr __NR_issetugid -1 0x2000147 0x00fd 0x00fd -1
|
||||
syscon nr __NR_minherit -1 0x20000fa 0x00fa 0x00fa -1
|
||||
syscon nr __NR_pathconf -1 0x20000bf 0x00bf 0x00bf -1
|
||||
syscon nr __NR_sysctl -1 0x20000ca -1 0x00ca -1
|
||||
syscon nr __NR_ntp_adjtime -1 0x200020f 0x00b0 -1 -1
|
||||
syscon nr __NR_ntp_gettime -1 0x2000210 0x00f8 -1 -1
|
||||
syscon nr __NR_shm_unlink -1 0x200010b 0x01e3 -1 -1
|
||||
syscon nr __NR_shm_open -1 0x200010a 0x01e2 -1 -1
|
||||
syscon nr __NR_aio_read -1 0x200013e 0x013e -1 -1
|
||||
syscon nr __NR_aio_suspend -1 0x200013b 0x013b -1 -1
|
||||
syscon nr __NR_aio_cancel -1 0x200013c 0x013c -1 -1
|
||||
syscon nr __NR_aio_fsync -1 0x2000139 0x01d1 -1 -1
|
||||
syscon nr __NR_aio_error -1 0x200013d 0x013d -1 -1
|
||||
syscon nr __NR_aio_return -1 0x200013a 0x013a -1 -1
|
||||
syscon nr __NR_aio_write -1 0x200013f 0x013f -1 -1
|
||||
syscon nr __NR_aio_waitcomplete -1 -1 0x0167 -1 -1
|
||||
syscon nr __NR_aio_suspend_nocancel -1 0x20001a5 -1 -1 -1
|
||||
syscon nr __NR_aio_mlock -1 -1 0x021f -1 -1
|
||||
syscon nr __NR_sigwait -1 0x200014a 0x01ad -1 -1
|
||||
syscon nr __NR_undelete -1 0x20000cd 0x00cd -1 -1
|
||||
syscon nr __NR_getlogin -1 0x2000031 0x0031 -1 -1
|
||||
syscon nr __NR_getdtablesize -1 0x2000059 0x0059 -1 -1
|
||||
syscon nr __NR_setauid -1 0x2000162 0x01c0 -1 -1
|
||||
syscon nr __NR_audit -1 0x200015e 0x01bd -1 -1
|
||||
syscon nr __NR_auditctl -1 0x2000167 0x01c5 -1 -1
|
||||
syscon nr __NR_getaudit_addr -1 0x2000165 0x01c3 -1 -1
|
||||
syscon nr __NR_getdirentries -1 0x2000158 0x022a -1 -1
|
||||
syscon nr __NR_lio_listio -1 0x2000140 0x0140 -1 -1
|
||||
syscon nr __NR_setaudit_addr -1 0x2000166 0x01c4 -1 -1
|
||||
syscon nr __NR_getauid -1 0x2000161 0x01bf -1 -1
|
||||
syscon nr __NR_semsys -1 0x20000fb 0x00a9 -1 -1
|
||||
syscon nr __NR_auditon -1 0x200015f 0x01be -1 -1
|
||||
syscon nr __NR_msgsys -1 0x20000fc 0x00aa -1 -1
|
||||
syscon nr __NR_shmsys -1 0x20000fd 0x00ab -1 -1
|
||||
syscon nr __NR_fhstat -1 -1 0x0229 0x0126 -1
|
||||
syscon nr __NR_chflagsat -1 -1 0x021c 0x006b -1
|
||||
syscon nr __NR_profil -1 -1 0x002c 0x002c -1
|
||||
syscon nr __NR_fhstatfs -1 -1 0x022e 0x0041 -1
|
||||
syscon nr __NR_utrace -1 -1 0x014f 0x00d1 -1
|
||||
syscon nr __NR_closefrom -1 -1 0x01fd 0x011f -1
|
||||
syscon nr __NR_pthread_markcancel -1 0x200014c -1 -1 -1
|
||||
syscon nr __NR_pthread_kill -1 0x2000148 -1 -1 -1
|
||||
syscon nr __NR_pthread_fchdir -1 0x200015d -1 -1 -1
|
||||
syscon nr __NR_pthread_sigmask -1 0x2000149 -1 -1 -1
|
||||
syscon nr __NR_pthread_chdir -1 0x200015c -1 -1 -1
|
||||
syscon nr __NR_pthread_canceled -1 0x200014d -1 -1 -1
|
||||
syscon nr __NR_disable_threadsignal -1 0x200014b -1 -1 -1
|
||||
syscon nr __NR_abort_with_payload -1 0x2000209 -1 -1 -1
|
||||
syscon nr __NR_accept_nocancel -1 0x2000194 -1 -1 -1
|
||||
syscon nr __NR_access_extended -1 0x200011c -1 -1 -1
|
||||
syscon nr __NR_audit_session_join -1 0x20001ad -1 -1 -1
|
||||
syscon nr __NR_audit_session_port -1 0x20001b0 -1 -1 -1
|
||||
syscon nr __NR_audit_session_self -1 0x20001ac -1 -1 -1
|
||||
syscon nr __NR_bsdthread_create -1 0x2000168 -1 -1 -1
|
||||
syscon nr __NR_bsdthread_ctl -1 0x20001de -1 -1 -1
|
||||
syscon nr __NR_bsdthread_register -1 0x200016e -1 -1 -1
|
||||
syscon nr __NR_bsdthread_terminate -1 0x2000169 -1 -1 -1
|
||||
syscon nr __NR_change_fdguard_np -1 0x20001bc -1 -1 -1
|
||||
syscon nr __NR_chmod_extended -1 0x200011a -1 -1 -1
|
||||
syscon nr __NR_clonefileat -1 0x20001ce -1 -1 -1
|
||||
syscon nr __NR_close_nocancel -1 0x200018f -1 -1 -1
|
||||
syscon nr __NR_coalition -1 0x20001ca -1 -1 -1
|
||||
syscon nr __NR_coalition_info -1 0x20001cb -1 -1 -1
|
||||
syscon nr __NR_connect_nocancel -1 0x2000199 -1 -1 -1
|
||||
syscon nr __NR_connectx -1 0x20001bf -1 -1 -1
|
||||
syscon nr __NR_copyfile -1 0x20000e3 -1 -1 -1
|
||||
syscon nr __NR_csops -1 0x20000a9 -1 -1 -1
|
||||
syscon nr __NR_csops_audittoken -1 0x20000aa -1 -1 -1
|
||||
syscon nr __NR_csrctl -1 0x20001e3 -1 -1 -1
|
||||
syscon nr __NR_delete -1 0x20000e2 -1 -1 -1
|
||||
syscon nr __NR_disconnectx -1 0x20001c0 -1 -1 -1
|
||||
syscon nr __NR_exchangedata -1 0x20000df -1 -1 -1
|
||||
syscon nr __NR_fchmod_extended -1 0x200011b -1 -1 -1
|
||||
syscon nr __NR_fclonefileat -1 0x2000205 -1 -1 -1
|
||||
syscon nr __NR_fcntl_nocancel -1 0x2000196 -1 -1 -1
|
||||
syscon nr __NR_ffsctl -1 0x20000f5 -1 -1 -1
|
||||
syscon nr __NR_fgetattrlist -1 0x20000e4 -1 -1 -1
|
||||
syscon nr __NR_fileport_makefd -1 0x20001af -1 -1 -1
|
||||
syscon nr __NR_fileport_makeport -1 0x20001ae -1 -1 -1
|
||||
syscon nr __NR_fmount -1 0x200020e -1 -1 -1
|
||||
syscon nr __NR_fs_snapshot -1 0x2000206 -1 -1 -1
|
||||
syscon nr __NR_fsctl -1 0x20000f2 -1 -1 -1
|
||||
syscon nr __NR_fsetattrlist -1 0x20000e5 -1 -1 -1
|
||||
syscon nr __NR_fstat_extended -1 0x2000119 -1 -1 -1
|
||||
syscon nr __NR_fsync_nocancel -1 0x2000198 -1 -1 -1
|
||||
syscon nr __NR_getattrlist -1 0x20000dc -1 -1 -1
|
||||
syscon nr __NR_getattrlistat -1 0x20001dc -1 -1 -1
|
||||
syscon nr __NR_getattrlistbulk -1 0x20001cd -1 -1 -1
|
||||
syscon nr __NR_getdirentriesattr -1 0x20000de -1 -1 -1
|
||||
syscon nr __NR_gethostuuid -1 0x200008e -1 -1 -1
|
||||
syscon nr __NR_getsgroups -1 0x2000120 -1 -1 -1
|
||||
syscon nr __NR_getwgroups -1 0x2000122 -1 -1 -1
|
||||
syscon nr __NR_grab_pgo_data -1 0x20001ed -1 -1 -1
|
||||
syscon nr __NR_guarded_close_np -1 0x20001ba -1 -1 -1
|
||||
syscon nr __NR_guarded_kqueue_np -1 0x20001bb -1 -1 -1
|
||||
syscon nr __NR_guarded_open_np -1 0x20001b9 -1 -1 -1
|
||||
syscon nr __NR_guarded_pwrite_np -1 0x20001e6 -1 -1 -1
|
||||
syscon nr __NR_guarded_write_np -1 0x20001e5 -1 -1 -1
|
||||
syscon nr __NR_guarded_writev_np -1 0x20001e7 -1 -1 -1
|
||||
syscon nr __NR_identitysvc -1 0x2000125 -1 -1 -1
|
||||
syscon nr __NR_initgroups -1 0x20000f3 -1 -1 -1
|
||||
syscon nr __NR_iopolicysys -1 0x2000142 -1 -1 -1
|
||||
syscon nr __NR_kas_info -1 0x20001b7 -1 -1 -1
|
||||
syscon nr __NR_kdebug_trace -1 0x20000b3 -1 -1 -1
|
||||
syscon nr __NR_kdebug_trace_string -1 0x20000b2 -1 -1 -1
|
||||
syscon nr __NR_kdebug_typefilter -1 0x20000b1 -1 -1 -1
|
||||
syscon nr __NR_kevent_id -1 0x2000177 -1 -1 -1
|
||||
syscon nr __NR_kevent_qos -1 0x2000176 -1 -1 -1
|
||||
syscon nr __NR_ledger -1 0x2000175 -1 -1 -1
|
||||
syscon nr __NR_lstat_extended -1 0x2000156 -1 -1 -1
|
||||
syscon nr __NR_memorystatus_control -1 0x20001b8 -1 -1 -1
|
||||
syscon nr __NR_memorystatus_get_level -1 0x20001c5 -1 -1 -1
|
||||
syscon nr __NR_microstackshot -1 0x20001ec -1 -1 -1
|
||||
syscon nr __NR_mkdir_extended -1 0x2000124 -1 -1 -1
|
||||
syscon nr __NR_mkfifo_extended -1 0x2000123 -1 -1 -1
|
||||
syscon nr __NR_modwatch -1 0x20000e9 -1 -1 -1
|
||||
syscon nr __NR_mremap_encrypted -1 0x20001e9 -1 -1 -1
|
||||
syscon nr __NR_msgrcv_nocancel -1 0x20001a3 -1 -1 -1
|
||||
syscon nr __NR_msgsnd_nocancel -1 0x20001a2 -1 -1 -1
|
||||
syscon nr __NR_msync_nocancel -1 0x2000195 -1 -1 -1
|
||||
syscon nr __NR_necp_client_action -1 0x20001f6 -1 -1 -1
|
||||
syscon nr __NR_necp_match_policy -1 0x20001cc -1 -1 -1
|
||||
syscon nr __NR_necp_open -1 0x20001f5 -1 -1 -1
|
||||
syscon nr __NR_necp_session_action -1 0x200020b -1 -1 -1
|
||||
syscon nr __NR_necp_session_open -1 0x200020a -1 -1 -1
|
||||
syscon nr __NR_net_qos_guideline -1 0x200020d -1 -1 -1
|
||||
syscon nr __NR_netagent_trigger -1 0x20001ea -1 -1 -1
|
||||
syscon nr __NR_nfsclnt -1 0x20000f7 -1 -1 -1
|
||||
syscon nr __NR_open_dprotected_np -1 0x20000d8 -1 -1 -1
|
||||
syscon nr __NR_open_extended -1 0x2000115 -1 -1 -1
|
||||
syscon nr __NR_open_nocancel -1 0x200018e -1 -1 -1
|
||||
syscon nr __NR_openat_nocancel -1 0x20001d0 -1 -1 -1
|
||||
syscon nr __NR_openbyid_np -1 0x20001df -1 -1 -1
|
||||
syscon nr __NR_os_fault_with_payload -1 0x2000211 -1 -1 -1
|
||||
syscon nr __NR_peeloff -1 0x20001c1 -1 -1 -1
|
||||
syscon nr __NR_persona -1 0x20001ee -1 -1 -1
|
||||
syscon nr __NR_pid_hibernate -1 0x20001b3 -1 -1 -1
|
||||
syscon nr __NR_pid_resume -1 0x20001b2 -1 -1 -1
|
||||
syscon nr __NR_pid_shutdown_sockets -1 0x20001b4 -1 -1 -1
|
||||
syscon nr __NR_pid_suspend -1 0x20001b1 -1 -1 -1
|
||||
syscon nr __NR_poll_nocancel -1 0x20001a1 -1 -1 -1
|
||||
syscon nr __NR_pread_nocancel -1 0x200019e -1 -1 -1
|
||||
syscon nr __NR_proc_info -1 0x2000150 -1 -1 -1
|
||||
syscon nr __NR_proc_rlimit_control -1 0x20001be -1 -1 -1
|
||||
syscon nr __NR_proc_trace_log -1 0x20001dd -1 -1 -1
|
||||
syscon nr __NR_proc_uuid_policy -1 0x20001c4 -1 -1 -1
|
||||
syscon nr __NR_process_policy -1 0x2000143 -1 -1 -1
|
||||
syscon nr __NR_pselect_nocancel -1 0x200018b -1 -1 -1
|
||||
syscon nr __NR_psynch_cvbroad -1 0x200012f -1 -1 -1
|
||||
syscon nr __NR_psynch_cvclrprepost -1 0x2000138 -1 -1 -1
|
||||
syscon nr __NR_psynch_cvsignal -1 0x2000130 -1 -1 -1
|
||||
syscon nr __NR_psynch_mutexdrop -1 0x200012e -1 -1 -1
|
||||
syscon nr __NR_psynch_mutexwait -1 0x200012d -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_downgrade -1 0x200012b -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_longrdlock -1 0x2000129 -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_rdlock -1 0x2000132 -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_unlock -1 0x2000134 -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_unlock2 -1 0x2000135 -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_upgrade -1 0x200012c -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_wrlock -1 0x2000133 -1 -1 -1
|
||||
syscon nr __NR_psynch_rw_yieldwrlock -1 0x200012a -1 -1 -1
|
||||
syscon nr __NR_pwrite_nocancel -1 0x200019f -1 -1 -1
|
||||
syscon nr __NR_read_nocancel -1 0x200018c -1 -1 -1
|
||||
syscon nr __NR_readv_nocancel -1 0x200019b -1 -1 -1
|
||||
syscon nr __NR_recvfrom_nocancel -1 0x2000193 -1 -1 -1
|
||||
syscon nr __NR_recvmsg_nocancel -1 0x2000191 -1 -1 -1
|
||||
syscon nr __NR_recvmsg_x -1 0x20001e0 -1 -1 -1
|
||||
syscon nr __NR_renameatx_np -1 0x20001e8 -1 -1 -1
|
||||
syscon nr __NR_searchfs -1 0x20000e1 -1 -1 -1
|
||||
syscon nr __NR_select_nocancel -1 0x2000197 -1 -1 -1
|
||||
syscon nr __NR_sem_close -1 0x200010d -1 -1 -1
|
||||
syscon nr __NR_sem_open -1 0x200010c -1 -1 -1
|
||||
syscon nr __NR_sem_post -1 0x2000111 -1 -1 -1
|
||||
syscon nr __NR_sem_trywait -1 0x2000110 -1 -1 -1
|
||||
syscon nr __NR_sem_unlink -1 0x200010e -1 -1 -1
|
||||
syscon nr __NR_sem_wait -1 0x200010f -1 -1 -1
|
||||
syscon nr __NR_sem_wait_nocancel -1 0x20001a4 -1 -1 -1
|
||||
syscon nr __NR_sendmsg_nocancel -1 0x2000192 -1 -1 -1
|
||||
syscon nr __NR_sendmsg_x -1 0x20001e1 -1 -1 -1
|
||||
syscon nr __NR_sendto_nocancel -1 0x200019d -1 -1 -1
|
||||
syscon nr __NR_setattrlist -1 0x20000dd -1 -1 -1
|
||||
syscon nr __NR_setattrlistat -1 0x200020c -1 -1 -1
|
||||
syscon nr __NR_setprivexec -1 0x2000098 -1 -1 -1
|
||||
syscon nr __NR_setsgroups -1 0x200011f -1 -1 -1
|
||||
syscon nr __NR_settid -1 0x200011d -1 -1 -1
|
||||
syscon nr __NR_settid_with_pid -1 0x2000137 -1 -1 -1
|
||||
syscon nr __NR_setwgroups -1 0x2000121 -1 -1 -1
|
||||
syscon nr __NR_sfi_ctl -1 0x20001c8 -1 -1 -1
|
||||
syscon nr __NR_sfi_pidctl -1 0x20001c9 -1 -1 -1
|
||||
syscon nr __NR_shared_region_check_np -1 0x2000126 -1 -1 -1
|
||||
syscon nr __NR_sigsuspend_nocancel -1 0x200019a -1 -1 -1
|
||||
syscon nr __NR_socket_delegate -1 0x20001c2 -1 -1 -1
|
||||
syscon nr __NR_stat_extended -1 0x2000155 -1 -1 -1
|
||||
syscon nr __NR_sysctlbyname -1 0x2000112 -1 -1 -1
|
||||
syscon nr __NR_system_override -1 0x20001c6 -1 -1 -1
|
||||
syscon nr __NR_telemetry -1 0x20001c3 -1 -1 -1
|
||||
syscon nr __NR_terminate_with_payload -1 0x2000208 -1 -1 -1
|
||||
syscon nr __NR_thread_selfcounts -1 0x20000ba -1 -1 -1
|
||||
syscon nr __NR_thread_selfid -1 0x2000174 -1 -1 -1
|
||||
syscon nr __NR_thread_selfusage -1 0x20001e2 -1 -1 -1
|
||||
syscon nr __NR_ulock_wait -1 0x2000203 -1 -1 -1
|
||||
syscon nr __NR_ulock_wake -1 0x2000204 -1 -1 -1
|
||||
syscon nr __NR_umask_extended -1 0x2000116 -1 -1 -1
|
||||
syscon nr __NR_usrctl -1 0x20001bd -1 -1 -1
|
||||
syscon nr __NR_vfs_purge -1 0x20001c7 -1 -1 -1
|
||||
syscon nr __NR_vm_pressure_monitor -1 0x2000128 -1 -1 -1
|
||||
syscon nr __NR_wait4_nocancel -1 0x2000190 -1 -1 -1
|
||||
syscon nr __NR_waitevent -1 0x20000e8 -1 -1 -1
|
||||
syscon nr __NR_waitid_nocancel -1 0x20001a0 -1 -1 -1
|
||||
syscon nr __NR_watchevent -1 0x20000e7 -1 -1 -1
|
||||
syscon nr __NR_work_interval_ctl -1 0x20001f3 -1 -1 -1
|
||||
syscon nr __NR_workq_kernreturn -1 0x2000170 -1 -1 -1
|
||||
syscon nr __NR_workq_open -1 0x200016f -1 -1 -1
|
||||
syscon nr __NR_write_nocancel -1 0x200018d -1 -1 -1
|
||||
syscon nr __NR_writev_nocancel -1 0x200019c -1 -1 -1
|
||||
syscon nr __NR_abort2 -1 -1 0x01cf -1 -1
|
||||
syscon nr __NR_afs3_syscall -1 -1 0x0179 -1 -1
|
||||
syscon nr __NR_bindat -1 -1 0x021a -1 -1
|
||||
syscon nr __NR_break -1 -1 0x0011 -1 -1
|
||||
syscon nr __NR_cap_enter -1 -1 0x0204 -1 -1
|
||||
syscon nr __NR_cap_fcntls_get -1 -1 0x0219 -1 -1
|
||||
syscon nr __NR_cap_fcntls_limit -1 -1 0x0218 -1 -1
|
||||
syscon nr __NR_cap_getmode -1 -1 0x0205 -1 -1
|
||||
syscon nr __NR_cap_ioctls_get -1 -1 0x0217 -1 -1
|
||||
syscon nr __NR_cap_ioctls_limit -1 -1 0x0216 -1 -1
|
||||
syscon nr __NR_cap_rights_limit -1 -1 0x0215 -1 -1
|
||||
syscon nr __NR_clock_getcpuclockid2 -1 -1 0x00f7 -1 -1
|
||||
syscon nr __NR_connectat -1 -1 0x021b -1 -1
|
||||
syscon nr __NR_cpuset -1 -1 0x01e4 -1 -1
|
||||
syscon nr __NR_cpuset_getdomain -1 -1 0x0231 -1 -1
|
||||
syscon nr __NR_cpuset_getid -1 -1 0x01e6 -1 -1
|
||||
syscon nr __NR_cpuset_setdomain -1 -1 0x0232 -1 -1
|
||||
syscon nr __NR_cpuset_setid -1 -1 0x01e5 -1 -1
|
||||
syscon nr __NR_eaccess -1 -1 0x0178 -1 -1
|
||||
syscon nr __NR_extattr_delete_fd -1 -1 0x0175 -1 -1
|
||||
syscon nr __NR_extattr_delete_file -1 -1 0x0166 -1 -1
|
||||
syscon nr __NR_extattr_delete_link -1 -1 0x019e -1 -1
|
||||
syscon nr __NR_extattr_get_fd -1 -1 0x0174 -1 -1
|
||||
syscon nr __NR_extattr_get_file -1 -1 0x0165 -1 -1
|
||||
syscon nr __NR_extattr_get_link -1 -1 0x019d -1 -1
|
||||
syscon nr __NR_extattr_list_fd -1 -1 0x01b5 -1 -1
|
||||
syscon nr __NR_extattr_list_file -1 -1 0x01b6 -1 -1
|
||||
syscon nr __NR_extattr_list_link -1 -1 0x01b7 -1 -1
|
||||
syscon nr __NR_extattr_set_fd -1 -1 0x0173 -1 -1
|
||||
syscon nr __NR_extattr_set_file -1 -1 0x0164 -1 -1
|
||||
syscon nr __NR_extattr_set_link -1 -1 0x019c -1 -1
|
||||
syscon nr __NR_extattrctl -1 -1 0x0163 -1 -1
|
||||
syscon nr __NR_fexecve -1 -1 0x01ec -1 -1
|
||||
syscon nr __NR_ffclock_getcounter -1 -1 0x00f1 -1 -1
|
||||
syscon nr __NR_ffclock_getestimate -1 -1 0x00f3 -1 -1
|
||||
syscon nr __NR_ffclock_setestimate -1 -1 0x00f2 -1 -1
|
||||
syscon nr __NR_fhlink -1 -1 0x0235 -1 -1
|
||||
syscon nr __NR_fhlinkat -1 -1 0x0236 -1 -1
|
||||
syscon nr __NR_fhreadlink -1 -1 0x0237 -1 -1
|
||||
syscon nr __NR_getaudit -1 -1 0x01c1 -1 -1
|
||||
syscon nr __NR_getcontext -1 -1 0x01a5 -1 -1
|
||||
syscon nr __NR_getfhat -1 -1 0x0234 -1 -1
|
||||
syscon nr __NR_gethostid -1 -1 0x008e -1 -1
|
||||
syscon nr __NR_getkerninfo -1 -1 0x003f -1 -1
|
||||
syscon nr __NR_getloginclass -1 -1 0x020b -1 -1
|
||||
syscon nr __NR_getpagesize -1 -1 0x0040 -1 -1
|
||||
syscon nr __NR_gssd_syscall -1 -1 0x01f9 -1 -1
|
||||
syscon nr __NR_jail -1 -1 0x0152 -1 -1
|
||||
syscon nr __NR_jail_attach -1 -1 0x01b4 -1 -1
|
||||
syscon nr __NR_jail_get -1 -1 0x01fa -1 -1
|
||||
syscon nr __NR_jail_remove -1 -1 0x01fc -1 -1
|
||||
syscon nr __NR_jail_set -1 -1 0x01fb -1 -1
|
||||
syscon nr __NR_kenv -1 -1 0x0186 -1 -1
|
||||
syscon nr __NR_kldfind -1 -1 0x0132 -1 -1
|
||||
syscon nr __NR_kldfirstmod -1 -1 0x0135 -1 -1
|
||||
syscon nr __NR_kldload -1 -1 0x0130 -1 -1
|
||||
syscon nr __NR_kldnext -1 -1 0x0133 -1 -1
|
||||
syscon nr __NR_kldstat -1 -1 0x0134 -1 -1
|
||||
syscon nr __NR_kldsym -1 -1 0x0151 -1 -1
|
||||
syscon nr __NR_kldunload -1 -1 0x0131 -1 -1
|
||||
syscon nr __NR_kldunloadf -1 -1 0x01bc -1 -1
|
||||
syscon nr __NR_kmq_notify -1 -1 0x01cd -1 -1
|
||||
syscon nr __NR_kmq_setattr -1 -1 0x01ca -1 -1
|
||||
syscon nr __NR_kmq_timedreceive -1 -1 0x01cb -1 -1
|
||||
syscon nr __NR_kmq_timedsend -1 -1 0x01cc -1 -1
|
||||
syscon nr __NR_kmq_unlink -1 -1 0x01ce -1 -1
|
||||
syscon nr __NR_ksem_close -1 -1 0x0190 -1 -1
|
||||
syscon nr __NR_ksem_destroy -1 -1 0x0198 -1 -1
|
||||
syscon nr __NR_ksem_getvalue -1 -1 0x0197 -1 -1
|
||||
syscon nr __NR_ksem_init -1 -1 0x0194 -1 -1
|
||||
syscon nr __NR_ksem_open -1 -1 0x0195 -1 -1
|
||||
syscon nr __NR_ksem_post -1 -1 0x0191 -1 -1
|
||||
syscon nr __NR_ksem_timedwait -1 -1 0x01b9 -1 -1
|
||||
syscon nr __NR_ksem_trywait -1 -1 0x0193 -1 -1
|
||||
syscon nr __NR_ksem_unlink -1 -1 0x0196 -1 -1
|
||||
syscon nr __NR_ksem_wait -1 -1 0x0192 -1 -1
|
||||
syscon nr __NR_ktimer_create -1 -1 0x00eb -1 -1
|
||||
syscon nr __NR_ktimer_delete -1 -1 0x00ec -1 -1
|
||||
syscon nr __NR_ktimer_getoverrun -1 -1 0x00ef -1 -1
|
||||
syscon nr __NR_ktimer_gettime -1 -1 0x00ee -1 -1
|
||||
syscon nr __NR_ktimer_settime -1 -1 0x00ed -1 -1
|
||||
syscon nr __NR_lchflags -1 -1 0x0187 -1 -1
|
||||
syscon nr __NR_lchmod -1 -1 0x0112 -1 -1
|
||||
syscon nr __NR_lgetfh -1 -1 0x00a0 -1 -1
|
||||
syscon nr __NR_lpathconf -1 -1 0x0201 -1 -1
|
||||
syscon nr __NR_lutimes -1 -1 0x0114 -1 -1
|
||||
syscon nr __NR_mac_syscall -1 -1 0x018a -1 -1
|
||||
syscon nr __NR_modfind -1 -1 0x012f -1 -1
|
||||
syscon nr __NR_modfnext -1 -1 0x012e -1 -1
|
||||
syscon nr __NR_modnext -1 -1 0x012c -1 -1
|
||||
syscon nr __NR_modstat -1 -1 0x012d -1 -1
|
||||
syscon nr __NR_nfstat -1 -1 0x0117 -1 -1
|
||||
syscon nr __NR_nlm_syscall -1 -1 0x009a -1 -1
|
||||
syscon nr __NR_nlstat -1 -1 0x0118 -1 -1
|
||||
syscon nr __NR_nmount -1 -1 0x017a -1 -1
|
||||
syscon nr __NR_nnpfs_syscall -1 -1 0x0153 -1 -1
|
||||
syscon nr __NR_nstat -1 -1 0x0116 -1 -1
|
||||
syscon nr __NR_pdfork -1 -1 0x0206 -1 -1
|
||||
syscon nr __NR_pdgetpid -1 -1 0x0208 -1 -1
|
||||
syscon nr __NR_pdkill -1 -1 0x0207 -1 -1
|
||||
syscon nr __NR_posix_openpt -1 -1 0x01f8 -1 -1
|
||||
syscon nr __NR_procctl -1 -1 0x0220 -1 -1
|
||||
syscon nr __NR_psynch_cvwait -1 0x2000131 -1 -1 -1
|
||||
syscon nr __NR_quota -1 -1 0x0095 -1 -1
|
||||
syscon nr __NR_rctl_add_rule -1 -1 0x0210 -1 -1
|
||||
syscon nr __NR_rctl_get_limits -1 -1 0x020f -1 -1
|
||||
syscon nr __NR_rctl_get_racct -1 -1 0x020d -1 -1
|
||||
syscon nr __NR_rctl_get_rules -1 -1 0x020e -1 -1
|
||||
syscon nr __NR_rctl_remove_rule -1 -1 0x0211 -1 -1
|
||||
syscon nr __NR_recv -1 -1 0x0066 -1 -1
|
||||
syscon nr __NR_rfork -1 -1 0x00fb -1 -1
|
||||
syscon nr __NR_rtprio -1 -1 0x00a6 -1 -1
|
||||
syscon nr __NR_rtprio_thread -1 -1 0x01d2 -1 -1
|
||||
syscon nr __NR_send -1 -1 0x0065 -1 -1
|
||||
syscon nr __NR_setaudit -1 -1 0x01c2 -1 -1
|
||||
syscon nr __NR_setcontext -1 -1 0x01a6 -1 -1
|
||||
syscon nr __NR_setfib -1 -1 0x00af -1 -1
|
||||
syscon nr __NR_sethostid -1 -1 0x008f -1 -1
|
||||
syscon nr __NR_setloginclass -1 -1 0x020c -1 -1
|
||||
syscon nr __NR_sigblock -1 -1 0x006d -1 -1
|
||||
syscon nr __NR_sigqueue -1 -1 0x01c8 -1 -1
|
||||
syscon nr __NR_sigsetmask -1 -1 0x006e -1 -1
|
||||
syscon nr __NR_sigstack -1 -1 0x0070 -1 -1
|
||||
syscon nr __NR_sigvec -1 -1 0x006c -1 -1
|
||||
syscon nr __NR_sigwaitinfo -1 -1 0x015a -1 -1
|
||||
syscon nr __NR_sstk -1 -1 0x0046 -1 -1
|
||||
syscon nr __NR_swapcontext -1 -1 0x01a7 -1 -1
|
||||
syscon nr __NR_thr_create -1 -1 0x01ae -1 -1
|
||||
syscon nr __NR_thr_exit -1 -1 0x01af -1 -1
|
||||
syscon nr __NR_thr_kill -1 -1 0x01b1 -1 -1
|
||||
syscon nr __NR_thr_kill2 -1 -1 0x01e1 -1 -1
|
||||
syscon nr __NR_thr_new -1 -1 0x01c7 -1 -1
|
||||
syscon nr __NR_thr_self -1 -1 0x01b0 -1 -1
|
||||
syscon nr __NR_thr_set_name -1 -1 0x01d0 -1 -1
|
||||
syscon nr __NR_thr_suspend -1 -1 0x01ba -1 -1
|
||||
syscon nr __NR_thr_wake -1 -1 0x01bb -1 -1
|
||||
syscon nr __NR_uuidgen -1 -1 0x0188 -1 -1
|
||||
syscon nr __NR_vadvise -1 -1 0x0048 -1 -1
|
||||
syscon nr __NR_wait -1 -1 0x0054 -1 -1
|
||||
syscon nr __NR_wait6 -1 -1 0x0214 -1 -1
|
||||
syscon nr __NR_yield -1 -1 0x0141 -1 -1
|
||||
syscon nr __NR_tfork -1 -1 -1 0x0008 -1
|
||||
syscon nr __NR_thrsleep -1 -1 -1 0x005e -1
|
||||
syscon nr __NR_thrwakeup -1 -1 -1 0x012d -1
|
||||
syscon nr __NR_threxit -1 -1 -1 0x012e -1
|
||||
syscon nr __NR_thrsigdivert -1 -1 -1 0x012f -1
|
||||
syscon nr __NR_set_tcb -1 -1 -1 0x0149 -1
|
||||
syscon nr __NR_get_tcb -1 -1 -1 0x014a -1
|
||||
syscon nr __NR_adjfreq -1 -1 -1 0x0131 -1
|
||||
syscon nr __NR_getdtablecount -1 -1 -1 0x0012 -1
|
||||
syscon nr __NR_getlogin_r -1 -1 -1 0x008d -1
|
||||
syscon nr __NR_getrtable -1 -1 -1 0x0137 -1
|
||||
syscon nr __NR_getthrid -1 -1 -1 0x012b -1
|
||||
syscon nr __NR_kbind -1 -1 -1 0x0056 -1
|
||||
syscon nr __NR_mquery -1 -1 -1 0x011e -1
|
||||
syscon nr __NR_obreak -1 -1 -1 0x0011 -1
|
||||
syscon nr __NR_sendsyslog -1 -1 -1 0x0070 -1
|
||||
syscon nr __NR_setrtable -1 -1 -1 0x0136 -1
|
||||
syscon nr __NR_swapctl -1 -1 -1 0x00c1 -1
|
||||
syscon nr __NR_thrkill -1 -1 -1 0x0077 -1
|
||||
syscon nr __NR_unveil -1 -1 -1 0x0072 -1
|
||||
syscon nr __NR_mac_get_link -1 0x2000180 0x019a -1 -1
|
||||
syscon nr __NR_mac_set_link -1 0x2000181 0x019b -1 -1
|
||||
syscon nr __NR_mac_get_fd -1 0x2000184 0x0182 -1 -1
|
||||
syscon nr __NR_mac_get_file -1 0x200017e 0x0183 -1 -1
|
||||
syscon nr __NR_mac_get_proc -1 0x2000182 0x0180 -1 -1
|
||||
syscon nr __NR_mac_set_fd -1 0x2000185 0x0184 -1 -1
|
||||
syscon nr __NR_mac_get_pid -1 0x2000186 0x0199 -1 -1
|
||||
syscon nr __NR_mac_set_proc -1 0x2000183 0x0181 -1 -1
|
||||
syscon nr __NR_mac_set_file -1 0x200017f 0x0185 -1 -1
|
||||
syscon nr __NR_mac_execve -1 0x200017c 0x019f -1 -1
|
||||
syscon nr __NR_acl_get_link -1 -1 0x01a9 -1 -1
|
||||
syscon nr __NR_sigwait_nocancel -1 0x20001a6 -1 -1 -1
|
||||
syscon nr __NR_cap_rights_get -1 -1 0x0203 -1 -1
|
||||
syscon nr __NR_semwait_signal -1 0x200014e -1 -1 -1
|
||||
syscon nr __NR_acl_set_link -1 -1 0x01aa -1 -1
|
||||
syscon nr __NR_acl_set_fd -1 -1 0x015e -1 -1
|
||||
syscon nr __NR_old_semwait_signal -1 0x2000172 -1 -1 -1
|
||||
syscon nr __NR_setugid -1 -1 0x0176 -1 -1
|
||||
syscon nr __NR_acl_aclcheck_fd -1 -1 0x0162 -1 -1
|
||||
syscon nr __NR_acl_get_fd -1 -1 0x015d -1 -1
|
||||
syscon nr __NR___sysctl -1 -1 0x00ca -1 -1
|
||||
syscon nr __NR_mac_getfsstat -1 0x20001aa -1 -1 -1
|
||||
syscon nr __NR_mac_get_mount -1 0x20001a9 -1 -1 -1
|
||||
syscon nr __NR_acl_delete_link -1 -1 0x01ab -1 -1
|
||||
syscon nr __NR_mac_mount -1 0x20001a8 -1 -1 -1
|
||||
syscon nr __NR_acl_get_file -1 -1 0x015b -1 -1
|
||||
syscon nr __NR_acl_aclcheck_file -1 -1 0x0161 -1 -1
|
||||
syscon nr __NR_acl_delete_fd -1 -1 0x0160 -1 -1
|
||||
syscon nr __NR_acl_aclcheck_link -1 -1 0x01ac -1 -1
|
||||
syscon nr __NR___mac_syscall -1 0x200017d -1 -1 -1
|
||||
syscon nr __NR_acl_set_file -1 -1 0x015c -1 -1
|
||||
syscon nr __NR_acl_delete_file -1 -1 0x015f -1 -1
|
||||
syscon nr __NR_syscall -1 -1 -1 0x00c6 -1
|
||||
syscon nr __NR__umtx_op -1 -1 0x01c6 -1 -1
|
||||
syscon nr __NR_semwait_signal_nocancel -1 0x20001a7 -1 -1 -1
|
||||
syscon nr __NR_old_semwait_signal_nocancel -1 0x2000173 -1 -1 -1
|
||||
syscon nr __NR_sctp_peeloff -1 -1 0x01d7 -1 -1
|
||||
syscon nr __NR_sctp_generic_recvmsg -1 -1 0x01da -1 -1
|
||||
syscon nr __NR_sctp_generic_sendmsg -1 -1 0x01d8 -1 -1
|
||||
syscon nr __NR_sctp_generic_sendmsg_iov -1 -1 0x01d9 -1 -1
|
||||
syscon nr __NR_shared_region_map_and_slide_np -1 0x20001b6 -1 -1 -1
|
||||
syscon nr __NR_guarded_open_dprotected_np -1 0x20001e4 -1 -1 -1
|
||||
syscon nr __NR_stack_snapshot_with_config -1 0x20001eb -1 -1 -1
|
||||
|
||||
# https://youtu.be/GUQUD3IMbb4?t=85
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon clock CLOCK_MONOTONIC 4 1 4 3 1
|
||||
.syscon clock CLOCK_MONOTONIC 1 1 4 3 1
|
||||
|
|
2
libc/sysv/consts/PTRACE_ATTACH.s
Normal file
2
libc/sysv/consts/PTRACE_ATTACH.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_ATTACH 16 10 10 9 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_CONTINUE 7 7 7 7 0
|
||||
.syscon ptrace PTRACE_CONT 7 7 7 7 -1
|
2
libc/sysv/consts/PTRACE_DETACH.s
Normal file
2
libc/sysv/consts/PTRACE_DETACH.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_DETACH 17 11 11 10 -1
|
2
libc/sysv/consts/PTRACE_EVENT_CLONE.s
Normal file
2
libc/sysv/consts/PTRACE_EVENT_CLONE.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_EVENT_CLONE 3 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_EVENT_EXEC.s
Normal file
2
libc/sysv/consts/PTRACE_EVENT_EXEC.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_EVENT_EXEC 4 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_EVENT_EXIT.s
Normal file
2
libc/sysv/consts/PTRACE_EVENT_EXIT.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_EVENT_EXIT 6 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_EVENT_FORK.s
Normal file
2
libc/sysv/consts/PTRACE_EVENT_FORK.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_EVENT_FORK 1 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_EVENT_VFORK.s
Normal file
2
libc/sysv/consts/PTRACE_EVENT_VFORK.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_EVENT_VFORK 2 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_EVENT_VFORK_DONE.s
Normal file
2
libc/sysv/consts/PTRACE_EVENT_VFORK_DONE.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_EVENT_VFORK_DONE 5 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_GETEVENTMSG.s
Normal file
2
libc/sysv/consts/PTRACE_GETEVENTMSG.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_GETEVENTMSG 0x4201 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_GETFPREGS.s
Normal file
2
libc/sysv/consts/PTRACE_GETFPREGS.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_GETFPREGS 14 -1 35 35 -1
|
2
libc/sysv/consts/PTRACE_GETFPXREGS.s
Normal file
2
libc/sysv/consts/PTRACE_GETFPXREGS.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_GETFPXREGS 18 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_GETREGS.s
Normal file
2
libc/sysv/consts/PTRACE_GETREGS.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_GETREGS 12 -1 33 33 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_GETREGSET 0x4204 0 0 0 0
|
||||
.syscon ptrace PTRACE_GETREGSET 0x4204 -1 -1 -1 -1
|
||||
|
|
2
libc/sysv/consts/PTRACE_GETSIGINFO.s
Normal file
2
libc/sysv/consts/PTRACE_GETSIGINFO.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_GETSIGINFO 0x4202 -1 -1 -1 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_GETSIGMASK 0x420a 0 0 0 0
|
||||
.syscon ptrace PTRACE_GETSIGMASK 0x420a -1 -1 -1 -1
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_INTERRUPT 0x4207 0 0 0 0
|
||||
.syscon ptrace PTRACE_INTERRUPT 0x4207 -1 -1 -1 -1
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_DETACH 17 11 11 10 0
|
||||
.syscon ptrace PTRACE_KILL 8 8 8 8 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_LISTEN 0x4208 0 0 0 0
|
||||
.syscon ptrace PTRACE_LISTEN 0x4208 -1 -1 -1 -1
|
||||
|
|
2
libc/sysv/consts/PTRACE_O_MASK.s
Normal file
2
libc/sysv/consts/PTRACE_O_MASK.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_MASK 0x007f -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_O_TRACECLONE.s
Normal file
2
libc/sysv/consts/PTRACE_O_TRACECLONE.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_TRACECLONE 0x0008 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_O_TRACEEXEC.s
Normal file
2
libc/sysv/consts/PTRACE_O_TRACEEXEC.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_TRACEEXEC 0x0010 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_O_TRACEEXIT.s
Normal file
2
libc/sysv/consts/PTRACE_O_TRACEEXIT.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_TRACEEXIT 0x0040 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_O_TRACEFORK.s
Normal file
2
libc/sysv/consts/PTRACE_O_TRACEFORK.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_TRACEFORK 0x0002 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_O_TRACESYSGOOD.s
Normal file
2
libc/sysv/consts/PTRACE_O_TRACESYSGOOD.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_TRACESYSGOOD 0x0001 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_O_TRACEVFORK.s
Normal file
2
libc/sysv/consts/PTRACE_O_TRACEVFORK.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_TRACEVFORK 0x0004 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_O_TRACEVFORKDONE.s
Normal file
2
libc/sysv/consts/PTRACE_O_TRACEVFORKDONE.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_O_TRACEVFORKDONE 0x0020 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_PEEKDATA.s
Normal file
2
libc/sysv/consts/PTRACE_PEEKDATA.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_PEEKDATA 2 2 2 2 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_PEEKSIGINFO 0x4209 0 0 0 0
|
||||
.syscon ptrace PTRACE_PEEKSIGINFO 0x4209 -1 -1 -1 -1
|
||||
|
|
2
libc/sysv/consts/PTRACE_PEEKTEXT.s
Normal file
2
libc/sysv/consts/PTRACE_PEEKTEXT.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_PEEKTEXT 1 1 1 1 -1
|
2
libc/sysv/consts/PTRACE_PEEKUSER.s
Normal file
2
libc/sysv/consts/PTRACE_PEEKUSER.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_PEEKUSER 3 3 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_POKEDATA.s
Normal file
2
libc/sysv/consts/PTRACE_POKEDATA.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_POKEDATA 5 5 5 5 -1
|
2
libc/sysv/consts/PTRACE_POKETEXT.s
Normal file
2
libc/sysv/consts/PTRACE_POKETEXT.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_POKETEXT 4 4 4 4 -1
|
2
libc/sysv/consts/PTRACE_POKEUSER.s
Normal file
2
libc/sysv/consts/PTRACE_POKEUSER.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_POKEUSER 6 6 -1 -1 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c 0 0 0 0
|
||||
.syscon ptrace PTRACE_SECCOMP_GET_FILTER 0x420c -1 -1 -1 -1
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SEIZE 0x4206 0 0 0 0
|
||||
.syscon ptrace PTRACE_SEIZE 0x4206 -1 -1 -1 -1
|
||||
|
|
2
libc/sysv/consts/PTRACE_SETFPREGS.s
Normal file
2
libc/sysv/consts/PTRACE_SETFPREGS.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SETFPREGS 15 -1 36 36 -1
|
2
libc/sysv/consts/PTRACE_SETFPXREGS.s
Normal file
2
libc/sysv/consts/PTRACE_SETFPXREGS.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SETFPXREGS 19 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_SETOPTIONS.s
Normal file
2
libc/sysv/consts/PTRACE_SETOPTIONS.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SETOPTIONS 0x4200 -1 -1 -1 -1
|
2
libc/sysv/consts/PTRACE_SETREGS.s
Normal file
2
libc/sysv/consts/PTRACE_SETREGS.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SETREGS 13 -1 34 34 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SETREGSET 0x4205 0 0 0 0
|
||||
.syscon ptrace PTRACE_SETREGSET 0x4205 -1 -1 -1 -1
|
||||
|
|
2
libc/sysv/consts/PTRACE_SETSIGINFO.s
Normal file
2
libc/sysv/consts/PTRACE_SETSIGINFO.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SETSIGINFO 0x4203 -1 -1 -1 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SETSIGMASK 0x420b 0 0 0 0
|
||||
.syscon ptrace PTRACE_SETSIGMASK 0x420b -1 -1 -1 -1
|
||||
|
|
2
libc/sysv/consts/PTRACE_SINGLESTEP.s
Normal file
2
libc/sysv/consts/PTRACE_SINGLESTEP.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SINGLESTEP 9 9 9 32 -1
|
|
@ -1,2 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_SYSCALL 0 0 6 0 0
|
||||
.syscon ptrace PTRACE_SYSCALL 24 -1 22 -1 -1
|
||||
|
|
2
libc/sysv/consts/PTRACE_TRACEME.s
Normal file
2
libc/sysv/consts/PTRACE_TRACEME.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon ptrace PTRACE_TRACEME 0 0 0 0 -1
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_GETEVENTMSG 0x4201 0 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_GETFPXREGS 18 0 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_GETREGS 12 0 33 33 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_GETSIGINFO 0x4202 0 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_KILL 8 8 8 8 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_READ_D 2 2 2 2 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_READ_I 1 1 1 1 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_READ_U 3 3 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_SETFPREGS 15 0 36 36 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_SETFPXREGS 19 0 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_SETOPTIONS 0x4200 0 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_SETREGS 13 0 34 34 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_SETSIGINFO 0x4203 0 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_STEP 9 9 9 0x20 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_SYSCALL 24 0 22 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_TRACE_ME 0 0 0 0 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_WRITE_D 5 5 5 5 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_WRITE_I 4 4 4 4 0
|
|
@ -1,2 +0,0 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon pt PT_WRITE_U 6 6 0 0 0
|
2
libc/sysv/consts/__NR___mac_syscall.s
Normal file
2
libc/sysv/consts/__NR___mac_syscall.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR___mac_syscall -1 0x200017d -1 -1 -1
|
2
libc/sysv/consts/__NR___sysctl.s
Normal file
2
libc/sysv/consts/__NR___sysctl.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR___sysctl -1 -1 0x00ca -1 -1
|
2
libc/sysv/consts/__NR__sysctl.s
Normal file
2
libc/sysv/consts/__NR__sysctl.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR__sysctl 0x009c -1 -1 -1 -1
|
2
libc/sysv/consts/__NR__umtx_op.s
Normal file
2
libc/sysv/consts/__NR__umtx_op.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR__umtx_op -1 -1 0x01c6 -1 -1
|
2
libc/sysv/consts/__NR_abort2.s
Normal file
2
libc/sysv/consts/__NR_abort2.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_abort2 -1 -1 0x01cf -1 -1
|
2
libc/sysv/consts/__NR_abort_with_payload.s
Normal file
2
libc/sysv/consts/__NR_abort_with_payload.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_abort_with_payload -1 0x2000209 -1 -1 -1
|
2
libc/sysv/consts/__NR_accept.s
Normal file
2
libc/sysv/consts/__NR_accept.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_accept 0x002b 0x200001e 0x0063 0x001e -1
|
2
libc/sysv/consts/__NR_accept4.s
Normal file
2
libc/sysv/consts/__NR_accept4.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_accept4 0x0120 -1 0x021d 0x005d -1
|
2
libc/sysv/consts/__NR_accept_nocancel.s
Normal file
2
libc/sysv/consts/__NR_accept_nocancel.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_accept_nocancel -1 0x2000194 -1 -1 -1
|
2
libc/sysv/consts/__NR_access_extended.s
Normal file
2
libc/sysv/consts/__NR_access_extended.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_access_extended -1 0x200011c -1 -1 -1
|
2
libc/sysv/consts/__NR_acct.s
Normal file
2
libc/sysv/consts/__NR_acct.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acct 0x00a3 0x2000033 0x0033 0x0033 -1
|
2
libc/sysv/consts/__NR_acl_aclcheck_fd.s
Normal file
2
libc/sysv/consts/__NR_acl_aclcheck_fd.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_aclcheck_fd -1 -1 0x0162 -1 -1
|
2
libc/sysv/consts/__NR_acl_aclcheck_file.s
Normal file
2
libc/sysv/consts/__NR_acl_aclcheck_file.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_aclcheck_file -1 -1 0x0161 -1 -1
|
2
libc/sysv/consts/__NR_acl_aclcheck_link.s
Normal file
2
libc/sysv/consts/__NR_acl_aclcheck_link.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_aclcheck_link -1 -1 0x01ac -1 -1
|
2
libc/sysv/consts/__NR_acl_delete_fd.s
Normal file
2
libc/sysv/consts/__NR_acl_delete_fd.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_delete_fd -1 -1 0x0160 -1 -1
|
2
libc/sysv/consts/__NR_acl_delete_file.s
Normal file
2
libc/sysv/consts/__NR_acl_delete_file.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_delete_file -1 -1 0x015f -1 -1
|
2
libc/sysv/consts/__NR_acl_delete_link.s
Normal file
2
libc/sysv/consts/__NR_acl_delete_link.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_delete_link -1 -1 0x01ab -1 -1
|
2
libc/sysv/consts/__NR_acl_get_fd.s
Normal file
2
libc/sysv/consts/__NR_acl_get_fd.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_get_fd -1 -1 0x015d -1 -1
|
2
libc/sysv/consts/__NR_acl_get_file.s
Normal file
2
libc/sysv/consts/__NR_acl_get_file.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_get_file -1 -1 0x015b -1 -1
|
2
libc/sysv/consts/__NR_acl_get_link.s
Normal file
2
libc/sysv/consts/__NR_acl_get_link.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_get_link -1 -1 0x01a9 -1 -1
|
2
libc/sysv/consts/__NR_acl_set_fd.s
Normal file
2
libc/sysv/consts/__NR_acl_set_fd.s
Normal file
|
@ -0,0 +1,2 @@
|
|||
.include "libc/sysv/consts/syscon.inc"
|
||||
.syscon nr __NR_acl_set_fd -1 -1 0x015e -1 -1
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue