[BACK]Return to syscalls.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Annotation of src/sys/kern/syscalls.c, Revision 1.214

1.182     ad          1: /* $NetBSD$ */
1.72      thorpej     2:
1.1       cgd         3: /*
                      4:  * System call names.
                      5:  *
                      6:  * DO NOT EDIT-- this file is automatically generated.
1.214   ! ad          7:  * created from        NetBSD: syscalls.master,v 1.199 2008/04/21 12:56:31 ad Exp
1.1       cgd         8:  */
1.75      thorpej     9:
1.123     lukem      10: #include <sys/cdefs.h>
1.182     ad         11: __KERNEL_RCSID(0, "$NetBSD$");
1.123     lukem      12:
1.121     mrg        13: #if defined(_KERNEL_OPT)
1.85      thorpej    14: #include "opt_nfsserver.h"
1.110     bjh21      15: #include "opt_ntp.h"
1.88      jonathan   16: #include "opt_compat_netbsd.h"
1.93      tron       17: #include "opt_sysv.h"
1.95      christos   18: #include "opt_compat_43.h"
1.133     christos   19: #include "opt_posix.h"
1.75      thorpej    20: #include "fs_lfs.h"
                     21: #include "fs_nfs.h"
                     22: #include <sys/param.h>
                     23: #include <sys/systm.h>
                     24: #include <sys/signal.h>
                     25: #include <sys/mount.h>
                     26: #include <sys/syscallargs.h>
