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