The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/kern/syscalls.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $NetBSD: syscalls.c,v 1.327 2021/11/01 05:26:27 thorpej Exp $ */
    2 
    3 /*
    4  * System call names.
    5  *
    6  * DO NOT EDIT-- this file is automatically generated.
    7  * created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
    8  */
    9 
   10 #include <sys/cdefs.h>
   11 __KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.327 2021/11/01 05:26:27 thorpej Exp $");
   12 
   13 #if defined(_KERNEL_OPT)
   14 #ifdef _KERNEL_OPT
   15 #include "opt_modular.h"
   16 #include "opt_ntp.h"
   17 #include "opt_sysv.h"
   18 #endif
   19 #include <sys/param.h>
   20 #include <sys/systm.h>
   21 #include <sys/signal.h>
   22 #include <sys/socket.h>
   23 #include <sys/mount.h>
   24 #include <sys/sched.h>
   25 #include <sys/idtype.h>
   26 #include <sys/syscallargs.h>
   27 #include <sys/acl.h>
   28 #else /* _KERNEL_OPT */
   29 #include <sys/null.h>
   30 #endif /* _KERNEL_OPT */
   31 
   32 const char *const syscallnames[] = {
   33         /*   0 */       "syscall",
   34         /*   1 */       "exit",
   35         /*   2 */       "fork",
   36         /*   3 */       "read",
   37         /*   4 */       "write",
   38         /*   5 */       "open",
   39         /*   6 */       "close",
   40         /*   7 */       "compat_50_wait4",
   41         /*   8 */       "compat_43_ocreat",
   42         /*   9 */       "link",
   43         /*  10 */       "unlink",
   44         /*  11 */       "#11 (obsolete execv)",
   45         /*  12 */       "chdir",
   46         /*  13 */       "fchdir",
   47         /*  14 */       "compat_50_mknod",
   48         /*  15 */       "chmod",
   49         /*  16 */       "chown",
   50         /*  17 */       "break",
   51         /*  18 */       "compat_20_getfsstat",
   52         /*  19 */       "compat_43_olseek",
   53         /*  20 */       "getpid",
   54         /*  21 */       "compat_40_mount",
   55         /*  22 */       "unmount",
   56         /*  23 */       "setuid",
   57         /*  24 */       "getuid",
   58         /*  25 */       "geteuid",
   59         /*  26 */       "ptrace",
   60         /*  27 */       "recvmsg",
   61         /*  28 */       "sendmsg",
   62         /*  29 */       "recvfrom",
   63         /*  30 */       "accept",
   64         /*  31 */       "getpeername",
   65         /*  32 */       "getsockname",
   66         /*  33 */       "access",
   67         /*  34 */       "chflags",
   68         /*  35 */       "fchflags",
   69         /*  36 */       "sync",
   70         /*  37 */       "kill",
   71         /*  38 */       "compat_43_stat43",
   72         /*  39 */       "getppid",
   73         /*  40 */       "compat_43_lstat43",
   74         /*  41 */       "dup",
   75         /*  42 */       "pipe",
   76         /*  43 */       "getegid",
   77         /*  44 */       "profil",
   78         /*  45 */       "ktrace",
   79         /*  46 */       "compat_13_sigaction13",
   80         /*  47 */       "getgid",
   81         /*  48 */       "compat_13_sigprocmask13",
   82         /*  49 */       "__getlogin",
   83         /*  50 */       "__setlogin",
   84         /*  51 */       "acct",
   85         /*  52 */       "compat_13_sigpending13",
   86         /*  53 */       "compat_13_sigaltstack13",
   87         /*  54 */       "ioctl",
   88         /*  55 */       "compat_12_oreboot",
   89         /*  56 */       "revoke",
   90         /*  57 */       "symlink",
   91         /*  58 */       "readlink",
   92         /*  59 */       "execve",
   93         /*  60 */       "umask",
   94         /*  61 */       "chroot",
   95         /*  62 */       "compat_43_fstat43",
   96         /*  63 */       "compat_43_ogetkerninfo",
   97         /*  64 */       "compat_43_ogetpagesize",
   98         /*  65 */       "compat_12_msync",
   99         /*  66 */       "vfork",
  100         /*  67 */       "#67 (obsolete vread)",
  101         /*  68 */       "#68 (obsolete vwrite)",
  102         /*  69 */       "#69 (obsolete sbrk)",
  103         /*  70 */       "#70 (obsolete sstk)",
  104         /*  71 */       "compat_43_ommap",
  105         /*  72 */       "vadvise",
  106         /*  73 */       "munmap",
  107         /*  74 */       "mprotect",
  108         /*  75 */       "madvise",
  109         /*  76 */       "#76 (obsolete vhangup)",
  110         /*  77 */       "#77 (obsolete vlimit)",
  111         /*  78 */       "mincore",
  112         /*  79 */       "getgroups",
  113         /*  80 */       "setgroups",
  114         /*  81 */       "getpgrp",
  115         /*  82 */       "setpgid",
  116         /*  83 */       "compat_50_setitimer",
  117         /*  84 */       "compat_43_owait",
  118         /*  85 */       "compat_12_oswapon",
  119         /*  86 */       "compat_50_getitimer",
  120         /*  87 */       "compat_43_ogethostname",
  121         /*  88 */       "compat_43_osethostname",
  122         /*  89 */       "compat_43_ogetdtablesize",
  123         /*  90 */       "dup2",
  124         /*  91 */       "getrandom",
  125         /*  92 */       "fcntl",
  126         /*  93 */       "compat_50_select",
  127         /*  94 */       "#94 (unimplemented setdopt)",
  128         /*  95 */       "fsync",
  129         /*  96 */       "setpriority",
  130         /*  97 */       "compat_30_socket",
  131         /*  98 */       "connect",
  132         /*  99 */       "compat_43_oaccept",
  133         /* 100 */       "getpriority",
  134         /* 101 */       "compat_43_osend",
  135         /* 102 */       "compat_43_orecv",
  136         /* 103 */       "compat_13_sigreturn13",
  137         /* 104 */       "bind",
  138         /* 105 */       "setsockopt",
  139         /* 106 */       "listen",
  140         /* 107 */       "#107 (obsolete vtimes)",
  141         /* 108 */       "compat_43_osigvec",
  142         /* 109 */       "compat_43_osigblock",
  143         /* 110 */       "compat_43_osigsetmask",
  144         /* 111 */       "compat_13_sigsuspend13",
  145         /* 112 */       "compat_43_osigstack",
  146         /* 113 */       "compat_43_orecvmsg",
  147         /* 114 */       "compat_43_osendmsg",
  148         /* 115 */       "#115 (obsolete vtrace)",
  149         /* 116 */       "compat_50_gettimeofday",
  150         /* 117 */       "compat_50_getrusage",
  151         /* 118 */       "getsockopt",
  152         /* 119 */       "#119 (obsolete resuba)",
  153         /* 120 */       "readv",
  154         /* 121 */       "writev",
  155         /* 122 */       "compat_50_settimeofday",
  156         /* 123 */       "fchown",
  157         /* 124 */       "fchmod",
  158         /* 125 */       "compat_43_orecvfrom",
  159         /* 126 */       "setreuid",
  160         /* 127 */       "setregid",
  161         /* 128 */       "rename",
  162         /* 129 */       "compat_43_otruncate",
  163         /* 130 */       "compat_43_oftruncate",
  164         /* 131 */       "flock",
  165         /* 132 */       "mkfifo",
  166         /* 133 */       "sendto",
  167         /* 134 */       "shutdown",
  168         /* 135 */       "socketpair",
  169         /* 136 */       "mkdir",
  170         /* 137 */       "rmdir",
  171         /* 138 */       "compat_50_utimes",
  172         /* 139 */       "#139 (obsolete 4.2 sigreturn)",
  173         /* 140 */       "compat_50_adjtime",
  174         /* 141 */       "compat_43_ogetpeername",
  175         /* 142 */       "compat_43_ogethostid",
  176         /* 143 */       "compat_43_osethostid",
  177         /* 144 */       "compat_43_ogetrlimit",
  178         /* 145 */       "compat_43_osetrlimit",
  179         /* 146 */       "compat_43_okillpg",
  180         /* 147 */       "setsid",
  181         /* 148 */       "compat_50_quotactl",
  182         /* 149 */       "compat_43_oquota",
  183         /* 150 */       "compat_43_ogetsockname",
  184         /* 151 */       "#151 (unimplemented)",
  185         /* 152 */       "#152 (unimplemented)",
  186         /* 153 */       "#153 (unimplemented)",
  187         /* 154 */       "#154 (unimplemented)",
  188         /* 155 */       "nfssvc",
  189         /* 156 */       "compat_43_ogetdirentries",
  190         /* 157 */       "compat_20_statfs",
  191         /* 158 */       "compat_20_fstatfs",
  192         /* 159 */       "#159 (unimplemented)",
  193         /* 160 */       "#160 (unimplemented)",
  194         /* 161 */       "compat_30_getfh",
  195         /* 162 */       "compat_09_ogetdomainname",
  196         /* 163 */       "compat_09_osetdomainname",
  197         /* 164 */       "compat_09_ouname",
  198         /* 165 */       "sysarch",
  199         /* 166 */       "__futex",
  200         /* 167 */       "__futex_set_robust_list",
  201         /* 168 */       "__futex_get_robust_list",
  202 #if !defined(_LP64)
  203         /* 169 */       "compat_10_osemsys",
  204 #else
  205         /* 169 */       "#169 (excluded 1.0 semsys)",
  206 #endif
  207 #if !defined(_LP64)
  208         /* 170 */       "compat_10_omsgsys",
  209 #else
  210         /* 170 */       "#170 (excluded 1.0 msgsys)",
  211 #endif
  212 #if !defined(_LP64)
  213         /* 171 */       "compat_10_oshmsys",
  214 #else
  215         /* 171 */       "#171 (excluded 1.0 shmsys)",
  216 #endif
  217         /* 172 */       "#172 (unimplemented)",
  218         /* 173 */       "pread",
  219         /* 174 */       "pwrite",
  220         /* 175 */       "compat_30_ntp_gettime",
  221 #if defined(NTP) || !defined(_KERNEL_OPT)
  222         /* 176 */       "ntp_adjtime",
  223 #else
  224         /* 176 */       "#176 (excluded ntp_adjtime)",
  225 #endif
  226         /* 177 */       "timerfd_create",
  227         /* 178 */       "timerfd_settime",
  228         /* 179 */       "timerfd_gettime",
  229         /* 180 */       "#180 (unimplemented)",
  230         /* 181 */       "setgid",
  231         /* 182 */       "setegid",
  232         /* 183 */       "seteuid",
  233         /* 184 */       "lfs_bmapv",
  234         /* 185 */       "lfs_markv",
  235         /* 186 */       "lfs_segclean",
  236         /* 187 */       "compat_50_lfs_segwait",
  237         /* 188 */       "compat_12_stat12",
  238         /* 189 */       "compat_12_fstat12",
  239         /* 190 */       "compat_12_lstat12",
  240         /* 191 */       "pathconf",
  241         /* 192 */       "fpathconf",
  242         /* 193 */       "getsockopt2",
  243         /* 194 */       "getrlimit",
  244         /* 195 */       "setrlimit",
  245         /* 196 */       "compat_12_getdirentries",
  246         /* 197 */       "mmap",
  247         /* 198 */       "__syscall",
  248         /* 199 */       "lseek",
  249         /* 200 */       "truncate",
  250         /* 201 */       "ftruncate",
  251         /* 202 */       "__sysctl",
  252         /* 203 */       "mlock",
  253         /* 204 */       "munlock",
  254         /* 205 */       "undelete",
  255         /* 206 */       "compat_50_futimes",
  256         /* 207 */       "getpgid",
  257         /* 208 */       "reboot",
  258         /* 209 */       "poll",
  259         /* 210 */       "afssys",
  260         /* 211 */       "#211 (unimplemented)",
  261         /* 212 */       "#212 (unimplemented)",
  262         /* 213 */       "#213 (unimplemented)",
  263         /* 214 */       "#214 (unimplemented)",
  264         /* 215 */       "#215 (unimplemented)",
  265         /* 216 */       "#216 (unimplemented)",
  266         /* 217 */       "#217 (unimplemented)",
  267         /* 218 */       "#218 (unimplemented)",
  268         /* 219 */       "#219 (unimplemented)",
  269         /* 220 */       "compat_14___semctl",
  270         /* 221 */       "semget",
  271         /* 222 */       "semop",
  272         /* 223 */       "semconfig",
  273         /* 224 */       "compat_14_msgctl",
  274         /* 225 */       "msgget",
  275         /* 226 */       "msgsnd",
  276         /* 227 */       "msgrcv",
  277         /* 228 */       "shmat",
  278         /* 229 */       "compat_14_shmctl",
  279         /* 230 */       "shmdt",
  280         /* 231 */       "shmget",
  281         /* 232 */       "compat_50_clock_gettime",
  282         /* 233 */       "compat_50_clock_settime",
  283         /* 234 */       "compat_50_clock_getres",
  284         /* 235 */       "timer_create",
  285         /* 236 */       "timer_delete",
  286         /* 237 */       "compat_50_timer_settime",
  287         /* 238 */       "compat_50_timer_gettime",
  288         /* 239 */       "timer_getoverrun",
  289         /* 240 */       "compat_50_nanosleep",
  290         /* 241 */       "fdatasync",
  291         /* 242 */       "mlockall",
  292         /* 243 */       "munlockall",
  293         /* 244 */       "compat_50___sigtimedwait",
  294         /* 245 */       "sigqueueinfo",
  295         /* 246 */       "modctl",
  296         /* 247 */       "_ksem_init",
  297         /* 248 */       "_ksem_open",
  298         /* 249 */       "_ksem_unlink",
  299         /* 250 */       "_ksem_close",
  300         /* 251 */       "_ksem_post",
  301         /* 252 */       "_ksem_wait",
  302         /* 253 */       "_ksem_trywait",
  303         /* 254 */       "_ksem_getvalue",
  304         /* 255 */       "_ksem_destroy",
  305         /* 256 */       "_ksem_timedwait",
  306         /* 257 */       "mq_open",
  307         /* 258 */       "mq_close",
  308         /* 259 */       "mq_unlink",
  309         /* 260 */       "mq_getattr",
  310         /* 261 */       "mq_setattr",
  311         /* 262 */       "mq_notify",
  312         /* 263 */       "mq_send",
  313         /* 264 */       "mq_receive",
  314         /* 265 */       "compat_50_mq_timedsend",
  315         /* 266 */       "compat_50_mq_timedreceive",
  316         /* 267 */       "eventfd",
  317         /* 268 */       "#268 (unimplemented)",
  318         /* 269 */       "#269 (unimplemented)",
  319         /* 270 */       "__posix_rename",
  320         /* 271 */       "swapctl",
  321         /* 272 */       "compat_30_getdents",
  322         /* 273 */       "minherit",
  323         /* 274 */       "lchmod",
  324         /* 275 */       "lchown",
  325         /* 276 */       "compat_50_lutimes",
  326         /* 277 */       "__msync13",
  327         /* 278 */       "compat_30___stat13",
  328         /* 279 */       "compat_30___fstat13",
  329         /* 280 */       "compat_30___lstat13",
  330         /* 281 */       "__sigaltstack14",
  331         /* 282 */       "__vfork14",
  332         /* 283 */       "__posix_chown",
  333         /* 284 */       "__posix_fchown",
  334         /* 285 */       "__posix_lchown",
  335         /* 286 */       "getsid",
  336         /* 287 */       "__clone",
  337         /* 288 */       "fktrace",
  338         /* 289 */       "preadv",
  339         /* 290 */       "pwritev",
  340         /* 291 */       "compat_16___sigaction14",
  341         /* 292 */       "__sigpending14",
  342         /* 293 */       "__sigprocmask14",
  343         /* 294 */       "__sigsuspend14",
  344         /* 295 */       "compat_16___sigreturn14",
  345         /* 296 */       "__getcwd",
  346         /* 297 */       "fchroot",
  347         /* 298 */       "compat_30_fhopen",
  348         /* 299 */       "compat_30_fhstat",
  349         /* 300 */       "compat_20_fhstatfs",
  350         /* 301 */       "compat_50_____semctl13",
  351         /* 302 */       "compat_50___msgctl13",
  352         /* 303 */       "compat_50___shmctl13",
  353         /* 304 */       "lchflags",
  354         /* 305 */       "issetugid",
  355         /* 306 */       "utrace",
  356         /* 307 */       "getcontext",
  357         /* 308 */       "setcontext",
  358         /* 309 */       "_lwp_create",
  359         /* 310 */       "_lwp_exit",
  360         /* 311 */       "_lwp_self",
  361         /* 312 */       "_lwp_wait",
  362         /* 313 */       "_lwp_suspend",
  363         /* 314 */       "_lwp_continue",
  364         /* 315 */       "_lwp_wakeup",
  365         /* 316 */       "_lwp_getprivate",
  366         /* 317 */       "_lwp_setprivate",
  367         /* 318 */       "_lwp_kill",
  368         /* 319 */       "_lwp_detach",
  369         /* 320 */       "compat_50__lwp_park",
  370         /* 321 */       "_lwp_unpark",
  371         /* 322 */       "_lwp_unpark_all",
  372         /* 323 */       "_lwp_setname",
  373         /* 324 */       "_lwp_getname",
  374         /* 325 */       "_lwp_ctl",
  375         /* 326 */       "#326 (unimplemented)",
  376         /* 327 */       "#327 (unimplemented)",
  377         /* 328 */       "#328 (unimplemented)",
  378         /* 329 */       "#329 (unimplemented)",
  379         /* 330 */       "compat_60_sa_register",
  380         /* 331 */       "compat_60_sa_stacks",
  381         /* 332 */       "compat_60_sa_enable",
  382         /* 333 */       "compat_60_sa_setconcurrency",
  383         /* 334 */       "compat_60_sa_yield",
  384         /* 335 */       "compat_60_sa_preempt",
  385         /* 336 */       "#336 (obsolete sys_sa_unblockyield)",
  386         /* 337 */       "#337 (unimplemented)",
  387         /* 338 */       "#338 (unimplemented)",
  388         /* 339 */       "#339 (unimplemented)",
  389         /* 340 */       "__sigaction_sigtramp",
  390         /* 341 */       "#341 (obsolete sys_pmc_get_info)",
  391         /* 342 */       "#342 (obsolete sys_pmc_control)",
  392         /* 343 */       "rasctl",
  393         /* 344 */       "kqueue",
  394         /* 345 */       "compat_50_kevent",
  395         /* 346 */       "_sched_setparam",
  396         /* 347 */       "_sched_getparam",
  397         /* 348 */       "_sched_setaffinity",
  398         /* 349 */       "_sched_getaffinity",
  399         /* 350 */       "sched_yield",
  400         /* 351 */       "_sched_protect",
  401         /* 352 */       "#352 (unimplemented)",
  402         /* 353 */       "#353 (unimplemented)",
  403         /* 354 */       "fsync_range",
  404         /* 355 */       "uuidgen",
  405         /* 356 */       "compat_90_getvfsstat",
  406         /* 357 */       "compat_90_statvfs1",
  407         /* 358 */       "compat_90_fstatvfs1",
  408         /* 359 */       "compat_30_fhstatvfs1",
  409         /* 360 */       "extattrctl",
  410         /* 361 */       "extattr_set_file",
  411         /* 362 */       "extattr_get_file",
  412         /* 363 */       "extattr_delete_file",
  413         /* 364 */       "extattr_set_fd",
  414         /* 365 */       "extattr_get_fd",
  415         /* 366 */       "extattr_delete_fd",
  416         /* 367 */       "extattr_set_link",
  417         /* 368 */       "extattr_get_link",
  418         /* 369 */       "extattr_delete_link",
  419         /* 370 */       "extattr_list_fd",
  420         /* 371 */       "extattr_list_file",
  421         /* 372 */       "extattr_list_link",
  422         /* 373 */       "compat_50_pselect",
  423         /* 374 */       "compat_50_pollts",
  424         /* 375 */       "setxattr",
  425         /* 376 */       "lsetxattr",
  426         /* 377 */       "fsetxattr",
  427         /* 378 */       "getxattr",
  428         /* 379 */       "lgetxattr",
  429         /* 380 */       "fgetxattr",
  430         /* 381 */       "listxattr",
  431         /* 382 */       "llistxattr",
  432         /* 383 */       "flistxattr",
  433         /* 384 */       "removexattr",
  434         /* 385 */       "lremovexattr",
  435         /* 386 */       "fremovexattr",
  436         /* 387 */       "compat_50___stat30",
  437         /* 388 */       "compat_50___fstat30",
  438         /* 389 */       "compat_50___lstat30",
  439         /* 390 */       "__getdents30",
  440         /* 391 */       "#391 (ignored old posix_fadvise)",
  441         /* 392 */       "compat_30___fhstat30",
  442         /* 393 */       "compat_50___ntp_gettime30",
  443         /* 394 */       "__socket30",
  444         /* 395 */       "__getfh30",
  445         /* 396 */       "__fhopen40",
  446         /* 397 */       "compat_90_fhstatvfs1",
  447         /* 398 */       "compat_50___fhstat40",
  448         /* 399 */       "aio_cancel",
  449         /* 400 */       "aio_error",
  450         /* 401 */       "aio_fsync",
  451         /* 402 */       "aio_read",
  452         /* 403 */       "aio_return",
  453         /* 404 */       "compat_50_aio_suspend",
  454         /* 405 */       "aio_write",
  455         /* 406 */       "lio_listio",
  456         /* 407 */       "#407 (unimplemented)",
  457         /* 408 */       "#408 (unimplemented)",
  458         /* 409 */       "#409 (unimplemented)",
  459         /* 410 */       "__mount50",
  460         /* 411 */       "mremap",
  461         /* 412 */       "pset_create",
  462         /* 413 */       "pset_destroy",
  463         /* 414 */       "pset_assign",
  464         /* 415 */       "_pset_bind",
  465         /* 416 */       "__posix_fadvise50",
  466         /* 417 */       "__select50",
  467         /* 418 */       "__gettimeofday50",
  468         /* 419 */       "__settimeofday50",
  469         /* 420 */       "__utimes50",
  470         /* 421 */       "__adjtime50",
  471         /* 422 */       "__lfs_segwait50",
  472         /* 423 */       "__futimes50",
  473         /* 424 */       "__lutimes50",
  474         /* 425 */       "__setitimer50",
  475         /* 426 */       "__getitimer50",
  476         /* 427 */       "__clock_gettime50",
  477         /* 428 */       "__clock_settime50",
  478         /* 429 */       "__clock_getres50",
  479         /* 430 */       "__nanosleep50",
  480         /* 431 */       "____sigtimedwait50",
  481         /* 432 */       "__mq_timedsend50",
  482         /* 433 */       "__mq_timedreceive50",
  483         /* 434 */       "compat_60__lwp_park",
  484         /* 435 */       "__kevent50",
  485         /* 436 */       "__pselect50",
  486         /* 437 */       "__pollts50",
  487         /* 438 */       "__aio_suspend50",
  488         /* 439 */       "__stat50",
  489         /* 440 */       "__fstat50",
  490         /* 441 */       "__lstat50",
  491         /* 442 */       "____semctl50",
  492         /* 443 */       "__shmctl50",
  493         /* 444 */       "__msgctl50",
  494         /* 445 */       "__getrusage50",
  495         /* 446 */       "__timer_settime50",
  496         /* 447 */       "__timer_gettime50",
  497 #if defined(NTP) || !defined(_KERNEL_OPT)
  498         /* 448 */       "__ntp_gettime50",
  499 #else
  500         /* 448 */       "#448 (excluded ___ntp_gettime50)",
  501 #endif
  502         /* 449 */       "__wait450",
  503         /* 450 */       "__mknod50",
  504         /* 451 */       "__fhstat50",
  505         /* 452 */       "#452 (obsolete 5.99 quotactl)",
  506         /* 453 */       "pipe2",
  507         /* 454 */       "dup3",
  508         /* 455 */       "kqueue1",
  509         /* 456 */       "paccept",
  510         /* 457 */       "linkat",
  511         /* 458 */       "renameat",
  512         /* 459 */       "mkfifoat",
  513         /* 460 */       "mknodat",
  514         /* 461 */       "mkdirat",
  515         /* 462 */       "faccessat",
  516         /* 463 */       "fchmodat",
  517         /* 464 */       "fchownat",
  518         /* 465 */       "fexecve",
  519         /* 466 */       "fstatat",
  520         /* 467 */       "utimensat",
  521         /* 468 */       "openat",
  522         /* 469 */       "readlinkat",
  523         /* 470 */       "symlinkat",
  524         /* 471 */       "unlinkat",
  525         /* 472 */       "futimens",
  526         /* 473 */       "__quotactl",
  527         /* 474 */       "posix_spawn",
  528         /* 475 */       "recvmmsg",
  529         /* 476 */       "sendmmsg",
  530         /* 477 */       "clock_nanosleep",
  531         /* 478 */       "___lwp_park60",
  532         /* 479 */       "posix_fallocate",
  533         /* 480 */       "fdiscard",
  534         /* 481 */       "wait6",
  535         /* 482 */       "clock_getcpuclockid2",
  536         /* 483 */       "__getvfsstat90",
  537         /* 484 */       "__statvfs190",
  538         /* 485 */       "__fstatvfs190",
  539         /* 486 */       "__fhstatvfs190",
  540         /* 487 */       "__acl_get_link",
  541         /* 488 */       "__acl_set_link",
  542         /* 489 */       "__acl_delete_link",
  543         /* 490 */       "__acl_aclcheck_link",
  544         /* 491 */       "__acl_get_file",
  545         /* 492 */       "__acl_set_file",
  546         /* 493 */       "__acl_get_fd",
  547         /* 494 */       "__acl_set_fd",
  548         /* 495 */       "__acl_delete_file",
  549         /* 496 */       "__acl_delete_fd",
  550         /* 497 */       "__acl_aclcheck_file",
  551         /* 498 */       "__acl_aclcheck_fd",
  552         /* 499 */       "lpathconf",
  553         /* 500 */       "# filler",
  554         /* 501 */       "# filler",
  555         /* 502 */       "# filler",
  556         /* 503 */       "# filler",
  557         /* 504 */       "# filler",
  558         /* 505 */       "# filler",
  559         /* 506 */       "# filler",
  560         /* 507 */       "# filler",
  561         /* 508 */       "# filler",
  562         /* 509 */       "# filler",
  563         /* 510 */       "# filler",
  564         /* 511 */       "# filler",
  565 };
  566 
  567 
  568 /* libc style syscall names */
  569 const char *const altsyscallnames[] = {
  570         /*   0 */       NULL, /* syscall */
  571         /*   1 */       NULL, /* exit */
  572         /*   2 */       NULL, /* fork */
  573         /*   3 */       NULL, /* read */
  574         /*   4 */       NULL, /* write */
  575         /*   5 */       NULL, /* open */
  576         /*   6 */       NULL, /* close */
  577         /*   7 */       NULL, /* compat_50_wait4 */
  578         /*   8 */       NULL, /* compat_43_ocreat */
  579         /*   9 */       NULL, /* link */
  580         /*  10 */       NULL, /* unlink */
  581         /*  11 */       NULL, /* obsolete execv */
  582         /*  12 */       NULL, /* chdir */
  583         /*  13 */       NULL, /* fchdir */
  584         /*  14 */       NULL, /* compat_50_mknod */
  585         /*  15 */       NULL, /* chmod */
  586         /*  16 */       NULL, /* chown */
  587         /*  17 */       "obreak",
  588         /*  18 */       NULL, /* compat_20_getfsstat */
  589         /*  19 */       NULL, /* compat_43_olseek */
  590         /*  20 */       "getpid_with_ppid",
  591         /*  21 */       NULL, /* compat_40_mount */
  592         /*  22 */       NULL, /* unmount */
  593         /*  23 */       NULL, /* setuid */
  594         /*  24 */       "getuid_with_euid",
  595         /*  25 */       NULL, /* geteuid */
  596         /*  26 */       NULL, /* ptrace */
  597         /*  27 */       NULL, /* recvmsg */
  598         /*  28 */       NULL, /* sendmsg */
  599         /*  29 */       NULL, /* recvfrom */
  600         /*  30 */       NULL, /* accept */
  601         /*  31 */       NULL, /* getpeername */
  602         /*  32 */       NULL, /* getsockname */
  603         /*  33 */       NULL, /* access */
  604         /*  34 */       NULL, /* chflags */
  605         /*  35 */       NULL, /* fchflags */
  606         /*  36 */       NULL, /* sync */
  607         /*  37 */       NULL, /* kill */
  608         /*  38 */       NULL, /* compat_43_stat43 */
  609         /*  39 */       NULL, /* getppid */
  610         /*  40 */       NULL, /* compat_43_lstat43 */
  611         /*  41 */       NULL, /* dup */
  612         /*  42 */       NULL, /* pipe */
  613         /*  43 */       NULL, /* getegid */
  614         /*  44 */       NULL, /* profil */
  615         /*  45 */       NULL, /* ktrace */
  616         /*  46 */       NULL, /* compat_13_sigaction13 */
  617         /*  47 */       "getgid_with_egid",
  618         /*  48 */       NULL, /* compat_13_sigprocmask13 */
  619         /*  49 */       NULL, /* __getlogin */
  620         /*  50 */       NULL, /* __setlogin */
  621         /*  51 */       NULL, /* acct */
  622         /*  52 */       NULL, /* compat_13_sigpending13 */
  623         /*  53 */       NULL, /* compat_13_sigaltstack13 */
  624         /*  54 */       NULL, /* ioctl */
  625         /*  55 */       NULL, /* compat_12_oreboot */
  626         /*  56 */       NULL, /* revoke */
  627         /*  57 */       NULL, /* symlink */
  628         /*  58 */       NULL, /* readlink */
  629         /*  59 */       NULL, /* execve */
  630         /*  60 */       NULL, /* umask */
  631         /*  61 */       NULL, /* chroot */
  632         /*  62 */       NULL, /* compat_43_fstat43 */
  633         /*  63 */       NULL, /* compat_43_ogetkerninfo */
  634         /*  64 */       NULL, /* compat_43_ogetpagesize */
  635         /*  65 */       NULL, /* compat_12_msync */
  636         /*  66 */       NULL, /* vfork */
  637         /*  67 */       NULL, /* obsolete vread */
  638         /*  68 */       NULL, /* obsolete vwrite */
  639         /*  69 */       NULL, /* obsolete sbrk */
  640         /*  70 */       NULL, /* obsolete sstk */
  641         /*  71 */       NULL, /* compat_43_ommap */
  642         /*  72 */       "ovadvise",
  643         /*  73 */       NULL, /* munmap */
  644         /*  74 */       NULL, /* mprotect */
  645         /*  75 */       NULL, /* madvise */
  646         /*  76 */       NULL, /* obsolete vhangup */
  647         /*  77 */       NULL, /* obsolete vlimit */
  648         /*  78 */       NULL, /* mincore */
  649         /*  79 */       NULL, /* getgroups */
  650         /*  80 */       NULL, /* setgroups */
  651         /*  81 */       NULL, /* getpgrp */
  652         /*  82 */       NULL, /* setpgid */
  653         /*  83 */       NULL, /* compat_50_setitimer */
  654         /*  84 */       NULL, /* compat_43_owait */
  655         /*  85 */       NULL, /* compat_12_oswapon */
  656         /*  86 */       NULL, /* compat_50_getitimer */
  657         /*  87 */       NULL, /* compat_43_ogethostname */
  658         /*  88 */       NULL, /* compat_43_osethostname */
  659         /*  89 */       NULL, /* compat_43_ogetdtablesize */
  660         /*  90 */       NULL, /* dup2 */
  661         /*  91 */       NULL, /* getrandom */
  662         /*  92 */       NULL, /* fcntl */
  663         /*  93 */       NULL, /* compat_50_select */
  664         /*  94 */       NULL, /* unimplemented setdopt */
  665         /*  95 */       NULL, /* fsync */
  666         /*  96 */       NULL, /* setpriority */
  667         /*  97 */       NULL, /* compat_30_socket */
  668         /*  98 */       NULL, /* connect */
  669         /*  99 */       NULL, /* compat_43_oaccept */
  670         /* 100 */       NULL, /* getpriority */
  671         /* 101 */       NULL, /* compat_43_osend */
  672         /* 102 */       NULL, /* compat_43_orecv */
  673         /* 103 */       NULL, /* compat_13_sigreturn13 */
  674         /* 104 */       NULL, /* bind */
  675         /* 105 */       NULL, /* setsockopt */
  676         /* 106 */       NULL, /* listen */
  677         /* 107 */       NULL, /* obsolete vtimes */
  678         /* 108 */       NULL, /* compat_43_osigvec */
  679         /* 109 */       NULL, /* compat_43_osigblock */
  680         /* 110 */       NULL, /* compat_43_osigsetmask */
  681         /* 111 */       NULL, /* compat_13_sigsuspend13 */
  682         /* 112 */       NULL, /* compat_43_osigstack */
  683         /* 113 */       NULL, /* compat_43_orecvmsg */
  684         /* 114 */       NULL, /* compat_43_osendmsg */
  685         /* 115 */       NULL, /* obsolete vtrace */
  686         /* 116 */       NULL, /* compat_50_gettimeofday */
  687         /* 117 */       NULL, /* compat_50_getrusage */
  688         /* 118 */       NULL, /* getsockopt */
  689         /* 119 */       NULL, /* obsolete resuba */
  690         /* 120 */       NULL, /* readv */
  691         /* 121 */       NULL, /* writev */
  692         /* 122 */       NULL, /* compat_50_settimeofday */
  693         /* 123 */       NULL, /* fchown */
  694         /* 124 */       NULL, /* fchmod */
  695         /* 125 */       NULL, /* compat_43_orecvfrom */
  696         /* 126 */       NULL, /* setreuid */
  697         /* 127 */       NULL, /* setregid */
  698         /* 128 */       NULL, /* rename */
  699         /* 129 */       NULL, /* compat_43_otruncate */
  700         /* 130 */       NULL, /* compat_43_oftruncate */
  701         /* 131 */       NULL, /* flock */
  702         /* 132 */       NULL, /* mkfifo */
  703         /* 133 */       NULL, /* sendto */
  704         /* 134 */       NULL, /* shutdown */
  705         /* 135 */       NULL, /* socketpair */
  706         /* 136 */       NULL, /* mkdir */
  707         /* 137 */       NULL, /* rmdir */
  708         /* 138 */       NULL, /* compat_50_utimes */
  709         /* 139 */       NULL, /* obsolete 4.2 sigreturn */
  710         /* 140 */       NULL, /* compat_50_adjtime */
  711         /* 141 */       NULL, /* compat_43_ogetpeername */
  712         /* 142 */       NULL, /* compat_43_ogethostid */
  713         /* 143 */       NULL, /* compat_43_osethostid */
  714         /* 144 */       NULL, /* compat_43_ogetrlimit */
  715         /* 145 */       NULL, /* compat_43_osetrlimit */
  716         /* 146 */       NULL, /* compat_43_okillpg */
  717         /* 147 */       NULL, /* setsid */
  718         /* 148 */       NULL, /* compat_50_quotactl */
  719         /* 149 */       NULL, /* compat_43_oquota */
  720         /* 150 */       NULL, /* compat_43_ogetsockname */
  721         /* 151 */       NULL, /* unimplemented */
  722         /* 152 */       NULL, /* unimplemented */
  723         /* 153 */       NULL, /* unimplemented */
  724         /* 154 */       NULL, /* unimplemented */
  725         /* 155 */       NULL, /* nfssvc */
  726         /* 156 */       NULL, /* compat_43_ogetdirentries */
  727         /* 157 */       NULL, /* compat_20_statfs */
  728         /* 158 */       NULL, /* compat_20_fstatfs */
  729         /* 159 */       NULL, /* unimplemented */
  730         /* 160 */       NULL, /* unimplemented */
  731         /* 161 */       NULL, /* compat_30_getfh */
  732         /* 162 */       NULL, /* compat_09_ogetdomainname */
  733         /* 163 */       NULL, /* compat_09_osetdomainname */
  734         /* 164 */       NULL, /* compat_09_ouname */
  735         /* 165 */       NULL, /* sysarch */
  736         /* 166 */       NULL, /* __futex */
  737         /* 167 */       NULL, /* __futex_set_robust_list */
  738         /* 168 */       NULL, /* __futex_get_robust_list */
  739 #if !defined(_LP64)
  740         /* 169 */       NULL, /* compat_10_osemsys */
  741 #else
  742         /* 169 */       NULL, /* excluded 1.0 semsys */
  743 #endif
  744 #if !defined(_LP64)
  745         /* 170 */       NULL, /* compat_10_omsgsys */
  746 #else
  747         /* 170 */       NULL, /* excluded 1.0 msgsys */
  748 #endif
  749 #if !defined(_LP64)
  750         /* 171 */       NULL, /* compat_10_oshmsys */
  751 #else
  752         /* 171 */       NULL, /* excluded 1.0 shmsys */
  753 #endif
  754         /* 172 */       NULL, /* unimplemented */
  755         /* 173 */       NULL, /* pread */
  756         /* 174 */       NULL, /* pwrite */
  757         /* 175 */       NULL, /* compat_30_ntp_gettime */
  758 #if defined(NTP) || !defined(_KERNEL_OPT)
  759         /* 176 */       NULL, /* ntp_adjtime */
  760 #else
  761         /* 176 */       NULL, /* excluded ntp_adjtime */
  762 #endif
  763         /* 177 */       NULL, /* timerfd_create */
  764         /* 178 */       NULL, /* timerfd_settime */
  765         /* 179 */       NULL, /* timerfd_gettime */
  766         /* 180 */       NULL, /* unimplemented */
  767         /* 181 */       NULL, /* setgid */
  768         /* 182 */       NULL, /* setegid */
  769         /* 183 */       NULL, /* seteuid */
  770         /* 184 */       NULL, /* lfs_bmapv */
  771         /* 185 */       NULL, /* lfs_markv */
  772         /* 186 */       NULL, /* lfs_segclean */
  773         /* 187 */       NULL, /* compat_50_lfs_segwait */
  774         /* 188 */       NULL, /* compat_12_stat12 */
  775         /* 189 */       NULL, /* compat_12_fstat12 */
  776         /* 190 */       NULL, /* compat_12_lstat12 */
  777         /* 191 */       NULL, /* pathconf */
  778         /* 192 */       NULL, /* fpathconf */
  779         /* 193 */       NULL, /* getsockopt2 */
  780         /* 194 */       NULL, /* getrlimit */
  781         /* 195 */       NULL, /* setrlimit */
  782         /* 196 */       NULL, /* compat_12_getdirentries */
  783         /* 197 */       NULL, /* mmap */
  784         /* 198 */       NULL, /* __syscall */
  785         /* 199 */       NULL, /* lseek */
  786         /* 200 */       NULL, /* truncate */
  787         /* 201 */       NULL, /* ftruncate */
  788         /* 202 */       NULL, /* __sysctl */
  789         /* 203 */       NULL, /* mlock */
  790         /* 204 */       NULL, /* munlock */
  791         /* 205 */       NULL, /* undelete */
  792         /* 206 */       NULL, /* compat_50_futimes */
  793         /* 207 */       NULL, /* getpgid */
  794         /* 208 */       NULL, /* reboot */
  795         /* 209 */       NULL, /* poll */
  796         /* 210 */       NULL, /* afssys */
  797         /* 211 */       NULL, /* unimplemented */
  798         /* 212 */       NULL, /* unimplemented */
  799         /* 213 */       NULL, /* unimplemented */
  800         /* 214 */       NULL, /* unimplemented */
  801         /* 215 */       NULL, /* unimplemented */
  802         /* 216 */       NULL, /* unimplemented */
  803         /* 217 */       NULL, /* unimplemented */
  804         /* 218 */       NULL, /* unimplemented */
  805         /* 219 */       NULL, /* unimplemented */
  806         /* 220 */       NULL, /* compat_14___semctl */
  807         /* 221 */       NULL, /* semget */
  808         /* 222 */       NULL, /* semop */
  809         /* 223 */       NULL, /* semconfig */
  810         /* 224 */       NULL, /* compat_14_msgctl */
  811         /* 225 */       NULL, /* msgget */
  812         /* 226 */       NULL, /* msgsnd */
  813         /* 227 */       NULL, /* msgrcv */
  814         /* 228 */       NULL, /* shmat */
  815         /* 229 */       NULL, /* compat_14_shmctl */
  816         /* 230 */       NULL, /* shmdt */
  817         /* 231 */       NULL, /* shmget */
  818         /* 232 */       NULL, /* compat_50_clock_gettime */
  819         /* 233 */       NULL, /* compat_50_clock_settime */
  820         /* 234 */       NULL, /* compat_50_clock_getres */
  821         /* 235 */       NULL, /* timer_create */
  822         /* 236 */       NULL, /* timer_delete */
  823         /* 237 */       NULL, /* compat_50_timer_settime */
  824         /* 238 */       NULL, /* compat_50_timer_gettime */
  825         /* 239 */       NULL, /* timer_getoverrun */
  826         /* 240 */       NULL, /* compat_50_nanosleep */
  827         /* 241 */       NULL, /* fdatasync */
  828         /* 242 */       NULL, /* mlockall */
  829         /* 243 */       NULL, /* munlockall */
  830         /* 244 */       NULL, /* compat_50___sigtimedwait */
  831         /* 245 */       NULL, /* sigqueueinfo */
  832         /* 246 */       NULL, /* modctl */
  833         /* 247 */       NULL, /* _ksem_init */
  834         /* 248 */       NULL, /* _ksem_open */
  835         /* 249 */       NULL, /* _ksem_unlink */
  836         /* 250 */       NULL, /* _ksem_close */
  837         /* 251 */       NULL, /* _ksem_post */
  838         /* 252 */       NULL, /* _ksem_wait */
  839         /* 253 */       NULL, /* _ksem_trywait */
  840         /* 254 */       NULL, /* _ksem_getvalue */
  841         /* 255 */       NULL, /* _ksem_destroy */
  842         /* 256 */       NULL, /* _ksem_timedwait */
  843         /* 257 */       NULL, /* mq_open */
  844         /* 258 */       NULL, /* mq_close */
  845         /* 259 */       NULL, /* mq_unlink */
  846         /* 260 */       NULL, /* mq_getattr */
  847         /* 261 */       NULL, /* mq_setattr */
  848         /* 262 */       NULL, /* mq_notify */
  849         /* 263 */       NULL, /* mq_send */
  850         /* 264 */       NULL, /* mq_receive */
  851         /* 265 */       NULL, /* compat_50_mq_timedsend */
  852         /* 266 */       NULL, /* compat_50_mq_timedreceive */
  853         /* 267 */       NULL, /* eventfd */
  854         /* 268 */       NULL, /* unimplemented */
  855         /* 269 */       NULL, /* unimplemented */
  856         /* 270 */       NULL, /* __posix_rename */
  857         /* 271 */       NULL, /* swapctl */
  858         /* 272 */       NULL, /* compat_30_getdents */
  859         /* 273 */       NULL, /* minherit */
  860         /* 274 */       NULL, /* lchmod */
  861         /* 275 */       NULL, /* lchown */
  862         /* 276 */       NULL, /* compat_50_lutimes */
  863         /* 277 */       "msync",
  864         /* 278 */       NULL, /* compat_30___stat13 */
  865         /* 279 */       NULL, /* compat_30___fstat13 */
  866         /* 280 */       NULL, /* compat_30___lstat13 */
  867         /* 281 */       "sigaltstack",
  868         /* 282 */       "vfork",
  869         /* 283 */       NULL, /* __posix_chown */
  870         /* 284 */       NULL, /* __posix_fchown */
  871         /* 285 */       NULL, /* __posix_lchown */
  872         /* 286 */       NULL, /* getsid */
  873         /* 287 */       NULL, /* __clone */
  874         /* 288 */       NULL, /* fktrace */
  875         /* 289 */       NULL, /* preadv */
  876         /* 290 */       NULL, /* pwritev */
  877         /* 291 */       NULL, /* compat_16___sigaction14 */
  878         /* 292 */       "sigpending",
  879         /* 293 */       "sigprocmask",
  880         /* 294 */       "sigsuspend",
  881         /* 295 */       NULL, /* compat_16___sigreturn14 */
  882         /* 296 */       NULL, /* __getcwd */
  883         /* 297 */       NULL, /* fchroot */
  884         /* 298 */       NULL, /* compat_30_fhopen */
  885         /* 299 */       NULL, /* compat_30_fhstat */
  886         /* 300 */       NULL, /* compat_20_fhstatfs */
  887         /* 301 */       NULL, /* compat_50_____semctl13 */
  888         /* 302 */       NULL, /* compat_50___msgctl13 */
  889         /* 303 */       NULL, /* compat_50___shmctl13 */
  890         /* 304 */       NULL, /* lchflags */
  891         /* 305 */       NULL, /* issetugid */
  892         /* 306 */       NULL, /* utrace */
  893         /* 307 */       NULL, /* getcontext */
  894         /* 308 */       NULL, /* setcontext */
  895         /* 309 */       NULL, /* _lwp_create */
  896         /* 310 */       NULL, /* _lwp_exit */
  897         /* 311 */       NULL, /* _lwp_self */
  898         /* 312 */       NULL, /* _lwp_wait */
  899         /* 313 */       NULL, /* _lwp_suspend */
  900         /* 314 */       NULL, /* _lwp_continue */
  901         /* 315 */       NULL, /* _lwp_wakeup */
  902         /* 316 */       NULL, /* _lwp_getprivate */
  903         /* 317 */       NULL, /* _lwp_setprivate */
  904         /* 318 */       NULL, /* _lwp_kill */
  905         /* 319 */       NULL, /* _lwp_detach */
  906         /* 320 */       NULL, /* compat_50__lwp_park */
  907         /* 321 */       NULL, /* _lwp_unpark */
  908         /* 322 */       NULL, /* _lwp_unpark_all */
  909         /* 323 */       NULL, /* _lwp_setname */
  910         /* 324 */       NULL, /* _lwp_getname */
  911         /* 325 */       NULL, /* _lwp_ctl */
  912         /* 326 */       NULL, /* unimplemented */
  913         /* 327 */       NULL, /* unimplemented */
  914         /* 328 */       NULL, /* unimplemented */
  915         /* 329 */       NULL, /* unimplemented */
  916         /* 330 */       NULL, /* compat_60_sa_register */
  917         /* 331 */       NULL, /* compat_60_sa_stacks */
  918         /* 332 */       NULL, /* compat_60_sa_enable */
  919         /* 333 */       NULL, /* compat_60_sa_setconcurrency */
  920         /* 334 */       NULL, /* compat_60_sa_yield */
  921         /* 335 */       NULL, /* compat_60_sa_preempt */
  922         /* 336 */       NULL, /* obsolete sys_sa_unblockyield */
  923         /* 337 */       NULL, /* unimplemented */
  924         /* 338 */       NULL, /* unimplemented */
  925         /* 339 */       NULL, /* unimplemented */
  926         /* 340 */       NULL, /* __sigaction_sigtramp */
  927         /* 341 */       NULL, /* obsolete sys_pmc_get_info */
  928         /* 342 */       NULL, /* obsolete sys_pmc_control */
  929         /* 343 */       NULL, /* rasctl */
  930         /* 344 */       NULL, /* kqueue */
  931         /* 345 */       NULL, /* compat_50_kevent */
  932         /* 346 */       NULL, /* _sched_setparam */
  933         /* 347 */       NULL, /* _sched_getparam */
  934         /* 348 */       NULL, /* _sched_setaffinity */
  935         /* 349 */       NULL, /* _sched_getaffinity */
  936         /* 350 */       NULL, /* sched_yield */
  937         /* 351 */       NULL, /* _sched_protect */
  938         /* 352 */       NULL, /* unimplemented */
  939         /* 353 */       NULL, /* unimplemented */
  940         /* 354 */       NULL, /* fsync_range */
  941         /* 355 */       NULL, /* uuidgen */
  942         /* 356 */       NULL, /* compat_90_getvfsstat */
  943         /* 357 */       NULL, /* compat_90_statvfs1 */
  944         /* 358 */       NULL, /* compat_90_fstatvfs1 */
  945         /* 359 */       NULL, /* compat_30_fhstatvfs1 */
  946         /* 360 */       NULL, /* extattrctl */
  947         /* 361 */       NULL, /* extattr_set_file */
  948         /* 362 */       NULL, /* extattr_get_file */
  949         /* 363 */       NULL, /* extattr_delete_file */
  950         /* 364 */       NULL, /* extattr_set_fd */
  951         /* 365 */       NULL, /* extattr_get_fd */
  952         /* 366 */       NULL, /* extattr_delete_fd */
  953         /* 367 */       NULL, /* extattr_set_link */
  954         /* 368 */       NULL, /* extattr_get_link */
  955         /* 369 */       NULL, /* extattr_delete_link */
  956         /* 370 */       NULL, /* extattr_list_fd */
  957         /* 371 */       NULL, /* extattr_list_file */
  958         /* 372 */       NULL, /* extattr_list_link */
  959         /* 373 */       NULL, /* compat_50_pselect */
  960         /* 374 */       NULL, /* compat_50_pollts */
  961         /* 375 */       NULL, /* setxattr */
  962         /* 376 */       NULL, /* lsetxattr */
  963         /* 377 */       NULL, /* fsetxattr */
  964         /* 378 */       NULL, /* getxattr */
  965         /* 379 */       NULL, /* lgetxattr */
  966         /* 380 */       NULL, /* fgetxattr */
  967         /* 381 */       NULL, /* listxattr */
  968         /* 382 */       NULL, /* llistxattr */
  969         /* 383 */       NULL, /* flistxattr */
  970         /* 384 */       NULL, /* removexattr */
  971         /* 385 */       NULL, /* lremovexattr */
  972         /* 386 */       NULL, /* fremovexattr */
  973         /* 387 */       NULL, /* compat_50___stat30 */
  974         /* 388 */       NULL, /* compat_50___fstat30 */
  975         /* 389 */       NULL, /* compat_50___lstat30 */
  976         /* 390 */       "getdents",
  977         /* 391 */       NULL, /* ignored old posix_fadvise */
  978         /* 392 */       NULL, /* compat_30___fhstat30 */
  979         /* 393 */       NULL, /* compat_50___ntp_gettime30 */
  980         /* 394 */       "socket",
  981         /* 395 */       "getfh",
  982         /* 396 */       "fhopen",
  983         /* 397 */       NULL, /* compat_90_fhstatvfs1 */
  984         /* 398 */       NULL, /* compat_50___fhstat40 */
  985         /* 399 */       NULL, /* aio_cancel */
  986         /* 400 */       NULL, /* aio_error */
  987         /* 401 */       NULL, /* aio_fsync */
  988         /* 402 */       NULL, /* aio_read */
  989         /* 403 */       NULL, /* aio_return */
  990         /* 404 */       NULL, /* compat_50_aio_suspend */
  991         /* 405 */       NULL, /* aio_write */
  992         /* 406 */       NULL, /* lio_listio */
  993         /* 407 */       NULL, /* unimplemented */
  994         /* 408 */       NULL, /* unimplemented */
  995         /* 409 */       NULL, /* unimplemented */
  996         /* 410 */       "mount",
  997         /* 411 */       NULL, /* mremap */
  998         /* 412 */       NULL, /* pset_create */
  999         /* 413 */       NULL, /* pset_destroy */
 1000         /* 414 */       NULL, /* pset_assign */
 1001         /* 415 */       NULL, /* _pset_bind */
 1002         /* 416 */       "posix_fadvise",
 1003         /* 417 */       "select",
 1004         /* 418 */       "gettimeofday",
 1005         /* 419 */       "settimeofday",
 1006         /* 420 */       "utimes",
 1007         /* 421 */       "adjtime",
 1008         /* 422 */       "lfs_segwait",
 1009         /* 423 */       "futimes",
 1010         /* 424 */       "lutimes",
 1011         /* 425 */       "setitimer",
 1012         /* 426 */       "getitimer",
 1013         /* 427 */       "clock_gettime",
 1014         /* 428 */       "clock_settime",
 1015         /* 429 */       "clock_getres",
 1016         /* 430 */       "nanosleep",
 1017         /* 431 */       "__sigtimedwait",
 1018         /* 432 */       "mq_timedsend",
 1019         /* 433 */       "mq_timedreceive",
 1020         /* 434 */       NULL, /* compat_60__lwp_park */
 1021         /* 435 */       "kevent",
 1022         /* 436 */       "pselect",
 1023         /* 437 */       "pollts",
 1024         /* 438 */       "aio_suspend",
 1025         /* 439 */       "stat",
 1026         /* 440 */       "fstat",
 1027         /* 441 */       "lstat",
 1028         /* 442 */       "__semctl",
 1029         /* 443 */       "shmctl",
 1030         /* 444 */       "msgctl",
 1031         /* 445 */       "getrusage",
 1032         /* 446 */       "timer_settime",
 1033         /* 447 */       "timer_gettime",
 1034 #if defined(NTP) || !defined(_KERNEL_OPT)
 1035         /* 448 */       "ntp_gettime",
 1036 #else
 1037         /* 448 */       NULL, /* excluded ___ntp_gettime50 */
 1038 #endif
 1039         /* 449 */       "wait4",
 1040         /* 450 */       "mknod",
 1041         /* 451 */       "fhstat",
 1042         /* 452 */       NULL, /* obsolete 5.99 quotactl */
 1043         /* 453 */       NULL, /* pipe2 */
 1044         /* 454 */       NULL, /* dup3 */
 1045         /* 455 */       NULL, /* kqueue1 */
 1046         /* 456 */       NULL, /* paccept */
 1047         /* 457 */       NULL, /* linkat */
 1048         /* 458 */       NULL, /* renameat */
 1049         /* 459 */       NULL, /* mkfifoat */
 1050         /* 460 */       NULL, /* mknodat */
 1051         /* 461 */       NULL, /* mkdirat */
 1052         /* 462 */       NULL, /* faccessat */
 1053         /* 463 */       NULL, /* fchmodat */
 1054         /* 464 */       NULL, /* fchownat */
 1055         /* 465 */       NULL, /* fexecve */
 1056         /* 466 */       NULL, /* fstatat */
 1057         /* 467 */       NULL, /* utimensat */
 1058         /* 468 */       NULL, /* openat */
 1059         /* 469 */       NULL, /* readlinkat */
 1060         /* 470 */       NULL, /* symlinkat */
 1061         /* 471 */       NULL, /* unlinkat */
 1062         /* 472 */       NULL, /* futimens */
 1063         /* 473 */       NULL, /* __quotactl */
 1064         /* 474 */       NULL, /* posix_spawn */
 1065         /* 475 */       NULL, /* recvmmsg */
 1066         /* 476 */       NULL, /* sendmmsg */
 1067         /* 477 */       NULL, /* clock_nanosleep */
 1068         /* 478 */       "_lwp_park",
 1069         /* 479 */       NULL, /* posix_fallocate */
 1070         /* 480 */       NULL, /* fdiscard */
 1071         /* 481 */       NULL, /* wait6 */
 1072         /* 482 */       NULL, /* clock_getcpuclockid2 */
 1073         /* 483 */       "getvfsstat",
 1074         /* 484 */       "statvfs1",
 1075         /* 485 */       "fstatvfs1",
 1076         /* 486 */       "fhstatvfs1",
 1077         /* 487 */       NULL, /* __acl_get_link */
 1078         /* 488 */       NULL, /* __acl_set_link */
 1079         /* 489 */       NULL, /* __acl_delete_link */
 1080         /* 490 */       NULL, /* __acl_aclcheck_link */
 1081         /* 491 */       NULL, /* __acl_get_file */
 1082         /* 492 */       NULL, /* __acl_set_file */
 1083         /* 493 */       NULL, /* __acl_get_fd */
 1084         /* 494 */       NULL, /* __acl_set_fd */
 1085         /* 495 */       NULL, /* __acl_delete_file */
 1086         /* 496 */       NULL, /* __acl_delete_fd */
 1087         /* 497 */       NULL, /* __acl_aclcheck_file */
 1088         /* 498 */       NULL, /* __acl_aclcheck_fd */
 1089         /* 499 */       NULL, /* lpathconf */
 1090         /* 500 */       NULL, /* filler */
 1091         /* 501 */       NULL, /* filler */
 1092         /* 502 */       NULL, /* filler */
 1093         /* 503 */       NULL, /* filler */
 1094         /* 504 */       NULL, /* filler */
 1095         /* 505 */       NULL, /* filler */
 1096         /* 506 */       NULL, /* filler */
 1097         /* 507 */       NULL, /* filler */
 1098         /* 508 */       NULL, /* filler */
 1099         /* 509 */       NULL, /* filler */
 1100         /* 510 */       NULL, /* filler */
 1101         /* 511 */       NULL, /* filler */
 1102 };

Cache object: 883291cfca67585dda69ab2d11977387


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.