1*f905d8d6Schristos /* $NetBSD: linux_syscalls.c,v 1.84 2024/09/28 19:36:19 christos Exp $ */ 289647c7cSmanu 389647c7cSmanu /* 489647c7cSmanu * System call names. 589647c7cSmanu * 689647c7cSmanu * DO NOT EDIT-- this file is automatically generated. 7*f905d8d6Schristos * created from NetBSD: syscalls.master,v 1.75 2024/09/28 19:35:55 christos Exp 889647c7cSmanu */ 989647c7cSmanu 1089647c7cSmanu #include <sys/cdefs.h> 11*f905d8d6Schristos __KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.84 2024/09/28 19:36:19 christos Exp $"); 1289647c7cSmanu 1389647c7cSmanu #if defined(_KERNEL_OPT) 1489647c7cSmanu #if defined(_KERNEL_OPT) 15ee0c5b44Smanu #include "opt_sysv.h" 1689647c7cSmanu #include "opt_compat_43.h" 17bb5f9edeSpooka #include "opt_compat_netbsd.h" 1889647c7cSmanu #endif 1989647c7cSmanu #include <sys/param.h> 2089647c7cSmanu #include <sys/poll.h> 2189647c7cSmanu #include <sys/systm.h> 2289647c7cSmanu #include <sys/signal.h> 2389647c7cSmanu #include <sys/mount.h> 2489647c7cSmanu #include <sys/syscallargs.h> 25461a86f9Schristos #include <sys/time.h> 26461a86f9Schristos #include <compat/sys/time.h> 2789647c7cSmanu #include <compat/linux/common/linux_types.h> 2863ea783fSchristos #include <compat/linux/common/linux_misc.h> 2989647c7cSmanu #include <compat/linux/common/linux_mmap.h> 30ee0c5b44Smanu #include <compat/linux/common/linux_ipc.h> 316fb2884cSdsl #include <compat/linux/common/linux_msg.h> 3275d508beSchristos #include <compat/linux/common/linux_sched.h> 33ee0c5b44Smanu #include <compat/linux/common/linux_sem.h> 346fb2884cSdsl #include <compat/linux/common/linux_shm.h> 3589647c7cSmanu #include <compat/linux/common/linux_signal.h> 3689647c7cSmanu #include <compat/linux/common/linux_siginfo.h> 3716a450f4Schristos #include <compat/linux/common/linux_mqueue.h> 3889647c7cSmanu #include <compat/linux/common/linux_machdep.h> 39*f905d8d6Schristos #include <compat/linux/common/linux_sched.h> 4089647c7cSmanu #include <compat/linux/linux_syscallargs.h> 416d90b98aSmartin #else /* _KERNEL_OPT */ 426d90b98aSmartin #include <sys/null.h> 4389647c7cSmanu #endif /* _KERNEL_OPT */ 4489647c7cSmanu 4589647c7cSmanu const char *const linux_syscallnames[] = { 46cb572617Snjoly /* 0 */ "read", 47cb572617Snjoly /* 1 */ "write", 48cb572617Snjoly /* 2 */ "open", 49cb572617Snjoly /* 3 */ "close", 50cb572617Snjoly /* 4 */ "stat64", 51cb572617Snjoly /* 5 */ "fstat64", 52cb572617Snjoly /* 6 */ "lstat64", 53cb572617Snjoly /* 7 */ "poll", 54cb572617Snjoly /* 8 */ "lseek", 55cb572617Snjoly /* 9 */ "mmap", 56cb572617Snjoly /* 10 */ "mprotect", 57cb572617Snjoly /* 11 */ "munmap", 58cb572617Snjoly /* 12 */ "brk", 59cb572617Snjoly /* 13 */ "rt_sigaction", 60cb572617Snjoly /* 14 */ "rt_sigprocmask", 61cb572617Snjoly /* 15 */ "rt_sigreturn", 62cb572617Snjoly /* 16 */ "ioctl", 63cb572617Snjoly /* 17 */ "pread", 64cb572617Snjoly /* 18 */ "pwrite", 65cb572617Snjoly /* 19 */ "readv", 66cb572617Snjoly /* 20 */ "writev", 67cb572617Snjoly /* 21 */ "access", 68cb572617Snjoly /* 22 */ "pipe", 69cb572617Snjoly /* 23 */ "select", 70cb572617Snjoly /* 24 */ "sched_yield", 71cb572617Snjoly /* 25 */ "mremap", 722b6f0cc5Snjoly /* 26 */ "__msync13", 73cb572617Snjoly /* 27 */ "mincore", 74cb572617Snjoly /* 28 */ "madvise", 75ee0c5b44Smanu #ifdef SYSVSHM 76cb572617Snjoly /* 29 */ "shmget", 77cb572617Snjoly /* 30 */ "shmat", 78cb572617Snjoly /* 31 */ "shmctl", 79ee0c5b44Smanu #else 80cb572617Snjoly /* 29 */ "#29 (unimplemented shmget)", 81cb572617Snjoly /* 30 */ "#30 (unimplemented shmat)", 82cb572617Snjoly /* 31 */ "#31 (unimplemented shmctl)", 83ee0c5b44Smanu #endif 84cb572617Snjoly /* 32 */ "dup", 85cb572617Snjoly /* 33 */ "dup2", 86cb572617Snjoly /* 34 */ "pause", 87cb572617Snjoly /* 35 */ "nanosleep", 88cb572617Snjoly /* 36 */ "getitimer", 89cb572617Snjoly /* 37 */ "alarm", 90cb572617Snjoly /* 38 */ "setitimer", 91cb572617Snjoly /* 39 */ "getpid", 92cb572617Snjoly /* 40 */ "#40 (unimplemented sendfile)", 93cb572617Snjoly /* 41 */ "socket", 94cb572617Snjoly /* 42 */ "connect", 95cb572617Snjoly /* 43 */ "oaccept", 96cb572617Snjoly /* 44 */ "sendto", 97cb572617Snjoly /* 45 */ "recvfrom", 98cb572617Snjoly /* 46 */ "sendmsg", 99cb572617Snjoly /* 47 */ "recvmsg", 100cb572617Snjoly /* 48 */ "shutdown", 101cb572617Snjoly /* 49 */ "bind", 102cb572617Snjoly /* 50 */ "listen", 103cb572617Snjoly /* 51 */ "getsockname", 104cb572617Snjoly /* 52 */ "getpeername", 105cb572617Snjoly /* 53 */ "socketpair", 106cb572617Snjoly /* 54 */ "setsockopt", 107cb572617Snjoly /* 55 */ "getsockopt", 108cb572617Snjoly /* 56 */ "clone", 109cb572617Snjoly /* 57 */ "fork", 110cb572617Snjoly /* 58 */ "__vfork14", 111cb572617Snjoly /* 59 */ "execve", 112cb572617Snjoly /* 60 */ "exit", 113cb572617Snjoly /* 61 */ "wait4", 114cb572617Snjoly /* 62 */ "kill", 115cb572617Snjoly /* 63 */ "uname", 116ee0c5b44Smanu #ifdef SYSVSEM 117cb572617Snjoly /* 64 */ "semget", 118cb572617Snjoly /* 65 */ "semop", 119cb572617Snjoly /* 66 */ "semctl", 120ee0c5b44Smanu #else 121cb572617Snjoly /* 64 */ "#64 (unimplemented semget)", 122cb572617Snjoly /* 65 */ "#65 (unimplemented semop)", 123cb572617Snjoly /* 66 */ "#66 (unimplemented semctl)", 124ee0c5b44Smanu #endif 125ee0c5b44Smanu #ifdef SYSVSHM 126cb572617Snjoly /* 67 */ "shmdt", 127ee0c5b44Smanu #else 128cb572617Snjoly /* 67 */ "#67 (unimplemented shmdt)", 129ee0c5b44Smanu #endif 130ee0c5b44Smanu #ifdef SYSVMSG 131cb572617Snjoly /* 68 */ "msgget", 132cb572617Snjoly /* 69 */ "msgsnd", 133cb572617Snjoly /* 70 */ "msgrcv", 134cb572617Snjoly /* 71 */ "msgctl", 135ee0c5b44Smanu #else 136cb572617Snjoly /* 68 */ "#68 (unimplemented msgget)", 137cb572617Snjoly /* 69 */ "#69 (unimplemented msgsnd)", 138cb572617Snjoly /* 70 */ "#70 (unimplemented msgrcv)", 139cb572617Snjoly /* 71 */ "#71 (unimplemented msgctl)", 140ee0c5b44Smanu #endif 141cb572617Snjoly /* 72 */ "fcntl", 142cb572617Snjoly /* 73 */ "flock", 143cb572617Snjoly /* 74 */ "fsync", 144cb572617Snjoly /* 75 */ "fdatasync", 145cb572617Snjoly /* 76 */ "truncate64", 146cb572617Snjoly /* 77 */ "ftruncate64", 147cb572617Snjoly /* 78 */ "getdents", 148cb572617Snjoly /* 79 */ "__getcwd", 149cb572617Snjoly /* 80 */ "chdir", 150cb572617Snjoly /* 81 */ "fchdir", 151cb572617Snjoly /* 82 */ "__posix_rename", 152cb572617Snjoly /* 83 */ "mkdir", 153cb572617Snjoly /* 84 */ "rmdir", 154cb572617Snjoly /* 85 */ "creat", 155cb572617Snjoly /* 86 */ "link", 156cb572617Snjoly /* 87 */ "unlink", 157cb572617Snjoly /* 88 */ "symlink", 158cb572617Snjoly /* 89 */ "readlink", 159cb572617Snjoly /* 90 */ "chmod", 160cb572617Snjoly /* 91 */ "fchmod", 161cb572617Snjoly /* 92 */ "__posix_chown", 162cb572617Snjoly /* 93 */ "__posix_fchown", 163cb572617Snjoly /* 94 */ "__posix_lchown", 164cb572617Snjoly /* 95 */ "umask", 165cb572617Snjoly /* 96 */ "gettimeofday", 166cb572617Snjoly /* 97 */ "getrlimit", 167cb572617Snjoly /* 98 */ "getrusage", 168cb572617Snjoly /* 99 */ "sysinfo", 169cb572617Snjoly /* 100 */ "times", 170cb572617Snjoly /* 101 */ "ptrace", 171cb572617Snjoly /* 102 */ "getuid", 172cb572617Snjoly /* 103 */ "#103 (unimplemented syslog)", 173cb572617Snjoly /* 104 */ "getgid", 174cb572617Snjoly /* 105 */ "setuid", 175cb572617Snjoly /* 106 */ "setgid", 176cb572617Snjoly /* 107 */ "geteuid", 177cb572617Snjoly /* 108 */ "getegid", 178cb572617Snjoly /* 109 */ "setpgid", 179cb572617Snjoly /* 110 */ "getppid", 180cb572617Snjoly /* 111 */ "getpgrp", 181cb572617Snjoly /* 112 */ "setsid", 182cb572617Snjoly /* 113 */ "setreuid", 183cb572617Snjoly /* 114 */ "setregid", 184cb572617Snjoly /* 115 */ "getgroups", 185cb572617Snjoly /* 116 */ "setgroups", 186cb572617Snjoly /* 117 */ "setresuid", 187cb572617Snjoly /* 118 */ "getresuid", 188cb572617Snjoly /* 119 */ "setresgid", 189cb572617Snjoly /* 120 */ "getresgid", 190cb572617Snjoly /* 121 */ "getpgid", 191cb572617Snjoly /* 122 */ "setfsuid", 19290dee752Snjoly /* 123 */ "setfsgid", 193cb572617Snjoly /* 124 */ "getsid", 194cb572617Snjoly /* 125 */ "#125 (unimplemented capget)", 195cb572617Snjoly /* 126 */ "#126 (unimplemented capset)", 196cb572617Snjoly /* 127 */ "rt_sigpending", 197f72d02ffSchristos /* 128 */ "rt_sigtimedwait", 198cb572617Snjoly /* 129 */ "rt_queueinfo", 199cb572617Snjoly /* 130 */ "rt_sigsuspend", 200cb572617Snjoly /* 131 */ "sigaltstack", 201cb572617Snjoly /* 132 */ "utime", 202cb572617Snjoly /* 133 */ "mknod", 2035e742026Sjoerg #ifdef EXEC_AOUT 204cb572617Snjoly /* 134 */ "uselib", 2055e742026Sjoerg #else 206cb572617Snjoly /* 134 */ "#134 (unimplemented sys_uselib)", 2075e742026Sjoerg #endif 208cb572617Snjoly /* 135 */ "personality", 209cb572617Snjoly /* 136 */ "#136 (unimplemented ustat)", 210cb572617Snjoly /* 137 */ "statfs", 211cb572617Snjoly /* 138 */ "fstatfs", 212cb572617Snjoly /* 139 */ "#139 (unimplemented sysfs)", 213cb572617Snjoly /* 140 */ "getpriority", 214cb572617Snjoly /* 141 */ "setpriority", 215cb572617Snjoly /* 142 */ "sched_setparam", 216cb572617Snjoly /* 143 */ "sched_getparam", 217cb572617Snjoly /* 144 */ "sched_setscheduler", 218cb572617Snjoly /* 145 */ "sched_getscheduler", 219cb572617Snjoly /* 146 */ "sched_get_priority_max", 220cb572617Snjoly /* 147 */ "sched_get_priority_min", 221cb572617Snjoly /* 148 */ "#148 (unimplemented sys_sched_rr_get_interval)", 222cb572617Snjoly /* 149 */ "mlock", 223cb572617Snjoly /* 150 */ "munlock", 224cb572617Snjoly /* 151 */ "mlockall", 225cb572617Snjoly /* 152 */ "munlockall", 226cb572617Snjoly /* 153 */ "#153 (unimplemented vhangup)", 227cb572617Snjoly /* 154 */ "modify_ldt", 228cb572617Snjoly /* 155 */ "#155 (unimplemented pivot_root)", 229cb572617Snjoly /* 156 */ "__sysctl", 230cb572617Snjoly /* 157 */ "#157 (unimplemented prctl)", 231cb572617Snjoly /* 158 */ "arch_prctl", 232cb572617Snjoly /* 159 */ "#159 (unimplemented adjtimex)", 233cb572617Snjoly /* 160 */ "setrlimit", 234cb572617Snjoly /* 161 */ "chroot", 235cb572617Snjoly /* 162 */ "sync", 236cb572617Snjoly /* 163 */ "acct", 237cb572617Snjoly /* 164 */ "settimeofday", 238cb572617Snjoly /* 165 */ "#165 (unimplemented mount)", 239cb572617Snjoly /* 166 */ "#166 (unimplemented umount2)", 240cb572617Snjoly /* 167 */ "swapon", 241cb572617Snjoly /* 168 */ "swapoff", 242cb572617Snjoly /* 169 */ "reboot", 243cb572617Snjoly /* 170 */ "sethostname", 244cb572617Snjoly /* 171 */ "setdomainname", 245cb572617Snjoly /* 172 */ "iopl", 246cb572617Snjoly /* 173 */ "ioperm", 247cb572617Snjoly /* 174 */ "#174 (unimplemented create_module)", 248cb572617Snjoly /* 175 */ "#175 (unimplemented init_module)", 249cb572617Snjoly /* 176 */ "#176 (unimplemented delete_module)", 250cb572617Snjoly /* 177 */ "#177 (unimplemented get_kernel_syms)", 251cb572617Snjoly /* 178 */ "#178 (unimplemented query_module)", 252cb572617Snjoly /* 179 */ "#179 (unimplemented quotactl)", 253cb572617Snjoly /* 180 */ "#180 (unimplemented nfsservctl)", 254cb572617Snjoly /* 181 */ "#181 (unimplemented getpmsg)", 255cb572617Snjoly /* 182 */ "#182 (unimplemented putpmsg)", 256cb572617Snjoly /* 183 */ "#183 (unimplemented afs_syscall)", 257cb572617Snjoly /* 184 */ "#184 (unimplemented tuxcall)", 258cb572617Snjoly /* 185 */ "#185 (unimplemented security)", 259cb572617Snjoly /* 186 */ "gettid", 260ccd370d9Schristos /* 187 */ "readahead", 261cb572617Snjoly /* 188 */ "setxattr", 262cb572617Snjoly /* 189 */ "lsetxattr", 263cb572617Snjoly /* 190 */ "fsetxattr", 264cb572617Snjoly /* 191 */ "getxattr", 265cb572617Snjoly /* 192 */ "lgetxattr", 266cb572617Snjoly /* 193 */ "fgetxattr", 267cb572617Snjoly /* 194 */ "listxattr", 268cb572617Snjoly /* 195 */ "llistxattr", 269cb572617Snjoly /* 196 */ "flistxattr", 270cb572617Snjoly /* 197 */ "removexattr", 271cb572617Snjoly /* 198 */ "lremovexattr", 272cb572617Snjoly /* 199 */ "fremovexattr", 273cb572617Snjoly /* 200 */ "tkill", 274cb572617Snjoly /* 201 */ "time", 275cb572617Snjoly /* 202 */ "futex", 276cb572617Snjoly /* 203 */ "sched_setaffinity", 277cb572617Snjoly /* 204 */ "sched_getaffinity", 278cb572617Snjoly /* 205 */ "#205 (unimplemented set_thread_area)", 279cb572617Snjoly /* 206 */ "#206 (unimplemented io_setup)", 280cb572617Snjoly /* 207 */ "#207 (unimplemented io_destroy)", 281cb572617Snjoly /* 208 */ "#208 (unimplemented io_getevents)", 282cb572617Snjoly /* 209 */ "#209 (unimplemented io_submit)", 283cb572617Snjoly /* 210 */ "#210 (unimplemented io_cancel)", 284cb572617Snjoly /* 211 */ "#211 (unimplemented get_thread_area)", 285cb572617Snjoly /* 212 */ "#212 (unimplemented lookup_dcookie)", 28663ea783fSchristos /* 213 */ "epoll_create", 287cb572617Snjoly /* 214 */ "#214 (unimplemented epoll_ctl_old)", 288cb572617Snjoly /* 215 */ "#215 (unimplemented epoll_wait_old)", 289cb572617Snjoly /* 216 */ "#216 (unimplemented remap_file_pages)", 290cb572617Snjoly /* 217 */ "getdents64", 291cb572617Snjoly /* 218 */ "set_tid_address", 292cb572617Snjoly /* 219 */ "#219 (unimplemented restart_syscall)", 293cb572617Snjoly /* 220 */ "#220 (unimplemented semtimedop)", 294dab2e0b5Salnsn /* 221 */ "fadvise64", 295a108364eSthorpej /* 222 */ "timer_create", 296a108364eSthorpej /* 223 */ "timer_settime", 297a108364eSthorpej /* 224 */ "timer_gettime", 298a108364eSthorpej /* 225 */ "timer_getoverrun", 299a108364eSthorpej /* 226 */ "timer_delete", 300cb572617Snjoly /* 227 */ "clock_settime", 301cb572617Snjoly /* 228 */ "clock_gettime", 302cb572617Snjoly /* 229 */ "clock_getres", 303cb572617Snjoly /* 230 */ "clock_nanosleep", 304cb572617Snjoly /* 231 */ "exit_group", 30563ea783fSchristos /* 232 */ "epoll_wait", 30663ea783fSchristos /* 233 */ "epoll_ctl", 307cb572617Snjoly /* 234 */ "tgkill", 308b84b9e7dSpooka /* 235 */ "utimes", 309cb572617Snjoly /* 236 */ "#236 (unimplemented vserver)", 3103ce1cee8Schristos /* 237 */ "#237 (unimplemented mbind)", 3113ce1cee8Schristos /* 238 */ "#238 (unimplemented set_mempolicy)", 3123ce1cee8Schristos /* 239 */ "#239 (unimplemented get_mempolicy)", 31316a450f4Schristos /* 240 */ "mq_open", 31416a450f4Schristos /* 241 */ "mq_unlink", 31516a450f4Schristos /* 242 */ "mq_timedsend", 31616a450f4Schristos /* 243 */ "mq_timedreceive", 31716a450f4Schristos /* 244 */ "mq_notify", 31816a450f4Schristos /* 245 */ "mq_getsetattr", 3193ce1cee8Schristos /* 246 */ "#246 (unimplemented kexec_load)", 320f173e917Schristos /* 247 */ "waitid", 3213ce1cee8Schristos /* 248 */ "#248 (unimplemented add_key)", 3223ce1cee8Schristos /* 249 */ "#249 (unimplemented request_key)", 3233ce1cee8Schristos /* 250 */ "#250 (unimplemented keyctl)", 3243ce1cee8Schristos /* 251 */ "#251 (unimplemented ioprio_set)", 3253ce1cee8Schristos /* 252 */ "#252 (unimplemented ioprio_get)", 32640dae343Schristos /* 253 */ "inotify_init", 32740dae343Schristos /* 254 */ "inotify_add_watch", 32840dae343Schristos /* 255 */ "inotify_rm_watch", 3293ce1cee8Schristos /* 256 */ "#256 (unimplemented migrate_pages)", 330c1e3376bSchs /* 257 */ "openat", 331c1e3376bSchs /* 258 */ "mkdirat", 332c1e3376bSchs /* 259 */ "mknodat", 333c1e3376bSchs /* 260 */ "fchownat", 3343ce1cee8Schristos /* 261 */ "#261 (unimplemented futimesat)", 335c1e3376bSchs /* 262 */ "fstatat64", 336c1e3376bSchs /* 263 */ "unlinkat", 337c1e3376bSchs /* 264 */ "renameat", 338c1e3376bSchs /* 265 */ "linkat", 339c1e3376bSchs /* 266 */ "symlinkat", 340c1e3376bSchs /* 267 */ "readlinkat", 341c1e3376bSchs /* 268 */ "fchmodat", 342c1e3376bSchs /* 269 */ "faccessat", 3436919b13cSmanu /* 270 */ "pselect6", 344cc9292b3Spooka /* 271 */ "ppoll", 3453ce1cee8Schristos /* 272 */ "#272 (unimplemented unshare)", 346cb9aba0eSthorpej /* 273 */ "__futex_set_robust_list", 347cb9aba0eSthorpej /* 274 */ "__futex_get_robust_list", 3483ce1cee8Schristos /* 275 */ "#275 (unimplemented splice)", 3493ce1cee8Schristos /* 276 */ "#276 (unimplemented tee)", 350*f905d8d6Schristos /* 277 */ "sync_file_range", 3513ce1cee8Schristos /* 278 */ "#278 (unimplemented vmsplice)", 3523ce1cee8Schristos /* 279 */ "#279 (unimplemented move_pages)", 353a4d690b0Snjoly /* 280 */ "utimensat", 35463ea783fSchristos /* 281 */ "epoll_pwait", 3553ce1cee8Schristos /* 282 */ "#282 (unimplemented signalfd)", 35630226473Sthorpej /* 283 */ "timerfd_create", 3577a09b9c7Sthorpej /* 284 */ "eventfd", 358d61dd23cSjdolecek /* 285 */ "fallocate", 35930226473Sthorpej /* 286 */ "timerfd_settime", 36030226473Sthorpej /* 287 */ "timerfd_gettime", 361c155f74aSchristos /* 288 */ "accept4", 362d916122eSchs /* 289 */ "#289 (unimplemented signalfd4)", 3637a09b9c7Sthorpej /* 290 */ "eventfd2", 36463ea783fSchristos /* 291 */ "epoll_create1", 365a5071c95Schristos /* 292 */ "dup3", 366a5071c95Schristos /* 293 */ "pipe2", 36740dae343Schristos /* 294 */ "inotify_init1", 368d007899aSthorpej /* 295 */ "preadv", 369d007899aSthorpej /* 296 */ "pwritev", 370d916122eSchs /* 297 */ "#297 (unimplemented rt_tgsigqueueinfo)", 371d916122eSchs /* 298 */ "#298 (unimplemented perf_counter_open)", 37269d5c344Schristos /* 299 */ "recvmmsg", 373c1e3376bSchs /* 300 */ "#300 (unimplemented fanotify_init)", 374c1e3376bSchs /* 301 */ "#301 (unimplemented fanotify_mark)", 375dc0b6747Sryo /* 302 */ "prlimit64", 376c1e3376bSchs /* 303 */ "#303 (unimplemented name_to_handle_at)", 377c1e3376bSchs /* 304 */ "#304 (unimplemented open_by_handle_at)", 378c1e3376bSchs /* 305 */ "#305 (unimplemented clock_adjtime)", 379*f905d8d6Schristos /* 306 */ "syncfs", 38069d5c344Schristos /* 307 */ "sendmmsg", 381c1e3376bSchs /* 308 */ "#308 (unimplemented setns)", 38275d508beSchristos /* 309 */ "getcpu", 383c1e3376bSchs /* 310 */ "#310 (unimplemented process_vm_readv)", 384c1e3376bSchs /* 311 */ "#311 (unimplemented process_vm_writev)", 385c1e3376bSchs /* 312 */ "#312 (unimplemented kcmp)", 386c1e3376bSchs /* 313 */ "#313 (unimplemented finit_module)", 3875e697eceSchristos /* 314 */ "#314 (unimplemented sched_setattr)", 3885e697eceSchristos /* 315 */ "#315 (unimplemented sched_getattr)", 389*f905d8d6Schristos /* 316 */ "renameat2", 3905e697eceSchristos /* 317 */ "#317 (unimplemented seccomp)", 3915e697eceSchristos /* 318 */ "getrandom", 3925e697eceSchristos /* 319 */ "memfd_create", 3935e697eceSchristos /* 320 */ "#320 (unimplemented kexec_file_load)", 3945e697eceSchristos /* 321 */ "#321 (unimplemented bpf)", 3955e697eceSchristos /* 322 */ "#322 (unimplemented execveat)", 3965e697eceSchristos /* 323 */ "#323 (unimplemented userfaultfd)", 3975e697eceSchristos /* 324 */ "#324 (unimplemented membarrier)", 3985e697eceSchristos /* 325 */ "#325 (unimplemented mlock2)", 399*f905d8d6Schristos /* 326 */ "copy_file_range", 4005e697eceSchristos /* 327 */ "#327 (unimplemented preadv2)", 4015e697eceSchristos /* 328 */ "#328 (unimplemented pwritev2)", 4025e697eceSchristos /* 329 */ "#329 (unimplemented pkey_mprotect)", 4035e697eceSchristos /* 330 */ "#330 (unimplemented pkey_alloc)", 4045e697eceSchristos /* 331 */ "#331 (unimplemented pkey_free)", 405ccd370d9Schristos /* 332 */ "statx", 4065e697eceSchristos /* 333 */ "#333 (unimplemented io_pgetevents)", 4075e697eceSchristos /* 334 */ "#334 (unimplemented rseq)", 4085e697eceSchristos /* 335 */ "#335 (unimplemented)", 4095e697eceSchristos /* 336 */ "#336 (unimplemented)", 4105e697eceSchristos /* 337 */ "#337 (unimplemented)", 4115e697eceSchristos /* 338 */ "#338 (unimplemented)", 4125e697eceSchristos /* 339 */ "#339 (unimplemented)", 4135e697eceSchristos /* 340 */ "#340 (unimplemented)", 4145e697eceSchristos /* 341 */ "#341 (unimplemented)", 4155e697eceSchristos /* 342 */ "#342 (unimplemented)", 4165e697eceSchristos /* 343 */ "#343 (unimplemented)", 4175e697eceSchristos /* 344 */ "#344 (unimplemented)", 4185e697eceSchristos /* 345 */ "#345 (unimplemented)", 4195e697eceSchristos /* 346 */ "#346 (unimplemented)", 4205e697eceSchristos /* 347 */ "#347 (unimplemented)", 4215e697eceSchristos /* 348 */ "#348 (unimplemented)", 4225e697eceSchristos /* 349 */ "#349 (unimplemented)", 4235e697eceSchristos /* 350 */ "#350 (unimplemented)", 4245e697eceSchristos /* 351 */ "#351 (unimplemented)", 4255e697eceSchristos /* 352 */ "#352 (unimplemented)", 4265e697eceSchristos /* 353 */ "#353 (unimplemented)", 4275e697eceSchristos /* 354 */ "#354 (unimplemented)", 4285e697eceSchristos /* 355 */ "#355 (unimplemented)", 4295e697eceSchristos /* 356 */ "#356 (unimplemented)", 4305e697eceSchristos /* 357 */ "#357 (unimplemented)", 4315e697eceSchristos /* 358 */ "#358 (unimplemented)", 4325e697eceSchristos /* 359 */ "#359 (unimplemented)", 4335e697eceSchristos /* 360 */ "#360 (unimplemented)", 4345e697eceSchristos /* 361 */ "#361 (unimplemented)", 4355e697eceSchristos /* 362 */ "#362 (unimplemented)", 4365e697eceSchristos /* 363 */ "#363 (unimplemented)", 4375e697eceSchristos /* 364 */ "#364 (unimplemented)", 4385e697eceSchristos /* 365 */ "#365 (unimplemented)", 4395e697eceSchristos /* 366 */ "#366 (unimplemented)", 4405e697eceSchristos /* 367 */ "#367 (unimplemented)", 4415e697eceSchristos /* 368 */ "#368 (unimplemented)", 4425e697eceSchristos /* 369 */ "#369 (unimplemented)", 4435e697eceSchristos /* 370 */ "#370 (unimplemented)", 4445e697eceSchristos /* 371 */ "#371 (unimplemented)", 4455e697eceSchristos /* 372 */ "#372 (unimplemented)", 4465e697eceSchristos /* 373 */ "#373 (unimplemented)", 4475e697eceSchristos /* 374 */ "#374 (unimplemented)", 4485e697eceSchristos /* 375 */ "#375 (unimplemented)", 4495e697eceSchristos /* 376 */ "#376 (unimplemented)", 4505e697eceSchristos /* 377 */ "#377 (unimplemented)", 4515e697eceSchristos /* 378 */ "#378 (unimplemented)", 4525e697eceSchristos /* 379 */ "#379 (unimplemented)", 4535e697eceSchristos /* 380 */ "#380 (unimplemented)", 4545e697eceSchristos /* 381 */ "#381 (unimplemented)", 4555e697eceSchristos /* 382 */ "#382 (unimplemented)", 4565e697eceSchristos /* 383 */ "#383 (unimplemented)", 4575e697eceSchristos /* 384 */ "#384 (unimplemented)", 4585e697eceSchristos /* 385 */ "#385 (unimplemented)", 4595e697eceSchristos /* 386 */ "#386 (unimplemented)", 4605e697eceSchristos /* 387 */ "#387 (unimplemented)", 4615e697eceSchristos /* 388 */ "#388 (unimplemented)", 4625e697eceSchristos /* 389 */ "#389 (unimplemented)", 4635e697eceSchristos /* 390 */ "#390 (unimplemented)", 4645e697eceSchristos /* 391 */ "#391 (unimplemented)", 4655e697eceSchristos /* 392 */ "#392 (unimplemented)", 4665e697eceSchristos /* 393 */ "#393 (unimplemented)", 4675e697eceSchristos /* 394 */ "#394 (unimplemented)", 4685e697eceSchristos /* 395 */ "#395 (unimplemented)", 4695e697eceSchristos /* 396 */ "#396 (unimplemented)", 4705e697eceSchristos /* 397 */ "#397 (unimplemented)", 4715e697eceSchristos /* 398 */ "#398 (unimplemented)", 4725e697eceSchristos /* 399 */ "#399 (unimplemented)", 4735e697eceSchristos /* 400 */ "#400 (unimplemented)", 4745e697eceSchristos /* 401 */ "#401 (unimplemented)", 4755e697eceSchristos /* 402 */ "#402 (unimplemented)", 4765e697eceSchristos /* 403 */ "#403 (unimplemented)", 4775e697eceSchristos /* 404 */ "#404 (unimplemented)", 4785e697eceSchristos /* 405 */ "#405 (unimplemented)", 4795e697eceSchristos /* 406 */ "#406 (unimplemented)", 4805e697eceSchristos /* 407 */ "#407 (unimplemented)", 4815e697eceSchristos /* 408 */ "#408 (unimplemented)", 4825e697eceSchristos /* 409 */ "#409 (unimplemented)", 4835e697eceSchristos /* 410 */ "#410 (unimplemented)", 4845e697eceSchristos /* 411 */ "#411 (unimplemented)", 4855e697eceSchristos /* 412 */ "#412 (unimplemented)", 4865e697eceSchristos /* 413 */ "#413 (unimplemented)", 4875e697eceSchristos /* 414 */ "#414 (unimplemented)", 4885e697eceSchristos /* 415 */ "#415 (unimplemented)", 4895e697eceSchristos /* 416 */ "#416 (unimplemented)", 4905e697eceSchristos /* 417 */ "#417 (unimplemented)", 4915e697eceSchristos /* 418 */ "#418 (unimplemented)", 4925e697eceSchristos /* 419 */ "#419 (unimplemented)", 4935e697eceSchristos /* 420 */ "#420 (unimplemented)", 4945e697eceSchristos /* 421 */ "#421 (unimplemented)", 4955e697eceSchristos /* 422 */ "#422 (unimplemented)", 4965e697eceSchristos /* 423 */ "#423 (unimplemented)", 4975e697eceSchristos /* 424 */ "#424 (unimplemented pidfd_send_signal)", 4985e697eceSchristos /* 425 */ "#425 (unimplemented io_uring_setup)", 4995e697eceSchristos /* 426 */ "#426 (unimplemented io_uring_enter)", 5005e697eceSchristos /* 427 */ "#427 (unimplemented io_uring_register)", 5015e697eceSchristos /* 428 */ "#428 (unimplemented open_tree)", 5025e697eceSchristos /* 429 */ "#429 (unimplemented move_mount)", 5035e697eceSchristos /* 430 */ "#430 (unimplemented fsopen)", 5045e697eceSchristos /* 431 */ "#431 (unimplemented fsconfig)", 5055e697eceSchristos /* 432 */ "#432 (unimplemented fsmount)", 5065e697eceSchristos /* 433 */ "#433 (unimplemented fspick)", 5075e697eceSchristos /* 434 */ "#434 (unimplemented pidfd_open)", 508*f905d8d6Schristos /* 435 */ "clone3", 509ccd370d9Schristos /* 436 */ "close_range", 5105e697eceSchristos /* 437 */ "#437 (unimplemented openat2)", 5115e697eceSchristos /* 438 */ "#438 (unimplemented pidfd_getfd)", 51275d508beSchristos /* 439 */ "faccessat2", 5135e697eceSchristos /* 440 */ "#440 (unimplemented process_madvise)", 51463ea783fSchristos /* 441 */ "epoll_pwait2", 5155e697eceSchristos /* 442 */ "#442 (unimplemented mount_setattr)", 5165e697eceSchristos /* 443 */ "#443 (unimplemented quotactl_fd)", 5175e697eceSchristos /* 444 */ "#444 (unimplemented landlock_create_ruleset)", 5185e697eceSchristos /* 445 */ "#445 (unimplemented landlock_add_rule)", 5195e697eceSchristos /* 446 */ "#446 (unimplemented landlock_restrict_self)", 5205e697eceSchristos /* 447 */ "#447 (unimplemented memfd_secret)", 5215e697eceSchristos /* 448 */ "#448 (unimplemented process_mrelease)", 5225e697eceSchristos /* 449 */ "#449 (unimplemented futex_waitv)", 5235e697eceSchristos /* 450 */ "#450 (unimplemented set_mempolicy_home_node)", 5245e697eceSchristos /* 451 */ "nosys", 525a5071c95Schristos /* 452 */ "# filler", 526a5071c95Schristos /* 453 */ "# filler", 527a5071c95Schristos /* 454 */ "# filler", 528a5071c95Schristos /* 455 */ "# filler", 529a5071c95Schristos /* 456 */ "# filler", 530a5071c95Schristos /* 457 */ "# filler", 531a5071c95Schristos /* 458 */ "# filler", 532a5071c95Schristos /* 459 */ "# filler", 533a5071c95Schristos /* 460 */ "# filler", 534a5071c95Schristos /* 461 */ "# filler", 535a5071c95Schristos /* 462 */ "# filler", 536a5071c95Schristos /* 463 */ "# filler", 537a5071c95Schristos /* 464 */ "# filler", 538a5071c95Schristos /* 465 */ "# filler", 539a5071c95Schristos /* 466 */ "# filler", 540a5071c95Schristos /* 467 */ "# filler", 541a5071c95Schristos /* 468 */ "# filler", 542a5071c95Schristos /* 469 */ "# filler", 543a5071c95Schristos /* 470 */ "# filler", 544a5071c95Schristos /* 471 */ "# filler", 545a5071c95Schristos /* 472 */ "# filler", 546a5071c95Schristos /* 473 */ "# filler", 547a5071c95Schristos /* 474 */ "# filler", 548a5071c95Schristos /* 475 */ "# filler", 549a5071c95Schristos /* 476 */ "# filler", 550a5071c95Schristos /* 477 */ "# filler", 551a5071c95Schristos /* 478 */ "# filler", 552a5071c95Schristos /* 479 */ "# filler", 553a5071c95Schristos /* 480 */ "# filler", 554a5071c95Schristos /* 481 */ "# filler", 555a5071c95Schristos /* 482 */ "# filler", 556a5071c95Schristos /* 483 */ "# filler", 557a5071c95Schristos /* 484 */ "# filler", 558a5071c95Schristos /* 485 */ "# filler", 559a5071c95Schristos /* 486 */ "# filler", 560a5071c95Schristos /* 487 */ "# filler", 561a5071c95Schristos /* 488 */ "# filler", 562a5071c95Schristos /* 489 */ "# filler", 563a5071c95Schristos /* 490 */ "# filler", 564a5071c95Schristos /* 491 */ "# filler", 565a5071c95Schristos /* 492 */ "# filler", 566a5071c95Schristos /* 493 */ "# filler", 567a5071c95Schristos /* 494 */ "# filler", 568a5071c95Schristos /* 495 */ "# filler", 569a5071c95Schristos /* 496 */ "# filler", 570a5071c95Schristos /* 497 */ "# filler", 571a5071c95Schristos /* 498 */ "# filler", 572a5071c95Schristos /* 499 */ "# filler", 573a5071c95Schristos /* 500 */ "# filler", 574a5071c95Schristos /* 501 */ "# filler", 575a5071c95Schristos /* 502 */ "# filler", 576a5071c95Schristos /* 503 */ "# filler", 577a5071c95Schristos /* 504 */ "# filler", 578a5071c95Schristos /* 505 */ "# filler", 579a5071c95Schristos /* 506 */ "# filler", 580a5071c95Schristos /* 507 */ "# filler", 581a5071c95Schristos /* 508 */ "# filler", 582a5071c95Schristos /* 509 */ "# filler", 583a5071c95Schristos /* 510 */ "# filler", 584a5071c95Schristos /* 511 */ "# filler", 58589647c7cSmanu }; 5866d90b98aSmartin 5876d90b98aSmartin 5886d90b98aSmartin /* libc style syscall names */ 5896d90b98aSmartin const char *const altlinux_syscallnames[] = { 5906d90b98aSmartin /* 0 */ NULL, /* read */ 5916d90b98aSmartin /* 1 */ NULL, /* write */ 5926d90b98aSmartin /* 2 */ NULL, /* open */ 5936d90b98aSmartin /* 3 */ NULL, /* close */ 5946d90b98aSmartin /* 4 */ NULL, /* stat64 */ 5956d90b98aSmartin /* 5 */ NULL, /* fstat64 */ 5966d90b98aSmartin /* 6 */ NULL, /* lstat64 */ 5976d90b98aSmartin /* 7 */ NULL, /* poll */ 5986d90b98aSmartin /* 8 */ NULL, /* lseek */ 5996d90b98aSmartin /* 9 */ NULL, /* mmap */ 6006d90b98aSmartin /* 10 */ NULL, /* mprotect */ 6016d90b98aSmartin /* 11 */ NULL, /* munmap */ 6026d90b98aSmartin /* 12 */ NULL, /* brk */ 6036d90b98aSmartin /* 13 */ NULL, /* rt_sigaction */ 6046d90b98aSmartin /* 14 */ NULL, /* rt_sigprocmask */ 6056d90b98aSmartin /* 15 */ NULL, /* rt_sigreturn */ 6066d90b98aSmartin /* 16 */ NULL, /* ioctl */ 6076d90b98aSmartin /* 17 */ NULL, /* pread */ 6086d90b98aSmartin /* 18 */ NULL, /* pwrite */ 6096d90b98aSmartin /* 19 */ NULL, /* readv */ 6106d90b98aSmartin /* 20 */ NULL, /* writev */ 6116d90b98aSmartin /* 21 */ NULL, /* access */ 6126d90b98aSmartin /* 22 */ NULL, /* pipe */ 6136d90b98aSmartin /* 23 */ NULL, /* select */ 6146d90b98aSmartin /* 24 */ NULL, /* sched_yield */ 6156d90b98aSmartin /* 25 */ NULL, /* mremap */ 6166d90b98aSmartin /* 26 */ "msync", 6176d90b98aSmartin /* 27 */ NULL, /* mincore */ 6186d90b98aSmartin /* 28 */ NULL, /* madvise */ 6196d90b98aSmartin #ifdef SYSVSHM 6206d90b98aSmartin /* 29 */ NULL, /* shmget */ 6216d90b98aSmartin /* 30 */ NULL, /* shmat */ 6226d90b98aSmartin /* 31 */ NULL, /* shmctl */ 6236d90b98aSmartin #else 6246d90b98aSmartin /* 29 */ NULL, /* unimplemented shmget */ 6256d90b98aSmartin /* 30 */ NULL, /* unimplemented shmat */ 6266d90b98aSmartin /* 31 */ NULL, /* unimplemented shmctl */ 6276d90b98aSmartin #endif 6286d90b98aSmartin /* 32 */ NULL, /* dup */ 6296d90b98aSmartin /* 33 */ NULL, /* dup2 */ 6306d90b98aSmartin /* 34 */ NULL, /* pause */ 6316d90b98aSmartin /* 35 */ NULL, /* nanosleep */ 6326d90b98aSmartin /* 36 */ NULL, /* getitimer */ 6336d90b98aSmartin /* 37 */ NULL, /* alarm */ 6346d90b98aSmartin /* 38 */ NULL, /* setitimer */ 6356d90b98aSmartin /* 39 */ NULL, /* getpid */ 6366d90b98aSmartin /* 40 */ NULL, /* unimplemented sendfile */ 6376d90b98aSmartin /* 41 */ NULL, /* socket */ 6386d90b98aSmartin /* 42 */ NULL, /* connect */ 6396d90b98aSmartin /* 43 */ "accept", 6406d90b98aSmartin /* 44 */ NULL, /* sendto */ 6416d90b98aSmartin /* 45 */ NULL, /* recvfrom */ 6426d90b98aSmartin /* 46 */ NULL, /* sendmsg */ 6436d90b98aSmartin /* 47 */ NULL, /* recvmsg */ 6446d90b98aSmartin /* 48 */ NULL, /* shutdown */ 6456d90b98aSmartin /* 49 */ NULL, /* bind */ 6466d90b98aSmartin /* 50 */ NULL, /* listen */ 6476d90b98aSmartin /* 51 */ NULL, /* getsockname */ 6486d90b98aSmartin /* 52 */ NULL, /* getpeername */ 6496d90b98aSmartin /* 53 */ NULL, /* socketpair */ 6506d90b98aSmartin /* 54 */ NULL, /* setsockopt */ 6516d90b98aSmartin /* 55 */ NULL, /* getsockopt */ 6526d90b98aSmartin /* 56 */ NULL, /* clone */ 6536d90b98aSmartin /* 57 */ NULL, /* fork */ 6546d90b98aSmartin /* 58 */ "vfork", 6556d90b98aSmartin /* 59 */ NULL, /* execve */ 6566d90b98aSmartin /* 60 */ NULL, /* exit */ 6576d90b98aSmartin /* 61 */ NULL, /* wait4 */ 6586d90b98aSmartin /* 62 */ NULL, /* kill */ 6596d90b98aSmartin /* 63 */ NULL, /* uname */ 6606d90b98aSmartin #ifdef SYSVSEM 6616d90b98aSmartin /* 64 */ NULL, /* semget */ 6626d90b98aSmartin /* 65 */ NULL, /* semop */ 6636d90b98aSmartin /* 66 */ NULL, /* semctl */ 6646d90b98aSmartin #else 6656d90b98aSmartin /* 64 */ NULL, /* unimplemented semget */ 6666d90b98aSmartin /* 65 */ NULL, /* unimplemented semop */ 6676d90b98aSmartin /* 66 */ NULL, /* unimplemented semctl */ 6686d90b98aSmartin #endif 6696d90b98aSmartin #ifdef SYSVSHM 6706d90b98aSmartin /* 67 */ NULL, /* shmdt */ 6716d90b98aSmartin #else 6726d90b98aSmartin /* 67 */ NULL, /* unimplemented shmdt */ 6736d90b98aSmartin #endif 6746d90b98aSmartin #ifdef SYSVMSG 6756d90b98aSmartin /* 68 */ NULL, /* msgget */ 6766d90b98aSmartin /* 69 */ NULL, /* msgsnd */ 6776d90b98aSmartin /* 70 */ NULL, /* msgrcv */ 6786d90b98aSmartin /* 71 */ NULL, /* msgctl */ 6796d90b98aSmartin #else 6806d90b98aSmartin /* 68 */ NULL, /* unimplemented msgget */ 6816d90b98aSmartin /* 69 */ NULL, /* unimplemented msgsnd */ 6826d90b98aSmartin /* 70 */ NULL, /* unimplemented msgrcv */ 6836d90b98aSmartin /* 71 */ NULL, /* unimplemented msgctl */ 6846d90b98aSmartin #endif 6856d90b98aSmartin /* 72 */ NULL, /* fcntl */ 6866d90b98aSmartin /* 73 */ NULL, /* flock */ 6876d90b98aSmartin /* 74 */ NULL, /* fsync */ 6886d90b98aSmartin /* 75 */ NULL, /* fdatasync */ 6896d90b98aSmartin /* 76 */ NULL, /* truncate64 */ 6906d90b98aSmartin /* 77 */ NULL, /* ftruncate64 */ 6916d90b98aSmartin /* 78 */ NULL, /* getdents */ 6926d90b98aSmartin /* 79 */ NULL, /* __getcwd */ 6936d90b98aSmartin /* 80 */ NULL, /* chdir */ 6946d90b98aSmartin /* 81 */ NULL, /* fchdir */ 6956d90b98aSmartin /* 82 */ NULL, /* __posix_rename */ 6966d90b98aSmartin /* 83 */ NULL, /* mkdir */ 6976d90b98aSmartin /* 84 */ NULL, /* rmdir */ 6986d90b98aSmartin /* 85 */ NULL, /* creat */ 6996d90b98aSmartin /* 86 */ NULL, /* link */ 7006d90b98aSmartin /* 87 */ NULL, /* unlink */ 7016d90b98aSmartin /* 88 */ NULL, /* symlink */ 7026d90b98aSmartin /* 89 */ NULL, /* readlink */ 7036d90b98aSmartin /* 90 */ NULL, /* chmod */ 7046d90b98aSmartin /* 91 */ NULL, /* fchmod */ 7056d90b98aSmartin /* 92 */ NULL, /* __posix_chown */ 7066d90b98aSmartin /* 93 */ NULL, /* __posix_fchown */ 7076d90b98aSmartin /* 94 */ NULL, /* __posix_lchown */ 7086d90b98aSmartin /* 95 */ NULL, /* umask */ 7096d90b98aSmartin /* 96 */ NULL, /* gettimeofday */ 7106d90b98aSmartin /* 97 */ NULL, /* getrlimit */ 7116d90b98aSmartin /* 98 */ NULL, /* getrusage */ 7126d90b98aSmartin /* 99 */ NULL, /* sysinfo */ 7136d90b98aSmartin /* 100 */ NULL, /* times */ 7146d90b98aSmartin /* 101 */ NULL, /* ptrace */ 7156d90b98aSmartin /* 102 */ NULL, /* getuid */ 7166d90b98aSmartin /* 103 */ NULL, /* unimplemented syslog */ 7176d90b98aSmartin /* 104 */ NULL, /* getgid */ 7186d90b98aSmartin /* 105 */ NULL, /* setuid */ 7196d90b98aSmartin /* 106 */ NULL, /* setgid */ 7206d90b98aSmartin /* 107 */ NULL, /* geteuid */ 7216d90b98aSmartin /* 108 */ NULL, /* getegid */ 7226d90b98aSmartin /* 109 */ NULL, /* setpgid */ 7236d90b98aSmartin /* 110 */ NULL, /* getppid */ 7246d90b98aSmartin /* 111 */ NULL, /* getpgrp */ 7256d90b98aSmartin /* 112 */ NULL, /* setsid */ 7266d90b98aSmartin /* 113 */ NULL, /* setreuid */ 7276d90b98aSmartin /* 114 */ NULL, /* setregid */ 7286d90b98aSmartin /* 115 */ NULL, /* getgroups */ 7296d90b98aSmartin /* 116 */ NULL, /* setgroups */ 7306d90b98aSmartin /* 117 */ NULL, /* setresuid */ 7316d90b98aSmartin /* 118 */ NULL, /* getresuid */ 7326d90b98aSmartin /* 119 */ NULL, /* setresgid */ 7336d90b98aSmartin /* 120 */ NULL, /* getresgid */ 7346d90b98aSmartin /* 121 */ NULL, /* getpgid */ 7356d90b98aSmartin /* 122 */ NULL, /* setfsuid */ 7366d90b98aSmartin /* 123 */ NULL, /* setfsgid */ 7376d90b98aSmartin /* 124 */ NULL, /* getsid */ 7386d90b98aSmartin /* 125 */ NULL, /* unimplemented capget */ 7396d90b98aSmartin /* 126 */ NULL, /* unimplemented capset */ 7406d90b98aSmartin /* 127 */ NULL, /* rt_sigpending */ 7416d90b98aSmartin /* 128 */ NULL, /* rt_sigtimedwait */ 7426d90b98aSmartin /* 129 */ NULL, /* rt_queueinfo */ 7436d90b98aSmartin /* 130 */ NULL, /* rt_sigsuspend */ 7446d90b98aSmartin /* 131 */ NULL, /* sigaltstack */ 7456d90b98aSmartin /* 132 */ NULL, /* utime */ 7466d90b98aSmartin /* 133 */ NULL, /* mknod */ 7476d90b98aSmartin #ifdef EXEC_AOUT 7486d90b98aSmartin /* 134 */ NULL, /* uselib */ 7496d90b98aSmartin #else 7506d90b98aSmartin /* 134 */ NULL, /* unimplemented sys_uselib */ 7516d90b98aSmartin #endif 7526d90b98aSmartin /* 135 */ NULL, /* personality */ 7536d90b98aSmartin /* 136 */ NULL, /* unimplemented ustat */ 7546d90b98aSmartin /* 137 */ NULL, /* statfs */ 7556d90b98aSmartin /* 138 */ NULL, /* fstatfs */ 7566d90b98aSmartin /* 139 */ NULL, /* unimplemented sysfs */ 7576d90b98aSmartin /* 140 */ NULL, /* getpriority */ 7586d90b98aSmartin /* 141 */ NULL, /* setpriority */ 7596d90b98aSmartin /* 142 */ NULL, /* sched_setparam */ 7606d90b98aSmartin /* 143 */ NULL, /* sched_getparam */ 7616d90b98aSmartin /* 144 */ NULL, /* sched_setscheduler */ 7626d90b98aSmartin /* 145 */ NULL, /* sched_getscheduler */ 7636d90b98aSmartin /* 146 */ NULL, /* sched_get_priority_max */ 7646d90b98aSmartin /* 147 */ NULL, /* sched_get_priority_min */ 7656d90b98aSmartin /* 148 */ NULL, /* unimplemented sys_sched_rr_get_interval */ 7666d90b98aSmartin /* 149 */ NULL, /* mlock */ 7676d90b98aSmartin /* 150 */ NULL, /* munlock */ 7686d90b98aSmartin /* 151 */ NULL, /* mlockall */ 7696d90b98aSmartin /* 152 */ NULL, /* munlockall */ 7706d90b98aSmartin /* 153 */ NULL, /* unimplemented vhangup */ 7716d90b98aSmartin /* 154 */ NULL, /* modify_ldt */ 7726d90b98aSmartin /* 155 */ NULL, /* unimplemented pivot_root */ 7736d90b98aSmartin /* 156 */ NULL, /* __sysctl */ 7746d90b98aSmartin /* 157 */ NULL, /* unimplemented prctl */ 7756d90b98aSmartin /* 158 */ NULL, /* arch_prctl */ 7766d90b98aSmartin /* 159 */ NULL, /* unimplemented adjtimex */ 7776d90b98aSmartin /* 160 */ NULL, /* setrlimit */ 7786d90b98aSmartin /* 161 */ NULL, /* chroot */ 7796d90b98aSmartin /* 162 */ NULL, /* sync */ 7806d90b98aSmartin /* 163 */ NULL, /* acct */ 7816d90b98aSmartin /* 164 */ NULL, /* settimeofday */ 7826d90b98aSmartin /* 165 */ NULL, /* unimplemented mount */ 7836d90b98aSmartin /* 166 */ NULL, /* unimplemented umount2 */ 7846d90b98aSmartin /* 167 */ NULL, /* swapon */ 7856d90b98aSmartin /* 168 */ NULL, /* swapoff */ 7866d90b98aSmartin /* 169 */ NULL, /* reboot */ 7876d90b98aSmartin /* 170 */ NULL, /* sethostname */ 7886d90b98aSmartin /* 171 */ NULL, /* setdomainname */ 7896d90b98aSmartin /* 172 */ NULL, /* iopl */ 7906d90b98aSmartin /* 173 */ NULL, /* ioperm */ 7916d90b98aSmartin /* 174 */ NULL, /* unimplemented create_module */ 7926d90b98aSmartin /* 175 */ NULL, /* unimplemented init_module */ 7936d90b98aSmartin /* 176 */ NULL, /* unimplemented delete_module */ 7946d90b98aSmartin /* 177 */ NULL, /* unimplemented get_kernel_syms */ 7956d90b98aSmartin /* 178 */ NULL, /* unimplemented query_module */ 7966d90b98aSmartin /* 179 */ NULL, /* unimplemented quotactl */ 7976d90b98aSmartin /* 180 */ NULL, /* unimplemented nfsservctl */ 7986d90b98aSmartin /* 181 */ NULL, /* unimplemented getpmsg */ 7996d90b98aSmartin /* 182 */ NULL, /* unimplemented putpmsg */ 8006d90b98aSmartin /* 183 */ NULL, /* unimplemented afs_syscall */ 8016d90b98aSmartin /* 184 */ NULL, /* unimplemented tuxcall */ 8026d90b98aSmartin /* 185 */ NULL, /* unimplemented security */ 8036d90b98aSmartin /* 186 */ NULL, /* gettid */ 804ccd370d9Schristos /* 187 */ NULL, /* readahead */ 8056d90b98aSmartin /* 188 */ NULL, /* setxattr */ 8066d90b98aSmartin /* 189 */ NULL, /* lsetxattr */ 8076d90b98aSmartin /* 190 */ NULL, /* fsetxattr */ 8086d90b98aSmartin /* 191 */ NULL, /* getxattr */ 8096d90b98aSmartin /* 192 */ NULL, /* lgetxattr */ 8106d90b98aSmartin /* 193 */ NULL, /* fgetxattr */ 8116d90b98aSmartin /* 194 */ NULL, /* listxattr */ 8126d90b98aSmartin /* 195 */ NULL, /* llistxattr */ 8136d90b98aSmartin /* 196 */ NULL, /* flistxattr */ 8146d90b98aSmartin /* 197 */ NULL, /* removexattr */ 8156d90b98aSmartin /* 198 */ NULL, /* lremovexattr */ 8166d90b98aSmartin /* 199 */ NULL, /* fremovexattr */ 8176d90b98aSmartin /* 200 */ NULL, /* tkill */ 8186d90b98aSmartin /* 201 */ NULL, /* time */ 8196d90b98aSmartin /* 202 */ NULL, /* futex */ 8206d90b98aSmartin /* 203 */ NULL, /* sched_setaffinity */ 8216d90b98aSmartin /* 204 */ NULL, /* sched_getaffinity */ 8226d90b98aSmartin /* 205 */ NULL, /* unimplemented set_thread_area */ 8236d90b98aSmartin /* 206 */ NULL, /* unimplemented io_setup */ 8246d90b98aSmartin /* 207 */ NULL, /* unimplemented io_destroy */ 8256d90b98aSmartin /* 208 */ NULL, /* unimplemented io_getevents */ 8266d90b98aSmartin /* 209 */ NULL, /* unimplemented io_submit */ 8276d90b98aSmartin /* 210 */ NULL, /* unimplemented io_cancel */ 8286d90b98aSmartin /* 211 */ NULL, /* unimplemented get_thread_area */ 8296d90b98aSmartin /* 212 */ NULL, /* unimplemented lookup_dcookie */ 83063ea783fSchristos /* 213 */ NULL, /* epoll_create */ 8316d90b98aSmartin /* 214 */ NULL, /* unimplemented epoll_ctl_old */ 8326d90b98aSmartin /* 215 */ NULL, /* unimplemented epoll_wait_old */ 8336d90b98aSmartin /* 216 */ NULL, /* unimplemented remap_file_pages */ 8346d90b98aSmartin /* 217 */ NULL, /* getdents64 */ 8356d90b98aSmartin /* 218 */ NULL, /* set_tid_address */ 8366d90b98aSmartin /* 219 */ NULL, /* unimplemented restart_syscall */ 8376d90b98aSmartin /* 220 */ NULL, /* unimplemented semtimedop */ 8386d90b98aSmartin /* 221 */ NULL, /* fadvise64 */ 839a108364eSthorpej /* 222 */ NULL, /* timer_create */ 840a108364eSthorpej /* 223 */ NULL, /* timer_settime */ 841a108364eSthorpej /* 224 */ NULL, /* timer_gettime */ 842a108364eSthorpej /* 225 */ NULL, /* timer_getoverrun */ 843a108364eSthorpej /* 226 */ NULL, /* timer_delete */ 8446d90b98aSmartin /* 227 */ NULL, /* clock_settime */ 8456d90b98aSmartin /* 228 */ NULL, /* clock_gettime */ 8466d90b98aSmartin /* 229 */ NULL, /* clock_getres */ 8476d90b98aSmartin /* 230 */ NULL, /* clock_nanosleep */ 8486d90b98aSmartin /* 231 */ NULL, /* exit_group */ 84963ea783fSchristos /* 232 */ NULL, /* epoll_wait */ 85063ea783fSchristos /* 233 */ NULL, /* epoll_ctl */ 8516d90b98aSmartin /* 234 */ NULL, /* tgkill */ 8526d90b98aSmartin /* 235 */ NULL, /* utimes */ 8536d90b98aSmartin /* 236 */ NULL, /* unimplemented vserver */ 8546d90b98aSmartin /* 237 */ NULL, /* unimplemented mbind */ 8556d90b98aSmartin /* 238 */ NULL, /* unimplemented set_mempolicy */ 8566d90b98aSmartin /* 239 */ NULL, /* unimplemented get_mempolicy */ 85716a450f4Schristos /* 240 */ NULL, /* mq_open */ 85816a450f4Schristos /* 241 */ NULL, /* mq_unlink */ 85916a450f4Schristos /* 242 */ NULL, /* mq_timedsend */ 86016a450f4Schristos /* 243 */ NULL, /* mq_timedreceive */ 86116a450f4Schristos /* 244 */ NULL, /* mq_notify */ 86216a450f4Schristos /* 245 */ NULL, /* mq_getsetattr */ 8636d90b98aSmartin /* 246 */ NULL, /* unimplemented kexec_load */ 864f173e917Schristos /* 247 */ NULL, /* waitid */ 8656d90b98aSmartin /* 248 */ NULL, /* unimplemented add_key */ 8666d90b98aSmartin /* 249 */ NULL, /* unimplemented request_key */ 8676d90b98aSmartin /* 250 */ NULL, /* unimplemented keyctl */ 8686d90b98aSmartin /* 251 */ NULL, /* unimplemented ioprio_set */ 8696d90b98aSmartin /* 252 */ NULL, /* unimplemented ioprio_get */ 87040dae343Schristos /* 253 */ NULL, /* inotify_init */ 87140dae343Schristos /* 254 */ NULL, /* inotify_add_watch */ 87240dae343Schristos /* 255 */ NULL, /* inotify_rm_watch */ 8736d90b98aSmartin /* 256 */ NULL, /* unimplemented migrate_pages */ 8746d90b98aSmartin /* 257 */ NULL, /* openat */ 8756d90b98aSmartin /* 258 */ NULL, /* mkdirat */ 8766d90b98aSmartin /* 259 */ NULL, /* mknodat */ 8776d90b98aSmartin /* 260 */ NULL, /* fchownat */ 8786d90b98aSmartin /* 261 */ NULL, /* unimplemented futimesat */ 8796d90b98aSmartin /* 262 */ NULL, /* fstatat64 */ 8806d90b98aSmartin /* 263 */ NULL, /* unlinkat */ 8816d90b98aSmartin /* 264 */ NULL, /* renameat */ 8826d90b98aSmartin /* 265 */ NULL, /* linkat */ 8836d90b98aSmartin /* 266 */ NULL, /* symlinkat */ 8846d90b98aSmartin /* 267 */ NULL, /* readlinkat */ 8856d90b98aSmartin /* 268 */ NULL, /* fchmodat */ 8866d90b98aSmartin /* 269 */ NULL, /* faccessat */ 8876d90b98aSmartin /* 270 */ NULL, /* pselect6 */ 8886d90b98aSmartin /* 271 */ NULL, /* ppoll */ 8896d90b98aSmartin /* 272 */ NULL, /* unimplemented unshare */ 890cb9aba0eSthorpej /* 273 */ NULL, /* __futex_set_robust_list */ 891cb9aba0eSthorpej /* 274 */ NULL, /* __futex_get_robust_list */ 8926d90b98aSmartin /* 275 */ NULL, /* unimplemented splice */ 8936d90b98aSmartin /* 276 */ NULL, /* unimplemented tee */ 894*f905d8d6Schristos /* 277 */ NULL, /* sync_file_range */ 8956d90b98aSmartin /* 278 */ NULL, /* unimplemented vmsplice */ 8966d90b98aSmartin /* 279 */ NULL, /* unimplemented move_pages */ 8976d90b98aSmartin /* 280 */ NULL, /* utimensat */ 89863ea783fSchristos /* 281 */ NULL, /* epoll_pwait */ 8996d90b98aSmartin /* 282 */ NULL, /* unimplemented signalfd */ 90030226473Sthorpej /* 283 */ NULL, /* timerfd_create */ 9017a09b9c7Sthorpej /* 284 */ NULL, /* eventfd */ 902d61dd23cSjdolecek /* 285 */ NULL, /* fallocate */ 90330226473Sthorpej /* 286 */ NULL, /* timerfd_settime */ 90430226473Sthorpej /* 287 */ NULL, /* timerfd_gettime */ 905c155f74aSchristos /* 288 */ NULL, /* accept4 */ 9066d90b98aSmartin /* 289 */ NULL, /* unimplemented signalfd4 */ 9077a09b9c7Sthorpej /* 290 */ NULL, /* eventfd2 */ 90863ea783fSchristos /* 291 */ NULL, /* epoll_create1 */ 9096d90b98aSmartin /* 292 */ NULL, /* dup3 */ 9106d90b98aSmartin /* 293 */ NULL, /* pipe2 */ 91140dae343Schristos /* 294 */ NULL, /* inotify_init1 */ 912d007899aSthorpej /* 295 */ NULL, /* preadv */ 913d007899aSthorpej /* 296 */ NULL, /* pwritev */ 9146d90b98aSmartin /* 297 */ NULL, /* unimplemented rt_tgsigqueueinfo */ 9156d90b98aSmartin /* 298 */ NULL, /* unimplemented perf_counter_open */ 91669d5c344Schristos /* 299 */ NULL, /* recvmmsg */ 9176d90b98aSmartin /* 300 */ NULL, /* unimplemented fanotify_init */ 9186d90b98aSmartin /* 301 */ NULL, /* unimplemented fanotify_mark */ 919dc0b6747Sryo /* 302 */ NULL, /* prlimit64 */ 9206d90b98aSmartin /* 303 */ NULL, /* unimplemented name_to_handle_at */ 9216d90b98aSmartin /* 304 */ NULL, /* unimplemented open_by_handle_at */ 9226d90b98aSmartin /* 305 */ NULL, /* unimplemented clock_adjtime */ 923*f905d8d6Schristos /* 306 */ NULL, /* syncfs */ 92469d5c344Schristos /* 307 */ NULL, /* sendmmsg */ 9256d90b98aSmartin /* 308 */ NULL, /* unimplemented setns */ 92675d508beSchristos /* 309 */ NULL, /* getcpu */ 9276d90b98aSmartin /* 310 */ NULL, /* unimplemented process_vm_readv */ 9286d90b98aSmartin /* 311 */ NULL, /* unimplemented process_vm_writev */ 9296d90b98aSmartin /* 312 */ NULL, /* unimplemented kcmp */ 9306d90b98aSmartin /* 313 */ NULL, /* unimplemented finit_module */ 9315e697eceSchristos /* 314 */ NULL, /* unimplemented sched_setattr */ 9325e697eceSchristos /* 315 */ NULL, /* unimplemented sched_getattr */ 933*f905d8d6Schristos /* 316 */ NULL, /* renameat2 */ 9345e697eceSchristos /* 317 */ NULL, /* unimplemented seccomp */ 9355e697eceSchristos /* 318 */ NULL, /* getrandom */ 9365e697eceSchristos /* 319 */ NULL, /* memfd_create */ 9375e697eceSchristos /* 320 */ NULL, /* unimplemented kexec_file_load */ 9385e697eceSchristos /* 321 */ NULL, /* unimplemented bpf */ 9395e697eceSchristos /* 322 */ NULL, /* unimplemented execveat */ 9405e697eceSchristos /* 323 */ NULL, /* unimplemented userfaultfd */ 9415e697eceSchristos /* 324 */ NULL, /* unimplemented membarrier */ 9425e697eceSchristos /* 325 */ NULL, /* unimplemented mlock2 */ 943*f905d8d6Schristos /* 326 */ NULL, /* copy_file_range */ 9445e697eceSchristos /* 327 */ NULL, /* unimplemented preadv2 */ 9455e697eceSchristos /* 328 */ NULL, /* unimplemented pwritev2 */ 9465e697eceSchristos /* 329 */ NULL, /* unimplemented pkey_mprotect */ 9475e697eceSchristos /* 330 */ NULL, /* unimplemented pkey_alloc */ 9485e697eceSchristos /* 331 */ NULL, /* unimplemented pkey_free */ 949ccd370d9Schristos /* 332 */ NULL, /* statx */ 9505e697eceSchristos /* 333 */ NULL, /* unimplemented io_pgetevents */ 9515e697eceSchristos /* 334 */ NULL, /* unimplemented rseq */ 9525e697eceSchristos /* 335 */ NULL, /* unimplemented */ 9535e697eceSchristos /* 336 */ NULL, /* unimplemented */ 9545e697eceSchristos /* 337 */ NULL, /* unimplemented */ 9555e697eceSchristos /* 338 */ NULL, /* unimplemented */ 9565e697eceSchristos /* 339 */ NULL, /* unimplemented */ 9575e697eceSchristos /* 340 */ NULL, /* unimplemented */ 9585e697eceSchristos /* 341 */ NULL, /* unimplemented */ 9595e697eceSchristos /* 342 */ NULL, /* unimplemented */ 9605e697eceSchristos /* 343 */ NULL, /* unimplemented */ 9615e697eceSchristos /* 344 */ NULL, /* unimplemented */ 9625e697eceSchristos /* 345 */ NULL, /* unimplemented */ 9635e697eceSchristos /* 346 */ NULL, /* unimplemented */ 9645e697eceSchristos /* 347 */ NULL, /* unimplemented */ 9655e697eceSchristos /* 348 */ NULL, /* unimplemented */ 9665e697eceSchristos /* 349 */ NULL, /* unimplemented */ 9675e697eceSchristos /* 350 */ NULL, /* unimplemented */ 9685e697eceSchristos /* 351 */ NULL, /* unimplemented */ 9695e697eceSchristos /* 352 */ NULL, /* unimplemented */ 9705e697eceSchristos /* 353 */ NULL, /* unimplemented */ 9715e697eceSchristos /* 354 */ NULL, /* unimplemented */ 9725e697eceSchristos /* 355 */ NULL, /* unimplemented */ 9735e697eceSchristos /* 356 */ NULL, /* unimplemented */ 9745e697eceSchristos /* 357 */ NULL, /* unimplemented */ 9755e697eceSchristos /* 358 */ NULL, /* unimplemented */ 9765e697eceSchristos /* 359 */ NULL, /* unimplemented */ 9775e697eceSchristos /* 360 */ NULL, /* unimplemented */ 9785e697eceSchristos /* 361 */ NULL, /* unimplemented */ 9795e697eceSchristos /* 362 */ NULL, /* unimplemented */ 9805e697eceSchristos /* 363 */ NULL, /* unimplemented */ 9815e697eceSchristos /* 364 */ NULL, /* unimplemented */ 9825e697eceSchristos /* 365 */ NULL, /* unimplemented */ 9835e697eceSchristos /* 366 */ NULL, /* unimplemented */ 9845e697eceSchristos /* 367 */ NULL, /* unimplemented */ 9855e697eceSchristos /* 368 */ NULL, /* unimplemented */ 9865e697eceSchristos /* 369 */ NULL, /* unimplemented */ 9875e697eceSchristos /* 370 */ NULL, /* unimplemented */ 9885e697eceSchristos /* 371 */ NULL, /* unimplemented */ 9895e697eceSchristos /* 372 */ NULL, /* unimplemented */ 9905e697eceSchristos /* 373 */ NULL, /* unimplemented */ 9915e697eceSchristos /* 374 */ NULL, /* unimplemented */ 9925e697eceSchristos /* 375 */ NULL, /* unimplemented */ 9935e697eceSchristos /* 376 */ NULL, /* unimplemented */ 9945e697eceSchristos /* 377 */ NULL, /* unimplemented */ 9955e697eceSchristos /* 378 */ NULL, /* unimplemented */ 9965e697eceSchristos /* 379 */ NULL, /* unimplemented */ 9975e697eceSchristos /* 380 */ NULL, /* unimplemented */ 9985e697eceSchristos /* 381 */ NULL, /* unimplemented */ 9995e697eceSchristos /* 382 */ NULL, /* unimplemented */ 10005e697eceSchristos /* 383 */ NULL, /* unimplemented */ 10015e697eceSchristos /* 384 */ NULL, /* unimplemented */ 10025e697eceSchristos /* 385 */ NULL, /* unimplemented */ 10035e697eceSchristos /* 386 */ NULL, /* unimplemented */ 10045e697eceSchristos /* 387 */ NULL, /* unimplemented */ 10055e697eceSchristos /* 388 */ NULL, /* unimplemented */ 10065e697eceSchristos /* 389 */ NULL, /* unimplemented */ 10075e697eceSchristos /* 390 */ NULL, /* unimplemented */ 10085e697eceSchristos /* 391 */ NULL, /* unimplemented */ 10095e697eceSchristos /* 392 */ NULL, /* unimplemented */ 10105e697eceSchristos /* 393 */ NULL, /* unimplemented */ 10115e697eceSchristos /* 394 */ NULL, /* unimplemented */ 10125e697eceSchristos /* 395 */ NULL, /* unimplemented */ 10135e697eceSchristos /* 396 */ NULL, /* unimplemented */ 10145e697eceSchristos /* 397 */ NULL, /* unimplemented */ 10155e697eceSchristos /* 398 */ NULL, /* unimplemented */ 10165e697eceSchristos /* 399 */ NULL, /* unimplemented */ 10175e697eceSchristos /* 400 */ NULL, /* unimplemented */ 10185e697eceSchristos /* 401 */ NULL, /* unimplemented */ 10195e697eceSchristos /* 402 */ NULL, /* unimplemented */ 10205e697eceSchristos /* 403 */ NULL, /* unimplemented */ 10215e697eceSchristos /* 404 */ NULL, /* unimplemented */ 10225e697eceSchristos /* 405 */ NULL, /* unimplemented */ 10235e697eceSchristos /* 406 */ NULL, /* unimplemented */ 10245e697eceSchristos /* 407 */ NULL, /* unimplemented */ 10255e697eceSchristos /* 408 */ NULL, /* unimplemented */ 10265e697eceSchristos /* 409 */ NULL, /* unimplemented */ 10275e697eceSchristos /* 410 */ NULL, /* unimplemented */ 10285e697eceSchristos /* 411 */ NULL, /* unimplemented */ 10295e697eceSchristos /* 412 */ NULL, /* unimplemented */ 10305e697eceSchristos /* 413 */ NULL, /* unimplemented */ 10315e697eceSchristos /* 414 */ NULL, /* unimplemented */ 10325e697eceSchristos /* 415 */ NULL, /* unimplemented */ 10335e697eceSchristos /* 416 */ NULL, /* unimplemented */ 10345e697eceSchristos /* 417 */ NULL, /* unimplemented */ 10355e697eceSchristos /* 418 */ NULL, /* unimplemented */ 10365e697eceSchristos /* 419 */ NULL, /* unimplemented */ 10375e697eceSchristos /* 420 */ NULL, /* unimplemented */ 10385e697eceSchristos /* 421 */ NULL, /* unimplemented */ 10395e697eceSchristos /* 422 */ NULL, /* unimplemented */ 10405e697eceSchristos /* 423 */ NULL, /* unimplemented */ 10415e697eceSchristos /* 424 */ NULL, /* unimplemented pidfd_send_signal */ 10425e697eceSchristos /* 425 */ NULL, /* unimplemented io_uring_setup */ 10435e697eceSchristos /* 426 */ NULL, /* unimplemented io_uring_enter */ 10445e697eceSchristos /* 427 */ NULL, /* unimplemented io_uring_register */ 10455e697eceSchristos /* 428 */ NULL, /* unimplemented open_tree */ 10465e697eceSchristos /* 429 */ NULL, /* unimplemented move_mount */ 10475e697eceSchristos /* 430 */ NULL, /* unimplemented fsopen */ 10485e697eceSchristos /* 431 */ NULL, /* unimplemented fsconfig */ 10495e697eceSchristos /* 432 */ NULL, /* unimplemented fsmount */ 10505e697eceSchristos /* 433 */ NULL, /* unimplemented fspick */ 10515e697eceSchristos /* 434 */ NULL, /* unimplemented pidfd_open */ 1052*f905d8d6Schristos /* 435 */ NULL, /* clone3 */ 1053ccd370d9Schristos /* 436 */ NULL, /* close_range */ 10545e697eceSchristos /* 437 */ NULL, /* unimplemented openat2 */ 10555e697eceSchristos /* 438 */ NULL, /* unimplemented pidfd_getfd */ 105675d508beSchristos /* 439 */ NULL, /* faccessat2 */ 10575e697eceSchristos /* 440 */ NULL, /* unimplemented process_madvise */ 105863ea783fSchristos /* 441 */ NULL, /* epoll_pwait2 */ 10595e697eceSchristos /* 442 */ NULL, /* unimplemented mount_setattr */ 10605e697eceSchristos /* 443 */ NULL, /* unimplemented quotactl_fd */ 10615e697eceSchristos /* 444 */ NULL, /* unimplemented landlock_create_ruleset */ 10625e697eceSchristos /* 445 */ NULL, /* unimplemented landlock_add_rule */ 10635e697eceSchristos /* 446 */ NULL, /* unimplemented landlock_restrict_self */ 10645e697eceSchristos /* 447 */ NULL, /* unimplemented memfd_secret */ 10655e697eceSchristos /* 448 */ NULL, /* unimplemented process_mrelease */ 10665e697eceSchristos /* 449 */ NULL, /* unimplemented futex_waitv */ 10675e697eceSchristos /* 450 */ NULL, /* unimplemented set_mempolicy_home_node */ 10685e697eceSchristos /* 451 */ NULL, /* nosys */ 10696d90b98aSmartin /* 452 */ NULL, /* filler */ 10706d90b98aSmartin /* 453 */ NULL, /* filler */ 10716d90b98aSmartin /* 454 */ NULL, /* filler */ 10726d90b98aSmartin /* 455 */ NULL, /* filler */ 10736d90b98aSmartin /* 456 */ NULL, /* filler */ 10746d90b98aSmartin /* 457 */ NULL, /* filler */ 10756d90b98aSmartin /* 458 */ NULL, /* filler */ 10766d90b98aSmartin /* 459 */ NULL, /* filler */ 10776d90b98aSmartin /* 460 */ NULL, /* filler */ 10786d90b98aSmartin /* 461 */ NULL, /* filler */ 10796d90b98aSmartin /* 462 */ NULL, /* filler */ 10806d90b98aSmartin /* 463 */ NULL, /* filler */ 10816d90b98aSmartin /* 464 */ NULL, /* filler */ 10826d90b98aSmartin /* 465 */ NULL, /* filler */ 10836d90b98aSmartin /* 466 */ NULL, /* filler */ 10846d90b98aSmartin /* 467 */ NULL, /* filler */ 10856d90b98aSmartin /* 468 */ NULL, /* filler */ 10866d90b98aSmartin /* 469 */ NULL, /* filler */ 10876d90b98aSmartin /* 470 */ NULL, /* filler */ 10886d90b98aSmartin /* 471 */ NULL, /* filler */ 10896d90b98aSmartin /* 472 */ NULL, /* filler */ 10906d90b98aSmartin /* 473 */ NULL, /* filler */ 10916d90b98aSmartin /* 474 */ NULL, /* filler */ 10926d90b98aSmartin /* 475 */ NULL, /* filler */ 10936d90b98aSmartin /* 476 */ NULL, /* filler */ 10946d90b98aSmartin /* 477 */ NULL, /* filler */ 10956d90b98aSmartin /* 478 */ NULL, /* filler */ 10966d90b98aSmartin /* 479 */ NULL, /* filler */ 10976d90b98aSmartin /* 480 */ NULL, /* filler */ 10986d90b98aSmartin /* 481 */ NULL, /* filler */ 10996d90b98aSmartin /* 482 */ NULL, /* filler */ 11006d90b98aSmartin /* 483 */ NULL, /* filler */ 11016d90b98aSmartin /* 484 */ NULL, /* filler */ 11026d90b98aSmartin /* 485 */ NULL, /* filler */ 11036d90b98aSmartin /* 486 */ NULL, /* filler */ 11046d90b98aSmartin /* 487 */ NULL, /* filler */ 11056d90b98aSmartin /* 488 */ NULL, /* filler */ 11066d90b98aSmartin /* 489 */ NULL, /* filler */ 11076d90b98aSmartin /* 490 */ NULL, /* filler */ 11086d90b98aSmartin /* 491 */ NULL, /* filler */ 11096d90b98aSmartin /* 492 */ NULL, /* filler */ 11106d90b98aSmartin /* 493 */ NULL, /* filler */ 11116d90b98aSmartin /* 494 */ NULL, /* filler */ 11126d90b98aSmartin /* 495 */ NULL, /* filler */ 11136d90b98aSmartin /* 496 */ NULL, /* filler */ 11146d90b98aSmartin /* 497 */ NULL, /* filler */ 11156d90b98aSmartin /* 498 */ NULL, /* filler */ 11166d90b98aSmartin /* 499 */ NULL, /* filler */ 11176d90b98aSmartin /* 500 */ NULL, /* filler */ 11186d90b98aSmartin /* 501 */ NULL, /* filler */ 11196d90b98aSmartin /* 502 */ NULL, /* filler */ 11206d90b98aSmartin /* 503 */ NULL, /* filler */ 11216d90b98aSmartin /* 504 */ NULL, /* filler */ 11226d90b98aSmartin /* 505 */ NULL, /* filler */ 11236d90b98aSmartin /* 506 */ NULL, /* filler */ 11246d90b98aSmartin /* 507 */ NULL, /* filler */ 11256d90b98aSmartin /* 508 */ NULL, /* filler */ 11266d90b98aSmartin /* 509 */ NULL, /* filler */ 11276d90b98aSmartin /* 510 */ NULL, /* filler */ 11286d90b98aSmartin /* 511 */ NULL, /* filler */ 11296d90b98aSmartin }; 1130