1.121     mrg        27: #endif /* _KERNEL_OPT */
1.1       cgd        28:
1.113     mycroft    29: const char *const syscallnames[] = {
1.193     dsl        30:        /*   0 */       "syscall",
                     31:        /*   1 */       "exit",
                     32:        /*   2 */       "fork",
                     33:        /*   3 */       "read",
                     34:        /*   4 */       "write",
                     35:        /*   5 */       "open",
                     36:        /*   6 */       "close",
                     37:        /*   7 */       "wait4",
                     38:        /*   8 */       "compat_43_ocreat",
                     39:        /*   9 */       "link",
                     40:        /*  10 */       "unlink",
                     41:        /*  11 */       "#11 (obsolete execv)",
                     42:        /*  12 */       "chdir",
                     43:        /*  13 */       "fchdir",
                     44:        /*  14 */       "mknod",
                     45:        /*  15 */       "chmod",
                     46:        /*  16 */       "chown",
                     47:        /*  17 */       "break",
                     48:        /*  18 */       "compat_20_getfsstat",
                     49:        /*  19 */       "compat_43_olseek",
1.115     mycroft    50: #ifdef COMPAT_43
1.193     dsl        51:        /*  20 */       "getpid",
1.115     mycroft    52: #else
1.193     dsl        53:        /*  20 */       "getpid",
1.115     mycroft    54: #endif
1.193     dsl        55:        /*  21 */       "compat_40_mount",
                     56:        /*  22 */       "unmount",
                     57:        /*  23 */       "setuid",
1.115     mycroft    58: #ifdef COMPAT_43
1.193     dsl        59:        /*  24 */       "getuid",
1.115     mycroft    60: #else
1.193     dsl        61:        /*  24 */       "getuid",
1.115     mycroft    62: #endif
1.193     dsl        63:        /*  25 */       "geteuid",
                     64:        /*  26 */       "ptrace",
                     65:        /*  27 */       "recvmsg",
                     66:        /*  28 */       "sendmsg",
                     67:        /*  29 */       "recvfrom",
                     68:        /*  30 */       "accept",
                     69:        /*  31 */       "getpeername",
                     70:        /*  32 */       "getsockname",
                     71:        /*  33 */       "access",
                     72:        /*  34 */       "chflags",
                     73:        /*  35 */       "fchflags",
                     74:        /*  36 */       "sync",
                     75:        /*  37 */       "kill",
                     76:        /*  38 */       "compat_43_stat43",
                     77:        /*  39 */       "getppid",
                     78:        /*  40 */       "compat_43_lstat43",
                     79:        /*  41 */       "dup",
                     80:        /*  42 */       "pipe",
                     81:        /*  43 */       "getegid",
                     82:        /*  44 */       "profil",
                     83:        /*  45 */       "ktrace",
                     84:        /*  46 */       "compat_13_sigaction13",
1.115     mycroft    85: #ifdef COMPAT_43
1.193     dsl        86:        /*  47 */       "getgid",
1.115     mycroft    87: #else
1.193     dsl        88:        /*  47 */       "getgid",
1.115     mycroft    89: #endif
1.193     dsl        90:        /*  48 */       "compat_13_sigprocmask13",
                     91:        /*  49 */       "__getlogin",
                     92:        /*  50 */       "__setlogin",
                     93:        /*  51 */       "acct",
                     94:        /*  52 */       "compat_13_sigpending13",
                     95:        /*  53 */       "compat_13_sigaltstack13",
                     96:        /*  54 */       "ioctl",
                     97:        /*  55 */       "compat_12_oreboot",
                     98:        /*  56 */       "revoke",
                     99:        /*  57 */       "symlink",
                    100:        /*  58 */       "readlink",
                    101:        /*  59 */       "execve",
                    102:        /*  60 */       "umask",
                    103:        /*  61 */       "chroot",
                    104:        /*  62 */       "compat_43_fstat43",
                    105:        /*  63 */       "compat_43_ogetkerninfo",
                    106:        /*  64 */       "compat_43_ogetpagesize",
                    107:        /*  65 */       "compat_12_msync",
                    108:        /*  66 */       "vfork",
                    109:        /*  67 */       "#67 (obsolete vread)",
                    110:        /*  68 */       "#68 (obsolete vwrite)",
                    111:        /*  69 */       "sbrk",
                    112:        /*  70 */       "sstk",
                    113:        /*  71 */       "compat_43_ommap",
                    114:        /*  72 */       "vadvise",
                    115:        /*  73 */       "munmap",
                    116:        /*  74 */       "mprotect",
                    117:        /*  75 */       "madvise",
                    118:        /*  76 */       "#76 (obsolete vhangup)",
                    119:        /*  77 */       "#77 (obsolete vlimit)",
                    120:        /*  78 */       "mincore",
                    121:        /*  79 */       "getgroups",
                    122:        /*  80 */       "setgroups",
                    123:        /*  81 */       "getpgrp",
                    124:        /*  82 */       "setpgid",
                    125:        /*  83 */       "setitimer",
                    126:        /*  84 */       "compat_43_owait",
                    127:        /*  85 */       "compat_12_oswapon",
                    128:        /*  86 */       "getitimer",
                    129:        /*  87 */       "compat_43_ogethostname",
                    130:        /*  88 */       "compat_43_osethostname",
                    131:        /*  89 */       "compat_43_ogetdtablesize",
                    132:        /*  90 */       "dup2",
                    133:        /*  91 */       "#91 (unimplemented getdopt)",
                    134:        /*  92 */       "fcntl",
                    135:        /*  93 */       "select",
                    136:        /*  94 */       "#94 (unimplemented setdopt)",
                    137:        /*  95 */       "fsync",
                    138:        /*  96 */       "setpriority",
                    139:        /*  97 */       "compat_30_socket",
                    140:        /*  98 */       "connect",
                    141:        /*  99 */       "compat_43_oaccept",
                    142:        /* 100 */       "getpriority",
                    143:        /* 101 */       "compat_43_osend",
                    144:        /* 102 */       "compat_43_orecv",
                    145:        /* 103 */       "compat_13_sigreturn13",
                    146:        /* 104 */       "bind",
                    147:        /* 105 */       "setsockopt",
                    148:        /* 106 */       "listen",
                    149:        /* 107 */       "#107 (obsolete vtimes)",
                    150:        /* 108 */       "compat_43_osigvec",
                    151:        /* 109 */       "compat_43_osigblock",
                    152:        /* 110 */       "compat_43_osigsetmask",
                    153:        /* 111 */       "compat_13_sigsuspend13",
                    154:        /* 112 */       "compat_43_osigstack",
                    155:        /* 113 */       "compat_43_orecvmsg",
                    156:        /* 114 */       "compat_43_osendmsg",
                    157:        /* 115 */       "#115 (obsolete vtrace)",
                    158:        /* 116 */       "gettimeofday",
                    159:        /* 117 */       "getrusage",
                    160:        /* 118 */       "getsockopt",
                    161:        /* 119 */       "#119 (obsolete resuba)",
                    162:        /* 120 */       "readv",
                    163:        /* 121 */       "writev",
                    164:        /* 122 */       "settimeofday",
                    165:        /* 123 */       "fchown",
                    166:        /* 124 */       "fchmod",
                    167:        /* 125 */       "compat_43_orecvfrom",
                    168:        /* 126 */       "setreuid",
                    169:        /* 127 */       "setregid",
                    170:        /* 128 */       "rename",
                    171:        /* 129 */       "compat_43_otruncate",
                    172:        /* 130 */       "compat_43_oftruncate",
                    173:        /* 131 */       "flock",
                    174:        /* 132 */       "mkfifo",
                    175:        /* 133 */       "sendto",
                    176:        /* 134 */       "shutdown",
                    177:        /* 135 */       "socketpair",
                    178:        /* 136 */       "mkdir",
                    179:        /* 137 */       "rmdir",
                    180:        /* 138 */       "utimes",
                    181:        /* 139 */       "#139 (obsolete 4.2 sigreturn)",
                    182:        /* 140 */       "adjtime",
                    183:        /* 141 */       "compat_43_ogetpeername",
                    184:        /* 142 */       "compat_43_ogethostid",
                    185:        /* 143 */       "compat_43_osethostid",
                    186:        /* 144 */       "compat_43_ogetrlimit",
                    187:        /* 145 */       "compat_43_osetrlimit",
                    188:        /* 146 */       "compat_43_okillpg",
                    189:        /* 147 */       "setsid",
                    190:        /* 148 */       "quotactl",
                    191:        /* 149 */       "compat_43_oquota",
                    192:        /* 150 */       "compat_43_ogetsockname",
                    193:        /* 151 */       "#151 (unimplemented)",
                    194:        /* 152 */       "#152 (unimplemented)",
                    195:        /* 153 */       "#153 (unimplemented)",
                    196:        /* 154 */       "#154 (unimplemented)",
1.100     christos  197: #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
1.193     dsl       198:        /* 155 */       "nfssvc",
1.1       cgd       199: #else
1.193     dsl       200:        /* 155 */       "#155 (excluded nfssvc)",
1.1       cgd       201: #endif
1.193     dsl       202:        /* 156 */       "compat_43_ogetdirentries",
                    203:        /* 157 */       "compat_20_statfs",
                    204:        /* 158 */       "compat_20_fstatfs",
                    205:        /* 159 */       "#159 (unimplemented)",
                    206:        /* 160 */       "#160 (unimplemented)",
                    207:        /* 161 */       "compat_30_getfh",
                    208:        /* 162 */       "compat_09_ogetdomainname",
                    209:        /* 163 */       "compat_09_osetdomainname",
                    210:        /* 164 */       "compat_09_ouname",
                    211:        /* 165 */       "sysarch",
                    212:        /* 166 */       "#166 (unimplemented)",
                    213:        /* 167 */       "#167 (unimplemented)",
                    214:        /* 168 */       "#168 (unimplemented)",
1.124     eeh       215: #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64)
1.193     dsl       216:        /* 169 */       "compat_10_osemsys",
1.11      cgd       217: #else
1.193     dsl       218:        /* 169 */       "#169 (excluded 1.0 semsys)",
1.11      cgd       219: #endif
1.124     eeh       220: #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64)
1.193     dsl       221:        /* 170 */       "compat_10_omsgsys",
1.11      cgd       222: #else
1.193     dsl       223:        /* 170 */       "#170 (excluded 1.0 msgsys)",
1.11      cgd       224: #endif
1.124     eeh       225: #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64)
1.193     dsl       226:        /* 171 */       "compat_10_oshmsys",
1.1       cgd       227: #else
1.193     dsl       228:        /* 171 */       "#171 (excluded 1.0 shmsys)",
1.1       cgd       229: #endif
1.193     dsl       230:        /* 172 */       "#172 (unimplemented)",
                    231:        /* 173 */       "pread",
                    232:        /* 174 */       "pwrite",
                    233:        /* 175 */       "compat_30_ntp_gettime",
1.110     bjh21     234: #if defined(NTP) || !defined(_KERNEL)
1.193     dsl       235:        /* 176 */       "ntp_adjtime",
1.110     bjh21     236: #else
1.193     dsl       237:        /* 176 */       "#176 (excluded ntp_adjtime)",
1.110     bjh21     238: #endif
1.193     dsl       239:        /* 177 */       "#177 (unimplemented)",
                    240:        /* 178 */       "#178 (unimplemented)",
                    241:        /* 179 */       "#179 (unimplemented)",
                    242:        /* 180 */       "#180 (unimplemented)",
                    243:        /* 181 */       "setgid",
                    244:        /* 182 */       "setegid",
                    245:        /* 183 */       "seteuid",
1.100     christos  246: #if defined(LFS) || !defined(_KERNEL)
1.193     dsl       247:        /* 184 */       "lfs_bmapv",
                    248:        /* 185 */       "lfs_markv",
                    249:        /* 186 */       "lfs_segclean",
                    250:        /* 187 */       "lfs_segwait",
                    251: #else
                    252:        /* 184 */       "#184 (excluded lfs_bmapv)",
                    253:        /* 185 */       "#185 (excluded lfs_markv)",
                    254:        /* 186 */       "#186 (excluded lfs_segclean)",
                    255:        /* 187 */       "#187 (excluded lfs_segwait)",
                    256: #endif
                    257:        /* 188 */       "compat_12_stat12",
                    258:        /* 189 */       "compat_12_fstat12",
                    259:        /* 190 */       "compat_12_lstat12",
                    260:        /* 191 */       "pathconf",
                    261:        /* 192 */       "fpathconf",
                    262:        /* 193 */       "#193 (unimplemented)",
                    263:        /* 194 */       "getrlimit",
                    264:        /* 195 */       "setrlimit",
                    265:        /* 196 */       "compat_12_getdirentries",
                    266:        /* 197 */       "mmap",
                    267:        /* 198 */       "__syscall",
                    268:        /* 199 */       "lseek",
                    269:        /* 200 */       "truncate",
                    270:        /* 201 */       "ftruncate",
                    271:        /* 202 */       "__sysctl",
                    272:        /* 203 */       "mlock",
                    273:        /* 204 */       "munlock",
                    274:        /* 205 */       "undelete",
                    275:        /* 206 */       "futimes",
                    276:        /* 207 */       "getpgid",
                    277:        /* 208 */       "reboot",
                    278:        /* 209 */       "poll",
1.100     christos  279: #if defined(LKM) || !defined(_KERNEL)
1.193     dsl       280:        /* 210 */       "lkmnosys",
                    281:        /* 211 */       "lkmnosys",
                    282:        /* 212 */       "lkmnosys",
                    283:        /* 213 */       "lkmnosys",
                    284:        /* 214 */       "lkmnosys",
                    285:        /* 215 */       "lkmnosys",
                    286:        /* 216 */       "lkmnosys",
                    287:        /* 217 */       "lkmnosys",
                    288:        /* 218 */       "lkmnosys",
                    289:        /* 219 */       "lkmnosys",
1.13      cgd       290: #else  /* !LKM */
1.193     dsl       291:        /* 210 */       "#210 (excluded lkmnosys)",
                    292:        /* 211 */       "#211 (excluded lkmnosys)",
                    293:        /* 212 */       "#212 (excluded lkmnosys)",
                    294:        /* 213 */       "#213 (excluded lkmnosys)",
                    295:        /* 214 */       "#214 (excluded lkmnosys)",
                    296:        /* 215 */       "#215 (excluded lkmnosys)",
                    297:        /* 216 */       "#216 (excluded lkmnosys)",
                    298:        /* 217 */       "#217 (excluded lkmnosys)",
                    299:        /* 218 */       "#218 (excluded lkmnosys)",
                    300:        /* 219 */       "#219 (excluded lkmnosys)",
1.9       brezak    301: #endif /* !LKM */
1.100     christos  302: #if defined(SYSVSEM) || !defined(_KERNEL)
1.193     dsl       303:        /* 220 */       "compat_14___semctl",
                    304:        /* 221 */       "semget",
                    305:        /* 222 */       "semop",
                    306:        /* 223 */       "semconfig",
                    307: #else
                    308:        /* 220 */       "#220 (excluded compat_14_semctl)",
                    309:        /* 221 */       "#221 (excluded semget)",
                    310:        /* 222 */       "#222 (excluded semop)",
                    311:        /* 223 */       "#223 (excluded semconfig)",
1.25      cgd       312: #endif
1.100     christos  313: #if defined(SYSVMSG) || !defined(_KERNEL)
1.193     dsl       314:        /* 224 */       "compat_14_msgctl",
                    315:        /* 225 */       "msgget",
                    316:        /* 226 */       "msgsnd",
                    317:        /* 227 */       "msgrcv",
                    318: #else
                    319:        /* 224 */       "#224 (excluded compat_14_msgctl)",
                    320:        /* 225 */       "#225 (excluded msgget)",
                    321:        /* 226 */       "#226 (excluded msgsnd)",
                    322:        /* 227 */       "#227 (excluded msgrcv)",
1.25      cgd       323: #endif
1.100     christos  324: #if defined(SYSVSHM) || !defined(_KERNEL)
1.193     dsl       325:        /* 228 */       "shmat",
                    326:        /* 229 */       "compat_14_shmctl",
                    327:        /* 230 */       "shmdt",
                    328:        /* 231 */       "shmget",
                    329: #else
                    330:        /* 228 */       "#228 (excluded shmat)",
                    331:        /* 229 */       "#229 (excluded compat_14_shmctl)",
                    332:        /* 230 */       "#230 (excluded shmdt)",
                    333:        /* 231 */       "#231 (excluded shmget)",
                    334: #endif
                    335:        /* 232 */       "clock_gettime",
                    336:        /* 233 */       "clock_settime",
                    337:        /* 234 */       "clock_getres",
                    338:        /* 235 */       "timer_create",
                    339:        /* 236 */       "timer_delete",
                    340:        /* 237 */       "timer_settime",
                    341:        /* 238 */       "timer_gettime",
                    342:        /* 239 */       "timer_getoverrun",
                    343:        /* 240 */       "nanosleep",
                    344:        /* 241 */       "fdatasync",
                    345:        /* 242 */       "mlockall",
                    346:        /* 243 */       "munlockall",
                    347:        /* 244 */       "__sigtimedwait",
                    348:        /* 245 */       "#245 (unimplemented sys_sigqueue)",
1.201     ad        349:        /* 246 */       "modctl",
1.145     christos  350: #if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
1.193     dsl       351:        /* 247 */       "_ksem_init",
                    352:        /* 248 */       "_ksem_open",
                    353:        /* 249 */       "_ksem_unlink",
                    354:        /* 250 */       "_ksem_close",
                    355:        /* 251 */       "_ksem_post",
                    356:        /* 252 */       "_ksem_wait",
                    357:        /* 253 */       "_ksem_trywait",
                    358:        /* 254 */       "_ksem_getvalue",
                    359:        /* 255 */       "_ksem_destroy",
                    360:        /* 256 */       "#256 (unimplemented sys__ksem_timedwait)",
                    361: #else
                    362:        /* 247 */       "#247 (excluded sys__ksem_init)",
                    363:        /* 248 */       "#248 (excluded sys__ksem_open)",
                    364:        /* 249 */       "#249 (excluded sys__ksem_unlink)",
                    365:        /* 250 */       "#250 (excluded sys__ksem_close)",
                    366:        /* 251 */       "#251 (excluded sys__ksem_post)",
                    367:        /* 252 */       "#252 (excluded sys__ksem_wait)",
                    368:        /* 253 */       "#253 (excluded sys__ksem_trywait)",
                    369:        /* 254 */       "#254 (excluded sys__ksem_getvalue)",
                    370:        /* 255 */       "#255 (excluded sys__ksem_destroy)",
                    371:        /* 256 */       "#256 (unimplemented sys__ksem_timedwait)",
                    372: #endif
                    373:        /* 257 */       "mq_open",
                    374:        /* 258 */       "mq_close",
                    375:        /* 259 */       "mq_unlink",
                    376:        /* 260 */       "mq_getattr",
                    377:        /* 261 */       "mq_setattr",
                    378:        /* 262 */       "mq_notify",
                    379:        /* 263 */       "mq_send",
                    380:        /* 264 */       "mq_receive",
                    381:        /* 265 */       "mq_timedsend",
                    382:        /* 266 */       "mq_timedreceive",
                    383:        /* 267 */       "#267 (unimplemented)",
                    384:        /* 268 */       "#268 (unimplemented)",
                    385:        /* 269 */       "#269 (unimplemented)",
                    386:        /* 270 */       "__posix_rename",
                    387:        /* 271 */       "swapctl",
                    388:        /* 272 */       "compat_30_getdents",
                    389:        /* 273 */       "minherit",
                    390:        /* 274 */       "lchmod",
                    391:        /* 275 */       "lchown",
                    392:        /* 276 */       "lutimes",
                    393:        /* 277 */       "__msync13",
                    394:        /* 278 */       "compat_30___stat13",
                    395:        /* 279 */       "compat_30___fstat13",
                    396:        /* 280 */       "compat_30___lstat13",
                    397:        /* 281 */       "__sigaltstack14",
                    398:        /* 282 */       "__vfork14",
                    399:        /* 283 */       "__posix_chown",
                    400:        /* 284 */       "__posix_fchown",
                    401:        /* 285 */       "__posix_lchown",
                    402:        /* 286 */       "getsid",
                    403:        /* 287 */       "__clone",
                    404:        /* 288 */       "fktrace",
                    405:        /* 289 */       "preadv",
                    406:        /* 290 */       "pwritev",
                    407:        /* 291 */       "compat_16___sigaction14",
                    408:        /* 292 */       "__sigpending14",
                    409:        /* 293 */       "__sigprocmask14",
                    410:        /* 294 */       "__sigsuspend14",
                    411:        /* 295 */       "compat_16___sigreturn14",
                    412:        /* 296 */       "__getcwd",
                    413:        /* 297 */       "fchroot",
                    414:        /* 298 */       "compat_30_fhopen",
                    415:        /* 299 */       "compat_30_fhstat",
                    416:        /* 300 */       "compat_20_fhstatfs",
1.105     thorpej   417: #if defined(SYSVSEM) || !defined(_KERNEL)
1.193     dsl       418:        /* 301 */       "____semctl13",
1.105     thorpej   419: #else
1.193     dsl       420:        /* 301 */       "#301 (excluded ____semctl13)",
1.105     thorpej   421: #endif
                    422: #if defined(SYSVMSG) || !defined(_KERNEL)
1.193     dsl       423:        /* 302 */       "__msgctl13",
1.105     thorpej   424: #else
1.193     dsl       425:        /* 302 */       "#302 (excluded __msgctl13)",
1.105     thorpej   426: #endif
                    427: #if defined(SYSVSHM) || !defined(_KERNEL)
1.193     dsl       428:        /* 303 */       "__shmctl13",
1.105     thorpej   429: #else
1.193     dsl       430:        /* 303 */       "#303 (excluded __shmctl13)",
1.105     thorpej   431: #endif
1.193     dsl       432:        /* 304 */       "lchflags",
                    433:        /* 305 */       "issetugid",
                    434:        /* 306 */       "utrace",
                    435:        /* 307 */       "getcontext",
                    436:        /* 308 */       "setcontext",
                    437:        /* 309 */       "_lwp_create",
                    438:        /* 310 */       "_lwp_exit",
                    439:        /* 311 */       "_lwp_self",
                    440:        /* 312 */       "_lwp_wait",
                    441:        /* 313 */       "_lwp_suspend",
                    442:        /* 314 */       "_lwp_continue",
                    443:        /* 315 */       "_lwp_wakeup",
                    444:        /* 316 */       "_lwp_getprivate",
                    445:        /* 317 */       "_lwp_setprivate",
                    446:        /* 318 */       "_lwp_kill",
                    447:        /* 319 */       "_lwp_detach",
                    448:        /* 320 */       "_lwp_park",
                    449:        /* 321 */       "_lwp_unpark",
                    450:        /* 322 */       "_lwp_unpark_all",
                    451:        /* 323 */       "_lwp_setname",
                    452:        /* 324 */       "_lwp_getname",
1.194     ad        453:        /* 325 */       "_lwp_ctl",
1.193     dsl       454:        /* 326 */       "#326 (unimplemented)",
                    455:        /* 327 */       "#327 (unimplemented)",
                    456:        /* 328 */       "#328 (unimplemented)",
                    457:        /* 329 */       "#329 (unimplemented)",
                    458:        /* 330 */       "sa_register",
                    459:        /* 331 */       "sa_stacks",
                    460:        /* 332 */       "sa_enable",
                    461:        /* 333 */       "sa_setconcurrency",
                    462:        /* 334 */       "sa_yield",
                    463:        /* 335 */       "sa_preempt",
                    464:        /* 336 */       "sa_unblockyield",
                    465:        /* 337 */       "#337 (unimplemented)",
                    466:        /* 338 */       "#338 (unimplemented)",
                    467:        /* 339 */       "#339 (unimplemented)",
                    468:        /* 340 */       "__sigaction_sigtramp",
                    469:        /* 341 */       "pmc_get_info",
                    470:        /* 342 */       "pmc_control",
                    471:        /* 343 */       "rasctl",
                    472:        /* 344 */       "kqueue",
                    473:        /* 345 */       "kevent",
1.200     rmind     474:        /* 346 */       "_sched_setparam",
                    475:        /* 347 */       "_sched_getparam",
                    476:        /* 348 */       "_sched_setaffinity",
                    477:        /* 349 */       "_sched_getaffinity",
1.193     dsl       478:        /* 350 */       "sched_yield",
1.200     rmind     479:        /* 351 */       "#351 (unimplemented)",
                    480:        /* 352 */       "#352 (unimplemented)",
                    481:        /* 353 */       "#353 (unimplemented)",
1.193     dsl       482:        /* 354 */       "fsync_range",
                    483:        /* 355 */       "uuidgen",
                    484:        /* 356 */       "getvfsstat",
                    485:        /* 357 */       "statvfs1",
                    486:        /* 358 */       "fstatvfs1",
                    487:        /* 359 */       "compat_30_fhstatvfs1",
                    488:        /* 360 */       "extattrctl",
                    489:        /* 361 */       "extattr_set_file",
                    490:        /* 362 */       "extattr_get_file",
                    491:        /* 363 */       "extattr_delete_file",
                    492:        /* 364 */       "extattr_set_fd",
                    493:        /* 365 */       "extattr_get_fd",
                    494:        /* 366 */       "extattr_delete_fd",
                    495:        /* 367 */       "extattr_set_link",
                    496:        /* 368 */       "extattr_get_link",
                    497:        /* 369 */       "extattr_delete_link",
                    498:        /* 370 */       "extattr_list_fd",
                    499:        /* 371 */       "extattr_list_file",
                    500:        /* 372 */       "extattr_list_link",
                    501:        /* 373 */       "pselect",
                    502:        /* 374 */       "pollts",
                    503:        /* 375 */       "setxattr",
                    504:        /* 376 */       "lsetxattr",
                    505:        /* 377 */       "fsetxattr",
                    506:        /* 378 */       "getxattr",
                    507:        /* 379 */       "lgetxattr",
                    508:        /* 380 */       "fgetxattr",
                    509:        /* 381 */       "listxattr",
                    510:        /* 382 */       "llistxattr",
                    511:        /* 383 */       "flistxattr",
                    512:        /* 384 */       "removexattr",
                    513:        /* 385 */       "lremovexattr",
                    514:        /* 386 */       "fremovexattr",
                    515:        /* 387 */       "__stat30",
                    516:        /* 388 */       "__fstat30",
                    517:        /* 389 */       "__lstat30",
                    518:        /* 390 */       "__getdents30",
1.207     martin    519:        /* 391 */       "#391 (ignored old posix_fadvise)",
1.193     dsl       520:        /* 392 */       "compat_30___fhstat30",
                    521:        /* 393 */       "__ntp_gettime30",
                    522:        /* 394 */       "__socket30",
                    523:        /* 395 */       "__getfh30",
                    524:        /* 396 */       "__fhopen40",
                    525:        /* 397 */       "__fhstatvfs140",
                    526:        /* 398 */       "__fhstat40",
                    527:        /* 399 */       "aio_cancel",
                    528:        /* 400 */       "aio_error",
                    529:        /* 401 */       "aio_fsync",
                    530:        /* 402 */       "aio_read",
                    531:        /* 403 */       "aio_return",
                    532:        /* 404 */       "aio_suspend",
                    533:        /* 405 */       "aio_write",
                    534:        /* 406 */       "lio_listio",
                    535:        /* 407 */       "#407 (unimplemented)",
                    536:        /* 408 */       "#408 (unimplemented)",
                    537:        /* 409 */       "#409 (unimplemented)",
                    538:        /* 410 */       "__mount50",
                    539:        /* 411 */       "mremap",
1.200     rmind     540:        /* 412 */       "pset_create",
                    541:        /* 413 */       "pset_destroy",
                    542:        /* 414 */       "pset_assign",
                    543:        /* 415 */       "_pset_bind",
1.203     martin    544:        /* 416 */       "__posix_fadvise50",
1.1       cgd       545: };

CVSweb <webmaster@jp.NetBSD.org>