1 1.27 njoly /* $NetBSD: linux_syscalls.c,v 1.92 2024/09/28 19:36:20 christos Exp $ */ 2 1.1 manu 3 1.1 manu /* 4 1.1 manu * System call names. 5 1.1 manu * 6 1.1 manu * DO NOT EDIT-- this file is automatically generated. 7 1.92 christos * created from NetBSD: syscalls.master,v 1.82 2024/09/28 19:35:56 christos Exp 8 1.1 manu */ 9 1.1 manu 10 1.5 lukem #include <sys/cdefs.h> 11 1.27 njoly __KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.92 2024/09/28 19:36:20 christos Exp $"); 12 1.5 lukem 13 1.1 manu #if defined(_KERNEL_OPT) 14 1.1 manu #include <sys/param.h> 15 1.1 manu #include <sys/poll.h> 16 1.1 manu #include <sys/systm.h> 17 1.1 manu #include <sys/signal.h> 18 1.1 manu #include <sys/mount.h> 19 1.1 manu #include <sys/syscallargs.h> 20 1.1 manu #include <compat/linux/common/linux_types.h> 21 1.1 manu #include <compat/linux/common/linux_signal.h> 22 1.1 manu #include <compat/linux/common/linux_siginfo.h> 23 1.1 manu #include <compat/linux/common/linux_machdep.h> 24 1.1 manu #include <compat/linux/common/linux_mmap.h> 25 1.91 christos #include <compat/linux/common/linux_mqueue.h> 26 1.3 manu #include <compat/linux/common/linux_socketcall.h> 27 1.90 christos #include <compat/linux/common/linux_sched.h> 28 1.1 manu #include <compat/linux/linux_syscallargs.h> 29 1.28 dsl #define linux_sys_mmap2_args linux_sys_mmap_args 30 1.68 martin #else /* _KERNEL_OPT */ 31 1.68 martin #include <sys/null.h> 32 1.8 christos #endif /* _KERNEL_OPT */ 33 1.8 christos 34 1.8 christos const char *const linux_syscallnames[] = { 35 1.27 njoly /* 0 */ "syscall", 36 1.27 njoly /* 1 */ "exit", 37 1.27 njoly /* 2 */ "fork", 38 1.27 njoly /* 3 */ "read", 39 1.27 njoly /* 4 */ "write", 40 1.27 njoly /* 5 */ "open", 41 1.27 njoly /* 6 */ "close", 42 1.27 njoly /* 7 */ "waitpid", 43 1.27 njoly /* 8 */ "creat", 44 1.27 njoly /* 9 */ "link", 45 1.27 njoly /* 10 */ "unlink", 46 1.27 njoly /* 11 */ "execve", 47 1.27 njoly /* 12 */ "chdir", 48 1.27 njoly /* 13 */ "time", 49 1.27 njoly /* 14 */ "mknod", 50 1.27 njoly /* 15 */ "chmod", 51 1.27 njoly /* 16 */ "__posix_lchown", 52 1.27 njoly /* 17 */ "#17 (unimplemented)", 53 1.27 njoly /* 18 */ "#18 (obsolete ostat)", 54 1.27 njoly /* 19 */ "lseek", 55 1.27 njoly /* 20 */ "getpid", 56 1.27 njoly /* 21 */ "#21 (unimplemented mount)", 57 1.27 njoly /* 22 */ "#22 (obsolete umount)", 58 1.27 njoly /* 23 */ "setuid", 59 1.27 njoly /* 24 */ "getuid", 60 1.27 njoly /* 25 */ "stime", 61 1.27 njoly /* 26 */ "ptrace", 62 1.27 njoly /* 27 */ "alarm", 63 1.27 njoly /* 28 */ "#28 (obsolete ofstat)", 64 1.27 njoly /* 29 */ "pause", 65 1.27 njoly /* 30 */ "utime", 66 1.27 njoly /* 31 */ "#31 (unimplemented)", 67 1.27 njoly /* 32 */ "#32 (unimplemented)", 68 1.27 njoly /* 33 */ "access", 69 1.27 njoly /* 34 */ "nice", 70 1.27 njoly /* 35 */ "#35 (unimplemented)", 71 1.27 njoly /* 36 */ "sync", 72 1.27 njoly /* 37 */ "kill", 73 1.27 njoly /* 38 */ "__posix_rename", 74 1.27 njoly /* 39 */ "mkdir", 75 1.27 njoly /* 40 */ "rmdir", 76 1.27 njoly /* 41 */ "dup", 77 1.27 njoly /* 42 */ "pipe", 78 1.27 njoly /* 43 */ "times", 79 1.27 njoly /* 44 */ "#44 (unimplemented)", 80 1.27 njoly /* 45 */ "brk", 81 1.27 njoly /* 46 */ "setgid", 82 1.27 njoly /* 47 */ "getgid", 83 1.27 njoly /* 48 */ "signal", 84 1.27 njoly /* 49 */ "geteuid", 85 1.27 njoly /* 50 */ "getegid", 86 1.27 njoly /* 51 */ "acct", 87 1.27 njoly /* 52 */ "#52 (unimplemented umount)", 88 1.27 njoly /* 53 */ "#53 (unimplemented)", 89 1.27 njoly /* 54 */ "ioctl", 90 1.27 njoly /* 55 */ "fcntl", 91 1.27 njoly /* 56 */ "#56 (obsolete mpx)", 92 1.27 njoly /* 57 */ "setpgid", 93 1.27 njoly /* 58 */ "#58 (unimplemented)", 94 1.27 njoly /* 59 */ "olduname", 95 1.27 njoly /* 60 */ "umask", 96 1.27 njoly /* 61 */ "chroot", 97 1.27 njoly /* 62 */ "#62 (unimplemented ustat)", 98 1.27 njoly /* 63 */ "dup2", 99 1.27 njoly /* 64 */ "getppid", 100 1.27 njoly /* 65 */ "getpgrp", 101 1.27 njoly /* 66 */ "setsid", 102 1.27 njoly /* 67 */ "sigaction", 103 1.27 njoly /* 68 */ "siggetmask", 104 1.27 njoly /* 69 */ "sigsetmask", 105 1.27 njoly /* 70 */ "setreuid", 106 1.27 njoly /* 71 */ "setregid", 107 1.27 njoly /* 72 */ "sigsuspend", 108 1.27 njoly /* 73 */ "sigpending", 109 1.27 njoly /* 74 */ "sethostname", 110 1.27 njoly /* 75 */ "setrlimit", 111 1.27 njoly /* 76 */ "getrlimit", 112 1.27 njoly /* 77 */ "getrusage", 113 1.27 njoly /* 78 */ "gettimeofday", 114 1.27 njoly /* 79 */ "settimeofday", 115 1.27 njoly /* 80 */ "getgroups", 116 1.27 njoly /* 81 */ "setgroups", 117 1.27 njoly /* 82 */ "#82 (unimplemented old_select)", 118 1.27 njoly /* 83 */ "symlink", 119 1.27 njoly /* 84 */ "oolstat", 120 1.27 njoly /* 85 */ "readlink", 121 1.27 njoly /* 86 */ "#86 (unimplemented uselib)", 122 1.27 njoly /* 87 */ "swapon", 123 1.27 njoly /* 88 */ "reboot", 124 1.27 njoly /* 89 */ "readdir", 125 1.27 njoly /* 90 */ "mmap", 126 1.27 njoly /* 91 */ "munmap", 127 1.27 njoly /* 92 */ "truncate", 128 1.27 njoly /* 93 */ "ftruncate", 129 1.27 njoly /* 94 */ "fchmod", 130 1.27 njoly /* 95 */ "__posix_fchown", 131 1.27 njoly /* 96 */ "getpriority", 132 1.27 njoly /* 97 */ "setpriority", 133 1.27 njoly /* 98 */ "#98 (unimplemented)", 134 1.27 njoly /* 99 */ "statfs", 135 1.27 njoly /* 100 */ "fstatfs", 136 1.27 njoly /* 101 */ "ioperm", 137 1.27 njoly /* 102 */ "socketcall", 138 1.27 njoly /* 103 */ "#103 (unimplemented syslog)", 139 1.27 njoly /* 104 */ "setitimer", 140 1.27 njoly /* 105 */ "getitimer", 141 1.27 njoly /* 106 */ "stat", 142 1.27 njoly /* 107 */ "lstat", 143 1.27 njoly /* 108 */ "fstat", 144 1.27 njoly /* 109 */ "uname", 145 1.27 njoly /* 110 */ "#110 (unimplemented iopl)", 146 1.27 njoly /* 111 */ "#111 (unimplemented vhangup)", 147 1.27 njoly /* 112 */ "#112 (unimplemented idle)", 148 1.27 njoly /* 113 */ "#113 (unimplemented vm86old)", 149 1.27 njoly /* 114 */ "wait4", 150 1.27 njoly /* 115 */ "swapoff", 151 1.27 njoly /* 116 */ "sysinfo", 152 1.27 njoly /* 117 */ "ipc", 153 1.27 njoly /* 118 */ "fsync", 154 1.27 njoly /* 119 */ "sigreturn", 155 1.27 njoly /* 120 */ "clone", 156 1.27 njoly /* 121 */ "setdomainname", 157 1.27 njoly /* 122 */ "new_uname", 158 1.27 njoly /* 123 */ "#123 (unimplemented modify_ldt)", 159 1.27 njoly /* 124 */ "#124 (unimplemented adjtimex)", 160 1.27 njoly /* 125 */ "mprotect", 161 1.27 njoly /* 126 */ "sigprocmask", 162 1.27 njoly /* 127 */ "#127 (unimplemented create_module)", 163 1.27 njoly /* 128 */ "#128 (unimplemented init_module)", 164 1.27 njoly /* 129 */ "#129 (unimplemented delete_module)", 165 1.27 njoly /* 130 */ "#130 (unimplemented get_kernel_syms)", 166 1.27 njoly /* 131 */ "#131 (unimplemented quotactl)", 167 1.27 njoly /* 132 */ "getpgid", 168 1.27 njoly /* 133 */ "fchdir", 169 1.27 njoly /* 134 */ "#134 (unimplemented bdflush)", 170 1.27 njoly /* 135 */ "#135 (unimplemented sysfs)", 171 1.27 njoly /* 136 */ "personality", 172 1.27 njoly /* 137 */ "#137 (unimplemented afs_syscall)", 173 1.27 njoly /* 138 */ "setfsuid", 174 1.29 njoly /* 139 */ "setfsgid", 175 1.27 njoly /* 140 */ "llseek", 176 1.27 njoly /* 141 */ "getdents", 177 1.27 njoly /* 142 */ "select", 178 1.27 njoly /* 143 */ "flock", 179 1.31 njoly /* 144 */ "__msync13", 180 1.27 njoly /* 145 */ "readv", 181 1.27 njoly /* 146 */ "writev", 182 1.27 njoly /* 147 */ "cacheflush", 183 1.27 njoly /* 148 */ "#148 (unimplemented cachectl)", 184 1.27 njoly /* 149 */ "sysmips", 185 1.27 njoly /* 150 */ "#150 (unimplemented)", 186 1.27 njoly /* 151 */ "getsid", 187 1.27 njoly /* 152 */ "fdatasync", 188 1.27 njoly /* 153 */ "__sysctl", 189 1.27 njoly /* 154 */ "mlock", 190 1.27 njoly /* 155 */ "munlock", 191 1.27 njoly /* 156 */ "mlockall", 192 1.27 njoly /* 157 */ "munlockall", 193 1.27 njoly /* 158 */ "sched_setparam", 194 1.27 njoly /* 159 */ "sched_getparam", 195 1.27 njoly /* 160 */ "sched_setscheduler", 196 1.27 njoly /* 161 */ "sched_getscheduler", 197 1.27 njoly /* 162 */ "sched_yield", 198 1.27 njoly /* 163 */ "sched_get_priority_max", 199 1.27 njoly /* 164 */ "sched_get_priority_min", 200 1.27 njoly /* 165 */ "#165 (unimplemented sched_rr_get_interval)", 201 1.27 njoly /* 166 */ "nanosleep", 202 1.27 njoly /* 167 */ "mremap", 203 1.27 njoly /* 168 */ "accept", 204 1.27 njoly /* 169 */ "bind", 205 1.27 njoly /* 170 */ "connect", 206 1.27 njoly /* 171 */ "getpeername", 207 1.27 njoly /* 172 */ "getsockname", 208 1.27 njoly /* 173 */ "getsockopt", 209 1.27 njoly /* 174 */ "listen", 210 1.27 njoly /* 175 */ "recv", 211 1.27 njoly /* 176 */ "recvfrom", 212 1.27 njoly /* 177 */ "recvmsg", 213 1.27 njoly /* 178 */ "send", 214 1.27 njoly /* 179 */ "sendmsg", 215 1.27 njoly /* 180 */ "sendto", 216 1.27 njoly /* 181 */ "setsockopt", 217 1.27 njoly /* 182 */ "#182 (unimplemented shutdown)", 218 1.27 njoly /* 183 */ "socket", 219 1.27 njoly /* 184 */ "socketpair", 220 1.27 njoly /* 185 */ "setresuid", 221 1.27 njoly /* 186 */ "getresuid", 222 1.27 njoly /* 187 */ "#187 (unimplemented query_module)", 223 1.27 njoly /* 188 */ "poll", 224 1.27 njoly /* 189 */ "#189 (unimplemented nfsservctl)", 225 1.27 njoly /* 190 */ "setresgid", 226 1.27 njoly /* 191 */ "getresgid", 227 1.27 njoly /* 192 */ "#192 (unimplemented prctl)", 228 1.27 njoly /* 193 */ "rt_sigreturn", 229 1.27 njoly /* 194 */ "rt_sigaction", 230 1.27 njoly /* 195 */ "rt_sigprocmask", 231 1.27 njoly /* 196 */ "rt_sigpending", 232 1.47 christos /* 197 */ "rt_sigtimedwait", 233 1.27 njoly /* 198 */ "rt_queueinfo", 234 1.27 njoly /* 199 */ "rt_sigsuspend", 235 1.27 njoly /* 200 */ "pread", 236 1.27 njoly /* 201 */ "pwrite", 237 1.27 njoly /* 202 */ "__posix_chown", 238 1.27 njoly /* 203 */ "__getcwd", 239 1.27 njoly /* 204 */ "#204 (unimplemented capget)", 240 1.27 njoly /* 205 */ "#205 (unimplemented capset)", 241 1.27 njoly /* 206 */ "sigaltstack", 242 1.27 njoly /* 207 */ "#207 (unimplemented sendfile)", 243 1.27 njoly /* 208 */ "#208 (unimplemented)", 244 1.27 njoly /* 209 */ "#209 (unimplemented)", 245 1.27 njoly /* 210 */ "mmap2", 246 1.27 njoly /* 211 */ "truncate64", 247 1.27 njoly /* 212 */ "ftruncate64", 248 1.27 njoly /* 213 */ "stat64", 249 1.27 njoly /* 214 */ "lstat64", 250 1.27 njoly /* 215 */ "fstat64", 251 1.27 njoly /* 216 */ "#216 (unimplemented pivot_root)", 252 1.27 njoly /* 217 */ "mincore", 253 1.27 njoly /* 218 */ "madvise", 254 1.27 njoly /* 219 */ "getdents64", 255 1.27 njoly /* 220 */ "fcntl64", 256 1.27 njoly /* 221 */ "#221 (unimplemented / * reserved * /)", 257 1.42 chs /* 222 */ "gettid", 258 1.87 christos /* 223 */ "readahead", 259 1.27 njoly /* 224 */ "setxattr", 260 1.27 njoly /* 225 */ "lsetxattr", 261 1.27 njoly /* 226 */ "fsetxattr", 262 1.27 njoly /* 227 */ "getxattr", 263 1.27 njoly /* 228 */ "lgetxattr", 264 1.27 njoly /* 229 */ "fgetxattr", 265 1.27 njoly /* 230 */ "listxattr", 266 1.27 njoly /* 231 */ "llistxattr", 267 1.27 njoly /* 232 */ "flistxattr", 268 1.27 njoly /* 233 */ "removexattr", 269 1.27 njoly /* 234 */ "lremovexattr", 270 1.27 njoly /* 235 */ "fremovexattr", 271 1.42 chs /* 236 */ "tkill", 272 1.27 njoly /* 237 */ "#237 (unimplemented sendfile64)", 273 1.42 chs /* 238 */ "futex", 274 1.42 chs /* 239 */ "sched_setaffinity", 275 1.42 chs /* 240 */ "sched_getaffinity", 276 1.27 njoly /* 241 */ "#241 (unimplemented io_setup)", 277 1.27 njoly /* 242 */ "#242 (unimplemented io_destroy)", 278 1.27 njoly /* 243 */ "#243 (unimplemented io_getevents)", 279 1.27 njoly /* 244 */ "#244 (unimplemented io_submit)", 280 1.27 njoly /* 245 */ "#245 (unimplemented io_cancel)", 281 1.27 njoly /* 246 */ "exit_group", 282 1.27 njoly /* 247 */ "#247 (unimplemented lookup_dcookie)", 283 1.86 christos /* 248 */ "epoll_create", 284 1.86 christos /* 249 */ "epoll_ctl", 285 1.86 christos /* 250 */ "epoll_wait", 286 1.27 njoly /* 251 */ "#251 (unimplemented remap_file_pages)", 287 1.42 chs /* 252 */ "set_tid_address", 288 1.27 njoly /* 253 */ "#253 (unimplemented restart_syscall)", 289 1.45 alnsn /* 254 */ "fadvise64", 290 1.27 njoly /* 255 */ "statfs64", 291 1.27 njoly /* 256 */ "fstatfs64", 292 1.80 thorpej /* 257 */ "timer_create", 293 1.80 thorpej /* 258 */ "timer_settime", 294 1.80 thorpej /* 259 */ "timer_gettime", 295 1.80 thorpej /* 260 */ "timer_getoverrun", 296 1.80 thorpej /* 261 */ "timer_delete", 297 1.27 njoly /* 262 */ "clock_settime", 298 1.27 njoly /* 263 */ "clock_gettime", 299 1.27 njoly /* 264 */ "clock_getres", 300 1.27 njoly /* 265 */ "clock_nanosleep", 301 1.42 chs /* 266 */ "tgkill", 302 1.49 pooka /* 267 */ "utimes", 303 1.27 njoly /* 268 */ "#268 (unimplemented mbind)", 304 1.27 njoly /* 269 */ "#269 (unimplemented get_mempolicy)", 305 1.27 njoly /* 270 */ "#270 (unimplemented set_mempolicy)", 306 1.91 christos /* 271 */ "mq_open", 307 1.91 christos /* 272 */ "mq_unlink", 308 1.91 christos /* 273 */ "mq_timedsend", 309 1.91 christos /* 274 */ "mq_timedreceive", 310 1.91 christos /* 275 */ "mq_notify", 311 1.91 christos /* 276 */ "mq_getsetattr", 312 1.42 chs /* 277 */ "#277 (unimplemented vserve)", 313 1.88 christos /* 278 */ "waitid", 314 1.42 chs /* 279 */ "#279 (unimplemented setaltroot)", 315 1.42 chs /* 280 */ "#280 (unimplemented add_key)", 316 1.42 chs /* 281 */ "#281 (unimplemented request_key)", 317 1.42 chs /* 282 */ "#282 (unimplemented keyctl)", 318 1.42 chs /* 283 */ "set_thread_area", 319 1.89 christos /* 284 */ "inotify_init", 320 1.89 christos /* 285 */ "inotify_add_watch", 321 1.89 christos /* 286 */ "inotify_rm_watch", 322 1.42 chs /* 287 */ "#287 (unimplemented migrate_pages)", 323 1.52 chs /* 288 */ "openat", 324 1.52 chs /* 289 */ "mkdirat", 325 1.52 chs /* 290 */ "mknodat", 326 1.52 chs /* 291 */ "fchownat", 327 1.42 chs /* 292 */ "#292 (unimplemented futimesat)", 328 1.52 chs /* 293 */ "fstatat64", 329 1.52 chs /* 294 */ "unlinkat", 330 1.52 chs /* 295 */ "renameat", 331 1.52 chs /* 296 */ "linkat", 332 1.52 chs /* 297 */ "symlinkat", 333 1.52 chs /* 298 */ "readlinkat", 334 1.52 chs /* 299 */ "fchmodat", 335 1.52 chs /* 300 */ "faccessat", 336 1.67 manu /* 301 */ "pselect6", 337 1.48 pooka /* 302 */ "ppoll", 338 1.42 chs /* 303 */ "#303 (unimplemented unshare)", 339 1.42 chs /* 304 */ "#304 (unimplemented splice)", 340 1.92 christos /* 305 */ "sync_file_range", 341 1.42 chs /* 306 */ "#306 (unimplemented tee)", 342 1.42 chs /* 307 */ "#307 (unimplemented vmsplice)", 343 1.42 chs /* 308 */ "#308 (unimplemented move_pages)", 344 1.79 thorpej /* 309 */ "__futex_set_robust_list", 345 1.79 thorpej /* 310 */ "__futex_get_robust_list", 346 1.42 chs /* 311 */ "#311 (unimplemented kexec_load)", 347 1.90 christos /* 312 */ "getcpu", 348 1.86 christos /* 313 */ "epoll_pwait", 349 1.42 chs /* 314 */ "#314 (unimplemented ioprio_set)", 350 1.42 chs /* 315 */ "#315 (unimplemented ioprio_get)", 351 1.50 njoly /* 316 */ "utimensat", 352 1.42 chs /* 317 */ "#317 (unimplemented signalfd)", 353 1.42 chs /* 318 */ "#318 (unimplemented timerfd)", 354 1.82 thorpej /* 319 */ "eventfd", 355 1.78 jdolecek /* 320 */ "fallocate", 356 1.81 thorpej /* 321 */ "timerfd_create", 357 1.81 thorpej /* 322 */ "timerfd_gettime", 358 1.81 thorpej /* 323 */ "timerfd_settime", 359 1.42 chs /* 324 */ "#324 (unimplemented signalfd4)", 360 1.82 thorpej /* 325 */ "eventfd2", 361 1.86 christos /* 326 */ "epoll_create1", 362 1.44 he /* 327 */ "dup3", 363 1.44 he /* 328 */ "pipe2", 364 1.89 christos /* 329 */ "inotify_init1", 365 1.83 thorpej /* 330 */ "preadv", 366 1.83 thorpej /* 331 */ "pwritev", 367 1.42 chs /* 332 */ "#332 (unimplemented rt_tgsigqueueinfo)", 368 1.42 chs /* 333 */ "#333 (unimplemented perf_event_open)", 369 1.71 christos /* 334 */ "accept4", 370 1.72 christos /* 335 */ "recvmmsg", 371 1.72 christos /* 336 */ "#336 (unimplemented getdents64)", 372 1.72 christos /* 337 */ "#337 (unimplemented fanotify_init)", 373 1.72 christos /* 338 */ "#338 (unimplemented fanotify_mark)", 374 1.85 ryo /* 339 */ "prlimit64", 375 1.72 christos /* 340 */ "#340 (unimplemented name_to_handle_at)", 376 1.72 christos /* 341 */ "#341 (unimplemented open_by_handle_at)", 377 1.72 christos /* 342 */ "#342 (unimplemented clock_adjtime)", 378 1.92 christos /* 343 */ "syncfs", 379 1.72 christos /* 344 */ "sendmmsg", 380 1.72 christos /* 345 */ "#345 (unimplemented setns)", 381 1.72 christos /* 346 */ "#346 (unimplemented process_vm_readv)", 382 1.72 christos /* 347 */ "#347 (unimplemented process_vm_writev)", 383 1.72 christos /* 348 */ "#348 (unimplemented kcmp)", 384 1.72 christos /* 349 */ "#349 (unimplemented finit_module)", 385 1.72 christos /* 350 */ "#350 (unimplemented sched_setattr)", 386 1.72 christos /* 351 */ "#351 (unimplemented sched_getattr)", 387 1.92 christos /* 352 */ "renameat2", 388 1.87 christos /* 353 */ "getrandom", 389 1.87 christos /* 354 */ "memfd_create", 390 1.87 christos /* 355 */ "#355 (unimplemented bpf)", 391 1.87 christos /* 356 */ "#356 (unimplemented execveat)", 392 1.87 christos /* 357 */ "#357 (unimplemented userfaultfd)", 393 1.87 christos /* 358 */ "#358 (unimplemented membarrier)", 394 1.87 christos /* 359 */ "#359 (unimplemented mlock2)", 395 1.92 christos /* 360 */ "copy_file_range", 396 1.87 christos /* 361 */ "#361 (unimplemented preadv2)", 397 1.87 christos /* 362 */ "#362 (unimplemented pwritev2)", 398 1.87 christos /* 363 */ "#363 (unimplemented pkey_mprotect)", 399 1.87 christos /* 364 */ "#364 (unimplemented pkey_alloc)", 400 1.87 christos /* 365 */ "#365 (unimplemented pkey_free)", 401 1.87 christos /* 366 */ "statx", 402 1.86 christos /* 367 */ "#367 (unimplemented)", 403 1.86 christos /* 368 */ "#368 (unimplemented)", 404 1.86 christos /* 369 */ "#369 (unimplemented)", 405 1.86 christos /* 370 */ "#370 (unimplemented)", 406 1.86 christos /* 371 */ "#371 (unimplemented)", 407 1.86 christos /* 372 */ "#372 (unimplemented)", 408 1.86 christos /* 373 */ "#373 (unimplemented)", 409 1.86 christos /* 374 */ "#374 (unimplemented)", 410 1.86 christos /* 375 */ "#375 (unimplemented)", 411 1.86 christos /* 376 */ "#376 (unimplemented)", 412 1.86 christos /* 377 */ "#377 (unimplemented)", 413 1.86 christos /* 378 */ "#378 (unimplemented)", 414 1.86 christos /* 379 */ "#379 (unimplemented)", 415 1.86 christos /* 380 */ "#380 (unimplemented)", 416 1.86 christos /* 381 */ "#381 (unimplemented)", 417 1.86 christos /* 382 */ "#382 (unimplemented)", 418 1.86 christos /* 383 */ "#383 (unimplemented)", 419 1.86 christos /* 384 */ "#384 (unimplemented)", 420 1.86 christos /* 385 */ "#385 (unimplemented)", 421 1.86 christos /* 386 */ "#386 (unimplemented)", 422 1.86 christos /* 387 */ "#387 (unimplemented)", 423 1.86 christos /* 388 */ "#388 (unimplemented)", 424 1.86 christos /* 389 */ "#389 (unimplemented)", 425 1.86 christos /* 390 */ "#390 (unimplemented)", 426 1.86 christos /* 391 */ "#391 (unimplemented)", 427 1.86 christos /* 392 */ "#392 (unimplemented)", 428 1.86 christos /* 393 */ "#393 (unimplemented)", 429 1.86 christos /* 394 */ "#394 (unimplemented)", 430 1.86 christos /* 395 */ "#395 (unimplemented)", 431 1.86 christos /* 396 */ "#396 (unimplemented)", 432 1.86 christos /* 397 */ "#397 (unimplemented)", 433 1.86 christos /* 398 */ "#398 (unimplemented)", 434 1.86 christos /* 399 */ "#399 (unimplemented)", 435 1.86 christos /* 400 */ "#400 (unimplemented)", 436 1.86 christos /* 401 */ "#401 (unimplemented)", 437 1.86 christos /* 402 */ "#402 (unimplemented)", 438 1.86 christos /* 403 */ "#403 (unimplemented)", 439 1.86 christos /* 404 */ "#404 (unimplemented)", 440 1.86 christos /* 405 */ "#405 (unimplemented)", 441 1.86 christos /* 406 */ "#406 (unimplemented)", 442 1.86 christos /* 407 */ "#407 (unimplemented)", 443 1.86 christos /* 408 */ "#408 (unimplemented)", 444 1.86 christos /* 409 */ "#409 (unimplemented)", 445 1.86 christos /* 410 */ "#410 (unimplemented)", 446 1.86 christos /* 411 */ "#411 (unimplemented)", 447 1.86 christos /* 412 */ "#412 (unimplemented)", 448 1.86 christos /* 413 */ "#413 (unimplemented)", 449 1.86 christos /* 414 */ "#414 (unimplemented)", 450 1.86 christos /* 415 */ "#415 (unimplemented)", 451 1.86 christos /* 416 */ "#416 (unimplemented)", 452 1.86 christos /* 417 */ "#417 (unimplemented)", 453 1.86 christos /* 418 */ "#418 (unimplemented)", 454 1.86 christos /* 419 */ "#419 (unimplemented)", 455 1.86 christos /* 420 */ "#420 (unimplemented)", 456 1.86 christos /* 421 */ "#421 (unimplemented)", 457 1.86 christos /* 422 */ "#422 (unimplemented)", 458 1.86 christos /* 423 */ "#423 (unimplemented)", 459 1.86 christos /* 424 */ "#424 (unimplemented)", 460 1.86 christos /* 425 */ "#425 (unimplemented)", 461 1.86 christos /* 426 */ "#426 (unimplemented)", 462 1.86 christos /* 427 */ "#427 (unimplemented)", 463 1.86 christos /* 428 */ "#428 (unimplemented)", 464 1.86 christos /* 429 */ "#429 (unimplemented)", 465 1.86 christos /* 430 */ "#430 (unimplemented)", 466 1.86 christos /* 431 */ "#431 (unimplemented)", 467 1.86 christos /* 432 */ "#432 (unimplemented)", 468 1.86 christos /* 433 */ "#433 (unimplemented)", 469 1.86 christos /* 434 */ "#434 (unimplemented)", 470 1.92 christos /* 435 */ "clone3", 471 1.87 christos /* 436 */ "close_range", 472 1.86 christos /* 437 */ "#437 (unimplemented)", 473 1.86 christos /* 438 */ "#438 (unimplemented)", 474 1.86 christos /* 439 */ "#439 (unimplemented)", 475 1.86 christos /* 440 */ "#440 (unimplemented)", 476 1.86 christos /* 441 */ "epoll_pwait2", 477 1.43 matt /* 442 */ "# filler", 478 1.43 matt /* 443 */ "# filler", 479 1.43 matt /* 444 */ "# filler", 480 1.43 matt /* 445 */ "# filler", 481 1.43 matt /* 446 */ "# filler", 482 1.43 matt /* 447 */ "# filler", 483 1.43 matt /* 448 */ "# filler", 484 1.43 matt /* 449 */ "# filler", 485 1.43 matt /* 450 */ "# filler", 486 1.43 matt /* 451 */ "# filler", 487 1.43 matt /* 452 */ "# filler", 488 1.43 matt /* 453 */ "# filler", 489 1.43 matt /* 454 */ "# filler", 490 1.43 matt /* 455 */ "# filler", 491 1.43 matt /* 456 */ "# filler", 492 1.43 matt /* 457 */ "# filler", 493 1.43 matt /* 458 */ "# filler", 494 1.43 matt /* 459 */ "# filler", 495 1.43 matt /* 460 */ "# filler", 496 1.43 matt /* 461 */ "# filler", 497 1.43 matt /* 462 */ "# filler", 498 1.43 matt /* 463 */ "# filler", 499 1.43 matt /* 464 */ "# filler", 500 1.43 matt /* 465 */ "# filler", 501 1.43 matt /* 466 */ "# filler", 502 1.43 matt /* 467 */ "# filler", 503 1.43 matt /* 468 */ "# filler", 504 1.43 matt /* 469 */ "# filler", 505 1.43 matt /* 470 */ "# filler", 506 1.43 matt /* 471 */ "# filler", 507 1.43 matt /* 472 */ "# filler", 508 1.43 matt /* 473 */ "# filler", 509 1.43 matt /* 474 */ "# filler", 510 1.43 matt /* 475 */ "# filler", 511 1.43 matt /* 476 */ "# filler", 512 1.43 matt /* 477 */ "# filler", 513 1.43 matt /* 478 */ "# filler", 514 1.43 matt /* 479 */ "# filler", 515 1.43 matt /* 480 */ "# filler", 516 1.43 matt /* 481 */ "# filler", 517 1.43 matt /* 482 */ "# filler", 518 1.43 matt /* 483 */ "# filler", 519 1.43 matt /* 484 */ "# filler", 520 1.43 matt /* 485 */ "# filler", 521 1.43 matt /* 486 */ "# filler", 522 1.43 matt /* 487 */ "# filler", 523 1.43 matt /* 488 */ "# filler", 524 1.43 matt /* 489 */ "# filler", 525 1.43 matt /* 490 */ "# filler", 526 1.43 matt /* 491 */ "# filler", 527 1.43 matt /* 492 */ "# filler", 528 1.43 matt /* 493 */ "# filler", 529 1.43 matt /* 494 */ "# filler", 530 1.43 matt /* 495 */ "# filler", 531 1.43 matt /* 496 */ "# filler", 532 1.43 matt /* 497 */ "# filler", 533 1.43 matt /* 498 */ "# filler", 534 1.43 matt /* 499 */ "# filler", 535 1.43 matt /* 500 */ "# filler", 536 1.43 matt /* 501 */ "# filler", 537 1.43 matt /* 502 */ "# filler", 538 1.43 matt /* 503 */ "# filler", 539 1.43 matt /* 504 */ "# filler", 540 1.43 matt /* 505 */ "# filler", 541 1.43 matt /* 506 */ "# filler", 542 1.43 matt /* 507 */ "# filler", 543 1.43 matt /* 508 */ "# filler", 544 1.43 matt /* 509 */ "# filler", 545 1.43 matt /* 510 */ "# filler", 546 1.43 matt /* 511 */ "# filler", 547 1.8 christos }; 548 1.68 martin 549 1.68 martin 550 1.68 martin /* libc style syscall names */ 551 1.68 martin const char *const altlinux_syscallnames[] = { 552 1.68 martin /* 0 */ "nosys", 553 1.68 martin /* 1 */ NULL, /* exit */ 554 1.68 martin /* 2 */ NULL, /* fork */ 555 1.68 martin /* 3 */ NULL, /* read */ 556 1.68 martin /* 4 */ NULL, /* write */ 557 1.68 martin /* 5 */ NULL, /* open */ 558 1.68 martin /* 6 */ NULL, /* close */ 559 1.68 martin /* 7 */ NULL, /* waitpid */ 560 1.68 martin /* 8 */ NULL, /* creat */ 561 1.68 martin /* 9 */ NULL, /* link */ 562 1.68 martin /* 10 */ NULL, /* unlink */ 563 1.68 martin /* 11 */ NULL, /* execve */ 564 1.68 martin /* 12 */ NULL, /* chdir */ 565 1.68 martin /* 13 */ NULL, /* time */ 566 1.68 martin /* 14 */ NULL, /* mknod */ 567 1.68 martin /* 15 */ NULL, /* chmod */ 568 1.68 martin /* 16 */ NULL, /* __posix_lchown */ 569 1.68 martin /* 17 */ NULL, /* unimplemented */ 570 1.68 martin /* 18 */ NULL, /* obsolete ostat */ 571 1.68 martin /* 19 */ NULL, /* lseek */ 572 1.68 martin /* 20 */ NULL, /* getpid */ 573 1.68 martin /* 21 */ NULL, /* unimplemented mount */ 574 1.68 martin /* 22 */ NULL, /* obsolete umount */ 575 1.68 martin /* 23 */ NULL, /* setuid */ 576 1.68 martin /* 24 */ NULL, /* getuid */ 577 1.68 martin /* 25 */ NULL, /* stime */ 578 1.68 martin /* 26 */ NULL, /* ptrace */ 579 1.68 martin /* 27 */ NULL, /* alarm */ 580 1.68 martin /* 28 */ NULL, /* obsolete ofstat */ 581 1.68 martin /* 29 */ NULL, /* pause */ 582 1.68 martin /* 30 */ NULL, /* utime */ 583 1.68 martin /* 31 */ NULL, /* unimplemented */ 584 1.68 martin /* 32 */ NULL, /* unimplemented */ 585 1.68 martin /* 33 */ NULL, /* access */ 586 1.68 martin /* 34 */ NULL, /* nice */ 587 1.68 martin /* 35 */ NULL, /* unimplemented */ 588 1.68 martin /* 36 */ NULL, /* sync */ 589 1.68 martin /* 37 */ NULL, /* kill */ 590 1.68 martin /* 38 */ NULL, /* __posix_rename */ 591 1.68 martin /* 39 */ NULL, /* mkdir */ 592 1.68 martin /* 40 */ NULL, /* rmdir */ 593 1.68 martin /* 41 */ NULL, /* dup */ 594 1.68 martin /* 42 */ NULL, /* pipe */ 595 1.68 martin /* 43 */ NULL, /* times */ 596 1.68 martin /* 44 */ NULL, /* unimplemented */ 597 1.68 martin /* 45 */ NULL, /* brk */ 598 1.68 martin /* 46 */ NULL, /* setgid */ 599 1.68 martin /* 47 */ NULL, /* getgid */ 600 1.68 martin /* 48 */ NULL, /* signal */ 601 1.68 martin /* 49 */ NULL, /* geteuid */ 602 1.68 martin /* 50 */ NULL, /* getegid */ 603 1.68 martin /* 51 */ NULL, /* acct */ 604 1.68 martin /* 52 */ NULL, /* unimplemented umount */ 605 1.68 martin /* 53 */ NULL, /* unimplemented */ 606 1.68 martin /* 54 */ NULL, /* ioctl */ 607 1.68 martin /* 55 */ NULL, /* fcntl */ 608 1.68 martin /* 56 */ NULL, /* obsolete mpx */ 609 1.68 martin /* 57 */ NULL, /* setpgid */ 610 1.68 martin /* 58 */ NULL, /* unimplemented */ 611 1.68 martin /* 59 */ NULL, /* olduname */ 612 1.68 martin /* 60 */ NULL, /* umask */ 613 1.68 martin /* 61 */ NULL, /* chroot */ 614 1.68 martin /* 62 */ NULL, /* unimplemented ustat */ 615 1.68 martin /* 63 */ NULL, /* dup2 */ 616 1.68 martin /* 64 */ NULL, /* getppid */ 617 1.68 martin /* 65 */ NULL, /* getpgrp */ 618 1.68 martin /* 66 */ NULL, /* setsid */ 619 1.68 martin /* 67 */ NULL, /* sigaction */ 620 1.68 martin /* 68 */ NULL, /* siggetmask */ 621 1.68 martin /* 69 */ NULL, /* sigsetmask */ 622 1.68 martin /* 70 */ NULL, /* setreuid */ 623 1.68 martin /* 71 */ NULL, /* setregid */ 624 1.68 martin /* 72 */ NULL, /* sigsuspend */ 625 1.68 martin /* 73 */ NULL, /* sigpending */ 626 1.68 martin /* 74 */ NULL, /* sethostname */ 627 1.68 martin /* 75 */ NULL, /* setrlimit */ 628 1.68 martin /* 76 */ NULL, /* getrlimit */ 629 1.68 martin /* 77 */ NULL, /* getrusage */ 630 1.68 martin /* 78 */ NULL, /* gettimeofday */ 631 1.68 martin /* 79 */ NULL, /* settimeofday */ 632 1.68 martin /* 80 */ NULL, /* getgroups */ 633 1.68 martin /* 81 */ NULL, /* setgroups */ 634 1.68 martin /* 82 */ NULL, /* unimplemented old_select */ 635 1.68 martin /* 83 */ NULL, /* symlink */ 636 1.68 martin /* 84 */ "lstat", 637 1.68 martin /* 85 */ NULL, /* readlink */ 638 1.68 martin /* 86 */ NULL, /* unimplemented uselib */ 639 1.68 martin /* 87 */ NULL, /* swapon */ 640 1.68 martin /* 88 */ NULL, /* reboot */ 641 1.68 martin /* 89 */ NULL, /* readdir */ 642 1.68 martin /* 90 */ NULL, /* mmap */ 643 1.68 martin /* 91 */ NULL, /* munmap */ 644 1.68 martin /* 92 */ NULL, /* truncate */ 645 1.68 martin /* 93 */ NULL, /* ftruncate */ 646 1.68 martin /* 94 */ NULL, /* fchmod */ 647 1.68 martin /* 95 */ NULL, /* __posix_fchown */ 648 1.68 martin /* 96 */ NULL, /* getpriority */ 649 1.68 martin /* 97 */ NULL, /* setpriority */ 650 1.68 martin /* 98 */ NULL, /* unimplemented */ 651 1.68 martin /* 99 */ NULL, /* statfs */ 652 1.68 martin /* 100 */ NULL, /* fstatfs */ 653 1.68 martin /* 101 */ NULL, /* ioperm */ 654 1.68 martin /* 102 */ NULL, /* socketcall */ 655 1.68 martin /* 103 */ NULL, /* unimplemented syslog */ 656 1.68 martin /* 104 */ NULL, /* setitimer */ 657 1.68 martin /* 105 */ NULL, /* getitimer */ 658 1.68 martin /* 106 */ NULL, /* stat */ 659 1.68 martin /* 107 */ NULL, /* lstat */ 660 1.68 martin /* 108 */ NULL, /* fstat */ 661 1.68 martin /* 109 */ NULL, /* uname */ 662 1.68 martin /* 110 */ NULL, /* unimplemented iopl */ 663 1.68 martin /* 111 */ NULL, /* unimplemented vhangup */ 664 1.68 martin /* 112 */ NULL, /* unimplemented idle */ 665 1.68 martin /* 113 */ NULL, /* unimplemented vm86old */ 666 1.68 martin /* 114 */ NULL, /* wait4 */ 667 1.68 martin /* 115 */ NULL, /* swapoff */ 668 1.68 martin /* 116 */ NULL, /* sysinfo */ 669 1.68 martin /* 117 */ NULL, /* ipc */ 670 1.68 martin /* 118 */ NULL, /* fsync */ 671 1.68 martin /* 119 */ NULL, /* sigreturn */ 672 1.68 martin /* 120 */ NULL, /* clone */ 673 1.68 martin /* 121 */ NULL, /* setdomainname */ 674 1.68 martin /* 122 */ NULL, /* new_uname */ 675 1.68 martin /* 123 */ NULL, /* unimplemented modify_ldt */ 676 1.68 martin /* 124 */ NULL, /* unimplemented adjtimex */ 677 1.68 martin /* 125 */ NULL, /* mprotect */ 678 1.68 martin /* 126 */ NULL, /* sigprocmask */ 679 1.68 martin /* 127 */ NULL, /* unimplemented create_module */ 680 1.68 martin /* 128 */ NULL, /* unimplemented init_module */ 681 1.68 martin /* 129 */ NULL, /* unimplemented delete_module */ 682 1.68 martin /* 130 */ NULL, /* unimplemented get_kernel_syms */ 683 1.68 martin /* 131 */ NULL, /* unimplemented quotactl */ 684 1.68 martin /* 132 */ NULL, /* getpgid */ 685 1.68 martin /* 133 */ NULL, /* fchdir */ 686 1.68 martin /* 134 */ NULL, /* unimplemented bdflush */ 687 1.68 martin /* 135 */ NULL, /* unimplemented sysfs */ 688 1.68 martin /* 136 */ NULL, /* personality */ 689 1.68 martin /* 137 */ NULL, /* unimplemented afs_syscall */ 690 1.68 martin /* 138 */ NULL, /* setfsuid */ 691 1.68 martin /* 139 */ NULL, /* setfsgid */ 692 1.68 martin /* 140 */ NULL, /* llseek */ 693 1.68 martin /* 141 */ NULL, /* getdents */ 694 1.68 martin /* 142 */ NULL, /* select */ 695 1.68 martin /* 143 */ NULL, /* flock */ 696 1.68 martin /* 144 */ "msync", 697 1.68 martin /* 145 */ NULL, /* readv */ 698 1.68 martin /* 146 */ NULL, /* writev */ 699 1.68 martin /* 147 */ NULL, /* cacheflush */ 700 1.68 martin /* 148 */ NULL, /* unimplemented cachectl */ 701 1.68 martin /* 149 */ NULL, /* sysmips */ 702 1.68 martin /* 150 */ NULL, /* unimplemented */ 703 1.68 martin /* 151 */ NULL, /* getsid */ 704 1.68 martin /* 152 */ NULL, /* fdatasync */ 705 1.68 martin /* 153 */ NULL, /* __sysctl */ 706 1.68 martin /* 154 */ NULL, /* mlock */ 707 1.68 martin /* 155 */ NULL, /* munlock */ 708 1.68 martin /* 156 */ NULL, /* mlockall */ 709 1.68 martin /* 157 */ NULL, /* munlockall */ 710 1.68 martin /* 158 */ NULL, /* sched_setparam */ 711 1.68 martin /* 159 */ NULL, /* sched_getparam */ 712 1.68 martin /* 160 */ NULL, /* sched_setscheduler */ 713 1.68 martin /* 161 */ NULL, /* sched_getscheduler */ 714 1.68 martin /* 162 */ NULL, /* sched_yield */ 715 1.68 martin /* 163 */ NULL, /* sched_get_priority_max */ 716 1.68 martin /* 164 */ NULL, /* sched_get_priority_min */ 717 1.68 martin /* 165 */ NULL, /* unimplemented sched_rr_get_interval */ 718 1.68 martin /* 166 */ NULL, /* nanosleep */ 719 1.68 martin /* 167 */ NULL, /* mremap */ 720 1.68 martin /* 168 */ NULL, /* accept */ 721 1.68 martin /* 169 */ NULL, /* bind */ 722 1.68 martin /* 170 */ NULL, /* connect */ 723 1.68 martin /* 171 */ NULL, /* getpeername */ 724 1.68 martin /* 172 */ NULL, /* getsockname */ 725 1.68 martin /* 173 */ NULL, /* getsockopt */ 726 1.68 martin /* 174 */ NULL, /* listen */ 727 1.68 martin /* 175 */ NULL, /* recv */ 728 1.68 martin /* 176 */ NULL, /* recvfrom */ 729 1.68 martin /* 177 */ NULL, /* recvmsg */ 730 1.68 martin /* 178 */ NULL, /* send */ 731 1.68 martin /* 179 */ NULL, /* sendmsg */ 732 1.68 martin /* 180 */ NULL, /* sendto */ 733 1.68 martin /* 181 */ NULL, /* setsockopt */ 734 1.68 martin /* 182 */ NULL, /* unimplemented shutdown */ 735 1.68 martin /* 183 */ NULL, /* socket */ 736 1.68 martin /* 184 */ NULL, /* socketpair */ 737 1.68 martin /* 185 */ NULL, /* setresuid */ 738 1.68 martin /* 186 */ NULL, /* getresuid */ 739 1.68 martin /* 187 */ NULL, /* unimplemented query_module */ 740 1.68 martin /* 188 */ NULL, /* poll */ 741 1.68 martin /* 189 */ NULL, /* unimplemented nfsservctl */ 742 1.68 martin /* 190 */ NULL, /* setresgid */ 743 1.68 martin /* 191 */ NULL, /* getresgid */ 744 1.68 martin /* 192 */ NULL, /* unimplemented prctl */ 745 1.68 martin /* 193 */ NULL, /* rt_sigreturn */ 746 1.68 martin /* 194 */ NULL, /* rt_sigaction */ 747 1.68 martin /* 195 */ NULL, /* rt_sigprocmask */ 748 1.68 martin /* 196 */ NULL, /* rt_sigpending */ 749 1.68 martin /* 197 */ NULL, /* rt_sigtimedwait */ 750 1.68 martin /* 198 */ NULL, /* rt_queueinfo */ 751 1.68 martin /* 199 */ NULL, /* rt_sigsuspend */ 752 1.68 martin /* 200 */ NULL, /* pread */ 753 1.68 martin /* 201 */ NULL, /* pwrite */ 754 1.68 martin /* 202 */ NULL, /* __posix_chown */ 755 1.68 martin /* 203 */ NULL, /* __getcwd */ 756 1.68 martin /* 204 */ NULL, /* unimplemented capget */ 757 1.68 martin /* 205 */ NULL, /* unimplemented capset */ 758 1.68 martin /* 206 */ NULL, /* sigaltstack */ 759 1.68 martin /* 207 */ NULL, /* unimplemented sendfile */ 760 1.68 martin /* 208 */ NULL, /* unimplemented */ 761 1.68 martin /* 209 */ NULL, /* unimplemented */ 762 1.68 martin /* 210 */ NULL, /* mmap2 */ 763 1.68 martin /* 211 */ NULL, /* truncate64 */ 764 1.68 martin /* 212 */ NULL, /* ftruncate64 */ 765 1.68 martin /* 213 */ NULL, /* stat64 */ 766 1.68 martin /* 214 */ NULL, /* lstat64 */ 767 1.68 martin /* 215 */ NULL, /* fstat64 */ 768 1.68 martin /* 216 */ NULL, /* unimplemented pivot_root */ 769 1.68 martin /* 217 */ NULL, /* mincore */ 770 1.68 martin /* 218 */ NULL, /* madvise */ 771 1.68 martin /* 219 */ NULL, /* getdents64 */ 772 1.68 martin /* 220 */ NULL, /* fcntl64 */ 773 1.68 martin /* 221 */ NULL, /* unimplemented / * reserved * / */ 774 1.68 martin /* 222 */ NULL, /* gettid */ 775 1.87 christos /* 223 */ NULL, /* readahead */ 776 1.68 martin /* 224 */ NULL, /* setxattr */ 777 1.68 martin /* 225 */ NULL, /* lsetxattr */ 778 1.68 martin /* 226 */ NULL, /* fsetxattr */ 779 1.68 martin /* 227 */ NULL, /* getxattr */ 780 1.68 martin /* 228 */ NULL, /* lgetxattr */ 781 1.68 martin /* 229 */ NULL, /* fgetxattr */ 782 1.68 martin /* 230 */ NULL, /* listxattr */ 783 1.68 martin /* 231 */ NULL, /* llistxattr */ 784 1.68 martin /* 232 */ NULL, /* flistxattr */ 785 1.68 martin /* 233 */ NULL, /* removexattr */ 786 1.68 martin /* 234 */ NULL, /* lremovexattr */ 787 1.68 martin /* 235 */ NULL, /* fremovexattr */ 788 1.68 martin /* 236 */ NULL, /* tkill */ 789 1.68 martin /* 237 */ NULL, /* unimplemented sendfile64 */ 790 1.68 martin /* 238 */ NULL, /* futex */ 791 1.68 martin /* 239 */ NULL, /* sched_setaffinity */ 792 1.68 martin /* 240 */ NULL, /* sched_getaffinity */ 793 1.68 martin /* 241 */ NULL, /* unimplemented io_setup */ 794 1.68 martin /* 242 */ NULL, /* unimplemented io_destroy */ 795 1.68 martin /* 243 */ NULL, /* unimplemented io_getevents */ 796 1.68 martin /* 244 */ NULL, /* unimplemented io_submit */ 797 1.68 martin /* 245 */ NULL, /* unimplemented io_cancel */ 798 1.68 martin /* 246 */ NULL, /* exit_group */ 799 1.68 martin /* 247 */ NULL, /* unimplemented lookup_dcookie */ 800 1.86 christos /* 248 */ NULL, /* epoll_create */ 801 1.86 christos /* 249 */ NULL, /* epoll_ctl */ 802 1.86 christos /* 250 */ NULL, /* epoll_wait */ 803 1.68 martin /* 251 */ NULL, /* unimplemented remap_file_pages */ 804 1.68 martin /* 252 */ NULL, /* set_tid_address */ 805 1.68 martin /* 253 */ NULL, /* unimplemented restart_syscall */ 806 1.68 martin /* 254 */ NULL, /* fadvise64 */ 807 1.68 martin /* 255 */ NULL, /* statfs64 */ 808 1.68 martin /* 256 */ NULL, /* fstatfs64 */ 809 1.80 thorpej /* 257 */ NULL, /* timer_create */ 810 1.80 thorpej /* 258 */ NULL, /* timer_settime */ 811 1.80 thorpej /* 259 */ NULL, /* timer_gettime */ 812 1.80 thorpej /* 260 */ NULL, /* timer_getoverrun */ 813 1.80 thorpej /* 261 */ NULL, /* timer_delete */ 814 1.68 martin /* 262 */ NULL, /* clock_settime */ 815 1.68 martin /* 263 */ NULL, /* clock_gettime */ 816 1.68 martin /* 264 */ NULL, /* clock_getres */ 817 1.68 martin /* 265 */ NULL, /* clock_nanosleep */ 818 1.68 martin /* 266 */ NULL, /* tgkill */ 819 1.68 martin /* 267 */ NULL, /* utimes */ 820 1.68 martin /* 268 */ NULL, /* unimplemented mbind */ 821 1.68 martin /* 269 */ NULL, /* unimplemented get_mempolicy */ 822 1.68 martin /* 270 */ NULL, /* unimplemented set_mempolicy */ 823 1.91 christos /* 271 */ NULL, /* mq_open */ 824 1.91 christos /* 272 */ NULL, /* mq_unlink */ 825 1.91 christos /* 273 */ NULL, /* mq_timedsend */ 826 1.91 christos /* 274 */ NULL, /* mq_timedreceive */ 827 1.91 christos /* 275 */ NULL, /* mq_notify */ 828 1.91 christos /* 276 */ NULL, /* mq_getsetattr */ 829 1.68 martin /* 277 */ NULL, /* unimplemented vserve */ 830 1.88 christos /* 278 */ NULL, /* waitid */ 831 1.68 martin /* 279 */ NULL, /* unimplemented setaltroot */ 832 1.68 martin /* 280 */ NULL, /* unimplemented add_key */ 833 1.68 martin /* 281 */ NULL, /* unimplemented request_key */ 834 1.68 martin /* 282 */ NULL, /* unimplemented keyctl */ 835 1.68 martin /* 283 */ NULL, /* set_thread_area */ 836 1.89 christos /* 284 */ NULL, /* inotify_init */ 837 1.89 christos /* 285 */ NULL, /* inotify_add_watch */ 838 1.89 christos /* 286 */ NULL, /* inotify_rm_watch */ 839 1.68 martin /* 287 */ NULL, /* unimplemented migrate_pages */ 840 1.68 martin /* 288 */ NULL, /* openat */ 841 1.68 martin /* 289 */ NULL, /* mkdirat */ 842 1.68 martin /* 290 */ NULL, /* mknodat */ 843 1.68 martin /* 291 */ NULL, /* fchownat */ 844 1.68 martin /* 292 */ NULL, /* unimplemented futimesat */ 845 1.68 martin /* 293 */ NULL, /* fstatat64 */ 846 1.68 martin /* 294 */ NULL, /* unlinkat */ 847 1.68 martin /* 295 */ NULL, /* renameat */ 848 1.68 martin /* 296 */ NULL, /* linkat */ 849 1.68 martin /* 297 */ NULL, /* symlinkat */ 850 1.68 martin /* 298 */ NULL, /* readlinkat */ 851 1.68 martin /* 299 */ NULL, /* fchmodat */ 852 1.68 martin /* 300 */ NULL, /* faccessat */ 853 1.68 martin /* 301 */ NULL, /* pselect6 */ 854 1.68 martin /* 302 */ NULL, /* ppoll */ 855 1.68 martin /* 303 */ NULL, /* unimplemented unshare */ 856 1.68 martin /* 304 */ NULL, /* unimplemented splice */ 857 1.92 christos /* 305 */ NULL, /* sync_file_range */ 858 1.68 martin /* 306 */ NULL, /* unimplemented tee */ 859 1.68 martin /* 307 */ NULL, /* unimplemented vmsplice */ 860 1.68 martin /* 308 */ NULL, /* unimplemented move_pages */ 861 1.79 thorpej /* 309 */ NULL, /* __futex_set_robust_list */ 862 1.79 thorpej /* 310 */ NULL, /* __futex_get_robust_list */ 863 1.68 martin /* 311 */ NULL, /* unimplemented kexec_load */ 864 1.90 christos /* 312 */ NULL, /* getcpu */ 865 1.86 christos /* 313 */ NULL, /* epoll_pwait */ 866 1.68 martin /* 314 */ NULL, /* unimplemented ioprio_set */ 867 1.68 martin /* 315 */ NULL, /* unimplemented ioprio_get */ 868 1.68 martin /* 316 */ NULL, /* utimensat */ 869 1.68 martin /* 317 */ NULL, /* unimplemented signalfd */ 870 1.68 martin /* 318 */ NULL, /* unimplemented timerfd */ 871 1.82 thorpej /* 319 */ NULL, /* eventfd */ 872 1.78 jdolecek /* 320 */ NULL, /* fallocate */ 873 1.81 thorpej /* 321 */ NULL, /* timerfd_create */ 874 1.81 thorpej /* 322 */ NULL, /* timerfd_gettime */ 875 1.81 thorpej /* 323 */ NULL, /* timerfd_settime */ 876 1.68 martin /* 324 */ NULL, /* unimplemented signalfd4 */ 877 1.82 thorpej /* 325 */ NULL, /* eventfd2 */ 878 1.86 christos /* 326 */ NULL, /* epoll_create1 */ 879 1.68 martin /* 327 */ NULL, /* dup3 */ 880 1.68 martin /* 328 */ NULL, /* pipe2 */ 881 1.89 christos /* 329 */ NULL, /* inotify_init1 */ 882 1.83 thorpej /* 330 */ NULL, /* preadv */ 883 1.83 thorpej /* 331 */ NULL, /* pwritev */ 884 1.68 martin /* 332 */ NULL, /* unimplemented rt_tgsigqueueinfo */ 885 1.68 martin /* 333 */ NULL, /* unimplemented perf_event_open */ 886 1.71 christos /* 334 */ NULL, /* accept4 */ 887 1.72 christos /* 335 */ NULL, /* recvmmsg */ 888 1.72 christos /* 336 */ NULL, /* unimplemented getdents64 */ 889 1.72 christos /* 337 */ NULL, /* unimplemented fanotify_init */ 890 1.72 christos /* 338 */ NULL, /* unimplemented fanotify_mark */ 891 1.85 ryo /* 339 */ NULL, /* prlimit64 */ 892 1.72 christos /* 340 */ NULL, /* unimplemented name_to_handle_at */ 893 1.72 christos /* 341 */ NULL, /* unimplemented open_by_handle_at */ 894 1.72 christos /* 342 */ NULL, /* unimplemented clock_adjtime */ 895 1.92 christos /* 343 */ NULL, /* syncfs */ 896 1.72 christos /* 344 */ NULL, /* sendmmsg */ 897 1.72 christos /* 345 */ NULL, /* unimplemented setns */ 898 1.72 christos /* 346 */ NULL, /* unimplemented process_vm_readv */ 899 1.72 christos /* 347 */ NULL, /* unimplemented process_vm_writev */ 900 1.72 christos /* 348 */ NULL, /* unimplemented kcmp */ 901 1.72 christos /* 349 */ NULL, /* unimplemented finit_module */ 902 1.72 christos /* 350 */ NULL, /* unimplemented sched_setattr */ 903 1.72 christos /* 351 */ NULL, /* unimplemented sched_getattr */ 904 1.92 christos /* 352 */ NULL, /* renameat2 */ 905 1.87 christos /* 353 */ NULL, /* getrandom */ 906 1.87 christos /* 354 */ NULL, /* memfd_create */ 907 1.87 christos /* 355 */ NULL, /* unimplemented bpf */ 908 1.87 christos /* 356 */ NULL, /* unimplemented execveat */ 909 1.87 christos /* 357 */ NULL, /* unimplemented userfaultfd */ 910 1.87 christos /* 358 */ NULL, /* unimplemented membarrier */ 911 1.87 christos /* 359 */ NULL, /* unimplemented mlock2 */ 912 1.92 christos /* 360 */ NULL, /* copy_file_range */ 913 1.87 christos /* 361 */ NULL, /* unimplemented preadv2 */ 914 1.87 christos /* 362 */ NULL, /* unimplemented pwritev2 */ 915 1.87 christos /* 363 */ NULL, /* unimplemented pkey_mprotect */ 916 1.87 christos /* 364 */ NULL, /* unimplemented pkey_alloc */ 917 1.87 christos /* 365 */ NULL, /* unimplemented pkey_free */ 918 1.87 christos /* 366 */ NULL, /* statx */ 919 1.86 christos /* 367 */ NULL, /* unimplemented */ 920 1.86 christos /* 368 */ NULL, /* unimplemented */ 921 1.86 christos /* 369 */ NULL, /* unimplemented */ 922 1.86 christos /* 370 */ NULL, /* unimplemented */ 923 1.86 christos /* 371 */ NULL, /* unimplemented */ 924 1.86 christos /* 372 */ NULL, /* unimplemented */ 925 1.86 christos /* 373 */ NULL, /* unimplemented */ 926 1.86 christos /* 374 */ NULL, /* unimplemented */ 927 1.86 christos /* 375 */ NULL, /* unimplemented */ 928 1.86 christos /* 376 */ NULL, /* unimplemented */ 929 1.86 christos /* 377 */ NULL, /* unimplemented */ 930 1.86 christos /* 378 */ NULL, /* unimplemented */ 931 1.86 christos /* 379 */ NULL, /* unimplemented */ 932 1.86 christos /* 380 */ NULL, /* unimplemented */ 933 1.86 christos /* 381 */ NULL, /* unimplemented */ 934 1.86 christos /* 382 */ NULL, /* unimplemented */ 935 1.86 christos /* 383 */ NULL, /* unimplemented */ 936 1.86 christos /* 384 */ NULL, /* unimplemented */ 937 1.86 christos /* 385 */ NULL, /* unimplemented */ 938 1.86 christos /* 386 */ NULL, /* unimplemented */ 939 1.86 christos /* 387 */ NULL, /* unimplemented */ 940 1.86 christos /* 388 */ NULL, /* unimplemented */ 941 1.86 christos /* 389 */ NULL, /* unimplemented */ 942 1.86 christos /* 390 */ NULL, /* unimplemented */ 943 1.86 christos /* 391 */ NULL, /* unimplemented */ 944 1.86 christos /* 392 */ NULL, /* unimplemented */ 945 1.86 christos /* 393 */ NULL, /* unimplemented */ 946 1.86 christos /* 394 */ NULL, /* unimplemented */ 947 1.86 christos /* 395 */ NULL, /* unimplemented */ 948 1.86 christos /* 396 */ NULL, /* unimplemented */ 949 1.86 christos /* 397 */ NULL, /* unimplemented */ 950 1.86 christos /* 398 */ NULL, /* unimplemented */ 951 1.86 christos /* 399 */ NULL, /* unimplemented */ 952 1.86 christos /* 400 */ NULL, /* unimplemented */ 953 1.86 christos /* 401 */ NULL, /* unimplemented */ 954 1.86 christos /* 402 */ NULL, /* unimplemented */ 955 1.86 christos /* 403 */ NULL, /* unimplemented */ 956 1.86 christos /* 404 */ NULL, /* unimplemented */ 957 1.86 christos /* 405 */ NULL, /* unimplemented */ 958 1.86 christos /* 406 */ NULL, /* unimplemented */ 959 1.86 christos /* 407 */ NULL, /* unimplemented */ 960 1.86 christos /* 408 */ NULL, /* unimplemented */ 961 1.86 christos /* 409 */ NULL, /* unimplemented */ 962 1.86 christos /* 410 */ NULL, /* unimplemented */ 963 1.86 christos /* 411 */ NULL, /* unimplemented */ 964 1.86 christos /* 412 */ NULL, /* unimplemented */ 965 1.86 christos /* 413 */ NULL, /* unimplemented */ 966 1.86 christos /* 414 */ NULL, /* unimplemented */ 967 1.86 christos /* 415 */ NULL, /* unimplemented */ 968 1.86 christos /* 416 */ NULL, /* unimplemented */ 969 1.86 christos /* 417 */ NULL, /* unimplemented */ 970 1.86 christos /* 418 */ NULL, /* unimplemented */ 971 1.86 christos /* 419 */ NULL, /* unimplemented */ 972 1.86 christos /* 420 */ NULL, /* unimplemented */ 973 1.86 christos /* 421 */ NULL, /* unimplemented */ 974 1.86 christos /* 422 */ NULL, /* unimplemented */ 975 1.86 christos /* 423 */ NULL, /* unimplemented */ 976 1.86 christos /* 424 */ NULL, /* unimplemented */ 977 1.86 christos /* 425 */ NULL, /* unimplemented */ 978 1.86 christos /* 426 */ NULL, /* unimplemented */ 979 1.86 christos /* 427 */ NULL, /* unimplemented */ 980 1.86 christos /* 428 */ NULL, /* unimplemented */ 981 1.86 christos /* 429 */ NULL, /* unimplemented */ 982 1.86 christos /* 430 */ NULL, /* unimplemented */ 983 1.86 christos /* 431 */ NULL, /* unimplemented */ 984 1.86 christos /* 432 */ NULL, /* unimplemented */ 985 1.86 christos /* 433 */ NULL, /* unimplemented */ 986 1.86 christos /* 434 */ NULL, /* unimplemented */ 987 1.92 christos /* 435 */ NULL, /* clone3 */ 988 1.87 christos /* 436 */ NULL, /* close_range */ 989 1.86 christos /* 437 */ NULL, /* unimplemented */ 990 1.86 christos /* 438 */ NULL, /* unimplemented */ 991 1.86 christos /* 439 */ NULL, /* unimplemented */ 992 1.86 christos /* 440 */ NULL, /* unimplemented */ 993 1.86 christos /* 441 */ NULL, /* epoll_pwait2 */ 994 1.68 martin /* 442 */ NULL, /* filler */ 995 1.68 martin /* 443 */ NULL, /* filler */ 996 1.68 martin /* 444 */ NULL, /* filler */ 997 1.68 martin /* 445 */ NULL, /* filler */ 998 1.68 martin /* 446 */ NULL, /* filler */ 999 1.68 martin /* 447 */ NULL, /* filler */ 1000 1.68 martin /* 448 */ NULL, /* filler */ 1001 1.68 martin /* 449 */ NULL, /* filler */ 1002 1.68 martin /* 450 */ NULL, /* filler */ 1003 1.68 martin /* 451 */ NULL, /* filler */ 1004 1.68 martin /* 452 */ NULL, /* filler */ 1005 1.68 martin /* 453 */ NULL, /* filler */ 1006 1.68 martin /* 454 */ NULL, /* filler */ 1007 1.68 martin /* 455 */ NULL, /* filler */ 1008 1.68 martin /* 456 */ NULL, /* filler */ 1009 1.68 martin /* 457 */ NULL, /* filler */ 1010 1.68 martin /* 458 */ NULL, /* filler */ 1011 1.68 martin /* 459 */ NULL, /* filler */ 1012 1.68 martin /* 460 */ NULL, /* filler */ 1013 1.68 martin /* 461 */ NULL, /* filler */ 1014 1.68 martin /* 462 */ NULL, /* filler */ 1015 1.68 martin /* 463 */ NULL, /* filler */ 1016 1.68 martin /* 464 */ NULL, /* filler */ 1017 1.68 martin /* 465 */ NULL, /* filler */ 1018 1.68 martin /* 466 */ NULL, /* filler */ 1019 1.68 martin /* 467 */ NULL, /* filler */ 1020 1.68 martin /* 468 */ NULL, /* filler */ 1021 1.68 martin /* 469 */ NULL, /* filler */ 1022 1.68 martin /* 470 */ NULL, /* filler */ 1023 1.68 martin /* 471 */ NULL, /* filler */ 1024 1.68 martin /* 472 */ NULL, /* filler */ 1025 1.68 martin /* 473 */ NULL, /* filler */ 1026 1.68 martin /* 474 */ NULL, /* filler */ 1027 1.68 martin /* 475 */ NULL, /* filler */ 1028 1.68 martin /* 476 */ NULL, /* filler */ 1029 1.68 martin /* 477 */ NULL, /* filler */ 1030 1.68 martin /* 478 */ NULL, /* filler */ 1031 1.68 martin /* 479 */ NULL, /* filler */ 1032 1.68 martin /* 480 */ NULL, /* filler */ 1033 1.68 martin /* 481 */ NULL, /* filler */ 1034 1.68 martin /* 482 */ NULL, /* filler */ 1035 1.68 martin /* 483 */ NULL, /* filler */ 1036 1.68 martin /* 484 */ NULL, /* filler */ 1037 1.68 martin /* 485 */ NULL, /* filler */ 1038 1.68 martin /* 486 */ NULL, /* filler */ 1039 1.68 martin /* 487 */ NULL, /* filler */ 1040 1.68 martin /* 488 */ NULL, /* filler */ 1041 1.68 martin /* 489 */ NULL, /* filler */ 1042 1.68 martin /* 490 */ NULL, /* filler */ 1043 1.68 martin /* 491 */ NULL, /* filler */ 1044 1.68 martin /* 492 */ NULL, /* filler */ 1045 1.68 martin /* 493 */ NULL, /* filler */ 1046 1.68 martin /* 494 */ NULL, /* filler */ 1047 1.68 martin /* 495 */ NULL, /* filler */ 1048 1.68 martin /* 496 */ NULL, /* filler */ 1049 1.68 martin /* 497 */ NULL, /* filler */ 1050 1.68 martin /* 498 */ NULL, /* filler */ 1051 1.68 martin /* 499 */ NULL, /* filler */ 1052 1.68 martin /* 500 */ NULL, /* filler */ 1053 1.68 martin /* 501 */ NULL, /* filler */ 1054 1.68 martin /* 502 */ NULL, /* filler */ 1055 1.68 martin /* 503 */ NULL, /* filler */ 1056 1.68 martin /* 504 */ NULL, /* filler */ 1057 1.68 martin /* 505 */ NULL, /* filler */ 1058 1.68 martin /* 506 */ NULL, /* filler */ 1059 1.68 martin /* 507 */ NULL, /* filler */ 1060 1.68 martin /* 508 */ NULL, /* filler */ 1061 1.68 martin /* 509 */ NULL, /* filler */ 1062 1.68 martin /* 510 */ NULL, /* filler */ 1063 1.68 martin /* 511 */ NULL, /* filler */ 1064 1.68 martin }; 1065