1 1.30 maxv /* $NetBSD: systrace_args.c,v 1.56 2024/10/09 16:29:11 christos Exp $ */ 2 1.1 christos 3 1.1 christos /* 4 1.45 rillig * System call argument to DTrace register array conversion. 5 1.1 christos * 6 1.1 christos * DO NOT EDIT-- this file is automatically generated. 7 1.1 christos * This file is part of the DTrace syscall provider. 8 1.1 christos */ 9 1.1 christos 10 1.1 christos static void 11 1.1 christos systrace_args(register_t sysnum, const void *params, uintptr_t *uarg, size_t *n_args) 12 1.1 christos { 13 1.1 christos intptr_t *iarg = (intptr_t *)uarg; 14 1.1 christos switch (sysnum) { 15 1.1 christos /* sys_syscall */ 16 1.1 christos case 0: { 17 1.23 christos const struct sys_syscall_args *p = params; 18 1.1 christos iarg[0] = SCARG(p, code); /* int */ 19 1.47 christos iarg[1] = SCARG(p, args[0]); /* register_t */ 20 1.1 christos *n_args = 2; 21 1.1 christos break; 22 1.1 christos } 23 1.1 christos /* sys_exit */ 24 1.1 christos case 1: { 25 1.23 christos const struct sys_exit_args *p = params; 26 1.1 christos iarg[0] = SCARG(p, rval); /* int */ 27 1.1 christos *n_args = 1; 28 1.1 christos break; 29 1.1 christos } 30 1.1 christos /* sys_fork */ 31 1.1 christos case 2: { 32 1.1 christos *n_args = 0; 33 1.1 christos break; 34 1.1 christos } 35 1.1 christos /* sys_read */ 36 1.1 christos case 3: { 37 1.23 christos const struct sys_read_args *p = params; 38 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 39 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */ 40 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */ 41 1.1 christos *n_args = 3; 42 1.1 christos break; 43 1.1 christos } 44 1.1 christos /* sys_write */ 45 1.1 christos case 4: { 46 1.23 christos const struct sys_write_args *p = params; 47 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 48 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */ 49 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */ 50 1.1 christos *n_args = 3; 51 1.1 christos break; 52 1.1 christos } 53 1.1 christos /* sys_open */ 54 1.1 christos case 5: { 55 1.23 christos const struct sys_open_args *p = params; 56 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 57 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 58 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */ 59 1.1 christos *n_args = 3; 60 1.1 christos break; 61 1.1 christos } 62 1.1 christos /* sys_close */ 63 1.1 christos case 6: { 64 1.23 christos const struct sys_close_args *p = params; 65 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 66 1.1 christos *n_args = 1; 67 1.1 christos break; 68 1.1 christos } 69 1.1 christos /* sys_wait4 */ 70 1.1 christos case 7: { 71 1.23 christos const struct compat_50_sys_wait4_args *p = params; 72 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 73 1.1 christos uarg[1] = (intptr_t) SCARG(p, status); /* int * */ 74 1.1 christos iarg[2] = SCARG(p, options); /* int */ 75 1.1 christos uarg[3] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */ 76 1.1 christos *n_args = 4; 77 1.1 christos break; 78 1.1 christos } 79 1.1 christos /* sys_creat */ 80 1.1 christos case 8: { 81 1.23 christos const struct compat_43_sys_creat_args *p = params; 82 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 83 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 84 1.1 christos *n_args = 2; 85 1.1 christos break; 86 1.1 christos } 87 1.1 christos /* sys_link */ 88 1.1 christos case 9: { 89 1.23 christos const struct sys_link_args *p = params; 90 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 91 1.1 christos uarg[1] = (intptr_t) SCARG(p, link); /* const char * */ 92 1.1 christos *n_args = 2; 93 1.1 christos break; 94 1.1 christos } 95 1.1 christos /* sys_unlink */ 96 1.1 christos case 10: { 97 1.23 christos const struct sys_unlink_args *p = params; 98 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 99 1.1 christos *n_args = 1; 100 1.1 christos break; 101 1.1 christos } 102 1.1 christos /* sys_chdir */ 103 1.1 christos case 12: { 104 1.23 christos const struct sys_chdir_args *p = params; 105 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 106 1.1 christos *n_args = 1; 107 1.1 christos break; 108 1.1 christos } 109 1.1 christos /* sys_fchdir */ 110 1.1 christos case 13: { 111 1.23 christos const struct sys_fchdir_args *p = params; 112 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 113 1.1 christos *n_args = 1; 114 1.1 christos break; 115 1.1 christos } 116 1.1 christos /* sys_mknod */ 117 1.1 christos case 14: { 118 1.23 christos const struct compat_50_sys_mknod_args *p = params; 119 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 120 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 121 1.1 christos uarg[2] = SCARG(p, dev); /* uint32_t */ 122 1.1 christos *n_args = 3; 123 1.1 christos break; 124 1.1 christos } 125 1.1 christos /* sys_chmod */ 126 1.1 christos case 15: { 127 1.23 christos const struct sys_chmod_args *p = params; 128 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 129 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 130 1.1 christos *n_args = 2; 131 1.1 christos break; 132 1.1 christos } 133 1.1 christos /* sys_chown */ 134 1.1 christos case 16: { 135 1.23 christos const struct sys_chown_args *p = params; 136 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 137 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */ 138 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */ 139 1.1 christos *n_args = 3; 140 1.1 christos break; 141 1.1 christos } 142 1.1 christos /* sys_obreak */ 143 1.1 christos case 17: { 144 1.23 christos const struct sys_obreak_args *p = params; 145 1.1 christos uarg[0] = (intptr_t) SCARG(p, nsize); /* char * */ 146 1.1 christos *n_args = 1; 147 1.1 christos break; 148 1.1 christos } 149 1.1 christos /* sys_getfsstat */ 150 1.1 christos case 18: { 151 1.23 christos const struct compat_20_sys_getfsstat_args *p = params; 152 1.1 christos uarg[0] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */ 153 1.1 christos iarg[1] = SCARG(p, bufsize); /* long */ 154 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 155 1.1 christos *n_args = 3; 156 1.1 christos break; 157 1.1 christos } 158 1.1 christos /* sys_lseek */ 159 1.1 christos case 19: { 160 1.23 christos const struct compat_43_sys_lseek_args *p = params; 161 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 162 1.1 christos iarg[1] = SCARG(p, offset); /* long */ 163 1.1 christos iarg[2] = SCARG(p, whence); /* int */ 164 1.1 christos *n_args = 3; 165 1.1 christos break; 166 1.1 christos } 167 1.1 christos /* sys_getpid_with_ppid */ 168 1.1 christos case 20: { 169 1.1 christos *n_args = 0; 170 1.1 christos break; 171 1.1 christos } 172 1.1 christos /* sys_mount */ 173 1.1 christos case 21: { 174 1.23 christos const struct compat_40_sys_mount_args *p = params; 175 1.1 christos uarg[0] = (intptr_t) SCARG(p, type); /* const char * */ 176 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 177 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 178 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */ 179 1.1 christos *n_args = 4; 180 1.1 christos break; 181 1.1 christos } 182 1.1 christos /* sys_unmount */ 183 1.1 christos case 22: { 184 1.23 christos const struct sys_unmount_args *p = params; 185 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 186 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 187 1.1 christos *n_args = 2; 188 1.1 christos break; 189 1.1 christos } 190 1.1 christos /* sys_setuid */ 191 1.1 christos case 23: { 192 1.23 christos const struct sys_setuid_args *p = params; 193 1.1 christos uarg[0] = SCARG(p, uid); /* uid_t */ 194 1.1 christos *n_args = 1; 195 1.1 christos break; 196 1.1 christos } 197 1.1 christos /* sys_getuid_with_euid */ 198 1.1 christos case 24: { 199 1.1 christos *n_args = 0; 200 1.1 christos break; 201 1.1 christos } 202 1.1 christos /* sys_geteuid */ 203 1.1 christos case 25: { 204 1.1 christos *n_args = 0; 205 1.1 christos break; 206 1.1 christos } 207 1.1 christos /* sys_ptrace */ 208 1.1 christos case 26: { 209 1.23 christos const struct sys_ptrace_args *p = params; 210 1.1 christos iarg[0] = SCARG(p, req); /* int */ 211 1.1 christos iarg[1] = SCARG(p, pid); /* pid_t */ 212 1.1 christos uarg[2] = (intptr_t) SCARG(p, addr); /* void * */ 213 1.1 christos iarg[3] = SCARG(p, data); /* int */ 214 1.1 christos *n_args = 4; 215 1.1 christos break; 216 1.1 christos } 217 1.1 christos /* sys_recvmsg */ 218 1.1 christos case 27: { 219 1.23 christos const struct sys_recvmsg_args *p = params; 220 1.1 christos iarg[0] = SCARG(p, s); /* int */ 221 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* struct msghdr * */ 222 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 223 1.1 christos *n_args = 3; 224 1.1 christos break; 225 1.1 christos } 226 1.1 christos /* sys_sendmsg */ 227 1.1 christos case 28: { 228 1.23 christos const struct sys_sendmsg_args *p = params; 229 1.1 christos iarg[0] = SCARG(p, s); /* int */ 230 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* const struct msghdr * */ 231 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 232 1.1 christos *n_args = 3; 233 1.1 christos break; 234 1.1 christos } 235 1.1 christos /* sys_recvfrom */ 236 1.1 christos case 29: { 237 1.23 christos const struct sys_recvfrom_args *p = params; 238 1.1 christos iarg[0] = SCARG(p, s); /* int */ 239 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */ 240 1.1 christos uarg[2] = SCARG(p, len); /* size_t */ 241 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 242 1.1 christos uarg[4] = (intptr_t) SCARG(p, from); /* struct sockaddr * */ 243 1.1 christos uarg[5] = (intptr_t) SCARG(p, fromlenaddr); /* socklen_t * */ 244 1.1 christos *n_args = 6; 245 1.1 christos break; 246 1.1 christos } 247 1.1 christos /* sys_accept */ 248 1.1 christos case 30: { 249 1.23 christos const struct sys_accept_args *p = params; 250 1.1 christos iarg[0] = SCARG(p, s); /* int */ 251 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* struct sockaddr * */ 252 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */ 253 1.1 christos *n_args = 3; 254 1.1 christos break; 255 1.1 christos } 256 1.1 christos /* sys_getpeername */ 257 1.1 christos case 31: { 258 1.23 christos const struct sys_getpeername_args *p = params; 259 1.1 christos iarg[0] = SCARG(p, fdes); /* int */ 260 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* struct sockaddr * */ 261 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */ 262 1.1 christos *n_args = 3; 263 1.1 christos break; 264 1.1 christos } 265 1.1 christos /* sys_getsockname */ 266 1.1 christos case 32: { 267 1.23 christos const struct sys_getsockname_args *p = params; 268 1.1 christos iarg[0] = SCARG(p, fdes); /* int */ 269 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* struct sockaddr * */ 270 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */ 271 1.1 christos *n_args = 3; 272 1.1 christos break; 273 1.1 christos } 274 1.1 christos /* sys_access */ 275 1.1 christos case 33: { 276 1.23 christos const struct sys_access_args *p = params; 277 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 278 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 279 1.1 christos *n_args = 2; 280 1.1 christos break; 281 1.1 christos } 282 1.1 christos /* sys_chflags */ 283 1.1 christos case 34: { 284 1.23 christos const struct sys_chflags_args *p = params; 285 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 286 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */ 287 1.1 christos *n_args = 2; 288 1.1 christos break; 289 1.1 christos } 290 1.1 christos /* sys_fchflags */ 291 1.1 christos case 35: { 292 1.23 christos const struct sys_fchflags_args *p = params; 293 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 294 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */ 295 1.1 christos *n_args = 2; 296 1.1 christos break; 297 1.1 christos } 298 1.1 christos /* sys_sync */ 299 1.1 christos case 36: { 300 1.1 christos *n_args = 0; 301 1.1 christos break; 302 1.1 christos } 303 1.1 christos /* sys_kill */ 304 1.1 christos case 37: { 305 1.23 christos const struct sys_kill_args *p = params; 306 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 307 1.1 christos iarg[1] = SCARG(p, signum); /* int */ 308 1.1 christos *n_args = 2; 309 1.1 christos break; 310 1.1 christos } 311 1.1 christos /* sys_stat */ 312 1.1 christos case 38: { 313 1.23 christos const struct compat_43_sys_stat_args *p = params; 314 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 315 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat43 * */ 316 1.1 christos *n_args = 2; 317 1.1 christos break; 318 1.1 christos } 319 1.1 christos /* sys_getppid */ 320 1.1 christos case 39: { 321 1.1 christos *n_args = 0; 322 1.1 christos break; 323 1.1 christos } 324 1.1 christos /* sys_lstat */ 325 1.1 christos case 40: { 326 1.23 christos const struct compat_43_sys_lstat_args *p = params; 327 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 328 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat43 * */ 329 1.1 christos *n_args = 2; 330 1.1 christos break; 331 1.1 christos } 332 1.1 christos /* sys_dup */ 333 1.1 christos case 41: { 334 1.23 christos const struct sys_dup_args *p = params; 335 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 336 1.1 christos *n_args = 1; 337 1.1 christos break; 338 1.1 christos } 339 1.1 christos /* sys_pipe */ 340 1.1 christos case 42: { 341 1.1 christos *n_args = 0; 342 1.1 christos break; 343 1.1 christos } 344 1.1 christos /* sys_getegid */ 345 1.1 christos case 43: { 346 1.1 christos *n_args = 0; 347 1.1 christos break; 348 1.1 christos } 349 1.1 christos /* sys_profil */ 350 1.1 christos case 44: { 351 1.23 christos const struct sys_profil_args *p = params; 352 1.1 christos uarg[0] = (intptr_t) SCARG(p, samples); /* char * */ 353 1.1 christos uarg[1] = SCARG(p, size); /* size_t */ 354 1.1 christos uarg[2] = SCARG(p, offset); /* u_long */ 355 1.1 christos uarg[3] = SCARG(p, scale); /* u_int */ 356 1.1 christos *n_args = 4; 357 1.1 christos break; 358 1.1 christos } 359 1.1 christos /* sys_ktrace */ 360 1.1 christos case 45: { 361 1.23 christos const struct sys_ktrace_args *p = params; 362 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */ 363 1.1 christos iarg[1] = SCARG(p, ops); /* int */ 364 1.1 christos iarg[2] = SCARG(p, facs); /* int */ 365 1.1 christos iarg[3] = SCARG(p, pid); /* pid_t */ 366 1.1 christos *n_args = 4; 367 1.1 christos break; 368 1.1 christos } 369 1.1 christos /* sys_sigaction */ 370 1.1 christos case 46: { 371 1.23 christos const struct compat_13_sys_sigaction_args *p = params; 372 1.1 christos iarg[0] = SCARG(p, signum); /* int */ 373 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction13 * */ 374 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction13 * */ 375 1.1 christos *n_args = 3; 376 1.1 christos break; 377 1.1 christos } 378 1.1 christos /* sys_getgid_with_egid */ 379 1.1 christos case 47: { 380 1.1 christos *n_args = 0; 381 1.1 christos break; 382 1.1 christos } 383 1.1 christos /* sys_sigprocmask */ 384 1.1 christos case 48: { 385 1.23 christos const struct compat_13_sys_sigprocmask_args *p = params; 386 1.1 christos iarg[0] = SCARG(p, how); /* int */ 387 1.1 christos iarg[1] = SCARG(p, mask); /* int */ 388 1.1 christos *n_args = 2; 389 1.1 christos break; 390 1.1 christos } 391 1.1 christos /* sys___getlogin */ 392 1.1 christos case 49: { 393 1.23 christos const struct sys___getlogin_args *p = params; 394 1.1 christos uarg[0] = (intptr_t) SCARG(p, namebuf); /* char * */ 395 1.1 christos uarg[1] = SCARG(p, namelen); /* size_t */ 396 1.1 christos *n_args = 2; 397 1.1 christos break; 398 1.1 christos } 399 1.1 christos /* sys___setlogin */ 400 1.1 christos case 50: { 401 1.23 christos const struct sys___setlogin_args *p = params; 402 1.1 christos uarg[0] = (intptr_t) SCARG(p, namebuf); /* const char * */ 403 1.1 christos *n_args = 1; 404 1.1 christos break; 405 1.1 christos } 406 1.1 christos /* sys_acct */ 407 1.1 christos case 51: { 408 1.23 christos const struct sys_acct_args *p = params; 409 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 410 1.1 christos *n_args = 1; 411 1.1 christos break; 412 1.1 christos } 413 1.1 christos /* sys_sigpending */ 414 1.1 christos case 52: { 415 1.1 christos *n_args = 0; 416 1.1 christos break; 417 1.1 christos } 418 1.1 christos /* sys_sigaltstack */ 419 1.1 christos case 53: { 420 1.23 christos const struct compat_13_sys_sigaltstack_args *p = params; 421 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss); /* const struct sigaltstack13 * */ 422 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigaltstack13 * */ 423 1.1 christos *n_args = 2; 424 1.1 christos break; 425 1.1 christos } 426 1.1 christos /* sys_ioctl */ 427 1.1 christos case 54: { 428 1.23 christos const struct sys_ioctl_args *p = params; 429 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 430 1.1 christos uarg[1] = SCARG(p, com); /* u_long */ 431 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */ 432 1.1 christos *n_args = 3; 433 1.1 christos break; 434 1.1 christos } 435 1.1 christos /* sys_reboot */ 436 1.1 christos case 55: { 437 1.23 christos const struct compat_12_sys_reboot_args *p = params; 438 1.1 christos iarg[0] = SCARG(p, opt); /* int */ 439 1.1 christos *n_args = 1; 440 1.1 christos break; 441 1.1 christos } 442 1.1 christos /* sys_revoke */ 443 1.1 christos case 56: { 444 1.23 christos const struct sys_revoke_args *p = params; 445 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 446 1.1 christos *n_args = 1; 447 1.1 christos break; 448 1.1 christos } 449 1.1 christos /* sys_symlink */ 450 1.1 christos case 57: { 451 1.23 christos const struct sys_symlink_args *p = params; 452 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 453 1.1 christos uarg[1] = (intptr_t) SCARG(p, link); /* const char * */ 454 1.1 christos *n_args = 2; 455 1.1 christos break; 456 1.1 christos } 457 1.1 christos /* sys_readlink */ 458 1.1 christos case 58: { 459 1.23 christos const struct sys_readlink_args *p = params; 460 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 461 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */ 462 1.1 christos uarg[2] = SCARG(p, count); /* size_t */ 463 1.1 christos *n_args = 3; 464 1.1 christos break; 465 1.1 christos } 466 1.1 christos /* sys_execve */ 467 1.1 christos case 59: { 468 1.23 christos const struct sys_execve_args *p = params; 469 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 470 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp); /* char *const * */ 471 1.1 christos uarg[2] = (intptr_t) SCARG(p, envp); /* char *const * */ 472 1.1 christos *n_args = 3; 473 1.1 christos break; 474 1.1 christos } 475 1.1 christos /* sys_umask */ 476 1.1 christos case 60: { 477 1.23 christos const struct sys_umask_args *p = params; 478 1.1 christos iarg[0] = SCARG(p, newmask); /* mode_t */ 479 1.1 christos *n_args = 1; 480 1.1 christos break; 481 1.1 christos } 482 1.1 christos /* sys_chroot */ 483 1.1 christos case 61: { 484 1.23 christos const struct sys_chroot_args *p = params; 485 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 486 1.1 christos *n_args = 1; 487 1.1 christos break; 488 1.1 christos } 489 1.1 christos /* sys_fstat */ 490 1.1 christos case 62: { 491 1.23 christos const struct compat_43_sys_fstat_args *p = params; 492 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 493 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat43 * */ 494 1.1 christos *n_args = 2; 495 1.1 christos break; 496 1.1 christos } 497 1.1 christos /* sys_getkerninfo */ 498 1.1 christos case 63: { 499 1.23 christos const struct compat_43_sys_getkerninfo_args *p = params; 500 1.1 christos iarg[0] = SCARG(p, op); /* int */ 501 1.1 christos uarg[1] = (intptr_t) SCARG(p, where); /* char * */ 502 1.1 christos uarg[2] = (intptr_t) SCARG(p, size); /* int * */ 503 1.1 christos iarg[3] = SCARG(p, arg); /* int */ 504 1.1 christos *n_args = 4; 505 1.1 christos break; 506 1.1 christos } 507 1.1 christos /* sys_getpagesize */ 508 1.1 christos case 64: { 509 1.1 christos *n_args = 0; 510 1.1 christos break; 511 1.1 christos } 512 1.1 christos /* sys_msync */ 513 1.1 christos case 65: { 514 1.23 christos const struct compat_12_sys_msync_args *p = params; 515 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 516 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 517 1.1 christos *n_args = 2; 518 1.1 christos break; 519 1.1 christos } 520 1.1 christos /* sys_vfork */ 521 1.1 christos case 66: { 522 1.1 christos *n_args = 0; 523 1.1 christos break; 524 1.1 christos } 525 1.1 christos /* sys_mmap */ 526 1.1 christos case 71: { 527 1.23 christos const struct compat_43_sys_mmap_args *p = params; 528 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 529 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 530 1.1 christos iarg[2] = SCARG(p, prot); /* int */ 531 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 532 1.1 christos iarg[4] = SCARG(p, fd); /* int */ 533 1.1 christos iarg[5] = SCARG(p, pos); /* long */ 534 1.1 christos *n_args = 6; 535 1.1 christos break; 536 1.1 christos } 537 1.29 kamil /* sys_ovadvise */ 538 1.29 kamil case 72: { 539 1.29 kamil const struct sys_ovadvise_args *p = params; 540 1.29 kamil iarg[0] = SCARG(p, anom); /* int */ 541 1.29 kamil *n_args = 1; 542 1.29 kamil break; 543 1.29 kamil } 544 1.1 christos /* sys_munmap */ 545 1.1 christos case 73: { 546 1.23 christos const struct sys_munmap_args *p = params; 547 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 548 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 549 1.1 christos *n_args = 2; 550 1.1 christos break; 551 1.1 christos } 552 1.1 christos /* sys_mprotect */ 553 1.1 christos case 74: { 554 1.23 christos const struct sys_mprotect_args *p = params; 555 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 556 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 557 1.1 christos iarg[2] = SCARG(p, prot); /* int */ 558 1.1 christos *n_args = 3; 559 1.1 christos break; 560 1.1 christos } 561 1.1 christos /* sys_madvise */ 562 1.1 christos case 75: { 563 1.23 christos const struct sys_madvise_args *p = params; 564 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 565 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 566 1.1 christos iarg[2] = SCARG(p, behav); /* int */ 567 1.1 christos *n_args = 3; 568 1.1 christos break; 569 1.1 christos } 570 1.1 christos /* sys_mincore */ 571 1.1 christos case 78: { 572 1.23 christos const struct sys_mincore_args *p = params; 573 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 574 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 575 1.1 christos uarg[2] = (intptr_t) SCARG(p, vec); /* char * */ 576 1.1 christos *n_args = 3; 577 1.1 christos break; 578 1.1 christos } 579 1.1 christos /* sys_getgroups */ 580 1.1 christos case 79: { 581 1.23 christos const struct sys_getgroups_args *p = params; 582 1.1 christos iarg[0] = SCARG(p, gidsetsize); /* int */ 583 1.1 christos uarg[1] = (intptr_t) SCARG(p, gidset); /* gid_t * */ 584 1.1 christos *n_args = 2; 585 1.1 christos break; 586 1.1 christos } 587 1.1 christos /* sys_setgroups */ 588 1.1 christos case 80: { 589 1.23 christos const struct sys_setgroups_args *p = params; 590 1.1 christos iarg[0] = SCARG(p, gidsetsize); /* int */ 591 1.1 christos uarg[1] = (intptr_t) SCARG(p, gidset); /* const gid_t * */ 592 1.1 christos *n_args = 2; 593 1.1 christos break; 594 1.1 christos } 595 1.1 christos /* sys_getpgrp */ 596 1.1 christos case 81: { 597 1.1 christos *n_args = 0; 598 1.1 christos break; 599 1.1 christos } 600 1.1 christos /* sys_setpgid */ 601 1.1 christos case 82: { 602 1.23 christos const struct sys_setpgid_args *p = params; 603 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 604 1.1 christos iarg[1] = SCARG(p, pgid); /* pid_t */ 605 1.1 christos *n_args = 2; 606 1.1 christos break; 607 1.1 christos } 608 1.1 christos /* sys_setitimer */ 609 1.1 christos case 83: { 610 1.23 christos const struct compat_50_sys_setitimer_args *p = params; 611 1.1 christos iarg[0] = SCARG(p, which); /* int */ 612 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* const struct itimerval50 * */ 613 1.1 christos uarg[2] = (intptr_t) SCARG(p, oitv); /* struct itimerval50 * */ 614 1.1 christos *n_args = 3; 615 1.1 christos break; 616 1.1 christos } 617 1.1 christos /* sys_wait */ 618 1.1 christos case 84: { 619 1.1 christos *n_args = 0; 620 1.1 christos break; 621 1.1 christos } 622 1.1 christos /* sys_swapon */ 623 1.1 christos case 85: { 624 1.23 christos const struct compat_12_sys_swapon_args *p = params; 625 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */ 626 1.1 christos *n_args = 1; 627 1.1 christos break; 628 1.1 christos } 629 1.1 christos /* sys_getitimer */ 630 1.1 christos case 86: { 631 1.23 christos const struct compat_50_sys_getitimer_args *p = params; 632 1.1 christos iarg[0] = SCARG(p, which); /* int */ 633 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval50 * */ 634 1.1 christos *n_args = 2; 635 1.1 christos break; 636 1.1 christos } 637 1.1 christos /* sys_gethostname */ 638 1.1 christos case 87: { 639 1.23 christos const struct compat_43_sys_gethostname_args *p = params; 640 1.1 christos uarg[0] = (intptr_t) SCARG(p, hostname); /* char * */ 641 1.1 christos uarg[1] = SCARG(p, len); /* u_int */ 642 1.1 christos *n_args = 2; 643 1.1 christos break; 644 1.1 christos } 645 1.1 christos /* sys_sethostname */ 646 1.1 christos case 88: { 647 1.23 christos const struct compat_43_sys_sethostname_args *p = params; 648 1.1 christos uarg[0] = (intptr_t) SCARG(p, hostname); /* char * */ 649 1.1 christos uarg[1] = SCARG(p, len); /* u_int */ 650 1.1 christos *n_args = 2; 651 1.1 christos break; 652 1.1 christos } 653 1.1 christos /* sys_getdtablesize */ 654 1.1 christos case 89: { 655 1.1 christos *n_args = 0; 656 1.1 christos break; 657 1.1 christos } 658 1.1 christos /* sys_dup2 */ 659 1.1 christos case 90: { 660 1.23 christos const struct sys_dup2_args *p = params; 661 1.1 christos iarg[0] = SCARG(p, from); /* int */ 662 1.1 christos iarg[1] = SCARG(p, to); /* int */ 663 1.1 christos *n_args = 2; 664 1.1 christos break; 665 1.1 christos } 666 1.43 riastrad /* sys_getrandom */ 667 1.43 riastrad case 91: { 668 1.43 riastrad const struct sys_getrandom_args *p = params; 669 1.43 riastrad uarg[0] = (intptr_t) SCARG(p, buf); /* void * */ 670 1.43 riastrad uarg[1] = SCARG(p, buflen); /* size_t */ 671 1.43 riastrad uarg[2] = SCARG(p, flags); /* unsigned int */ 672 1.43 riastrad *n_args = 3; 673 1.43 riastrad break; 674 1.43 riastrad } 675 1.1 christos /* sys_fcntl */ 676 1.1 christos case 92: { 677 1.23 christos const struct sys_fcntl_args *p = params; 678 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 679 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 680 1.1 christos uarg[2] = (intptr_t) SCARG(p, arg); /* void * */ 681 1.1 christos *n_args = 3; 682 1.1 christos break; 683 1.1 christos } 684 1.1 christos /* sys_select */ 685 1.1 christos case 93: { 686 1.23 christos const struct compat_50_sys_select_args *p = params; 687 1.1 christos iarg[0] = SCARG(p, nd); /* int */ 688 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */ 689 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */ 690 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */ 691 1.1 christos uarg[4] = (intptr_t) SCARG(p, tv); /* struct timeval50 * */ 692 1.1 christos *n_args = 5; 693 1.1 christos break; 694 1.1 christos } 695 1.1 christos /* sys_fsync */ 696 1.1 christos case 95: { 697 1.23 christos const struct sys_fsync_args *p = params; 698 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 699 1.1 christos *n_args = 1; 700 1.1 christos break; 701 1.1 christos } 702 1.1 christos /* sys_setpriority */ 703 1.1 christos case 96: { 704 1.23 christos const struct sys_setpriority_args *p = params; 705 1.1 christos iarg[0] = SCARG(p, which); /* int */ 706 1.1 christos iarg[1] = SCARG(p, who); /* id_t */ 707 1.1 christos iarg[2] = SCARG(p, prio); /* int */ 708 1.1 christos *n_args = 3; 709 1.1 christos break; 710 1.1 christos } 711 1.1 christos /* sys_socket */ 712 1.1 christos case 97: { 713 1.23 christos const struct compat_30_sys_socket_args *p = params; 714 1.1 christos iarg[0] = SCARG(p, domain); /* int */ 715 1.1 christos iarg[1] = SCARG(p, type); /* int */ 716 1.1 christos iarg[2] = SCARG(p, protocol); /* int */ 717 1.1 christos *n_args = 3; 718 1.1 christos break; 719 1.1 christos } 720 1.1 christos /* sys_connect */ 721 1.1 christos case 98: { 722 1.23 christos const struct sys_connect_args *p = params; 723 1.1 christos iarg[0] = SCARG(p, s); /* int */ 724 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const struct sockaddr * */ 725 1.1 christos iarg[2] = SCARG(p, namelen); /* socklen_t */ 726 1.1 christos *n_args = 3; 727 1.1 christos break; 728 1.1 christos } 729 1.1 christos /* sys_accept */ 730 1.1 christos case 99: { 731 1.23 christos const struct compat_43_sys_accept_args *p = params; 732 1.1 christos iarg[0] = SCARG(p, s); /* int */ 733 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* void * */ 734 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */ 735 1.1 christos *n_args = 3; 736 1.1 christos break; 737 1.1 christos } 738 1.1 christos /* sys_getpriority */ 739 1.1 christos case 100: { 740 1.23 christos const struct sys_getpriority_args *p = params; 741 1.1 christos iarg[0] = SCARG(p, which); /* int */ 742 1.1 christos iarg[1] = SCARG(p, who); /* id_t */ 743 1.1 christos *n_args = 2; 744 1.1 christos break; 745 1.1 christos } 746 1.1 christos /* sys_send */ 747 1.1 christos case 101: { 748 1.23 christos const struct compat_43_sys_send_args *p = params; 749 1.1 christos iarg[0] = SCARG(p, s); /* int */ 750 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */ 751 1.1 christos iarg[2] = SCARG(p, len); /* int */ 752 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 753 1.1 christos *n_args = 4; 754 1.1 christos break; 755 1.1 christos } 756 1.1 christos /* sys_recv */ 757 1.1 christos case 102: { 758 1.23 christos const struct compat_43_sys_recv_args *p = params; 759 1.1 christos iarg[0] = SCARG(p, s); /* int */ 760 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */ 761 1.1 christos iarg[2] = SCARG(p, len); /* int */ 762 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 763 1.1 christos *n_args = 4; 764 1.1 christos break; 765 1.1 christos } 766 1.1 christos /* sys_sigreturn */ 767 1.1 christos case 103: { 768 1.23 christos const struct compat_13_sys_sigreturn_args *p = params; 769 1.1 christos uarg[0] = (intptr_t) SCARG(p, sigcntxp); /* struct sigcontext13 * */ 770 1.1 christos *n_args = 1; 771 1.1 christos break; 772 1.1 christos } 773 1.1 christos /* sys_bind */ 774 1.1 christos case 104: { 775 1.23 christos const struct sys_bind_args *p = params; 776 1.1 christos iarg[0] = SCARG(p, s); /* int */ 777 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const struct sockaddr * */ 778 1.1 christos iarg[2] = SCARG(p, namelen); /* socklen_t */ 779 1.1 christos *n_args = 3; 780 1.1 christos break; 781 1.1 christos } 782 1.1 christos /* sys_setsockopt */ 783 1.1 christos case 105: { 784 1.23 christos const struct sys_setsockopt_args *p = params; 785 1.1 christos iarg[0] = SCARG(p, s); /* int */ 786 1.1 christos iarg[1] = SCARG(p, level); /* int */ 787 1.1 christos iarg[2] = SCARG(p, name); /* int */ 788 1.1 christos uarg[3] = (intptr_t) SCARG(p, val); /* const void * */ 789 1.1 christos iarg[4] = SCARG(p, valsize); /* socklen_t */ 790 1.1 christos *n_args = 5; 791 1.1 christos break; 792 1.1 christos } 793 1.1 christos /* sys_listen */ 794 1.1 christos case 106: { 795 1.23 christos const struct sys_listen_args *p = params; 796 1.1 christos iarg[0] = SCARG(p, s); /* int */ 797 1.1 christos iarg[1] = SCARG(p, backlog); /* int */ 798 1.1 christos *n_args = 2; 799 1.1 christos break; 800 1.1 christos } 801 1.1 christos /* sys_sigvec */ 802 1.1 christos case 108: { 803 1.23 christos const struct compat_43_sys_sigvec_args *p = params; 804 1.1 christos iarg[0] = SCARG(p, signum); /* int */ 805 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsv); /* struct sigvec * */ 806 1.1 christos uarg[2] = (intptr_t) SCARG(p, osv); /* struct sigvec * */ 807 1.1 christos *n_args = 3; 808 1.1 christos break; 809 1.1 christos } 810 1.1 christos /* sys_sigblock */ 811 1.1 christos case 109: { 812 1.23 christos const struct compat_43_sys_sigblock_args *p = params; 813 1.1 christos iarg[0] = SCARG(p, mask); /* int */ 814 1.1 christos *n_args = 1; 815 1.1 christos break; 816 1.1 christos } 817 1.1 christos /* sys_sigsetmask */ 818 1.1 christos case 110: { 819 1.23 christos const struct compat_43_sys_sigsetmask_args *p = params; 820 1.1 christos iarg[0] = SCARG(p, mask); /* int */ 821 1.1 christos *n_args = 1; 822 1.1 christos break; 823 1.1 christos } 824 1.1 christos /* sys_sigsuspend */ 825 1.1 christos case 111: { 826 1.23 christos const struct compat_13_sys_sigsuspend_args *p = params; 827 1.1 christos iarg[0] = SCARG(p, mask); /* int */ 828 1.1 christos *n_args = 1; 829 1.1 christos break; 830 1.1 christos } 831 1.1 christos /* sys_sigstack */ 832 1.1 christos case 112: { 833 1.23 christos const struct compat_43_sys_sigstack_args *p = params; 834 1.1 christos uarg[0] = (intptr_t) SCARG(p, nss); /* struct sigstack * */ 835 1.1 christos uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigstack * */ 836 1.1 christos *n_args = 2; 837 1.1 christos break; 838 1.1 christos } 839 1.1 christos /* sys_recvmsg */ 840 1.1 christos case 113: { 841 1.23 christos const struct compat_43_sys_recvmsg_args *p = params; 842 1.1 christos iarg[0] = SCARG(p, s); /* int */ 843 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* struct omsghdr * */ 844 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 845 1.1 christos *n_args = 3; 846 1.1 christos break; 847 1.1 christos } 848 1.1 christos /* sys_sendmsg */ 849 1.1 christos case 114: { 850 1.23 christos const struct compat_43_sys_sendmsg_args *p = params; 851 1.1 christos iarg[0] = SCARG(p, s); /* int */ 852 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg); /* void * */ 853 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 854 1.1 christos *n_args = 3; 855 1.1 christos break; 856 1.1 christos } 857 1.1 christos /* sys_gettimeofday */ 858 1.1 christos case 116: { 859 1.23 christos const struct compat_50_sys_gettimeofday_args *p = params; 860 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval50 * */ 861 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* void * */ 862 1.1 christos *n_args = 2; 863 1.1 christos break; 864 1.1 christos } 865 1.1 christos /* sys_getrusage */ 866 1.1 christos case 117: { 867 1.23 christos const struct compat_50_sys_getrusage_args *p = params; 868 1.1 christos iarg[0] = SCARG(p, who); /* int */ 869 1.1 christos uarg[1] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */ 870 1.1 christos *n_args = 2; 871 1.1 christos break; 872 1.1 christos } 873 1.1 christos /* sys_getsockopt */ 874 1.1 christos case 118: { 875 1.23 christos const struct sys_getsockopt_args *p = params; 876 1.1 christos iarg[0] = SCARG(p, s); /* int */ 877 1.1 christos iarg[1] = SCARG(p, level); /* int */ 878 1.1 christos iarg[2] = SCARG(p, name); /* int */ 879 1.1 christos uarg[3] = (intptr_t) SCARG(p, val); /* void * */ 880 1.1 christos uarg[4] = (intptr_t) SCARG(p, avalsize); /* socklen_t * */ 881 1.1 christos *n_args = 5; 882 1.1 christos break; 883 1.1 christos } 884 1.1 christos /* sys_readv */ 885 1.1 christos case 120: { 886 1.23 christos const struct sys_readv_args *p = params; 887 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 888 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */ 889 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */ 890 1.1 christos *n_args = 3; 891 1.1 christos break; 892 1.1 christos } 893 1.1 christos /* sys_writev */ 894 1.1 christos case 121: { 895 1.23 christos const struct sys_writev_args *p = params; 896 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 897 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */ 898 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */ 899 1.1 christos *n_args = 3; 900 1.1 christos break; 901 1.1 christos } 902 1.1 christos /* sys_settimeofday */ 903 1.1 christos case 122: { 904 1.23 christos const struct compat_50_sys_settimeofday_args *p = params; 905 1.1 christos uarg[0] = (intptr_t) SCARG(p, tv); /* const struct timeval50 * */ 906 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* const void * */ 907 1.1 christos *n_args = 2; 908 1.1 christos break; 909 1.1 christos } 910 1.1 christos /* sys_fchown */ 911 1.1 christos case 123: { 912 1.23 christos const struct sys_fchown_args *p = params; 913 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 914 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */ 915 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */ 916 1.1 christos *n_args = 3; 917 1.1 christos break; 918 1.1 christos } 919 1.1 christos /* sys_fchmod */ 920 1.1 christos case 124: { 921 1.23 christos const struct sys_fchmod_args *p = params; 922 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 923 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 924 1.1 christos *n_args = 2; 925 1.1 christos break; 926 1.1 christos } 927 1.1 christos /* sys_recvfrom */ 928 1.1 christos case 125: { 929 1.23 christos const struct compat_43_sys_recvfrom_args *p = params; 930 1.1 christos iarg[0] = SCARG(p, s); /* int */ 931 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */ 932 1.1 christos uarg[2] = SCARG(p, len); /* size_t */ 933 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 934 1.1 christos uarg[4] = (intptr_t) SCARG(p, from); /* void * */ 935 1.1 christos uarg[5] = (intptr_t) SCARG(p, fromlenaddr); /* socklen_t * */ 936 1.1 christos *n_args = 6; 937 1.1 christos break; 938 1.1 christos } 939 1.1 christos /* sys_setreuid */ 940 1.1 christos case 126: { 941 1.23 christos const struct sys_setreuid_args *p = params; 942 1.1 christos uarg[0] = SCARG(p, ruid); /* uid_t */ 943 1.1 christos uarg[1] = SCARG(p, euid); /* uid_t */ 944 1.1 christos *n_args = 2; 945 1.1 christos break; 946 1.1 christos } 947 1.1 christos /* sys_setregid */ 948 1.1 christos case 127: { 949 1.23 christos const struct sys_setregid_args *p = params; 950 1.1 christos iarg[0] = SCARG(p, rgid); /* gid_t */ 951 1.1 christos iarg[1] = SCARG(p, egid); /* gid_t */ 952 1.1 christos *n_args = 2; 953 1.1 christos break; 954 1.1 christos } 955 1.1 christos /* sys_rename */ 956 1.1 christos case 128: { 957 1.23 christos const struct sys_rename_args *p = params; 958 1.1 christos uarg[0] = (intptr_t) SCARG(p, from); /* const char * */ 959 1.1 christos uarg[1] = (intptr_t) SCARG(p, to); /* const char * */ 960 1.1 christos *n_args = 2; 961 1.1 christos break; 962 1.1 christos } 963 1.1 christos /* sys_truncate */ 964 1.1 christos case 129: { 965 1.23 christos const struct compat_43_sys_truncate_args *p = params; 966 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 967 1.1 christos iarg[1] = SCARG(p, length); /* long */ 968 1.1 christos *n_args = 2; 969 1.1 christos break; 970 1.1 christos } 971 1.1 christos /* sys_ftruncate */ 972 1.1 christos case 130: { 973 1.23 christos const struct compat_43_sys_ftruncate_args *p = params; 974 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 975 1.1 christos iarg[1] = SCARG(p, length); /* long */ 976 1.1 christos *n_args = 2; 977 1.1 christos break; 978 1.1 christos } 979 1.1 christos /* sys_flock */ 980 1.1 christos case 131: { 981 1.23 christos const struct sys_flock_args *p = params; 982 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 983 1.1 christos iarg[1] = SCARG(p, how); /* int */ 984 1.1 christos *n_args = 2; 985 1.1 christos break; 986 1.1 christos } 987 1.1 christos /* sys_mkfifo */ 988 1.1 christos case 132: { 989 1.23 christos const struct sys_mkfifo_args *p = params; 990 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 991 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 992 1.1 christos *n_args = 2; 993 1.1 christos break; 994 1.1 christos } 995 1.1 christos /* sys_sendto */ 996 1.1 christos case 133: { 997 1.23 christos const struct sys_sendto_args *p = params; 998 1.1 christos iarg[0] = SCARG(p, s); /* int */ 999 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */ 1000 1.1 christos uarg[2] = SCARG(p, len); /* size_t */ 1001 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 1002 1.1 christos uarg[4] = (intptr_t) SCARG(p, to); /* const struct sockaddr * */ 1003 1.1 christos iarg[5] = SCARG(p, tolen); /* socklen_t */ 1004 1.1 christos *n_args = 6; 1005 1.1 christos break; 1006 1.1 christos } 1007 1.1 christos /* sys_shutdown */ 1008 1.1 christos case 134: { 1009 1.23 christos const struct sys_shutdown_args *p = params; 1010 1.1 christos iarg[0] = SCARG(p, s); /* int */ 1011 1.1 christos iarg[1] = SCARG(p, how); /* int */ 1012 1.1 christos *n_args = 2; 1013 1.1 christos break; 1014 1.1 christos } 1015 1.1 christos /* sys_socketpair */ 1016 1.1 christos case 135: { 1017 1.23 christos const struct sys_socketpair_args *p = params; 1018 1.1 christos iarg[0] = SCARG(p, domain); /* int */ 1019 1.1 christos iarg[1] = SCARG(p, type); /* int */ 1020 1.1 christos iarg[2] = SCARG(p, protocol); /* int */ 1021 1.1 christos uarg[3] = (intptr_t) SCARG(p, rsv); /* int * */ 1022 1.1 christos *n_args = 4; 1023 1.1 christos break; 1024 1.1 christos } 1025 1.1 christos /* sys_mkdir */ 1026 1.1 christos case 136: { 1027 1.23 christos const struct sys_mkdir_args *p = params; 1028 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1029 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 1030 1.1 christos *n_args = 2; 1031 1.1 christos break; 1032 1.1 christos } 1033 1.1 christos /* sys_rmdir */ 1034 1.1 christos case 137: { 1035 1.23 christos const struct sys_rmdir_args *p = params; 1036 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1037 1.1 christos *n_args = 1; 1038 1.1 christos break; 1039 1.1 christos } 1040 1.1 christos /* sys_utimes */ 1041 1.1 christos case 138: { 1042 1.23 christos const struct compat_50_sys_utimes_args *p = params; 1043 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1044 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */ 1045 1.1 christos *n_args = 2; 1046 1.1 christos break; 1047 1.1 christos } 1048 1.1 christos /* sys_adjtime */ 1049 1.1 christos case 140: { 1050 1.23 christos const struct compat_50_sys_adjtime_args *p = params; 1051 1.1 christos uarg[0] = (intptr_t) SCARG(p, delta); /* const struct timeval50 * */ 1052 1.1 christos uarg[1] = (intptr_t) SCARG(p, olddelta); /* struct timeval50 * */ 1053 1.1 christos *n_args = 2; 1054 1.1 christos break; 1055 1.1 christos } 1056 1.1 christos /* sys_getpeername */ 1057 1.1 christos case 141: { 1058 1.23 christos const struct compat_43_sys_getpeername_args *p = params; 1059 1.1 christos iarg[0] = SCARG(p, fdes); /* int */ 1060 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* void * */ 1061 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */ 1062 1.1 christos *n_args = 3; 1063 1.1 christos break; 1064 1.1 christos } 1065 1.1 christos /* sys_gethostid */ 1066 1.1 christos case 142: { 1067 1.1 christos *n_args = 0; 1068 1.1 christos break; 1069 1.1 christos } 1070 1.1 christos /* sys_sethostid */ 1071 1.1 christos case 143: { 1072 1.23 christos const struct compat_43_sys_sethostid_args *p = params; 1073 1.1 christos iarg[0] = SCARG(p, hostid); /* int32_t */ 1074 1.1 christos *n_args = 1; 1075 1.1 christos break; 1076 1.1 christos } 1077 1.1 christos /* sys_getrlimit */ 1078 1.1 christos case 144: { 1079 1.23 christos const struct compat_43_sys_getrlimit_args *p = params; 1080 1.1 christos iarg[0] = SCARG(p, which); /* int */ 1081 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* struct orlimit * */ 1082 1.1 christos *n_args = 2; 1083 1.1 christos break; 1084 1.1 christos } 1085 1.1 christos /* sys_setrlimit */ 1086 1.1 christos case 145: { 1087 1.23 christos const struct compat_43_sys_setrlimit_args *p = params; 1088 1.1 christos iarg[0] = SCARG(p, which); /* int */ 1089 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* const struct orlimit * */ 1090 1.1 christos *n_args = 2; 1091 1.1 christos break; 1092 1.1 christos } 1093 1.1 christos /* sys_killpg */ 1094 1.1 christos case 146: { 1095 1.23 christos const struct compat_43_sys_killpg_args *p = params; 1096 1.1 christos iarg[0] = SCARG(p, pgid); /* int */ 1097 1.1 christos iarg[1] = SCARG(p, signum); /* int */ 1098 1.1 christos *n_args = 2; 1099 1.1 christos break; 1100 1.1 christos } 1101 1.1 christos /* sys_setsid */ 1102 1.1 christos case 147: { 1103 1.1 christos *n_args = 0; 1104 1.1 christos break; 1105 1.1 christos } 1106 1.1 christos /* sys_quotactl */ 1107 1.1 christos case 148: { 1108 1.23 christos const struct compat_50_sys_quotactl_args *p = params; 1109 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1110 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 1111 1.1 christos iarg[2] = SCARG(p, uid); /* int */ 1112 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* void * */ 1113 1.1 christos *n_args = 4; 1114 1.1 christos break; 1115 1.1 christos } 1116 1.1 christos /* sys_quota */ 1117 1.1 christos case 149: { 1118 1.1 christos *n_args = 0; 1119 1.1 christos break; 1120 1.1 christos } 1121 1.1 christos /* sys_getsockname */ 1122 1.1 christos case 150: { 1123 1.23 christos const struct compat_43_sys_getsockname_args *p = params; 1124 1.1 christos iarg[0] = SCARG(p, fdec); /* int */ 1125 1.1 christos uarg[1] = (intptr_t) SCARG(p, asa); /* void * */ 1126 1.1 christos uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */ 1127 1.1 christos *n_args = 3; 1128 1.1 christos break; 1129 1.1 christos } 1130 1.1 christos /* sys_nfssvc */ 1131 1.1 christos case 155: { 1132 1.23 christos const struct sys_nfssvc_args *p = params; 1133 1.1 christos iarg[0] = SCARG(p, flag); /* int */ 1134 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp); /* void * */ 1135 1.1 christos *n_args = 2; 1136 1.1 christos break; 1137 1.1 christos } 1138 1.1 christos /* sys_getdirentries */ 1139 1.1 christos case 156: { 1140 1.23 christos const struct compat_43_sys_getdirentries_args *p = params; 1141 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1142 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */ 1143 1.1 christos uarg[2] = SCARG(p, count); /* u_int */ 1144 1.1 christos uarg[3] = (intptr_t) SCARG(p, basep); /* long * */ 1145 1.1 christos *n_args = 4; 1146 1.1 christos break; 1147 1.1 christos } 1148 1.1 christos /* sys_statfs */ 1149 1.1 christos case 157: { 1150 1.23 christos const struct compat_20_sys_statfs_args *p = params; 1151 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1152 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */ 1153 1.1 christos *n_args = 2; 1154 1.1 christos break; 1155 1.1 christos } 1156 1.1 christos /* sys_fstatfs */ 1157 1.1 christos case 158: { 1158 1.23 christos const struct compat_20_sys_fstatfs_args *p = params; 1159 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1160 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */ 1161 1.1 christos *n_args = 2; 1162 1.1 christos break; 1163 1.1 christos } 1164 1.1 christos /* sys_getfh */ 1165 1.1 christos case 161: { 1166 1.23 christos const struct compat_30_sys_getfh_args *p = params; 1167 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */ 1168 1.1 christos uarg[1] = (intptr_t) SCARG(p, fhp); /* struct compat_30_fhandle * */ 1169 1.1 christos *n_args = 2; 1170 1.1 christos break; 1171 1.1 christos } 1172 1.1 christos /* sys_getdomainname */ 1173 1.1 christos case 162: { 1174 1.23 christos const struct compat_09_sys_getdomainname_args *p = params; 1175 1.1 christos uarg[0] = (intptr_t) SCARG(p, domainname); /* char * */ 1176 1.1 christos iarg[1] = SCARG(p, len); /* int */ 1177 1.1 christos *n_args = 2; 1178 1.1 christos break; 1179 1.1 christos } 1180 1.1 christos /* sys_setdomainname */ 1181 1.1 christos case 163: { 1182 1.23 christos const struct compat_09_sys_setdomainname_args *p = params; 1183 1.1 christos uarg[0] = (intptr_t) SCARG(p, domainname); /* char * */ 1184 1.1 christos iarg[1] = SCARG(p, len); /* int */ 1185 1.1 christos *n_args = 2; 1186 1.1 christos break; 1187 1.1 christos } 1188 1.1 christos /* sys_uname */ 1189 1.1 christos case 164: { 1190 1.23 christos const struct compat_09_sys_uname_args *p = params; 1191 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* struct outsname * */ 1192 1.1 christos *n_args = 1; 1193 1.1 christos break; 1194 1.1 christos } 1195 1.1 christos /* sys_sysarch */ 1196 1.1 christos case 165: { 1197 1.23 christos const struct sys_sysarch_args *p = params; 1198 1.1 christos iarg[0] = SCARG(p, op); /* int */ 1199 1.1 christos uarg[1] = (intptr_t) SCARG(p, parms); /* void * */ 1200 1.1 christos *n_args = 2; 1201 1.1 christos break; 1202 1.1 christos } 1203 1.38 thorpej /* sys___futex */ 1204 1.38 thorpej case 166: { 1205 1.38 thorpej const struct sys___futex_args *p = params; 1206 1.38 thorpej uarg[0] = (intptr_t) SCARG(p, uaddr); /* int * */ 1207 1.38 thorpej iarg[1] = SCARG(p, op); /* int */ 1208 1.38 thorpej iarg[2] = SCARG(p, val); /* int */ 1209 1.38 thorpej uarg[3] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */ 1210 1.38 thorpej uarg[4] = (intptr_t) SCARG(p, uaddr2); /* int * */ 1211 1.38 thorpej iarg[5] = SCARG(p, val2); /* int */ 1212 1.38 thorpej iarg[6] = SCARG(p, val3); /* int */ 1213 1.38 thorpej *n_args = 7; 1214 1.38 thorpej break; 1215 1.38 thorpej } 1216 1.38 thorpej /* sys___futex_set_robust_list */ 1217 1.38 thorpej case 167: { 1218 1.38 thorpej const struct sys___futex_set_robust_list_args *p = params; 1219 1.38 thorpej uarg[0] = (intptr_t) SCARG(p, head); /* void * */ 1220 1.38 thorpej uarg[1] = SCARG(p, len); /* size_t */ 1221 1.38 thorpej *n_args = 2; 1222 1.38 thorpej break; 1223 1.38 thorpej } 1224 1.38 thorpej /* sys___futex_get_robust_list */ 1225 1.38 thorpej case 168: { 1226 1.38 thorpej const struct sys___futex_get_robust_list_args *p = params; 1227 1.38 thorpej iarg[0] = SCARG(p, lwpid); /* lwpid_t */ 1228 1.38 thorpej uarg[1] = (intptr_t) SCARG(p, headp); /* void ** */ 1229 1.38 thorpej uarg[2] = (intptr_t) SCARG(p, lenp); /* size_t * */ 1230 1.38 thorpej *n_args = 3; 1231 1.38 thorpej break; 1232 1.38 thorpej } 1233 1.6 pgoyette #if !defined(_LP64) 1234 1.1 christos /* sys_semsys */ 1235 1.1 christos case 169: { 1236 1.23 christos const struct compat_10_sys_semsys_args *p = params; 1237 1.1 christos iarg[0] = SCARG(p, which); /* int */ 1238 1.1 christos iarg[1] = SCARG(p, a2); /* int */ 1239 1.1 christos iarg[2] = SCARG(p, a3); /* int */ 1240 1.1 christos iarg[3] = SCARG(p, a4); /* int */ 1241 1.1 christos iarg[4] = SCARG(p, a5); /* int */ 1242 1.1 christos *n_args = 5; 1243 1.1 christos break; 1244 1.1 christos } 1245 1.1 christos #else 1246 1.1 christos #endif 1247 1.6 pgoyette #if !defined(_LP64) 1248 1.1 christos /* sys_msgsys */ 1249 1.1 christos case 170: { 1250 1.23 christos const struct compat_10_sys_msgsys_args *p = params; 1251 1.1 christos iarg[0] = SCARG(p, which); /* int */ 1252 1.1 christos iarg[1] = SCARG(p, a2); /* int */ 1253 1.1 christos iarg[2] = SCARG(p, a3); /* int */ 1254 1.1 christos iarg[3] = SCARG(p, a4); /* int */ 1255 1.1 christos iarg[4] = SCARG(p, a5); /* int */ 1256 1.1 christos iarg[5] = SCARG(p, a6); /* int */ 1257 1.1 christos *n_args = 6; 1258 1.1 christos break; 1259 1.1 christos } 1260 1.1 christos #else 1261 1.1 christos #endif 1262 1.6 pgoyette #if !defined(_LP64) 1263 1.1 christos /* sys_shmsys */ 1264 1.1 christos case 171: { 1265 1.23 christos const struct compat_10_sys_shmsys_args *p = params; 1266 1.1 christos iarg[0] = SCARG(p, which); /* int */ 1267 1.1 christos iarg[1] = SCARG(p, a2); /* int */ 1268 1.1 christos iarg[2] = SCARG(p, a3); /* int */ 1269 1.1 christos iarg[3] = SCARG(p, a4); /* int */ 1270 1.1 christos *n_args = 4; 1271 1.1 christos break; 1272 1.1 christos } 1273 1.1 christos #else 1274 1.1 christos #endif 1275 1.1 christos /* sys_pread */ 1276 1.1 christos case 173: { 1277 1.23 christos const struct sys_pread_args *p = params; 1278 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1279 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* void * */ 1280 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */ 1281 1.1 christos iarg[3] = SCARG(p, PAD); /* int */ 1282 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */ 1283 1.1 christos *n_args = 5; 1284 1.1 christos break; 1285 1.1 christos } 1286 1.1 christos /* sys_pwrite */ 1287 1.1 christos case 174: { 1288 1.23 christos const struct sys_pwrite_args *p = params; 1289 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1290 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */ 1291 1.1 christos uarg[2] = SCARG(p, nbyte); /* size_t */ 1292 1.1 christos iarg[3] = SCARG(p, PAD); /* int */ 1293 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */ 1294 1.1 christos *n_args = 5; 1295 1.1 christos break; 1296 1.1 christos } 1297 1.1 christos /* sys_ntp_gettime */ 1298 1.1 christos case 175: { 1299 1.23 christos const struct compat_30_sys_ntp_gettime_args *p = params; 1300 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval30 * */ 1301 1.1 christos *n_args = 1; 1302 1.1 christos break; 1303 1.1 christos } 1304 1.1 christos #if defined(NTP) || !defined(_KERNEL_OPT) 1305 1.1 christos /* sys_ntp_adjtime */ 1306 1.1 christos case 176: { 1307 1.23 christos const struct sys_ntp_adjtime_args *p = params; 1308 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp); /* struct timex * */ 1309 1.1 christos *n_args = 1; 1310 1.1 christos break; 1311 1.1 christos } 1312 1.1 christos #else 1313 1.1 christos #endif 1314 1.48 thorpej /* sys_timerfd_create */ 1315 1.48 thorpej case 177: { 1316 1.48 thorpej const struct sys_timerfd_create_args *p = params; 1317 1.48 thorpej iarg[0] = SCARG(p, clock_id); /* clockid_t */ 1318 1.48 thorpej iarg[1] = SCARG(p, flags); /* int */ 1319 1.48 thorpej *n_args = 2; 1320 1.48 thorpej break; 1321 1.48 thorpej } 1322 1.48 thorpej /* sys_timerfd_settime */ 1323 1.48 thorpej case 178: { 1324 1.48 thorpej const struct sys_timerfd_settime_args *p = params; 1325 1.48 thorpej iarg[0] = SCARG(p, fd); /* int */ 1326 1.48 thorpej iarg[1] = SCARG(p, flags); /* int */ 1327 1.48 thorpej uarg[2] = (intptr_t) SCARG(p, new_value); /* const struct itimerspec * */ 1328 1.48 thorpej uarg[3] = (intptr_t) SCARG(p, old_value); /* struct itimerspec * */ 1329 1.48 thorpej *n_args = 4; 1330 1.48 thorpej break; 1331 1.48 thorpej } 1332 1.48 thorpej /* sys_timerfd_gettime */ 1333 1.48 thorpej case 179: { 1334 1.48 thorpej const struct sys_timerfd_gettime_args *p = params; 1335 1.48 thorpej iarg[0] = SCARG(p, fd); /* int */ 1336 1.48 thorpej uarg[1] = (intptr_t) SCARG(p, curr_value); /* struct itimerspec * */ 1337 1.48 thorpej *n_args = 2; 1338 1.48 thorpej break; 1339 1.48 thorpej } 1340 1.1 christos /* sys_setgid */ 1341 1.1 christos case 181: { 1342 1.23 christos const struct sys_setgid_args *p = params; 1343 1.1 christos iarg[0] = SCARG(p, gid); /* gid_t */ 1344 1.1 christos *n_args = 1; 1345 1.1 christos break; 1346 1.1 christos } 1347 1.1 christos /* sys_setegid */ 1348 1.1 christos case 182: { 1349 1.23 christos const struct sys_setegid_args *p = params; 1350 1.1 christos iarg[0] = SCARG(p, egid); /* gid_t */ 1351 1.1 christos *n_args = 1; 1352 1.1 christos break; 1353 1.1 christos } 1354 1.1 christos /* sys_seteuid */ 1355 1.1 christos case 183: { 1356 1.23 christos const struct sys_seteuid_args *p = params; 1357 1.1 christos uarg[0] = SCARG(p, euid); /* uid_t */ 1358 1.1 christos *n_args = 1; 1359 1.1 christos break; 1360 1.1 christos } 1361 1.1 christos /* sys_lfs_bmapv */ 1362 1.1 christos case 184: { 1363 1.23 christos const struct sys_lfs_bmapv_args *p = params; 1364 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */ 1365 1.1 christos uarg[1] = (intptr_t) SCARG(p, blkiov); /* struct block_info * */ 1366 1.1 christos iarg[2] = SCARG(p, blkcnt); /* int */ 1367 1.1 christos *n_args = 3; 1368 1.1 christos break; 1369 1.1 christos } 1370 1.1 christos /* sys_lfs_markv */ 1371 1.1 christos case 185: { 1372 1.23 christos const struct sys_lfs_markv_args *p = params; 1373 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */ 1374 1.1 christos uarg[1] = (intptr_t) SCARG(p, blkiov); /* struct block_info * */ 1375 1.1 christos iarg[2] = SCARG(p, blkcnt); /* int */ 1376 1.1 christos *n_args = 3; 1377 1.1 christos break; 1378 1.1 christos } 1379 1.1 christos /* sys_lfs_segclean */ 1380 1.1 christos case 186: { 1381 1.23 christos const struct sys_lfs_segclean_args *p = params; 1382 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */ 1383 1.1 christos uarg[1] = SCARG(p, segment); /* u_long */ 1384 1.1 christos *n_args = 2; 1385 1.1 christos break; 1386 1.1 christos } 1387 1.1 christos /* sys_lfs_segwait */ 1388 1.1 christos case 187: { 1389 1.23 christos const struct compat_50_sys_lfs_segwait_args *p = params; 1390 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */ 1391 1.1 christos uarg[1] = (intptr_t) SCARG(p, tv); /* struct timeval50 * */ 1392 1.1 christos *n_args = 2; 1393 1.1 christos break; 1394 1.1 christos } 1395 1.1 christos /* sys_stat */ 1396 1.1 christos case 188: { 1397 1.23 christos const struct compat_12_sys_stat_args *p = params; 1398 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1399 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat12 * */ 1400 1.1 christos *n_args = 2; 1401 1.1 christos break; 1402 1.1 christos } 1403 1.1 christos /* sys_fstat */ 1404 1.1 christos case 189: { 1405 1.23 christos const struct compat_12_sys_fstat_args *p = params; 1406 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1407 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat12 * */ 1408 1.1 christos *n_args = 2; 1409 1.1 christos break; 1410 1.1 christos } 1411 1.1 christos /* sys_lstat */ 1412 1.1 christos case 190: { 1413 1.23 christos const struct compat_12_sys_lstat_args *p = params; 1414 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1415 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat12 * */ 1416 1.1 christos *n_args = 2; 1417 1.1 christos break; 1418 1.1 christos } 1419 1.1 christos /* sys_pathconf */ 1420 1.1 christos case 191: { 1421 1.23 christos const struct sys_pathconf_args *p = params; 1422 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1423 1.1 christos iarg[1] = SCARG(p, name); /* int */ 1424 1.1 christos *n_args = 2; 1425 1.1 christos break; 1426 1.1 christos } 1427 1.1 christos /* sys_fpathconf */ 1428 1.1 christos case 192: { 1429 1.23 christos const struct sys_fpathconf_args *p = params; 1430 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1431 1.1 christos iarg[1] = SCARG(p, name); /* int */ 1432 1.1 christos *n_args = 2; 1433 1.1 christos break; 1434 1.1 christos } 1435 1.31 rjs /* sys_getsockopt2 */ 1436 1.31 rjs case 193: { 1437 1.31 rjs const struct sys_getsockopt2_args *p = params; 1438 1.31 rjs iarg[0] = SCARG(p, s); /* int */ 1439 1.31 rjs iarg[1] = SCARG(p, level); /* int */ 1440 1.31 rjs iarg[2] = SCARG(p, name); /* int */ 1441 1.31 rjs uarg[3] = (intptr_t) SCARG(p, val); /* void * */ 1442 1.31 rjs uarg[4] = (intptr_t) SCARG(p, avalsize); /* socklen_t * */ 1443 1.31 rjs *n_args = 5; 1444 1.31 rjs break; 1445 1.31 rjs } 1446 1.1 christos /* sys_getrlimit */ 1447 1.1 christos case 194: { 1448 1.23 christos const struct sys_getrlimit_args *p = params; 1449 1.1 christos iarg[0] = SCARG(p, which); /* int */ 1450 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* struct rlimit * */ 1451 1.1 christos *n_args = 2; 1452 1.1 christos break; 1453 1.1 christos } 1454 1.1 christos /* sys_setrlimit */ 1455 1.1 christos case 195: { 1456 1.23 christos const struct sys_setrlimit_args *p = params; 1457 1.1 christos iarg[0] = SCARG(p, which); /* int */ 1458 1.1 christos uarg[1] = (intptr_t) SCARG(p, rlp); /* const struct rlimit * */ 1459 1.1 christos *n_args = 2; 1460 1.1 christos break; 1461 1.1 christos } 1462 1.1 christos /* sys_getdirentries */ 1463 1.1 christos case 196: { 1464 1.23 christos const struct compat_12_sys_getdirentries_args *p = params; 1465 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1466 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */ 1467 1.1 christos uarg[2] = SCARG(p, count); /* u_int */ 1468 1.1 christos uarg[3] = (intptr_t) SCARG(p, basep); /* long * */ 1469 1.1 christos *n_args = 4; 1470 1.1 christos break; 1471 1.1 christos } 1472 1.1 christos /* sys_mmap */ 1473 1.1 christos case 197: { 1474 1.23 christos const struct sys_mmap_args *p = params; 1475 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 1476 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 1477 1.1 christos iarg[2] = SCARG(p, prot); /* int */ 1478 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 1479 1.1 christos iarg[4] = SCARG(p, fd); /* int */ 1480 1.1 christos iarg[5] = SCARG(p, PAD); /* long */ 1481 1.1 christos iarg[6] = SCARG(p, pos); /* off_t */ 1482 1.1 christos *n_args = 7; 1483 1.1 christos break; 1484 1.1 christos } 1485 1.1 christos /* sys___syscall */ 1486 1.1 christos case 198: { 1487 1.23 christos const struct sys___syscall_args *p = params; 1488 1.1 christos iarg[0] = SCARG(p, code); /* quad_t */ 1489 1.47 christos iarg[1] = SCARG(p, args[0]); /* register_t */ 1490 1.1 christos *n_args = 2; 1491 1.1 christos break; 1492 1.1 christos } 1493 1.1 christos /* sys_lseek */ 1494 1.1 christos case 199: { 1495 1.23 christos const struct sys_lseek_args *p = params; 1496 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1497 1.1 christos iarg[1] = SCARG(p, PAD); /* int */ 1498 1.1 christos iarg[2] = SCARG(p, offset); /* off_t */ 1499 1.1 christos iarg[3] = SCARG(p, whence); /* int */ 1500 1.1 christos *n_args = 4; 1501 1.1 christos break; 1502 1.1 christos } 1503 1.1 christos /* sys_truncate */ 1504 1.1 christos case 200: { 1505 1.23 christos const struct sys_truncate_args *p = params; 1506 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1507 1.1 christos iarg[1] = SCARG(p, PAD); /* int */ 1508 1.1 christos iarg[2] = SCARG(p, length); /* off_t */ 1509 1.1 christos *n_args = 3; 1510 1.1 christos break; 1511 1.1 christos } 1512 1.1 christos /* sys_ftruncate */ 1513 1.1 christos case 201: { 1514 1.23 christos const struct sys_ftruncate_args *p = params; 1515 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1516 1.1 christos iarg[1] = SCARG(p, PAD); /* int */ 1517 1.1 christos iarg[2] = SCARG(p, length); /* off_t */ 1518 1.1 christos *n_args = 3; 1519 1.1 christos break; 1520 1.1 christos } 1521 1.1 christos /* sys___sysctl */ 1522 1.1 christos case 202: { 1523 1.23 christos const struct sys___sysctl_args *p = params; 1524 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const int * */ 1525 1.1 christos uarg[1] = SCARG(p, namelen); /* u_int */ 1526 1.1 christos uarg[2] = (intptr_t) SCARG(p, oldv); /* void * */ 1527 1.1 christos uarg[3] = (intptr_t) SCARG(p, oldlenp); /* size_t * */ 1528 1.1 christos uarg[4] = (intptr_t) SCARG(p, newv); /* const void * */ 1529 1.1 christos uarg[5] = SCARG(p, newlen); /* size_t */ 1530 1.1 christos *n_args = 6; 1531 1.1 christos break; 1532 1.1 christos } 1533 1.1 christos /* sys_mlock */ 1534 1.1 christos case 203: { 1535 1.23 christos const struct sys_mlock_args *p = params; 1536 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* const void * */ 1537 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 1538 1.1 christos *n_args = 2; 1539 1.1 christos break; 1540 1.1 christos } 1541 1.1 christos /* sys_munlock */ 1542 1.1 christos case 204: { 1543 1.23 christos const struct sys_munlock_args *p = params; 1544 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* const void * */ 1545 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 1546 1.1 christos *n_args = 2; 1547 1.1 christos break; 1548 1.1 christos } 1549 1.1 christos /* sys_undelete */ 1550 1.1 christos case 205: { 1551 1.23 christos const struct sys_undelete_args *p = params; 1552 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 1553 1.1 christos *n_args = 1; 1554 1.1 christos break; 1555 1.1 christos } 1556 1.1 christos /* sys_futimes */ 1557 1.1 christos case 206: { 1558 1.23 christos const struct compat_50_sys_futimes_args *p = params; 1559 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1560 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */ 1561 1.1 christos *n_args = 2; 1562 1.1 christos break; 1563 1.1 christos } 1564 1.1 christos /* sys_getpgid */ 1565 1.1 christos case 207: { 1566 1.23 christos const struct sys_getpgid_args *p = params; 1567 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 1568 1.1 christos *n_args = 1; 1569 1.1 christos break; 1570 1.1 christos } 1571 1.1 christos /* sys_reboot */ 1572 1.1 christos case 208: { 1573 1.23 christos const struct sys_reboot_args *p = params; 1574 1.1 christos iarg[0] = SCARG(p, opt); /* int */ 1575 1.1 christos uarg[1] = (intptr_t) SCARG(p, bootstr); /* char * */ 1576 1.1 christos *n_args = 2; 1577 1.1 christos break; 1578 1.1 christos } 1579 1.1 christos /* sys_poll */ 1580 1.1 christos case 209: { 1581 1.23 christos const struct sys_poll_args *p = params; 1582 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */ 1583 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */ 1584 1.1 christos iarg[2] = SCARG(p, timeout); /* int */ 1585 1.1 christos *n_args = 3; 1586 1.1 christos break; 1587 1.1 christos } 1588 1.1 christos /* sys_afssys */ 1589 1.1 christos case 210: { 1590 1.23 christos const struct sys_afssys_args *p = params; 1591 1.1 christos iarg[0] = SCARG(p, id); /* long */ 1592 1.1 christos iarg[1] = SCARG(p, a1); /* long */ 1593 1.1 christos iarg[2] = SCARG(p, a2); /* long */ 1594 1.1 christos iarg[3] = SCARG(p, a3); /* long */ 1595 1.1 christos iarg[4] = SCARG(p, a4); /* long */ 1596 1.1 christos iarg[5] = SCARG(p, a5); /* long */ 1597 1.1 christos iarg[6] = SCARG(p, a6); /* long */ 1598 1.1 christos *n_args = 7; 1599 1.1 christos break; 1600 1.1 christos } 1601 1.1 christos /* sys___semctl */ 1602 1.1 christos case 220: { 1603 1.23 christos const struct compat_14_sys___semctl_args *p = params; 1604 1.1 christos iarg[0] = SCARG(p, semid); /* int */ 1605 1.1 christos iarg[1] = SCARG(p, semnum); /* int */ 1606 1.1 christos iarg[2] = SCARG(p, cmd); /* int */ 1607 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */ 1608 1.1 christos *n_args = 4; 1609 1.1 christos break; 1610 1.1 christos } 1611 1.1 christos /* sys_semget */ 1612 1.1 christos case 221: { 1613 1.23 christos const struct sys_semget_args *p = params; 1614 1.1 christos iarg[0] = SCARG(p, key); /* key_t */ 1615 1.1 christos iarg[1] = SCARG(p, nsems); /* int */ 1616 1.1 christos iarg[2] = SCARG(p, semflg); /* int */ 1617 1.1 christos *n_args = 3; 1618 1.1 christos break; 1619 1.1 christos } 1620 1.1 christos /* sys_semop */ 1621 1.1 christos case 222: { 1622 1.23 christos const struct sys_semop_args *p = params; 1623 1.1 christos iarg[0] = SCARG(p, semid); /* int */ 1624 1.1 christos uarg[1] = (intptr_t) SCARG(p, sops); /* struct sembuf * */ 1625 1.1 christos uarg[2] = SCARG(p, nsops); /* size_t */ 1626 1.1 christos *n_args = 3; 1627 1.1 christos break; 1628 1.1 christos } 1629 1.1 christos /* sys_semconfig */ 1630 1.1 christos case 223: { 1631 1.23 christos const struct sys_semconfig_args *p = params; 1632 1.1 christos iarg[0] = SCARG(p, flag); /* int */ 1633 1.1 christos *n_args = 1; 1634 1.1 christos break; 1635 1.1 christos } 1636 1.1 christos /* sys_msgctl */ 1637 1.1 christos case 224: { 1638 1.23 christos const struct compat_14_sys_msgctl_args *p = params; 1639 1.1 christos iarg[0] = SCARG(p, msqid); /* int */ 1640 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 1641 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds14 * */ 1642 1.1 christos *n_args = 3; 1643 1.1 christos break; 1644 1.1 christos } 1645 1.1 christos /* sys_msgget */ 1646 1.1 christos case 225: { 1647 1.23 christos const struct sys_msgget_args *p = params; 1648 1.1 christos iarg[0] = SCARG(p, key); /* key_t */ 1649 1.1 christos iarg[1] = SCARG(p, msgflg); /* int */ 1650 1.1 christos *n_args = 2; 1651 1.1 christos break; 1652 1.1 christos } 1653 1.1 christos /* sys_msgsnd */ 1654 1.1 christos case 226: { 1655 1.23 christos const struct sys_msgsnd_args *p = params; 1656 1.1 christos iarg[0] = SCARG(p, msqid); /* int */ 1657 1.1 christos uarg[1] = (intptr_t) SCARG(p, msgp); /* const void * */ 1658 1.1 christos uarg[2] = SCARG(p, msgsz); /* size_t */ 1659 1.1 christos iarg[3] = SCARG(p, msgflg); /* int */ 1660 1.1 christos *n_args = 4; 1661 1.1 christos break; 1662 1.1 christos } 1663 1.1 christos /* sys_msgrcv */ 1664 1.1 christos case 227: { 1665 1.23 christos const struct sys_msgrcv_args *p = params; 1666 1.1 christos iarg[0] = SCARG(p, msqid); /* int */ 1667 1.1 christos uarg[1] = (intptr_t) SCARG(p, msgp); /* void * */ 1668 1.1 christos uarg[2] = SCARG(p, msgsz); /* size_t */ 1669 1.1 christos iarg[3] = SCARG(p, msgtyp); /* long */ 1670 1.1 christos iarg[4] = SCARG(p, msgflg); /* int */ 1671 1.1 christos *n_args = 5; 1672 1.1 christos break; 1673 1.1 christos } 1674 1.1 christos /* sys_shmat */ 1675 1.1 christos case 228: { 1676 1.23 christos const struct sys_shmat_args *p = params; 1677 1.1 christos iarg[0] = SCARG(p, shmid); /* int */ 1678 1.1 christos uarg[1] = (intptr_t) SCARG(p, shmaddr); /* const void * */ 1679 1.1 christos iarg[2] = SCARG(p, shmflg); /* int */ 1680 1.1 christos *n_args = 3; 1681 1.1 christos break; 1682 1.1 christos } 1683 1.1 christos /* sys_shmctl */ 1684 1.1 christos case 229: { 1685 1.23 christos const struct compat_14_sys_shmctl_args *p = params; 1686 1.1 christos iarg[0] = SCARG(p, shmid); /* int */ 1687 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 1688 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds14 * */ 1689 1.1 christos *n_args = 3; 1690 1.1 christos break; 1691 1.1 christos } 1692 1.1 christos /* sys_shmdt */ 1693 1.1 christos case 230: { 1694 1.23 christos const struct sys_shmdt_args *p = params; 1695 1.1 christos uarg[0] = (intptr_t) SCARG(p, shmaddr); /* const void * */ 1696 1.1 christos *n_args = 1; 1697 1.1 christos break; 1698 1.1 christos } 1699 1.1 christos /* sys_shmget */ 1700 1.1 christos case 231: { 1701 1.23 christos const struct sys_shmget_args *p = params; 1702 1.1 christos iarg[0] = SCARG(p, key); /* key_t */ 1703 1.1 christos uarg[1] = SCARG(p, size); /* size_t */ 1704 1.1 christos iarg[2] = SCARG(p, shmflg); /* int */ 1705 1.1 christos *n_args = 3; 1706 1.1 christos break; 1707 1.1 christos } 1708 1.1 christos /* sys_clock_gettime */ 1709 1.1 christos case 232: { 1710 1.23 christos const struct compat_50_sys_clock_gettime_args *p = params; 1711 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 1712 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec50 * */ 1713 1.1 christos *n_args = 2; 1714 1.1 christos break; 1715 1.1 christos } 1716 1.1 christos /* sys_clock_settime */ 1717 1.1 christos case 233: { 1718 1.23 christos const struct compat_50_sys_clock_settime_args *p = params; 1719 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 1720 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* const struct timespec50 * */ 1721 1.1 christos *n_args = 2; 1722 1.1 christos break; 1723 1.1 christos } 1724 1.1 christos /* sys_clock_getres */ 1725 1.1 christos case 234: { 1726 1.23 christos const struct compat_50_sys_clock_getres_args *p = params; 1727 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 1728 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec50 * */ 1729 1.1 christos *n_args = 2; 1730 1.1 christos break; 1731 1.1 christos } 1732 1.1 christos /* sys_timer_create */ 1733 1.1 christos case 235: { 1734 1.23 christos const struct sys_timer_create_args *p = params; 1735 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 1736 1.1 christos uarg[1] = (intptr_t) SCARG(p, evp); /* struct sigevent * */ 1737 1.1 christos uarg[2] = (intptr_t) SCARG(p, timerid); /* timer_t * */ 1738 1.1 christos *n_args = 3; 1739 1.1 christos break; 1740 1.1 christos } 1741 1.1 christos /* sys_timer_delete */ 1742 1.1 christos case 236: { 1743 1.23 christos const struct sys_timer_delete_args *p = params; 1744 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */ 1745 1.1 christos *n_args = 1; 1746 1.1 christos break; 1747 1.1 christos } 1748 1.1 christos /* sys_timer_settime */ 1749 1.1 christos case 237: { 1750 1.23 christos const struct compat_50_sys_timer_settime_args *p = params; 1751 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */ 1752 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 1753 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const struct itimerspec50 * */ 1754 1.1 christos uarg[3] = (intptr_t) SCARG(p, ovalue); /* struct itimerspec50 * */ 1755 1.1 christos *n_args = 4; 1756 1.1 christos break; 1757 1.1 christos } 1758 1.1 christos /* sys_timer_gettime */ 1759 1.1 christos case 238: { 1760 1.23 christos const struct compat_50_sys_timer_gettime_args *p = params; 1761 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */ 1762 1.1 christos uarg[1] = (intptr_t) SCARG(p, value); /* struct itimerspec50 * */ 1763 1.1 christos *n_args = 2; 1764 1.1 christos break; 1765 1.1 christos } 1766 1.1 christos /* sys_timer_getoverrun */ 1767 1.1 christos case 239: { 1768 1.23 christos const struct sys_timer_getoverrun_args *p = params; 1769 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */ 1770 1.1 christos *n_args = 1; 1771 1.1 christos break; 1772 1.1 christos } 1773 1.1 christos /* sys_nanosleep */ 1774 1.1 christos case 240: { 1775 1.23 christos const struct compat_50_sys_nanosleep_args *p = params; 1776 1.1 christos uarg[0] = (intptr_t) SCARG(p, rqtp); /* const struct timespec50 * */ 1777 1.1 christos uarg[1] = (intptr_t) SCARG(p, rmtp); /* struct timespec50 * */ 1778 1.1 christos *n_args = 2; 1779 1.1 christos break; 1780 1.1 christos } 1781 1.1 christos /* sys_fdatasync */ 1782 1.1 christos case 241: { 1783 1.23 christos const struct sys_fdatasync_args *p = params; 1784 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 1785 1.1 christos *n_args = 1; 1786 1.1 christos break; 1787 1.1 christos } 1788 1.1 christos /* sys_mlockall */ 1789 1.1 christos case 242: { 1790 1.23 christos const struct sys_mlockall_args *p = params; 1791 1.1 christos iarg[0] = SCARG(p, flags); /* int */ 1792 1.1 christos *n_args = 1; 1793 1.1 christos break; 1794 1.1 christos } 1795 1.1 christos /* sys_munlockall */ 1796 1.1 christos case 243: { 1797 1.1 christos *n_args = 0; 1798 1.1 christos break; 1799 1.1 christos } 1800 1.1 christos /* sys___sigtimedwait */ 1801 1.1 christos case 244: { 1802 1.23 christos const struct compat_50_sys___sigtimedwait_args *p = params; 1803 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */ 1804 1.1 christos uarg[1] = (intptr_t) SCARG(p, info); /* siginfo_t * */ 1805 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* struct timespec50 * */ 1806 1.1 christos *n_args = 3; 1807 1.1 christos break; 1808 1.1 christos } 1809 1.1 christos /* sys_sigqueueinfo */ 1810 1.1 christos case 245: { 1811 1.23 christos const struct sys_sigqueueinfo_args *p = params; 1812 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 1813 1.1 christos uarg[1] = (intptr_t) SCARG(p, info); /* const siginfo_t * */ 1814 1.1 christos *n_args = 2; 1815 1.1 christos break; 1816 1.1 christos } 1817 1.1 christos /* sys_modctl */ 1818 1.1 christos case 246: { 1819 1.23 christos const struct sys_modctl_args *p = params; 1820 1.1 christos iarg[0] = SCARG(p, cmd); /* int */ 1821 1.1 christos uarg[1] = (intptr_t) SCARG(p, arg); /* void * */ 1822 1.1 christos *n_args = 2; 1823 1.1 christos break; 1824 1.1 christos } 1825 1.1 christos /* sys__ksem_init */ 1826 1.1 christos case 247: { 1827 1.23 christos const struct sys__ksem_init_args *p = params; 1828 1.1 christos uarg[0] = SCARG(p, value); /* unsigned int */ 1829 1.1 christos uarg[1] = (intptr_t) SCARG(p, idp); /* intptr_t * */ 1830 1.1 christos *n_args = 2; 1831 1.1 christos break; 1832 1.1 christos } 1833 1.1 christos /* sys__ksem_open */ 1834 1.1 christos case 248: { 1835 1.23 christos const struct sys__ksem_open_args *p = params; 1836 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */ 1837 1.1 christos iarg[1] = SCARG(p, oflag); /* int */ 1838 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */ 1839 1.1 christos uarg[3] = SCARG(p, value); /* unsigned int */ 1840 1.1 christos uarg[4] = (intptr_t) SCARG(p, idp); /* intptr_t * */ 1841 1.1 christos *n_args = 5; 1842 1.1 christos break; 1843 1.1 christos } 1844 1.1 christos /* sys__ksem_unlink */ 1845 1.1 christos case 249: { 1846 1.23 christos const struct sys__ksem_unlink_args *p = params; 1847 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */ 1848 1.1 christos *n_args = 1; 1849 1.1 christos break; 1850 1.1 christos } 1851 1.1 christos /* sys__ksem_close */ 1852 1.1 christos case 250: { 1853 1.23 christos const struct sys__ksem_close_args *p = params; 1854 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */ 1855 1.1 christos *n_args = 1; 1856 1.1 christos break; 1857 1.1 christos } 1858 1.1 christos /* sys__ksem_post */ 1859 1.1 christos case 251: { 1860 1.23 christos const struct sys__ksem_post_args *p = params; 1861 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */ 1862 1.1 christos *n_args = 1; 1863 1.1 christos break; 1864 1.1 christos } 1865 1.1 christos /* sys__ksem_wait */ 1866 1.1 christos case 252: { 1867 1.23 christos const struct sys__ksem_wait_args *p = params; 1868 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */ 1869 1.1 christos *n_args = 1; 1870 1.1 christos break; 1871 1.1 christos } 1872 1.1 christos /* sys__ksem_trywait */ 1873 1.1 christos case 253: { 1874 1.23 christos const struct sys__ksem_trywait_args *p = params; 1875 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */ 1876 1.1 christos *n_args = 1; 1877 1.1 christos break; 1878 1.1 christos } 1879 1.1 christos /* sys__ksem_getvalue */ 1880 1.1 christos case 254: { 1881 1.23 christos const struct sys__ksem_getvalue_args *p = params; 1882 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */ 1883 1.1 christos uarg[1] = (intptr_t) SCARG(p, value); /* unsigned int * */ 1884 1.1 christos *n_args = 2; 1885 1.1 christos break; 1886 1.1 christos } 1887 1.1 christos /* sys__ksem_destroy */ 1888 1.1 christos case 255: { 1889 1.23 christos const struct sys__ksem_destroy_args *p = params; 1890 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */ 1891 1.1 christos *n_args = 1; 1892 1.1 christos break; 1893 1.1 christos } 1894 1.1 christos /* sys__ksem_timedwait */ 1895 1.1 christos case 256: { 1896 1.23 christos const struct sys__ksem_timedwait_args *p = params; 1897 1.1 christos iarg[0] = SCARG(p, id); /* intptr_t */ 1898 1.1 christos uarg[1] = (intptr_t) SCARG(p, abstime); /* const struct timespec * */ 1899 1.1 christos *n_args = 2; 1900 1.1 christos break; 1901 1.1 christos } 1902 1.1 christos /* sys_mq_open */ 1903 1.1 christos case 257: { 1904 1.23 christos const struct sys_mq_open_args *p = params; 1905 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */ 1906 1.1 christos iarg[1] = SCARG(p, oflag); /* int */ 1907 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */ 1908 1.1 christos uarg[3] = (intptr_t) SCARG(p, attr); /* struct mq_attr * */ 1909 1.1 christos *n_args = 4; 1910 1.1 christos break; 1911 1.1 christos } 1912 1.1 christos /* sys_mq_close */ 1913 1.1 christos case 258: { 1914 1.23 christos const struct sys_mq_close_args *p = params; 1915 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1916 1.1 christos *n_args = 1; 1917 1.1 christos break; 1918 1.1 christos } 1919 1.1 christos /* sys_mq_unlink */ 1920 1.1 christos case 259: { 1921 1.23 christos const struct sys_mq_unlink_args *p = params; 1922 1.1 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */ 1923 1.1 christos *n_args = 1; 1924 1.1 christos break; 1925 1.1 christos } 1926 1.1 christos /* sys_mq_getattr */ 1927 1.1 christos case 260: { 1928 1.23 christos const struct sys_mq_getattr_args *p = params; 1929 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1930 1.1 christos uarg[1] = (intptr_t) SCARG(p, mqstat); /* struct mq_attr * */ 1931 1.1 christos *n_args = 2; 1932 1.1 christos break; 1933 1.1 christos } 1934 1.1 christos /* sys_mq_setattr */ 1935 1.1 christos case 261: { 1936 1.23 christos const struct sys_mq_setattr_args *p = params; 1937 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1938 1.1 christos uarg[1] = (intptr_t) SCARG(p, mqstat); /* const struct mq_attr * */ 1939 1.1 christos uarg[2] = (intptr_t) SCARG(p, omqstat); /* struct mq_attr * */ 1940 1.1 christos *n_args = 3; 1941 1.1 christos break; 1942 1.1 christos } 1943 1.1 christos /* sys_mq_notify */ 1944 1.1 christos case 262: { 1945 1.23 christos const struct sys_mq_notify_args *p = params; 1946 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1947 1.1 christos uarg[1] = (intptr_t) SCARG(p, notification); /* const struct sigevent * */ 1948 1.1 christos *n_args = 2; 1949 1.1 christos break; 1950 1.1 christos } 1951 1.1 christos /* sys_mq_send */ 1952 1.1 christos case 263: { 1953 1.23 christos const struct sys_mq_send_args *p = params; 1954 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1955 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */ 1956 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */ 1957 1.1 christos uarg[3] = SCARG(p, msg_prio); /* unsigned */ 1958 1.1 christos *n_args = 4; 1959 1.1 christos break; 1960 1.1 christos } 1961 1.1 christos /* sys_mq_receive */ 1962 1.1 christos case 264: { 1963 1.23 christos const struct sys_mq_receive_args *p = params; 1964 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1965 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */ 1966 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */ 1967 1.1 christos uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */ 1968 1.1 christos *n_args = 4; 1969 1.1 christos break; 1970 1.1 christos } 1971 1.1 christos /* sys_mq_timedsend */ 1972 1.1 christos case 265: { 1973 1.23 christos const struct compat_50_sys_mq_timedsend_args *p = params; 1974 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1975 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */ 1976 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */ 1977 1.1 christos uarg[3] = SCARG(p, msg_prio); /* unsigned */ 1978 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec50 * */ 1979 1.1 christos *n_args = 5; 1980 1.1 christos break; 1981 1.1 christos } 1982 1.1 christos /* sys_mq_timedreceive */ 1983 1.1 christos case 266: { 1984 1.23 christos const struct compat_50_sys_mq_timedreceive_args *p = params; 1985 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 1986 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */ 1987 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */ 1988 1.1 christos uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */ 1989 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec50 * */ 1990 1.1 christos *n_args = 5; 1991 1.1 christos break; 1992 1.1 christos } 1993 1.48 thorpej /* sys_eventfd */ 1994 1.48 thorpej case 267: { 1995 1.48 thorpej const struct sys_eventfd_args *p = params; 1996 1.48 thorpej uarg[0] = SCARG(p, val); /* unsigned int */ 1997 1.48 thorpej iarg[1] = SCARG(p, flags); /* int */ 1998 1.48 thorpej *n_args = 2; 1999 1.48 thorpej break; 2000 1.48 thorpej } 2001 1.1 christos /* sys___posix_rename */ 2002 1.1 christos case 270: { 2003 1.23 christos const struct sys___posix_rename_args *p = params; 2004 1.1 christos uarg[0] = (intptr_t) SCARG(p, from); /* const char * */ 2005 1.1 christos uarg[1] = (intptr_t) SCARG(p, to); /* const char * */ 2006 1.1 christos *n_args = 2; 2007 1.1 christos break; 2008 1.1 christos } 2009 1.1 christos /* sys_swapctl */ 2010 1.1 christos case 271: { 2011 1.23 christos const struct sys_swapctl_args *p = params; 2012 1.1 christos iarg[0] = SCARG(p, cmd); /* int */ 2013 1.1 christos uarg[1] = (intptr_t) SCARG(p, arg); /* void * */ 2014 1.1 christos iarg[2] = SCARG(p, misc); /* int */ 2015 1.1 christos *n_args = 3; 2016 1.1 christos break; 2017 1.1 christos } 2018 1.1 christos /* sys_getdents */ 2019 1.1 christos case 272: { 2020 1.23 christos const struct compat_30_sys_getdents_args *p = params; 2021 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2022 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */ 2023 1.1 christos uarg[2] = SCARG(p, count); /* size_t */ 2024 1.1 christos *n_args = 3; 2025 1.1 christos break; 2026 1.1 christos } 2027 1.1 christos /* sys_minherit */ 2028 1.1 christos case 273: { 2029 1.23 christos const struct sys_minherit_args *p = params; 2030 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 2031 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 2032 1.1 christos iarg[2] = SCARG(p, inherit); /* int */ 2033 1.1 christos *n_args = 3; 2034 1.1 christos break; 2035 1.1 christos } 2036 1.1 christos /* sys_lchmod */ 2037 1.1 christos case 274: { 2038 1.23 christos const struct sys_lchmod_args *p = params; 2039 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2040 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 2041 1.1 christos *n_args = 2; 2042 1.1 christos break; 2043 1.1 christos } 2044 1.1 christos /* sys_lchown */ 2045 1.1 christos case 275: { 2046 1.23 christos const struct sys_lchown_args *p = params; 2047 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2048 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */ 2049 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */ 2050 1.1 christos *n_args = 3; 2051 1.1 christos break; 2052 1.1 christos } 2053 1.1 christos /* sys_lutimes */ 2054 1.1 christos case 276: { 2055 1.23 christos const struct compat_50_sys_lutimes_args *p = params; 2056 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2057 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */ 2058 1.1 christos *n_args = 2; 2059 1.1 christos break; 2060 1.1 christos } 2061 1.1 christos /* sys___msync13 */ 2062 1.1 christos case 277: { 2063 1.23 christos const struct sys___msync13_args *p = params; 2064 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 2065 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 2066 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 2067 1.1 christos *n_args = 3; 2068 1.1 christos break; 2069 1.1 christos } 2070 1.1 christos /* sys___stat13 */ 2071 1.1 christos case 278: { 2072 1.23 christos const struct compat_30_sys___stat13_args *p = params; 2073 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2074 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat13 * */ 2075 1.1 christos *n_args = 2; 2076 1.1 christos break; 2077 1.1 christos } 2078 1.1 christos /* sys___fstat13 */ 2079 1.1 christos case 279: { 2080 1.23 christos const struct compat_30_sys___fstat13_args *p = params; 2081 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2082 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat13 * */ 2083 1.1 christos *n_args = 2; 2084 1.1 christos break; 2085 1.1 christos } 2086 1.1 christos /* sys___lstat13 */ 2087 1.1 christos case 280: { 2088 1.23 christos const struct compat_30_sys___lstat13_args *p = params; 2089 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2090 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat13 * */ 2091 1.1 christos *n_args = 2; 2092 1.1 christos break; 2093 1.1 christos } 2094 1.1 christos /* sys___sigaltstack14 */ 2095 1.1 christos case 281: { 2096 1.23 christos const struct sys___sigaltstack14_args *p = params; 2097 1.49 thorpej uarg[0] = (intptr_t) SCARG(p, nss); /* const stack_t * */ 2098 1.49 thorpej uarg[1] = (intptr_t) SCARG(p, oss); /* stack_t * */ 2099 1.1 christos *n_args = 2; 2100 1.1 christos break; 2101 1.1 christos } 2102 1.1 christos /* sys___vfork14 */ 2103 1.1 christos case 282: { 2104 1.1 christos *n_args = 0; 2105 1.1 christos break; 2106 1.1 christos } 2107 1.1 christos /* sys___posix_chown */ 2108 1.1 christos case 283: { 2109 1.23 christos const struct sys___posix_chown_args *p = params; 2110 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2111 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */ 2112 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */ 2113 1.1 christos *n_args = 3; 2114 1.1 christos break; 2115 1.1 christos } 2116 1.1 christos /* sys___posix_fchown */ 2117 1.1 christos case 284: { 2118 1.23 christos const struct sys___posix_fchown_args *p = params; 2119 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2120 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */ 2121 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */ 2122 1.1 christos *n_args = 3; 2123 1.1 christos break; 2124 1.1 christos } 2125 1.1 christos /* sys___posix_lchown */ 2126 1.1 christos case 285: { 2127 1.23 christos const struct sys___posix_lchown_args *p = params; 2128 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2129 1.1 christos uarg[1] = SCARG(p, uid); /* uid_t */ 2130 1.1 christos iarg[2] = SCARG(p, gid); /* gid_t */ 2131 1.1 christos *n_args = 3; 2132 1.1 christos break; 2133 1.1 christos } 2134 1.1 christos /* sys_getsid */ 2135 1.1 christos case 286: { 2136 1.23 christos const struct sys_getsid_args *p = params; 2137 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 2138 1.1 christos *n_args = 1; 2139 1.1 christos break; 2140 1.1 christos } 2141 1.1 christos /* sys___clone */ 2142 1.1 christos case 287: { 2143 1.23 christos const struct sys___clone_args *p = params; 2144 1.1 christos iarg[0] = SCARG(p, flags); /* int */ 2145 1.1 christos uarg[1] = (intptr_t) SCARG(p, stack); /* void * */ 2146 1.1 christos *n_args = 2; 2147 1.1 christos break; 2148 1.1 christos } 2149 1.1 christos /* sys_fktrace */ 2150 1.1 christos case 288: { 2151 1.23 christos const struct sys_fktrace_args *p = params; 2152 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2153 1.1 christos iarg[1] = SCARG(p, ops); /* int */ 2154 1.1 christos iarg[2] = SCARG(p, facs); /* int */ 2155 1.1 christos iarg[3] = SCARG(p, pid); /* pid_t */ 2156 1.1 christos *n_args = 4; 2157 1.1 christos break; 2158 1.1 christos } 2159 1.1 christos /* sys_preadv */ 2160 1.1 christos case 289: { 2161 1.23 christos const struct sys_preadv_args *p = params; 2162 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2163 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */ 2164 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */ 2165 1.1 christos iarg[3] = SCARG(p, PAD); /* int */ 2166 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */ 2167 1.1 christos *n_args = 5; 2168 1.1 christos break; 2169 1.1 christos } 2170 1.1 christos /* sys_pwritev */ 2171 1.1 christos case 290: { 2172 1.23 christos const struct sys_pwritev_args *p = params; 2173 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2174 1.1 christos uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */ 2175 1.1 christos iarg[2] = SCARG(p, iovcnt); /* int */ 2176 1.1 christos iarg[3] = SCARG(p, PAD); /* int */ 2177 1.1 christos iarg[4] = SCARG(p, offset); /* off_t */ 2178 1.1 christos *n_args = 5; 2179 1.1 christos break; 2180 1.1 christos } 2181 1.1 christos /* sys___sigaction14 */ 2182 1.1 christos case 291: { 2183 1.23 christos const struct compat_16_sys___sigaction14_args *p = params; 2184 1.1 christos iarg[0] = SCARG(p, signum); /* int */ 2185 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction * */ 2186 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction * */ 2187 1.1 christos *n_args = 3; 2188 1.1 christos break; 2189 1.1 christos } 2190 1.1 christos /* sys___sigpending14 */ 2191 1.1 christos case 292: { 2192 1.23 christos const struct sys___sigpending14_args *p = params; 2193 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* sigset_t * */ 2194 1.1 christos *n_args = 1; 2195 1.1 christos break; 2196 1.1 christos } 2197 1.1 christos /* sys___sigprocmask14 */ 2198 1.1 christos case 293: { 2199 1.23 christos const struct sys___sigprocmask14_args *p = params; 2200 1.1 christos iarg[0] = SCARG(p, how); /* int */ 2201 1.1 christos uarg[1] = (intptr_t) SCARG(p, set); /* const sigset_t * */ 2202 1.1 christos uarg[2] = (intptr_t) SCARG(p, oset); /* sigset_t * */ 2203 1.1 christos *n_args = 3; 2204 1.1 christos break; 2205 1.1 christos } 2206 1.1 christos /* sys___sigsuspend14 */ 2207 1.1 christos case 294: { 2208 1.23 christos const struct sys___sigsuspend14_args *p = params; 2209 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */ 2210 1.1 christos *n_args = 1; 2211 1.1 christos break; 2212 1.1 christos } 2213 1.1 christos /* sys___sigreturn14 */ 2214 1.1 christos case 295: { 2215 1.23 christos const struct compat_16_sys___sigreturn14_args *p = params; 2216 1.1 christos uarg[0] = (intptr_t) SCARG(p, sigcntxp); /* struct sigcontext * */ 2217 1.1 christos *n_args = 1; 2218 1.1 christos break; 2219 1.1 christos } 2220 1.1 christos /* sys___getcwd */ 2221 1.1 christos case 296: { 2222 1.23 christos const struct sys___getcwd_args *p = params; 2223 1.1 christos uarg[0] = (intptr_t) SCARG(p, bufp); /* char * */ 2224 1.1 christos uarg[1] = SCARG(p, length); /* size_t */ 2225 1.1 christos *n_args = 2; 2226 1.1 christos break; 2227 1.1 christos } 2228 1.1 christos /* sys_fchroot */ 2229 1.1 christos case 297: { 2230 1.23 christos const struct sys_fchroot_args *p = params; 2231 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2232 1.1 christos *n_args = 1; 2233 1.1 christos break; 2234 1.1 christos } 2235 1.1 christos /* sys_fhopen */ 2236 1.1 christos case 298: { 2237 1.23 christos const struct compat_30_sys_fhopen_args *p = params; 2238 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */ 2239 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 2240 1.1 christos *n_args = 2; 2241 1.1 christos break; 2242 1.1 christos } 2243 1.1 christos /* sys_fhstat */ 2244 1.1 christos case 299: { 2245 1.23 christos const struct compat_30_sys_fhstat_args *p = params; 2246 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */ 2247 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat13 * */ 2248 1.1 christos *n_args = 2; 2249 1.1 christos break; 2250 1.1 christos } 2251 1.1 christos /* sys_fhstatfs */ 2252 1.1 christos case 300: { 2253 1.23 christos const struct compat_20_sys_fhstatfs_args *p = params; 2254 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */ 2255 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */ 2256 1.1 christos *n_args = 2; 2257 1.1 christos break; 2258 1.1 christos } 2259 1.1 christos /* sys_____semctl13 */ 2260 1.1 christos case 301: { 2261 1.23 christos const struct compat_50_sys_____semctl13_args *p = params; 2262 1.1 christos iarg[0] = SCARG(p, semid); /* int */ 2263 1.1 christos iarg[1] = SCARG(p, semnum); /* int */ 2264 1.1 christos iarg[2] = SCARG(p, cmd); /* int */ 2265 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */ 2266 1.1 christos *n_args = 4; 2267 1.1 christos break; 2268 1.1 christos } 2269 1.1 christos /* sys___msgctl13 */ 2270 1.1 christos case 302: { 2271 1.23 christos const struct compat_50_sys___msgctl13_args *p = params; 2272 1.1 christos iarg[0] = SCARG(p, msqid); /* int */ 2273 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 2274 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds * */ 2275 1.1 christos *n_args = 3; 2276 1.1 christos break; 2277 1.1 christos } 2278 1.1 christos /* sys___shmctl13 */ 2279 1.1 christos case 303: { 2280 1.23 christos const struct compat_50_sys___shmctl13_args *p = params; 2281 1.1 christos iarg[0] = SCARG(p, shmid); /* int */ 2282 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 2283 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds13 * */ 2284 1.1 christos *n_args = 3; 2285 1.1 christos break; 2286 1.1 christos } 2287 1.1 christos /* sys_lchflags */ 2288 1.1 christos case 304: { 2289 1.23 christos const struct sys_lchflags_args *p = params; 2290 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2291 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */ 2292 1.1 christos *n_args = 2; 2293 1.1 christos break; 2294 1.1 christos } 2295 1.1 christos /* sys_issetugid */ 2296 1.1 christos case 305: { 2297 1.1 christos *n_args = 0; 2298 1.1 christos break; 2299 1.1 christos } 2300 1.1 christos /* sys_utrace */ 2301 1.1 christos case 306: { 2302 1.23 christos const struct sys_utrace_args *p = params; 2303 1.1 christos uarg[0] = (intptr_t) SCARG(p, label); /* const char * */ 2304 1.1 christos uarg[1] = (intptr_t) SCARG(p, addr); /* void * */ 2305 1.1 christos uarg[2] = SCARG(p, len); /* size_t */ 2306 1.1 christos *n_args = 3; 2307 1.1 christos break; 2308 1.1 christos } 2309 1.1 christos /* sys_getcontext */ 2310 1.1 christos case 307: { 2311 1.23 christos const struct sys_getcontext_args *p = params; 2312 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp); /* struct __ucontext * */ 2313 1.1 christos *n_args = 1; 2314 1.1 christos break; 2315 1.1 christos } 2316 1.1 christos /* sys_setcontext */ 2317 1.1 christos case 308: { 2318 1.23 christos const struct sys_setcontext_args *p = params; 2319 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp); /* const struct __ucontext * */ 2320 1.1 christos *n_args = 1; 2321 1.1 christos break; 2322 1.1 christos } 2323 1.1 christos /* sys__lwp_create */ 2324 1.1 christos case 309: { 2325 1.23 christos const struct sys__lwp_create_args *p = params; 2326 1.1 christos uarg[0] = (intptr_t) SCARG(p, ucp); /* const struct __ucontext * */ 2327 1.1 christos uarg[1] = SCARG(p, flags); /* u_long */ 2328 1.1 christos uarg[2] = (intptr_t) SCARG(p, new_lwp); /* lwpid_t * */ 2329 1.1 christos *n_args = 3; 2330 1.1 christos break; 2331 1.1 christos } 2332 1.1 christos /* sys__lwp_exit */ 2333 1.1 christos case 310: { 2334 1.1 christos *n_args = 0; 2335 1.1 christos break; 2336 1.1 christos } 2337 1.1 christos /* sys__lwp_self */ 2338 1.1 christos case 311: { 2339 1.1 christos *n_args = 0; 2340 1.1 christos break; 2341 1.1 christos } 2342 1.1 christos /* sys__lwp_wait */ 2343 1.1 christos case 312: { 2344 1.23 christos const struct sys__lwp_wait_args *p = params; 2345 1.1 christos iarg[0] = SCARG(p, wait_for); /* lwpid_t */ 2346 1.1 christos uarg[1] = (intptr_t) SCARG(p, departed); /* lwpid_t * */ 2347 1.1 christos *n_args = 2; 2348 1.1 christos break; 2349 1.1 christos } 2350 1.1 christos /* sys__lwp_suspend */ 2351 1.1 christos case 313: { 2352 1.23 christos const struct sys__lwp_suspend_args *p = params; 2353 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2354 1.1 christos *n_args = 1; 2355 1.1 christos break; 2356 1.1 christos } 2357 1.1 christos /* sys__lwp_continue */ 2358 1.1 christos case 314: { 2359 1.23 christos const struct sys__lwp_continue_args *p = params; 2360 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2361 1.1 christos *n_args = 1; 2362 1.1 christos break; 2363 1.1 christos } 2364 1.1 christos /* sys__lwp_wakeup */ 2365 1.1 christos case 315: { 2366 1.23 christos const struct sys__lwp_wakeup_args *p = params; 2367 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2368 1.1 christos *n_args = 1; 2369 1.1 christos break; 2370 1.1 christos } 2371 1.1 christos /* sys__lwp_getprivate */ 2372 1.1 christos case 316: { 2373 1.1 christos *n_args = 0; 2374 1.1 christos break; 2375 1.1 christos } 2376 1.1 christos /* sys__lwp_setprivate */ 2377 1.1 christos case 317: { 2378 1.23 christos const struct sys__lwp_setprivate_args *p = params; 2379 1.1 christos uarg[0] = (intptr_t) SCARG(p, ptr); /* void * */ 2380 1.1 christos *n_args = 1; 2381 1.1 christos break; 2382 1.1 christos } 2383 1.1 christos /* sys__lwp_kill */ 2384 1.1 christos case 318: { 2385 1.23 christos const struct sys__lwp_kill_args *p = params; 2386 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2387 1.1 christos iarg[1] = SCARG(p, signo); /* int */ 2388 1.1 christos *n_args = 2; 2389 1.1 christos break; 2390 1.1 christos } 2391 1.1 christos /* sys__lwp_detach */ 2392 1.1 christos case 319: { 2393 1.23 christos const struct sys__lwp_detach_args *p = params; 2394 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2395 1.1 christos *n_args = 1; 2396 1.1 christos break; 2397 1.1 christos } 2398 1.1 christos /* sys__lwp_park */ 2399 1.1 christos case 320: { 2400 1.23 christos const struct compat_50_sys__lwp_park_args *p = params; 2401 1.1 christos uarg[0] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */ 2402 1.1 christos iarg[1] = SCARG(p, unpark); /* lwpid_t */ 2403 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */ 2404 1.1 christos uarg[3] = (intptr_t) SCARG(p, unparkhint); /* const void * */ 2405 1.1 christos *n_args = 4; 2406 1.1 christos break; 2407 1.1 christos } 2408 1.1 christos /* sys__lwp_unpark */ 2409 1.1 christos case 321: { 2410 1.23 christos const struct sys__lwp_unpark_args *p = params; 2411 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2412 1.1 christos uarg[1] = (intptr_t) SCARG(p, hint); /* const void * */ 2413 1.1 christos *n_args = 2; 2414 1.1 christos break; 2415 1.1 christos } 2416 1.1 christos /* sys__lwp_unpark_all */ 2417 1.1 christos case 322: { 2418 1.23 christos const struct sys__lwp_unpark_all_args *p = params; 2419 1.1 christos uarg[0] = (intptr_t) SCARG(p, targets); /* const lwpid_t * */ 2420 1.1 christos uarg[1] = SCARG(p, ntargets); /* size_t */ 2421 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */ 2422 1.1 christos *n_args = 3; 2423 1.1 christos break; 2424 1.1 christos } 2425 1.1 christos /* sys__lwp_setname */ 2426 1.1 christos case 323: { 2427 1.23 christos const struct sys__lwp_setname_args *p = params; 2428 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2429 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2430 1.1 christos *n_args = 2; 2431 1.1 christos break; 2432 1.1 christos } 2433 1.1 christos /* sys__lwp_getname */ 2434 1.1 christos case 324: { 2435 1.23 christos const struct sys__lwp_getname_args *p = params; 2436 1.1 christos iarg[0] = SCARG(p, target); /* lwpid_t */ 2437 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* char * */ 2438 1.1 christos uarg[2] = SCARG(p, len); /* size_t */ 2439 1.1 christos *n_args = 3; 2440 1.1 christos break; 2441 1.1 christos } 2442 1.1 christos /* sys__lwp_ctl */ 2443 1.1 christos case 325: { 2444 1.23 christos const struct sys__lwp_ctl_args *p = params; 2445 1.1 christos iarg[0] = SCARG(p, features); /* int */ 2446 1.1 christos uarg[1] = (intptr_t) SCARG(p, address); /* struct lwpctl ** */ 2447 1.1 christos *n_args = 2; 2448 1.1 christos break; 2449 1.1 christos } 2450 1.1 christos /* sys_sa_register */ 2451 1.1 christos case 330: { 2452 1.23 christos const struct compat_60_sys_sa_register_args *p = params; 2453 1.1 christos uarg[0] = (intptr_t) SCARG(p, newv); /* void * */ 2454 1.1 christos uarg[1] = (intptr_t) SCARG(p, oldv); /* void ** */ 2455 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 2456 1.1 christos iarg[3] = SCARG(p, stackinfo_offset); /* ssize_t */ 2457 1.1 christos *n_args = 4; 2458 1.1 christos break; 2459 1.1 christos } 2460 1.1 christos /* sys_sa_stacks */ 2461 1.1 christos case 331: { 2462 1.23 christos const struct compat_60_sys_sa_stacks_args *p = params; 2463 1.1 christos iarg[0] = SCARG(p, num); /* int */ 2464 1.1 christos uarg[1] = (intptr_t) SCARG(p, stacks); /* stack_t * */ 2465 1.1 christos *n_args = 2; 2466 1.1 christos break; 2467 1.1 christos } 2468 1.1 christos /* sys_sa_enable */ 2469 1.1 christos case 332: { 2470 1.1 christos *n_args = 0; 2471 1.1 christos break; 2472 1.1 christos } 2473 1.1 christos /* sys_sa_setconcurrency */ 2474 1.1 christos case 333: { 2475 1.23 christos const struct compat_60_sys_sa_setconcurrency_args *p = params; 2476 1.1 christos iarg[0] = SCARG(p, concurrency); /* int */ 2477 1.1 christos *n_args = 1; 2478 1.1 christos break; 2479 1.1 christos } 2480 1.1 christos /* sys_sa_yield */ 2481 1.1 christos case 334: { 2482 1.1 christos *n_args = 0; 2483 1.1 christos break; 2484 1.1 christos } 2485 1.1 christos /* sys_sa_preempt */ 2486 1.1 christos case 335: { 2487 1.23 christos const struct compat_60_sys_sa_preempt_args *p = params; 2488 1.1 christos iarg[0] = SCARG(p, sa_id); /* int */ 2489 1.1 christos *n_args = 1; 2490 1.1 christos break; 2491 1.1 christos } 2492 1.1 christos /* sys___sigaction_sigtramp */ 2493 1.1 christos case 340: { 2494 1.23 christos const struct sys___sigaction_sigtramp_args *p = params; 2495 1.1 christos iarg[0] = SCARG(p, signum); /* int */ 2496 1.1 christos uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction * */ 2497 1.1 christos uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction * */ 2498 1.1 christos uarg[3] = (intptr_t) SCARG(p, tramp); /* const void * */ 2499 1.1 christos iarg[4] = SCARG(p, vers); /* int */ 2500 1.1 christos *n_args = 5; 2501 1.1 christos break; 2502 1.1 christos } 2503 1.1 christos /* sys_rasctl */ 2504 1.1 christos case 343: { 2505 1.23 christos const struct sys_rasctl_args *p = params; 2506 1.1 christos uarg[0] = (intptr_t) SCARG(p, addr); /* void * */ 2507 1.1 christos uarg[1] = SCARG(p, len); /* size_t */ 2508 1.1 christos iarg[2] = SCARG(p, op); /* int */ 2509 1.1 christos *n_args = 3; 2510 1.1 christos break; 2511 1.1 christos } 2512 1.1 christos /* sys_kqueue */ 2513 1.1 christos case 344: { 2514 1.1 christos *n_args = 0; 2515 1.1 christos break; 2516 1.1 christos } 2517 1.1 christos /* sys_kevent */ 2518 1.1 christos case 345: { 2519 1.23 christos const struct compat_50_sys_kevent_args *p = params; 2520 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2521 1.51 christos uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent100 * */ 2522 1.1 christos uarg[2] = SCARG(p, nchanges); /* size_t */ 2523 1.51 christos uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent100 * */ 2524 1.1 christos uarg[4] = SCARG(p, nevents); /* size_t */ 2525 1.1 christos uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec50 * */ 2526 1.1 christos *n_args = 6; 2527 1.1 christos break; 2528 1.1 christos } 2529 1.1 christos /* sys__sched_setparam */ 2530 1.1 christos case 346: { 2531 1.23 christos const struct sys__sched_setparam_args *p = params; 2532 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 2533 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */ 2534 1.1 christos iarg[2] = SCARG(p, policy); /* int */ 2535 1.1 christos uarg[3] = (intptr_t) SCARG(p, params); /* const struct sched_param * */ 2536 1.1 christos *n_args = 4; 2537 1.1 christos break; 2538 1.1 christos } 2539 1.1 christos /* sys__sched_getparam */ 2540 1.1 christos case 347: { 2541 1.23 christos const struct sys__sched_getparam_args *p = params; 2542 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 2543 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */ 2544 1.1 christos uarg[2] = (intptr_t) SCARG(p, policy); /* int * */ 2545 1.1 christos uarg[3] = (intptr_t) SCARG(p, params); /* struct sched_param * */ 2546 1.1 christos *n_args = 4; 2547 1.1 christos break; 2548 1.1 christos } 2549 1.1 christos /* sys__sched_setaffinity */ 2550 1.1 christos case 348: { 2551 1.23 christos const struct sys__sched_setaffinity_args *p = params; 2552 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 2553 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */ 2554 1.1 christos uarg[2] = SCARG(p, size); /* size_t */ 2555 1.1 christos uarg[3] = (intptr_t) SCARG(p, cpuset); /* const cpuset_t * */ 2556 1.1 christos *n_args = 4; 2557 1.1 christos break; 2558 1.1 christos } 2559 1.1 christos /* sys__sched_getaffinity */ 2560 1.1 christos case 349: { 2561 1.23 christos const struct sys__sched_getaffinity_args *p = params; 2562 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 2563 1.1 christos iarg[1] = SCARG(p, lid); /* lwpid_t */ 2564 1.1 christos uarg[2] = SCARG(p, size); /* size_t */ 2565 1.1 christos uarg[3] = (intptr_t) SCARG(p, cpuset); /* cpuset_t * */ 2566 1.1 christos *n_args = 4; 2567 1.1 christos break; 2568 1.1 christos } 2569 1.1 christos /* sys_sched_yield */ 2570 1.1 christos case 350: { 2571 1.1 christos *n_args = 0; 2572 1.1 christos break; 2573 1.1 christos } 2574 1.21 christos /* sys__sched_protect */ 2575 1.21 christos case 351: { 2576 1.23 christos const struct sys__sched_protect_args *p = params; 2577 1.21 christos iarg[0] = SCARG(p, priority); /* int */ 2578 1.21 christos *n_args = 1; 2579 1.21 christos break; 2580 1.21 christos } 2581 1.1 christos /* sys_fsync_range */ 2582 1.1 christos case 354: { 2583 1.23 christos const struct sys_fsync_range_args *p = params; 2584 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2585 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 2586 1.1 christos iarg[2] = SCARG(p, start); /* off_t */ 2587 1.1 christos iarg[3] = SCARG(p, length); /* off_t */ 2588 1.1 christos *n_args = 4; 2589 1.1 christos break; 2590 1.1 christos } 2591 1.1 christos /* sys_uuidgen */ 2592 1.1 christos case 355: { 2593 1.23 christos const struct sys_uuidgen_args *p = params; 2594 1.1 christos uarg[0] = (intptr_t) SCARG(p, store); /* struct uuid * */ 2595 1.1 christos iarg[1] = SCARG(p, count); /* int */ 2596 1.1 christos *n_args = 2; 2597 1.1 christos break; 2598 1.1 christos } 2599 1.1 christos /* sys_getvfsstat */ 2600 1.1 christos case 356: { 2601 1.33 christos const struct compat_90_sys_getvfsstat_args *p = params; 2602 1.33 christos uarg[0] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */ 2603 1.1 christos uarg[1] = SCARG(p, bufsize); /* size_t */ 2604 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 2605 1.1 christos *n_args = 3; 2606 1.1 christos break; 2607 1.1 christos } 2608 1.1 christos /* sys_statvfs1 */ 2609 1.1 christos case 357: { 2610 1.33 christos const struct compat_90_sys_statvfs1_args *p = params; 2611 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2612 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */ 2613 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 2614 1.1 christos *n_args = 3; 2615 1.1 christos break; 2616 1.1 christos } 2617 1.1 christos /* sys_fstatvfs1 */ 2618 1.1 christos case 358: { 2619 1.33 christos const struct compat_90_sys_fstatvfs1_args *p = params; 2620 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2621 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */ 2622 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 2623 1.1 christos *n_args = 3; 2624 1.1 christos break; 2625 1.1 christos } 2626 1.1 christos /* sys_fhstatvfs1 */ 2627 1.1 christos case 359: { 2628 1.23 christos const struct compat_30_sys_fhstatvfs1_args *p = params; 2629 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */ 2630 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */ 2631 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 2632 1.1 christos *n_args = 3; 2633 1.1 christos break; 2634 1.1 christos } 2635 1.1 christos /* sys_extattrctl */ 2636 1.1 christos case 360: { 2637 1.23 christos const struct sys_extattrctl_args *p = params; 2638 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2639 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 2640 1.1 christos uarg[2] = (intptr_t) SCARG(p, filename); /* const char * */ 2641 1.1 christos iarg[3] = SCARG(p, attrnamespace); /* int */ 2642 1.1 christos uarg[4] = (intptr_t) SCARG(p, attrname); /* const char * */ 2643 1.1 christos *n_args = 5; 2644 1.1 christos break; 2645 1.1 christos } 2646 1.1 christos /* sys_extattr_set_file */ 2647 1.1 christos case 361: { 2648 1.23 christos const struct sys_extattr_set_file_args *p = params; 2649 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2650 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2651 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2652 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* const void * */ 2653 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */ 2654 1.1 christos *n_args = 5; 2655 1.1 christos break; 2656 1.1 christos } 2657 1.1 christos /* sys_extattr_get_file */ 2658 1.1 christos case 362: { 2659 1.23 christos const struct sys_extattr_get_file_args *p = params; 2660 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2661 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2662 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2663 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */ 2664 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */ 2665 1.1 christos *n_args = 5; 2666 1.1 christos break; 2667 1.1 christos } 2668 1.1 christos /* sys_extattr_delete_file */ 2669 1.1 christos case 363: { 2670 1.23 christos const struct sys_extattr_delete_file_args *p = params; 2671 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2672 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2673 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2674 1.1 christos *n_args = 3; 2675 1.1 christos break; 2676 1.1 christos } 2677 1.1 christos /* sys_extattr_set_fd */ 2678 1.1 christos case 364: { 2679 1.23 christos const struct sys_extattr_set_fd_args *p = params; 2680 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2681 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2682 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2683 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* const void * */ 2684 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */ 2685 1.1 christos *n_args = 5; 2686 1.1 christos break; 2687 1.1 christos } 2688 1.1 christos /* sys_extattr_get_fd */ 2689 1.1 christos case 365: { 2690 1.23 christos const struct sys_extattr_get_fd_args *p = params; 2691 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2692 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2693 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2694 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */ 2695 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */ 2696 1.1 christos *n_args = 5; 2697 1.1 christos break; 2698 1.1 christos } 2699 1.1 christos /* sys_extattr_delete_fd */ 2700 1.1 christos case 366: { 2701 1.23 christos const struct sys_extattr_delete_fd_args *p = params; 2702 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2703 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2704 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2705 1.1 christos *n_args = 3; 2706 1.1 christos break; 2707 1.1 christos } 2708 1.1 christos /* sys_extattr_set_link */ 2709 1.1 christos case 367: { 2710 1.23 christos const struct sys_extattr_set_link_args *p = params; 2711 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2712 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2713 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2714 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* const void * */ 2715 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */ 2716 1.1 christos *n_args = 5; 2717 1.1 christos break; 2718 1.1 christos } 2719 1.1 christos /* sys_extattr_get_link */ 2720 1.1 christos case 368: { 2721 1.23 christos const struct sys_extattr_get_link_args *p = params; 2722 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2723 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2724 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2725 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */ 2726 1.1 christos uarg[4] = SCARG(p, nbytes); /* size_t */ 2727 1.1 christos *n_args = 5; 2728 1.1 christos break; 2729 1.1 christos } 2730 1.1 christos /* sys_extattr_delete_link */ 2731 1.1 christos case 369: { 2732 1.23 christos const struct sys_extattr_delete_link_args *p = params; 2733 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2734 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2735 1.1 christos uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */ 2736 1.1 christos *n_args = 3; 2737 1.1 christos break; 2738 1.1 christos } 2739 1.1 christos /* sys_extattr_list_fd */ 2740 1.1 christos case 370: { 2741 1.23 christos const struct sys_extattr_list_fd_args *p = params; 2742 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2743 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2744 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */ 2745 1.1 christos uarg[3] = SCARG(p, nbytes); /* size_t */ 2746 1.1 christos *n_args = 4; 2747 1.1 christos break; 2748 1.1 christos } 2749 1.1 christos /* sys_extattr_list_file */ 2750 1.1 christos case 371: { 2751 1.23 christos const struct sys_extattr_list_file_args *p = params; 2752 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2753 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2754 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */ 2755 1.1 christos uarg[3] = SCARG(p, nbytes); /* size_t */ 2756 1.1 christos *n_args = 4; 2757 1.1 christos break; 2758 1.1 christos } 2759 1.1 christos /* sys_extattr_list_link */ 2760 1.1 christos case 372: { 2761 1.23 christos const struct sys_extattr_list_link_args *p = params; 2762 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2763 1.1 christos iarg[1] = SCARG(p, attrnamespace); /* int */ 2764 1.1 christos uarg[2] = (intptr_t) SCARG(p, data); /* void * */ 2765 1.1 christos uarg[3] = SCARG(p, nbytes); /* size_t */ 2766 1.1 christos *n_args = 4; 2767 1.1 christos break; 2768 1.1 christos } 2769 1.1 christos /* sys_pselect */ 2770 1.1 christos case 373: { 2771 1.23 christos const struct compat_50_sys_pselect_args *p = params; 2772 1.1 christos iarg[0] = SCARG(p, nd); /* int */ 2773 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */ 2774 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */ 2775 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */ 2776 1.1 christos uarg[4] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */ 2777 1.1 christos uarg[5] = (intptr_t) SCARG(p, mask); /* const sigset_t * */ 2778 1.1 christos *n_args = 6; 2779 1.1 christos break; 2780 1.1 christos } 2781 1.1 christos /* sys_pollts */ 2782 1.1 christos case 374: { 2783 1.23 christos const struct compat_50_sys_pollts_args *p = params; 2784 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */ 2785 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */ 2786 1.1 christos uarg[2] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */ 2787 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */ 2788 1.1 christos *n_args = 4; 2789 1.1 christos break; 2790 1.1 christos } 2791 1.1 christos /* sys_setxattr */ 2792 1.1 christos case 375: { 2793 1.23 christos const struct sys_setxattr_args *p = params; 2794 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2795 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2796 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const void * */ 2797 1.1 christos uarg[3] = SCARG(p, size); /* size_t */ 2798 1.1 christos iarg[4] = SCARG(p, flags); /* int */ 2799 1.1 christos *n_args = 5; 2800 1.1 christos break; 2801 1.1 christos } 2802 1.1 christos /* sys_lsetxattr */ 2803 1.1 christos case 376: { 2804 1.23 christos const struct sys_lsetxattr_args *p = params; 2805 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2806 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2807 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const void * */ 2808 1.1 christos uarg[3] = SCARG(p, size); /* size_t */ 2809 1.1 christos iarg[4] = SCARG(p, flags); /* int */ 2810 1.1 christos *n_args = 5; 2811 1.1 christos break; 2812 1.1 christos } 2813 1.1 christos /* sys_fsetxattr */ 2814 1.1 christos case 377: { 2815 1.23 christos const struct sys_fsetxattr_args *p = params; 2816 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2817 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2818 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const void * */ 2819 1.1 christos uarg[3] = SCARG(p, size); /* size_t */ 2820 1.1 christos iarg[4] = SCARG(p, flags); /* int */ 2821 1.1 christos *n_args = 5; 2822 1.1 christos break; 2823 1.1 christos } 2824 1.1 christos /* sys_getxattr */ 2825 1.1 christos case 378: { 2826 1.23 christos const struct sys_getxattr_args *p = params; 2827 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2828 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2829 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* void * */ 2830 1.1 christos uarg[3] = SCARG(p, size); /* size_t */ 2831 1.1 christos *n_args = 4; 2832 1.1 christos break; 2833 1.1 christos } 2834 1.1 christos /* sys_lgetxattr */ 2835 1.1 christos case 379: { 2836 1.23 christos const struct sys_lgetxattr_args *p = params; 2837 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2838 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2839 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* void * */ 2840 1.1 christos uarg[3] = SCARG(p, size); /* size_t */ 2841 1.1 christos *n_args = 4; 2842 1.1 christos break; 2843 1.1 christos } 2844 1.1 christos /* sys_fgetxattr */ 2845 1.1 christos case 380: { 2846 1.23 christos const struct sys_fgetxattr_args *p = params; 2847 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2848 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2849 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* void * */ 2850 1.1 christos uarg[3] = SCARG(p, size); /* size_t */ 2851 1.1 christos *n_args = 4; 2852 1.1 christos break; 2853 1.1 christos } 2854 1.1 christos /* sys_listxattr */ 2855 1.1 christos case 381: { 2856 1.23 christos const struct sys_listxattr_args *p = params; 2857 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2858 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* char * */ 2859 1.1 christos uarg[2] = SCARG(p, size); /* size_t */ 2860 1.1 christos *n_args = 3; 2861 1.1 christos break; 2862 1.1 christos } 2863 1.1 christos /* sys_llistxattr */ 2864 1.1 christos case 382: { 2865 1.23 christos const struct sys_llistxattr_args *p = params; 2866 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2867 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* char * */ 2868 1.1 christos uarg[2] = SCARG(p, size); /* size_t */ 2869 1.1 christos *n_args = 3; 2870 1.1 christos break; 2871 1.1 christos } 2872 1.1 christos /* sys_flistxattr */ 2873 1.1 christos case 383: { 2874 1.23 christos const struct sys_flistxattr_args *p = params; 2875 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2876 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* char * */ 2877 1.1 christos uarg[2] = SCARG(p, size); /* size_t */ 2878 1.1 christos *n_args = 3; 2879 1.1 christos break; 2880 1.1 christos } 2881 1.1 christos /* sys_removexattr */ 2882 1.1 christos case 384: { 2883 1.23 christos const struct sys_removexattr_args *p = params; 2884 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2885 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2886 1.1 christos *n_args = 2; 2887 1.1 christos break; 2888 1.1 christos } 2889 1.1 christos /* sys_lremovexattr */ 2890 1.1 christos case 385: { 2891 1.23 christos const struct sys_lremovexattr_args *p = params; 2892 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2893 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2894 1.1 christos *n_args = 2; 2895 1.1 christos break; 2896 1.1 christos } 2897 1.1 christos /* sys_fremovexattr */ 2898 1.1 christos case 386: { 2899 1.23 christos const struct sys_fremovexattr_args *p = params; 2900 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2901 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* const char * */ 2902 1.1 christos *n_args = 2; 2903 1.1 christos break; 2904 1.1 christos } 2905 1.1 christos /* sys___stat30 */ 2906 1.1 christos case 387: { 2907 1.23 christos const struct compat_50_sys___stat30_args *p = params; 2908 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2909 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat30 * */ 2910 1.1 christos *n_args = 2; 2911 1.1 christos break; 2912 1.1 christos } 2913 1.1 christos /* sys___fstat30 */ 2914 1.1 christos case 388: { 2915 1.23 christos const struct compat_50_sys___fstat30_args *p = params; 2916 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2917 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat30 * */ 2918 1.1 christos *n_args = 2; 2919 1.1 christos break; 2920 1.1 christos } 2921 1.1 christos /* sys___lstat30 */ 2922 1.1 christos case 389: { 2923 1.23 christos const struct compat_50_sys___lstat30_args *p = params; 2924 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 2925 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat30 * */ 2926 1.1 christos *n_args = 2; 2927 1.1 christos break; 2928 1.1 christos } 2929 1.1 christos /* sys___getdents30 */ 2930 1.1 christos case 390: { 2931 1.23 christos const struct sys___getdents30_args *p = params; 2932 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 2933 1.1 christos uarg[1] = (intptr_t) SCARG(p, buf); /* char * */ 2934 1.1 christos uarg[2] = SCARG(p, count); /* size_t */ 2935 1.1 christos *n_args = 3; 2936 1.1 christos break; 2937 1.1 christos } 2938 1.1 christos /* sys___fhstat30 */ 2939 1.1 christos case 392: { 2940 1.23 christos const struct compat_30_sys___fhstat30_args *p = params; 2941 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */ 2942 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat30 * */ 2943 1.1 christos *n_args = 2; 2944 1.1 christos break; 2945 1.1 christos } 2946 1.1 christos /* sys___ntp_gettime30 */ 2947 1.1 christos case 393: { 2948 1.23 christos const struct compat_50_sys___ntp_gettime30_args *p = params; 2949 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval50 * */ 2950 1.1 christos *n_args = 1; 2951 1.1 christos break; 2952 1.1 christos } 2953 1.1 christos /* sys___socket30 */ 2954 1.1 christos case 394: { 2955 1.23 christos const struct sys___socket30_args *p = params; 2956 1.1 christos iarg[0] = SCARG(p, domain); /* int */ 2957 1.1 christos iarg[1] = SCARG(p, type); /* int */ 2958 1.1 christos iarg[2] = SCARG(p, protocol); /* int */ 2959 1.1 christos *n_args = 3; 2960 1.1 christos break; 2961 1.1 christos } 2962 1.1 christos /* sys___getfh30 */ 2963 1.1 christos case 395: { 2964 1.23 christos const struct sys___getfh30_args *p = params; 2965 1.1 christos uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */ 2966 1.1 christos uarg[1] = (intptr_t) SCARG(p, fhp); /* void * */ 2967 1.1 christos uarg[2] = (intptr_t) SCARG(p, fh_size); /* size_t * */ 2968 1.1 christos *n_args = 3; 2969 1.1 christos break; 2970 1.1 christos } 2971 1.1 christos /* sys___fhopen40 */ 2972 1.1 christos case 396: { 2973 1.23 christos const struct sys___fhopen40_args *p = params; 2974 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */ 2975 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */ 2976 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 2977 1.1 christos *n_args = 3; 2978 1.1 christos break; 2979 1.1 christos } 2980 1.33 christos /* sys_fhstatvfs1 */ 2981 1.1 christos case 397: { 2982 1.33 christos const struct compat_90_sys_fhstatvfs1_args *p = params; 2983 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */ 2984 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */ 2985 1.33 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */ 2986 1.1 christos iarg[3] = SCARG(p, flags); /* int */ 2987 1.1 christos *n_args = 4; 2988 1.1 christos break; 2989 1.1 christos } 2990 1.1 christos /* sys___fhstat40 */ 2991 1.1 christos case 398: { 2992 1.23 christos const struct compat_50_sys___fhstat40_args *p = params; 2993 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */ 2994 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */ 2995 1.1 christos uarg[2] = (intptr_t) SCARG(p, sb); /* struct stat30 * */ 2996 1.1 christos *n_args = 3; 2997 1.1 christos break; 2998 1.1 christos } 2999 1.1 christos /* sys_aio_cancel */ 3000 1.1 christos case 399: { 3001 1.23 christos const struct sys_aio_cancel_args *p = params; 3002 1.1 christos iarg[0] = SCARG(p, fildes); /* int */ 3003 1.1 christos uarg[1] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */ 3004 1.1 christos *n_args = 2; 3005 1.1 christos break; 3006 1.1 christos } 3007 1.1 christos /* sys_aio_error */ 3008 1.1 christos case 400: { 3009 1.23 christos const struct sys_aio_error_args *p = params; 3010 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* const struct aiocb * */ 3011 1.1 christos *n_args = 1; 3012 1.1 christos break; 3013 1.1 christos } 3014 1.1 christos /* sys_aio_fsync */ 3015 1.1 christos case 401: { 3016 1.23 christos const struct sys_aio_fsync_args *p = params; 3017 1.1 christos iarg[0] = SCARG(p, op); /* int */ 3018 1.1 christos uarg[1] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */ 3019 1.1 christos *n_args = 2; 3020 1.1 christos break; 3021 1.1 christos } 3022 1.1 christos /* sys_aio_read */ 3023 1.1 christos case 402: { 3024 1.23 christos const struct sys_aio_read_args *p = params; 3025 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */ 3026 1.1 christos *n_args = 1; 3027 1.1 christos break; 3028 1.1 christos } 3029 1.1 christos /* sys_aio_return */ 3030 1.1 christos case 403: { 3031 1.23 christos const struct sys_aio_return_args *p = params; 3032 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */ 3033 1.1 christos *n_args = 1; 3034 1.1 christos break; 3035 1.1 christos } 3036 1.1 christos /* sys_aio_suspend */ 3037 1.1 christos case 404: { 3038 1.23 christos const struct compat_50_sys_aio_suspend_args *p = params; 3039 1.1 christos uarg[0] = (intptr_t) SCARG(p, list); /* const struct aiocb *const * */ 3040 1.1 christos iarg[1] = SCARG(p, nent); /* int */ 3041 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* const struct timespec50 * */ 3042 1.1 christos *n_args = 3; 3043 1.1 christos break; 3044 1.1 christos } 3045 1.1 christos /* sys_aio_write */ 3046 1.1 christos case 405: { 3047 1.23 christos const struct sys_aio_write_args *p = params; 3048 1.1 christos uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */ 3049 1.1 christos *n_args = 1; 3050 1.1 christos break; 3051 1.1 christos } 3052 1.1 christos /* sys_lio_listio */ 3053 1.1 christos case 406: { 3054 1.23 christos const struct sys_lio_listio_args *p = params; 3055 1.1 christos iarg[0] = SCARG(p, mode); /* int */ 3056 1.1 christos uarg[1] = (intptr_t) SCARG(p, list); /* struct aiocb *const * */ 3057 1.1 christos iarg[2] = SCARG(p, nent); /* int */ 3058 1.1 christos uarg[3] = (intptr_t) SCARG(p, sig); /* struct sigevent * */ 3059 1.1 christos *n_args = 4; 3060 1.1 christos break; 3061 1.1 christos } 3062 1.1 christos /* sys___mount50 */ 3063 1.1 christos case 410: { 3064 1.23 christos const struct sys___mount50_args *p = params; 3065 1.1 christos uarg[0] = (intptr_t) SCARG(p, type); /* const char * */ 3066 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3067 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 3068 1.1 christos uarg[3] = (intptr_t) SCARG(p, data); /* void * */ 3069 1.1 christos uarg[4] = SCARG(p, data_len); /* size_t */ 3070 1.1 christos *n_args = 5; 3071 1.1 christos break; 3072 1.1 christos } 3073 1.1 christos /* sys_mremap */ 3074 1.1 christos case 411: { 3075 1.23 christos const struct sys_mremap_args *p = params; 3076 1.1 christos uarg[0] = (intptr_t) SCARG(p, old_address); /* void * */ 3077 1.1 christos uarg[1] = SCARG(p, old_size); /* size_t */ 3078 1.1 christos uarg[2] = (intptr_t) SCARG(p, new_address); /* void * */ 3079 1.1 christos uarg[3] = SCARG(p, new_size); /* size_t */ 3080 1.1 christos iarg[4] = SCARG(p, flags); /* int */ 3081 1.1 christos *n_args = 5; 3082 1.1 christos break; 3083 1.1 christos } 3084 1.1 christos /* sys_pset_create */ 3085 1.1 christos case 412: { 3086 1.23 christos const struct sys_pset_create_args *p = params; 3087 1.1 christos uarg[0] = (intptr_t) SCARG(p, psid); /* psetid_t * */ 3088 1.1 christos *n_args = 1; 3089 1.1 christos break; 3090 1.1 christos } 3091 1.1 christos /* sys_pset_destroy */ 3092 1.1 christos case 413: { 3093 1.23 christos const struct sys_pset_destroy_args *p = params; 3094 1.1 christos iarg[0] = SCARG(p, psid); /* psetid_t */ 3095 1.1 christos *n_args = 1; 3096 1.1 christos break; 3097 1.1 christos } 3098 1.1 christos /* sys_pset_assign */ 3099 1.1 christos case 414: { 3100 1.23 christos const struct sys_pset_assign_args *p = params; 3101 1.1 christos iarg[0] = SCARG(p, psid); /* psetid_t */ 3102 1.1 christos iarg[1] = SCARG(p, cpuid); /* cpuid_t */ 3103 1.1 christos uarg[2] = (intptr_t) SCARG(p, opsid); /* psetid_t * */ 3104 1.1 christos *n_args = 3; 3105 1.1 christos break; 3106 1.1 christos } 3107 1.1 christos /* sys__pset_bind */ 3108 1.1 christos case 415: { 3109 1.23 christos const struct sys__pset_bind_args *p = params; 3110 1.1 christos iarg[0] = SCARG(p, idtype); /* idtype_t */ 3111 1.1 christos iarg[1] = SCARG(p, first_id); /* id_t */ 3112 1.1 christos iarg[2] = SCARG(p, second_id); /* id_t */ 3113 1.1 christos iarg[3] = SCARG(p, psid); /* psetid_t */ 3114 1.1 christos uarg[4] = (intptr_t) SCARG(p, opsid); /* psetid_t * */ 3115 1.1 christos *n_args = 5; 3116 1.1 christos break; 3117 1.1 christos } 3118 1.1 christos /* sys___posix_fadvise50 */ 3119 1.1 christos case 416: { 3120 1.23 christos const struct sys___posix_fadvise50_args *p = params; 3121 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3122 1.1 christos iarg[1] = SCARG(p, PAD); /* int */ 3123 1.1 christos iarg[2] = SCARG(p, offset); /* off_t */ 3124 1.1 christos iarg[3] = SCARG(p, len); /* off_t */ 3125 1.1 christos iarg[4] = SCARG(p, advice); /* int */ 3126 1.1 christos *n_args = 5; 3127 1.1 christos break; 3128 1.1 christos } 3129 1.1 christos /* sys___select50 */ 3130 1.1 christos case 417: { 3131 1.23 christos const struct sys___select50_args *p = params; 3132 1.1 christos iarg[0] = SCARG(p, nd); /* int */ 3133 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */ 3134 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */ 3135 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */ 3136 1.1 christos uarg[4] = (intptr_t) SCARG(p, tv); /* struct timeval * */ 3137 1.1 christos *n_args = 5; 3138 1.1 christos break; 3139 1.1 christos } 3140 1.1 christos /* sys___gettimeofday50 */ 3141 1.1 christos case 418: { 3142 1.23 christos const struct sys___gettimeofday50_args *p = params; 3143 1.1 christos uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval * */ 3144 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* void * */ 3145 1.1 christos *n_args = 2; 3146 1.1 christos break; 3147 1.1 christos } 3148 1.1 christos /* sys___settimeofday50 */ 3149 1.1 christos case 419: { 3150 1.23 christos const struct sys___settimeofday50_args *p = params; 3151 1.1 christos uarg[0] = (intptr_t) SCARG(p, tv); /* const struct timeval * */ 3152 1.1 christos uarg[1] = (intptr_t) SCARG(p, tzp); /* const void * */ 3153 1.1 christos *n_args = 2; 3154 1.1 christos break; 3155 1.1 christos } 3156 1.1 christos /* sys___utimes50 */ 3157 1.1 christos case 420: { 3158 1.23 christos const struct sys___utimes50_args *p = params; 3159 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3160 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */ 3161 1.1 christos *n_args = 2; 3162 1.1 christos break; 3163 1.1 christos } 3164 1.1 christos /* sys___adjtime50 */ 3165 1.1 christos case 421: { 3166 1.23 christos const struct sys___adjtime50_args *p = params; 3167 1.1 christos uarg[0] = (intptr_t) SCARG(p, delta); /* const struct timeval * */ 3168 1.1 christos uarg[1] = (intptr_t) SCARG(p, olddelta); /* struct timeval * */ 3169 1.1 christos *n_args = 2; 3170 1.1 christos break; 3171 1.1 christos } 3172 1.1 christos /* sys___lfs_segwait50 */ 3173 1.1 christos case 422: { 3174 1.23 christos const struct sys___lfs_segwait50_args *p = params; 3175 1.1 christos uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */ 3176 1.1 christos uarg[1] = (intptr_t) SCARG(p, tv); /* struct timeval * */ 3177 1.1 christos *n_args = 2; 3178 1.1 christos break; 3179 1.1 christos } 3180 1.1 christos /* sys___futimes50 */ 3181 1.1 christos case 423: { 3182 1.23 christos const struct sys___futimes50_args *p = params; 3183 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3184 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */ 3185 1.1 christos *n_args = 2; 3186 1.1 christos break; 3187 1.1 christos } 3188 1.1 christos /* sys___lutimes50 */ 3189 1.1 christos case 424: { 3190 1.23 christos const struct sys___lutimes50_args *p = params; 3191 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3192 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */ 3193 1.1 christos *n_args = 2; 3194 1.1 christos break; 3195 1.1 christos } 3196 1.1 christos /* sys___setitimer50 */ 3197 1.1 christos case 425: { 3198 1.23 christos const struct sys___setitimer50_args *p = params; 3199 1.1 christos iarg[0] = SCARG(p, which); /* int */ 3200 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* const struct itimerval * */ 3201 1.1 christos uarg[2] = (intptr_t) SCARG(p, oitv); /* struct itimerval * */ 3202 1.1 christos *n_args = 3; 3203 1.1 christos break; 3204 1.1 christos } 3205 1.1 christos /* sys___getitimer50 */ 3206 1.1 christos case 426: { 3207 1.23 christos const struct sys___getitimer50_args *p = params; 3208 1.1 christos iarg[0] = SCARG(p, which); /* int */ 3209 1.1 christos uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval * */ 3210 1.1 christos *n_args = 2; 3211 1.1 christos break; 3212 1.1 christos } 3213 1.1 christos /* sys___clock_gettime50 */ 3214 1.1 christos case 427: { 3215 1.23 christos const struct sys___clock_gettime50_args *p = params; 3216 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 3217 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec * */ 3218 1.1 christos *n_args = 2; 3219 1.1 christos break; 3220 1.1 christos } 3221 1.1 christos /* sys___clock_settime50 */ 3222 1.1 christos case 428: { 3223 1.23 christos const struct sys___clock_settime50_args *p = params; 3224 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 3225 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* const struct timespec * */ 3226 1.1 christos *n_args = 2; 3227 1.1 christos break; 3228 1.1 christos } 3229 1.1 christos /* sys___clock_getres50 */ 3230 1.1 christos case 429: { 3231 1.23 christos const struct sys___clock_getres50_args *p = params; 3232 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 3233 1.1 christos uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec * */ 3234 1.1 christos *n_args = 2; 3235 1.1 christos break; 3236 1.1 christos } 3237 1.1 christos /* sys___nanosleep50 */ 3238 1.1 christos case 430: { 3239 1.23 christos const struct sys___nanosleep50_args *p = params; 3240 1.1 christos uarg[0] = (intptr_t) SCARG(p, rqtp); /* const struct timespec * */ 3241 1.1 christos uarg[1] = (intptr_t) SCARG(p, rmtp); /* struct timespec * */ 3242 1.1 christos *n_args = 2; 3243 1.1 christos break; 3244 1.1 christos } 3245 1.1 christos /* sys_____sigtimedwait50 */ 3246 1.1 christos case 431: { 3247 1.23 christos const struct sys_____sigtimedwait50_args *p = params; 3248 1.1 christos uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */ 3249 1.1 christos uarg[1] = (intptr_t) SCARG(p, info); /* siginfo_t * */ 3250 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* struct timespec * */ 3251 1.1 christos *n_args = 3; 3252 1.1 christos break; 3253 1.1 christos } 3254 1.1 christos /* sys___mq_timedsend50 */ 3255 1.1 christos case 432: { 3256 1.23 christos const struct sys___mq_timedsend50_args *p = params; 3257 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 3258 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */ 3259 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */ 3260 1.1 christos uarg[3] = SCARG(p, msg_prio); /* unsigned */ 3261 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec * */ 3262 1.1 christos *n_args = 5; 3263 1.1 christos break; 3264 1.1 christos } 3265 1.1 christos /* sys___mq_timedreceive50 */ 3266 1.1 christos case 433: { 3267 1.23 christos const struct sys___mq_timedreceive50_args *p = params; 3268 1.1 christos iarg[0] = SCARG(p, mqdes); /* mqd_t */ 3269 1.1 christos uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */ 3270 1.1 christos uarg[2] = SCARG(p, msg_len); /* size_t */ 3271 1.1 christos uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */ 3272 1.1 christos uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec * */ 3273 1.1 christos *n_args = 5; 3274 1.1 christos break; 3275 1.1 christos } 3276 1.1 christos /* sys__lwp_park */ 3277 1.1 christos case 434: { 3278 1.23 christos const struct compat_60_sys__lwp_park_args *p = params; 3279 1.1 christos uarg[0] = (intptr_t) SCARG(p, ts); /* const struct timespec * */ 3280 1.1 christos iarg[1] = SCARG(p, unpark); /* lwpid_t */ 3281 1.1 christos uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */ 3282 1.1 christos uarg[3] = (intptr_t) SCARG(p, unparkhint); /* const void * */ 3283 1.1 christos *n_args = 4; 3284 1.1 christos break; 3285 1.1 christos } 3286 1.1 christos /* sys___kevent50 */ 3287 1.1 christos case 435: { 3288 1.51 christos const struct compat_100_sys___kevent50_args *p = params; 3289 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3290 1.51 christos uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent100 * */ 3291 1.1 christos uarg[2] = SCARG(p, nchanges); /* size_t */ 3292 1.51 christos uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent100 * */ 3293 1.1 christos uarg[4] = SCARG(p, nevents); /* size_t */ 3294 1.1 christos uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */ 3295 1.1 christos *n_args = 6; 3296 1.1 christos break; 3297 1.1 christos } 3298 1.1 christos /* sys___pselect50 */ 3299 1.1 christos case 436: { 3300 1.23 christos const struct sys___pselect50_args *p = params; 3301 1.1 christos iarg[0] = SCARG(p, nd); /* int */ 3302 1.1 christos uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */ 3303 1.1 christos uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */ 3304 1.1 christos uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */ 3305 1.1 christos uarg[4] = (intptr_t) SCARG(p, ts); /* const struct timespec * */ 3306 1.1 christos uarg[5] = (intptr_t) SCARG(p, mask); /* const sigset_t * */ 3307 1.1 christos *n_args = 6; 3308 1.1 christos break; 3309 1.1 christos } 3310 1.1 christos /* sys___pollts50 */ 3311 1.1 christos case 437: { 3312 1.23 christos const struct sys___pollts50_args *p = params; 3313 1.1 christos uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */ 3314 1.1 christos uarg[1] = SCARG(p, nfds); /* u_int */ 3315 1.1 christos uarg[2] = (intptr_t) SCARG(p, ts); /* const struct timespec * */ 3316 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */ 3317 1.1 christos *n_args = 4; 3318 1.1 christos break; 3319 1.1 christos } 3320 1.1 christos /* sys___aio_suspend50 */ 3321 1.1 christos case 438: { 3322 1.23 christos const struct sys___aio_suspend50_args *p = params; 3323 1.1 christos uarg[0] = (intptr_t) SCARG(p, list); /* const struct aiocb *const * */ 3324 1.1 christos iarg[1] = SCARG(p, nent); /* int */ 3325 1.1 christos uarg[2] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */ 3326 1.1 christos *n_args = 3; 3327 1.1 christos break; 3328 1.1 christos } 3329 1.1 christos /* sys___stat50 */ 3330 1.1 christos case 439: { 3331 1.23 christos const struct sys___stat50_args *p = params; 3332 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3333 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat * */ 3334 1.1 christos *n_args = 2; 3335 1.1 christos break; 3336 1.1 christos } 3337 1.1 christos /* sys___fstat50 */ 3338 1.1 christos case 440: { 3339 1.23 christos const struct sys___fstat50_args *p = params; 3340 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3341 1.1 christos uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat * */ 3342 1.1 christos *n_args = 2; 3343 1.1 christos break; 3344 1.1 christos } 3345 1.1 christos /* sys___lstat50 */ 3346 1.1 christos case 441: { 3347 1.23 christos const struct sys___lstat50_args *p = params; 3348 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3349 1.1 christos uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat * */ 3350 1.1 christos *n_args = 2; 3351 1.1 christos break; 3352 1.1 christos } 3353 1.1 christos /* sys_____semctl50 */ 3354 1.1 christos case 442: { 3355 1.23 christos const struct sys_____semctl50_args *p = params; 3356 1.1 christos iarg[0] = SCARG(p, semid); /* int */ 3357 1.1 christos iarg[1] = SCARG(p, semnum); /* int */ 3358 1.1 christos iarg[2] = SCARG(p, cmd); /* int */ 3359 1.1 christos uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */ 3360 1.1 christos *n_args = 4; 3361 1.1 christos break; 3362 1.1 christos } 3363 1.1 christos /* sys___shmctl50 */ 3364 1.1 christos case 443: { 3365 1.23 christos const struct sys___shmctl50_args *p = params; 3366 1.1 christos iarg[0] = SCARG(p, shmid); /* int */ 3367 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 3368 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds * */ 3369 1.1 christos *n_args = 3; 3370 1.1 christos break; 3371 1.1 christos } 3372 1.1 christos /* sys___msgctl50 */ 3373 1.1 christos case 444: { 3374 1.23 christos const struct sys___msgctl50_args *p = params; 3375 1.1 christos iarg[0] = SCARG(p, msqid); /* int */ 3376 1.1 christos iarg[1] = SCARG(p, cmd); /* int */ 3377 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds * */ 3378 1.1 christos *n_args = 3; 3379 1.1 christos break; 3380 1.1 christos } 3381 1.1 christos /* sys___getrusage50 */ 3382 1.1 christos case 445: { 3383 1.23 christos const struct sys___getrusage50_args *p = params; 3384 1.1 christos iarg[0] = SCARG(p, who); /* int */ 3385 1.1 christos uarg[1] = (intptr_t) SCARG(p, rusage); /* struct rusage * */ 3386 1.1 christos *n_args = 2; 3387 1.1 christos break; 3388 1.1 christos } 3389 1.1 christos /* sys___timer_settime50 */ 3390 1.1 christos case 446: { 3391 1.23 christos const struct sys___timer_settime50_args *p = params; 3392 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */ 3393 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 3394 1.1 christos uarg[2] = (intptr_t) SCARG(p, value); /* const struct itimerspec * */ 3395 1.1 christos uarg[3] = (intptr_t) SCARG(p, ovalue); /* struct itimerspec * */ 3396 1.1 christos *n_args = 4; 3397 1.1 christos break; 3398 1.1 christos } 3399 1.1 christos /* sys___timer_gettime50 */ 3400 1.1 christos case 447: { 3401 1.23 christos const struct sys___timer_gettime50_args *p = params; 3402 1.1 christos iarg[0] = SCARG(p, timerid); /* timer_t */ 3403 1.1 christos uarg[1] = (intptr_t) SCARG(p, value); /* struct itimerspec * */ 3404 1.1 christos *n_args = 2; 3405 1.1 christos break; 3406 1.1 christos } 3407 1.1 christos #if defined(NTP) || !defined(_KERNEL_OPT) 3408 1.1 christos /* sys___ntp_gettime50 */ 3409 1.1 christos case 448: { 3410 1.23 christos const struct sys___ntp_gettime50_args *p = params; 3411 1.1 christos uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval * */ 3412 1.1 christos *n_args = 1; 3413 1.1 christos break; 3414 1.1 christos } 3415 1.1 christos #else 3416 1.1 christos #endif 3417 1.1 christos /* sys___wait450 */ 3418 1.1 christos case 449: { 3419 1.23 christos const struct sys___wait450_args *p = params; 3420 1.1 christos iarg[0] = SCARG(p, pid); /* pid_t */ 3421 1.1 christos uarg[1] = (intptr_t) SCARG(p, status); /* int * */ 3422 1.1 christos iarg[2] = SCARG(p, options); /* int */ 3423 1.1 christos uarg[3] = (intptr_t) SCARG(p, rusage); /* struct rusage * */ 3424 1.1 christos *n_args = 4; 3425 1.1 christos break; 3426 1.1 christos } 3427 1.1 christos /* sys___mknod50 */ 3428 1.1 christos case 450: { 3429 1.23 christos const struct sys___mknod50_args *p = params; 3430 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3431 1.1 christos iarg[1] = SCARG(p, mode); /* mode_t */ 3432 1.1 christos iarg[2] = SCARG(p, dev); /* dev_t */ 3433 1.1 christos *n_args = 3; 3434 1.1 christos break; 3435 1.1 christos } 3436 1.1 christos /* sys___fhstat50 */ 3437 1.1 christos case 451: { 3438 1.23 christos const struct sys___fhstat50_args *p = params; 3439 1.1 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */ 3440 1.1 christos uarg[1] = SCARG(p, fh_size); /* size_t */ 3441 1.1 christos uarg[2] = (intptr_t) SCARG(p, sb); /* struct stat * */ 3442 1.1 christos *n_args = 3; 3443 1.1 christos break; 3444 1.1 christos } 3445 1.1 christos /* sys_pipe2 */ 3446 1.1 christos case 453: { 3447 1.23 christos const struct sys_pipe2_args *p = params; 3448 1.1 christos uarg[0] = (intptr_t) SCARG(p, fildes); /* int * */ 3449 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 3450 1.1 christos *n_args = 2; 3451 1.1 christos break; 3452 1.1 christos } 3453 1.1 christos /* sys_dup3 */ 3454 1.1 christos case 454: { 3455 1.53 christos const struct compat_100_sys_dup3_args *p = params; 3456 1.1 christos iarg[0] = SCARG(p, from); /* int */ 3457 1.1 christos iarg[1] = SCARG(p, to); /* int */ 3458 1.1 christos iarg[2] = SCARG(p, flags); /* int */ 3459 1.1 christos *n_args = 3; 3460 1.1 christos break; 3461 1.1 christos } 3462 1.1 christos /* sys_kqueue1 */ 3463 1.1 christos case 455: { 3464 1.23 christos const struct sys_kqueue1_args *p = params; 3465 1.1 christos iarg[0] = SCARG(p, flags); /* int */ 3466 1.1 christos *n_args = 1; 3467 1.1 christos break; 3468 1.1 christos } 3469 1.1 christos /* sys_paccept */ 3470 1.1 christos case 456: { 3471 1.23 christos const struct sys_paccept_args *p = params; 3472 1.1 christos iarg[0] = SCARG(p, s); /* int */ 3473 1.1 christos uarg[1] = (intptr_t) SCARG(p, name); /* struct sockaddr * */ 3474 1.1 christos uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */ 3475 1.1 christos uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */ 3476 1.1 christos iarg[4] = SCARG(p, flags); /* int */ 3477 1.1 christos *n_args = 5; 3478 1.1 christos break; 3479 1.1 christos } 3480 1.1 christos /* sys_linkat */ 3481 1.1 christos case 457: { 3482 1.23 christos const struct sys_linkat_args *p = params; 3483 1.1 christos iarg[0] = SCARG(p, fd1); /* int */ 3484 1.1 christos uarg[1] = (intptr_t) SCARG(p, name1); /* const char * */ 3485 1.1 christos iarg[2] = SCARG(p, fd2); /* int */ 3486 1.1 christos uarg[3] = (intptr_t) SCARG(p, name2); /* const char * */ 3487 1.1 christos iarg[4] = SCARG(p, flags); /* int */ 3488 1.1 christos *n_args = 5; 3489 1.1 christos break; 3490 1.1 christos } 3491 1.1 christos /* sys_renameat */ 3492 1.1 christos case 458: { 3493 1.23 christos const struct sys_renameat_args *p = params; 3494 1.1 christos iarg[0] = SCARG(p, fromfd); /* int */ 3495 1.1 christos uarg[1] = (intptr_t) SCARG(p, from); /* const char * */ 3496 1.1 christos iarg[2] = SCARG(p, tofd); /* int */ 3497 1.1 christos uarg[3] = (intptr_t) SCARG(p, to); /* const char * */ 3498 1.1 christos *n_args = 4; 3499 1.1 christos break; 3500 1.1 christos } 3501 1.1 christos /* sys_mkfifoat */ 3502 1.1 christos case 459: { 3503 1.23 christos const struct sys_mkfifoat_args *p = params; 3504 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3505 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3506 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */ 3507 1.1 christos *n_args = 3; 3508 1.1 christos break; 3509 1.1 christos } 3510 1.1 christos /* sys_mknodat */ 3511 1.1 christos case 460: { 3512 1.23 christos const struct sys_mknodat_args *p = params; 3513 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3514 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3515 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */ 3516 1.1 christos iarg[3] = SCARG(p, PAD); /* int */ 3517 1.1 christos iarg[4] = SCARG(p, dev); /* dev_t */ 3518 1.1 christos *n_args = 5; 3519 1.1 christos break; 3520 1.1 christos } 3521 1.1 christos /* sys_mkdirat */ 3522 1.1 christos case 461: { 3523 1.23 christos const struct sys_mkdirat_args *p = params; 3524 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3525 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3526 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */ 3527 1.1 christos *n_args = 3; 3528 1.1 christos break; 3529 1.1 christos } 3530 1.1 christos /* sys_faccessat */ 3531 1.1 christos case 462: { 3532 1.23 christos const struct sys_faccessat_args *p = params; 3533 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3534 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3535 1.1 christos iarg[2] = SCARG(p, amode); /* int */ 3536 1.1 christos iarg[3] = SCARG(p, flag); /* int */ 3537 1.1 christos *n_args = 4; 3538 1.1 christos break; 3539 1.1 christos } 3540 1.1 christos /* sys_fchmodat */ 3541 1.1 christos case 463: { 3542 1.23 christos const struct sys_fchmodat_args *p = params; 3543 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3544 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3545 1.1 christos iarg[2] = SCARG(p, mode); /* mode_t */ 3546 1.1 christos iarg[3] = SCARG(p, flag); /* int */ 3547 1.1 christos *n_args = 4; 3548 1.1 christos break; 3549 1.1 christos } 3550 1.1 christos /* sys_fchownat */ 3551 1.1 christos case 464: { 3552 1.23 christos const struct sys_fchownat_args *p = params; 3553 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3554 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3555 1.1 christos uarg[2] = SCARG(p, owner); /* uid_t */ 3556 1.1 christos iarg[3] = SCARG(p, group); /* gid_t */ 3557 1.1 christos iarg[4] = SCARG(p, flag); /* int */ 3558 1.1 christos *n_args = 5; 3559 1.1 christos break; 3560 1.1 christos } 3561 1.1 christos /* sys_fexecve */ 3562 1.1 christos case 465: { 3563 1.23 christos const struct sys_fexecve_args *p = params; 3564 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3565 1.1 christos uarg[1] = (intptr_t) SCARG(p, argp); /* char *const * */ 3566 1.1 christos uarg[2] = (intptr_t) SCARG(p, envp); /* char *const * */ 3567 1.1 christos *n_args = 3; 3568 1.1 christos break; 3569 1.1 christos } 3570 1.1 christos /* sys_fstatat */ 3571 1.1 christos case 466: { 3572 1.23 christos const struct sys_fstatat_args *p = params; 3573 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3574 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3575 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct stat * */ 3576 1.1 christos iarg[3] = SCARG(p, flag); /* int */ 3577 1.1 christos *n_args = 4; 3578 1.1 christos break; 3579 1.1 christos } 3580 1.1 christos /* sys_utimensat */ 3581 1.1 christos case 467: { 3582 1.23 christos const struct sys_utimensat_args *p = params; 3583 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3584 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3585 1.1 christos uarg[2] = (intptr_t) SCARG(p, tptr); /* const struct timespec * */ 3586 1.1 christos iarg[3] = SCARG(p, flag); /* int */ 3587 1.1 christos *n_args = 4; 3588 1.1 christos break; 3589 1.1 christos } 3590 1.1 christos /* sys_openat */ 3591 1.1 christos case 468: { 3592 1.23 christos const struct sys_openat_args *p = params; 3593 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3594 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3595 1.1 christos iarg[2] = SCARG(p, oflags); /* int */ 3596 1.1 christos iarg[3] = SCARG(p, mode); /* mode_t */ 3597 1.1 christos *n_args = 4; 3598 1.1 christos break; 3599 1.1 christos } 3600 1.1 christos /* sys_readlinkat */ 3601 1.1 christos case 469: { 3602 1.23 christos const struct sys_readlinkat_args *p = params; 3603 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3604 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3605 1.1 christos uarg[2] = (intptr_t) SCARG(p, buf); /* char * */ 3606 1.1 christos uarg[3] = SCARG(p, bufsize); /* size_t */ 3607 1.1 christos *n_args = 4; 3608 1.1 christos break; 3609 1.1 christos } 3610 1.1 christos /* sys_symlinkat */ 3611 1.1 christos case 470: { 3612 1.23 christos const struct sys_symlinkat_args *p = params; 3613 1.1 christos uarg[0] = (intptr_t) SCARG(p, path1); /* const char * */ 3614 1.1 christos iarg[1] = SCARG(p, fd); /* int */ 3615 1.1 christos uarg[2] = (intptr_t) SCARG(p, path2); /* const char * */ 3616 1.1 christos *n_args = 3; 3617 1.1 christos break; 3618 1.1 christos } 3619 1.1 christos /* sys_unlinkat */ 3620 1.1 christos case 471: { 3621 1.23 christos const struct sys_unlinkat_args *p = params; 3622 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3623 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3624 1.1 christos iarg[2] = SCARG(p, flag); /* int */ 3625 1.1 christos *n_args = 3; 3626 1.1 christos break; 3627 1.1 christos } 3628 1.1 christos /* sys_futimens */ 3629 1.1 christos case 472: { 3630 1.23 christos const struct sys_futimens_args *p = params; 3631 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3632 1.1 christos uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timespec * */ 3633 1.1 christos *n_args = 2; 3634 1.1 christos break; 3635 1.1 christos } 3636 1.1 christos /* sys___quotactl */ 3637 1.1 christos case 473: { 3638 1.23 christos const struct sys___quotactl_args *p = params; 3639 1.1 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3640 1.1 christos uarg[1] = (intptr_t) SCARG(p, args); /* struct quotactl_args * */ 3641 1.1 christos *n_args = 2; 3642 1.1 christos break; 3643 1.1 christos } 3644 1.1 christos /* sys_posix_spawn */ 3645 1.1 christos case 474: { 3646 1.23 christos const struct sys_posix_spawn_args *p = params; 3647 1.1 christos uarg[0] = (intptr_t) SCARG(p, pid); /* pid_t * */ 3648 1.1 christos uarg[1] = (intptr_t) SCARG(p, path); /* const char * */ 3649 1.1 christos uarg[2] = (intptr_t) SCARG(p, file_actions); /* const struct posix_spawn_file_actions * */ 3650 1.1 christos uarg[3] = (intptr_t) SCARG(p, attrp); /* const struct posix_spawnattr * */ 3651 1.1 christos uarg[4] = (intptr_t) SCARG(p, argv); /* char *const * */ 3652 1.1 christos uarg[5] = (intptr_t) SCARG(p, envp); /* char *const * */ 3653 1.1 christos *n_args = 6; 3654 1.1 christos break; 3655 1.1 christos } 3656 1.1 christos /* sys_recvmmsg */ 3657 1.1 christos case 475: { 3658 1.23 christos const struct sys_recvmmsg_args *p = params; 3659 1.1 christos iarg[0] = SCARG(p, s); /* int */ 3660 1.1 christos uarg[1] = (intptr_t) SCARG(p, mmsg); /* struct mmsghdr * */ 3661 1.1 christos uarg[2] = SCARG(p, vlen); /* unsigned int */ 3662 1.1 christos uarg[3] = SCARG(p, flags); /* unsigned int */ 3663 1.1 christos uarg[4] = (intptr_t) SCARG(p, timeout); /* struct timespec * */ 3664 1.1 christos *n_args = 5; 3665 1.1 christos break; 3666 1.1 christos } 3667 1.1 christos /* sys_sendmmsg */ 3668 1.1 christos case 476: { 3669 1.23 christos const struct sys_sendmmsg_args *p = params; 3670 1.1 christos iarg[0] = SCARG(p, s); /* int */ 3671 1.1 christos uarg[1] = (intptr_t) SCARG(p, mmsg); /* struct mmsghdr * */ 3672 1.1 christos uarg[2] = SCARG(p, vlen); /* unsigned int */ 3673 1.1 christos uarg[3] = SCARG(p, flags); /* unsigned int */ 3674 1.1 christos *n_args = 4; 3675 1.1 christos break; 3676 1.1 christos } 3677 1.1 christos /* sys_clock_nanosleep */ 3678 1.1 christos case 477: { 3679 1.23 christos const struct sys_clock_nanosleep_args *p = params; 3680 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 3681 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 3682 1.1 christos uarg[2] = (intptr_t) SCARG(p, rqtp); /* const struct timespec * */ 3683 1.1 christos uarg[3] = (intptr_t) SCARG(p, rmtp); /* struct timespec * */ 3684 1.1 christos *n_args = 4; 3685 1.1 christos break; 3686 1.1 christos } 3687 1.1 christos /* sys____lwp_park60 */ 3688 1.1 christos case 478: { 3689 1.23 christos const struct sys____lwp_park60_args *p = params; 3690 1.1 christos iarg[0] = SCARG(p, clock_id); /* clockid_t */ 3691 1.1 christos iarg[1] = SCARG(p, flags); /* int */ 3692 1.26 kamil uarg[2] = (intptr_t) SCARG(p, ts); /* struct timespec * */ 3693 1.1 christos iarg[3] = SCARG(p, unpark); /* lwpid_t */ 3694 1.1 christos uarg[4] = (intptr_t) SCARG(p, hint); /* const void * */ 3695 1.1 christos uarg[5] = (intptr_t) SCARG(p, unparkhint); /* const void * */ 3696 1.1 christos *n_args = 6; 3697 1.1 christos break; 3698 1.1 christos } 3699 1.1 christos /* sys_posix_fallocate */ 3700 1.1 christos case 479: { 3701 1.23 christos const struct sys_posix_fallocate_args *p = params; 3702 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3703 1.1 christos iarg[1] = SCARG(p, PAD); /* int */ 3704 1.1 christos iarg[2] = SCARG(p, pos); /* off_t */ 3705 1.1 christos iarg[3] = SCARG(p, len); /* off_t */ 3706 1.1 christos *n_args = 4; 3707 1.1 christos break; 3708 1.1 christos } 3709 1.1 christos /* sys_fdiscard */ 3710 1.1 christos case 480: { 3711 1.23 christos const struct sys_fdiscard_args *p = params; 3712 1.1 christos iarg[0] = SCARG(p, fd); /* int */ 3713 1.1 christos iarg[1] = SCARG(p, PAD); /* int */ 3714 1.1 christos iarg[2] = SCARG(p, pos); /* off_t */ 3715 1.1 christos iarg[3] = SCARG(p, len); /* off_t */ 3716 1.1 christos *n_args = 4; 3717 1.1 christos break; 3718 1.1 christos } 3719 1.16 christos /* sys_wait6 */ 3720 1.16 christos case 481: { 3721 1.23 christos const struct sys_wait6_args *p = params; 3722 1.16 christos iarg[0] = SCARG(p, idtype); /* idtype_t */ 3723 1.16 christos iarg[1] = SCARG(p, id); /* id_t */ 3724 1.16 christos uarg[2] = (intptr_t) SCARG(p, status); /* int * */ 3725 1.16 christos iarg[3] = SCARG(p, options); /* int */ 3726 1.16 christos uarg[4] = (intptr_t) SCARG(p, wru); /* struct wrusage * */ 3727 1.16 christos uarg[5] = (intptr_t) SCARG(p, info); /* siginfo_t * */ 3728 1.16 christos *n_args = 6; 3729 1.16 christos break; 3730 1.16 christos } 3731 1.19 christos /* sys_clock_getcpuclockid2 */ 3732 1.19 christos case 482: { 3733 1.23 christos const struct sys_clock_getcpuclockid2_args *p = params; 3734 1.19 christos iarg[0] = SCARG(p, idtype); /* idtype_t */ 3735 1.19 christos iarg[1] = SCARG(p, id); /* id_t */ 3736 1.19 christos uarg[2] = (intptr_t) SCARG(p, clock_id); /* clockid_t * */ 3737 1.19 christos *n_args = 3; 3738 1.19 christos break; 3739 1.19 christos } 3740 1.33 christos /* sys___getvfsstat90 */ 3741 1.33 christos case 483: { 3742 1.33 christos const struct sys___getvfsstat90_args *p = params; 3743 1.33 christos uarg[0] = (intptr_t) SCARG(p, buf); /* struct statvfs * */ 3744 1.33 christos uarg[1] = SCARG(p, bufsize); /* size_t */ 3745 1.33 christos iarg[2] = SCARG(p, flags); /* int */ 3746 1.33 christos *n_args = 3; 3747 1.33 christos break; 3748 1.33 christos } 3749 1.33 christos /* sys___statvfs190 */ 3750 1.33 christos case 484: { 3751 1.33 christos const struct sys___statvfs190_args *p = params; 3752 1.33 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3753 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs * */ 3754 1.33 christos iarg[2] = SCARG(p, flags); /* int */ 3755 1.33 christos *n_args = 3; 3756 1.33 christos break; 3757 1.33 christos } 3758 1.33 christos /* sys___fstatvfs190 */ 3759 1.33 christos case 485: { 3760 1.33 christos const struct sys___fstatvfs190_args *p = params; 3761 1.33 christos iarg[0] = SCARG(p, fd); /* int */ 3762 1.33 christos uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs * */ 3763 1.33 christos iarg[2] = SCARG(p, flags); /* int */ 3764 1.33 christos *n_args = 3; 3765 1.33 christos break; 3766 1.33 christos } 3767 1.33 christos /* sys___fhstatvfs190 */ 3768 1.33 christos case 486: { 3769 1.33 christos const struct sys___fhstatvfs190_args *p = params; 3770 1.33 christos uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */ 3771 1.33 christos uarg[1] = SCARG(p, fh_size); /* size_t */ 3772 1.33 christos uarg[2] = (intptr_t) SCARG(p, buf); /* struct statvfs * */ 3773 1.33 christos iarg[3] = SCARG(p, flags); /* int */ 3774 1.33 christos *n_args = 4; 3775 1.33 christos break; 3776 1.33 christos } 3777 1.39 christos /* sys___acl_get_link */ 3778 1.39 christos case 487: { 3779 1.39 christos const struct sys___acl_get_link_args *p = params; 3780 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3781 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3782 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3783 1.39 christos *n_args = 3; 3784 1.39 christos break; 3785 1.39 christos } 3786 1.39 christos /* sys___acl_set_link */ 3787 1.39 christos case 488: { 3788 1.39 christos const struct sys___acl_set_link_args *p = params; 3789 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3790 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3791 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3792 1.39 christos *n_args = 3; 3793 1.39 christos break; 3794 1.39 christos } 3795 1.39 christos /* sys___acl_delete_link */ 3796 1.39 christos case 489: { 3797 1.39 christos const struct sys___acl_delete_link_args *p = params; 3798 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3799 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3800 1.39 christos *n_args = 2; 3801 1.39 christos break; 3802 1.39 christos } 3803 1.39 christos /* sys___acl_aclcheck_link */ 3804 1.39 christos case 490: { 3805 1.39 christos const struct sys___acl_aclcheck_link_args *p = params; 3806 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3807 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3808 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3809 1.39 christos *n_args = 3; 3810 1.39 christos break; 3811 1.39 christos } 3812 1.39 christos /* sys___acl_get_file */ 3813 1.39 christos case 491: { 3814 1.39 christos const struct sys___acl_get_file_args *p = params; 3815 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3816 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3817 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3818 1.39 christos *n_args = 3; 3819 1.39 christos break; 3820 1.39 christos } 3821 1.39 christos /* sys___acl_set_file */ 3822 1.39 christos case 492: { 3823 1.39 christos const struct sys___acl_set_file_args *p = params; 3824 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3825 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3826 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3827 1.39 christos *n_args = 3; 3828 1.39 christos break; 3829 1.39 christos } 3830 1.39 christos /* sys___acl_get_fd */ 3831 1.39 christos case 493: { 3832 1.39 christos const struct sys___acl_get_fd_args *p = params; 3833 1.39 christos iarg[0] = SCARG(p, filedes); /* int */ 3834 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3835 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3836 1.39 christos *n_args = 3; 3837 1.39 christos break; 3838 1.39 christos } 3839 1.39 christos /* sys___acl_set_fd */ 3840 1.39 christos case 494: { 3841 1.39 christos const struct sys___acl_set_fd_args *p = params; 3842 1.39 christos iarg[0] = SCARG(p, filedes); /* int */ 3843 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3844 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3845 1.39 christos *n_args = 3; 3846 1.39 christos break; 3847 1.39 christos } 3848 1.39 christos /* sys___acl_delete_file */ 3849 1.39 christos case 495: { 3850 1.39 christos const struct sys___acl_delete_file_args *p = params; 3851 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3852 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3853 1.39 christos *n_args = 2; 3854 1.39 christos break; 3855 1.39 christos } 3856 1.39 christos /* sys___acl_delete_fd */ 3857 1.39 christos case 496: { 3858 1.39 christos const struct sys___acl_delete_fd_args *p = params; 3859 1.39 christos iarg[0] = SCARG(p, filedes); /* int */ 3860 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3861 1.39 christos *n_args = 2; 3862 1.39 christos break; 3863 1.39 christos } 3864 1.39 christos /* sys___acl_aclcheck_file */ 3865 1.39 christos case 497: { 3866 1.39 christos const struct sys___acl_aclcheck_file_args *p = params; 3867 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3868 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3869 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3870 1.39 christos *n_args = 3; 3871 1.39 christos break; 3872 1.39 christos } 3873 1.39 christos /* sys___acl_aclcheck_fd */ 3874 1.39 christos case 498: { 3875 1.39 christos const struct sys___acl_aclcheck_fd_args *p = params; 3876 1.39 christos iarg[0] = SCARG(p, filedes); /* int */ 3877 1.39 christos iarg[1] = SCARG(p, type); /* acl_type_t */ 3878 1.39 christos uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */ 3879 1.39 christos *n_args = 3; 3880 1.39 christos break; 3881 1.39 christos } 3882 1.39 christos /* sys_lpathconf */ 3883 1.39 christos case 499: { 3884 1.39 christos const struct sys_lpathconf_args *p = params; 3885 1.39 christos uarg[0] = (intptr_t) SCARG(p, path); /* const char * */ 3886 1.39 christos iarg[1] = SCARG(p, name); /* int */ 3887 1.39 christos *n_args = 2; 3888 1.39 christos break; 3889 1.39 christos } 3890 1.50 christos /* sys_memfd_create */ 3891 1.50 christos case 500: { 3892 1.50 christos const struct sys_memfd_create_args *p = params; 3893 1.50 christos uarg[0] = (intptr_t) SCARG(p, name); /* const char * */ 3894 1.50 christos uarg[1] = SCARG(p, flags); /* unsigned int */ 3895 1.50 christos *n_args = 2; 3896 1.50 christos break; 3897 1.50 christos } 3898 1.51 christos /* sys___kevent100 */ 3899 1.51 christos case 501: { 3900 1.51 christos const struct sys___kevent100_args *p = params; 3901 1.51 christos iarg[0] = SCARG(p, fd); /* int */ 3902 1.51 christos uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent * */ 3903 1.51 christos uarg[2] = SCARG(p, nchanges); /* size_t */ 3904 1.51 christos uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent * */ 3905 1.51 christos uarg[4] = SCARG(p, nevents); /* size_t */ 3906 1.51 christos uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */ 3907 1.51 christos *n_args = 6; 3908 1.51 christos break; 3909 1.51 christos } 3910 1.51 christos /* sys_epoll_create1 */ 3911 1.51 christos case 502: { 3912 1.51 christos const struct sys_epoll_create1_args *p = params; 3913 1.51 christos iarg[0] = SCARG(p, flags); /* int */ 3914 1.51 christos *n_args = 1; 3915 1.51 christos break; 3916 1.51 christos } 3917 1.51 christos /* sys_epoll_ctl */ 3918 1.51 christos case 503: { 3919 1.51 christos const struct sys_epoll_ctl_args *p = params; 3920 1.51 christos iarg[0] = SCARG(p, epfd); /* int */ 3921 1.51 christos iarg[1] = SCARG(p, op); /* int */ 3922 1.51 christos iarg[2] = SCARG(p, fd); /* int */ 3923 1.51 christos uarg[3] = (intptr_t) SCARG(p, event); /* struct epoll_event * */ 3924 1.51 christos *n_args = 4; 3925 1.51 christos break; 3926 1.51 christos } 3927 1.51 christos /* sys_epoll_pwait2 */ 3928 1.51 christos case 504: { 3929 1.51 christos const struct sys_epoll_pwait2_args *p = params; 3930 1.51 christos iarg[0] = SCARG(p, epfd); /* int */ 3931 1.51 christos uarg[1] = (intptr_t) SCARG(p, events); /* struct epoll_event * */ 3932 1.51 christos iarg[2] = SCARG(p, maxevents); /* int */ 3933 1.51 christos uarg[3] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */ 3934 1.51 christos uarg[4] = (intptr_t) SCARG(p, sigmask); /* const sigset_t * */ 3935 1.51 christos *n_args = 5; 3936 1.51 christos break; 3937 1.51 christos } 3938 1.53 christos /* sys___dup3100 */ 3939 1.52 christos case 505: { 3940 1.53 christos const struct sys___dup3100_args *p = params; 3941 1.52 christos iarg[0] = SCARG(p, from); /* int */ 3942 1.52 christos iarg[1] = SCARG(p, to); /* int */ 3943 1.52 christos iarg[2] = SCARG(p, flags); /* int */ 3944 1.52 christos *n_args = 3; 3945 1.52 christos break; 3946 1.52 christos } 3947 1.54 christos /* sys_semtimedop */ 3948 1.54 christos case 506: { 3949 1.54 christos const struct sys_semtimedop_args *p = params; 3950 1.54 christos iarg[0] = SCARG(p, semid); /* int */ 3951 1.54 christos uarg[1] = (intptr_t) SCARG(p, sops); /* struct sembuf * */ 3952 1.54 christos uarg[2] = SCARG(p, nsops); /* size_t */ 3953 1.54 christos uarg[3] = (intptr_t) SCARG(p, timeout); /* struct timespec * */ 3954 1.54 christos *n_args = 4; 3955 1.54 christos break; 3956 1.54 christos } 3957 1.1 christos default: 3958 1.1 christos *n_args = 0; 3959 1.1 christos break; 3960 1.1 christos }; 3961 1.1 christos } 3962 1.12 pgoyette static void 3963 1.12 pgoyette systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz) 3964 1.12 pgoyette { 3965 1.12 pgoyette const char *p = NULL; 3966 1.12 pgoyette switch (sysnum) { 3967 1.12 pgoyette /* sys_syscall */ 3968 1.12 pgoyette case 0: 3969 1.12 pgoyette switch(ndx) { 3970 1.12 pgoyette case 0: 3971 1.12 pgoyette p = "int"; 3972 1.12 pgoyette break; 3973 1.12 pgoyette case 1: 3974 1.12 pgoyette p = "register_t"; 3975 1.12 pgoyette break; 3976 1.12 pgoyette default: 3977 1.12 pgoyette break; 3978 1.12 pgoyette }; 3979 1.12 pgoyette break; 3980 1.12 pgoyette /* sys_exit */ 3981 1.12 pgoyette case 1: 3982 1.12 pgoyette switch(ndx) { 3983 1.12 pgoyette case 0: 3984 1.12 pgoyette p = "int"; 3985 1.12 pgoyette break; 3986 1.12 pgoyette default: 3987 1.12 pgoyette break; 3988 1.12 pgoyette }; 3989 1.12 pgoyette break; 3990 1.12 pgoyette /* sys_fork */ 3991 1.12 pgoyette case 2: 3992 1.12 pgoyette break; 3993 1.12 pgoyette /* sys_read */ 3994 1.12 pgoyette case 3: 3995 1.12 pgoyette switch(ndx) { 3996 1.12 pgoyette case 0: 3997 1.12 pgoyette p = "int"; 3998 1.12 pgoyette break; 3999 1.12 pgoyette case 1: 4000 1.12 pgoyette p = "void *"; 4001 1.12 pgoyette break; 4002 1.12 pgoyette case 2: 4003 1.12 pgoyette p = "size_t"; 4004 1.12 pgoyette break; 4005 1.12 pgoyette default: 4006 1.12 pgoyette break; 4007 1.12 pgoyette }; 4008 1.12 pgoyette break; 4009 1.12 pgoyette /* sys_write */ 4010 1.12 pgoyette case 4: 4011 1.12 pgoyette switch(ndx) { 4012 1.12 pgoyette case 0: 4013 1.12 pgoyette p = "int"; 4014 1.12 pgoyette break; 4015 1.12 pgoyette case 1: 4016 1.12 pgoyette p = "const void *"; 4017 1.12 pgoyette break; 4018 1.12 pgoyette case 2: 4019 1.12 pgoyette p = "size_t"; 4020 1.12 pgoyette break; 4021 1.12 pgoyette default: 4022 1.12 pgoyette break; 4023 1.12 pgoyette }; 4024 1.12 pgoyette break; 4025 1.12 pgoyette /* sys_open */ 4026 1.12 pgoyette case 5: 4027 1.12 pgoyette switch(ndx) { 4028 1.12 pgoyette case 0: 4029 1.12 pgoyette p = "const char *"; 4030 1.12 pgoyette break; 4031 1.12 pgoyette case 1: 4032 1.12 pgoyette p = "int"; 4033 1.12 pgoyette break; 4034 1.12 pgoyette case 2: 4035 1.12 pgoyette p = "mode_t"; 4036 1.12 pgoyette break; 4037 1.12 pgoyette default: 4038 1.12 pgoyette break; 4039 1.12 pgoyette }; 4040 1.12 pgoyette break; 4041 1.12 pgoyette /* sys_close */ 4042 1.12 pgoyette case 6: 4043 1.12 pgoyette switch(ndx) { 4044 1.12 pgoyette case 0: 4045 1.12 pgoyette p = "int"; 4046 1.12 pgoyette break; 4047 1.12 pgoyette default: 4048 1.12 pgoyette break; 4049 1.12 pgoyette }; 4050 1.12 pgoyette break; 4051 1.12 pgoyette /* sys_wait4 */ 4052 1.12 pgoyette case 7: 4053 1.12 pgoyette switch(ndx) { 4054 1.12 pgoyette case 0: 4055 1.12 pgoyette p = "pid_t"; 4056 1.12 pgoyette break; 4057 1.12 pgoyette case 1: 4058 1.12 pgoyette p = "int *"; 4059 1.12 pgoyette break; 4060 1.12 pgoyette case 2: 4061 1.12 pgoyette p = "int"; 4062 1.12 pgoyette break; 4063 1.12 pgoyette case 3: 4064 1.12 pgoyette p = "struct rusage50 *"; 4065 1.12 pgoyette break; 4066 1.12 pgoyette default: 4067 1.12 pgoyette break; 4068 1.12 pgoyette }; 4069 1.12 pgoyette break; 4070 1.12 pgoyette /* sys_creat */ 4071 1.12 pgoyette case 8: 4072 1.12 pgoyette switch(ndx) { 4073 1.12 pgoyette case 0: 4074 1.12 pgoyette p = "const char *"; 4075 1.12 pgoyette break; 4076 1.12 pgoyette case 1: 4077 1.12 pgoyette p = "mode_t"; 4078 1.12 pgoyette break; 4079 1.12 pgoyette default: 4080 1.12 pgoyette break; 4081 1.12 pgoyette }; 4082 1.12 pgoyette break; 4083 1.12 pgoyette /* sys_link */ 4084 1.12 pgoyette case 9: 4085 1.12 pgoyette switch(ndx) { 4086 1.12 pgoyette case 0: 4087 1.12 pgoyette p = "const char *"; 4088 1.12 pgoyette break; 4089 1.12 pgoyette case 1: 4090 1.12 pgoyette p = "const char *"; 4091 1.12 pgoyette break; 4092 1.12 pgoyette default: 4093 1.12 pgoyette break; 4094 1.12 pgoyette }; 4095 1.12 pgoyette break; 4096 1.12 pgoyette /* sys_unlink */ 4097 1.12 pgoyette case 10: 4098 1.12 pgoyette switch(ndx) { 4099 1.12 pgoyette case 0: 4100 1.12 pgoyette p = "const char *"; 4101 1.12 pgoyette break; 4102 1.12 pgoyette default: 4103 1.12 pgoyette break; 4104 1.12 pgoyette }; 4105 1.12 pgoyette break; 4106 1.12 pgoyette /* sys_chdir */ 4107 1.12 pgoyette case 12: 4108 1.12 pgoyette switch(ndx) { 4109 1.12 pgoyette case 0: 4110 1.12 pgoyette p = "const char *"; 4111 1.12 pgoyette break; 4112 1.12 pgoyette default: 4113 1.12 pgoyette break; 4114 1.12 pgoyette }; 4115 1.12 pgoyette break; 4116 1.12 pgoyette /* sys_fchdir */ 4117 1.12 pgoyette case 13: 4118 1.12 pgoyette switch(ndx) { 4119 1.12 pgoyette case 0: 4120 1.12 pgoyette p = "int"; 4121 1.12 pgoyette break; 4122 1.12 pgoyette default: 4123 1.12 pgoyette break; 4124 1.12 pgoyette }; 4125 1.12 pgoyette break; 4126 1.12 pgoyette /* sys_mknod */ 4127 1.12 pgoyette case 14: 4128 1.12 pgoyette switch(ndx) { 4129 1.12 pgoyette case 0: 4130 1.12 pgoyette p = "const char *"; 4131 1.12 pgoyette break; 4132 1.12 pgoyette case 1: 4133 1.12 pgoyette p = "mode_t"; 4134 1.12 pgoyette break; 4135 1.12 pgoyette case 2: 4136 1.12 pgoyette p = "uint32_t"; 4137 1.12 pgoyette break; 4138 1.12 pgoyette default: 4139 1.12 pgoyette break; 4140 1.12 pgoyette }; 4141 1.12 pgoyette break; 4142 1.12 pgoyette /* sys_chmod */ 4143 1.12 pgoyette case 15: 4144 1.12 pgoyette switch(ndx) { 4145 1.12 pgoyette case 0: 4146 1.12 pgoyette p = "const char *"; 4147 1.12 pgoyette break; 4148 1.12 pgoyette case 1: 4149 1.12 pgoyette p = "mode_t"; 4150 1.12 pgoyette break; 4151 1.12 pgoyette default: 4152 1.12 pgoyette break; 4153 1.12 pgoyette }; 4154 1.12 pgoyette break; 4155 1.12 pgoyette /* sys_chown */ 4156 1.12 pgoyette case 16: 4157 1.12 pgoyette switch(ndx) { 4158 1.12 pgoyette case 0: 4159 1.12 pgoyette p = "const char *"; 4160 1.12 pgoyette break; 4161 1.12 pgoyette case 1: 4162 1.12 pgoyette p = "uid_t"; 4163 1.12 pgoyette break; 4164 1.12 pgoyette case 2: 4165 1.12 pgoyette p = "gid_t"; 4166 1.12 pgoyette break; 4167 1.12 pgoyette default: 4168 1.12 pgoyette break; 4169 1.12 pgoyette }; 4170 1.12 pgoyette break; 4171 1.12 pgoyette /* sys_obreak */ 4172 1.12 pgoyette case 17: 4173 1.12 pgoyette switch(ndx) { 4174 1.12 pgoyette case 0: 4175 1.12 pgoyette p = "char *"; 4176 1.12 pgoyette break; 4177 1.12 pgoyette default: 4178 1.12 pgoyette break; 4179 1.12 pgoyette }; 4180 1.12 pgoyette break; 4181 1.12 pgoyette /* sys_getfsstat */ 4182 1.12 pgoyette case 18: 4183 1.12 pgoyette switch(ndx) { 4184 1.12 pgoyette case 0: 4185 1.12 pgoyette p = "struct statfs12 *"; 4186 1.12 pgoyette break; 4187 1.12 pgoyette case 1: 4188 1.12 pgoyette p = "long"; 4189 1.12 pgoyette break; 4190 1.12 pgoyette case 2: 4191 1.12 pgoyette p = "int"; 4192 1.12 pgoyette break; 4193 1.12 pgoyette default: 4194 1.12 pgoyette break; 4195 1.12 pgoyette }; 4196 1.12 pgoyette break; 4197 1.12 pgoyette /* sys_lseek */ 4198 1.12 pgoyette case 19: 4199 1.12 pgoyette switch(ndx) { 4200 1.12 pgoyette case 0: 4201 1.12 pgoyette p = "int"; 4202 1.12 pgoyette break; 4203 1.12 pgoyette case 1: 4204 1.12 pgoyette p = "long"; 4205 1.12 pgoyette break; 4206 1.12 pgoyette case 2: 4207 1.12 pgoyette p = "int"; 4208 1.12 pgoyette break; 4209 1.12 pgoyette default: 4210 1.12 pgoyette break; 4211 1.12 pgoyette }; 4212 1.12 pgoyette break; 4213 1.12 pgoyette /* sys_getpid_with_ppid */ 4214 1.12 pgoyette case 20: 4215 1.12 pgoyette break; 4216 1.12 pgoyette /* sys_mount */ 4217 1.12 pgoyette case 21: 4218 1.12 pgoyette switch(ndx) { 4219 1.12 pgoyette case 0: 4220 1.12 pgoyette p = "const char *"; 4221 1.12 pgoyette break; 4222 1.12 pgoyette case 1: 4223 1.12 pgoyette p = "const char *"; 4224 1.12 pgoyette break; 4225 1.12 pgoyette case 2: 4226 1.12 pgoyette p = "int"; 4227 1.12 pgoyette break; 4228 1.12 pgoyette case 3: 4229 1.12 pgoyette p = "void *"; 4230 1.12 pgoyette break; 4231 1.12 pgoyette default: 4232 1.12 pgoyette break; 4233 1.12 pgoyette }; 4234 1.12 pgoyette break; 4235 1.12 pgoyette /* sys_unmount */ 4236 1.12 pgoyette case 22: 4237 1.12 pgoyette switch(ndx) { 4238 1.12 pgoyette case 0: 4239 1.12 pgoyette p = "const char *"; 4240 1.12 pgoyette break; 4241 1.12 pgoyette case 1: 4242 1.12 pgoyette p = "int"; 4243 1.12 pgoyette break; 4244 1.12 pgoyette default: 4245 1.12 pgoyette break; 4246 1.12 pgoyette }; 4247 1.12 pgoyette break; 4248 1.12 pgoyette /* sys_setuid */ 4249 1.12 pgoyette case 23: 4250 1.12 pgoyette switch(ndx) { 4251 1.12 pgoyette case 0: 4252 1.12 pgoyette p = "uid_t"; 4253 1.12 pgoyette break; 4254 1.12 pgoyette default: 4255 1.12 pgoyette break; 4256 1.12 pgoyette }; 4257 1.12 pgoyette break; 4258 1.12 pgoyette /* sys_getuid_with_euid */ 4259 1.12 pgoyette case 24: 4260 1.12 pgoyette break; 4261 1.12 pgoyette /* sys_geteuid */ 4262 1.12 pgoyette case 25: 4263 1.12 pgoyette break; 4264 1.12 pgoyette /* sys_ptrace */ 4265 1.12 pgoyette case 26: 4266 1.12 pgoyette switch(ndx) { 4267 1.12 pgoyette case 0: 4268 1.12 pgoyette p = "int"; 4269 1.12 pgoyette break; 4270 1.12 pgoyette case 1: 4271 1.12 pgoyette p = "pid_t"; 4272 1.12 pgoyette break; 4273 1.12 pgoyette case 2: 4274 1.12 pgoyette p = "void *"; 4275 1.12 pgoyette break; 4276 1.12 pgoyette case 3: 4277 1.12 pgoyette p = "int"; 4278 1.12 pgoyette break; 4279 1.12 pgoyette default: 4280 1.12 pgoyette break; 4281 1.12 pgoyette }; 4282 1.12 pgoyette break; 4283 1.12 pgoyette /* sys_recvmsg */ 4284 1.12 pgoyette case 27: 4285 1.12 pgoyette switch(ndx) { 4286 1.12 pgoyette case 0: 4287 1.12 pgoyette p = "int"; 4288 1.12 pgoyette break; 4289 1.12 pgoyette case 1: 4290 1.12 pgoyette p = "struct msghdr *"; 4291 1.12 pgoyette break; 4292 1.12 pgoyette case 2: 4293 1.12 pgoyette p = "int"; 4294 1.12 pgoyette break; 4295 1.12 pgoyette default: 4296 1.12 pgoyette break; 4297 1.12 pgoyette }; 4298 1.12 pgoyette break; 4299 1.12 pgoyette /* sys_sendmsg */ 4300 1.12 pgoyette case 28: 4301 1.12 pgoyette switch(ndx) { 4302 1.12 pgoyette case 0: 4303 1.12 pgoyette p = "int"; 4304 1.12 pgoyette break; 4305 1.12 pgoyette case 1: 4306 1.12 pgoyette p = "const struct msghdr *"; 4307 1.12 pgoyette break; 4308 1.12 pgoyette case 2: 4309 1.12 pgoyette p = "int"; 4310 1.12 pgoyette break; 4311 1.12 pgoyette default: 4312 1.12 pgoyette break; 4313 1.12 pgoyette }; 4314 1.12 pgoyette break; 4315 1.12 pgoyette /* sys_recvfrom */ 4316 1.12 pgoyette case 29: 4317 1.12 pgoyette switch(ndx) { 4318 1.12 pgoyette case 0: 4319 1.12 pgoyette p = "int"; 4320 1.12 pgoyette break; 4321 1.12 pgoyette case 1: 4322 1.12 pgoyette p = "void *"; 4323 1.12 pgoyette break; 4324 1.12 pgoyette case 2: 4325 1.12 pgoyette p = "size_t"; 4326 1.12 pgoyette break; 4327 1.12 pgoyette case 3: 4328 1.12 pgoyette p = "int"; 4329 1.12 pgoyette break; 4330 1.12 pgoyette case 4: 4331 1.12 pgoyette p = "struct sockaddr *"; 4332 1.12 pgoyette break; 4333 1.12 pgoyette case 5: 4334 1.12 pgoyette p = "socklen_t *"; 4335 1.12 pgoyette break; 4336 1.12 pgoyette default: 4337 1.12 pgoyette break; 4338 1.12 pgoyette }; 4339 1.12 pgoyette break; 4340 1.12 pgoyette /* sys_accept */ 4341 1.12 pgoyette case 30: 4342 1.12 pgoyette switch(ndx) { 4343 1.12 pgoyette case 0: 4344 1.12 pgoyette p = "int"; 4345 1.12 pgoyette break; 4346 1.12 pgoyette case 1: 4347 1.12 pgoyette p = "struct sockaddr *"; 4348 1.12 pgoyette break; 4349 1.12 pgoyette case 2: 4350 1.12 pgoyette p = "socklen_t *"; 4351 1.12 pgoyette break; 4352 1.12 pgoyette default: 4353 1.12 pgoyette break; 4354 1.12 pgoyette }; 4355 1.12 pgoyette break; 4356 1.12 pgoyette /* sys_getpeername */ 4357 1.12 pgoyette case 31: 4358 1.12 pgoyette switch(ndx) { 4359 1.12 pgoyette case 0: 4360 1.12 pgoyette p = "int"; 4361 1.12 pgoyette break; 4362 1.12 pgoyette case 1: 4363 1.12 pgoyette p = "struct sockaddr *"; 4364 1.12 pgoyette break; 4365 1.12 pgoyette case 2: 4366 1.12 pgoyette p = "socklen_t *"; 4367 1.12 pgoyette break; 4368 1.12 pgoyette default: 4369 1.12 pgoyette break; 4370 1.12 pgoyette }; 4371 1.12 pgoyette break; 4372 1.12 pgoyette /* sys_getsockname */ 4373 1.12 pgoyette case 32: 4374 1.12 pgoyette switch(ndx) { 4375 1.12 pgoyette case 0: 4376 1.12 pgoyette p = "int"; 4377 1.12 pgoyette break; 4378 1.12 pgoyette case 1: 4379 1.12 pgoyette p = "struct sockaddr *"; 4380 1.12 pgoyette break; 4381 1.12 pgoyette case 2: 4382 1.12 pgoyette p = "socklen_t *"; 4383 1.12 pgoyette break; 4384 1.12 pgoyette default: 4385 1.12 pgoyette break; 4386 1.12 pgoyette }; 4387 1.12 pgoyette break; 4388 1.12 pgoyette /* sys_access */ 4389 1.12 pgoyette case 33: 4390 1.12 pgoyette switch(ndx) { 4391 1.12 pgoyette case 0: 4392 1.12 pgoyette p = "const char *"; 4393 1.12 pgoyette break; 4394 1.12 pgoyette case 1: 4395 1.12 pgoyette p = "int"; 4396 1.12 pgoyette break; 4397 1.12 pgoyette default: 4398 1.12 pgoyette break; 4399 1.12 pgoyette }; 4400 1.12 pgoyette break; 4401 1.12 pgoyette /* sys_chflags */ 4402 1.12 pgoyette case 34: 4403 1.12 pgoyette switch(ndx) { 4404 1.12 pgoyette case 0: 4405 1.12 pgoyette p = "const char *"; 4406 1.12 pgoyette break; 4407 1.12 pgoyette case 1: 4408 1.12 pgoyette p = "u_long"; 4409 1.12 pgoyette break; 4410 1.12 pgoyette default: 4411 1.12 pgoyette break; 4412 1.12 pgoyette }; 4413 1.12 pgoyette break; 4414 1.12 pgoyette /* sys_fchflags */ 4415 1.12 pgoyette case 35: 4416 1.12 pgoyette switch(ndx) { 4417 1.12 pgoyette case 0: 4418 1.12 pgoyette p = "int"; 4419 1.12 pgoyette break; 4420 1.12 pgoyette case 1: 4421 1.12 pgoyette p = "u_long"; 4422 1.12 pgoyette break; 4423 1.12 pgoyette default: 4424 1.12 pgoyette break; 4425 1.12 pgoyette }; 4426 1.12 pgoyette break; 4427 1.12 pgoyette /* sys_sync */ 4428 1.12 pgoyette case 36: 4429 1.12 pgoyette break; 4430 1.12 pgoyette /* sys_kill */ 4431 1.12 pgoyette case 37: 4432 1.12 pgoyette switch(ndx) { 4433 1.12 pgoyette case 0: 4434 1.12 pgoyette p = "pid_t"; 4435 1.12 pgoyette break; 4436 1.12 pgoyette case 1: 4437 1.12 pgoyette p = "int"; 4438 1.12 pgoyette break; 4439 1.12 pgoyette default: 4440 1.12 pgoyette break; 4441 1.12 pgoyette }; 4442 1.12 pgoyette break; 4443 1.12 pgoyette /* sys_stat */ 4444 1.12 pgoyette case 38: 4445 1.12 pgoyette switch(ndx) { 4446 1.12 pgoyette case 0: 4447 1.12 pgoyette p = "const char *"; 4448 1.12 pgoyette break; 4449 1.12 pgoyette case 1: 4450 1.12 pgoyette p = "struct stat43 *"; 4451 1.12 pgoyette break; 4452 1.12 pgoyette default: 4453 1.12 pgoyette break; 4454 1.12 pgoyette }; 4455 1.12 pgoyette break; 4456 1.12 pgoyette /* sys_getppid */ 4457 1.12 pgoyette case 39: 4458 1.12 pgoyette break; 4459 1.12 pgoyette /* sys_lstat */ 4460 1.12 pgoyette case 40: 4461 1.12 pgoyette switch(ndx) { 4462 1.12 pgoyette case 0: 4463 1.12 pgoyette p = "const char *"; 4464 1.12 pgoyette break; 4465 1.12 pgoyette case 1: 4466 1.12 pgoyette p = "struct stat43 *"; 4467 1.12 pgoyette break; 4468 1.12 pgoyette default: 4469 1.12 pgoyette break; 4470 1.12 pgoyette }; 4471 1.12 pgoyette break; 4472 1.12 pgoyette /* sys_dup */ 4473 1.12 pgoyette case 41: 4474 1.12 pgoyette switch(ndx) { 4475 1.12 pgoyette case 0: 4476 1.12 pgoyette p = "int"; 4477 1.12 pgoyette break; 4478 1.12 pgoyette default: 4479 1.12 pgoyette break; 4480 1.12 pgoyette }; 4481 1.12 pgoyette break; 4482 1.12 pgoyette /* sys_pipe */ 4483 1.12 pgoyette case 42: 4484 1.12 pgoyette break; 4485 1.12 pgoyette /* sys_getegid */ 4486 1.12 pgoyette case 43: 4487 1.12 pgoyette break; 4488 1.12 pgoyette /* sys_profil */ 4489 1.12 pgoyette case 44: 4490 1.12 pgoyette switch(ndx) { 4491 1.12 pgoyette case 0: 4492 1.12 pgoyette p = "char *"; 4493 1.12 pgoyette break; 4494 1.12 pgoyette case 1: 4495 1.12 pgoyette p = "size_t"; 4496 1.12 pgoyette break; 4497 1.12 pgoyette case 2: 4498 1.12 pgoyette p = "u_long"; 4499 1.12 pgoyette break; 4500 1.12 pgoyette case 3: 4501 1.12 pgoyette p = "u_int"; 4502 1.12 pgoyette break; 4503 1.12 pgoyette default: 4504 1.12 pgoyette break; 4505 1.12 pgoyette }; 4506 1.12 pgoyette break; 4507 1.12 pgoyette /* sys_ktrace */ 4508 1.12 pgoyette case 45: 4509 1.12 pgoyette switch(ndx) { 4510 1.12 pgoyette case 0: 4511 1.12 pgoyette p = "const char *"; 4512 1.12 pgoyette break; 4513 1.12 pgoyette case 1: 4514 1.12 pgoyette p = "int"; 4515 1.12 pgoyette break; 4516 1.12 pgoyette case 2: 4517 1.12 pgoyette p = "int"; 4518 1.12 pgoyette break; 4519 1.12 pgoyette case 3: 4520 1.12 pgoyette p = "pid_t"; 4521 1.12 pgoyette break; 4522 1.12 pgoyette default: 4523 1.12 pgoyette break; 4524 1.12 pgoyette }; 4525 1.12 pgoyette break; 4526 1.12 pgoyette /* sys_sigaction */ 4527 1.12 pgoyette case 46: 4528 1.12 pgoyette switch(ndx) { 4529 1.12 pgoyette case 0: 4530 1.12 pgoyette p = "int"; 4531 1.12 pgoyette break; 4532 1.12 pgoyette case 1: 4533 1.12 pgoyette p = "const struct sigaction13 *"; 4534 1.12 pgoyette break; 4535 1.12 pgoyette case 2: 4536 1.12 pgoyette p = "struct sigaction13 *"; 4537 1.12 pgoyette break; 4538 1.12 pgoyette default: 4539 1.12 pgoyette break; 4540 1.12 pgoyette }; 4541 1.12 pgoyette break; 4542 1.12 pgoyette /* sys_getgid_with_egid */ 4543 1.12 pgoyette case 47: 4544 1.12 pgoyette break; 4545 1.12 pgoyette /* sys_sigprocmask */ 4546 1.12 pgoyette case 48: 4547 1.12 pgoyette switch(ndx) { 4548 1.12 pgoyette case 0: 4549 1.12 pgoyette p = "int"; 4550 1.12 pgoyette break; 4551 1.12 pgoyette case 1: 4552 1.12 pgoyette p = "int"; 4553 1.12 pgoyette break; 4554 1.12 pgoyette default: 4555 1.12 pgoyette break; 4556 1.12 pgoyette }; 4557 1.12 pgoyette break; 4558 1.12 pgoyette /* sys___getlogin */ 4559 1.12 pgoyette case 49: 4560 1.12 pgoyette switch(ndx) { 4561 1.12 pgoyette case 0: 4562 1.12 pgoyette p = "char *"; 4563 1.12 pgoyette break; 4564 1.12 pgoyette case 1: 4565 1.12 pgoyette p = "size_t"; 4566 1.12 pgoyette break; 4567 1.12 pgoyette default: 4568 1.12 pgoyette break; 4569 1.12 pgoyette }; 4570 1.12 pgoyette break; 4571 1.12 pgoyette /* sys___setlogin */ 4572 1.12 pgoyette case 50: 4573 1.12 pgoyette switch(ndx) { 4574 1.12 pgoyette case 0: 4575 1.12 pgoyette p = "const char *"; 4576 1.12 pgoyette break; 4577 1.12 pgoyette default: 4578 1.12 pgoyette break; 4579 1.12 pgoyette }; 4580 1.12 pgoyette break; 4581 1.12 pgoyette /* sys_acct */ 4582 1.12 pgoyette case 51: 4583 1.12 pgoyette switch(ndx) { 4584 1.12 pgoyette case 0: 4585 1.12 pgoyette p = "const char *"; 4586 1.12 pgoyette break; 4587 1.12 pgoyette default: 4588 1.12 pgoyette break; 4589 1.12 pgoyette }; 4590 1.12 pgoyette break; 4591 1.12 pgoyette /* sys_sigpending */ 4592 1.12 pgoyette case 52: 4593 1.12 pgoyette break; 4594 1.12 pgoyette /* sys_sigaltstack */ 4595 1.12 pgoyette case 53: 4596 1.12 pgoyette switch(ndx) { 4597 1.12 pgoyette case 0: 4598 1.12 pgoyette p = "const struct sigaltstack13 *"; 4599 1.12 pgoyette break; 4600 1.12 pgoyette case 1: 4601 1.12 pgoyette p = "struct sigaltstack13 *"; 4602 1.12 pgoyette break; 4603 1.12 pgoyette default: 4604 1.12 pgoyette break; 4605 1.12 pgoyette }; 4606 1.12 pgoyette break; 4607 1.12 pgoyette /* sys_ioctl */ 4608 1.12 pgoyette case 54: 4609 1.12 pgoyette switch(ndx) { 4610 1.12 pgoyette case 0: 4611 1.12 pgoyette p = "int"; 4612 1.12 pgoyette break; 4613 1.12 pgoyette case 1: 4614 1.12 pgoyette p = "u_long"; 4615 1.12 pgoyette break; 4616 1.12 pgoyette case 2: 4617 1.12 pgoyette p = "void *"; 4618 1.12 pgoyette break; 4619 1.12 pgoyette default: 4620 1.12 pgoyette break; 4621 1.12 pgoyette }; 4622 1.12 pgoyette break; 4623 1.12 pgoyette /* sys_reboot */ 4624 1.12 pgoyette case 55: 4625 1.12 pgoyette switch(ndx) { 4626 1.12 pgoyette case 0: 4627 1.12 pgoyette p = "int"; 4628 1.12 pgoyette break; 4629 1.12 pgoyette default: 4630 1.12 pgoyette break; 4631 1.12 pgoyette }; 4632 1.12 pgoyette break; 4633 1.12 pgoyette /* sys_revoke */ 4634 1.12 pgoyette case 56: 4635 1.12 pgoyette switch(ndx) { 4636 1.12 pgoyette case 0: 4637 1.12 pgoyette p = "const char *"; 4638 1.12 pgoyette break; 4639 1.12 pgoyette default: 4640 1.12 pgoyette break; 4641 1.12 pgoyette }; 4642 1.12 pgoyette break; 4643 1.12 pgoyette /* sys_symlink */ 4644 1.12 pgoyette case 57: 4645 1.12 pgoyette switch(ndx) { 4646 1.12 pgoyette case 0: 4647 1.12 pgoyette p = "const char *"; 4648 1.12 pgoyette break; 4649 1.12 pgoyette case 1: 4650 1.12 pgoyette p = "const char *"; 4651 1.12 pgoyette break; 4652 1.12 pgoyette default: 4653 1.12 pgoyette break; 4654 1.12 pgoyette }; 4655 1.12 pgoyette break; 4656 1.12 pgoyette /* sys_readlink */ 4657 1.12 pgoyette case 58: 4658 1.12 pgoyette switch(ndx) { 4659 1.12 pgoyette case 0: 4660 1.12 pgoyette p = "const char *"; 4661 1.12 pgoyette break; 4662 1.12 pgoyette case 1: 4663 1.12 pgoyette p = "char *"; 4664 1.12 pgoyette break; 4665 1.12 pgoyette case 2: 4666 1.12 pgoyette p = "size_t"; 4667 1.12 pgoyette break; 4668 1.12 pgoyette default: 4669 1.12 pgoyette break; 4670 1.12 pgoyette }; 4671 1.12 pgoyette break; 4672 1.12 pgoyette /* sys_execve */ 4673 1.12 pgoyette case 59: 4674 1.12 pgoyette switch(ndx) { 4675 1.12 pgoyette case 0: 4676 1.12 pgoyette p = "const char *"; 4677 1.12 pgoyette break; 4678 1.12 pgoyette case 1: 4679 1.12 pgoyette p = "char *const *"; 4680 1.12 pgoyette break; 4681 1.12 pgoyette case 2: 4682 1.12 pgoyette p = "char *const *"; 4683 1.12 pgoyette break; 4684 1.12 pgoyette default: 4685 1.12 pgoyette break; 4686 1.12 pgoyette }; 4687 1.12 pgoyette break; 4688 1.12 pgoyette /* sys_umask */ 4689 1.12 pgoyette case 60: 4690 1.12 pgoyette switch(ndx) { 4691 1.12 pgoyette case 0: 4692 1.12 pgoyette p = "mode_t"; 4693 1.12 pgoyette break; 4694 1.12 pgoyette default: 4695 1.12 pgoyette break; 4696 1.12 pgoyette }; 4697 1.12 pgoyette break; 4698 1.12 pgoyette /* sys_chroot */ 4699 1.12 pgoyette case 61: 4700 1.12 pgoyette switch(ndx) { 4701 1.12 pgoyette case 0: 4702 1.12 pgoyette p = "const char *"; 4703 1.12 pgoyette break; 4704 1.12 pgoyette default: 4705 1.12 pgoyette break; 4706 1.12 pgoyette }; 4707 1.12 pgoyette break; 4708 1.12 pgoyette /* sys_fstat */ 4709 1.12 pgoyette case 62: 4710 1.12 pgoyette switch(ndx) { 4711 1.12 pgoyette case 0: 4712 1.12 pgoyette p = "int"; 4713 1.12 pgoyette break; 4714 1.12 pgoyette case 1: 4715 1.12 pgoyette p = "struct stat43 *"; 4716 1.12 pgoyette break; 4717 1.12 pgoyette default: 4718 1.12 pgoyette break; 4719 1.12 pgoyette }; 4720 1.12 pgoyette break; 4721 1.12 pgoyette /* sys_getkerninfo */ 4722 1.12 pgoyette case 63: 4723 1.12 pgoyette switch(ndx) { 4724 1.12 pgoyette case 0: 4725 1.12 pgoyette p = "int"; 4726 1.12 pgoyette break; 4727 1.12 pgoyette case 1: 4728 1.12 pgoyette p = "char *"; 4729 1.12 pgoyette break; 4730 1.12 pgoyette case 2: 4731 1.12 pgoyette p = "int *"; 4732 1.12 pgoyette break; 4733 1.12 pgoyette case 3: 4734 1.12 pgoyette p = "int"; 4735 1.12 pgoyette break; 4736 1.12 pgoyette default: 4737 1.12 pgoyette break; 4738 1.12 pgoyette }; 4739 1.12 pgoyette break; 4740 1.12 pgoyette /* sys_getpagesize */ 4741 1.12 pgoyette case 64: 4742 1.12 pgoyette break; 4743 1.12 pgoyette /* sys_msync */ 4744 1.12 pgoyette case 65: 4745 1.12 pgoyette switch(ndx) { 4746 1.12 pgoyette case 0: 4747 1.12 pgoyette p = "void *"; 4748 1.12 pgoyette break; 4749 1.12 pgoyette case 1: 4750 1.12 pgoyette p = "size_t"; 4751 1.12 pgoyette break; 4752 1.12 pgoyette default: 4753 1.12 pgoyette break; 4754 1.12 pgoyette }; 4755 1.12 pgoyette break; 4756 1.12 pgoyette /* sys_vfork */ 4757 1.12 pgoyette case 66: 4758 1.12 pgoyette break; 4759 1.12 pgoyette /* sys_mmap */ 4760 1.12 pgoyette case 71: 4761 1.12 pgoyette switch(ndx) { 4762 1.12 pgoyette case 0: 4763 1.12 pgoyette p = "void *"; 4764 1.12 pgoyette break; 4765 1.12 pgoyette case 1: 4766 1.12 pgoyette p = "size_t"; 4767 1.12 pgoyette break; 4768 1.12 pgoyette case 2: 4769 1.12 pgoyette p = "int"; 4770 1.12 pgoyette break; 4771 1.12 pgoyette case 3: 4772 1.12 pgoyette p = "int"; 4773 1.12 pgoyette break; 4774 1.12 pgoyette case 4: 4775 1.12 pgoyette p = "int"; 4776 1.12 pgoyette break; 4777 1.12 pgoyette case 5: 4778 1.12 pgoyette p = "long"; 4779 1.12 pgoyette break; 4780 1.12 pgoyette default: 4781 1.12 pgoyette break; 4782 1.12 pgoyette }; 4783 1.12 pgoyette break; 4784 1.29 kamil /* sys_ovadvise */ 4785 1.29 kamil case 72: 4786 1.29 kamil switch(ndx) { 4787 1.29 kamil case 0: 4788 1.29 kamil p = "int"; 4789 1.29 kamil break; 4790 1.29 kamil default: 4791 1.29 kamil break; 4792 1.29 kamil }; 4793 1.29 kamil break; 4794 1.12 pgoyette /* sys_munmap */ 4795 1.12 pgoyette case 73: 4796 1.12 pgoyette switch(ndx) { 4797 1.12 pgoyette case 0: 4798 1.12 pgoyette p = "void *"; 4799 1.12 pgoyette break; 4800 1.12 pgoyette case 1: 4801 1.12 pgoyette p = "size_t"; 4802 1.12 pgoyette break; 4803 1.12 pgoyette default: 4804 1.12 pgoyette break; 4805 1.12 pgoyette }; 4806 1.12 pgoyette break; 4807 1.12 pgoyette /* sys_mprotect */ 4808 1.12 pgoyette case 74: 4809 1.12 pgoyette switch(ndx) { 4810 1.12 pgoyette case 0: 4811 1.12 pgoyette p = "void *"; 4812 1.12 pgoyette break; 4813 1.12 pgoyette case 1: 4814 1.12 pgoyette p = "size_t"; 4815 1.12 pgoyette break; 4816 1.12 pgoyette case 2: 4817 1.12 pgoyette p = "int"; 4818 1.12 pgoyette break; 4819 1.12 pgoyette default: 4820 1.12 pgoyette break; 4821 1.12 pgoyette }; 4822 1.12 pgoyette break; 4823 1.12 pgoyette /* sys_madvise */ 4824 1.12 pgoyette case 75: 4825 1.12 pgoyette switch(ndx) { 4826 1.12 pgoyette case 0: 4827 1.12 pgoyette p = "void *"; 4828 1.12 pgoyette break; 4829 1.12 pgoyette case 1: 4830 1.12 pgoyette p = "size_t"; 4831 1.12 pgoyette break; 4832 1.12 pgoyette case 2: 4833 1.12 pgoyette p = "int"; 4834 1.12 pgoyette break; 4835 1.12 pgoyette default: 4836 1.12 pgoyette break; 4837 1.12 pgoyette }; 4838 1.12 pgoyette break; 4839 1.12 pgoyette /* sys_mincore */ 4840 1.12 pgoyette case 78: 4841 1.12 pgoyette switch(ndx) { 4842 1.12 pgoyette case 0: 4843 1.12 pgoyette p = "void *"; 4844 1.12 pgoyette break; 4845 1.12 pgoyette case 1: 4846 1.12 pgoyette p = "size_t"; 4847 1.12 pgoyette break; 4848 1.12 pgoyette case 2: 4849 1.12 pgoyette p = "char *"; 4850 1.12 pgoyette break; 4851 1.12 pgoyette default: 4852 1.12 pgoyette break; 4853 1.12 pgoyette }; 4854 1.12 pgoyette break; 4855 1.12 pgoyette /* sys_getgroups */ 4856 1.12 pgoyette case 79: 4857 1.12 pgoyette switch(ndx) { 4858 1.12 pgoyette case 0: 4859 1.12 pgoyette p = "int"; 4860 1.12 pgoyette break; 4861 1.12 pgoyette case 1: 4862 1.12 pgoyette p = "gid_t *"; 4863 1.12 pgoyette break; 4864 1.12 pgoyette default: 4865 1.12 pgoyette break; 4866 1.12 pgoyette }; 4867 1.12 pgoyette break; 4868 1.12 pgoyette /* sys_setgroups */ 4869 1.12 pgoyette case 80: 4870 1.12 pgoyette switch(ndx) { 4871 1.12 pgoyette case 0: 4872 1.12 pgoyette p = "int"; 4873 1.12 pgoyette break; 4874 1.12 pgoyette case 1: 4875 1.12 pgoyette p = "const gid_t *"; 4876 1.12 pgoyette break; 4877 1.12 pgoyette default: 4878 1.12 pgoyette break; 4879 1.12 pgoyette }; 4880 1.12 pgoyette break; 4881 1.12 pgoyette /* sys_getpgrp */ 4882 1.12 pgoyette case 81: 4883 1.12 pgoyette break; 4884 1.12 pgoyette /* sys_setpgid */ 4885 1.12 pgoyette case 82: 4886 1.12 pgoyette switch(ndx) { 4887 1.12 pgoyette case 0: 4888 1.12 pgoyette p = "pid_t"; 4889 1.12 pgoyette break; 4890 1.12 pgoyette case 1: 4891 1.12 pgoyette p = "pid_t"; 4892 1.12 pgoyette break; 4893 1.12 pgoyette default: 4894 1.12 pgoyette break; 4895 1.12 pgoyette }; 4896 1.12 pgoyette break; 4897 1.12 pgoyette /* sys_setitimer */ 4898 1.12 pgoyette case 83: 4899 1.12 pgoyette switch(ndx) { 4900 1.12 pgoyette case 0: 4901 1.12 pgoyette p = "int"; 4902 1.12 pgoyette break; 4903 1.12 pgoyette case 1: 4904 1.12 pgoyette p = "const struct itimerval50 *"; 4905 1.12 pgoyette break; 4906 1.12 pgoyette case 2: 4907 1.12 pgoyette p = "struct itimerval50 *"; 4908 1.12 pgoyette break; 4909 1.12 pgoyette default: 4910 1.12 pgoyette break; 4911 1.12 pgoyette }; 4912 1.12 pgoyette break; 4913 1.12 pgoyette /* sys_wait */ 4914 1.12 pgoyette case 84: 4915 1.12 pgoyette break; 4916 1.12 pgoyette /* sys_swapon */ 4917 1.12 pgoyette case 85: 4918 1.12 pgoyette switch(ndx) { 4919 1.12 pgoyette case 0: 4920 1.12 pgoyette p = "const char *"; 4921 1.12 pgoyette break; 4922 1.12 pgoyette default: 4923 1.12 pgoyette break; 4924 1.12 pgoyette }; 4925 1.12 pgoyette break; 4926 1.12 pgoyette /* sys_getitimer */ 4927 1.12 pgoyette case 86: 4928 1.12 pgoyette switch(ndx) { 4929 1.12 pgoyette case 0: 4930 1.12 pgoyette p = "int"; 4931 1.12 pgoyette break; 4932 1.12 pgoyette case 1: 4933 1.12 pgoyette p = "struct itimerval50 *"; 4934 1.12 pgoyette break; 4935 1.12 pgoyette default: 4936 1.12 pgoyette break; 4937 1.12 pgoyette }; 4938 1.12 pgoyette break; 4939 1.12 pgoyette /* sys_gethostname */ 4940 1.12 pgoyette case 87: 4941 1.12 pgoyette switch(ndx) { 4942 1.12 pgoyette case 0: 4943 1.12 pgoyette p = "char *"; 4944 1.12 pgoyette break; 4945 1.12 pgoyette case 1: 4946 1.12 pgoyette p = "u_int"; 4947 1.12 pgoyette break; 4948 1.12 pgoyette default: 4949 1.12 pgoyette break; 4950 1.12 pgoyette }; 4951 1.12 pgoyette break; 4952 1.12 pgoyette /* sys_sethostname */ 4953 1.12 pgoyette case 88: 4954 1.12 pgoyette switch(ndx) { 4955 1.12 pgoyette case 0: 4956 1.12 pgoyette p = "char *"; 4957 1.12 pgoyette break; 4958 1.12 pgoyette case 1: 4959 1.12 pgoyette p = "u_int"; 4960 1.12 pgoyette break; 4961 1.12 pgoyette default: 4962 1.12 pgoyette break; 4963 1.12 pgoyette }; 4964 1.12 pgoyette break; 4965 1.12 pgoyette /* sys_getdtablesize */ 4966 1.12 pgoyette case 89: 4967 1.12 pgoyette break; 4968 1.12 pgoyette /* sys_dup2 */ 4969 1.12 pgoyette case 90: 4970 1.12 pgoyette switch(ndx) { 4971 1.12 pgoyette case 0: 4972 1.12 pgoyette p = "int"; 4973 1.12 pgoyette break; 4974 1.12 pgoyette case 1: 4975 1.12 pgoyette p = "int"; 4976 1.12 pgoyette break; 4977 1.12 pgoyette default: 4978 1.12 pgoyette break; 4979 1.12 pgoyette }; 4980 1.12 pgoyette break; 4981 1.43 riastrad /* sys_getrandom */ 4982 1.43 riastrad case 91: 4983 1.43 riastrad switch(ndx) { 4984 1.43 riastrad case 0: 4985 1.43 riastrad p = "void *"; 4986 1.43 riastrad break; 4987 1.43 riastrad case 1: 4988 1.43 riastrad p = "size_t"; 4989 1.43 riastrad break; 4990 1.43 riastrad case 2: 4991 1.43 riastrad p = "unsigned int"; 4992 1.43 riastrad break; 4993 1.43 riastrad default: 4994 1.43 riastrad break; 4995 1.43 riastrad }; 4996 1.43 riastrad break; 4997 1.12 pgoyette /* sys_fcntl */ 4998 1.12 pgoyette case 92: 4999 1.12 pgoyette switch(ndx) { 5000 1.12 pgoyette case 0: 5001 1.12 pgoyette p = "int"; 5002 1.12 pgoyette break; 5003 1.12 pgoyette case 1: 5004 1.12 pgoyette p = "int"; 5005 1.12 pgoyette break; 5006 1.12 pgoyette case 2: 5007 1.12 pgoyette p = "void *"; 5008 1.12 pgoyette break; 5009 1.12 pgoyette default: 5010 1.12 pgoyette break; 5011 1.12 pgoyette }; 5012 1.12 pgoyette break; 5013 1.12 pgoyette /* sys_select */ 5014 1.12 pgoyette case 93: 5015 1.12 pgoyette switch(ndx) { 5016 1.12 pgoyette case 0: 5017 1.12 pgoyette p = "int"; 5018 1.12 pgoyette break; 5019 1.12 pgoyette case 1: 5020 1.12 pgoyette p = "fd_set *"; 5021 1.12 pgoyette break; 5022 1.12 pgoyette case 2: 5023 1.12 pgoyette p = "fd_set *"; 5024 1.12 pgoyette break; 5025 1.12 pgoyette case 3: 5026 1.12 pgoyette p = "fd_set *"; 5027 1.12 pgoyette break; 5028 1.12 pgoyette case 4: 5029 1.12 pgoyette p = "struct timeval50 *"; 5030 1.12 pgoyette break; 5031 1.12 pgoyette default: 5032 1.12 pgoyette break; 5033 1.12 pgoyette }; 5034 1.12 pgoyette break; 5035 1.12 pgoyette /* sys_fsync */ 5036 1.12 pgoyette case 95: 5037 1.12 pgoyette switch(ndx) { 5038 1.12 pgoyette case 0: 5039 1.12 pgoyette p = "int"; 5040 1.12 pgoyette break; 5041 1.12 pgoyette default: 5042 1.12 pgoyette break; 5043 1.12 pgoyette }; 5044 1.12 pgoyette break; 5045 1.12 pgoyette /* sys_setpriority */ 5046 1.12 pgoyette case 96: 5047 1.12 pgoyette switch(ndx) { 5048 1.12 pgoyette case 0: 5049 1.12 pgoyette p = "int"; 5050 1.12 pgoyette break; 5051 1.12 pgoyette case 1: 5052 1.12 pgoyette p = "id_t"; 5053 1.12 pgoyette break; 5054 1.12 pgoyette case 2: 5055 1.12 pgoyette p = "int"; 5056 1.12 pgoyette break; 5057 1.12 pgoyette default: 5058 1.12 pgoyette break; 5059 1.12 pgoyette }; 5060 1.12 pgoyette break; 5061 1.12 pgoyette /* sys_socket */ 5062 1.12 pgoyette case 97: 5063 1.12 pgoyette switch(ndx) { 5064 1.12 pgoyette case 0: 5065 1.12 pgoyette p = "int"; 5066 1.12 pgoyette break; 5067 1.12 pgoyette case 1: 5068 1.12 pgoyette p = "int"; 5069 1.12 pgoyette break; 5070 1.12 pgoyette case 2: 5071 1.12 pgoyette p = "int"; 5072 1.12 pgoyette break; 5073 1.12 pgoyette default: 5074 1.12 pgoyette break; 5075 1.12 pgoyette }; 5076 1.12 pgoyette break; 5077 1.12 pgoyette /* sys_connect */ 5078 1.12 pgoyette case 98: 5079 1.12 pgoyette switch(ndx) { 5080 1.12 pgoyette case 0: 5081 1.12 pgoyette p = "int"; 5082 1.12 pgoyette break; 5083 1.12 pgoyette case 1: 5084 1.12 pgoyette p = "const struct sockaddr *"; 5085 1.12 pgoyette break; 5086 1.12 pgoyette case 2: 5087 1.12 pgoyette p = "socklen_t"; 5088 1.12 pgoyette break; 5089 1.12 pgoyette default: 5090 1.12 pgoyette break; 5091 1.12 pgoyette }; 5092 1.12 pgoyette break; 5093 1.12 pgoyette /* sys_accept */ 5094 1.12 pgoyette case 99: 5095 1.12 pgoyette switch(ndx) { 5096 1.12 pgoyette case 0: 5097 1.12 pgoyette p = "int"; 5098 1.12 pgoyette break; 5099 1.12 pgoyette case 1: 5100 1.12 pgoyette p = "void *"; 5101 1.12 pgoyette break; 5102 1.12 pgoyette case 2: 5103 1.12 pgoyette p = "socklen_t *"; 5104 1.12 pgoyette break; 5105 1.12 pgoyette default: 5106 1.12 pgoyette break; 5107 1.12 pgoyette }; 5108 1.12 pgoyette break; 5109 1.12 pgoyette /* sys_getpriority */ 5110 1.12 pgoyette case 100: 5111 1.12 pgoyette switch(ndx) { 5112 1.12 pgoyette case 0: 5113 1.12 pgoyette p = "int"; 5114 1.12 pgoyette break; 5115 1.12 pgoyette case 1: 5116 1.12 pgoyette p = "id_t"; 5117 1.12 pgoyette break; 5118 1.12 pgoyette default: 5119 1.12 pgoyette break; 5120 1.12 pgoyette }; 5121 1.12 pgoyette break; 5122 1.12 pgoyette /* sys_send */ 5123 1.12 pgoyette case 101: 5124 1.12 pgoyette switch(ndx) { 5125 1.12 pgoyette case 0: 5126 1.12 pgoyette p = "int"; 5127 1.12 pgoyette break; 5128 1.12 pgoyette case 1: 5129 1.12 pgoyette p = "void *"; 5130 1.12 pgoyette break; 5131 1.12 pgoyette case 2: 5132 1.12 pgoyette p = "int"; 5133 1.12 pgoyette break; 5134 1.12 pgoyette case 3: 5135 1.12 pgoyette p = "int"; 5136 1.12 pgoyette break; 5137 1.12 pgoyette default: 5138 1.12 pgoyette break; 5139 1.12 pgoyette }; 5140 1.12 pgoyette break; 5141 1.12 pgoyette /* sys_recv */ 5142 1.12 pgoyette case 102: 5143 1.12 pgoyette switch(ndx) { 5144 1.12 pgoyette case 0: 5145 1.12 pgoyette p = "int"; 5146 1.12 pgoyette break; 5147 1.12 pgoyette case 1: 5148 1.12 pgoyette p = "void *"; 5149 1.12 pgoyette break; 5150 1.12 pgoyette case 2: 5151 1.12 pgoyette p = "int"; 5152 1.12 pgoyette break; 5153 1.12 pgoyette case 3: 5154 1.12 pgoyette p = "int"; 5155 1.12 pgoyette break; 5156 1.12 pgoyette default: 5157 1.12 pgoyette break; 5158 1.12 pgoyette }; 5159 1.12 pgoyette break; 5160 1.12 pgoyette /* sys_sigreturn */ 5161 1.12 pgoyette case 103: 5162 1.12 pgoyette switch(ndx) { 5163 1.12 pgoyette case 0: 5164 1.12 pgoyette p = "struct sigcontext13 *"; 5165 1.12 pgoyette break; 5166 1.12 pgoyette default: 5167 1.12 pgoyette break; 5168 1.12 pgoyette }; 5169 1.12 pgoyette break; 5170 1.12 pgoyette /* sys_bind */ 5171 1.12 pgoyette case 104: 5172 1.12 pgoyette switch(ndx) { 5173 1.12 pgoyette case 0: 5174 1.12 pgoyette p = "int"; 5175 1.12 pgoyette break; 5176 1.12 pgoyette case 1: 5177 1.12 pgoyette p = "const struct sockaddr *"; 5178 1.12 pgoyette break; 5179 1.12 pgoyette case 2: 5180 1.12 pgoyette p = "socklen_t"; 5181 1.12 pgoyette break; 5182 1.12 pgoyette default: 5183 1.12 pgoyette break; 5184 1.12 pgoyette }; 5185 1.12 pgoyette break; 5186 1.12 pgoyette /* sys_setsockopt */ 5187 1.12 pgoyette case 105: 5188 1.12 pgoyette switch(ndx) { 5189 1.12 pgoyette case 0: 5190 1.12 pgoyette p = "int"; 5191 1.12 pgoyette break; 5192 1.12 pgoyette case 1: 5193 1.12 pgoyette p = "int"; 5194 1.12 pgoyette break; 5195 1.12 pgoyette case 2: 5196 1.12 pgoyette p = "int"; 5197 1.12 pgoyette break; 5198 1.12 pgoyette case 3: 5199 1.12 pgoyette p = "const void *"; 5200 1.12 pgoyette break; 5201 1.12 pgoyette case 4: 5202 1.12 pgoyette p = "socklen_t"; 5203 1.12 pgoyette break; 5204 1.12 pgoyette default: 5205 1.12 pgoyette break; 5206 1.12 pgoyette }; 5207 1.12 pgoyette break; 5208 1.12 pgoyette /* sys_listen */ 5209 1.12 pgoyette case 106: 5210 1.12 pgoyette switch(ndx) { 5211 1.12 pgoyette case 0: 5212 1.12 pgoyette p = "int"; 5213 1.12 pgoyette break; 5214 1.12 pgoyette case 1: 5215 1.12 pgoyette p = "int"; 5216 1.12 pgoyette break; 5217 1.12 pgoyette default: 5218 1.12 pgoyette break; 5219 1.12 pgoyette }; 5220 1.12 pgoyette break; 5221 1.12 pgoyette /* sys_sigvec */ 5222 1.12 pgoyette case 108: 5223 1.12 pgoyette switch(ndx) { 5224 1.12 pgoyette case 0: 5225 1.12 pgoyette p = "int"; 5226 1.12 pgoyette break; 5227 1.12 pgoyette case 1: 5228 1.12 pgoyette p = "struct sigvec *"; 5229 1.12 pgoyette break; 5230 1.12 pgoyette case 2: 5231 1.12 pgoyette p = "struct sigvec *"; 5232 1.12 pgoyette break; 5233 1.12 pgoyette default: 5234 1.12 pgoyette break; 5235 1.12 pgoyette }; 5236 1.12 pgoyette break; 5237 1.12 pgoyette /* sys_sigblock */ 5238 1.12 pgoyette case 109: 5239 1.12 pgoyette switch(ndx) { 5240 1.12 pgoyette case 0: 5241 1.12 pgoyette p = "int"; 5242 1.12 pgoyette break; 5243 1.12 pgoyette default: 5244 1.12 pgoyette break; 5245 1.12 pgoyette }; 5246 1.12 pgoyette break; 5247 1.12 pgoyette /* sys_sigsetmask */ 5248 1.12 pgoyette case 110: 5249 1.12 pgoyette switch(ndx) { 5250 1.12 pgoyette case 0: 5251 1.12 pgoyette p = "int"; 5252 1.12 pgoyette break; 5253 1.12 pgoyette default: 5254 1.12 pgoyette break; 5255 1.12 pgoyette }; 5256 1.12 pgoyette break; 5257 1.12 pgoyette /* sys_sigsuspend */ 5258 1.12 pgoyette case 111: 5259 1.12 pgoyette switch(ndx) { 5260 1.12 pgoyette case 0: 5261 1.12 pgoyette p = "int"; 5262 1.12 pgoyette break; 5263 1.12 pgoyette default: 5264 1.12 pgoyette break; 5265 1.12 pgoyette }; 5266 1.12 pgoyette break; 5267 1.12 pgoyette /* sys_sigstack */ 5268 1.12 pgoyette case 112: 5269 1.12 pgoyette switch(ndx) { 5270 1.12 pgoyette case 0: 5271 1.12 pgoyette p = "struct sigstack *"; 5272 1.12 pgoyette break; 5273 1.12 pgoyette case 1: 5274 1.12 pgoyette p = "struct sigstack *"; 5275 1.12 pgoyette break; 5276 1.12 pgoyette default: 5277 1.12 pgoyette break; 5278 1.12 pgoyette }; 5279 1.12 pgoyette break; 5280 1.12 pgoyette /* sys_recvmsg */ 5281 1.12 pgoyette case 113: 5282 1.12 pgoyette switch(ndx) { 5283 1.12 pgoyette case 0: 5284 1.12 pgoyette p = "int"; 5285 1.12 pgoyette break; 5286 1.12 pgoyette case 1: 5287 1.12 pgoyette p = "struct omsghdr *"; 5288 1.12 pgoyette break; 5289 1.12 pgoyette case 2: 5290 1.12 pgoyette p = "int"; 5291 1.12 pgoyette break; 5292 1.12 pgoyette default: 5293 1.12 pgoyette break; 5294 1.12 pgoyette }; 5295 1.12 pgoyette break; 5296 1.12 pgoyette /* sys_sendmsg */ 5297 1.12 pgoyette case 114: 5298 1.12 pgoyette switch(ndx) { 5299 1.12 pgoyette case 0: 5300 1.12 pgoyette p = "int"; 5301 1.12 pgoyette break; 5302 1.12 pgoyette case 1: 5303 1.12 pgoyette p = "void *"; 5304 1.12 pgoyette break; 5305 1.12 pgoyette case 2: 5306 1.12 pgoyette p = "int"; 5307 1.12 pgoyette break; 5308 1.12 pgoyette default: 5309 1.12 pgoyette break; 5310 1.12 pgoyette }; 5311 1.12 pgoyette break; 5312 1.12 pgoyette /* sys_gettimeofday */ 5313 1.12 pgoyette case 116: 5314 1.12 pgoyette switch(ndx) { 5315 1.12 pgoyette case 0: 5316 1.12 pgoyette p = "struct timeval50 *"; 5317 1.12 pgoyette break; 5318 1.12 pgoyette case 1: 5319 1.12 pgoyette p = "void *"; 5320 1.12 pgoyette break; 5321 1.12 pgoyette default: 5322 1.12 pgoyette break; 5323 1.12 pgoyette }; 5324 1.12 pgoyette break; 5325 1.12 pgoyette /* sys_getrusage */ 5326 1.12 pgoyette case 117: 5327 1.12 pgoyette switch(ndx) { 5328 1.12 pgoyette case 0: 5329 1.12 pgoyette p = "int"; 5330 1.12 pgoyette break; 5331 1.12 pgoyette case 1: 5332 1.12 pgoyette p = "struct rusage50 *"; 5333 1.12 pgoyette break; 5334 1.12 pgoyette default: 5335 1.12 pgoyette break; 5336 1.12 pgoyette }; 5337 1.12 pgoyette break; 5338 1.12 pgoyette /* sys_getsockopt */ 5339 1.12 pgoyette case 118: 5340 1.12 pgoyette switch(ndx) { 5341 1.12 pgoyette case 0: 5342 1.12 pgoyette p = "int"; 5343 1.12 pgoyette break; 5344 1.12 pgoyette case 1: 5345 1.12 pgoyette p = "int"; 5346 1.12 pgoyette break; 5347 1.12 pgoyette case 2: 5348 1.12 pgoyette p = "int"; 5349 1.12 pgoyette break; 5350 1.12 pgoyette case 3: 5351 1.12 pgoyette p = "void *"; 5352 1.12 pgoyette break; 5353 1.12 pgoyette case 4: 5354 1.12 pgoyette p = "socklen_t *"; 5355 1.12 pgoyette break; 5356 1.12 pgoyette default: 5357 1.12 pgoyette break; 5358 1.12 pgoyette }; 5359 1.12 pgoyette break; 5360 1.12 pgoyette /* sys_readv */ 5361 1.12 pgoyette case 120: 5362 1.12 pgoyette switch(ndx) { 5363 1.12 pgoyette case 0: 5364 1.12 pgoyette p = "int"; 5365 1.12 pgoyette break; 5366 1.12 pgoyette case 1: 5367 1.12 pgoyette p = "const struct iovec *"; 5368 1.12 pgoyette break; 5369 1.12 pgoyette case 2: 5370 1.12 pgoyette p = "int"; 5371 1.12 pgoyette break; 5372 1.12 pgoyette default: 5373 1.12 pgoyette break; 5374 1.12 pgoyette }; 5375 1.12 pgoyette break; 5376 1.12 pgoyette /* sys_writev */ 5377 1.12 pgoyette case 121: 5378 1.12 pgoyette switch(ndx) { 5379 1.12 pgoyette case 0: 5380 1.12 pgoyette p = "int"; 5381 1.12 pgoyette break; 5382 1.12 pgoyette case 1: 5383 1.12 pgoyette p = "const struct iovec *"; 5384 1.12 pgoyette break; 5385 1.12 pgoyette case 2: 5386 1.12 pgoyette p = "int"; 5387 1.12 pgoyette break; 5388 1.12 pgoyette default: 5389 1.12 pgoyette break; 5390 1.12 pgoyette }; 5391 1.12 pgoyette break; 5392 1.12 pgoyette /* sys_settimeofday */ 5393 1.12 pgoyette case 122: 5394 1.12 pgoyette switch(ndx) { 5395 1.12 pgoyette case 0: 5396 1.12 pgoyette p = "const struct timeval50 *"; 5397 1.12 pgoyette break; 5398 1.12 pgoyette case 1: 5399 1.12 pgoyette p = "const void *"; 5400 1.12 pgoyette break; 5401 1.12 pgoyette default: 5402 1.12 pgoyette break; 5403 1.12 pgoyette }; 5404 1.12 pgoyette break; 5405 1.12 pgoyette /* sys_fchown */ 5406 1.12 pgoyette case 123: 5407 1.12 pgoyette switch(ndx) { 5408 1.12 pgoyette case 0: 5409 1.12 pgoyette p = "int"; 5410 1.12 pgoyette break; 5411 1.12 pgoyette case 1: 5412 1.12 pgoyette p = "uid_t"; 5413 1.12 pgoyette break; 5414 1.12 pgoyette case 2: 5415 1.12 pgoyette p = "gid_t"; 5416 1.12 pgoyette break; 5417 1.12 pgoyette default: 5418 1.12 pgoyette break; 5419 1.12 pgoyette }; 5420 1.12 pgoyette break; 5421 1.12 pgoyette /* sys_fchmod */ 5422 1.12 pgoyette case 124: 5423 1.12 pgoyette switch(ndx) { 5424 1.12 pgoyette case 0: 5425 1.12 pgoyette p = "int"; 5426 1.12 pgoyette break; 5427 1.12 pgoyette case 1: 5428 1.12 pgoyette p = "mode_t"; 5429 1.12 pgoyette break; 5430 1.12 pgoyette default: 5431 1.12 pgoyette break; 5432 1.12 pgoyette }; 5433 1.12 pgoyette break; 5434 1.12 pgoyette /* sys_recvfrom */ 5435 1.12 pgoyette case 125: 5436 1.12 pgoyette switch(ndx) { 5437 1.12 pgoyette case 0: 5438 1.12 pgoyette p = "int"; 5439 1.12 pgoyette break; 5440 1.12 pgoyette case 1: 5441 1.12 pgoyette p = "void *"; 5442 1.12 pgoyette break; 5443 1.12 pgoyette case 2: 5444 1.12 pgoyette p = "size_t"; 5445 1.12 pgoyette break; 5446 1.12 pgoyette case 3: 5447 1.12 pgoyette p = "int"; 5448 1.12 pgoyette break; 5449 1.12 pgoyette case 4: 5450 1.12 pgoyette p = "void *"; 5451 1.12 pgoyette break; 5452 1.12 pgoyette case 5: 5453 1.12 pgoyette p = "socklen_t *"; 5454 1.12 pgoyette break; 5455 1.12 pgoyette default: 5456 1.12 pgoyette break; 5457 1.12 pgoyette }; 5458 1.12 pgoyette break; 5459 1.12 pgoyette /* sys_setreuid */ 5460 1.12 pgoyette case 126: 5461 1.12 pgoyette switch(ndx) { 5462 1.12 pgoyette case 0: 5463 1.12 pgoyette p = "uid_t"; 5464 1.12 pgoyette break; 5465 1.12 pgoyette case 1: 5466 1.12 pgoyette p = "uid_t"; 5467 1.12 pgoyette break; 5468 1.12 pgoyette default: 5469 1.12 pgoyette break; 5470 1.12 pgoyette }; 5471 1.12 pgoyette break; 5472 1.12 pgoyette /* sys_setregid */ 5473 1.12 pgoyette case 127: 5474 1.12 pgoyette switch(ndx) { 5475 1.12 pgoyette case 0: 5476 1.12 pgoyette p = "gid_t"; 5477 1.12 pgoyette break; 5478 1.12 pgoyette case 1: 5479 1.12 pgoyette p = "gid_t"; 5480 1.12 pgoyette break; 5481 1.12 pgoyette default: 5482 1.12 pgoyette break; 5483 1.12 pgoyette }; 5484 1.12 pgoyette break; 5485 1.12 pgoyette /* sys_rename */ 5486 1.12 pgoyette case 128: 5487 1.12 pgoyette switch(ndx) { 5488 1.12 pgoyette case 0: 5489 1.12 pgoyette p = "const char *"; 5490 1.12 pgoyette break; 5491 1.12 pgoyette case 1: 5492 1.12 pgoyette p = "const char *"; 5493 1.12 pgoyette break; 5494 1.12 pgoyette default: 5495 1.12 pgoyette break; 5496 1.12 pgoyette }; 5497 1.12 pgoyette break; 5498 1.12 pgoyette /* sys_truncate */ 5499 1.12 pgoyette case 129: 5500 1.12 pgoyette switch(ndx) { 5501 1.12 pgoyette case 0: 5502 1.12 pgoyette p = "const char *"; 5503 1.12 pgoyette break; 5504 1.12 pgoyette case 1: 5505 1.12 pgoyette p = "long"; 5506 1.12 pgoyette break; 5507 1.12 pgoyette default: 5508 1.12 pgoyette break; 5509 1.12 pgoyette }; 5510 1.12 pgoyette break; 5511 1.12 pgoyette /* sys_ftruncate */ 5512 1.12 pgoyette case 130: 5513 1.12 pgoyette switch(ndx) { 5514 1.12 pgoyette case 0: 5515 1.12 pgoyette p = "int"; 5516 1.12 pgoyette break; 5517 1.12 pgoyette case 1: 5518 1.12 pgoyette p = "long"; 5519 1.12 pgoyette break; 5520 1.12 pgoyette default: 5521 1.12 pgoyette break; 5522 1.12 pgoyette }; 5523 1.12 pgoyette break; 5524 1.12 pgoyette /* sys_flock */ 5525 1.12 pgoyette case 131: 5526 1.12 pgoyette switch(ndx) { 5527 1.12 pgoyette case 0: 5528 1.12 pgoyette p = "int"; 5529 1.12 pgoyette break; 5530 1.12 pgoyette case 1: 5531 1.12 pgoyette p = "int"; 5532 1.12 pgoyette break; 5533 1.12 pgoyette default: 5534 1.12 pgoyette break; 5535 1.12 pgoyette }; 5536 1.12 pgoyette break; 5537 1.12 pgoyette /* sys_mkfifo */ 5538 1.12 pgoyette case 132: 5539 1.12 pgoyette switch(ndx) { 5540 1.12 pgoyette case 0: 5541 1.12 pgoyette p = "const char *"; 5542 1.12 pgoyette break; 5543 1.12 pgoyette case 1: 5544 1.12 pgoyette p = "mode_t"; 5545 1.12 pgoyette break; 5546 1.12 pgoyette default: 5547 1.12 pgoyette break; 5548 1.12 pgoyette }; 5549 1.12 pgoyette break; 5550 1.12 pgoyette /* sys_sendto */ 5551 1.12 pgoyette case 133: 5552 1.12 pgoyette switch(ndx) { 5553 1.12 pgoyette case 0: 5554 1.12 pgoyette p = "int"; 5555 1.12 pgoyette break; 5556 1.12 pgoyette case 1: 5557 1.12 pgoyette p = "const void *"; 5558 1.12 pgoyette break; 5559 1.12 pgoyette case 2: 5560 1.12 pgoyette p = "size_t"; 5561 1.12 pgoyette break; 5562 1.12 pgoyette case 3: 5563 1.12 pgoyette p = "int"; 5564 1.12 pgoyette break; 5565 1.12 pgoyette case 4: 5566 1.12 pgoyette p = "const struct sockaddr *"; 5567 1.12 pgoyette break; 5568 1.12 pgoyette case 5: 5569 1.12 pgoyette p = "socklen_t"; 5570 1.12 pgoyette break; 5571 1.12 pgoyette default: 5572 1.12 pgoyette break; 5573 1.12 pgoyette }; 5574 1.12 pgoyette break; 5575 1.12 pgoyette /* sys_shutdown */ 5576 1.12 pgoyette case 134: 5577 1.12 pgoyette switch(ndx) { 5578 1.12 pgoyette case 0: 5579 1.12 pgoyette p = "int"; 5580 1.12 pgoyette break; 5581 1.12 pgoyette case 1: 5582 1.12 pgoyette p = "int"; 5583 1.12 pgoyette break; 5584 1.12 pgoyette default: 5585 1.12 pgoyette break; 5586 1.12 pgoyette }; 5587 1.12 pgoyette break; 5588 1.12 pgoyette /* sys_socketpair */ 5589 1.12 pgoyette case 135: 5590 1.12 pgoyette switch(ndx) { 5591 1.12 pgoyette case 0: 5592 1.12 pgoyette p = "int"; 5593 1.12 pgoyette break; 5594 1.12 pgoyette case 1: 5595 1.12 pgoyette p = "int"; 5596 1.12 pgoyette break; 5597 1.12 pgoyette case 2: 5598 1.12 pgoyette p = "int"; 5599 1.12 pgoyette break; 5600 1.12 pgoyette case 3: 5601 1.12 pgoyette p = "int *"; 5602 1.12 pgoyette break; 5603 1.12 pgoyette default: 5604 1.12 pgoyette break; 5605 1.12 pgoyette }; 5606 1.12 pgoyette break; 5607 1.12 pgoyette /* sys_mkdir */ 5608 1.12 pgoyette case 136: 5609 1.12 pgoyette switch(ndx) { 5610 1.12 pgoyette case 0: 5611 1.12 pgoyette p = "const char *"; 5612 1.12 pgoyette break; 5613 1.12 pgoyette case 1: 5614 1.12 pgoyette p = "mode_t"; 5615 1.12 pgoyette break; 5616 1.12 pgoyette default: 5617 1.12 pgoyette break; 5618 1.12 pgoyette }; 5619 1.12 pgoyette break; 5620 1.12 pgoyette /* sys_rmdir */ 5621 1.12 pgoyette case 137: 5622 1.12 pgoyette switch(ndx) { 5623 1.12 pgoyette case 0: 5624 1.12 pgoyette p = "const char *"; 5625 1.12 pgoyette break; 5626 1.12 pgoyette default: 5627 1.12 pgoyette break; 5628 1.12 pgoyette }; 5629 1.12 pgoyette break; 5630 1.12 pgoyette /* sys_utimes */ 5631 1.12 pgoyette case 138: 5632 1.12 pgoyette switch(ndx) { 5633 1.12 pgoyette case 0: 5634 1.12 pgoyette p = "const char *"; 5635 1.12 pgoyette break; 5636 1.12 pgoyette case 1: 5637 1.12 pgoyette p = "const struct timeval50 *"; 5638 1.12 pgoyette break; 5639 1.12 pgoyette default: 5640 1.12 pgoyette break; 5641 1.12 pgoyette }; 5642 1.12 pgoyette break; 5643 1.12 pgoyette /* sys_adjtime */ 5644 1.12 pgoyette case 140: 5645 1.12 pgoyette switch(ndx) { 5646 1.12 pgoyette case 0: 5647 1.12 pgoyette p = "const struct timeval50 *"; 5648 1.12 pgoyette break; 5649 1.12 pgoyette case 1: 5650 1.12 pgoyette p = "struct timeval50 *"; 5651 1.12 pgoyette break; 5652 1.12 pgoyette default: 5653 1.12 pgoyette break; 5654 1.12 pgoyette }; 5655 1.12 pgoyette break; 5656 1.12 pgoyette /* sys_getpeername */ 5657 1.12 pgoyette case 141: 5658 1.12 pgoyette switch(ndx) { 5659 1.12 pgoyette case 0: 5660 1.12 pgoyette p = "int"; 5661 1.12 pgoyette break; 5662 1.12 pgoyette case 1: 5663 1.12 pgoyette p = "void *"; 5664 1.12 pgoyette break; 5665 1.12 pgoyette case 2: 5666 1.12 pgoyette p = "socklen_t *"; 5667 1.12 pgoyette break; 5668 1.12 pgoyette default: 5669 1.12 pgoyette break; 5670 1.12 pgoyette }; 5671 1.12 pgoyette break; 5672 1.12 pgoyette /* sys_gethostid */ 5673 1.12 pgoyette case 142: 5674 1.12 pgoyette break; 5675 1.12 pgoyette /* sys_sethostid */ 5676 1.12 pgoyette case 143: 5677 1.12 pgoyette switch(ndx) { 5678 1.12 pgoyette case 0: 5679 1.12 pgoyette p = "int32_t"; 5680 1.12 pgoyette break; 5681 1.12 pgoyette default: 5682 1.12 pgoyette break; 5683 1.12 pgoyette }; 5684 1.12 pgoyette break; 5685 1.12 pgoyette /* sys_getrlimit */ 5686 1.12 pgoyette case 144: 5687 1.12 pgoyette switch(ndx) { 5688 1.12 pgoyette case 0: 5689 1.12 pgoyette p = "int"; 5690 1.12 pgoyette break; 5691 1.12 pgoyette case 1: 5692 1.12 pgoyette p = "struct orlimit *"; 5693 1.12 pgoyette break; 5694 1.12 pgoyette default: 5695 1.12 pgoyette break; 5696 1.12 pgoyette }; 5697 1.12 pgoyette break; 5698 1.12 pgoyette /* sys_setrlimit */ 5699 1.12 pgoyette case 145: 5700 1.12 pgoyette switch(ndx) { 5701 1.12 pgoyette case 0: 5702 1.12 pgoyette p = "int"; 5703 1.12 pgoyette break; 5704 1.12 pgoyette case 1: 5705 1.12 pgoyette p = "const struct orlimit *"; 5706 1.12 pgoyette break; 5707 1.12 pgoyette default: 5708 1.12 pgoyette break; 5709 1.12 pgoyette }; 5710 1.12 pgoyette break; 5711 1.12 pgoyette /* sys_killpg */ 5712 1.12 pgoyette case 146: 5713 1.12 pgoyette switch(ndx) { 5714 1.12 pgoyette case 0: 5715 1.12 pgoyette p = "int"; 5716 1.12 pgoyette break; 5717 1.12 pgoyette case 1: 5718 1.12 pgoyette p = "int"; 5719 1.12 pgoyette break; 5720 1.12 pgoyette default: 5721 1.12 pgoyette break; 5722 1.12 pgoyette }; 5723 1.12 pgoyette break; 5724 1.12 pgoyette /* sys_setsid */ 5725 1.12 pgoyette case 147: 5726 1.12 pgoyette break; 5727 1.12 pgoyette /* sys_quotactl */ 5728 1.12 pgoyette case 148: 5729 1.12 pgoyette switch(ndx) { 5730 1.12 pgoyette case 0: 5731 1.12 pgoyette p = "const char *"; 5732 1.12 pgoyette break; 5733 1.12 pgoyette case 1: 5734 1.12 pgoyette p = "int"; 5735 1.12 pgoyette break; 5736 1.12 pgoyette case 2: 5737 1.12 pgoyette p = "int"; 5738 1.12 pgoyette break; 5739 1.12 pgoyette case 3: 5740 1.12 pgoyette p = "void *"; 5741 1.12 pgoyette break; 5742 1.12 pgoyette default: 5743 1.12 pgoyette break; 5744 1.12 pgoyette }; 5745 1.12 pgoyette break; 5746 1.12 pgoyette /* sys_quota */ 5747 1.12 pgoyette case 149: 5748 1.12 pgoyette break; 5749 1.12 pgoyette /* sys_getsockname */ 5750 1.12 pgoyette case 150: 5751 1.12 pgoyette switch(ndx) { 5752 1.12 pgoyette case 0: 5753 1.12 pgoyette p = "int"; 5754 1.12 pgoyette break; 5755 1.12 pgoyette case 1: 5756 1.12 pgoyette p = "void *"; 5757 1.12 pgoyette break; 5758 1.12 pgoyette case 2: 5759 1.12 pgoyette p = "socklen_t *"; 5760 1.12 pgoyette break; 5761 1.12 pgoyette default: 5762 1.12 pgoyette break; 5763 1.12 pgoyette }; 5764 1.12 pgoyette break; 5765 1.12 pgoyette /* sys_nfssvc */ 5766 1.12 pgoyette case 155: 5767 1.12 pgoyette switch(ndx) { 5768 1.12 pgoyette case 0: 5769 1.12 pgoyette p = "int"; 5770 1.12 pgoyette break; 5771 1.12 pgoyette case 1: 5772 1.12 pgoyette p = "void *"; 5773 1.12 pgoyette break; 5774 1.12 pgoyette default: 5775 1.12 pgoyette break; 5776 1.12 pgoyette }; 5777 1.12 pgoyette break; 5778 1.12 pgoyette /* sys_getdirentries */ 5779 1.12 pgoyette case 156: 5780 1.12 pgoyette switch(ndx) { 5781 1.12 pgoyette case 0: 5782 1.12 pgoyette p = "int"; 5783 1.12 pgoyette break; 5784 1.12 pgoyette case 1: 5785 1.12 pgoyette p = "char *"; 5786 1.12 pgoyette break; 5787 1.12 pgoyette case 2: 5788 1.12 pgoyette p = "u_int"; 5789 1.12 pgoyette break; 5790 1.12 pgoyette case 3: 5791 1.12 pgoyette p = "long *"; 5792 1.12 pgoyette break; 5793 1.12 pgoyette default: 5794 1.12 pgoyette break; 5795 1.12 pgoyette }; 5796 1.12 pgoyette break; 5797 1.12 pgoyette /* sys_statfs */ 5798 1.12 pgoyette case 157: 5799 1.12 pgoyette switch(ndx) { 5800 1.12 pgoyette case 0: 5801 1.12 pgoyette p = "const char *"; 5802 1.12 pgoyette break; 5803 1.12 pgoyette case 1: 5804 1.12 pgoyette p = "struct statfs12 *"; 5805 1.12 pgoyette break; 5806 1.12 pgoyette default: 5807 1.12 pgoyette break; 5808 1.12 pgoyette }; 5809 1.12 pgoyette break; 5810 1.12 pgoyette /* sys_fstatfs */ 5811 1.12 pgoyette case 158: 5812 1.12 pgoyette switch(ndx) { 5813 1.12 pgoyette case 0: 5814 1.12 pgoyette p = "int"; 5815 1.12 pgoyette break; 5816 1.12 pgoyette case 1: 5817 1.12 pgoyette p = "struct statfs12 *"; 5818 1.12 pgoyette break; 5819 1.12 pgoyette default: 5820 1.12 pgoyette break; 5821 1.12 pgoyette }; 5822 1.12 pgoyette break; 5823 1.12 pgoyette /* sys_getfh */ 5824 1.12 pgoyette case 161: 5825 1.12 pgoyette switch(ndx) { 5826 1.12 pgoyette case 0: 5827 1.12 pgoyette p = "const char *"; 5828 1.12 pgoyette break; 5829 1.12 pgoyette case 1: 5830 1.12 pgoyette p = "struct compat_30_fhandle *"; 5831 1.12 pgoyette break; 5832 1.12 pgoyette default: 5833 1.12 pgoyette break; 5834 1.12 pgoyette }; 5835 1.12 pgoyette break; 5836 1.12 pgoyette /* sys_getdomainname */ 5837 1.12 pgoyette case 162: 5838 1.12 pgoyette switch(ndx) { 5839 1.12 pgoyette case 0: 5840 1.12 pgoyette p = "char *"; 5841 1.12 pgoyette break; 5842 1.12 pgoyette case 1: 5843 1.12 pgoyette p = "int"; 5844 1.12 pgoyette break; 5845 1.12 pgoyette default: 5846 1.12 pgoyette break; 5847 1.12 pgoyette }; 5848 1.12 pgoyette break; 5849 1.12 pgoyette /* sys_setdomainname */ 5850 1.12 pgoyette case 163: 5851 1.12 pgoyette switch(ndx) { 5852 1.12 pgoyette case 0: 5853 1.12 pgoyette p = "char *"; 5854 1.12 pgoyette break; 5855 1.12 pgoyette case 1: 5856 1.12 pgoyette p = "int"; 5857 1.12 pgoyette break; 5858 1.12 pgoyette default: 5859 1.12 pgoyette break; 5860 1.12 pgoyette }; 5861 1.12 pgoyette break; 5862 1.12 pgoyette /* sys_uname */ 5863 1.12 pgoyette case 164: 5864 1.12 pgoyette switch(ndx) { 5865 1.12 pgoyette case 0: 5866 1.12 pgoyette p = "struct outsname *"; 5867 1.12 pgoyette break; 5868 1.12 pgoyette default: 5869 1.12 pgoyette break; 5870 1.12 pgoyette }; 5871 1.12 pgoyette break; 5872 1.12 pgoyette /* sys_sysarch */ 5873 1.12 pgoyette case 165: 5874 1.12 pgoyette switch(ndx) { 5875 1.12 pgoyette case 0: 5876 1.12 pgoyette p = "int"; 5877 1.12 pgoyette break; 5878 1.12 pgoyette case 1: 5879 1.12 pgoyette p = "void *"; 5880 1.12 pgoyette break; 5881 1.12 pgoyette default: 5882 1.12 pgoyette break; 5883 1.12 pgoyette }; 5884 1.12 pgoyette break; 5885 1.38 thorpej /* sys___futex */ 5886 1.38 thorpej case 166: 5887 1.38 thorpej switch(ndx) { 5888 1.38 thorpej case 0: 5889 1.38 thorpej p = "int *"; 5890 1.38 thorpej break; 5891 1.38 thorpej case 1: 5892 1.38 thorpej p = "int"; 5893 1.38 thorpej break; 5894 1.38 thorpej case 2: 5895 1.38 thorpej p = "int"; 5896 1.38 thorpej break; 5897 1.38 thorpej case 3: 5898 1.38 thorpej p = "const struct timespec *"; 5899 1.38 thorpej break; 5900 1.38 thorpej case 4: 5901 1.38 thorpej p = "int *"; 5902 1.38 thorpej break; 5903 1.38 thorpej case 5: 5904 1.38 thorpej p = "int"; 5905 1.38 thorpej break; 5906 1.38 thorpej case 6: 5907 1.38 thorpej p = "int"; 5908 1.38 thorpej break; 5909 1.38 thorpej default: 5910 1.38 thorpej break; 5911 1.38 thorpej }; 5912 1.38 thorpej break; 5913 1.38 thorpej /* sys___futex_set_robust_list */ 5914 1.38 thorpej case 167: 5915 1.38 thorpej switch(ndx) { 5916 1.38 thorpej case 0: 5917 1.38 thorpej p = "void *"; 5918 1.38 thorpej break; 5919 1.38 thorpej case 1: 5920 1.38 thorpej p = "size_t"; 5921 1.38 thorpej break; 5922 1.38 thorpej default: 5923 1.38 thorpej break; 5924 1.38 thorpej }; 5925 1.38 thorpej break; 5926 1.38 thorpej /* sys___futex_get_robust_list */ 5927 1.38 thorpej case 168: 5928 1.38 thorpej switch(ndx) { 5929 1.38 thorpej case 0: 5930 1.38 thorpej p = "lwpid_t"; 5931 1.38 thorpej break; 5932 1.38 thorpej case 1: 5933 1.38 thorpej p = "void **"; 5934 1.38 thorpej break; 5935 1.38 thorpej case 2: 5936 1.38 thorpej p = "size_t *"; 5937 1.38 thorpej break; 5938 1.38 thorpej default: 5939 1.38 thorpej break; 5940 1.38 thorpej }; 5941 1.38 thorpej break; 5942 1.12 pgoyette #if !defined(_LP64) 5943 1.12 pgoyette /* sys_semsys */ 5944 1.12 pgoyette case 169: 5945 1.12 pgoyette switch(ndx) { 5946 1.12 pgoyette case 0: 5947 1.12 pgoyette p = "int"; 5948 1.12 pgoyette break; 5949 1.12 pgoyette case 1: 5950 1.12 pgoyette p = "int"; 5951 1.12 pgoyette break; 5952 1.12 pgoyette case 2: 5953 1.12 pgoyette p = "int"; 5954 1.12 pgoyette break; 5955 1.12 pgoyette case 3: 5956 1.12 pgoyette p = "int"; 5957 1.12 pgoyette break; 5958 1.12 pgoyette case 4: 5959 1.12 pgoyette p = "int"; 5960 1.12 pgoyette break; 5961 1.12 pgoyette default: 5962 1.12 pgoyette break; 5963 1.12 pgoyette }; 5964 1.12 pgoyette break; 5965 1.12 pgoyette #else 5966 1.12 pgoyette #endif 5967 1.12 pgoyette #if !defined(_LP64) 5968 1.12 pgoyette /* sys_msgsys */ 5969 1.12 pgoyette case 170: 5970 1.12 pgoyette switch(ndx) { 5971 1.12 pgoyette case 0: 5972 1.12 pgoyette p = "int"; 5973 1.12 pgoyette break; 5974 1.12 pgoyette case 1: 5975 1.12 pgoyette p = "int"; 5976 1.12 pgoyette break; 5977 1.12 pgoyette case 2: 5978 1.12 pgoyette p = "int"; 5979 1.12 pgoyette break; 5980 1.12 pgoyette case 3: 5981 1.12 pgoyette p = "int"; 5982 1.12 pgoyette break; 5983 1.12 pgoyette case 4: 5984 1.12 pgoyette p = "int"; 5985 1.12 pgoyette break; 5986 1.12 pgoyette case 5: 5987 1.12 pgoyette p = "int"; 5988 1.12 pgoyette break; 5989 1.12 pgoyette default: 5990 1.12 pgoyette break; 5991 1.12 pgoyette }; 5992 1.12 pgoyette break; 5993 1.12 pgoyette #else 5994 1.12 pgoyette #endif 5995 1.12 pgoyette #if !defined(_LP64) 5996 1.12 pgoyette /* sys_shmsys */ 5997 1.12 pgoyette case 171: 5998 1.12 pgoyette switch(ndx) { 5999 1.12 pgoyette case 0: 6000 1.12 pgoyette p = "int"; 6001 1.12 pgoyette break; 6002 1.12 pgoyette case 1: 6003 1.12 pgoyette p = "int"; 6004 1.12 pgoyette break; 6005 1.12 pgoyette case 2: 6006 1.12 pgoyette p = "int"; 6007 1.12 pgoyette break; 6008 1.12 pgoyette case 3: 6009 1.12 pgoyette p = "int"; 6010 1.12 pgoyette break; 6011 1.12 pgoyette default: 6012 1.12 pgoyette break; 6013 1.12 pgoyette }; 6014 1.12 pgoyette break; 6015 1.12 pgoyette #else 6016 1.12 pgoyette #endif 6017 1.12 pgoyette /* sys_pread */ 6018 1.12 pgoyette case 173: 6019 1.12 pgoyette switch(ndx) { 6020 1.12 pgoyette case 0: 6021 1.12 pgoyette p = "int"; 6022 1.12 pgoyette break; 6023 1.12 pgoyette case 1: 6024 1.12 pgoyette p = "void *"; 6025 1.12 pgoyette break; 6026 1.12 pgoyette case 2: 6027 1.12 pgoyette p = "size_t"; 6028 1.12 pgoyette break; 6029 1.12 pgoyette case 3: 6030 1.12 pgoyette p = "int"; 6031 1.12 pgoyette break; 6032 1.12 pgoyette case 4: 6033 1.12 pgoyette p = "off_t"; 6034 1.12 pgoyette break; 6035 1.12 pgoyette default: 6036 1.12 pgoyette break; 6037 1.12 pgoyette }; 6038 1.12 pgoyette break; 6039 1.12 pgoyette /* sys_pwrite */ 6040 1.12 pgoyette case 174: 6041 1.12 pgoyette switch(ndx) { 6042 1.12 pgoyette case 0: 6043 1.12 pgoyette p = "int"; 6044 1.12 pgoyette break; 6045 1.12 pgoyette case 1: 6046 1.12 pgoyette p = "const void *"; 6047 1.12 pgoyette break; 6048 1.12 pgoyette case 2: 6049 1.12 pgoyette p = "size_t"; 6050 1.12 pgoyette break; 6051 1.12 pgoyette case 3: 6052 1.12 pgoyette p = "int"; 6053 1.12 pgoyette break; 6054 1.12 pgoyette case 4: 6055 1.12 pgoyette p = "off_t"; 6056 1.12 pgoyette break; 6057 1.12 pgoyette default: 6058 1.12 pgoyette break; 6059 1.12 pgoyette }; 6060 1.12 pgoyette break; 6061 1.12 pgoyette /* sys_ntp_gettime */ 6062 1.12 pgoyette case 175: 6063 1.12 pgoyette switch(ndx) { 6064 1.12 pgoyette case 0: 6065 1.12 pgoyette p = "struct ntptimeval30 *"; 6066 1.12 pgoyette break; 6067 1.12 pgoyette default: 6068 1.12 pgoyette break; 6069 1.12 pgoyette }; 6070 1.12 pgoyette break; 6071 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT) 6072 1.12 pgoyette /* sys_ntp_adjtime */ 6073 1.12 pgoyette case 176: 6074 1.12 pgoyette switch(ndx) { 6075 1.12 pgoyette case 0: 6076 1.12 pgoyette p = "struct timex *"; 6077 1.12 pgoyette break; 6078 1.12 pgoyette default: 6079 1.12 pgoyette break; 6080 1.12 pgoyette }; 6081 1.12 pgoyette break; 6082 1.12 pgoyette #else 6083 1.12 pgoyette #endif 6084 1.48 thorpej /* sys_timerfd_create */ 6085 1.48 thorpej case 177: 6086 1.48 thorpej switch(ndx) { 6087 1.48 thorpej case 0: 6088 1.48 thorpej p = "clockid_t"; 6089 1.48 thorpej break; 6090 1.48 thorpej case 1: 6091 1.48 thorpej p = "int"; 6092 1.48 thorpej break; 6093 1.48 thorpej default: 6094 1.48 thorpej break; 6095 1.48 thorpej }; 6096 1.48 thorpej break; 6097 1.48 thorpej /* sys_timerfd_settime */ 6098 1.48 thorpej case 178: 6099 1.48 thorpej switch(ndx) { 6100 1.48 thorpej case 0: 6101 1.48 thorpej p = "int"; 6102 1.48 thorpej break; 6103 1.48 thorpej case 1: 6104 1.48 thorpej p = "int"; 6105 1.48 thorpej break; 6106 1.48 thorpej case 2: 6107 1.48 thorpej p = "const struct itimerspec *"; 6108 1.48 thorpej break; 6109 1.48 thorpej case 3: 6110 1.48 thorpej p = "struct itimerspec *"; 6111 1.48 thorpej break; 6112 1.48 thorpej default: 6113 1.48 thorpej break; 6114 1.48 thorpej }; 6115 1.48 thorpej break; 6116 1.48 thorpej /* sys_timerfd_gettime */ 6117 1.48 thorpej case 179: 6118 1.48 thorpej switch(ndx) { 6119 1.48 thorpej case 0: 6120 1.48 thorpej p = "int"; 6121 1.48 thorpej break; 6122 1.48 thorpej case 1: 6123 1.48 thorpej p = "struct itimerspec *"; 6124 1.48 thorpej break; 6125 1.48 thorpej default: 6126 1.48 thorpej break; 6127 1.48 thorpej }; 6128 1.48 thorpej break; 6129 1.12 pgoyette /* sys_setgid */ 6130 1.12 pgoyette case 181: 6131 1.12 pgoyette switch(ndx) { 6132 1.12 pgoyette case 0: 6133 1.12 pgoyette p = "gid_t"; 6134 1.12 pgoyette break; 6135 1.12 pgoyette default: 6136 1.12 pgoyette break; 6137 1.12 pgoyette }; 6138 1.12 pgoyette break; 6139 1.12 pgoyette /* sys_setegid */ 6140 1.12 pgoyette case 182: 6141 1.12 pgoyette switch(ndx) { 6142 1.12 pgoyette case 0: 6143 1.12 pgoyette p = "gid_t"; 6144 1.12 pgoyette break; 6145 1.12 pgoyette default: 6146 1.12 pgoyette break; 6147 1.12 pgoyette }; 6148 1.12 pgoyette break; 6149 1.12 pgoyette /* sys_seteuid */ 6150 1.12 pgoyette case 183: 6151 1.12 pgoyette switch(ndx) { 6152 1.12 pgoyette case 0: 6153 1.12 pgoyette p = "uid_t"; 6154 1.12 pgoyette break; 6155 1.12 pgoyette default: 6156 1.12 pgoyette break; 6157 1.12 pgoyette }; 6158 1.12 pgoyette break; 6159 1.12 pgoyette /* sys_lfs_bmapv */ 6160 1.12 pgoyette case 184: 6161 1.12 pgoyette switch(ndx) { 6162 1.12 pgoyette case 0: 6163 1.12 pgoyette p = "fsid_t *"; 6164 1.12 pgoyette break; 6165 1.12 pgoyette case 1: 6166 1.12 pgoyette p = "struct block_info *"; 6167 1.12 pgoyette break; 6168 1.12 pgoyette case 2: 6169 1.12 pgoyette p = "int"; 6170 1.12 pgoyette break; 6171 1.12 pgoyette default: 6172 1.12 pgoyette break; 6173 1.12 pgoyette }; 6174 1.12 pgoyette break; 6175 1.12 pgoyette /* sys_lfs_markv */ 6176 1.12 pgoyette case 185: 6177 1.12 pgoyette switch(ndx) { 6178 1.12 pgoyette case 0: 6179 1.12 pgoyette p = "fsid_t *"; 6180 1.12 pgoyette break; 6181 1.12 pgoyette case 1: 6182 1.12 pgoyette p = "struct block_info *"; 6183 1.12 pgoyette break; 6184 1.12 pgoyette case 2: 6185 1.12 pgoyette p = "int"; 6186 1.12 pgoyette break; 6187 1.12 pgoyette default: 6188 1.12 pgoyette break; 6189 1.12 pgoyette }; 6190 1.12 pgoyette break; 6191 1.12 pgoyette /* sys_lfs_segclean */ 6192 1.12 pgoyette case 186: 6193 1.12 pgoyette switch(ndx) { 6194 1.12 pgoyette case 0: 6195 1.12 pgoyette p = "fsid_t *"; 6196 1.12 pgoyette break; 6197 1.12 pgoyette case 1: 6198 1.12 pgoyette p = "u_long"; 6199 1.12 pgoyette break; 6200 1.12 pgoyette default: 6201 1.12 pgoyette break; 6202 1.12 pgoyette }; 6203 1.12 pgoyette break; 6204 1.12 pgoyette /* sys_lfs_segwait */ 6205 1.12 pgoyette case 187: 6206 1.12 pgoyette switch(ndx) { 6207 1.12 pgoyette case 0: 6208 1.12 pgoyette p = "fsid_t *"; 6209 1.12 pgoyette break; 6210 1.12 pgoyette case 1: 6211 1.12 pgoyette p = "struct timeval50 *"; 6212 1.12 pgoyette break; 6213 1.12 pgoyette default: 6214 1.12 pgoyette break; 6215 1.12 pgoyette }; 6216 1.12 pgoyette break; 6217 1.12 pgoyette /* sys_stat */ 6218 1.12 pgoyette case 188: 6219 1.12 pgoyette switch(ndx) { 6220 1.12 pgoyette case 0: 6221 1.12 pgoyette p = "const char *"; 6222 1.12 pgoyette break; 6223 1.12 pgoyette case 1: 6224 1.12 pgoyette p = "struct stat12 *"; 6225 1.12 pgoyette break; 6226 1.12 pgoyette default: 6227 1.12 pgoyette break; 6228 1.12 pgoyette }; 6229 1.12 pgoyette break; 6230 1.12 pgoyette /* sys_fstat */ 6231 1.12 pgoyette case 189: 6232 1.12 pgoyette switch(ndx) { 6233 1.12 pgoyette case 0: 6234 1.12 pgoyette p = "int"; 6235 1.12 pgoyette break; 6236 1.12 pgoyette case 1: 6237 1.12 pgoyette p = "struct stat12 *"; 6238 1.12 pgoyette break; 6239 1.12 pgoyette default: 6240 1.12 pgoyette break; 6241 1.12 pgoyette }; 6242 1.12 pgoyette break; 6243 1.12 pgoyette /* sys_lstat */ 6244 1.12 pgoyette case 190: 6245 1.12 pgoyette switch(ndx) { 6246 1.12 pgoyette case 0: 6247 1.12 pgoyette p = "const char *"; 6248 1.12 pgoyette break; 6249 1.12 pgoyette case 1: 6250 1.12 pgoyette p = "struct stat12 *"; 6251 1.12 pgoyette break; 6252 1.12 pgoyette default: 6253 1.12 pgoyette break; 6254 1.12 pgoyette }; 6255 1.12 pgoyette break; 6256 1.12 pgoyette /* sys_pathconf */ 6257 1.12 pgoyette case 191: 6258 1.12 pgoyette switch(ndx) { 6259 1.12 pgoyette case 0: 6260 1.12 pgoyette p = "const char *"; 6261 1.12 pgoyette break; 6262 1.12 pgoyette case 1: 6263 1.12 pgoyette p = "int"; 6264 1.12 pgoyette break; 6265 1.12 pgoyette default: 6266 1.12 pgoyette break; 6267 1.12 pgoyette }; 6268 1.12 pgoyette break; 6269 1.12 pgoyette /* sys_fpathconf */ 6270 1.12 pgoyette case 192: 6271 1.12 pgoyette switch(ndx) { 6272 1.12 pgoyette case 0: 6273 1.12 pgoyette p = "int"; 6274 1.12 pgoyette break; 6275 1.12 pgoyette case 1: 6276 1.12 pgoyette p = "int"; 6277 1.12 pgoyette break; 6278 1.12 pgoyette default: 6279 1.12 pgoyette break; 6280 1.12 pgoyette }; 6281 1.12 pgoyette break; 6282 1.31 rjs /* sys_getsockopt2 */ 6283 1.31 rjs case 193: 6284 1.31 rjs switch(ndx) { 6285 1.31 rjs case 0: 6286 1.31 rjs p = "int"; 6287 1.31 rjs break; 6288 1.31 rjs case 1: 6289 1.31 rjs p = "int"; 6290 1.31 rjs break; 6291 1.31 rjs case 2: 6292 1.31 rjs p = "int"; 6293 1.31 rjs break; 6294 1.31 rjs case 3: 6295 1.31 rjs p = "void *"; 6296 1.31 rjs break; 6297 1.31 rjs case 4: 6298 1.31 rjs p = "socklen_t *"; 6299 1.31 rjs break; 6300 1.31 rjs default: 6301 1.31 rjs break; 6302 1.31 rjs }; 6303 1.31 rjs break; 6304 1.12 pgoyette /* sys_getrlimit */ 6305 1.12 pgoyette case 194: 6306 1.12 pgoyette switch(ndx) { 6307 1.12 pgoyette case 0: 6308 1.12 pgoyette p = "int"; 6309 1.12 pgoyette break; 6310 1.12 pgoyette case 1: 6311 1.12 pgoyette p = "struct rlimit *"; 6312 1.12 pgoyette break; 6313 1.12 pgoyette default: 6314 1.12 pgoyette break; 6315 1.12 pgoyette }; 6316 1.12 pgoyette break; 6317 1.12 pgoyette /* sys_setrlimit */ 6318 1.12 pgoyette case 195: 6319 1.12 pgoyette switch(ndx) { 6320 1.12 pgoyette case 0: 6321 1.12 pgoyette p = "int"; 6322 1.12 pgoyette break; 6323 1.12 pgoyette case 1: 6324 1.12 pgoyette p = "const struct rlimit *"; 6325 1.12 pgoyette break; 6326 1.12 pgoyette default: 6327 1.12 pgoyette break; 6328 1.12 pgoyette }; 6329 1.12 pgoyette break; 6330 1.12 pgoyette /* sys_getdirentries */ 6331 1.12 pgoyette case 196: 6332 1.12 pgoyette switch(ndx) { 6333 1.12 pgoyette case 0: 6334 1.12 pgoyette p = "int"; 6335 1.12 pgoyette break; 6336 1.12 pgoyette case 1: 6337 1.12 pgoyette p = "char *"; 6338 1.12 pgoyette break; 6339 1.12 pgoyette case 2: 6340 1.12 pgoyette p = "u_int"; 6341 1.12 pgoyette break; 6342 1.12 pgoyette case 3: 6343 1.12 pgoyette p = "long *"; 6344 1.12 pgoyette break; 6345 1.12 pgoyette default: 6346 1.12 pgoyette break; 6347 1.12 pgoyette }; 6348 1.12 pgoyette break; 6349 1.12 pgoyette /* sys_mmap */ 6350 1.12 pgoyette case 197: 6351 1.12 pgoyette switch(ndx) { 6352 1.12 pgoyette case 0: 6353 1.12 pgoyette p = "void *"; 6354 1.12 pgoyette break; 6355 1.12 pgoyette case 1: 6356 1.12 pgoyette p = "size_t"; 6357 1.12 pgoyette break; 6358 1.12 pgoyette case 2: 6359 1.12 pgoyette p = "int"; 6360 1.12 pgoyette break; 6361 1.12 pgoyette case 3: 6362 1.12 pgoyette p = "int"; 6363 1.12 pgoyette break; 6364 1.12 pgoyette case 4: 6365 1.12 pgoyette p = "int"; 6366 1.12 pgoyette break; 6367 1.12 pgoyette case 5: 6368 1.12 pgoyette p = "long"; 6369 1.12 pgoyette break; 6370 1.12 pgoyette case 6: 6371 1.12 pgoyette p = "off_t"; 6372 1.12 pgoyette break; 6373 1.12 pgoyette default: 6374 1.12 pgoyette break; 6375 1.12 pgoyette }; 6376 1.12 pgoyette break; 6377 1.12 pgoyette /* sys___syscall */ 6378 1.12 pgoyette case 198: 6379 1.12 pgoyette switch(ndx) { 6380 1.12 pgoyette case 0: 6381 1.12 pgoyette p = "quad_t"; 6382 1.12 pgoyette break; 6383 1.12 pgoyette case 1: 6384 1.12 pgoyette p = "register_t"; 6385 1.12 pgoyette break; 6386 1.12 pgoyette default: 6387 1.12 pgoyette break; 6388 1.12 pgoyette }; 6389 1.12 pgoyette break; 6390 1.12 pgoyette /* sys_lseek */ 6391 1.12 pgoyette case 199: 6392 1.12 pgoyette switch(ndx) { 6393 1.12 pgoyette case 0: 6394 1.12 pgoyette p = "int"; 6395 1.12 pgoyette break; 6396 1.12 pgoyette case 1: 6397 1.12 pgoyette p = "int"; 6398 1.12 pgoyette break; 6399 1.12 pgoyette case 2: 6400 1.12 pgoyette p = "off_t"; 6401 1.12 pgoyette break; 6402 1.12 pgoyette case 3: 6403 1.12 pgoyette p = "int"; 6404 1.12 pgoyette break; 6405 1.12 pgoyette default: 6406 1.12 pgoyette break; 6407 1.12 pgoyette }; 6408 1.12 pgoyette break; 6409 1.12 pgoyette /* sys_truncate */ 6410 1.12 pgoyette case 200: 6411 1.12 pgoyette switch(ndx) { 6412 1.12 pgoyette case 0: 6413 1.12 pgoyette p = "const char *"; 6414 1.12 pgoyette break; 6415 1.12 pgoyette case 1: 6416 1.12 pgoyette p = "int"; 6417 1.12 pgoyette break; 6418 1.12 pgoyette case 2: 6419 1.12 pgoyette p = "off_t"; 6420 1.12 pgoyette break; 6421 1.12 pgoyette default: 6422 1.12 pgoyette break; 6423 1.12 pgoyette }; 6424 1.12 pgoyette break; 6425 1.12 pgoyette /* sys_ftruncate */ 6426 1.12 pgoyette case 201: 6427 1.12 pgoyette switch(ndx) { 6428 1.12 pgoyette case 0: 6429 1.12 pgoyette p = "int"; 6430 1.12 pgoyette break; 6431 1.12 pgoyette case 1: 6432 1.12 pgoyette p = "int"; 6433 1.12 pgoyette break; 6434 1.12 pgoyette case 2: 6435 1.12 pgoyette p = "off_t"; 6436 1.12 pgoyette break; 6437 1.12 pgoyette default: 6438 1.12 pgoyette break; 6439 1.12 pgoyette }; 6440 1.12 pgoyette break; 6441 1.12 pgoyette /* sys___sysctl */ 6442 1.12 pgoyette case 202: 6443 1.12 pgoyette switch(ndx) { 6444 1.12 pgoyette case 0: 6445 1.12 pgoyette p = "const int *"; 6446 1.12 pgoyette break; 6447 1.12 pgoyette case 1: 6448 1.12 pgoyette p = "u_int"; 6449 1.12 pgoyette break; 6450 1.12 pgoyette case 2: 6451 1.12 pgoyette p = "void *"; 6452 1.12 pgoyette break; 6453 1.12 pgoyette case 3: 6454 1.12 pgoyette p = "size_t *"; 6455 1.12 pgoyette break; 6456 1.12 pgoyette case 4: 6457 1.12 pgoyette p = "const void *"; 6458 1.12 pgoyette break; 6459 1.12 pgoyette case 5: 6460 1.12 pgoyette p = "size_t"; 6461 1.12 pgoyette break; 6462 1.12 pgoyette default: 6463 1.12 pgoyette break; 6464 1.12 pgoyette }; 6465 1.12 pgoyette break; 6466 1.12 pgoyette /* sys_mlock */ 6467 1.12 pgoyette case 203: 6468 1.12 pgoyette switch(ndx) { 6469 1.12 pgoyette case 0: 6470 1.12 pgoyette p = "const void *"; 6471 1.12 pgoyette break; 6472 1.12 pgoyette case 1: 6473 1.12 pgoyette p = "size_t"; 6474 1.12 pgoyette break; 6475 1.12 pgoyette default: 6476 1.12 pgoyette break; 6477 1.12 pgoyette }; 6478 1.12 pgoyette break; 6479 1.12 pgoyette /* sys_munlock */ 6480 1.12 pgoyette case 204: 6481 1.12 pgoyette switch(ndx) { 6482 1.12 pgoyette case 0: 6483 1.12 pgoyette p = "const void *"; 6484 1.12 pgoyette break; 6485 1.12 pgoyette case 1: 6486 1.12 pgoyette p = "size_t"; 6487 1.12 pgoyette break; 6488 1.12 pgoyette default: 6489 1.12 pgoyette break; 6490 1.12 pgoyette }; 6491 1.12 pgoyette break; 6492 1.12 pgoyette /* sys_undelete */ 6493 1.12 pgoyette case 205: 6494 1.12 pgoyette switch(ndx) { 6495 1.12 pgoyette case 0: 6496 1.12 pgoyette p = "const char *"; 6497 1.12 pgoyette break; 6498 1.12 pgoyette default: 6499 1.12 pgoyette break; 6500 1.12 pgoyette }; 6501 1.12 pgoyette break; 6502 1.12 pgoyette /* sys_futimes */ 6503 1.12 pgoyette case 206: 6504 1.12 pgoyette switch(ndx) { 6505 1.12 pgoyette case 0: 6506 1.12 pgoyette p = "int"; 6507 1.12 pgoyette break; 6508 1.12 pgoyette case 1: 6509 1.12 pgoyette p = "const struct timeval50 *"; 6510 1.12 pgoyette break; 6511 1.12 pgoyette default: 6512 1.12 pgoyette break; 6513 1.12 pgoyette }; 6514 1.12 pgoyette break; 6515 1.12 pgoyette /* sys_getpgid */ 6516 1.12 pgoyette case 207: 6517 1.12 pgoyette switch(ndx) { 6518 1.12 pgoyette case 0: 6519 1.12 pgoyette p = "pid_t"; 6520 1.12 pgoyette break; 6521 1.12 pgoyette default: 6522 1.12 pgoyette break; 6523 1.12 pgoyette }; 6524 1.12 pgoyette break; 6525 1.12 pgoyette /* sys_reboot */ 6526 1.12 pgoyette case 208: 6527 1.12 pgoyette switch(ndx) { 6528 1.12 pgoyette case 0: 6529 1.12 pgoyette p = "int"; 6530 1.12 pgoyette break; 6531 1.12 pgoyette case 1: 6532 1.12 pgoyette p = "char *"; 6533 1.12 pgoyette break; 6534 1.12 pgoyette default: 6535 1.12 pgoyette break; 6536 1.12 pgoyette }; 6537 1.12 pgoyette break; 6538 1.12 pgoyette /* sys_poll */ 6539 1.12 pgoyette case 209: 6540 1.12 pgoyette switch(ndx) { 6541 1.12 pgoyette case 0: 6542 1.12 pgoyette p = "struct pollfd *"; 6543 1.12 pgoyette break; 6544 1.12 pgoyette case 1: 6545 1.12 pgoyette p = "u_int"; 6546 1.12 pgoyette break; 6547 1.12 pgoyette case 2: 6548 1.12 pgoyette p = "int"; 6549 1.12 pgoyette break; 6550 1.12 pgoyette default: 6551 1.12 pgoyette break; 6552 1.12 pgoyette }; 6553 1.12 pgoyette break; 6554 1.12 pgoyette /* sys_afssys */ 6555 1.12 pgoyette case 210: 6556 1.12 pgoyette switch(ndx) { 6557 1.12 pgoyette case 0: 6558 1.12 pgoyette p = "long"; 6559 1.12 pgoyette break; 6560 1.12 pgoyette case 1: 6561 1.12 pgoyette p = "long"; 6562 1.12 pgoyette break; 6563 1.12 pgoyette case 2: 6564 1.12 pgoyette p = "long"; 6565 1.12 pgoyette break; 6566 1.12 pgoyette case 3: 6567 1.12 pgoyette p = "long"; 6568 1.12 pgoyette break; 6569 1.12 pgoyette case 4: 6570 1.12 pgoyette p = "long"; 6571 1.12 pgoyette break; 6572 1.12 pgoyette case 5: 6573 1.12 pgoyette p = "long"; 6574 1.12 pgoyette break; 6575 1.12 pgoyette case 6: 6576 1.12 pgoyette p = "long"; 6577 1.12 pgoyette break; 6578 1.12 pgoyette default: 6579 1.12 pgoyette break; 6580 1.12 pgoyette }; 6581 1.12 pgoyette break; 6582 1.12 pgoyette /* sys___semctl */ 6583 1.12 pgoyette case 220: 6584 1.12 pgoyette switch(ndx) { 6585 1.12 pgoyette case 0: 6586 1.12 pgoyette p = "int"; 6587 1.12 pgoyette break; 6588 1.12 pgoyette case 1: 6589 1.12 pgoyette p = "int"; 6590 1.12 pgoyette break; 6591 1.12 pgoyette case 2: 6592 1.12 pgoyette p = "int"; 6593 1.12 pgoyette break; 6594 1.12 pgoyette case 3: 6595 1.12 pgoyette p = "union __semun *"; 6596 1.12 pgoyette break; 6597 1.12 pgoyette default: 6598 1.12 pgoyette break; 6599 1.12 pgoyette }; 6600 1.12 pgoyette break; 6601 1.12 pgoyette /* sys_semget */ 6602 1.12 pgoyette case 221: 6603 1.12 pgoyette switch(ndx) { 6604 1.12 pgoyette case 0: 6605 1.12 pgoyette p = "key_t"; 6606 1.12 pgoyette break; 6607 1.12 pgoyette case 1: 6608 1.12 pgoyette p = "int"; 6609 1.12 pgoyette break; 6610 1.12 pgoyette case 2: 6611 1.12 pgoyette p = "int"; 6612 1.12 pgoyette break; 6613 1.12 pgoyette default: 6614 1.12 pgoyette break; 6615 1.12 pgoyette }; 6616 1.12 pgoyette break; 6617 1.12 pgoyette /* sys_semop */ 6618 1.12 pgoyette case 222: 6619 1.12 pgoyette switch(ndx) { 6620 1.12 pgoyette case 0: 6621 1.12 pgoyette p = "int"; 6622 1.12 pgoyette break; 6623 1.12 pgoyette case 1: 6624 1.12 pgoyette p = "struct sembuf *"; 6625 1.12 pgoyette break; 6626 1.12 pgoyette case 2: 6627 1.12 pgoyette p = "size_t"; 6628 1.12 pgoyette break; 6629 1.12 pgoyette default: 6630 1.12 pgoyette break; 6631 1.12 pgoyette }; 6632 1.12 pgoyette break; 6633 1.12 pgoyette /* sys_semconfig */ 6634 1.12 pgoyette case 223: 6635 1.12 pgoyette switch(ndx) { 6636 1.12 pgoyette case 0: 6637 1.12 pgoyette p = "int"; 6638 1.12 pgoyette break; 6639 1.12 pgoyette default: 6640 1.12 pgoyette break; 6641 1.12 pgoyette }; 6642 1.12 pgoyette break; 6643 1.12 pgoyette /* sys_msgctl */ 6644 1.12 pgoyette case 224: 6645 1.12 pgoyette switch(ndx) { 6646 1.12 pgoyette case 0: 6647 1.12 pgoyette p = "int"; 6648 1.12 pgoyette break; 6649 1.12 pgoyette case 1: 6650 1.12 pgoyette p = "int"; 6651 1.12 pgoyette break; 6652 1.12 pgoyette case 2: 6653 1.12 pgoyette p = "struct msqid_ds14 *"; 6654 1.12 pgoyette break; 6655 1.12 pgoyette default: 6656 1.12 pgoyette break; 6657 1.12 pgoyette }; 6658 1.12 pgoyette break; 6659 1.12 pgoyette /* sys_msgget */ 6660 1.12 pgoyette case 225: 6661 1.12 pgoyette switch(ndx) { 6662 1.12 pgoyette case 0: 6663 1.12 pgoyette p = "key_t"; 6664 1.12 pgoyette break; 6665 1.12 pgoyette case 1: 6666 1.12 pgoyette p = "int"; 6667 1.12 pgoyette break; 6668 1.12 pgoyette default: 6669 1.12 pgoyette break; 6670 1.12 pgoyette }; 6671 1.12 pgoyette break; 6672 1.12 pgoyette /* sys_msgsnd */ 6673 1.12 pgoyette case 226: 6674 1.12 pgoyette switch(ndx) { 6675 1.12 pgoyette case 0: 6676 1.12 pgoyette p = "int"; 6677 1.12 pgoyette break; 6678 1.12 pgoyette case 1: 6679 1.12 pgoyette p = "const void *"; 6680 1.12 pgoyette break; 6681 1.12 pgoyette case 2: 6682 1.12 pgoyette p = "size_t"; 6683 1.12 pgoyette break; 6684 1.12 pgoyette case 3: 6685 1.12 pgoyette p = "int"; 6686 1.12 pgoyette break; 6687 1.12 pgoyette default: 6688 1.12 pgoyette break; 6689 1.12 pgoyette }; 6690 1.12 pgoyette break; 6691 1.12 pgoyette /* sys_msgrcv */ 6692 1.12 pgoyette case 227: 6693 1.12 pgoyette switch(ndx) { 6694 1.12 pgoyette case 0: 6695 1.12 pgoyette p = "int"; 6696 1.12 pgoyette break; 6697 1.12 pgoyette case 1: 6698 1.12 pgoyette p = "void *"; 6699 1.12 pgoyette break; 6700 1.12 pgoyette case 2: 6701 1.12 pgoyette p = "size_t"; 6702 1.12 pgoyette break; 6703 1.12 pgoyette case 3: 6704 1.12 pgoyette p = "long"; 6705 1.12 pgoyette break; 6706 1.12 pgoyette case 4: 6707 1.12 pgoyette p = "int"; 6708 1.12 pgoyette break; 6709 1.12 pgoyette default: 6710 1.12 pgoyette break; 6711 1.12 pgoyette }; 6712 1.12 pgoyette break; 6713 1.12 pgoyette /* sys_shmat */ 6714 1.12 pgoyette case 228: 6715 1.12 pgoyette switch(ndx) { 6716 1.12 pgoyette case 0: 6717 1.12 pgoyette p = "int"; 6718 1.12 pgoyette break; 6719 1.12 pgoyette case 1: 6720 1.12 pgoyette p = "const void *"; 6721 1.12 pgoyette break; 6722 1.12 pgoyette case 2: 6723 1.12 pgoyette p = "int"; 6724 1.12 pgoyette break; 6725 1.12 pgoyette default: 6726 1.12 pgoyette break; 6727 1.12 pgoyette }; 6728 1.12 pgoyette break; 6729 1.12 pgoyette /* sys_shmctl */ 6730 1.12 pgoyette case 229: 6731 1.12 pgoyette switch(ndx) { 6732 1.12 pgoyette case 0: 6733 1.12 pgoyette p = "int"; 6734 1.12 pgoyette break; 6735 1.12 pgoyette case 1: 6736 1.12 pgoyette p = "int"; 6737 1.12 pgoyette break; 6738 1.12 pgoyette case 2: 6739 1.12 pgoyette p = "struct shmid_ds14 *"; 6740 1.12 pgoyette break; 6741 1.12 pgoyette default: 6742 1.12 pgoyette break; 6743 1.12 pgoyette }; 6744 1.12 pgoyette break; 6745 1.12 pgoyette /* sys_shmdt */ 6746 1.12 pgoyette case 230: 6747 1.12 pgoyette switch(ndx) { 6748 1.12 pgoyette case 0: 6749 1.12 pgoyette p = "const void *"; 6750 1.12 pgoyette break; 6751 1.12 pgoyette default: 6752 1.12 pgoyette break; 6753 1.12 pgoyette }; 6754 1.12 pgoyette break; 6755 1.12 pgoyette /* sys_shmget */ 6756 1.12 pgoyette case 231: 6757 1.12 pgoyette switch(ndx) { 6758 1.12 pgoyette case 0: 6759 1.12 pgoyette p = "key_t"; 6760 1.12 pgoyette break; 6761 1.12 pgoyette case 1: 6762 1.12 pgoyette p = "size_t"; 6763 1.12 pgoyette break; 6764 1.12 pgoyette case 2: 6765 1.12 pgoyette p = "int"; 6766 1.12 pgoyette break; 6767 1.12 pgoyette default: 6768 1.12 pgoyette break; 6769 1.12 pgoyette }; 6770 1.12 pgoyette break; 6771 1.12 pgoyette /* sys_clock_gettime */ 6772 1.12 pgoyette case 232: 6773 1.12 pgoyette switch(ndx) { 6774 1.12 pgoyette case 0: 6775 1.12 pgoyette p = "clockid_t"; 6776 1.12 pgoyette break; 6777 1.12 pgoyette case 1: 6778 1.12 pgoyette p = "struct timespec50 *"; 6779 1.12 pgoyette break; 6780 1.12 pgoyette default: 6781 1.12 pgoyette break; 6782 1.12 pgoyette }; 6783 1.12 pgoyette break; 6784 1.12 pgoyette /* sys_clock_settime */ 6785 1.12 pgoyette case 233: 6786 1.12 pgoyette switch(ndx) { 6787 1.12 pgoyette case 0: 6788 1.12 pgoyette p = "clockid_t"; 6789 1.12 pgoyette break; 6790 1.12 pgoyette case 1: 6791 1.12 pgoyette p = "const struct timespec50 *"; 6792 1.12 pgoyette break; 6793 1.12 pgoyette default: 6794 1.12 pgoyette break; 6795 1.12 pgoyette }; 6796 1.12 pgoyette break; 6797 1.12 pgoyette /* sys_clock_getres */ 6798 1.12 pgoyette case 234: 6799 1.12 pgoyette switch(ndx) { 6800 1.12 pgoyette case 0: 6801 1.12 pgoyette p = "clockid_t"; 6802 1.12 pgoyette break; 6803 1.12 pgoyette case 1: 6804 1.12 pgoyette p = "struct timespec50 *"; 6805 1.12 pgoyette break; 6806 1.12 pgoyette default: 6807 1.12 pgoyette break; 6808 1.12 pgoyette }; 6809 1.12 pgoyette break; 6810 1.12 pgoyette /* sys_timer_create */ 6811 1.12 pgoyette case 235: 6812 1.12 pgoyette switch(ndx) { 6813 1.12 pgoyette case 0: 6814 1.12 pgoyette p = "clockid_t"; 6815 1.12 pgoyette break; 6816 1.12 pgoyette case 1: 6817 1.12 pgoyette p = "struct sigevent *"; 6818 1.12 pgoyette break; 6819 1.12 pgoyette case 2: 6820 1.12 pgoyette p = "timer_t *"; 6821 1.12 pgoyette break; 6822 1.12 pgoyette default: 6823 1.12 pgoyette break; 6824 1.12 pgoyette }; 6825 1.12 pgoyette break; 6826 1.12 pgoyette /* sys_timer_delete */ 6827 1.12 pgoyette case 236: 6828 1.12 pgoyette switch(ndx) { 6829 1.12 pgoyette case 0: 6830 1.12 pgoyette p = "timer_t"; 6831 1.12 pgoyette break; 6832 1.12 pgoyette default: 6833 1.12 pgoyette break; 6834 1.12 pgoyette }; 6835 1.12 pgoyette break; 6836 1.12 pgoyette /* sys_timer_settime */ 6837 1.12 pgoyette case 237: 6838 1.12 pgoyette switch(ndx) { 6839 1.12 pgoyette case 0: 6840 1.12 pgoyette p = "timer_t"; 6841 1.12 pgoyette break; 6842 1.12 pgoyette case 1: 6843 1.12 pgoyette p = "int"; 6844 1.12 pgoyette break; 6845 1.12 pgoyette case 2: 6846 1.12 pgoyette p = "const struct itimerspec50 *"; 6847 1.12 pgoyette break; 6848 1.12 pgoyette case 3: 6849 1.12 pgoyette p = "struct itimerspec50 *"; 6850 1.12 pgoyette break; 6851 1.12 pgoyette default: 6852 1.12 pgoyette break; 6853 1.12 pgoyette }; 6854 1.12 pgoyette break; 6855 1.12 pgoyette /* sys_timer_gettime */ 6856 1.12 pgoyette case 238: 6857 1.12 pgoyette switch(ndx) { 6858 1.12 pgoyette case 0: 6859 1.12 pgoyette p = "timer_t"; 6860 1.12 pgoyette break; 6861 1.12 pgoyette case 1: 6862 1.12 pgoyette p = "struct itimerspec50 *"; 6863 1.12 pgoyette break; 6864 1.12 pgoyette default: 6865 1.12 pgoyette break; 6866 1.12 pgoyette }; 6867 1.12 pgoyette break; 6868 1.12 pgoyette /* sys_timer_getoverrun */ 6869 1.12 pgoyette case 239: 6870 1.12 pgoyette switch(ndx) { 6871 1.12 pgoyette case 0: 6872 1.12 pgoyette p = "timer_t"; 6873 1.12 pgoyette break; 6874 1.12 pgoyette default: 6875 1.12 pgoyette break; 6876 1.12 pgoyette }; 6877 1.12 pgoyette break; 6878 1.12 pgoyette /* sys_nanosleep */ 6879 1.12 pgoyette case 240: 6880 1.12 pgoyette switch(ndx) { 6881 1.12 pgoyette case 0: 6882 1.12 pgoyette p = "const struct timespec50 *"; 6883 1.12 pgoyette break; 6884 1.12 pgoyette case 1: 6885 1.12 pgoyette p = "struct timespec50 *"; 6886 1.12 pgoyette break; 6887 1.12 pgoyette default: 6888 1.12 pgoyette break; 6889 1.12 pgoyette }; 6890 1.12 pgoyette break; 6891 1.12 pgoyette /* sys_fdatasync */ 6892 1.12 pgoyette case 241: 6893 1.12 pgoyette switch(ndx) { 6894 1.12 pgoyette case 0: 6895 1.12 pgoyette p = "int"; 6896 1.12 pgoyette break; 6897 1.12 pgoyette default: 6898 1.12 pgoyette break; 6899 1.12 pgoyette }; 6900 1.12 pgoyette break; 6901 1.12 pgoyette /* sys_mlockall */ 6902 1.12 pgoyette case 242: 6903 1.12 pgoyette switch(ndx) { 6904 1.12 pgoyette case 0: 6905 1.12 pgoyette p = "int"; 6906 1.12 pgoyette break; 6907 1.12 pgoyette default: 6908 1.12 pgoyette break; 6909 1.12 pgoyette }; 6910 1.12 pgoyette break; 6911 1.12 pgoyette /* sys_munlockall */ 6912 1.12 pgoyette case 243: 6913 1.12 pgoyette break; 6914 1.12 pgoyette /* sys___sigtimedwait */ 6915 1.12 pgoyette case 244: 6916 1.12 pgoyette switch(ndx) { 6917 1.12 pgoyette case 0: 6918 1.12 pgoyette p = "const sigset_t *"; 6919 1.12 pgoyette break; 6920 1.12 pgoyette case 1: 6921 1.12 pgoyette p = "siginfo_t *"; 6922 1.12 pgoyette break; 6923 1.12 pgoyette case 2: 6924 1.12 pgoyette p = "struct timespec50 *"; 6925 1.12 pgoyette break; 6926 1.12 pgoyette default: 6927 1.12 pgoyette break; 6928 1.12 pgoyette }; 6929 1.12 pgoyette break; 6930 1.12 pgoyette /* sys_sigqueueinfo */ 6931 1.12 pgoyette case 245: 6932 1.12 pgoyette switch(ndx) { 6933 1.12 pgoyette case 0: 6934 1.12 pgoyette p = "pid_t"; 6935 1.12 pgoyette break; 6936 1.12 pgoyette case 1: 6937 1.12 pgoyette p = "const siginfo_t *"; 6938 1.12 pgoyette break; 6939 1.12 pgoyette default: 6940 1.12 pgoyette break; 6941 1.12 pgoyette }; 6942 1.12 pgoyette break; 6943 1.12 pgoyette /* sys_modctl */ 6944 1.12 pgoyette case 246: 6945 1.12 pgoyette switch(ndx) { 6946 1.12 pgoyette case 0: 6947 1.12 pgoyette p = "int"; 6948 1.12 pgoyette break; 6949 1.12 pgoyette case 1: 6950 1.12 pgoyette p = "void *"; 6951 1.12 pgoyette break; 6952 1.12 pgoyette default: 6953 1.12 pgoyette break; 6954 1.12 pgoyette }; 6955 1.12 pgoyette break; 6956 1.12 pgoyette /* sys__ksem_init */ 6957 1.12 pgoyette case 247: 6958 1.12 pgoyette switch(ndx) { 6959 1.12 pgoyette case 0: 6960 1.12 pgoyette p = "unsigned int"; 6961 1.12 pgoyette break; 6962 1.12 pgoyette case 1: 6963 1.12 pgoyette p = "intptr_t *"; 6964 1.12 pgoyette break; 6965 1.12 pgoyette default: 6966 1.12 pgoyette break; 6967 1.12 pgoyette }; 6968 1.12 pgoyette break; 6969 1.12 pgoyette /* sys__ksem_open */ 6970 1.12 pgoyette case 248: 6971 1.12 pgoyette switch(ndx) { 6972 1.12 pgoyette case 0: 6973 1.12 pgoyette p = "const char *"; 6974 1.12 pgoyette break; 6975 1.12 pgoyette case 1: 6976 1.12 pgoyette p = "int"; 6977 1.12 pgoyette break; 6978 1.12 pgoyette case 2: 6979 1.12 pgoyette p = "mode_t"; 6980 1.12 pgoyette break; 6981 1.12 pgoyette case 3: 6982 1.12 pgoyette p = "unsigned int"; 6983 1.12 pgoyette break; 6984 1.12 pgoyette case 4: 6985 1.12 pgoyette p = "intptr_t *"; 6986 1.12 pgoyette break; 6987 1.12 pgoyette default: 6988 1.12 pgoyette break; 6989 1.12 pgoyette }; 6990 1.12 pgoyette break; 6991 1.12 pgoyette /* sys__ksem_unlink */ 6992 1.12 pgoyette case 249: 6993 1.12 pgoyette switch(ndx) { 6994 1.12 pgoyette case 0: 6995 1.12 pgoyette p = "const char *"; 6996 1.12 pgoyette break; 6997 1.12 pgoyette default: 6998 1.12 pgoyette break; 6999 1.12 pgoyette }; 7000 1.12 pgoyette break; 7001 1.12 pgoyette /* sys__ksem_close */ 7002 1.12 pgoyette case 250: 7003 1.12 pgoyette switch(ndx) { 7004 1.12 pgoyette case 0: 7005 1.12 pgoyette p = "intptr_t"; 7006 1.12 pgoyette break; 7007 1.12 pgoyette default: 7008 1.12 pgoyette break; 7009 1.12 pgoyette }; 7010 1.12 pgoyette break; 7011 1.12 pgoyette /* sys__ksem_post */ 7012 1.12 pgoyette case 251: 7013 1.12 pgoyette switch(ndx) { 7014 1.12 pgoyette case 0: 7015 1.12 pgoyette p = "intptr_t"; 7016 1.12 pgoyette break; 7017 1.12 pgoyette default: 7018 1.12 pgoyette break; 7019 1.12 pgoyette }; 7020 1.12 pgoyette break; 7021 1.12 pgoyette /* sys__ksem_wait */ 7022 1.12 pgoyette case 252: 7023 1.12 pgoyette switch(ndx) { 7024 1.12 pgoyette case 0: 7025 1.12 pgoyette p = "intptr_t"; 7026 1.12 pgoyette break; 7027 1.12 pgoyette default: 7028 1.12 pgoyette break; 7029 1.12 pgoyette }; 7030 1.12 pgoyette break; 7031 1.12 pgoyette /* sys__ksem_trywait */ 7032 1.12 pgoyette case 253: 7033 1.12 pgoyette switch(ndx) { 7034 1.12 pgoyette case 0: 7035 1.12 pgoyette p = "intptr_t"; 7036 1.12 pgoyette break; 7037 1.12 pgoyette default: 7038 1.12 pgoyette break; 7039 1.12 pgoyette }; 7040 1.12 pgoyette break; 7041 1.12 pgoyette /* sys__ksem_getvalue */ 7042 1.12 pgoyette case 254: 7043 1.12 pgoyette switch(ndx) { 7044 1.12 pgoyette case 0: 7045 1.12 pgoyette p = "intptr_t"; 7046 1.12 pgoyette break; 7047 1.12 pgoyette case 1: 7048 1.12 pgoyette p = "unsigned int *"; 7049 1.12 pgoyette break; 7050 1.12 pgoyette default: 7051 1.12 pgoyette break; 7052 1.12 pgoyette }; 7053 1.12 pgoyette break; 7054 1.12 pgoyette /* sys__ksem_destroy */ 7055 1.12 pgoyette case 255: 7056 1.12 pgoyette switch(ndx) { 7057 1.12 pgoyette case 0: 7058 1.12 pgoyette p = "intptr_t"; 7059 1.12 pgoyette break; 7060 1.12 pgoyette default: 7061 1.12 pgoyette break; 7062 1.12 pgoyette }; 7063 1.12 pgoyette break; 7064 1.12 pgoyette /* sys__ksem_timedwait */ 7065 1.12 pgoyette case 256: 7066 1.12 pgoyette switch(ndx) { 7067 1.12 pgoyette case 0: 7068 1.12 pgoyette p = "intptr_t"; 7069 1.12 pgoyette break; 7070 1.12 pgoyette case 1: 7071 1.12 pgoyette p = "const struct timespec *"; 7072 1.12 pgoyette break; 7073 1.12 pgoyette default: 7074 1.12 pgoyette break; 7075 1.12 pgoyette }; 7076 1.12 pgoyette break; 7077 1.12 pgoyette /* sys_mq_open */ 7078 1.12 pgoyette case 257: 7079 1.12 pgoyette switch(ndx) { 7080 1.12 pgoyette case 0: 7081 1.12 pgoyette p = "const char *"; 7082 1.12 pgoyette break; 7083 1.12 pgoyette case 1: 7084 1.12 pgoyette p = "int"; 7085 1.12 pgoyette break; 7086 1.12 pgoyette case 2: 7087 1.12 pgoyette p = "mode_t"; 7088 1.12 pgoyette break; 7089 1.12 pgoyette case 3: 7090 1.12 pgoyette p = "struct mq_attr *"; 7091 1.12 pgoyette break; 7092 1.12 pgoyette default: 7093 1.12 pgoyette break; 7094 1.12 pgoyette }; 7095 1.12 pgoyette break; 7096 1.12 pgoyette /* sys_mq_close */ 7097 1.12 pgoyette case 258: 7098 1.12 pgoyette switch(ndx) { 7099 1.12 pgoyette case 0: 7100 1.12 pgoyette p = "mqd_t"; 7101 1.12 pgoyette break; 7102 1.12 pgoyette default: 7103 1.12 pgoyette break; 7104 1.12 pgoyette }; 7105 1.12 pgoyette break; 7106 1.12 pgoyette /* sys_mq_unlink */ 7107 1.12 pgoyette case 259: 7108 1.12 pgoyette switch(ndx) { 7109 1.12 pgoyette case 0: 7110 1.12 pgoyette p = "const char *"; 7111 1.12 pgoyette break; 7112 1.12 pgoyette default: 7113 1.12 pgoyette break; 7114 1.12 pgoyette }; 7115 1.12 pgoyette break; 7116 1.12 pgoyette /* sys_mq_getattr */ 7117 1.12 pgoyette case 260: 7118 1.12 pgoyette switch(ndx) { 7119 1.12 pgoyette case 0: 7120 1.12 pgoyette p = "mqd_t"; 7121 1.12 pgoyette break; 7122 1.12 pgoyette case 1: 7123 1.12 pgoyette p = "struct mq_attr *"; 7124 1.12 pgoyette break; 7125 1.12 pgoyette default: 7126 1.12 pgoyette break; 7127 1.12 pgoyette }; 7128 1.12 pgoyette break; 7129 1.12 pgoyette /* sys_mq_setattr */ 7130 1.12 pgoyette case 261: 7131 1.12 pgoyette switch(ndx) { 7132 1.12 pgoyette case 0: 7133 1.12 pgoyette p = "mqd_t"; 7134 1.12 pgoyette break; 7135 1.12 pgoyette case 1: 7136 1.12 pgoyette p = "const struct mq_attr *"; 7137 1.12 pgoyette break; 7138 1.12 pgoyette case 2: 7139 1.12 pgoyette p = "struct mq_attr *"; 7140 1.12 pgoyette break; 7141 1.12 pgoyette default: 7142 1.12 pgoyette break; 7143 1.12 pgoyette }; 7144 1.12 pgoyette break; 7145 1.12 pgoyette /* sys_mq_notify */ 7146 1.12 pgoyette case 262: 7147 1.12 pgoyette switch(ndx) { 7148 1.12 pgoyette case 0: 7149 1.12 pgoyette p = "mqd_t"; 7150 1.12 pgoyette break; 7151 1.12 pgoyette case 1: 7152 1.12 pgoyette p = "const struct sigevent *"; 7153 1.12 pgoyette break; 7154 1.12 pgoyette default: 7155 1.12 pgoyette break; 7156 1.12 pgoyette }; 7157 1.12 pgoyette break; 7158 1.12 pgoyette /* sys_mq_send */ 7159 1.12 pgoyette case 263: 7160 1.12 pgoyette switch(ndx) { 7161 1.12 pgoyette case 0: 7162 1.12 pgoyette p = "mqd_t"; 7163 1.12 pgoyette break; 7164 1.12 pgoyette case 1: 7165 1.12 pgoyette p = "const char *"; 7166 1.12 pgoyette break; 7167 1.12 pgoyette case 2: 7168 1.12 pgoyette p = "size_t"; 7169 1.12 pgoyette break; 7170 1.12 pgoyette case 3: 7171 1.12 pgoyette p = "unsigned"; 7172 1.12 pgoyette break; 7173 1.12 pgoyette default: 7174 1.12 pgoyette break; 7175 1.12 pgoyette }; 7176 1.12 pgoyette break; 7177 1.12 pgoyette /* sys_mq_receive */ 7178 1.12 pgoyette case 264: 7179 1.12 pgoyette switch(ndx) { 7180 1.12 pgoyette case 0: 7181 1.12 pgoyette p = "mqd_t"; 7182 1.12 pgoyette break; 7183 1.12 pgoyette case 1: 7184 1.12 pgoyette p = "char *"; 7185 1.12 pgoyette break; 7186 1.12 pgoyette case 2: 7187 1.12 pgoyette p = "size_t"; 7188 1.12 pgoyette break; 7189 1.12 pgoyette case 3: 7190 1.12 pgoyette p = "unsigned *"; 7191 1.12 pgoyette break; 7192 1.12 pgoyette default: 7193 1.12 pgoyette break; 7194 1.12 pgoyette }; 7195 1.12 pgoyette break; 7196 1.12 pgoyette /* sys_mq_timedsend */ 7197 1.12 pgoyette case 265: 7198 1.12 pgoyette switch(ndx) { 7199 1.12 pgoyette case 0: 7200 1.12 pgoyette p = "mqd_t"; 7201 1.12 pgoyette break; 7202 1.12 pgoyette case 1: 7203 1.12 pgoyette p = "const char *"; 7204 1.12 pgoyette break; 7205 1.12 pgoyette case 2: 7206 1.12 pgoyette p = "size_t"; 7207 1.12 pgoyette break; 7208 1.12 pgoyette case 3: 7209 1.12 pgoyette p = "unsigned"; 7210 1.12 pgoyette break; 7211 1.12 pgoyette case 4: 7212 1.12 pgoyette p = "const struct timespec50 *"; 7213 1.12 pgoyette break; 7214 1.12 pgoyette default: 7215 1.12 pgoyette break; 7216 1.12 pgoyette }; 7217 1.12 pgoyette break; 7218 1.12 pgoyette /* sys_mq_timedreceive */ 7219 1.12 pgoyette case 266: 7220 1.12 pgoyette switch(ndx) { 7221 1.12 pgoyette case 0: 7222 1.12 pgoyette p = "mqd_t"; 7223 1.12 pgoyette break; 7224 1.12 pgoyette case 1: 7225 1.12 pgoyette p = "char *"; 7226 1.12 pgoyette break; 7227 1.12 pgoyette case 2: 7228 1.12 pgoyette p = "size_t"; 7229 1.12 pgoyette break; 7230 1.12 pgoyette case 3: 7231 1.12 pgoyette p = "unsigned *"; 7232 1.12 pgoyette break; 7233 1.12 pgoyette case 4: 7234 1.12 pgoyette p = "const struct timespec50 *"; 7235 1.12 pgoyette break; 7236 1.12 pgoyette default: 7237 1.12 pgoyette break; 7238 1.12 pgoyette }; 7239 1.12 pgoyette break; 7240 1.48 thorpej /* sys_eventfd */ 7241 1.48 thorpej case 267: 7242 1.48 thorpej switch(ndx) { 7243 1.48 thorpej case 0: 7244 1.48 thorpej p = "unsigned int"; 7245 1.48 thorpej break; 7246 1.48 thorpej case 1: 7247 1.48 thorpej p = "int"; 7248 1.48 thorpej break; 7249 1.48 thorpej default: 7250 1.48 thorpej break; 7251 1.48 thorpej }; 7252 1.48 thorpej break; 7253 1.12 pgoyette /* sys___posix_rename */ 7254 1.12 pgoyette case 270: 7255 1.12 pgoyette switch(ndx) { 7256 1.12 pgoyette case 0: 7257 1.12 pgoyette p = "const char *"; 7258 1.12 pgoyette break; 7259 1.12 pgoyette case 1: 7260 1.12 pgoyette p = "const char *"; 7261 1.12 pgoyette break; 7262 1.12 pgoyette default: 7263 1.12 pgoyette break; 7264 1.12 pgoyette }; 7265 1.12 pgoyette break; 7266 1.12 pgoyette /* sys_swapctl */ 7267 1.12 pgoyette case 271: 7268 1.12 pgoyette switch(ndx) { 7269 1.12 pgoyette case 0: 7270 1.12 pgoyette p = "int"; 7271 1.12 pgoyette break; 7272 1.12 pgoyette case 1: 7273 1.12 pgoyette p = "void *"; 7274 1.12 pgoyette break; 7275 1.12 pgoyette case 2: 7276 1.12 pgoyette p = "int"; 7277 1.12 pgoyette break; 7278 1.12 pgoyette default: 7279 1.12 pgoyette break; 7280 1.12 pgoyette }; 7281 1.12 pgoyette break; 7282 1.12 pgoyette /* sys_getdents */ 7283 1.12 pgoyette case 272: 7284 1.12 pgoyette switch(ndx) { 7285 1.12 pgoyette case 0: 7286 1.12 pgoyette p = "int"; 7287 1.12 pgoyette break; 7288 1.12 pgoyette case 1: 7289 1.12 pgoyette p = "char *"; 7290 1.12 pgoyette break; 7291 1.12 pgoyette case 2: 7292 1.12 pgoyette p = "size_t"; 7293 1.12 pgoyette break; 7294 1.12 pgoyette default: 7295 1.12 pgoyette break; 7296 1.12 pgoyette }; 7297 1.12 pgoyette break; 7298 1.12 pgoyette /* sys_minherit */ 7299 1.12 pgoyette case 273: 7300 1.12 pgoyette switch(ndx) { 7301 1.12 pgoyette case 0: 7302 1.12 pgoyette p = "void *"; 7303 1.12 pgoyette break; 7304 1.12 pgoyette case 1: 7305 1.12 pgoyette p = "size_t"; 7306 1.12 pgoyette break; 7307 1.12 pgoyette case 2: 7308 1.12 pgoyette p = "int"; 7309 1.12 pgoyette break; 7310 1.12 pgoyette default: 7311 1.12 pgoyette break; 7312 1.12 pgoyette }; 7313 1.12 pgoyette break; 7314 1.12 pgoyette /* sys_lchmod */ 7315 1.12 pgoyette case 274: 7316 1.12 pgoyette switch(ndx) { 7317 1.12 pgoyette case 0: 7318 1.12 pgoyette p = "const char *"; 7319 1.12 pgoyette break; 7320 1.12 pgoyette case 1: 7321 1.12 pgoyette p = "mode_t"; 7322 1.12 pgoyette break; 7323 1.12 pgoyette default: 7324 1.12 pgoyette break; 7325 1.12 pgoyette }; 7326 1.12 pgoyette break; 7327 1.12 pgoyette /* sys_lchown */ 7328 1.12 pgoyette case 275: 7329 1.12 pgoyette switch(ndx) { 7330 1.12 pgoyette case 0: 7331 1.12 pgoyette p = "const char *"; 7332 1.12 pgoyette break; 7333 1.12 pgoyette case 1: 7334 1.12 pgoyette p = "uid_t"; 7335 1.12 pgoyette break; 7336 1.12 pgoyette case 2: 7337 1.12 pgoyette p = "gid_t"; 7338 1.12 pgoyette break; 7339 1.12 pgoyette default: 7340 1.12 pgoyette break; 7341 1.12 pgoyette }; 7342 1.12 pgoyette break; 7343 1.12 pgoyette /* sys_lutimes */ 7344 1.12 pgoyette case 276: 7345 1.12 pgoyette switch(ndx) { 7346 1.12 pgoyette case 0: 7347 1.12 pgoyette p = "const char *"; 7348 1.12 pgoyette break; 7349 1.12 pgoyette case 1: 7350 1.12 pgoyette p = "const struct timeval50 *"; 7351 1.12 pgoyette break; 7352 1.12 pgoyette default: 7353 1.12 pgoyette break; 7354 1.12 pgoyette }; 7355 1.12 pgoyette break; 7356 1.12 pgoyette /* sys___msync13 */ 7357 1.12 pgoyette case 277: 7358 1.12 pgoyette switch(ndx) { 7359 1.12 pgoyette case 0: 7360 1.12 pgoyette p = "void *"; 7361 1.12 pgoyette break; 7362 1.12 pgoyette case 1: 7363 1.12 pgoyette p = "size_t"; 7364 1.12 pgoyette break; 7365 1.12 pgoyette case 2: 7366 1.12 pgoyette p = "int"; 7367 1.12 pgoyette break; 7368 1.12 pgoyette default: 7369 1.12 pgoyette break; 7370 1.12 pgoyette }; 7371 1.12 pgoyette break; 7372 1.12 pgoyette /* sys___stat13 */ 7373 1.12 pgoyette case 278: 7374 1.12 pgoyette switch(ndx) { 7375 1.12 pgoyette case 0: 7376 1.12 pgoyette p = "const char *"; 7377 1.12 pgoyette break; 7378 1.12 pgoyette case 1: 7379 1.12 pgoyette p = "struct stat13 *"; 7380 1.12 pgoyette break; 7381 1.12 pgoyette default: 7382 1.12 pgoyette break; 7383 1.12 pgoyette }; 7384 1.12 pgoyette break; 7385 1.12 pgoyette /* sys___fstat13 */ 7386 1.12 pgoyette case 279: 7387 1.12 pgoyette switch(ndx) { 7388 1.12 pgoyette case 0: 7389 1.12 pgoyette p = "int"; 7390 1.12 pgoyette break; 7391 1.12 pgoyette case 1: 7392 1.12 pgoyette p = "struct stat13 *"; 7393 1.12 pgoyette break; 7394 1.12 pgoyette default: 7395 1.12 pgoyette break; 7396 1.12 pgoyette }; 7397 1.12 pgoyette break; 7398 1.12 pgoyette /* sys___lstat13 */ 7399 1.12 pgoyette case 280: 7400 1.12 pgoyette switch(ndx) { 7401 1.12 pgoyette case 0: 7402 1.12 pgoyette p = "const char *"; 7403 1.12 pgoyette break; 7404 1.12 pgoyette case 1: 7405 1.12 pgoyette p = "struct stat13 *"; 7406 1.12 pgoyette break; 7407 1.12 pgoyette default: 7408 1.12 pgoyette break; 7409 1.12 pgoyette }; 7410 1.12 pgoyette break; 7411 1.12 pgoyette /* sys___sigaltstack14 */ 7412 1.12 pgoyette case 281: 7413 1.12 pgoyette switch(ndx) { 7414 1.12 pgoyette case 0: 7415 1.49 thorpej p = "const stack_t *"; 7416 1.12 pgoyette break; 7417 1.12 pgoyette case 1: 7418 1.49 thorpej p = "stack_t *"; 7419 1.12 pgoyette break; 7420 1.12 pgoyette default: 7421 1.12 pgoyette break; 7422 1.12 pgoyette }; 7423 1.12 pgoyette break; 7424 1.12 pgoyette /* sys___vfork14 */ 7425 1.12 pgoyette case 282: 7426 1.12 pgoyette break; 7427 1.12 pgoyette /* sys___posix_chown */ 7428 1.12 pgoyette case 283: 7429 1.12 pgoyette switch(ndx) { 7430 1.12 pgoyette case 0: 7431 1.12 pgoyette p = "const char *"; 7432 1.12 pgoyette break; 7433 1.12 pgoyette case 1: 7434 1.12 pgoyette p = "uid_t"; 7435 1.12 pgoyette break; 7436 1.12 pgoyette case 2: 7437 1.12 pgoyette p = "gid_t"; 7438 1.12 pgoyette break; 7439 1.12 pgoyette default: 7440 1.12 pgoyette break; 7441 1.12 pgoyette }; 7442 1.12 pgoyette break; 7443 1.12 pgoyette /* sys___posix_fchown */ 7444 1.12 pgoyette case 284: 7445 1.12 pgoyette switch(ndx) { 7446 1.12 pgoyette case 0: 7447 1.12 pgoyette p = "int"; 7448 1.12 pgoyette break; 7449 1.12 pgoyette case 1: 7450 1.12 pgoyette p = "uid_t"; 7451 1.12 pgoyette break; 7452 1.12 pgoyette case 2: 7453 1.12 pgoyette p = "gid_t"; 7454 1.12 pgoyette break; 7455 1.12 pgoyette default: 7456 1.12 pgoyette break; 7457 1.12 pgoyette }; 7458 1.12 pgoyette break; 7459 1.12 pgoyette /* sys___posix_lchown */ 7460 1.12 pgoyette case 285: 7461 1.12 pgoyette switch(ndx) { 7462 1.12 pgoyette case 0: 7463 1.12 pgoyette p = "const char *"; 7464 1.12 pgoyette break; 7465 1.12 pgoyette case 1: 7466 1.12 pgoyette p = "uid_t"; 7467 1.12 pgoyette break; 7468 1.12 pgoyette case 2: 7469 1.12 pgoyette p = "gid_t"; 7470 1.12 pgoyette break; 7471 1.12 pgoyette default: 7472 1.12 pgoyette break; 7473 1.12 pgoyette }; 7474 1.12 pgoyette break; 7475 1.12 pgoyette /* sys_getsid */ 7476 1.12 pgoyette case 286: 7477 1.12 pgoyette switch(ndx) { 7478 1.12 pgoyette case 0: 7479 1.12 pgoyette p = "pid_t"; 7480 1.12 pgoyette break; 7481 1.12 pgoyette default: 7482 1.12 pgoyette break; 7483 1.12 pgoyette }; 7484 1.12 pgoyette break; 7485 1.12 pgoyette /* sys___clone */ 7486 1.12 pgoyette case 287: 7487 1.12 pgoyette switch(ndx) { 7488 1.12 pgoyette case 0: 7489 1.12 pgoyette p = "int"; 7490 1.12 pgoyette break; 7491 1.12 pgoyette case 1: 7492 1.12 pgoyette p = "void *"; 7493 1.12 pgoyette break; 7494 1.12 pgoyette default: 7495 1.12 pgoyette break; 7496 1.12 pgoyette }; 7497 1.12 pgoyette break; 7498 1.12 pgoyette /* sys_fktrace */ 7499 1.12 pgoyette case 288: 7500 1.12 pgoyette switch(ndx) { 7501 1.12 pgoyette case 0: 7502 1.12 pgoyette p = "int"; 7503 1.12 pgoyette break; 7504 1.12 pgoyette case 1: 7505 1.12 pgoyette p = "int"; 7506 1.12 pgoyette break; 7507 1.12 pgoyette case 2: 7508 1.12 pgoyette p = "int"; 7509 1.12 pgoyette break; 7510 1.12 pgoyette case 3: 7511 1.12 pgoyette p = "pid_t"; 7512 1.12 pgoyette break; 7513 1.12 pgoyette default: 7514 1.12 pgoyette break; 7515 1.12 pgoyette }; 7516 1.12 pgoyette break; 7517 1.12 pgoyette /* sys_preadv */ 7518 1.12 pgoyette case 289: 7519 1.12 pgoyette switch(ndx) { 7520 1.12 pgoyette case 0: 7521 1.12 pgoyette p = "int"; 7522 1.12 pgoyette break; 7523 1.12 pgoyette case 1: 7524 1.12 pgoyette p = "const struct iovec *"; 7525 1.12 pgoyette break; 7526 1.12 pgoyette case 2: 7527 1.12 pgoyette p = "int"; 7528 1.12 pgoyette break; 7529 1.12 pgoyette case 3: 7530 1.12 pgoyette p = "int"; 7531 1.12 pgoyette break; 7532 1.12 pgoyette case 4: 7533 1.12 pgoyette p = "off_t"; 7534 1.12 pgoyette break; 7535 1.12 pgoyette default: 7536 1.12 pgoyette break; 7537 1.12 pgoyette }; 7538 1.12 pgoyette break; 7539 1.12 pgoyette /* sys_pwritev */ 7540 1.12 pgoyette case 290: 7541 1.12 pgoyette switch(ndx) { 7542 1.12 pgoyette case 0: 7543 1.12 pgoyette p = "int"; 7544 1.12 pgoyette break; 7545 1.12 pgoyette case 1: 7546 1.12 pgoyette p = "const struct iovec *"; 7547 1.12 pgoyette break; 7548 1.12 pgoyette case 2: 7549 1.12 pgoyette p = "int"; 7550 1.12 pgoyette break; 7551 1.12 pgoyette case 3: 7552 1.12 pgoyette p = "int"; 7553 1.12 pgoyette break; 7554 1.12 pgoyette case 4: 7555 1.12 pgoyette p = "off_t"; 7556 1.12 pgoyette break; 7557 1.12 pgoyette default: 7558 1.12 pgoyette break; 7559 1.12 pgoyette }; 7560 1.12 pgoyette break; 7561 1.12 pgoyette /* sys___sigaction14 */ 7562 1.12 pgoyette case 291: 7563 1.12 pgoyette switch(ndx) { 7564 1.12 pgoyette case 0: 7565 1.12 pgoyette p = "int"; 7566 1.12 pgoyette break; 7567 1.12 pgoyette case 1: 7568 1.12 pgoyette p = "const struct sigaction *"; 7569 1.12 pgoyette break; 7570 1.12 pgoyette case 2: 7571 1.12 pgoyette p = "struct sigaction *"; 7572 1.12 pgoyette break; 7573 1.12 pgoyette default: 7574 1.12 pgoyette break; 7575 1.12 pgoyette }; 7576 1.12 pgoyette break; 7577 1.12 pgoyette /* sys___sigpending14 */ 7578 1.12 pgoyette case 292: 7579 1.12 pgoyette switch(ndx) { 7580 1.12 pgoyette case 0: 7581 1.12 pgoyette p = "sigset_t *"; 7582 1.12 pgoyette break; 7583 1.12 pgoyette default: 7584 1.12 pgoyette break; 7585 1.12 pgoyette }; 7586 1.12 pgoyette break; 7587 1.12 pgoyette /* sys___sigprocmask14 */ 7588 1.12 pgoyette case 293: 7589 1.12 pgoyette switch(ndx) { 7590 1.12 pgoyette case 0: 7591 1.12 pgoyette p = "int"; 7592 1.12 pgoyette break; 7593 1.12 pgoyette case 1: 7594 1.12 pgoyette p = "const sigset_t *"; 7595 1.12 pgoyette break; 7596 1.12 pgoyette case 2: 7597 1.12 pgoyette p = "sigset_t *"; 7598 1.12 pgoyette break; 7599 1.12 pgoyette default: 7600 1.12 pgoyette break; 7601 1.12 pgoyette }; 7602 1.12 pgoyette break; 7603 1.12 pgoyette /* sys___sigsuspend14 */ 7604 1.12 pgoyette case 294: 7605 1.12 pgoyette switch(ndx) { 7606 1.12 pgoyette case 0: 7607 1.12 pgoyette p = "const sigset_t *"; 7608 1.12 pgoyette break; 7609 1.12 pgoyette default: 7610 1.12 pgoyette break; 7611 1.12 pgoyette }; 7612 1.12 pgoyette break; 7613 1.12 pgoyette /* sys___sigreturn14 */ 7614 1.12 pgoyette case 295: 7615 1.12 pgoyette switch(ndx) { 7616 1.12 pgoyette case 0: 7617 1.12 pgoyette p = "struct sigcontext *"; 7618 1.12 pgoyette break; 7619 1.12 pgoyette default: 7620 1.12 pgoyette break; 7621 1.12 pgoyette }; 7622 1.12 pgoyette break; 7623 1.12 pgoyette /* sys___getcwd */ 7624 1.12 pgoyette case 296: 7625 1.12 pgoyette switch(ndx) { 7626 1.12 pgoyette case 0: 7627 1.12 pgoyette p = "char *"; 7628 1.12 pgoyette break; 7629 1.12 pgoyette case 1: 7630 1.12 pgoyette p = "size_t"; 7631 1.12 pgoyette break; 7632 1.12 pgoyette default: 7633 1.12 pgoyette break; 7634 1.12 pgoyette }; 7635 1.12 pgoyette break; 7636 1.12 pgoyette /* sys_fchroot */ 7637 1.12 pgoyette case 297: 7638 1.12 pgoyette switch(ndx) { 7639 1.12 pgoyette case 0: 7640 1.12 pgoyette p = "int"; 7641 1.12 pgoyette break; 7642 1.12 pgoyette default: 7643 1.12 pgoyette break; 7644 1.12 pgoyette }; 7645 1.12 pgoyette break; 7646 1.12 pgoyette /* sys_fhopen */ 7647 1.12 pgoyette case 298: 7648 1.12 pgoyette switch(ndx) { 7649 1.12 pgoyette case 0: 7650 1.12 pgoyette p = "const struct compat_30_fhandle *"; 7651 1.12 pgoyette break; 7652 1.12 pgoyette case 1: 7653 1.12 pgoyette p = "int"; 7654 1.12 pgoyette break; 7655 1.12 pgoyette default: 7656 1.12 pgoyette break; 7657 1.12 pgoyette }; 7658 1.12 pgoyette break; 7659 1.12 pgoyette /* sys_fhstat */ 7660 1.12 pgoyette case 299: 7661 1.12 pgoyette switch(ndx) { 7662 1.12 pgoyette case 0: 7663 1.12 pgoyette p = "const struct compat_30_fhandle *"; 7664 1.12 pgoyette break; 7665 1.12 pgoyette case 1: 7666 1.12 pgoyette p = "struct stat13 *"; 7667 1.12 pgoyette break; 7668 1.12 pgoyette default: 7669 1.12 pgoyette break; 7670 1.12 pgoyette }; 7671 1.12 pgoyette break; 7672 1.12 pgoyette /* sys_fhstatfs */ 7673 1.12 pgoyette case 300: 7674 1.12 pgoyette switch(ndx) { 7675 1.12 pgoyette case 0: 7676 1.12 pgoyette p = "const struct compat_30_fhandle *"; 7677 1.12 pgoyette break; 7678 1.12 pgoyette case 1: 7679 1.12 pgoyette p = "struct statfs12 *"; 7680 1.12 pgoyette break; 7681 1.12 pgoyette default: 7682 1.12 pgoyette break; 7683 1.12 pgoyette }; 7684 1.12 pgoyette break; 7685 1.12 pgoyette /* sys_____semctl13 */ 7686 1.12 pgoyette case 301: 7687 1.12 pgoyette switch(ndx) { 7688 1.12 pgoyette case 0: 7689 1.12 pgoyette p = "int"; 7690 1.12 pgoyette break; 7691 1.12 pgoyette case 1: 7692 1.12 pgoyette p = "int"; 7693 1.12 pgoyette break; 7694 1.12 pgoyette case 2: 7695 1.12 pgoyette p = "int"; 7696 1.12 pgoyette break; 7697 1.12 pgoyette case 3: 7698 1.12 pgoyette p = "union __semun *"; 7699 1.12 pgoyette break; 7700 1.12 pgoyette default: 7701 1.12 pgoyette break; 7702 1.12 pgoyette }; 7703 1.12 pgoyette break; 7704 1.12 pgoyette /* sys___msgctl13 */ 7705 1.12 pgoyette case 302: 7706 1.12 pgoyette switch(ndx) { 7707 1.12 pgoyette case 0: 7708 1.12 pgoyette p = "int"; 7709 1.12 pgoyette break; 7710 1.12 pgoyette case 1: 7711 1.12 pgoyette p = "int"; 7712 1.12 pgoyette break; 7713 1.12 pgoyette case 2: 7714 1.12 pgoyette p = "struct msqid_ds *"; 7715 1.12 pgoyette break; 7716 1.12 pgoyette default: 7717 1.12 pgoyette break; 7718 1.12 pgoyette }; 7719 1.12 pgoyette break; 7720 1.12 pgoyette /* sys___shmctl13 */ 7721 1.12 pgoyette case 303: 7722 1.12 pgoyette switch(ndx) { 7723 1.12 pgoyette case 0: 7724 1.12 pgoyette p = "int"; 7725 1.12 pgoyette break; 7726 1.12 pgoyette case 1: 7727 1.12 pgoyette p = "int"; 7728 1.12 pgoyette break; 7729 1.12 pgoyette case 2: 7730 1.12 pgoyette p = "struct shmid_ds13 *"; 7731 1.12 pgoyette break; 7732 1.12 pgoyette default: 7733 1.12 pgoyette break; 7734 1.12 pgoyette }; 7735 1.12 pgoyette break; 7736 1.12 pgoyette /* sys_lchflags */ 7737 1.12 pgoyette case 304: 7738 1.12 pgoyette switch(ndx) { 7739 1.12 pgoyette case 0: 7740 1.12 pgoyette p = "const char *"; 7741 1.12 pgoyette break; 7742 1.12 pgoyette case 1: 7743 1.12 pgoyette p = "u_long"; 7744 1.12 pgoyette break; 7745 1.12 pgoyette default: 7746 1.12 pgoyette break; 7747 1.12 pgoyette }; 7748 1.12 pgoyette break; 7749 1.12 pgoyette /* sys_issetugid */ 7750 1.12 pgoyette case 305: 7751 1.12 pgoyette break; 7752 1.12 pgoyette /* sys_utrace */ 7753 1.12 pgoyette case 306: 7754 1.12 pgoyette switch(ndx) { 7755 1.12 pgoyette case 0: 7756 1.12 pgoyette p = "const char *"; 7757 1.12 pgoyette break; 7758 1.12 pgoyette case 1: 7759 1.12 pgoyette p = "void *"; 7760 1.12 pgoyette break; 7761 1.12 pgoyette case 2: 7762 1.12 pgoyette p = "size_t"; 7763 1.12 pgoyette break; 7764 1.12 pgoyette default: 7765 1.12 pgoyette break; 7766 1.12 pgoyette }; 7767 1.12 pgoyette break; 7768 1.12 pgoyette /* sys_getcontext */ 7769 1.12 pgoyette case 307: 7770 1.12 pgoyette switch(ndx) { 7771 1.12 pgoyette case 0: 7772 1.12 pgoyette p = "struct __ucontext *"; 7773 1.12 pgoyette break; 7774 1.12 pgoyette default: 7775 1.12 pgoyette break; 7776 1.12 pgoyette }; 7777 1.12 pgoyette break; 7778 1.12 pgoyette /* sys_setcontext */ 7779 1.12 pgoyette case 308: 7780 1.12 pgoyette switch(ndx) { 7781 1.12 pgoyette case 0: 7782 1.12 pgoyette p = "const struct __ucontext *"; 7783 1.12 pgoyette break; 7784 1.12 pgoyette default: 7785 1.12 pgoyette break; 7786 1.12 pgoyette }; 7787 1.12 pgoyette break; 7788 1.12 pgoyette /* sys__lwp_create */ 7789 1.12 pgoyette case 309: 7790 1.12 pgoyette switch(ndx) { 7791 1.12 pgoyette case 0: 7792 1.12 pgoyette p = "const struct __ucontext *"; 7793 1.12 pgoyette break; 7794 1.12 pgoyette case 1: 7795 1.12 pgoyette p = "u_long"; 7796 1.12 pgoyette break; 7797 1.12 pgoyette case 2: 7798 1.12 pgoyette p = "lwpid_t *"; 7799 1.12 pgoyette break; 7800 1.12 pgoyette default: 7801 1.12 pgoyette break; 7802 1.12 pgoyette }; 7803 1.12 pgoyette break; 7804 1.12 pgoyette /* sys__lwp_exit */ 7805 1.12 pgoyette case 310: 7806 1.12 pgoyette break; 7807 1.12 pgoyette /* sys__lwp_self */ 7808 1.12 pgoyette case 311: 7809 1.12 pgoyette break; 7810 1.12 pgoyette /* sys__lwp_wait */ 7811 1.12 pgoyette case 312: 7812 1.12 pgoyette switch(ndx) { 7813 1.12 pgoyette case 0: 7814 1.12 pgoyette p = "lwpid_t"; 7815 1.12 pgoyette break; 7816 1.12 pgoyette case 1: 7817 1.12 pgoyette p = "lwpid_t *"; 7818 1.12 pgoyette break; 7819 1.12 pgoyette default: 7820 1.12 pgoyette break; 7821 1.12 pgoyette }; 7822 1.12 pgoyette break; 7823 1.12 pgoyette /* sys__lwp_suspend */ 7824 1.12 pgoyette case 313: 7825 1.12 pgoyette switch(ndx) { 7826 1.12 pgoyette case 0: 7827 1.12 pgoyette p = "lwpid_t"; 7828 1.12 pgoyette break; 7829 1.12 pgoyette default: 7830 1.12 pgoyette break; 7831 1.12 pgoyette }; 7832 1.12 pgoyette break; 7833 1.12 pgoyette /* sys__lwp_continue */ 7834 1.12 pgoyette case 314: 7835 1.12 pgoyette switch(ndx) { 7836 1.12 pgoyette case 0: 7837 1.12 pgoyette p = "lwpid_t"; 7838 1.12 pgoyette break; 7839 1.12 pgoyette default: 7840 1.12 pgoyette break; 7841 1.12 pgoyette }; 7842 1.12 pgoyette break; 7843 1.12 pgoyette /* sys__lwp_wakeup */ 7844 1.12 pgoyette case 315: 7845 1.12 pgoyette switch(ndx) { 7846 1.12 pgoyette case 0: 7847 1.12 pgoyette p = "lwpid_t"; 7848 1.12 pgoyette break; 7849 1.12 pgoyette default: 7850 1.12 pgoyette break; 7851 1.12 pgoyette }; 7852 1.12 pgoyette break; 7853 1.12 pgoyette /* sys__lwp_getprivate */ 7854 1.12 pgoyette case 316: 7855 1.12 pgoyette break; 7856 1.12 pgoyette /* sys__lwp_setprivate */ 7857 1.12 pgoyette case 317: 7858 1.12 pgoyette switch(ndx) { 7859 1.12 pgoyette case 0: 7860 1.12 pgoyette p = "void *"; 7861 1.12 pgoyette break; 7862 1.12 pgoyette default: 7863 1.12 pgoyette break; 7864 1.12 pgoyette }; 7865 1.12 pgoyette break; 7866 1.12 pgoyette /* sys__lwp_kill */ 7867 1.12 pgoyette case 318: 7868 1.12 pgoyette switch(ndx) { 7869 1.12 pgoyette case 0: 7870 1.12 pgoyette p = "lwpid_t"; 7871 1.12 pgoyette break; 7872 1.12 pgoyette case 1: 7873 1.12 pgoyette p = "int"; 7874 1.12 pgoyette break; 7875 1.12 pgoyette default: 7876 1.12 pgoyette break; 7877 1.12 pgoyette }; 7878 1.12 pgoyette break; 7879 1.12 pgoyette /* sys__lwp_detach */ 7880 1.12 pgoyette case 319: 7881 1.12 pgoyette switch(ndx) { 7882 1.12 pgoyette case 0: 7883 1.12 pgoyette p = "lwpid_t"; 7884 1.12 pgoyette break; 7885 1.12 pgoyette default: 7886 1.12 pgoyette break; 7887 1.12 pgoyette }; 7888 1.12 pgoyette break; 7889 1.12 pgoyette /* sys__lwp_park */ 7890 1.12 pgoyette case 320: 7891 1.12 pgoyette switch(ndx) { 7892 1.12 pgoyette case 0: 7893 1.12 pgoyette p = "const struct timespec50 *"; 7894 1.12 pgoyette break; 7895 1.12 pgoyette case 1: 7896 1.12 pgoyette p = "lwpid_t"; 7897 1.12 pgoyette break; 7898 1.12 pgoyette case 2: 7899 1.12 pgoyette p = "const void *"; 7900 1.12 pgoyette break; 7901 1.12 pgoyette case 3: 7902 1.12 pgoyette p = "const void *"; 7903 1.12 pgoyette break; 7904 1.12 pgoyette default: 7905 1.12 pgoyette break; 7906 1.12 pgoyette }; 7907 1.12 pgoyette break; 7908 1.12 pgoyette /* sys__lwp_unpark */ 7909 1.12 pgoyette case 321: 7910 1.12 pgoyette switch(ndx) { 7911 1.12 pgoyette case 0: 7912 1.12 pgoyette p = "lwpid_t"; 7913 1.12 pgoyette break; 7914 1.12 pgoyette case 1: 7915 1.12 pgoyette p = "const void *"; 7916 1.12 pgoyette break; 7917 1.12 pgoyette default: 7918 1.12 pgoyette break; 7919 1.12 pgoyette }; 7920 1.12 pgoyette break; 7921 1.12 pgoyette /* sys__lwp_unpark_all */ 7922 1.12 pgoyette case 322: 7923 1.12 pgoyette switch(ndx) { 7924 1.12 pgoyette case 0: 7925 1.12 pgoyette p = "const lwpid_t *"; 7926 1.12 pgoyette break; 7927 1.12 pgoyette case 1: 7928 1.12 pgoyette p = "size_t"; 7929 1.12 pgoyette break; 7930 1.12 pgoyette case 2: 7931 1.12 pgoyette p = "const void *"; 7932 1.12 pgoyette break; 7933 1.12 pgoyette default: 7934 1.12 pgoyette break; 7935 1.12 pgoyette }; 7936 1.12 pgoyette break; 7937 1.12 pgoyette /* sys__lwp_setname */ 7938 1.12 pgoyette case 323: 7939 1.12 pgoyette switch(ndx) { 7940 1.12 pgoyette case 0: 7941 1.12 pgoyette p = "lwpid_t"; 7942 1.12 pgoyette break; 7943 1.12 pgoyette case 1: 7944 1.12 pgoyette p = "const char *"; 7945 1.12 pgoyette break; 7946 1.12 pgoyette default: 7947 1.12 pgoyette break; 7948 1.12 pgoyette }; 7949 1.12 pgoyette break; 7950 1.12 pgoyette /* sys__lwp_getname */ 7951 1.12 pgoyette case 324: 7952 1.12 pgoyette switch(ndx) { 7953 1.12 pgoyette case 0: 7954 1.12 pgoyette p = "lwpid_t"; 7955 1.12 pgoyette break; 7956 1.12 pgoyette case 1: 7957 1.12 pgoyette p = "char *"; 7958 1.12 pgoyette break; 7959 1.12 pgoyette case 2: 7960 1.12 pgoyette p = "size_t"; 7961 1.12 pgoyette break; 7962 1.12 pgoyette default: 7963 1.12 pgoyette break; 7964 1.12 pgoyette }; 7965 1.12 pgoyette break; 7966 1.12 pgoyette /* sys__lwp_ctl */ 7967 1.12 pgoyette case 325: 7968 1.12 pgoyette switch(ndx) { 7969 1.12 pgoyette case 0: 7970 1.12 pgoyette p = "int"; 7971 1.12 pgoyette break; 7972 1.12 pgoyette case 1: 7973 1.12 pgoyette p = "struct lwpctl **"; 7974 1.12 pgoyette break; 7975 1.12 pgoyette default: 7976 1.12 pgoyette break; 7977 1.12 pgoyette }; 7978 1.12 pgoyette break; 7979 1.12 pgoyette /* sys_sa_register */ 7980 1.12 pgoyette case 330: 7981 1.12 pgoyette switch(ndx) { 7982 1.12 pgoyette case 0: 7983 1.12 pgoyette p = "void *"; 7984 1.12 pgoyette break; 7985 1.12 pgoyette case 1: 7986 1.12 pgoyette p = "void **"; 7987 1.12 pgoyette break; 7988 1.12 pgoyette case 2: 7989 1.12 pgoyette p = "int"; 7990 1.12 pgoyette break; 7991 1.12 pgoyette case 3: 7992 1.12 pgoyette p = "ssize_t"; 7993 1.12 pgoyette break; 7994 1.12 pgoyette default: 7995 1.12 pgoyette break; 7996 1.12 pgoyette }; 7997 1.12 pgoyette break; 7998 1.12 pgoyette /* sys_sa_stacks */ 7999 1.12 pgoyette case 331: 8000 1.12 pgoyette switch(ndx) { 8001 1.12 pgoyette case 0: 8002 1.12 pgoyette p = "int"; 8003 1.12 pgoyette break; 8004 1.12 pgoyette case 1: 8005 1.12 pgoyette p = "stack_t *"; 8006 1.12 pgoyette break; 8007 1.12 pgoyette default: 8008 1.12 pgoyette break; 8009 1.12 pgoyette }; 8010 1.12 pgoyette break; 8011 1.12 pgoyette /* sys_sa_enable */ 8012 1.12 pgoyette case 332: 8013 1.12 pgoyette break; 8014 1.12 pgoyette /* sys_sa_setconcurrency */ 8015 1.12 pgoyette case 333: 8016 1.12 pgoyette switch(ndx) { 8017 1.12 pgoyette case 0: 8018 1.12 pgoyette p = "int"; 8019 1.12 pgoyette break; 8020 1.12 pgoyette default: 8021 1.12 pgoyette break; 8022 1.12 pgoyette }; 8023 1.12 pgoyette break; 8024 1.12 pgoyette /* sys_sa_yield */ 8025 1.12 pgoyette case 334: 8026 1.12 pgoyette break; 8027 1.12 pgoyette /* sys_sa_preempt */ 8028 1.12 pgoyette case 335: 8029 1.12 pgoyette switch(ndx) { 8030 1.12 pgoyette case 0: 8031 1.12 pgoyette p = "int"; 8032 1.12 pgoyette break; 8033 1.12 pgoyette default: 8034 1.12 pgoyette break; 8035 1.12 pgoyette }; 8036 1.12 pgoyette break; 8037 1.12 pgoyette /* sys___sigaction_sigtramp */ 8038 1.12 pgoyette case 340: 8039 1.12 pgoyette switch(ndx) { 8040 1.12 pgoyette case 0: 8041 1.12 pgoyette p = "int"; 8042 1.12 pgoyette break; 8043 1.12 pgoyette case 1: 8044 1.12 pgoyette p = "const struct sigaction *"; 8045 1.12 pgoyette break; 8046 1.12 pgoyette case 2: 8047 1.12 pgoyette p = "struct sigaction *"; 8048 1.12 pgoyette break; 8049 1.12 pgoyette case 3: 8050 1.12 pgoyette p = "const void *"; 8051 1.12 pgoyette break; 8052 1.12 pgoyette case 4: 8053 1.12 pgoyette p = "int"; 8054 1.12 pgoyette break; 8055 1.12 pgoyette default: 8056 1.12 pgoyette break; 8057 1.12 pgoyette }; 8058 1.12 pgoyette break; 8059 1.12 pgoyette /* sys_rasctl */ 8060 1.12 pgoyette case 343: 8061 1.12 pgoyette switch(ndx) { 8062 1.12 pgoyette case 0: 8063 1.12 pgoyette p = "void *"; 8064 1.12 pgoyette break; 8065 1.12 pgoyette case 1: 8066 1.12 pgoyette p = "size_t"; 8067 1.12 pgoyette break; 8068 1.12 pgoyette case 2: 8069 1.12 pgoyette p = "int"; 8070 1.12 pgoyette break; 8071 1.12 pgoyette default: 8072 1.12 pgoyette break; 8073 1.12 pgoyette }; 8074 1.12 pgoyette break; 8075 1.12 pgoyette /* sys_kqueue */ 8076 1.12 pgoyette case 344: 8077 1.12 pgoyette break; 8078 1.12 pgoyette /* sys_kevent */ 8079 1.12 pgoyette case 345: 8080 1.12 pgoyette switch(ndx) { 8081 1.12 pgoyette case 0: 8082 1.12 pgoyette p = "int"; 8083 1.12 pgoyette break; 8084 1.12 pgoyette case 1: 8085 1.51 christos p = "const struct kevent100 *"; 8086 1.12 pgoyette break; 8087 1.12 pgoyette case 2: 8088 1.12 pgoyette p = "size_t"; 8089 1.12 pgoyette break; 8090 1.12 pgoyette case 3: 8091 1.51 christos p = "struct kevent100 *"; 8092 1.12 pgoyette break; 8093 1.12 pgoyette case 4: 8094 1.12 pgoyette p = "size_t"; 8095 1.12 pgoyette break; 8096 1.12 pgoyette case 5: 8097 1.12 pgoyette p = "const struct timespec50 *"; 8098 1.12 pgoyette break; 8099 1.12 pgoyette default: 8100 1.12 pgoyette break; 8101 1.12 pgoyette }; 8102 1.12 pgoyette break; 8103 1.12 pgoyette /* sys__sched_setparam */ 8104 1.12 pgoyette case 346: 8105 1.12 pgoyette switch(ndx) { 8106 1.12 pgoyette case 0: 8107 1.12 pgoyette p = "pid_t"; 8108 1.12 pgoyette break; 8109 1.12 pgoyette case 1: 8110 1.12 pgoyette p = "lwpid_t"; 8111 1.12 pgoyette break; 8112 1.12 pgoyette case 2: 8113 1.12 pgoyette p = "int"; 8114 1.12 pgoyette break; 8115 1.12 pgoyette case 3: 8116 1.12 pgoyette p = "const struct sched_param *"; 8117 1.12 pgoyette break; 8118 1.12 pgoyette default: 8119 1.12 pgoyette break; 8120 1.12 pgoyette }; 8121 1.12 pgoyette break; 8122 1.12 pgoyette /* sys__sched_getparam */ 8123 1.12 pgoyette case 347: 8124 1.12 pgoyette switch(ndx) { 8125 1.12 pgoyette case 0: 8126 1.12 pgoyette p = "pid_t"; 8127 1.12 pgoyette break; 8128 1.12 pgoyette case 1: 8129 1.12 pgoyette p = "lwpid_t"; 8130 1.12 pgoyette break; 8131 1.12 pgoyette case 2: 8132 1.12 pgoyette p = "int *"; 8133 1.12 pgoyette break; 8134 1.12 pgoyette case 3: 8135 1.12 pgoyette p = "struct sched_param *"; 8136 1.12 pgoyette break; 8137 1.12 pgoyette default: 8138 1.12 pgoyette break; 8139 1.12 pgoyette }; 8140 1.12 pgoyette break; 8141 1.12 pgoyette /* sys__sched_setaffinity */ 8142 1.12 pgoyette case 348: 8143 1.12 pgoyette switch(ndx) { 8144 1.12 pgoyette case 0: 8145 1.12 pgoyette p = "pid_t"; 8146 1.12 pgoyette break; 8147 1.12 pgoyette case 1: 8148 1.12 pgoyette p = "lwpid_t"; 8149 1.12 pgoyette break; 8150 1.12 pgoyette case 2: 8151 1.12 pgoyette p = "size_t"; 8152 1.12 pgoyette break; 8153 1.12 pgoyette case 3: 8154 1.12 pgoyette p = "const cpuset_t *"; 8155 1.12 pgoyette break; 8156 1.12 pgoyette default: 8157 1.12 pgoyette break; 8158 1.12 pgoyette }; 8159 1.12 pgoyette break; 8160 1.12 pgoyette /* sys__sched_getaffinity */ 8161 1.12 pgoyette case 349: 8162 1.12 pgoyette switch(ndx) { 8163 1.12 pgoyette case 0: 8164 1.12 pgoyette p = "pid_t"; 8165 1.12 pgoyette break; 8166 1.12 pgoyette case 1: 8167 1.12 pgoyette p = "lwpid_t"; 8168 1.12 pgoyette break; 8169 1.12 pgoyette case 2: 8170 1.12 pgoyette p = "size_t"; 8171 1.12 pgoyette break; 8172 1.12 pgoyette case 3: 8173 1.12 pgoyette p = "cpuset_t *"; 8174 1.12 pgoyette break; 8175 1.12 pgoyette default: 8176 1.12 pgoyette break; 8177 1.12 pgoyette }; 8178 1.12 pgoyette break; 8179 1.12 pgoyette /* sys_sched_yield */ 8180 1.12 pgoyette case 350: 8181 1.12 pgoyette break; 8182 1.21 christos /* sys__sched_protect */ 8183 1.21 christos case 351: 8184 1.21 christos switch(ndx) { 8185 1.21 christos case 0: 8186 1.21 christos p = "int"; 8187 1.21 christos break; 8188 1.21 christos default: 8189 1.21 christos break; 8190 1.21 christos }; 8191 1.21 christos break; 8192 1.12 pgoyette /* sys_fsync_range */ 8193 1.12 pgoyette case 354: 8194 1.12 pgoyette switch(ndx) { 8195 1.12 pgoyette case 0: 8196 1.12 pgoyette p = "int"; 8197 1.12 pgoyette break; 8198 1.12 pgoyette case 1: 8199 1.12 pgoyette p = "int"; 8200 1.12 pgoyette break; 8201 1.12 pgoyette case 2: 8202 1.12 pgoyette p = "off_t"; 8203 1.12 pgoyette break; 8204 1.12 pgoyette case 3: 8205 1.12 pgoyette p = "off_t"; 8206 1.12 pgoyette break; 8207 1.12 pgoyette default: 8208 1.12 pgoyette break; 8209 1.12 pgoyette }; 8210 1.12 pgoyette break; 8211 1.12 pgoyette /* sys_uuidgen */ 8212 1.12 pgoyette case 355: 8213 1.12 pgoyette switch(ndx) { 8214 1.12 pgoyette case 0: 8215 1.12 pgoyette p = "struct uuid *"; 8216 1.12 pgoyette break; 8217 1.12 pgoyette case 1: 8218 1.12 pgoyette p = "int"; 8219 1.12 pgoyette break; 8220 1.12 pgoyette default: 8221 1.12 pgoyette break; 8222 1.12 pgoyette }; 8223 1.12 pgoyette break; 8224 1.12 pgoyette /* sys_getvfsstat */ 8225 1.12 pgoyette case 356: 8226 1.12 pgoyette switch(ndx) { 8227 1.12 pgoyette case 0: 8228 1.33 christos p = "struct statvfs90 *"; 8229 1.12 pgoyette break; 8230 1.12 pgoyette case 1: 8231 1.12 pgoyette p = "size_t"; 8232 1.12 pgoyette break; 8233 1.12 pgoyette case 2: 8234 1.12 pgoyette p = "int"; 8235 1.12 pgoyette break; 8236 1.12 pgoyette default: 8237 1.12 pgoyette break; 8238 1.12 pgoyette }; 8239 1.12 pgoyette break; 8240 1.12 pgoyette /* sys_statvfs1 */ 8241 1.12 pgoyette case 357: 8242 1.12 pgoyette switch(ndx) { 8243 1.12 pgoyette case 0: 8244 1.12 pgoyette p = "const char *"; 8245 1.12 pgoyette break; 8246 1.12 pgoyette case 1: 8247 1.33 christos p = "struct statvfs90 *"; 8248 1.12 pgoyette break; 8249 1.12 pgoyette case 2: 8250 1.12 pgoyette p = "int"; 8251 1.12 pgoyette break; 8252 1.12 pgoyette default: 8253 1.12 pgoyette break; 8254 1.12 pgoyette }; 8255 1.12 pgoyette break; 8256 1.12 pgoyette /* sys_fstatvfs1 */ 8257 1.12 pgoyette case 358: 8258 1.12 pgoyette switch(ndx) { 8259 1.12 pgoyette case 0: 8260 1.12 pgoyette p = "int"; 8261 1.12 pgoyette break; 8262 1.12 pgoyette case 1: 8263 1.33 christos p = "struct statvfs90 *"; 8264 1.12 pgoyette break; 8265 1.12 pgoyette case 2: 8266 1.12 pgoyette p = "int"; 8267 1.12 pgoyette break; 8268 1.12 pgoyette default: 8269 1.12 pgoyette break; 8270 1.12 pgoyette }; 8271 1.12 pgoyette break; 8272 1.12 pgoyette /* sys_fhstatvfs1 */ 8273 1.12 pgoyette case 359: 8274 1.12 pgoyette switch(ndx) { 8275 1.12 pgoyette case 0: 8276 1.12 pgoyette p = "const struct compat_30_fhandle *"; 8277 1.12 pgoyette break; 8278 1.12 pgoyette case 1: 8279 1.33 christos p = "struct statvfs90 *"; 8280 1.12 pgoyette break; 8281 1.12 pgoyette case 2: 8282 1.12 pgoyette p = "int"; 8283 1.12 pgoyette break; 8284 1.12 pgoyette default: 8285 1.12 pgoyette break; 8286 1.12 pgoyette }; 8287 1.12 pgoyette break; 8288 1.12 pgoyette /* sys_extattrctl */ 8289 1.12 pgoyette case 360: 8290 1.12 pgoyette switch(ndx) { 8291 1.12 pgoyette case 0: 8292 1.12 pgoyette p = "const char *"; 8293 1.12 pgoyette break; 8294 1.12 pgoyette case 1: 8295 1.12 pgoyette p = "int"; 8296 1.12 pgoyette break; 8297 1.12 pgoyette case 2: 8298 1.12 pgoyette p = "const char *"; 8299 1.12 pgoyette break; 8300 1.12 pgoyette case 3: 8301 1.12 pgoyette p = "int"; 8302 1.12 pgoyette break; 8303 1.12 pgoyette case 4: 8304 1.12 pgoyette p = "const char *"; 8305 1.12 pgoyette break; 8306 1.12 pgoyette default: 8307 1.12 pgoyette break; 8308 1.12 pgoyette }; 8309 1.12 pgoyette break; 8310 1.12 pgoyette /* sys_extattr_set_file */ 8311 1.12 pgoyette case 361: 8312 1.12 pgoyette switch(ndx) { 8313 1.12 pgoyette case 0: 8314 1.12 pgoyette p = "const char *"; 8315 1.12 pgoyette break; 8316 1.12 pgoyette case 1: 8317 1.12 pgoyette p = "int"; 8318 1.12 pgoyette break; 8319 1.12 pgoyette case 2: 8320 1.12 pgoyette p = "const char *"; 8321 1.12 pgoyette break; 8322 1.12 pgoyette case 3: 8323 1.12 pgoyette p = "const void *"; 8324 1.12 pgoyette break; 8325 1.12 pgoyette case 4: 8326 1.12 pgoyette p = "size_t"; 8327 1.12 pgoyette break; 8328 1.12 pgoyette default: 8329 1.12 pgoyette break; 8330 1.12 pgoyette }; 8331 1.12 pgoyette break; 8332 1.12 pgoyette /* sys_extattr_get_file */ 8333 1.12 pgoyette case 362: 8334 1.12 pgoyette switch(ndx) { 8335 1.12 pgoyette case 0: 8336 1.12 pgoyette p = "const char *"; 8337 1.12 pgoyette break; 8338 1.12 pgoyette case 1: 8339 1.12 pgoyette p = "int"; 8340 1.12 pgoyette break; 8341 1.12 pgoyette case 2: 8342 1.12 pgoyette p = "const char *"; 8343 1.12 pgoyette break; 8344 1.12 pgoyette case 3: 8345 1.12 pgoyette p = "void *"; 8346 1.12 pgoyette break; 8347 1.12 pgoyette case 4: 8348 1.12 pgoyette p = "size_t"; 8349 1.12 pgoyette break; 8350 1.12 pgoyette default: 8351 1.12 pgoyette break; 8352 1.12 pgoyette }; 8353 1.12 pgoyette break; 8354 1.12 pgoyette /* sys_extattr_delete_file */ 8355 1.12 pgoyette case 363: 8356 1.12 pgoyette switch(ndx) { 8357 1.12 pgoyette case 0: 8358 1.12 pgoyette p = "const char *"; 8359 1.12 pgoyette break; 8360 1.12 pgoyette case 1: 8361 1.12 pgoyette p = "int"; 8362 1.12 pgoyette break; 8363 1.12 pgoyette case 2: 8364 1.12 pgoyette p = "const char *"; 8365 1.12 pgoyette break; 8366 1.12 pgoyette default: 8367 1.12 pgoyette break; 8368 1.12 pgoyette }; 8369 1.12 pgoyette break; 8370 1.12 pgoyette /* sys_extattr_set_fd */ 8371 1.12 pgoyette case 364: 8372 1.12 pgoyette switch(ndx) { 8373 1.12 pgoyette case 0: 8374 1.12 pgoyette p = "int"; 8375 1.12 pgoyette break; 8376 1.12 pgoyette case 1: 8377 1.12 pgoyette p = "int"; 8378 1.12 pgoyette break; 8379 1.12 pgoyette case 2: 8380 1.12 pgoyette p = "const char *"; 8381 1.12 pgoyette break; 8382 1.12 pgoyette case 3: 8383 1.12 pgoyette p = "const void *"; 8384 1.12 pgoyette break; 8385 1.12 pgoyette case 4: 8386 1.12 pgoyette p = "size_t"; 8387 1.12 pgoyette break; 8388 1.12 pgoyette default: 8389 1.12 pgoyette break; 8390 1.12 pgoyette }; 8391 1.12 pgoyette break; 8392 1.12 pgoyette /* sys_extattr_get_fd */ 8393 1.12 pgoyette case 365: 8394 1.12 pgoyette switch(ndx) { 8395 1.12 pgoyette case 0: 8396 1.12 pgoyette p = "int"; 8397 1.12 pgoyette break; 8398 1.12 pgoyette case 1: 8399 1.12 pgoyette p = "int"; 8400 1.12 pgoyette break; 8401 1.12 pgoyette case 2: 8402 1.12 pgoyette p = "const char *"; 8403 1.12 pgoyette break; 8404 1.12 pgoyette case 3: 8405 1.12 pgoyette p = "void *"; 8406 1.12 pgoyette break; 8407 1.12 pgoyette case 4: 8408 1.12 pgoyette p = "size_t"; 8409 1.12 pgoyette break; 8410 1.12 pgoyette default: 8411 1.12 pgoyette break; 8412 1.12 pgoyette }; 8413 1.12 pgoyette break; 8414 1.12 pgoyette /* sys_extattr_delete_fd */ 8415 1.12 pgoyette case 366: 8416 1.12 pgoyette switch(ndx) { 8417 1.12 pgoyette case 0: 8418 1.12 pgoyette p = "int"; 8419 1.12 pgoyette break; 8420 1.12 pgoyette case 1: 8421 1.12 pgoyette p = "int"; 8422 1.12 pgoyette break; 8423 1.12 pgoyette case 2: 8424 1.12 pgoyette p = "const char *"; 8425 1.12 pgoyette break; 8426 1.12 pgoyette default: 8427 1.12 pgoyette break; 8428 1.12 pgoyette }; 8429 1.12 pgoyette break; 8430 1.12 pgoyette /* sys_extattr_set_link */ 8431 1.12 pgoyette case 367: 8432 1.12 pgoyette switch(ndx) { 8433 1.12 pgoyette case 0: 8434 1.12 pgoyette p = "const char *"; 8435 1.12 pgoyette break; 8436 1.12 pgoyette case 1: 8437 1.12 pgoyette p = "int"; 8438 1.12 pgoyette break; 8439 1.12 pgoyette case 2: 8440 1.12 pgoyette p = "const char *"; 8441 1.12 pgoyette break; 8442 1.12 pgoyette case 3: 8443 1.12 pgoyette p = "const void *"; 8444 1.12 pgoyette break; 8445 1.12 pgoyette case 4: 8446 1.12 pgoyette p = "size_t"; 8447 1.12 pgoyette break; 8448 1.12 pgoyette default: 8449 1.12 pgoyette break; 8450 1.12 pgoyette }; 8451 1.12 pgoyette break; 8452 1.12 pgoyette /* sys_extattr_get_link */ 8453 1.12 pgoyette case 368: 8454 1.12 pgoyette switch(ndx) { 8455 1.12 pgoyette case 0: 8456 1.12 pgoyette p = "const char *"; 8457 1.12 pgoyette break; 8458 1.12 pgoyette case 1: 8459 1.12 pgoyette p = "int"; 8460 1.12 pgoyette break; 8461 1.12 pgoyette case 2: 8462 1.12 pgoyette p = "const char *"; 8463 1.12 pgoyette break; 8464 1.12 pgoyette case 3: 8465 1.12 pgoyette p = "void *"; 8466 1.12 pgoyette break; 8467 1.12 pgoyette case 4: 8468 1.12 pgoyette p = "size_t"; 8469 1.12 pgoyette break; 8470 1.12 pgoyette default: 8471 1.12 pgoyette break; 8472 1.12 pgoyette }; 8473 1.12 pgoyette break; 8474 1.12 pgoyette /* sys_extattr_delete_link */ 8475 1.12 pgoyette case 369: 8476 1.12 pgoyette switch(ndx) { 8477 1.12 pgoyette case 0: 8478 1.12 pgoyette p = "const char *"; 8479 1.12 pgoyette break; 8480 1.12 pgoyette case 1: 8481 1.12 pgoyette p = "int"; 8482 1.12 pgoyette break; 8483 1.12 pgoyette case 2: 8484 1.12 pgoyette p = "const char *"; 8485 1.12 pgoyette break; 8486 1.12 pgoyette default: 8487 1.12 pgoyette break; 8488 1.12 pgoyette }; 8489 1.12 pgoyette break; 8490 1.12 pgoyette /* sys_extattr_list_fd */ 8491 1.12 pgoyette case 370: 8492 1.12 pgoyette switch(ndx) { 8493 1.12 pgoyette case 0: 8494 1.12 pgoyette p = "int"; 8495 1.12 pgoyette break; 8496 1.12 pgoyette case 1: 8497 1.12 pgoyette p = "int"; 8498 1.12 pgoyette break; 8499 1.12 pgoyette case 2: 8500 1.12 pgoyette p = "void *"; 8501 1.12 pgoyette break; 8502 1.12 pgoyette case 3: 8503 1.12 pgoyette p = "size_t"; 8504 1.12 pgoyette break; 8505 1.12 pgoyette default: 8506 1.12 pgoyette break; 8507 1.12 pgoyette }; 8508 1.12 pgoyette break; 8509 1.12 pgoyette /* sys_extattr_list_file */ 8510 1.12 pgoyette case 371: 8511 1.12 pgoyette switch(ndx) { 8512 1.12 pgoyette case 0: 8513 1.12 pgoyette p = "const char *"; 8514 1.12 pgoyette break; 8515 1.12 pgoyette case 1: 8516 1.12 pgoyette p = "int"; 8517 1.12 pgoyette break; 8518 1.12 pgoyette case 2: 8519 1.12 pgoyette p = "void *"; 8520 1.12 pgoyette break; 8521 1.12 pgoyette case 3: 8522 1.12 pgoyette p = "size_t"; 8523 1.12 pgoyette break; 8524 1.12 pgoyette default: 8525 1.12 pgoyette break; 8526 1.12 pgoyette }; 8527 1.12 pgoyette break; 8528 1.12 pgoyette /* sys_extattr_list_link */ 8529 1.12 pgoyette case 372: 8530 1.12 pgoyette switch(ndx) { 8531 1.12 pgoyette case 0: 8532 1.12 pgoyette p = "const char *"; 8533 1.12 pgoyette break; 8534 1.12 pgoyette case 1: 8535 1.12 pgoyette p = "int"; 8536 1.12 pgoyette break; 8537 1.12 pgoyette case 2: 8538 1.12 pgoyette p = "void *"; 8539 1.12 pgoyette break; 8540 1.12 pgoyette case 3: 8541 1.12 pgoyette p = "size_t"; 8542 1.12 pgoyette break; 8543 1.12 pgoyette default: 8544 1.12 pgoyette break; 8545 1.12 pgoyette }; 8546 1.12 pgoyette break; 8547 1.12 pgoyette /* sys_pselect */ 8548 1.12 pgoyette case 373: 8549 1.12 pgoyette switch(ndx) { 8550 1.12 pgoyette case 0: 8551 1.12 pgoyette p = "int"; 8552 1.12 pgoyette break; 8553 1.12 pgoyette case 1: 8554 1.12 pgoyette p = "fd_set *"; 8555 1.12 pgoyette break; 8556 1.12 pgoyette case 2: 8557 1.12 pgoyette p = "fd_set *"; 8558 1.12 pgoyette break; 8559 1.12 pgoyette case 3: 8560 1.12 pgoyette p = "fd_set *"; 8561 1.12 pgoyette break; 8562 1.12 pgoyette case 4: 8563 1.12 pgoyette p = "const struct timespec50 *"; 8564 1.12 pgoyette break; 8565 1.12 pgoyette case 5: 8566 1.12 pgoyette p = "const sigset_t *"; 8567 1.12 pgoyette break; 8568 1.12 pgoyette default: 8569 1.12 pgoyette break; 8570 1.12 pgoyette }; 8571 1.12 pgoyette break; 8572 1.12 pgoyette /* sys_pollts */ 8573 1.12 pgoyette case 374: 8574 1.12 pgoyette switch(ndx) { 8575 1.12 pgoyette case 0: 8576 1.12 pgoyette p = "struct pollfd *"; 8577 1.12 pgoyette break; 8578 1.12 pgoyette case 1: 8579 1.12 pgoyette p = "u_int"; 8580 1.12 pgoyette break; 8581 1.12 pgoyette case 2: 8582 1.12 pgoyette p = "const struct timespec50 *"; 8583 1.12 pgoyette break; 8584 1.12 pgoyette case 3: 8585 1.12 pgoyette p = "const sigset_t *"; 8586 1.12 pgoyette break; 8587 1.12 pgoyette default: 8588 1.12 pgoyette break; 8589 1.12 pgoyette }; 8590 1.12 pgoyette break; 8591 1.12 pgoyette /* sys_setxattr */ 8592 1.12 pgoyette case 375: 8593 1.12 pgoyette switch(ndx) { 8594 1.12 pgoyette case 0: 8595 1.12 pgoyette p = "const char *"; 8596 1.12 pgoyette break; 8597 1.12 pgoyette case 1: 8598 1.12 pgoyette p = "const char *"; 8599 1.12 pgoyette break; 8600 1.12 pgoyette case 2: 8601 1.12 pgoyette p = "const void *"; 8602 1.12 pgoyette break; 8603 1.12 pgoyette case 3: 8604 1.12 pgoyette p = "size_t"; 8605 1.12 pgoyette break; 8606 1.12 pgoyette case 4: 8607 1.12 pgoyette p = "int"; 8608 1.12 pgoyette break; 8609 1.12 pgoyette default: 8610 1.12 pgoyette break; 8611 1.12 pgoyette }; 8612 1.12 pgoyette break; 8613 1.12 pgoyette /* sys_lsetxattr */ 8614 1.12 pgoyette case 376: 8615 1.12 pgoyette switch(ndx) { 8616 1.12 pgoyette case 0: 8617 1.12 pgoyette p = "const char *"; 8618 1.12 pgoyette break; 8619 1.12 pgoyette case 1: 8620 1.12 pgoyette p = "const char *"; 8621 1.12 pgoyette break; 8622 1.12 pgoyette case 2: 8623 1.12 pgoyette p = "const void *"; 8624 1.12 pgoyette break; 8625 1.12 pgoyette case 3: 8626 1.12 pgoyette p = "size_t"; 8627 1.12 pgoyette break; 8628 1.12 pgoyette case 4: 8629 1.12 pgoyette p = "int"; 8630 1.12 pgoyette break; 8631 1.12 pgoyette default: 8632 1.12 pgoyette break; 8633 1.12 pgoyette }; 8634 1.12 pgoyette break; 8635 1.12 pgoyette /* sys_fsetxattr */ 8636 1.12 pgoyette case 377: 8637 1.12 pgoyette switch(ndx) { 8638 1.12 pgoyette case 0: 8639 1.12 pgoyette p = "int"; 8640 1.12 pgoyette break; 8641 1.12 pgoyette case 1: 8642 1.12 pgoyette p = "const char *"; 8643 1.12 pgoyette break; 8644 1.12 pgoyette case 2: 8645 1.12 pgoyette p = "const void *"; 8646 1.12 pgoyette break; 8647 1.12 pgoyette case 3: 8648 1.12 pgoyette p = "size_t"; 8649 1.12 pgoyette break; 8650 1.12 pgoyette case 4: 8651 1.12 pgoyette p = "int"; 8652 1.12 pgoyette break; 8653 1.12 pgoyette default: 8654 1.12 pgoyette break; 8655 1.12 pgoyette }; 8656 1.12 pgoyette break; 8657 1.12 pgoyette /* sys_getxattr */ 8658 1.12 pgoyette case 378: 8659 1.12 pgoyette switch(ndx) { 8660 1.12 pgoyette case 0: 8661 1.12 pgoyette p = "const char *"; 8662 1.12 pgoyette break; 8663 1.12 pgoyette case 1: 8664 1.12 pgoyette p = "const char *"; 8665 1.12 pgoyette break; 8666 1.12 pgoyette case 2: 8667 1.12 pgoyette p = "void *"; 8668 1.12 pgoyette break; 8669 1.12 pgoyette case 3: 8670 1.12 pgoyette p = "size_t"; 8671 1.12 pgoyette break; 8672 1.12 pgoyette default: 8673 1.12 pgoyette break; 8674 1.12 pgoyette }; 8675 1.12 pgoyette break; 8676 1.12 pgoyette /* sys_lgetxattr */ 8677 1.12 pgoyette case 379: 8678 1.12 pgoyette switch(ndx) { 8679 1.12 pgoyette case 0: 8680 1.12 pgoyette p = "const char *"; 8681 1.12 pgoyette break; 8682 1.12 pgoyette case 1: 8683 1.12 pgoyette p = "const char *"; 8684 1.12 pgoyette break; 8685 1.12 pgoyette case 2: 8686 1.12 pgoyette p = "void *"; 8687 1.12 pgoyette break; 8688 1.12 pgoyette case 3: 8689 1.12 pgoyette p = "size_t"; 8690 1.12 pgoyette break; 8691 1.12 pgoyette default: 8692 1.12 pgoyette break; 8693 1.12 pgoyette }; 8694 1.12 pgoyette break; 8695 1.12 pgoyette /* sys_fgetxattr */ 8696 1.12 pgoyette case 380: 8697 1.12 pgoyette switch(ndx) { 8698 1.12 pgoyette case 0: 8699 1.12 pgoyette p = "int"; 8700 1.12 pgoyette break; 8701 1.12 pgoyette case 1: 8702 1.12 pgoyette p = "const char *"; 8703 1.12 pgoyette break; 8704 1.12 pgoyette case 2: 8705 1.12 pgoyette p = "void *"; 8706 1.12 pgoyette break; 8707 1.12 pgoyette case 3: 8708 1.12 pgoyette p = "size_t"; 8709 1.12 pgoyette break; 8710 1.12 pgoyette default: 8711 1.12 pgoyette break; 8712 1.12 pgoyette }; 8713 1.12 pgoyette break; 8714 1.12 pgoyette /* sys_listxattr */ 8715 1.12 pgoyette case 381: 8716 1.12 pgoyette switch(ndx) { 8717 1.12 pgoyette case 0: 8718 1.12 pgoyette p = "const char *"; 8719 1.12 pgoyette break; 8720 1.12 pgoyette case 1: 8721 1.12 pgoyette p = "char *"; 8722 1.12 pgoyette break; 8723 1.12 pgoyette case 2: 8724 1.12 pgoyette p = "size_t"; 8725 1.12 pgoyette break; 8726 1.12 pgoyette default: 8727 1.12 pgoyette break; 8728 1.12 pgoyette }; 8729 1.12 pgoyette break; 8730 1.12 pgoyette /* sys_llistxattr */ 8731 1.12 pgoyette case 382: 8732 1.12 pgoyette switch(ndx) { 8733 1.12 pgoyette case 0: 8734 1.12 pgoyette p = "const char *"; 8735 1.12 pgoyette break; 8736 1.12 pgoyette case 1: 8737 1.12 pgoyette p = "char *"; 8738 1.12 pgoyette break; 8739 1.12 pgoyette case 2: 8740 1.12 pgoyette p = "size_t"; 8741 1.12 pgoyette break; 8742 1.12 pgoyette default: 8743 1.12 pgoyette break; 8744 1.12 pgoyette }; 8745 1.12 pgoyette break; 8746 1.12 pgoyette /* sys_flistxattr */ 8747 1.12 pgoyette case 383: 8748 1.12 pgoyette switch(ndx) { 8749 1.12 pgoyette case 0: 8750 1.12 pgoyette p = "int"; 8751 1.12 pgoyette break; 8752 1.12 pgoyette case 1: 8753 1.12 pgoyette p = "char *"; 8754 1.12 pgoyette break; 8755 1.12 pgoyette case 2: 8756 1.12 pgoyette p = "size_t"; 8757 1.12 pgoyette break; 8758 1.12 pgoyette default: 8759 1.12 pgoyette break; 8760 1.12 pgoyette }; 8761 1.12 pgoyette break; 8762 1.12 pgoyette /* sys_removexattr */ 8763 1.12 pgoyette case 384: 8764 1.12 pgoyette switch(ndx) { 8765 1.12 pgoyette case 0: 8766 1.12 pgoyette p = "const char *"; 8767 1.12 pgoyette break; 8768 1.12 pgoyette case 1: 8769 1.12 pgoyette p = "const char *"; 8770 1.12 pgoyette break; 8771 1.12 pgoyette default: 8772 1.12 pgoyette break; 8773 1.12 pgoyette }; 8774 1.12 pgoyette break; 8775 1.12 pgoyette /* sys_lremovexattr */ 8776 1.12 pgoyette case 385: 8777 1.12 pgoyette switch(ndx) { 8778 1.12 pgoyette case 0: 8779 1.12 pgoyette p = "const char *"; 8780 1.12 pgoyette break; 8781 1.12 pgoyette case 1: 8782 1.12 pgoyette p = "const char *"; 8783 1.12 pgoyette break; 8784 1.12 pgoyette default: 8785 1.12 pgoyette break; 8786 1.12 pgoyette }; 8787 1.12 pgoyette break; 8788 1.12 pgoyette /* sys_fremovexattr */ 8789 1.12 pgoyette case 386: 8790 1.12 pgoyette switch(ndx) { 8791 1.12 pgoyette case 0: 8792 1.12 pgoyette p = "int"; 8793 1.12 pgoyette break; 8794 1.12 pgoyette case 1: 8795 1.12 pgoyette p = "const char *"; 8796 1.12 pgoyette break; 8797 1.12 pgoyette default: 8798 1.12 pgoyette break; 8799 1.12 pgoyette }; 8800 1.12 pgoyette break; 8801 1.12 pgoyette /* sys___stat30 */ 8802 1.12 pgoyette case 387: 8803 1.12 pgoyette switch(ndx) { 8804 1.12 pgoyette case 0: 8805 1.12 pgoyette p = "const char *"; 8806 1.12 pgoyette break; 8807 1.12 pgoyette case 1: 8808 1.12 pgoyette p = "struct stat30 *"; 8809 1.12 pgoyette break; 8810 1.12 pgoyette default: 8811 1.12 pgoyette break; 8812 1.12 pgoyette }; 8813 1.12 pgoyette break; 8814 1.12 pgoyette /* sys___fstat30 */ 8815 1.12 pgoyette case 388: 8816 1.12 pgoyette switch(ndx) { 8817 1.12 pgoyette case 0: 8818 1.12 pgoyette p = "int"; 8819 1.12 pgoyette break; 8820 1.12 pgoyette case 1: 8821 1.12 pgoyette p = "struct stat30 *"; 8822 1.12 pgoyette break; 8823 1.12 pgoyette default: 8824 1.12 pgoyette break; 8825 1.12 pgoyette }; 8826 1.12 pgoyette break; 8827 1.12 pgoyette /* sys___lstat30 */ 8828 1.12 pgoyette case 389: 8829 1.12 pgoyette switch(ndx) { 8830 1.12 pgoyette case 0: 8831 1.12 pgoyette p = "const char *"; 8832 1.12 pgoyette break; 8833 1.12 pgoyette case 1: 8834 1.12 pgoyette p = "struct stat30 *"; 8835 1.12 pgoyette break; 8836 1.12 pgoyette default: 8837 1.12 pgoyette break; 8838 1.12 pgoyette }; 8839 1.12 pgoyette break; 8840 1.12 pgoyette /* sys___getdents30 */ 8841 1.12 pgoyette case 390: 8842 1.12 pgoyette switch(ndx) { 8843 1.12 pgoyette case 0: 8844 1.12 pgoyette p = "int"; 8845 1.12 pgoyette break; 8846 1.12 pgoyette case 1: 8847 1.12 pgoyette p = "char *"; 8848 1.12 pgoyette break; 8849 1.12 pgoyette case 2: 8850 1.12 pgoyette p = "size_t"; 8851 1.12 pgoyette break; 8852 1.12 pgoyette default: 8853 1.12 pgoyette break; 8854 1.12 pgoyette }; 8855 1.12 pgoyette break; 8856 1.12 pgoyette /* sys___fhstat30 */ 8857 1.12 pgoyette case 392: 8858 1.12 pgoyette switch(ndx) { 8859 1.12 pgoyette case 0: 8860 1.12 pgoyette p = "const struct compat_30_fhandle *"; 8861 1.12 pgoyette break; 8862 1.12 pgoyette case 1: 8863 1.12 pgoyette p = "struct stat30 *"; 8864 1.12 pgoyette break; 8865 1.12 pgoyette default: 8866 1.12 pgoyette break; 8867 1.12 pgoyette }; 8868 1.12 pgoyette break; 8869 1.12 pgoyette /* sys___ntp_gettime30 */ 8870 1.12 pgoyette case 393: 8871 1.12 pgoyette switch(ndx) { 8872 1.12 pgoyette case 0: 8873 1.12 pgoyette p = "struct ntptimeval50 *"; 8874 1.12 pgoyette break; 8875 1.12 pgoyette default: 8876 1.12 pgoyette break; 8877 1.12 pgoyette }; 8878 1.12 pgoyette break; 8879 1.12 pgoyette /* sys___socket30 */ 8880 1.12 pgoyette case 394: 8881 1.12 pgoyette switch(ndx) { 8882 1.12 pgoyette case 0: 8883 1.12 pgoyette p = "int"; 8884 1.12 pgoyette break; 8885 1.12 pgoyette case 1: 8886 1.12 pgoyette p = "int"; 8887 1.12 pgoyette break; 8888 1.12 pgoyette case 2: 8889 1.12 pgoyette p = "int"; 8890 1.12 pgoyette break; 8891 1.12 pgoyette default: 8892 1.12 pgoyette break; 8893 1.12 pgoyette }; 8894 1.12 pgoyette break; 8895 1.12 pgoyette /* sys___getfh30 */ 8896 1.12 pgoyette case 395: 8897 1.12 pgoyette switch(ndx) { 8898 1.12 pgoyette case 0: 8899 1.12 pgoyette p = "const char *"; 8900 1.12 pgoyette break; 8901 1.12 pgoyette case 1: 8902 1.12 pgoyette p = "void *"; 8903 1.12 pgoyette break; 8904 1.12 pgoyette case 2: 8905 1.12 pgoyette p = "size_t *"; 8906 1.12 pgoyette break; 8907 1.12 pgoyette default: 8908 1.12 pgoyette break; 8909 1.12 pgoyette }; 8910 1.12 pgoyette break; 8911 1.12 pgoyette /* sys___fhopen40 */ 8912 1.12 pgoyette case 396: 8913 1.12 pgoyette switch(ndx) { 8914 1.12 pgoyette case 0: 8915 1.12 pgoyette p = "const void *"; 8916 1.12 pgoyette break; 8917 1.12 pgoyette case 1: 8918 1.12 pgoyette p = "size_t"; 8919 1.12 pgoyette break; 8920 1.12 pgoyette case 2: 8921 1.12 pgoyette p = "int"; 8922 1.12 pgoyette break; 8923 1.12 pgoyette default: 8924 1.12 pgoyette break; 8925 1.12 pgoyette }; 8926 1.12 pgoyette break; 8927 1.33 christos /* sys_fhstatvfs1 */ 8928 1.12 pgoyette case 397: 8929 1.12 pgoyette switch(ndx) { 8930 1.12 pgoyette case 0: 8931 1.12 pgoyette p = "const void *"; 8932 1.12 pgoyette break; 8933 1.12 pgoyette case 1: 8934 1.12 pgoyette p = "size_t"; 8935 1.12 pgoyette break; 8936 1.12 pgoyette case 2: 8937 1.33 christos p = "struct statvfs90 *"; 8938 1.12 pgoyette break; 8939 1.12 pgoyette case 3: 8940 1.12 pgoyette p = "int"; 8941 1.12 pgoyette break; 8942 1.12 pgoyette default: 8943 1.12 pgoyette break; 8944 1.12 pgoyette }; 8945 1.12 pgoyette break; 8946 1.12 pgoyette /* sys___fhstat40 */ 8947 1.12 pgoyette case 398: 8948 1.12 pgoyette switch(ndx) { 8949 1.12 pgoyette case 0: 8950 1.12 pgoyette p = "const void *"; 8951 1.12 pgoyette break; 8952 1.12 pgoyette case 1: 8953 1.12 pgoyette p = "size_t"; 8954 1.12 pgoyette break; 8955 1.12 pgoyette case 2: 8956 1.12 pgoyette p = "struct stat30 *"; 8957 1.12 pgoyette break; 8958 1.12 pgoyette default: 8959 1.12 pgoyette break; 8960 1.12 pgoyette }; 8961 1.12 pgoyette break; 8962 1.12 pgoyette /* sys_aio_cancel */ 8963 1.12 pgoyette case 399: 8964 1.12 pgoyette switch(ndx) { 8965 1.12 pgoyette case 0: 8966 1.12 pgoyette p = "int"; 8967 1.12 pgoyette break; 8968 1.12 pgoyette case 1: 8969 1.12 pgoyette p = "struct aiocb *"; 8970 1.12 pgoyette break; 8971 1.12 pgoyette default: 8972 1.12 pgoyette break; 8973 1.12 pgoyette }; 8974 1.12 pgoyette break; 8975 1.12 pgoyette /* sys_aio_error */ 8976 1.12 pgoyette case 400: 8977 1.12 pgoyette switch(ndx) { 8978 1.12 pgoyette case 0: 8979 1.12 pgoyette p = "const struct aiocb *"; 8980 1.12 pgoyette break; 8981 1.12 pgoyette default: 8982 1.12 pgoyette break; 8983 1.12 pgoyette }; 8984 1.12 pgoyette break; 8985 1.12 pgoyette /* sys_aio_fsync */ 8986 1.12 pgoyette case 401: 8987 1.12 pgoyette switch(ndx) { 8988 1.12 pgoyette case 0: 8989 1.12 pgoyette p = "int"; 8990 1.12 pgoyette break; 8991 1.12 pgoyette case 1: 8992 1.12 pgoyette p = "struct aiocb *"; 8993 1.12 pgoyette break; 8994 1.12 pgoyette default: 8995 1.12 pgoyette break; 8996 1.12 pgoyette }; 8997 1.12 pgoyette break; 8998 1.12 pgoyette /* sys_aio_read */ 8999 1.12 pgoyette case 402: 9000 1.12 pgoyette switch(ndx) { 9001 1.12 pgoyette case 0: 9002 1.12 pgoyette p = "struct aiocb *"; 9003 1.12 pgoyette break; 9004 1.12 pgoyette default: 9005 1.12 pgoyette break; 9006 1.12 pgoyette }; 9007 1.12 pgoyette break; 9008 1.12 pgoyette /* sys_aio_return */ 9009 1.12 pgoyette case 403: 9010 1.12 pgoyette switch(ndx) { 9011 1.12 pgoyette case 0: 9012 1.12 pgoyette p = "struct aiocb *"; 9013 1.12 pgoyette break; 9014 1.12 pgoyette default: 9015 1.12 pgoyette break; 9016 1.12 pgoyette }; 9017 1.12 pgoyette break; 9018 1.12 pgoyette /* sys_aio_suspend */ 9019 1.12 pgoyette case 404: 9020 1.12 pgoyette switch(ndx) { 9021 1.12 pgoyette case 0: 9022 1.12 pgoyette p = "const struct aiocb *const *"; 9023 1.12 pgoyette break; 9024 1.12 pgoyette case 1: 9025 1.12 pgoyette p = "int"; 9026 1.12 pgoyette break; 9027 1.12 pgoyette case 2: 9028 1.12 pgoyette p = "const struct timespec50 *"; 9029 1.12 pgoyette break; 9030 1.12 pgoyette default: 9031 1.12 pgoyette break; 9032 1.12 pgoyette }; 9033 1.12 pgoyette break; 9034 1.12 pgoyette /* sys_aio_write */ 9035 1.12 pgoyette case 405: 9036 1.12 pgoyette switch(ndx) { 9037 1.12 pgoyette case 0: 9038 1.12 pgoyette p = "struct aiocb *"; 9039 1.12 pgoyette break; 9040 1.12 pgoyette default: 9041 1.12 pgoyette break; 9042 1.12 pgoyette }; 9043 1.12 pgoyette break; 9044 1.12 pgoyette /* sys_lio_listio */ 9045 1.12 pgoyette case 406: 9046 1.12 pgoyette switch(ndx) { 9047 1.12 pgoyette case 0: 9048 1.12 pgoyette p = "int"; 9049 1.12 pgoyette break; 9050 1.12 pgoyette case 1: 9051 1.12 pgoyette p = "struct aiocb *const *"; 9052 1.12 pgoyette break; 9053 1.12 pgoyette case 2: 9054 1.12 pgoyette p = "int"; 9055 1.12 pgoyette break; 9056 1.12 pgoyette case 3: 9057 1.12 pgoyette p = "struct sigevent *"; 9058 1.12 pgoyette break; 9059 1.12 pgoyette default: 9060 1.12 pgoyette break; 9061 1.12 pgoyette }; 9062 1.12 pgoyette break; 9063 1.12 pgoyette /* sys___mount50 */ 9064 1.12 pgoyette case 410: 9065 1.12 pgoyette switch(ndx) { 9066 1.12 pgoyette case 0: 9067 1.12 pgoyette p = "const char *"; 9068 1.12 pgoyette break; 9069 1.12 pgoyette case 1: 9070 1.12 pgoyette p = "const char *"; 9071 1.12 pgoyette break; 9072 1.12 pgoyette case 2: 9073 1.12 pgoyette p = "int"; 9074 1.12 pgoyette break; 9075 1.12 pgoyette case 3: 9076 1.12 pgoyette p = "void *"; 9077 1.12 pgoyette break; 9078 1.12 pgoyette case 4: 9079 1.12 pgoyette p = "size_t"; 9080 1.12 pgoyette break; 9081 1.12 pgoyette default: 9082 1.12 pgoyette break; 9083 1.12 pgoyette }; 9084 1.12 pgoyette break; 9085 1.12 pgoyette /* sys_mremap */ 9086 1.12 pgoyette case 411: 9087 1.12 pgoyette switch(ndx) { 9088 1.12 pgoyette case 0: 9089 1.12 pgoyette p = "void *"; 9090 1.12 pgoyette break; 9091 1.12 pgoyette case 1: 9092 1.12 pgoyette p = "size_t"; 9093 1.12 pgoyette break; 9094 1.12 pgoyette case 2: 9095 1.12 pgoyette p = "void *"; 9096 1.12 pgoyette break; 9097 1.12 pgoyette case 3: 9098 1.12 pgoyette p = "size_t"; 9099 1.12 pgoyette break; 9100 1.12 pgoyette case 4: 9101 1.12 pgoyette p = "int"; 9102 1.12 pgoyette break; 9103 1.12 pgoyette default: 9104 1.12 pgoyette break; 9105 1.12 pgoyette }; 9106 1.12 pgoyette break; 9107 1.12 pgoyette /* sys_pset_create */ 9108 1.12 pgoyette case 412: 9109 1.12 pgoyette switch(ndx) { 9110 1.12 pgoyette case 0: 9111 1.12 pgoyette p = "psetid_t *"; 9112 1.12 pgoyette break; 9113 1.12 pgoyette default: 9114 1.12 pgoyette break; 9115 1.12 pgoyette }; 9116 1.12 pgoyette break; 9117 1.12 pgoyette /* sys_pset_destroy */ 9118 1.12 pgoyette case 413: 9119 1.12 pgoyette switch(ndx) { 9120 1.12 pgoyette case 0: 9121 1.12 pgoyette p = "psetid_t"; 9122 1.12 pgoyette break; 9123 1.12 pgoyette default: 9124 1.12 pgoyette break; 9125 1.12 pgoyette }; 9126 1.12 pgoyette break; 9127 1.12 pgoyette /* sys_pset_assign */ 9128 1.12 pgoyette case 414: 9129 1.12 pgoyette switch(ndx) { 9130 1.12 pgoyette case 0: 9131 1.12 pgoyette p = "psetid_t"; 9132 1.12 pgoyette break; 9133 1.12 pgoyette case 1: 9134 1.12 pgoyette p = "cpuid_t"; 9135 1.12 pgoyette break; 9136 1.12 pgoyette case 2: 9137 1.12 pgoyette p = "psetid_t *"; 9138 1.12 pgoyette break; 9139 1.12 pgoyette default: 9140 1.12 pgoyette break; 9141 1.12 pgoyette }; 9142 1.12 pgoyette break; 9143 1.12 pgoyette /* sys__pset_bind */ 9144 1.12 pgoyette case 415: 9145 1.12 pgoyette switch(ndx) { 9146 1.12 pgoyette case 0: 9147 1.12 pgoyette p = "idtype_t"; 9148 1.12 pgoyette break; 9149 1.12 pgoyette case 1: 9150 1.12 pgoyette p = "id_t"; 9151 1.12 pgoyette break; 9152 1.12 pgoyette case 2: 9153 1.12 pgoyette p = "id_t"; 9154 1.12 pgoyette break; 9155 1.12 pgoyette case 3: 9156 1.12 pgoyette p = "psetid_t"; 9157 1.12 pgoyette break; 9158 1.12 pgoyette case 4: 9159 1.12 pgoyette p = "psetid_t *"; 9160 1.12 pgoyette break; 9161 1.12 pgoyette default: 9162 1.12 pgoyette break; 9163 1.12 pgoyette }; 9164 1.12 pgoyette break; 9165 1.12 pgoyette /* sys___posix_fadvise50 */ 9166 1.12 pgoyette case 416: 9167 1.12 pgoyette switch(ndx) { 9168 1.12 pgoyette case 0: 9169 1.12 pgoyette p = "int"; 9170 1.12 pgoyette break; 9171 1.12 pgoyette case 1: 9172 1.12 pgoyette p = "int"; 9173 1.12 pgoyette break; 9174 1.12 pgoyette case 2: 9175 1.12 pgoyette p = "off_t"; 9176 1.12 pgoyette break; 9177 1.12 pgoyette case 3: 9178 1.12 pgoyette p = "off_t"; 9179 1.12 pgoyette break; 9180 1.12 pgoyette case 4: 9181 1.12 pgoyette p = "int"; 9182 1.12 pgoyette break; 9183 1.12 pgoyette default: 9184 1.12 pgoyette break; 9185 1.12 pgoyette }; 9186 1.12 pgoyette break; 9187 1.12 pgoyette /* sys___select50 */ 9188 1.12 pgoyette case 417: 9189 1.12 pgoyette switch(ndx) { 9190 1.12 pgoyette case 0: 9191 1.12 pgoyette p = "int"; 9192 1.12 pgoyette break; 9193 1.12 pgoyette case 1: 9194 1.12 pgoyette p = "fd_set *"; 9195 1.12 pgoyette break; 9196 1.12 pgoyette case 2: 9197 1.12 pgoyette p = "fd_set *"; 9198 1.12 pgoyette break; 9199 1.12 pgoyette case 3: 9200 1.12 pgoyette p = "fd_set *"; 9201 1.12 pgoyette break; 9202 1.12 pgoyette case 4: 9203 1.12 pgoyette p = "struct timeval *"; 9204 1.12 pgoyette break; 9205 1.12 pgoyette default: 9206 1.12 pgoyette break; 9207 1.12 pgoyette }; 9208 1.12 pgoyette break; 9209 1.12 pgoyette /* sys___gettimeofday50 */ 9210 1.12 pgoyette case 418: 9211 1.12 pgoyette switch(ndx) { 9212 1.12 pgoyette case 0: 9213 1.12 pgoyette p = "struct timeval *"; 9214 1.12 pgoyette break; 9215 1.12 pgoyette case 1: 9216 1.12 pgoyette p = "void *"; 9217 1.12 pgoyette break; 9218 1.12 pgoyette default: 9219 1.12 pgoyette break; 9220 1.12 pgoyette }; 9221 1.12 pgoyette break; 9222 1.12 pgoyette /* sys___settimeofday50 */ 9223 1.12 pgoyette case 419: 9224 1.12 pgoyette switch(ndx) { 9225 1.12 pgoyette case 0: 9226 1.12 pgoyette p = "const struct timeval *"; 9227 1.12 pgoyette break; 9228 1.12 pgoyette case 1: 9229 1.12 pgoyette p = "const void *"; 9230 1.12 pgoyette break; 9231 1.12 pgoyette default: 9232 1.12 pgoyette break; 9233 1.12 pgoyette }; 9234 1.12 pgoyette break; 9235 1.12 pgoyette /* sys___utimes50 */ 9236 1.12 pgoyette case 420: 9237 1.12 pgoyette switch(ndx) { 9238 1.12 pgoyette case 0: 9239 1.12 pgoyette p = "const char *"; 9240 1.12 pgoyette break; 9241 1.12 pgoyette case 1: 9242 1.12 pgoyette p = "const struct timeval *"; 9243 1.12 pgoyette break; 9244 1.12 pgoyette default: 9245 1.12 pgoyette break; 9246 1.12 pgoyette }; 9247 1.12 pgoyette break; 9248 1.12 pgoyette /* sys___adjtime50 */ 9249 1.12 pgoyette case 421: 9250 1.12 pgoyette switch(ndx) { 9251 1.12 pgoyette case 0: 9252 1.12 pgoyette p = "const struct timeval *"; 9253 1.12 pgoyette break; 9254 1.12 pgoyette case 1: 9255 1.12 pgoyette p = "struct timeval *"; 9256 1.12 pgoyette break; 9257 1.12 pgoyette default: 9258 1.12 pgoyette break; 9259 1.12 pgoyette }; 9260 1.12 pgoyette break; 9261 1.12 pgoyette /* sys___lfs_segwait50 */ 9262 1.12 pgoyette case 422: 9263 1.12 pgoyette switch(ndx) { 9264 1.12 pgoyette case 0: 9265 1.12 pgoyette p = "fsid_t *"; 9266 1.12 pgoyette break; 9267 1.12 pgoyette case 1: 9268 1.12 pgoyette p = "struct timeval *"; 9269 1.12 pgoyette break; 9270 1.12 pgoyette default: 9271 1.12 pgoyette break; 9272 1.12 pgoyette }; 9273 1.12 pgoyette break; 9274 1.12 pgoyette /* sys___futimes50 */ 9275 1.12 pgoyette case 423: 9276 1.12 pgoyette switch(ndx) { 9277 1.12 pgoyette case 0: 9278 1.12 pgoyette p = "int"; 9279 1.12 pgoyette break; 9280 1.12 pgoyette case 1: 9281 1.12 pgoyette p = "const struct timeval *"; 9282 1.12 pgoyette break; 9283 1.12 pgoyette default: 9284 1.12 pgoyette break; 9285 1.12 pgoyette }; 9286 1.12 pgoyette break; 9287 1.12 pgoyette /* sys___lutimes50 */ 9288 1.12 pgoyette case 424: 9289 1.12 pgoyette switch(ndx) { 9290 1.12 pgoyette case 0: 9291 1.12 pgoyette p = "const char *"; 9292 1.12 pgoyette break; 9293 1.12 pgoyette case 1: 9294 1.12 pgoyette p = "const struct timeval *"; 9295 1.12 pgoyette break; 9296 1.12 pgoyette default: 9297 1.12 pgoyette break; 9298 1.12 pgoyette }; 9299 1.12 pgoyette break; 9300 1.12 pgoyette /* sys___setitimer50 */ 9301 1.12 pgoyette case 425: 9302 1.12 pgoyette switch(ndx) { 9303 1.12 pgoyette case 0: 9304 1.12 pgoyette p = "int"; 9305 1.12 pgoyette break; 9306 1.12 pgoyette case 1: 9307 1.12 pgoyette p = "const struct itimerval *"; 9308 1.12 pgoyette break; 9309 1.12 pgoyette case 2: 9310 1.12 pgoyette p = "struct itimerval *"; 9311 1.12 pgoyette break; 9312 1.12 pgoyette default: 9313 1.12 pgoyette break; 9314 1.12 pgoyette }; 9315 1.12 pgoyette break; 9316 1.12 pgoyette /* sys___getitimer50 */ 9317 1.12 pgoyette case 426: 9318 1.12 pgoyette switch(ndx) { 9319 1.12 pgoyette case 0: 9320 1.12 pgoyette p = "int"; 9321 1.12 pgoyette break; 9322 1.12 pgoyette case 1: 9323 1.12 pgoyette p = "struct itimerval *"; 9324 1.12 pgoyette break; 9325 1.12 pgoyette default: 9326 1.12 pgoyette break; 9327 1.12 pgoyette }; 9328 1.12 pgoyette break; 9329 1.12 pgoyette /* sys___clock_gettime50 */ 9330 1.12 pgoyette case 427: 9331 1.12 pgoyette switch(ndx) { 9332 1.12 pgoyette case 0: 9333 1.12 pgoyette p = "clockid_t"; 9334 1.12 pgoyette break; 9335 1.12 pgoyette case 1: 9336 1.12 pgoyette p = "struct timespec *"; 9337 1.12 pgoyette break; 9338 1.12 pgoyette default: 9339 1.12 pgoyette break; 9340 1.12 pgoyette }; 9341 1.12 pgoyette break; 9342 1.12 pgoyette /* sys___clock_settime50 */ 9343 1.12 pgoyette case 428: 9344 1.12 pgoyette switch(ndx) { 9345 1.12 pgoyette case 0: 9346 1.12 pgoyette p = "clockid_t"; 9347 1.12 pgoyette break; 9348 1.12 pgoyette case 1: 9349 1.12 pgoyette p = "const struct timespec *"; 9350 1.12 pgoyette break; 9351 1.12 pgoyette default: 9352 1.12 pgoyette break; 9353 1.12 pgoyette }; 9354 1.12 pgoyette break; 9355 1.12 pgoyette /* sys___clock_getres50 */ 9356 1.12 pgoyette case 429: 9357 1.12 pgoyette switch(ndx) { 9358 1.12 pgoyette case 0: 9359 1.12 pgoyette p = "clockid_t"; 9360 1.12 pgoyette break; 9361 1.12 pgoyette case 1: 9362 1.12 pgoyette p = "struct timespec *"; 9363 1.12 pgoyette break; 9364 1.12 pgoyette default: 9365 1.12 pgoyette break; 9366 1.12 pgoyette }; 9367 1.12 pgoyette break; 9368 1.12 pgoyette /* sys___nanosleep50 */ 9369 1.12 pgoyette case 430: 9370 1.12 pgoyette switch(ndx) { 9371 1.12 pgoyette case 0: 9372 1.12 pgoyette p = "const struct timespec *"; 9373 1.12 pgoyette break; 9374 1.12 pgoyette case 1: 9375 1.12 pgoyette p = "struct timespec *"; 9376 1.12 pgoyette break; 9377 1.12 pgoyette default: 9378 1.12 pgoyette break; 9379 1.12 pgoyette }; 9380 1.12 pgoyette break; 9381 1.12 pgoyette /* sys_____sigtimedwait50 */ 9382 1.12 pgoyette case 431: 9383 1.12 pgoyette switch(ndx) { 9384 1.12 pgoyette case 0: 9385 1.12 pgoyette p = "const sigset_t *"; 9386 1.12 pgoyette break; 9387 1.12 pgoyette case 1: 9388 1.12 pgoyette p = "siginfo_t *"; 9389 1.12 pgoyette break; 9390 1.12 pgoyette case 2: 9391 1.12 pgoyette p = "struct timespec *"; 9392 1.12 pgoyette break; 9393 1.12 pgoyette default: 9394 1.12 pgoyette break; 9395 1.12 pgoyette }; 9396 1.12 pgoyette break; 9397 1.12 pgoyette /* sys___mq_timedsend50 */ 9398 1.12 pgoyette case 432: 9399 1.12 pgoyette switch(ndx) { 9400 1.12 pgoyette case 0: 9401 1.12 pgoyette p = "mqd_t"; 9402 1.12 pgoyette break; 9403 1.12 pgoyette case 1: 9404 1.12 pgoyette p = "const char *"; 9405 1.12 pgoyette break; 9406 1.12 pgoyette case 2: 9407 1.12 pgoyette p = "size_t"; 9408 1.12 pgoyette break; 9409 1.12 pgoyette case 3: 9410 1.12 pgoyette p = "unsigned"; 9411 1.12 pgoyette break; 9412 1.12 pgoyette case 4: 9413 1.12 pgoyette p = "const struct timespec *"; 9414 1.12 pgoyette break; 9415 1.12 pgoyette default: 9416 1.12 pgoyette break; 9417 1.12 pgoyette }; 9418 1.12 pgoyette break; 9419 1.12 pgoyette /* sys___mq_timedreceive50 */ 9420 1.12 pgoyette case 433: 9421 1.12 pgoyette switch(ndx) { 9422 1.12 pgoyette case 0: 9423 1.12 pgoyette p = "mqd_t"; 9424 1.12 pgoyette break; 9425 1.12 pgoyette case 1: 9426 1.12 pgoyette p = "char *"; 9427 1.12 pgoyette break; 9428 1.12 pgoyette case 2: 9429 1.12 pgoyette p = "size_t"; 9430 1.12 pgoyette break; 9431 1.12 pgoyette case 3: 9432 1.12 pgoyette p = "unsigned *"; 9433 1.12 pgoyette break; 9434 1.12 pgoyette case 4: 9435 1.12 pgoyette p = "const struct timespec *"; 9436 1.12 pgoyette break; 9437 1.12 pgoyette default: 9438 1.12 pgoyette break; 9439 1.12 pgoyette }; 9440 1.12 pgoyette break; 9441 1.12 pgoyette /* sys__lwp_park */ 9442 1.12 pgoyette case 434: 9443 1.12 pgoyette switch(ndx) { 9444 1.12 pgoyette case 0: 9445 1.12 pgoyette p = "const struct timespec *"; 9446 1.12 pgoyette break; 9447 1.12 pgoyette case 1: 9448 1.12 pgoyette p = "lwpid_t"; 9449 1.12 pgoyette break; 9450 1.12 pgoyette case 2: 9451 1.12 pgoyette p = "const void *"; 9452 1.12 pgoyette break; 9453 1.12 pgoyette case 3: 9454 1.12 pgoyette p = "const void *"; 9455 1.12 pgoyette break; 9456 1.12 pgoyette default: 9457 1.12 pgoyette break; 9458 1.12 pgoyette }; 9459 1.12 pgoyette break; 9460 1.12 pgoyette /* sys___kevent50 */ 9461 1.12 pgoyette case 435: 9462 1.12 pgoyette switch(ndx) { 9463 1.12 pgoyette case 0: 9464 1.12 pgoyette p = "int"; 9465 1.12 pgoyette break; 9466 1.12 pgoyette case 1: 9467 1.51 christos p = "const struct kevent100 *"; 9468 1.12 pgoyette break; 9469 1.12 pgoyette case 2: 9470 1.12 pgoyette p = "size_t"; 9471 1.12 pgoyette break; 9472 1.12 pgoyette case 3: 9473 1.51 christos p = "struct kevent100 *"; 9474 1.12 pgoyette break; 9475 1.12 pgoyette case 4: 9476 1.12 pgoyette p = "size_t"; 9477 1.12 pgoyette break; 9478 1.12 pgoyette case 5: 9479 1.12 pgoyette p = "const struct timespec *"; 9480 1.12 pgoyette break; 9481 1.12 pgoyette default: 9482 1.12 pgoyette break; 9483 1.12 pgoyette }; 9484 1.12 pgoyette break; 9485 1.12 pgoyette /* sys___pselect50 */ 9486 1.12 pgoyette case 436: 9487 1.12 pgoyette switch(ndx) { 9488 1.12 pgoyette case 0: 9489 1.12 pgoyette p = "int"; 9490 1.12 pgoyette break; 9491 1.12 pgoyette case 1: 9492 1.12 pgoyette p = "fd_set *"; 9493 1.12 pgoyette break; 9494 1.12 pgoyette case 2: 9495 1.12 pgoyette p = "fd_set *"; 9496 1.12 pgoyette break; 9497 1.12 pgoyette case 3: 9498 1.12 pgoyette p = "fd_set *"; 9499 1.12 pgoyette break; 9500 1.12 pgoyette case 4: 9501 1.12 pgoyette p = "const struct timespec *"; 9502 1.12 pgoyette break; 9503 1.12 pgoyette case 5: 9504 1.12 pgoyette p = "const sigset_t *"; 9505 1.12 pgoyette break; 9506 1.12 pgoyette default: 9507 1.12 pgoyette break; 9508 1.12 pgoyette }; 9509 1.12 pgoyette break; 9510 1.12 pgoyette /* sys___pollts50 */ 9511 1.12 pgoyette case 437: 9512 1.12 pgoyette switch(ndx) { 9513 1.12 pgoyette case 0: 9514 1.12 pgoyette p = "struct pollfd *"; 9515 1.12 pgoyette break; 9516 1.12 pgoyette case 1: 9517 1.12 pgoyette p = "u_int"; 9518 1.12 pgoyette break; 9519 1.12 pgoyette case 2: 9520 1.12 pgoyette p = "const struct timespec *"; 9521 1.12 pgoyette break; 9522 1.12 pgoyette case 3: 9523 1.12 pgoyette p = "const sigset_t *"; 9524 1.12 pgoyette break; 9525 1.12 pgoyette default: 9526 1.12 pgoyette break; 9527 1.12 pgoyette }; 9528 1.12 pgoyette break; 9529 1.12 pgoyette /* sys___aio_suspend50 */ 9530 1.12 pgoyette case 438: 9531 1.12 pgoyette switch(ndx) { 9532 1.12 pgoyette case 0: 9533 1.12 pgoyette p = "const struct aiocb *const *"; 9534 1.12 pgoyette break; 9535 1.12 pgoyette case 1: 9536 1.12 pgoyette p = "int"; 9537 1.12 pgoyette break; 9538 1.12 pgoyette case 2: 9539 1.12 pgoyette p = "const struct timespec *"; 9540 1.12 pgoyette break; 9541 1.12 pgoyette default: 9542 1.12 pgoyette break; 9543 1.12 pgoyette }; 9544 1.12 pgoyette break; 9545 1.12 pgoyette /* sys___stat50 */ 9546 1.12 pgoyette case 439: 9547 1.12 pgoyette switch(ndx) { 9548 1.12 pgoyette case 0: 9549 1.12 pgoyette p = "const char *"; 9550 1.12 pgoyette break; 9551 1.12 pgoyette case 1: 9552 1.12 pgoyette p = "struct stat *"; 9553 1.12 pgoyette break; 9554 1.12 pgoyette default: 9555 1.12 pgoyette break; 9556 1.12 pgoyette }; 9557 1.12 pgoyette break; 9558 1.12 pgoyette /* sys___fstat50 */ 9559 1.12 pgoyette case 440: 9560 1.12 pgoyette switch(ndx) { 9561 1.12 pgoyette case 0: 9562 1.12 pgoyette p = "int"; 9563 1.12 pgoyette break; 9564 1.12 pgoyette case 1: 9565 1.12 pgoyette p = "struct stat *"; 9566 1.12 pgoyette break; 9567 1.12 pgoyette default: 9568 1.12 pgoyette break; 9569 1.12 pgoyette }; 9570 1.12 pgoyette break; 9571 1.12 pgoyette /* sys___lstat50 */ 9572 1.12 pgoyette case 441: 9573 1.12 pgoyette switch(ndx) { 9574 1.12 pgoyette case 0: 9575 1.12 pgoyette p = "const char *"; 9576 1.12 pgoyette break; 9577 1.12 pgoyette case 1: 9578 1.12 pgoyette p = "struct stat *"; 9579 1.12 pgoyette break; 9580 1.12 pgoyette default: 9581 1.12 pgoyette break; 9582 1.12 pgoyette }; 9583 1.12 pgoyette break; 9584 1.12 pgoyette /* sys_____semctl50 */ 9585 1.12 pgoyette case 442: 9586 1.12 pgoyette switch(ndx) { 9587 1.12 pgoyette case 0: 9588 1.12 pgoyette p = "int"; 9589 1.12 pgoyette break; 9590 1.12 pgoyette case 1: 9591 1.12 pgoyette p = "int"; 9592 1.12 pgoyette break; 9593 1.12 pgoyette case 2: 9594 1.12 pgoyette p = "int"; 9595 1.12 pgoyette break; 9596 1.12 pgoyette case 3: 9597 1.12 pgoyette p = "union __semun *"; 9598 1.12 pgoyette break; 9599 1.12 pgoyette default: 9600 1.12 pgoyette break; 9601 1.12 pgoyette }; 9602 1.12 pgoyette break; 9603 1.12 pgoyette /* sys___shmctl50 */ 9604 1.12 pgoyette case 443: 9605 1.12 pgoyette switch(ndx) { 9606 1.12 pgoyette case 0: 9607 1.12 pgoyette p = "int"; 9608 1.12 pgoyette break; 9609 1.12 pgoyette case 1: 9610 1.12 pgoyette p = "int"; 9611 1.12 pgoyette break; 9612 1.12 pgoyette case 2: 9613 1.12 pgoyette p = "struct shmid_ds *"; 9614 1.12 pgoyette break; 9615 1.12 pgoyette default: 9616 1.12 pgoyette break; 9617 1.12 pgoyette }; 9618 1.12 pgoyette break; 9619 1.12 pgoyette /* sys___msgctl50 */ 9620 1.12 pgoyette case 444: 9621 1.12 pgoyette switch(ndx) { 9622 1.12 pgoyette case 0: 9623 1.12 pgoyette p = "int"; 9624 1.12 pgoyette break; 9625 1.12 pgoyette case 1: 9626 1.12 pgoyette p = "int"; 9627 1.12 pgoyette break; 9628 1.12 pgoyette case 2: 9629 1.12 pgoyette p = "struct msqid_ds *"; 9630 1.12 pgoyette break; 9631 1.12 pgoyette default: 9632 1.12 pgoyette break; 9633 1.12 pgoyette }; 9634 1.12 pgoyette break; 9635 1.12 pgoyette /* sys___getrusage50 */ 9636 1.12 pgoyette case 445: 9637 1.12 pgoyette switch(ndx) { 9638 1.12 pgoyette case 0: 9639 1.12 pgoyette p = "int"; 9640 1.12 pgoyette break; 9641 1.12 pgoyette case 1: 9642 1.12 pgoyette p = "struct rusage *"; 9643 1.12 pgoyette break; 9644 1.12 pgoyette default: 9645 1.12 pgoyette break; 9646 1.12 pgoyette }; 9647 1.12 pgoyette break; 9648 1.12 pgoyette /* sys___timer_settime50 */ 9649 1.12 pgoyette case 446: 9650 1.12 pgoyette switch(ndx) { 9651 1.12 pgoyette case 0: 9652 1.12 pgoyette p = "timer_t"; 9653 1.12 pgoyette break; 9654 1.12 pgoyette case 1: 9655 1.12 pgoyette p = "int"; 9656 1.12 pgoyette break; 9657 1.12 pgoyette case 2: 9658 1.12 pgoyette p = "const struct itimerspec *"; 9659 1.12 pgoyette break; 9660 1.12 pgoyette case 3: 9661 1.12 pgoyette p = "struct itimerspec *"; 9662 1.12 pgoyette break; 9663 1.12 pgoyette default: 9664 1.12 pgoyette break; 9665 1.12 pgoyette }; 9666 1.12 pgoyette break; 9667 1.12 pgoyette /* sys___timer_gettime50 */ 9668 1.12 pgoyette case 447: 9669 1.12 pgoyette switch(ndx) { 9670 1.12 pgoyette case 0: 9671 1.12 pgoyette p = "timer_t"; 9672 1.12 pgoyette break; 9673 1.12 pgoyette case 1: 9674 1.12 pgoyette p = "struct itimerspec *"; 9675 1.12 pgoyette break; 9676 1.12 pgoyette default: 9677 1.12 pgoyette break; 9678 1.12 pgoyette }; 9679 1.12 pgoyette break; 9680 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT) 9681 1.12 pgoyette /* sys___ntp_gettime50 */ 9682 1.12 pgoyette case 448: 9683 1.12 pgoyette switch(ndx) { 9684 1.12 pgoyette case 0: 9685 1.12 pgoyette p = "struct ntptimeval *"; 9686 1.12 pgoyette break; 9687 1.12 pgoyette default: 9688 1.12 pgoyette break; 9689 1.12 pgoyette }; 9690 1.12 pgoyette break; 9691 1.12 pgoyette #else 9692 1.12 pgoyette #endif 9693 1.12 pgoyette /* sys___wait450 */ 9694 1.12 pgoyette case 449: 9695 1.12 pgoyette switch(ndx) { 9696 1.12 pgoyette case 0: 9697 1.12 pgoyette p = "pid_t"; 9698 1.12 pgoyette break; 9699 1.12 pgoyette case 1: 9700 1.12 pgoyette p = "int *"; 9701 1.12 pgoyette break; 9702 1.12 pgoyette case 2: 9703 1.12 pgoyette p = "int"; 9704 1.12 pgoyette break; 9705 1.12 pgoyette case 3: 9706 1.12 pgoyette p = "struct rusage *"; 9707 1.12 pgoyette break; 9708 1.12 pgoyette default: 9709 1.12 pgoyette break; 9710 1.12 pgoyette }; 9711 1.12 pgoyette break; 9712 1.12 pgoyette /* sys___mknod50 */ 9713 1.12 pgoyette case 450: 9714 1.12 pgoyette switch(ndx) { 9715 1.12 pgoyette case 0: 9716 1.12 pgoyette p = "const char *"; 9717 1.12 pgoyette break; 9718 1.12 pgoyette case 1: 9719 1.12 pgoyette p = "mode_t"; 9720 1.12 pgoyette break; 9721 1.12 pgoyette case 2: 9722 1.12 pgoyette p = "dev_t"; 9723 1.12 pgoyette break; 9724 1.12 pgoyette default: 9725 1.12 pgoyette break; 9726 1.12 pgoyette }; 9727 1.12 pgoyette break; 9728 1.12 pgoyette /* sys___fhstat50 */ 9729 1.12 pgoyette case 451: 9730 1.12 pgoyette switch(ndx) { 9731 1.12 pgoyette case 0: 9732 1.12 pgoyette p = "const void *"; 9733 1.12 pgoyette break; 9734 1.12 pgoyette case 1: 9735 1.12 pgoyette p = "size_t"; 9736 1.12 pgoyette break; 9737 1.12 pgoyette case 2: 9738 1.12 pgoyette p = "struct stat *"; 9739 1.12 pgoyette break; 9740 1.12 pgoyette default: 9741 1.12 pgoyette break; 9742 1.12 pgoyette }; 9743 1.12 pgoyette break; 9744 1.12 pgoyette /* sys_pipe2 */ 9745 1.12 pgoyette case 453: 9746 1.12 pgoyette switch(ndx) { 9747 1.12 pgoyette case 0: 9748 1.12 pgoyette p = "int *"; 9749 1.12 pgoyette break; 9750 1.12 pgoyette case 1: 9751 1.12 pgoyette p = "int"; 9752 1.12 pgoyette break; 9753 1.12 pgoyette default: 9754 1.12 pgoyette break; 9755 1.12 pgoyette }; 9756 1.12 pgoyette break; 9757 1.12 pgoyette /* sys_dup3 */ 9758 1.12 pgoyette case 454: 9759 1.12 pgoyette switch(ndx) { 9760 1.12 pgoyette case 0: 9761 1.12 pgoyette p = "int"; 9762 1.12 pgoyette break; 9763 1.12 pgoyette case 1: 9764 1.12 pgoyette p = "int"; 9765 1.12 pgoyette break; 9766 1.12 pgoyette case 2: 9767 1.12 pgoyette p = "int"; 9768 1.12 pgoyette break; 9769 1.12 pgoyette default: 9770 1.12 pgoyette break; 9771 1.12 pgoyette }; 9772 1.12 pgoyette break; 9773 1.12 pgoyette /* sys_kqueue1 */ 9774 1.12 pgoyette case 455: 9775 1.12 pgoyette switch(ndx) { 9776 1.12 pgoyette case 0: 9777 1.12 pgoyette p = "int"; 9778 1.12 pgoyette break; 9779 1.12 pgoyette default: 9780 1.12 pgoyette break; 9781 1.12 pgoyette }; 9782 1.12 pgoyette break; 9783 1.12 pgoyette /* sys_paccept */ 9784 1.12 pgoyette case 456: 9785 1.12 pgoyette switch(ndx) { 9786 1.12 pgoyette case 0: 9787 1.12 pgoyette p = "int"; 9788 1.12 pgoyette break; 9789 1.12 pgoyette case 1: 9790 1.12 pgoyette p = "struct sockaddr *"; 9791 1.12 pgoyette break; 9792 1.12 pgoyette case 2: 9793 1.12 pgoyette p = "socklen_t *"; 9794 1.12 pgoyette break; 9795 1.12 pgoyette case 3: 9796 1.12 pgoyette p = "const sigset_t *"; 9797 1.12 pgoyette break; 9798 1.12 pgoyette case 4: 9799 1.12 pgoyette p = "int"; 9800 1.12 pgoyette break; 9801 1.12 pgoyette default: 9802 1.12 pgoyette break; 9803 1.12 pgoyette }; 9804 1.12 pgoyette break; 9805 1.12 pgoyette /* sys_linkat */ 9806 1.12 pgoyette case 457: 9807 1.12 pgoyette switch(ndx) { 9808 1.12 pgoyette case 0: 9809 1.12 pgoyette p = "int"; 9810 1.12 pgoyette break; 9811 1.12 pgoyette case 1: 9812 1.12 pgoyette p = "const char *"; 9813 1.12 pgoyette break; 9814 1.12 pgoyette case 2: 9815 1.12 pgoyette p = "int"; 9816 1.12 pgoyette break; 9817 1.12 pgoyette case 3: 9818 1.12 pgoyette p = "const char *"; 9819 1.12 pgoyette break; 9820 1.12 pgoyette case 4: 9821 1.12 pgoyette p = "int"; 9822 1.12 pgoyette break; 9823 1.12 pgoyette default: 9824 1.12 pgoyette break; 9825 1.12 pgoyette }; 9826 1.12 pgoyette break; 9827 1.12 pgoyette /* sys_renameat */ 9828 1.12 pgoyette case 458: 9829 1.12 pgoyette switch(ndx) { 9830 1.12 pgoyette case 0: 9831 1.12 pgoyette p = "int"; 9832 1.12 pgoyette break; 9833 1.12 pgoyette case 1: 9834 1.12 pgoyette p = "const char *"; 9835 1.12 pgoyette break; 9836 1.12 pgoyette case 2: 9837 1.12 pgoyette p = "int"; 9838 1.12 pgoyette break; 9839 1.12 pgoyette case 3: 9840 1.12 pgoyette p = "const char *"; 9841 1.12 pgoyette break; 9842 1.12 pgoyette default: 9843 1.12 pgoyette break; 9844 1.12 pgoyette }; 9845 1.12 pgoyette break; 9846 1.12 pgoyette /* sys_mkfifoat */ 9847 1.12 pgoyette case 459: 9848 1.12 pgoyette switch(ndx) { 9849 1.12 pgoyette case 0: 9850 1.12 pgoyette p = "int"; 9851 1.12 pgoyette break; 9852 1.12 pgoyette case 1: 9853 1.12 pgoyette p = "const char *"; 9854 1.12 pgoyette break; 9855 1.12 pgoyette case 2: 9856 1.12 pgoyette p = "mode_t"; 9857 1.12 pgoyette break; 9858 1.12 pgoyette default: 9859 1.12 pgoyette break; 9860 1.12 pgoyette }; 9861 1.12 pgoyette break; 9862 1.12 pgoyette /* sys_mknodat */ 9863 1.12 pgoyette case 460: 9864 1.12 pgoyette switch(ndx) { 9865 1.12 pgoyette case 0: 9866 1.12 pgoyette p = "int"; 9867 1.12 pgoyette break; 9868 1.12 pgoyette case 1: 9869 1.12 pgoyette p = "const char *"; 9870 1.12 pgoyette break; 9871 1.12 pgoyette case 2: 9872 1.12 pgoyette p = "mode_t"; 9873 1.12 pgoyette break; 9874 1.12 pgoyette case 3: 9875 1.12 pgoyette p = "int"; 9876 1.12 pgoyette break; 9877 1.12 pgoyette case 4: 9878 1.12 pgoyette p = "dev_t"; 9879 1.12 pgoyette break; 9880 1.12 pgoyette default: 9881 1.12 pgoyette break; 9882 1.12 pgoyette }; 9883 1.12 pgoyette break; 9884 1.12 pgoyette /* sys_mkdirat */ 9885 1.12 pgoyette case 461: 9886 1.12 pgoyette switch(ndx) { 9887 1.12 pgoyette case 0: 9888 1.12 pgoyette p = "int"; 9889 1.12 pgoyette break; 9890 1.12 pgoyette case 1: 9891 1.12 pgoyette p = "const char *"; 9892 1.12 pgoyette break; 9893 1.12 pgoyette case 2: 9894 1.12 pgoyette p = "mode_t"; 9895 1.12 pgoyette break; 9896 1.12 pgoyette default: 9897 1.12 pgoyette break; 9898 1.12 pgoyette }; 9899 1.12 pgoyette break; 9900 1.12 pgoyette /* sys_faccessat */ 9901 1.12 pgoyette case 462: 9902 1.12 pgoyette switch(ndx) { 9903 1.12 pgoyette case 0: 9904 1.12 pgoyette p = "int"; 9905 1.12 pgoyette break; 9906 1.12 pgoyette case 1: 9907 1.12 pgoyette p = "const char *"; 9908 1.12 pgoyette break; 9909 1.12 pgoyette case 2: 9910 1.12 pgoyette p = "int"; 9911 1.12 pgoyette break; 9912 1.12 pgoyette case 3: 9913 1.12 pgoyette p = "int"; 9914 1.12 pgoyette break; 9915 1.12 pgoyette default: 9916 1.12 pgoyette break; 9917 1.12 pgoyette }; 9918 1.12 pgoyette break; 9919 1.12 pgoyette /* sys_fchmodat */ 9920 1.12 pgoyette case 463: 9921 1.12 pgoyette switch(ndx) { 9922 1.12 pgoyette case 0: 9923 1.12 pgoyette p = "int"; 9924 1.12 pgoyette break; 9925 1.12 pgoyette case 1: 9926 1.12 pgoyette p = "const char *"; 9927 1.12 pgoyette break; 9928 1.12 pgoyette case 2: 9929 1.12 pgoyette p = "mode_t"; 9930 1.12 pgoyette break; 9931 1.12 pgoyette case 3: 9932 1.12 pgoyette p = "int"; 9933 1.12 pgoyette break; 9934 1.12 pgoyette default: 9935 1.12 pgoyette break; 9936 1.12 pgoyette }; 9937 1.12 pgoyette break; 9938 1.12 pgoyette /* sys_fchownat */ 9939 1.12 pgoyette case 464: 9940 1.12 pgoyette switch(ndx) { 9941 1.12 pgoyette case 0: 9942 1.12 pgoyette p = "int"; 9943 1.12 pgoyette break; 9944 1.12 pgoyette case 1: 9945 1.12 pgoyette p = "const char *"; 9946 1.12 pgoyette break; 9947 1.12 pgoyette case 2: 9948 1.12 pgoyette p = "uid_t"; 9949 1.12 pgoyette break; 9950 1.12 pgoyette case 3: 9951 1.12 pgoyette p = "gid_t"; 9952 1.12 pgoyette break; 9953 1.12 pgoyette case 4: 9954 1.12 pgoyette p = "int"; 9955 1.12 pgoyette break; 9956 1.12 pgoyette default: 9957 1.12 pgoyette break; 9958 1.12 pgoyette }; 9959 1.12 pgoyette break; 9960 1.12 pgoyette /* sys_fexecve */ 9961 1.12 pgoyette case 465: 9962 1.12 pgoyette switch(ndx) { 9963 1.12 pgoyette case 0: 9964 1.12 pgoyette p = "int"; 9965 1.12 pgoyette break; 9966 1.12 pgoyette case 1: 9967 1.12 pgoyette p = "char *const *"; 9968 1.12 pgoyette break; 9969 1.12 pgoyette case 2: 9970 1.12 pgoyette p = "char *const *"; 9971 1.12 pgoyette break; 9972 1.12 pgoyette default: 9973 1.12 pgoyette break; 9974 1.12 pgoyette }; 9975 1.12 pgoyette break; 9976 1.12 pgoyette /* sys_fstatat */ 9977 1.12 pgoyette case 466: 9978 1.12 pgoyette switch(ndx) { 9979 1.12 pgoyette case 0: 9980 1.12 pgoyette p = "int"; 9981 1.12 pgoyette break; 9982 1.12 pgoyette case 1: 9983 1.12 pgoyette p = "const char *"; 9984 1.12 pgoyette break; 9985 1.12 pgoyette case 2: 9986 1.12 pgoyette p = "struct stat *"; 9987 1.12 pgoyette break; 9988 1.12 pgoyette case 3: 9989 1.12 pgoyette p = "int"; 9990 1.12 pgoyette break; 9991 1.12 pgoyette default: 9992 1.12 pgoyette break; 9993 1.12 pgoyette }; 9994 1.12 pgoyette break; 9995 1.12 pgoyette /* sys_utimensat */ 9996 1.12 pgoyette case 467: 9997 1.12 pgoyette switch(ndx) { 9998 1.12 pgoyette case 0: 9999 1.12 pgoyette p = "int"; 10000 1.12 pgoyette break; 10001 1.12 pgoyette case 1: 10002 1.12 pgoyette p = "const char *"; 10003 1.12 pgoyette break; 10004 1.12 pgoyette case 2: 10005 1.12 pgoyette p = "const struct timespec *"; 10006 1.12 pgoyette break; 10007 1.12 pgoyette case 3: 10008 1.12 pgoyette p = "int"; 10009 1.12 pgoyette break; 10010 1.12 pgoyette default: 10011 1.12 pgoyette break; 10012 1.12 pgoyette }; 10013 1.12 pgoyette break; 10014 1.12 pgoyette /* sys_openat */ 10015 1.12 pgoyette case 468: 10016 1.12 pgoyette switch(ndx) { 10017 1.12 pgoyette case 0: 10018 1.12 pgoyette p = "int"; 10019 1.12 pgoyette break; 10020 1.12 pgoyette case 1: 10021 1.12 pgoyette p = "const char *"; 10022 1.12 pgoyette break; 10023 1.12 pgoyette case 2: 10024 1.12 pgoyette p = "int"; 10025 1.12 pgoyette break; 10026 1.12 pgoyette case 3: 10027 1.12 pgoyette p = "mode_t"; 10028 1.12 pgoyette break; 10029 1.12 pgoyette default: 10030 1.12 pgoyette break; 10031 1.12 pgoyette }; 10032 1.12 pgoyette break; 10033 1.12 pgoyette /* sys_readlinkat */ 10034 1.12 pgoyette case 469: 10035 1.12 pgoyette switch(ndx) { 10036 1.12 pgoyette case 0: 10037 1.12 pgoyette p = "int"; 10038 1.12 pgoyette break; 10039 1.12 pgoyette case 1: 10040 1.12 pgoyette p = "const char *"; 10041 1.12 pgoyette break; 10042 1.12 pgoyette case 2: 10043 1.12 pgoyette p = "char *"; 10044 1.12 pgoyette break; 10045 1.12 pgoyette case 3: 10046 1.12 pgoyette p = "size_t"; 10047 1.12 pgoyette break; 10048 1.12 pgoyette default: 10049 1.12 pgoyette break; 10050 1.12 pgoyette }; 10051 1.12 pgoyette break; 10052 1.12 pgoyette /* sys_symlinkat */ 10053 1.12 pgoyette case 470: 10054 1.12 pgoyette switch(ndx) { 10055 1.12 pgoyette case 0: 10056 1.12 pgoyette p = "const char *"; 10057 1.12 pgoyette break; 10058 1.12 pgoyette case 1: 10059 1.12 pgoyette p = "int"; 10060 1.12 pgoyette break; 10061 1.12 pgoyette case 2: 10062 1.12 pgoyette p = "const char *"; 10063 1.12 pgoyette break; 10064 1.12 pgoyette default: 10065 1.12 pgoyette break; 10066 1.12 pgoyette }; 10067 1.12 pgoyette break; 10068 1.12 pgoyette /* sys_unlinkat */ 10069 1.12 pgoyette case 471: 10070 1.12 pgoyette switch(ndx) { 10071 1.12 pgoyette case 0: 10072 1.12 pgoyette p = "int"; 10073 1.12 pgoyette break; 10074 1.12 pgoyette case 1: 10075 1.12 pgoyette p = "const char *"; 10076 1.12 pgoyette break; 10077 1.12 pgoyette case 2: 10078 1.12 pgoyette p = "int"; 10079 1.12 pgoyette break; 10080 1.12 pgoyette default: 10081 1.12 pgoyette break; 10082 1.12 pgoyette }; 10083 1.12 pgoyette break; 10084 1.12 pgoyette /* sys_futimens */ 10085 1.12 pgoyette case 472: 10086 1.12 pgoyette switch(ndx) { 10087 1.12 pgoyette case 0: 10088 1.12 pgoyette p = "int"; 10089 1.12 pgoyette break; 10090 1.12 pgoyette case 1: 10091 1.12 pgoyette p = "const struct timespec *"; 10092 1.12 pgoyette break; 10093 1.12 pgoyette default: 10094 1.12 pgoyette break; 10095 1.12 pgoyette }; 10096 1.12 pgoyette break; 10097 1.12 pgoyette /* sys___quotactl */ 10098 1.12 pgoyette case 473: 10099 1.12 pgoyette switch(ndx) { 10100 1.12 pgoyette case 0: 10101 1.12 pgoyette p = "const char *"; 10102 1.12 pgoyette break; 10103 1.12 pgoyette case 1: 10104 1.12 pgoyette p = "struct quotactl_args *"; 10105 1.12 pgoyette break; 10106 1.12 pgoyette default: 10107 1.12 pgoyette break; 10108 1.12 pgoyette }; 10109 1.12 pgoyette break; 10110 1.12 pgoyette /* sys_posix_spawn */ 10111 1.12 pgoyette case 474: 10112 1.12 pgoyette switch(ndx) { 10113 1.12 pgoyette case 0: 10114 1.12 pgoyette p = "pid_t *"; 10115 1.12 pgoyette break; 10116 1.12 pgoyette case 1: 10117 1.12 pgoyette p = "const char *"; 10118 1.12 pgoyette break; 10119 1.12 pgoyette case 2: 10120 1.12 pgoyette p = "const struct posix_spawn_file_actions *"; 10121 1.12 pgoyette break; 10122 1.12 pgoyette case 3: 10123 1.12 pgoyette p = "const struct posix_spawnattr *"; 10124 1.12 pgoyette break; 10125 1.12 pgoyette case 4: 10126 1.12 pgoyette p = "char *const *"; 10127 1.12 pgoyette break; 10128 1.12 pgoyette case 5: 10129 1.12 pgoyette p = "char *const *"; 10130 1.12 pgoyette break; 10131 1.12 pgoyette default: 10132 1.12 pgoyette break; 10133 1.12 pgoyette }; 10134 1.12 pgoyette break; 10135 1.12 pgoyette /* sys_recvmmsg */ 10136 1.12 pgoyette case 475: 10137 1.12 pgoyette switch(ndx) { 10138 1.12 pgoyette case 0: 10139 1.12 pgoyette p = "int"; 10140 1.12 pgoyette break; 10141 1.12 pgoyette case 1: 10142 1.12 pgoyette p = "struct mmsghdr *"; 10143 1.12 pgoyette break; 10144 1.12 pgoyette case 2: 10145 1.12 pgoyette p = "unsigned int"; 10146 1.12 pgoyette break; 10147 1.12 pgoyette case 3: 10148 1.12 pgoyette p = "unsigned int"; 10149 1.12 pgoyette break; 10150 1.12 pgoyette case 4: 10151 1.12 pgoyette p = "struct timespec *"; 10152 1.12 pgoyette break; 10153 1.12 pgoyette default: 10154 1.12 pgoyette break; 10155 1.12 pgoyette }; 10156 1.12 pgoyette break; 10157 1.12 pgoyette /* sys_sendmmsg */ 10158 1.12 pgoyette case 476: 10159 1.12 pgoyette switch(ndx) { 10160 1.12 pgoyette case 0: 10161 1.12 pgoyette p = "int"; 10162 1.12 pgoyette break; 10163 1.12 pgoyette case 1: 10164 1.12 pgoyette p = "struct mmsghdr *"; 10165 1.12 pgoyette break; 10166 1.12 pgoyette case 2: 10167 1.12 pgoyette p = "unsigned int"; 10168 1.12 pgoyette break; 10169 1.12 pgoyette case 3: 10170 1.12 pgoyette p = "unsigned int"; 10171 1.12 pgoyette break; 10172 1.12 pgoyette default: 10173 1.12 pgoyette break; 10174 1.12 pgoyette }; 10175 1.12 pgoyette break; 10176 1.12 pgoyette /* sys_clock_nanosleep */ 10177 1.12 pgoyette case 477: 10178 1.12 pgoyette switch(ndx) { 10179 1.12 pgoyette case 0: 10180 1.12 pgoyette p = "clockid_t"; 10181 1.12 pgoyette break; 10182 1.12 pgoyette case 1: 10183 1.12 pgoyette p = "int"; 10184 1.12 pgoyette break; 10185 1.12 pgoyette case 2: 10186 1.12 pgoyette p = "const struct timespec *"; 10187 1.12 pgoyette break; 10188 1.12 pgoyette case 3: 10189 1.12 pgoyette p = "struct timespec *"; 10190 1.12 pgoyette break; 10191 1.12 pgoyette default: 10192 1.12 pgoyette break; 10193 1.12 pgoyette }; 10194 1.12 pgoyette break; 10195 1.12 pgoyette /* sys____lwp_park60 */ 10196 1.12 pgoyette case 478: 10197 1.12 pgoyette switch(ndx) { 10198 1.12 pgoyette case 0: 10199 1.12 pgoyette p = "clockid_t"; 10200 1.12 pgoyette break; 10201 1.12 pgoyette case 1: 10202 1.12 pgoyette p = "int"; 10203 1.12 pgoyette break; 10204 1.12 pgoyette case 2: 10205 1.26 kamil p = "struct timespec *"; 10206 1.12 pgoyette break; 10207 1.12 pgoyette case 3: 10208 1.12 pgoyette p = "lwpid_t"; 10209 1.12 pgoyette break; 10210 1.12 pgoyette case 4: 10211 1.12 pgoyette p = "const void *"; 10212 1.12 pgoyette break; 10213 1.12 pgoyette case 5: 10214 1.12 pgoyette p = "const void *"; 10215 1.12 pgoyette break; 10216 1.12 pgoyette default: 10217 1.12 pgoyette break; 10218 1.12 pgoyette }; 10219 1.12 pgoyette break; 10220 1.12 pgoyette /* sys_posix_fallocate */ 10221 1.12 pgoyette case 479: 10222 1.12 pgoyette switch(ndx) { 10223 1.12 pgoyette case 0: 10224 1.12 pgoyette p = "int"; 10225 1.12 pgoyette break; 10226 1.12 pgoyette case 1: 10227 1.12 pgoyette p = "int"; 10228 1.12 pgoyette break; 10229 1.12 pgoyette case 2: 10230 1.12 pgoyette p = "off_t"; 10231 1.12 pgoyette break; 10232 1.12 pgoyette case 3: 10233 1.12 pgoyette p = "off_t"; 10234 1.12 pgoyette break; 10235 1.12 pgoyette default: 10236 1.12 pgoyette break; 10237 1.12 pgoyette }; 10238 1.12 pgoyette break; 10239 1.12 pgoyette /* sys_fdiscard */ 10240 1.12 pgoyette case 480: 10241 1.12 pgoyette switch(ndx) { 10242 1.12 pgoyette case 0: 10243 1.12 pgoyette p = "int"; 10244 1.12 pgoyette break; 10245 1.12 pgoyette case 1: 10246 1.12 pgoyette p = "int"; 10247 1.12 pgoyette break; 10248 1.12 pgoyette case 2: 10249 1.12 pgoyette p = "off_t"; 10250 1.12 pgoyette break; 10251 1.12 pgoyette case 3: 10252 1.12 pgoyette p = "off_t"; 10253 1.12 pgoyette break; 10254 1.12 pgoyette default: 10255 1.12 pgoyette break; 10256 1.12 pgoyette }; 10257 1.12 pgoyette break; 10258 1.16 christos /* sys_wait6 */ 10259 1.16 christos case 481: 10260 1.16 christos switch(ndx) { 10261 1.16 christos case 0: 10262 1.16 christos p = "idtype_t"; 10263 1.16 christos break; 10264 1.16 christos case 1: 10265 1.16 christos p = "id_t"; 10266 1.16 christos break; 10267 1.16 christos case 2: 10268 1.16 christos p = "int *"; 10269 1.16 christos break; 10270 1.16 christos case 3: 10271 1.16 christos p = "int"; 10272 1.16 christos break; 10273 1.16 christos case 4: 10274 1.16 christos p = "struct wrusage *"; 10275 1.16 christos break; 10276 1.16 christos case 5: 10277 1.16 christos p = "siginfo_t *"; 10278 1.16 christos break; 10279 1.16 christos default: 10280 1.16 christos break; 10281 1.16 christos }; 10282 1.16 christos break; 10283 1.19 christos /* sys_clock_getcpuclockid2 */ 10284 1.19 christos case 482: 10285 1.19 christos switch(ndx) { 10286 1.19 christos case 0: 10287 1.19 christos p = "idtype_t"; 10288 1.19 christos break; 10289 1.19 christos case 1: 10290 1.19 christos p = "id_t"; 10291 1.19 christos break; 10292 1.19 christos case 2: 10293 1.19 christos p = "clockid_t *"; 10294 1.19 christos break; 10295 1.19 christos default: 10296 1.19 christos break; 10297 1.19 christos }; 10298 1.19 christos break; 10299 1.33 christos /* sys___getvfsstat90 */ 10300 1.33 christos case 483: 10301 1.33 christos switch(ndx) { 10302 1.33 christos case 0: 10303 1.33 christos p = "struct statvfs *"; 10304 1.33 christos break; 10305 1.33 christos case 1: 10306 1.33 christos p = "size_t"; 10307 1.33 christos break; 10308 1.33 christos case 2: 10309 1.33 christos p = "int"; 10310 1.33 christos break; 10311 1.33 christos default: 10312 1.33 christos break; 10313 1.33 christos }; 10314 1.33 christos break; 10315 1.33 christos /* sys___statvfs190 */ 10316 1.33 christos case 484: 10317 1.33 christos switch(ndx) { 10318 1.33 christos case 0: 10319 1.33 christos p = "const char *"; 10320 1.33 christos break; 10321 1.33 christos case 1: 10322 1.33 christos p = "struct statvfs *"; 10323 1.33 christos break; 10324 1.33 christos case 2: 10325 1.33 christos p = "int"; 10326 1.33 christos break; 10327 1.33 christos default: 10328 1.33 christos break; 10329 1.33 christos }; 10330 1.33 christos break; 10331 1.33 christos /* sys___fstatvfs190 */ 10332 1.33 christos case 485: 10333 1.33 christos switch(ndx) { 10334 1.33 christos case 0: 10335 1.33 christos p = "int"; 10336 1.33 christos break; 10337 1.33 christos case 1: 10338 1.33 christos p = "struct statvfs *"; 10339 1.33 christos break; 10340 1.33 christos case 2: 10341 1.33 christos p = "int"; 10342 1.33 christos break; 10343 1.33 christos default: 10344 1.33 christos break; 10345 1.33 christos }; 10346 1.33 christos break; 10347 1.33 christos /* sys___fhstatvfs190 */ 10348 1.33 christos case 486: 10349 1.33 christos switch(ndx) { 10350 1.33 christos case 0: 10351 1.33 christos p = "const void *"; 10352 1.33 christos break; 10353 1.33 christos case 1: 10354 1.33 christos p = "size_t"; 10355 1.33 christos break; 10356 1.33 christos case 2: 10357 1.33 christos p = "struct statvfs *"; 10358 1.33 christos break; 10359 1.33 christos case 3: 10360 1.33 christos p = "int"; 10361 1.33 christos break; 10362 1.33 christos default: 10363 1.33 christos break; 10364 1.33 christos }; 10365 1.33 christos break; 10366 1.39 christos /* sys___acl_get_link */ 10367 1.39 christos case 487: 10368 1.39 christos switch(ndx) { 10369 1.39 christos case 0: 10370 1.39 christos p = "const char *"; 10371 1.39 christos break; 10372 1.39 christos case 1: 10373 1.39 christos p = "acl_type_t"; 10374 1.39 christos break; 10375 1.39 christos case 2: 10376 1.39 christos p = "struct acl *"; 10377 1.39 christos break; 10378 1.39 christos default: 10379 1.39 christos break; 10380 1.39 christos }; 10381 1.39 christos break; 10382 1.39 christos /* sys___acl_set_link */ 10383 1.39 christos case 488: 10384 1.39 christos switch(ndx) { 10385 1.39 christos case 0: 10386 1.39 christos p = "const char *"; 10387 1.39 christos break; 10388 1.39 christos case 1: 10389 1.39 christos p = "acl_type_t"; 10390 1.39 christos break; 10391 1.39 christos case 2: 10392 1.39 christos p = "struct acl *"; 10393 1.39 christos break; 10394 1.39 christos default: 10395 1.39 christos break; 10396 1.39 christos }; 10397 1.39 christos break; 10398 1.39 christos /* sys___acl_delete_link */ 10399 1.39 christos case 489: 10400 1.39 christos switch(ndx) { 10401 1.39 christos case 0: 10402 1.39 christos p = "const char *"; 10403 1.39 christos break; 10404 1.39 christos case 1: 10405 1.39 christos p = "acl_type_t"; 10406 1.39 christos break; 10407 1.39 christos default: 10408 1.39 christos break; 10409 1.39 christos }; 10410 1.39 christos break; 10411 1.39 christos /* sys___acl_aclcheck_link */ 10412 1.39 christos case 490: 10413 1.39 christos switch(ndx) { 10414 1.39 christos case 0: 10415 1.39 christos p = "const char *"; 10416 1.39 christos break; 10417 1.39 christos case 1: 10418 1.39 christos p = "acl_type_t"; 10419 1.39 christos break; 10420 1.39 christos case 2: 10421 1.39 christos p = "struct acl *"; 10422 1.39 christos break; 10423 1.39 christos default: 10424 1.39 christos break; 10425 1.39 christos }; 10426 1.39 christos break; 10427 1.39 christos /* sys___acl_get_file */ 10428 1.39 christos case 491: 10429 1.39 christos switch(ndx) { 10430 1.39 christos case 0: 10431 1.39 christos p = "const char *"; 10432 1.39 christos break; 10433 1.39 christos case 1: 10434 1.39 christos p = "acl_type_t"; 10435 1.39 christos break; 10436 1.39 christos case 2: 10437 1.39 christos p = "struct acl *"; 10438 1.39 christos break; 10439 1.39 christos default: 10440 1.39 christos break; 10441 1.39 christos }; 10442 1.39 christos break; 10443 1.39 christos /* sys___acl_set_file */ 10444 1.39 christos case 492: 10445 1.39 christos switch(ndx) { 10446 1.39 christos case 0: 10447 1.39 christos p = "const char *"; 10448 1.39 christos break; 10449 1.39 christos case 1: 10450 1.39 christos p = "acl_type_t"; 10451 1.39 christos break; 10452 1.39 christos case 2: 10453 1.39 christos p = "struct acl *"; 10454 1.39 christos break; 10455 1.39 christos default: 10456 1.39 christos break; 10457 1.39 christos }; 10458 1.39 christos break; 10459 1.39 christos /* sys___acl_get_fd */ 10460 1.39 christos case 493: 10461 1.39 christos switch(ndx) { 10462 1.39 christos case 0: 10463 1.39 christos p = "int"; 10464 1.39 christos break; 10465 1.39 christos case 1: 10466 1.39 christos p = "acl_type_t"; 10467 1.39 christos break; 10468 1.39 christos case 2: 10469 1.39 christos p = "struct acl *"; 10470 1.39 christos break; 10471 1.39 christos default: 10472 1.39 christos break; 10473 1.39 christos }; 10474 1.39 christos break; 10475 1.39 christos /* sys___acl_set_fd */ 10476 1.39 christos case 494: 10477 1.39 christos switch(ndx) { 10478 1.39 christos case 0: 10479 1.39 christos p = "int"; 10480 1.39 christos break; 10481 1.39 christos case 1: 10482 1.39 christos p = "acl_type_t"; 10483 1.39 christos break; 10484 1.39 christos case 2: 10485 1.39 christos p = "struct acl *"; 10486 1.39 christos break; 10487 1.39 christos default: 10488 1.39 christos break; 10489 1.39 christos }; 10490 1.39 christos break; 10491 1.39 christos /* sys___acl_delete_file */ 10492 1.39 christos case 495: 10493 1.39 christos switch(ndx) { 10494 1.39 christos case 0: 10495 1.39 christos p = "const char *"; 10496 1.39 christos break; 10497 1.39 christos case 1: 10498 1.39 christos p = "acl_type_t"; 10499 1.39 christos break; 10500 1.39 christos default: 10501 1.39 christos break; 10502 1.39 christos }; 10503 1.39 christos break; 10504 1.39 christos /* sys___acl_delete_fd */ 10505 1.39 christos case 496: 10506 1.39 christos switch(ndx) { 10507 1.39 christos case 0: 10508 1.39 christos p = "int"; 10509 1.39 christos break; 10510 1.39 christos case 1: 10511 1.39 christos p = "acl_type_t"; 10512 1.39 christos break; 10513 1.39 christos default: 10514 1.39 christos break; 10515 1.39 christos }; 10516 1.39 christos break; 10517 1.39 christos /* sys___acl_aclcheck_file */ 10518 1.39 christos case 497: 10519 1.39 christos switch(ndx) { 10520 1.39 christos case 0: 10521 1.39 christos p = "const char *"; 10522 1.39 christos break; 10523 1.39 christos case 1: 10524 1.39 christos p = "acl_type_t"; 10525 1.39 christos break; 10526 1.39 christos case 2: 10527 1.39 christos p = "struct acl *"; 10528 1.39 christos break; 10529 1.39 christos default: 10530 1.39 christos break; 10531 1.39 christos }; 10532 1.39 christos break; 10533 1.39 christos /* sys___acl_aclcheck_fd */ 10534 1.39 christos case 498: 10535 1.39 christos switch(ndx) { 10536 1.39 christos case 0: 10537 1.39 christos p = "int"; 10538 1.39 christos break; 10539 1.39 christos case 1: 10540 1.39 christos p = "acl_type_t"; 10541 1.39 christos break; 10542 1.39 christos case 2: 10543 1.39 christos p = "struct acl *"; 10544 1.39 christos break; 10545 1.39 christos default: 10546 1.39 christos break; 10547 1.39 christos }; 10548 1.39 christos break; 10549 1.39 christos /* sys_lpathconf */ 10550 1.39 christos case 499: 10551 1.39 christos switch(ndx) { 10552 1.39 christos case 0: 10553 1.39 christos p = "const char *"; 10554 1.39 christos break; 10555 1.39 christos case 1: 10556 1.39 christos p = "int"; 10557 1.39 christos break; 10558 1.39 christos default: 10559 1.39 christos break; 10560 1.39 christos }; 10561 1.39 christos break; 10562 1.50 christos /* sys_memfd_create */ 10563 1.50 christos case 500: 10564 1.50 christos switch(ndx) { 10565 1.50 christos case 0: 10566 1.50 christos p = "const char *"; 10567 1.50 christos break; 10568 1.50 christos case 1: 10569 1.50 christos p = "unsigned int"; 10570 1.50 christos break; 10571 1.50 christos default: 10572 1.50 christos break; 10573 1.50 christos }; 10574 1.50 christos break; 10575 1.51 christos /* sys___kevent100 */ 10576 1.51 christos case 501: 10577 1.51 christos switch(ndx) { 10578 1.51 christos case 0: 10579 1.51 christos p = "int"; 10580 1.51 christos break; 10581 1.51 christos case 1: 10582 1.51 christos p = "const struct kevent *"; 10583 1.51 christos break; 10584 1.51 christos case 2: 10585 1.51 christos p = "size_t"; 10586 1.51 christos break; 10587 1.51 christos case 3: 10588 1.51 christos p = "struct kevent *"; 10589 1.51 christos break; 10590 1.51 christos case 4: 10591 1.51 christos p = "size_t"; 10592 1.51 christos break; 10593 1.51 christos case 5: 10594 1.51 christos p = "const struct timespec *"; 10595 1.51 christos break; 10596 1.51 christos default: 10597 1.51 christos break; 10598 1.51 christos }; 10599 1.51 christos break; 10600 1.51 christos /* sys_epoll_create1 */ 10601 1.51 christos case 502: 10602 1.51 christos switch(ndx) { 10603 1.51 christos case 0: 10604 1.51 christos p = "int"; 10605 1.51 christos break; 10606 1.51 christos default: 10607 1.51 christos break; 10608 1.51 christos }; 10609 1.51 christos break; 10610 1.51 christos /* sys_epoll_ctl */ 10611 1.51 christos case 503: 10612 1.51 christos switch(ndx) { 10613 1.51 christos case 0: 10614 1.51 christos p = "int"; 10615 1.51 christos break; 10616 1.51 christos case 1: 10617 1.51 christos p = "int"; 10618 1.51 christos break; 10619 1.51 christos case 2: 10620 1.51 christos p = "int"; 10621 1.51 christos break; 10622 1.51 christos case 3: 10623 1.51 christos p = "struct epoll_event *"; 10624 1.51 christos break; 10625 1.51 christos default: 10626 1.51 christos break; 10627 1.51 christos }; 10628 1.51 christos break; 10629 1.51 christos /* sys_epoll_pwait2 */ 10630 1.51 christos case 504: 10631 1.51 christos switch(ndx) { 10632 1.51 christos case 0: 10633 1.51 christos p = "int"; 10634 1.51 christos break; 10635 1.51 christos case 1: 10636 1.51 christos p = "struct epoll_event *"; 10637 1.51 christos break; 10638 1.51 christos case 2: 10639 1.51 christos p = "int"; 10640 1.51 christos break; 10641 1.51 christos case 3: 10642 1.51 christos p = "const struct timespec *"; 10643 1.51 christos break; 10644 1.51 christos case 4: 10645 1.51 christos p = "const sigset_t *"; 10646 1.51 christos break; 10647 1.51 christos default: 10648 1.51 christos break; 10649 1.51 christos }; 10650 1.51 christos break; 10651 1.53 christos /* sys___dup3100 */ 10652 1.52 christos case 505: 10653 1.52 christos switch(ndx) { 10654 1.52 christos case 0: 10655 1.52 christos p = "int"; 10656 1.52 christos break; 10657 1.52 christos case 1: 10658 1.52 christos p = "int"; 10659 1.52 christos break; 10660 1.52 christos case 2: 10661 1.52 christos p = "int"; 10662 1.52 christos break; 10663 1.52 christos default: 10664 1.52 christos break; 10665 1.52 christos }; 10666 1.52 christos break; 10667 1.54 christos /* sys_semtimedop */ 10668 1.54 christos case 506: 10669 1.54 christos switch(ndx) { 10670 1.54 christos case 0: 10671 1.54 christos p = "int"; 10672 1.54 christos break; 10673 1.54 christos case 1: 10674 1.54 christos p = "struct sembuf *"; 10675 1.54 christos break; 10676 1.54 christos case 2: 10677 1.54 christos p = "size_t"; 10678 1.54 christos break; 10679 1.54 christos case 3: 10680 1.54 christos p = "struct timespec *"; 10681 1.54 christos break; 10682 1.54 christos default: 10683 1.54 christos break; 10684 1.54 christos }; 10685 1.54 christos break; 10686 1.12 pgoyette default: 10687 1.12 pgoyette break; 10688 1.12 pgoyette }; 10689 1.12 pgoyette if (p != NULL) 10690 1.12 pgoyette strlcpy(desc, p, descsz); 10691 1.12 pgoyette } 10692 1.12 pgoyette static void 10693 1.12 pgoyette systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz) 10694 1.12 pgoyette { 10695 1.12 pgoyette const char *p = NULL; 10696 1.12 pgoyette switch (sysnum) { 10697 1.12 pgoyette /* sys_syscall */ 10698 1.12 pgoyette case 0: 10699 1.12 pgoyette if (ndx == 0 || ndx == 1) 10700 1.12 pgoyette p = "int"; 10701 1.12 pgoyette break; 10702 1.12 pgoyette /* sys_exit */ 10703 1.12 pgoyette case 1: 10704 1.12 pgoyette if (ndx == 0 || ndx == 1) 10705 1.12 pgoyette p = "void"; 10706 1.12 pgoyette break; 10707 1.12 pgoyette /* sys_fork */ 10708 1.12 pgoyette case 2: 10709 1.12 pgoyette /* sys_read */ 10710 1.12 pgoyette case 3: 10711 1.12 pgoyette if (ndx == 0 || ndx == 1) 10712 1.12 pgoyette p = "ssize_t"; 10713 1.12 pgoyette break; 10714 1.12 pgoyette /* sys_write */ 10715 1.12 pgoyette case 4: 10716 1.12 pgoyette if (ndx == 0 || ndx == 1) 10717 1.12 pgoyette p = "ssize_t"; 10718 1.12 pgoyette break; 10719 1.12 pgoyette /* sys_open */ 10720 1.12 pgoyette case 5: 10721 1.12 pgoyette if (ndx == 0 || ndx == 1) 10722 1.12 pgoyette p = "int"; 10723 1.12 pgoyette break; 10724 1.12 pgoyette /* sys_close */ 10725 1.12 pgoyette case 6: 10726 1.12 pgoyette if (ndx == 0 || ndx == 1) 10727 1.12 pgoyette p = "int"; 10728 1.12 pgoyette break; 10729 1.12 pgoyette /* sys_wait4 */ 10730 1.12 pgoyette case 7: 10731 1.12 pgoyette if (ndx == 0 || ndx == 1) 10732 1.12 pgoyette p = "int"; 10733 1.12 pgoyette break; 10734 1.12 pgoyette /* sys_creat */ 10735 1.12 pgoyette case 8: 10736 1.12 pgoyette if (ndx == 0 || ndx == 1) 10737 1.12 pgoyette p = "int"; 10738 1.12 pgoyette break; 10739 1.12 pgoyette /* sys_link */ 10740 1.12 pgoyette case 9: 10741 1.12 pgoyette if (ndx == 0 || ndx == 1) 10742 1.12 pgoyette p = "int"; 10743 1.12 pgoyette break; 10744 1.12 pgoyette /* sys_unlink */ 10745 1.12 pgoyette case 10: 10746 1.12 pgoyette if (ndx == 0 || ndx == 1) 10747 1.12 pgoyette p = "int"; 10748 1.12 pgoyette break; 10749 1.12 pgoyette /* sys_chdir */ 10750 1.12 pgoyette case 12: 10751 1.12 pgoyette if (ndx == 0 || ndx == 1) 10752 1.12 pgoyette p = "int"; 10753 1.12 pgoyette break; 10754 1.12 pgoyette /* sys_fchdir */ 10755 1.12 pgoyette case 13: 10756 1.12 pgoyette if (ndx == 0 || ndx == 1) 10757 1.12 pgoyette p = "int"; 10758 1.12 pgoyette break; 10759 1.12 pgoyette /* sys_mknod */ 10760 1.12 pgoyette case 14: 10761 1.12 pgoyette if (ndx == 0 || ndx == 1) 10762 1.12 pgoyette p = "int"; 10763 1.12 pgoyette break; 10764 1.12 pgoyette /* sys_chmod */ 10765 1.12 pgoyette case 15: 10766 1.12 pgoyette if (ndx == 0 || ndx == 1) 10767 1.12 pgoyette p = "int"; 10768 1.12 pgoyette break; 10769 1.12 pgoyette /* sys_chown */ 10770 1.12 pgoyette case 16: 10771 1.12 pgoyette if (ndx == 0 || ndx == 1) 10772 1.12 pgoyette p = "int"; 10773 1.12 pgoyette break; 10774 1.12 pgoyette /* sys_obreak */ 10775 1.12 pgoyette case 17: 10776 1.12 pgoyette if (ndx == 0 || ndx == 1) 10777 1.12 pgoyette p = "int"; 10778 1.12 pgoyette break; 10779 1.12 pgoyette /* sys_getfsstat */ 10780 1.12 pgoyette case 18: 10781 1.12 pgoyette if (ndx == 0 || ndx == 1) 10782 1.12 pgoyette p = "int"; 10783 1.12 pgoyette break; 10784 1.12 pgoyette /* sys_lseek */ 10785 1.12 pgoyette case 19: 10786 1.12 pgoyette if (ndx == 0 || ndx == 1) 10787 1.12 pgoyette p = "long"; 10788 1.12 pgoyette break; 10789 1.12 pgoyette /* sys_getpid_with_ppid */ 10790 1.12 pgoyette case 20: 10791 1.12 pgoyette /* sys_mount */ 10792 1.12 pgoyette case 21: 10793 1.12 pgoyette if (ndx == 0 || ndx == 1) 10794 1.12 pgoyette p = "int"; 10795 1.12 pgoyette break; 10796 1.12 pgoyette /* sys_unmount */ 10797 1.12 pgoyette case 22: 10798 1.12 pgoyette if (ndx == 0 || ndx == 1) 10799 1.12 pgoyette p = "int"; 10800 1.12 pgoyette break; 10801 1.12 pgoyette /* sys_setuid */ 10802 1.12 pgoyette case 23: 10803 1.12 pgoyette if (ndx == 0 || ndx == 1) 10804 1.12 pgoyette p = "int"; 10805 1.12 pgoyette break; 10806 1.12 pgoyette /* sys_getuid_with_euid */ 10807 1.12 pgoyette case 24: 10808 1.12 pgoyette /* sys_geteuid */ 10809 1.12 pgoyette case 25: 10810 1.12 pgoyette /* sys_ptrace */ 10811 1.12 pgoyette case 26: 10812 1.12 pgoyette if (ndx == 0 || ndx == 1) 10813 1.12 pgoyette p = "int"; 10814 1.12 pgoyette break; 10815 1.12 pgoyette /* sys_recvmsg */ 10816 1.12 pgoyette case 27: 10817 1.12 pgoyette if (ndx == 0 || ndx == 1) 10818 1.12 pgoyette p = "ssize_t"; 10819 1.12 pgoyette break; 10820 1.12 pgoyette /* sys_sendmsg */ 10821 1.12 pgoyette case 28: 10822 1.12 pgoyette if (ndx == 0 || ndx == 1) 10823 1.12 pgoyette p = "ssize_t"; 10824 1.12 pgoyette break; 10825 1.12 pgoyette /* sys_recvfrom */ 10826 1.12 pgoyette case 29: 10827 1.12 pgoyette if (ndx == 0 || ndx == 1) 10828 1.12 pgoyette p = "ssize_t"; 10829 1.12 pgoyette break; 10830 1.12 pgoyette /* sys_accept */ 10831 1.12 pgoyette case 30: 10832 1.12 pgoyette if (ndx == 0 || ndx == 1) 10833 1.12 pgoyette p = "int"; 10834 1.12 pgoyette break; 10835 1.12 pgoyette /* sys_getpeername */ 10836 1.12 pgoyette case 31: 10837 1.12 pgoyette if (ndx == 0 || ndx == 1) 10838 1.12 pgoyette p = "int"; 10839 1.12 pgoyette break; 10840 1.12 pgoyette /* sys_getsockname */ 10841 1.12 pgoyette case 32: 10842 1.12 pgoyette if (ndx == 0 || ndx == 1) 10843 1.12 pgoyette p = "int"; 10844 1.12 pgoyette break; 10845 1.12 pgoyette /* sys_access */ 10846 1.12 pgoyette case 33: 10847 1.12 pgoyette if (ndx == 0 || ndx == 1) 10848 1.12 pgoyette p = "int"; 10849 1.12 pgoyette break; 10850 1.12 pgoyette /* sys_chflags */ 10851 1.12 pgoyette case 34: 10852 1.12 pgoyette if (ndx == 0 || ndx == 1) 10853 1.12 pgoyette p = "int"; 10854 1.12 pgoyette break; 10855 1.12 pgoyette /* sys_fchflags */ 10856 1.12 pgoyette case 35: 10857 1.12 pgoyette if (ndx == 0 || ndx == 1) 10858 1.12 pgoyette p = "int"; 10859 1.12 pgoyette break; 10860 1.12 pgoyette /* sys_sync */ 10861 1.12 pgoyette case 36: 10862 1.12 pgoyette /* sys_kill */ 10863 1.12 pgoyette case 37: 10864 1.12 pgoyette if (ndx == 0 || ndx == 1) 10865 1.12 pgoyette p = "int"; 10866 1.12 pgoyette break; 10867 1.12 pgoyette /* sys_stat */ 10868 1.12 pgoyette case 38: 10869 1.12 pgoyette if (ndx == 0 || ndx == 1) 10870 1.12 pgoyette p = "int"; 10871 1.12 pgoyette break; 10872 1.12 pgoyette /* sys_getppid */ 10873 1.12 pgoyette case 39: 10874 1.12 pgoyette /* sys_lstat */ 10875 1.12 pgoyette case 40: 10876 1.12 pgoyette if (ndx == 0 || ndx == 1) 10877 1.12 pgoyette p = "int"; 10878 1.12 pgoyette break; 10879 1.12 pgoyette /* sys_dup */ 10880 1.12 pgoyette case 41: 10881 1.12 pgoyette if (ndx == 0 || ndx == 1) 10882 1.12 pgoyette p = "int"; 10883 1.12 pgoyette break; 10884 1.12 pgoyette /* sys_pipe */ 10885 1.12 pgoyette case 42: 10886 1.12 pgoyette /* sys_getegid */ 10887 1.12 pgoyette case 43: 10888 1.12 pgoyette /* sys_profil */ 10889 1.12 pgoyette case 44: 10890 1.12 pgoyette if (ndx == 0 || ndx == 1) 10891 1.12 pgoyette p = "int"; 10892 1.12 pgoyette break; 10893 1.12 pgoyette /* sys_ktrace */ 10894 1.12 pgoyette case 45: 10895 1.12 pgoyette if (ndx == 0 || ndx == 1) 10896 1.12 pgoyette p = "int"; 10897 1.12 pgoyette break; 10898 1.12 pgoyette /* sys_sigaction */ 10899 1.12 pgoyette case 46: 10900 1.12 pgoyette if (ndx == 0 || ndx == 1) 10901 1.12 pgoyette p = "int"; 10902 1.12 pgoyette break; 10903 1.12 pgoyette /* sys_getgid_with_egid */ 10904 1.12 pgoyette case 47: 10905 1.12 pgoyette /* sys_sigprocmask */ 10906 1.12 pgoyette case 48: 10907 1.12 pgoyette if (ndx == 0 || ndx == 1) 10908 1.12 pgoyette p = "int"; 10909 1.12 pgoyette break; 10910 1.12 pgoyette /* sys___getlogin */ 10911 1.12 pgoyette case 49: 10912 1.12 pgoyette if (ndx == 0 || ndx == 1) 10913 1.12 pgoyette p = "int"; 10914 1.12 pgoyette break; 10915 1.12 pgoyette /* sys___setlogin */ 10916 1.12 pgoyette case 50: 10917 1.12 pgoyette if (ndx == 0 || ndx == 1) 10918 1.12 pgoyette p = "int"; 10919 1.12 pgoyette break; 10920 1.12 pgoyette /* sys_acct */ 10921 1.12 pgoyette case 51: 10922 1.12 pgoyette if (ndx == 0 || ndx == 1) 10923 1.12 pgoyette p = "int"; 10924 1.12 pgoyette break; 10925 1.12 pgoyette /* sys_sigpending */ 10926 1.12 pgoyette case 52: 10927 1.12 pgoyette /* sys_sigaltstack */ 10928 1.12 pgoyette case 53: 10929 1.12 pgoyette if (ndx == 0 || ndx == 1) 10930 1.12 pgoyette p = "int"; 10931 1.12 pgoyette break; 10932 1.12 pgoyette /* sys_ioctl */ 10933 1.12 pgoyette case 54: 10934 1.12 pgoyette if (ndx == 0 || ndx == 1) 10935 1.12 pgoyette p = "int"; 10936 1.12 pgoyette break; 10937 1.12 pgoyette /* sys_reboot */ 10938 1.12 pgoyette case 55: 10939 1.12 pgoyette if (ndx == 0 || ndx == 1) 10940 1.12 pgoyette p = "int"; 10941 1.12 pgoyette break; 10942 1.12 pgoyette /* sys_revoke */ 10943 1.12 pgoyette case 56: 10944 1.12 pgoyette if (ndx == 0 || ndx == 1) 10945 1.12 pgoyette p = "int"; 10946 1.12 pgoyette break; 10947 1.12 pgoyette /* sys_symlink */ 10948 1.12 pgoyette case 57: 10949 1.12 pgoyette if (ndx == 0 || ndx == 1) 10950 1.12 pgoyette p = "int"; 10951 1.12 pgoyette break; 10952 1.12 pgoyette /* sys_readlink */ 10953 1.12 pgoyette case 58: 10954 1.12 pgoyette if (ndx == 0 || ndx == 1) 10955 1.12 pgoyette p = "ssize_t"; 10956 1.12 pgoyette break; 10957 1.12 pgoyette /* sys_execve */ 10958 1.12 pgoyette case 59: 10959 1.12 pgoyette if (ndx == 0 || ndx == 1) 10960 1.12 pgoyette p = "int"; 10961 1.12 pgoyette break; 10962 1.12 pgoyette /* sys_umask */ 10963 1.12 pgoyette case 60: 10964 1.12 pgoyette if (ndx == 0 || ndx == 1) 10965 1.12 pgoyette p = "mode_t"; 10966 1.12 pgoyette break; 10967 1.12 pgoyette /* sys_chroot */ 10968 1.12 pgoyette case 61: 10969 1.12 pgoyette if (ndx == 0 || ndx == 1) 10970 1.12 pgoyette p = "int"; 10971 1.12 pgoyette break; 10972 1.12 pgoyette /* sys_fstat */ 10973 1.12 pgoyette case 62: 10974 1.12 pgoyette if (ndx == 0 || ndx == 1) 10975 1.12 pgoyette p = "int"; 10976 1.12 pgoyette break; 10977 1.12 pgoyette /* sys_getkerninfo */ 10978 1.12 pgoyette case 63: 10979 1.12 pgoyette if (ndx == 0 || ndx == 1) 10980 1.12 pgoyette p = "int"; 10981 1.12 pgoyette break; 10982 1.12 pgoyette /* sys_getpagesize */ 10983 1.12 pgoyette case 64: 10984 1.12 pgoyette /* sys_msync */ 10985 1.12 pgoyette case 65: 10986 1.12 pgoyette if (ndx == 0 || ndx == 1) 10987 1.12 pgoyette p = "int"; 10988 1.12 pgoyette break; 10989 1.12 pgoyette /* sys_vfork */ 10990 1.12 pgoyette case 66: 10991 1.12 pgoyette /* sys_mmap */ 10992 1.12 pgoyette case 71: 10993 1.12 pgoyette if (ndx == 0 || ndx == 1) 10994 1.12 pgoyette p = "int"; 10995 1.12 pgoyette break; 10996 1.29 kamil /* sys_ovadvise */ 10997 1.29 kamil case 72: 10998 1.29 kamil if (ndx == 0 || ndx == 1) 10999 1.29 kamil p = "int"; 11000 1.29 kamil break; 11001 1.12 pgoyette /* sys_munmap */ 11002 1.12 pgoyette case 73: 11003 1.12 pgoyette if (ndx == 0 || ndx == 1) 11004 1.12 pgoyette p = "int"; 11005 1.12 pgoyette break; 11006 1.12 pgoyette /* sys_mprotect */ 11007 1.12 pgoyette case 74: 11008 1.12 pgoyette if (ndx == 0 || ndx == 1) 11009 1.12 pgoyette p = "int"; 11010 1.12 pgoyette break; 11011 1.12 pgoyette /* sys_madvise */ 11012 1.12 pgoyette case 75: 11013 1.12 pgoyette if (ndx == 0 || ndx == 1) 11014 1.12 pgoyette p = "int"; 11015 1.12 pgoyette break; 11016 1.12 pgoyette /* sys_mincore */ 11017 1.12 pgoyette case 78: 11018 1.12 pgoyette if (ndx == 0 || ndx == 1) 11019 1.12 pgoyette p = "int"; 11020 1.12 pgoyette break; 11021 1.12 pgoyette /* sys_getgroups */ 11022 1.12 pgoyette case 79: 11023 1.12 pgoyette if (ndx == 0 || ndx == 1) 11024 1.12 pgoyette p = "int"; 11025 1.12 pgoyette break; 11026 1.12 pgoyette /* sys_setgroups */ 11027 1.12 pgoyette case 80: 11028 1.12 pgoyette if (ndx == 0 || ndx == 1) 11029 1.12 pgoyette p = "int"; 11030 1.12 pgoyette break; 11031 1.12 pgoyette /* sys_getpgrp */ 11032 1.12 pgoyette case 81: 11033 1.12 pgoyette /* sys_setpgid */ 11034 1.12 pgoyette case 82: 11035 1.12 pgoyette if (ndx == 0 || ndx == 1) 11036 1.12 pgoyette p = "int"; 11037 1.12 pgoyette break; 11038 1.12 pgoyette /* sys_setitimer */ 11039 1.12 pgoyette case 83: 11040 1.12 pgoyette if (ndx == 0 || ndx == 1) 11041 1.12 pgoyette p = "int"; 11042 1.12 pgoyette break; 11043 1.12 pgoyette /* sys_wait */ 11044 1.12 pgoyette case 84: 11045 1.12 pgoyette /* sys_swapon */ 11046 1.12 pgoyette case 85: 11047 1.12 pgoyette if (ndx == 0 || ndx == 1) 11048 1.12 pgoyette p = "int"; 11049 1.12 pgoyette break; 11050 1.12 pgoyette /* sys_getitimer */ 11051 1.12 pgoyette case 86: 11052 1.12 pgoyette if (ndx == 0 || ndx == 1) 11053 1.12 pgoyette p = "int"; 11054 1.12 pgoyette break; 11055 1.12 pgoyette /* sys_gethostname */ 11056 1.12 pgoyette case 87: 11057 1.12 pgoyette if (ndx == 0 || ndx == 1) 11058 1.12 pgoyette p = "int"; 11059 1.12 pgoyette break; 11060 1.12 pgoyette /* sys_sethostname */ 11061 1.12 pgoyette case 88: 11062 1.12 pgoyette if (ndx == 0 || ndx == 1) 11063 1.12 pgoyette p = "int"; 11064 1.12 pgoyette break; 11065 1.12 pgoyette /* sys_getdtablesize */ 11066 1.12 pgoyette case 89: 11067 1.12 pgoyette /* sys_dup2 */ 11068 1.12 pgoyette case 90: 11069 1.12 pgoyette if (ndx == 0 || ndx == 1) 11070 1.12 pgoyette p = "int"; 11071 1.12 pgoyette break; 11072 1.43 riastrad /* sys_getrandom */ 11073 1.43 riastrad case 91: 11074 1.43 riastrad if (ndx == 0 || ndx == 1) 11075 1.43 riastrad p = "ssize_t"; 11076 1.43 riastrad break; 11077 1.12 pgoyette /* sys_fcntl */ 11078 1.12 pgoyette case 92: 11079 1.12 pgoyette if (ndx == 0 || ndx == 1) 11080 1.12 pgoyette p = "int"; 11081 1.12 pgoyette break; 11082 1.12 pgoyette /* sys_select */ 11083 1.12 pgoyette case 93: 11084 1.12 pgoyette if (ndx == 0 || ndx == 1) 11085 1.12 pgoyette p = "int"; 11086 1.12 pgoyette break; 11087 1.12 pgoyette /* sys_fsync */ 11088 1.12 pgoyette case 95: 11089 1.12 pgoyette if (ndx == 0 || ndx == 1) 11090 1.12 pgoyette p = "int"; 11091 1.12 pgoyette break; 11092 1.12 pgoyette /* sys_setpriority */ 11093 1.12 pgoyette case 96: 11094 1.12 pgoyette if (ndx == 0 || ndx == 1) 11095 1.12 pgoyette p = "int"; 11096 1.12 pgoyette break; 11097 1.12 pgoyette /* sys_socket */ 11098 1.12 pgoyette case 97: 11099 1.12 pgoyette if (ndx == 0 || ndx == 1) 11100 1.12 pgoyette p = "int"; 11101 1.12 pgoyette break; 11102 1.12 pgoyette /* sys_connect */ 11103 1.12 pgoyette case 98: 11104 1.12 pgoyette if (ndx == 0 || ndx == 1) 11105 1.12 pgoyette p = "int"; 11106 1.12 pgoyette break; 11107 1.12 pgoyette /* sys_accept */ 11108 1.12 pgoyette case 99: 11109 1.12 pgoyette if (ndx == 0 || ndx == 1) 11110 1.12 pgoyette p = "int"; 11111 1.12 pgoyette break; 11112 1.12 pgoyette /* sys_getpriority */ 11113 1.12 pgoyette case 100: 11114 1.12 pgoyette if (ndx == 0 || ndx == 1) 11115 1.12 pgoyette p = "int"; 11116 1.12 pgoyette break; 11117 1.12 pgoyette /* sys_send */ 11118 1.12 pgoyette case 101: 11119 1.12 pgoyette if (ndx == 0 || ndx == 1) 11120 1.12 pgoyette p = "int"; 11121 1.12 pgoyette break; 11122 1.12 pgoyette /* sys_recv */ 11123 1.12 pgoyette case 102: 11124 1.12 pgoyette if (ndx == 0 || ndx == 1) 11125 1.12 pgoyette p = "int"; 11126 1.12 pgoyette break; 11127 1.12 pgoyette /* sys_sigreturn */ 11128 1.12 pgoyette case 103: 11129 1.12 pgoyette if (ndx == 0 || ndx == 1) 11130 1.12 pgoyette p = "int"; 11131 1.12 pgoyette break; 11132 1.12 pgoyette /* sys_bind */ 11133 1.12 pgoyette case 104: 11134 1.12 pgoyette if (ndx == 0 || ndx == 1) 11135 1.12 pgoyette p = "int"; 11136 1.12 pgoyette break; 11137 1.12 pgoyette /* sys_setsockopt */ 11138 1.12 pgoyette case 105: 11139 1.12 pgoyette if (ndx == 0 || ndx == 1) 11140 1.12 pgoyette p = "int"; 11141 1.12 pgoyette break; 11142 1.12 pgoyette /* sys_listen */ 11143 1.12 pgoyette case 106: 11144 1.12 pgoyette if (ndx == 0 || ndx == 1) 11145 1.12 pgoyette p = "int"; 11146 1.12 pgoyette break; 11147 1.12 pgoyette /* sys_sigvec */ 11148 1.12 pgoyette case 108: 11149 1.12 pgoyette if (ndx == 0 || ndx == 1) 11150 1.12 pgoyette p = "int"; 11151 1.12 pgoyette break; 11152 1.12 pgoyette /* sys_sigblock */ 11153 1.12 pgoyette case 109: 11154 1.12 pgoyette if (ndx == 0 || ndx == 1) 11155 1.12 pgoyette p = "int"; 11156 1.12 pgoyette break; 11157 1.12 pgoyette /* sys_sigsetmask */ 11158 1.12 pgoyette case 110: 11159 1.12 pgoyette if (ndx == 0 || ndx == 1) 11160 1.12 pgoyette p = "int"; 11161 1.12 pgoyette break; 11162 1.12 pgoyette /* sys_sigsuspend */ 11163 1.12 pgoyette case 111: 11164 1.12 pgoyette if (ndx == 0 || ndx == 1) 11165 1.12 pgoyette p = "int"; 11166 1.12 pgoyette break; 11167 1.12 pgoyette /* sys_sigstack */ 11168 1.12 pgoyette case 112: 11169 1.12 pgoyette if (ndx == 0 || ndx == 1) 11170 1.12 pgoyette p = "int"; 11171 1.12 pgoyette break; 11172 1.12 pgoyette /* sys_recvmsg */ 11173 1.12 pgoyette case 113: 11174 1.12 pgoyette if (ndx == 0 || ndx == 1) 11175 1.12 pgoyette p = "int"; 11176 1.12 pgoyette break; 11177 1.12 pgoyette /* sys_sendmsg */ 11178 1.12 pgoyette case 114: 11179 1.12 pgoyette if (ndx == 0 || ndx == 1) 11180 1.12 pgoyette p = "int"; 11181 1.12 pgoyette break; 11182 1.12 pgoyette /* sys_gettimeofday */ 11183 1.12 pgoyette case 116: 11184 1.12 pgoyette if (ndx == 0 || ndx == 1) 11185 1.12 pgoyette p = "int"; 11186 1.12 pgoyette break; 11187 1.12 pgoyette /* sys_getrusage */ 11188 1.12 pgoyette case 117: 11189 1.12 pgoyette if (ndx == 0 || ndx == 1) 11190 1.12 pgoyette p = "int"; 11191 1.12 pgoyette break; 11192 1.12 pgoyette /* sys_getsockopt */ 11193 1.12 pgoyette case 118: 11194 1.12 pgoyette if (ndx == 0 || ndx == 1) 11195 1.12 pgoyette p = "int"; 11196 1.12 pgoyette break; 11197 1.12 pgoyette /* sys_readv */ 11198 1.12 pgoyette case 120: 11199 1.12 pgoyette if (ndx == 0 || ndx == 1) 11200 1.12 pgoyette p = "ssize_t"; 11201 1.12 pgoyette break; 11202 1.12 pgoyette /* sys_writev */ 11203 1.12 pgoyette case 121: 11204 1.12 pgoyette if (ndx == 0 || ndx == 1) 11205 1.12 pgoyette p = "ssize_t"; 11206 1.12 pgoyette break; 11207 1.12 pgoyette /* sys_settimeofday */ 11208 1.12 pgoyette case 122: 11209 1.12 pgoyette if (ndx == 0 || ndx == 1) 11210 1.12 pgoyette p = "int"; 11211 1.12 pgoyette break; 11212 1.12 pgoyette /* sys_fchown */ 11213 1.12 pgoyette case 123: 11214 1.12 pgoyette if (ndx == 0 || ndx == 1) 11215 1.12 pgoyette p = "int"; 11216 1.12 pgoyette break; 11217 1.12 pgoyette /* sys_fchmod */ 11218 1.12 pgoyette case 124: 11219 1.12 pgoyette if (ndx == 0 || ndx == 1) 11220 1.12 pgoyette p = "int"; 11221 1.12 pgoyette break; 11222 1.12 pgoyette /* sys_recvfrom */ 11223 1.12 pgoyette case 125: 11224 1.12 pgoyette if (ndx == 0 || ndx == 1) 11225 1.12 pgoyette p = "int"; 11226 1.12 pgoyette break; 11227 1.12 pgoyette /* sys_setreuid */ 11228 1.12 pgoyette case 126: 11229 1.12 pgoyette if (ndx == 0 || ndx == 1) 11230 1.12 pgoyette p = "int"; 11231 1.12 pgoyette break; 11232 1.12 pgoyette /* sys_setregid */ 11233 1.12 pgoyette case 127: 11234 1.12 pgoyette if (ndx == 0 || ndx == 1) 11235 1.12 pgoyette p = "int"; 11236 1.12 pgoyette break; 11237 1.12 pgoyette /* sys_rename */ 11238 1.12 pgoyette case 128: 11239 1.12 pgoyette if (ndx == 0 || ndx == 1) 11240 1.12 pgoyette p = "int"; 11241 1.12 pgoyette break; 11242 1.12 pgoyette /* sys_truncate */ 11243 1.12 pgoyette case 129: 11244 1.12 pgoyette if (ndx == 0 || ndx == 1) 11245 1.12 pgoyette p = "int"; 11246 1.12 pgoyette break; 11247 1.12 pgoyette /* sys_ftruncate */ 11248 1.12 pgoyette case 130: 11249 1.12 pgoyette if (ndx == 0 || ndx == 1) 11250 1.12 pgoyette p = "int"; 11251 1.12 pgoyette break; 11252 1.12 pgoyette /* sys_flock */ 11253 1.12 pgoyette case 131: 11254 1.12 pgoyette if (ndx == 0 || ndx == 1) 11255 1.12 pgoyette p = "int"; 11256 1.12 pgoyette break; 11257 1.12 pgoyette /* sys_mkfifo */ 11258 1.12 pgoyette case 132: 11259 1.12 pgoyette if (ndx == 0 || ndx == 1) 11260 1.12 pgoyette p = "int"; 11261 1.12 pgoyette break; 11262 1.12 pgoyette /* sys_sendto */ 11263 1.12 pgoyette case 133: 11264 1.12 pgoyette if (ndx == 0 || ndx == 1) 11265 1.12 pgoyette p = "ssize_t"; 11266 1.12 pgoyette break; 11267 1.12 pgoyette /* sys_shutdown */ 11268 1.12 pgoyette case 134: 11269 1.12 pgoyette if (ndx == 0 || ndx == 1) 11270 1.12 pgoyette p = "int"; 11271 1.12 pgoyette break; 11272 1.12 pgoyette /* sys_socketpair */ 11273 1.12 pgoyette case 135: 11274 1.12 pgoyette if (ndx == 0 || ndx == 1) 11275 1.12 pgoyette p = "int"; 11276 1.12 pgoyette break; 11277 1.12 pgoyette /* sys_mkdir */ 11278 1.12 pgoyette case 136: 11279 1.12 pgoyette if (ndx == 0 || ndx == 1) 11280 1.12 pgoyette p = "int"; 11281 1.12 pgoyette break; 11282 1.12 pgoyette /* sys_rmdir */ 11283 1.12 pgoyette case 137: 11284 1.12 pgoyette if (ndx == 0 || ndx == 1) 11285 1.12 pgoyette p = "int"; 11286 1.12 pgoyette break; 11287 1.12 pgoyette /* sys_utimes */ 11288 1.12 pgoyette case 138: 11289 1.12 pgoyette if (ndx == 0 || ndx == 1) 11290 1.12 pgoyette p = "int"; 11291 1.12 pgoyette break; 11292 1.12 pgoyette /* sys_adjtime */ 11293 1.12 pgoyette case 140: 11294 1.12 pgoyette if (ndx == 0 || ndx == 1) 11295 1.12 pgoyette p = "int"; 11296 1.12 pgoyette break; 11297 1.12 pgoyette /* sys_getpeername */ 11298 1.12 pgoyette case 141: 11299 1.12 pgoyette if (ndx == 0 || ndx == 1) 11300 1.12 pgoyette p = "int"; 11301 1.12 pgoyette break; 11302 1.12 pgoyette /* sys_gethostid */ 11303 1.12 pgoyette case 142: 11304 1.12 pgoyette /* sys_sethostid */ 11305 1.12 pgoyette case 143: 11306 1.12 pgoyette if (ndx == 0 || ndx == 1) 11307 1.12 pgoyette p = "int"; 11308 1.12 pgoyette break; 11309 1.12 pgoyette /* sys_getrlimit */ 11310 1.12 pgoyette case 144: 11311 1.12 pgoyette if (ndx == 0 || ndx == 1) 11312 1.12 pgoyette p = "int"; 11313 1.12 pgoyette break; 11314 1.12 pgoyette /* sys_setrlimit */ 11315 1.12 pgoyette case 145: 11316 1.12 pgoyette if (ndx == 0 || ndx == 1) 11317 1.12 pgoyette p = "int"; 11318 1.12 pgoyette break; 11319 1.12 pgoyette /* sys_killpg */ 11320 1.12 pgoyette case 146: 11321 1.12 pgoyette if (ndx == 0 || ndx == 1) 11322 1.12 pgoyette p = "int"; 11323 1.12 pgoyette break; 11324 1.12 pgoyette /* sys_setsid */ 11325 1.12 pgoyette case 147: 11326 1.12 pgoyette /* sys_quotactl */ 11327 1.12 pgoyette case 148: 11328 1.12 pgoyette if (ndx == 0 || ndx == 1) 11329 1.12 pgoyette p = "int"; 11330 1.12 pgoyette break; 11331 1.12 pgoyette /* sys_quota */ 11332 1.12 pgoyette case 149: 11333 1.12 pgoyette /* sys_getsockname */ 11334 1.12 pgoyette case 150: 11335 1.12 pgoyette if (ndx == 0 || ndx == 1) 11336 1.12 pgoyette p = "int"; 11337 1.12 pgoyette break; 11338 1.12 pgoyette /* sys_nfssvc */ 11339 1.12 pgoyette case 155: 11340 1.12 pgoyette if (ndx == 0 || ndx == 1) 11341 1.12 pgoyette p = "int"; 11342 1.12 pgoyette break; 11343 1.12 pgoyette /* sys_getdirentries */ 11344 1.12 pgoyette case 156: 11345 1.12 pgoyette if (ndx == 0 || ndx == 1) 11346 1.12 pgoyette p = "int"; 11347 1.12 pgoyette break; 11348 1.12 pgoyette /* sys_statfs */ 11349 1.12 pgoyette case 157: 11350 1.12 pgoyette if (ndx == 0 || ndx == 1) 11351 1.12 pgoyette p = "int"; 11352 1.12 pgoyette break; 11353 1.12 pgoyette /* sys_fstatfs */ 11354 1.12 pgoyette case 158: 11355 1.12 pgoyette if (ndx == 0 || ndx == 1) 11356 1.12 pgoyette p = "int"; 11357 1.12 pgoyette break; 11358 1.12 pgoyette /* sys_getfh */ 11359 1.12 pgoyette case 161: 11360 1.12 pgoyette if (ndx == 0 || ndx == 1) 11361 1.12 pgoyette p = "int"; 11362 1.12 pgoyette break; 11363 1.12 pgoyette /* sys_getdomainname */ 11364 1.12 pgoyette case 162: 11365 1.12 pgoyette if (ndx == 0 || ndx == 1) 11366 1.12 pgoyette p = "int"; 11367 1.12 pgoyette break; 11368 1.12 pgoyette /* sys_setdomainname */ 11369 1.12 pgoyette case 163: 11370 1.12 pgoyette if (ndx == 0 || ndx == 1) 11371 1.12 pgoyette p = "int"; 11372 1.12 pgoyette break; 11373 1.12 pgoyette /* sys_uname */ 11374 1.12 pgoyette case 164: 11375 1.12 pgoyette if (ndx == 0 || ndx == 1) 11376 1.12 pgoyette p = "int"; 11377 1.12 pgoyette break; 11378 1.12 pgoyette /* sys_sysarch */ 11379 1.12 pgoyette case 165: 11380 1.12 pgoyette if (ndx == 0 || ndx == 1) 11381 1.12 pgoyette p = "int"; 11382 1.12 pgoyette break; 11383 1.38 thorpej /* sys___futex */ 11384 1.38 thorpej case 166: 11385 1.38 thorpej if (ndx == 0 || ndx == 1) 11386 1.38 thorpej p = "int"; 11387 1.38 thorpej break; 11388 1.38 thorpej /* sys___futex_set_robust_list */ 11389 1.38 thorpej case 167: 11390 1.38 thorpej if (ndx == 0 || ndx == 1) 11391 1.38 thorpej p = "int"; 11392 1.38 thorpej break; 11393 1.38 thorpej /* sys___futex_get_robust_list */ 11394 1.38 thorpej case 168: 11395 1.38 thorpej if (ndx == 0 || ndx == 1) 11396 1.38 thorpej p = "int"; 11397 1.38 thorpej break; 11398 1.12 pgoyette #if !defined(_LP64) 11399 1.12 pgoyette /* sys_semsys */ 11400 1.12 pgoyette case 169: 11401 1.12 pgoyette if (ndx == 0 || ndx == 1) 11402 1.12 pgoyette p = "int"; 11403 1.12 pgoyette break; 11404 1.12 pgoyette #else 11405 1.12 pgoyette #endif 11406 1.12 pgoyette #if !defined(_LP64) 11407 1.12 pgoyette /* sys_msgsys */ 11408 1.12 pgoyette case 170: 11409 1.12 pgoyette if (ndx == 0 || ndx == 1) 11410 1.12 pgoyette p = "int"; 11411 1.12 pgoyette break; 11412 1.12 pgoyette #else 11413 1.12 pgoyette #endif 11414 1.12 pgoyette #if !defined(_LP64) 11415 1.12 pgoyette /* sys_shmsys */ 11416 1.12 pgoyette case 171: 11417 1.12 pgoyette if (ndx == 0 || ndx == 1) 11418 1.12 pgoyette p = "int"; 11419 1.12 pgoyette break; 11420 1.12 pgoyette #else 11421 1.12 pgoyette #endif 11422 1.12 pgoyette /* sys_pread */ 11423 1.12 pgoyette case 173: 11424 1.12 pgoyette if (ndx == 0 || ndx == 1) 11425 1.12 pgoyette p = "ssize_t"; 11426 1.12 pgoyette break; 11427 1.12 pgoyette /* sys_pwrite */ 11428 1.12 pgoyette case 174: 11429 1.12 pgoyette if (ndx == 0 || ndx == 1) 11430 1.12 pgoyette p = "ssize_t"; 11431 1.12 pgoyette break; 11432 1.12 pgoyette /* sys_ntp_gettime */ 11433 1.12 pgoyette case 175: 11434 1.12 pgoyette if (ndx == 0 || ndx == 1) 11435 1.12 pgoyette p = "int"; 11436 1.12 pgoyette break; 11437 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT) 11438 1.12 pgoyette /* sys_ntp_adjtime */ 11439 1.12 pgoyette case 176: 11440 1.12 pgoyette if (ndx == 0 || ndx == 1) 11441 1.12 pgoyette p = "int"; 11442 1.12 pgoyette break; 11443 1.12 pgoyette #else 11444 1.12 pgoyette #endif 11445 1.48 thorpej /* sys_timerfd_create */ 11446 1.48 thorpej case 177: 11447 1.48 thorpej if (ndx == 0 || ndx == 1) 11448 1.48 thorpej p = "int"; 11449 1.48 thorpej break; 11450 1.48 thorpej /* sys_timerfd_settime */ 11451 1.48 thorpej case 178: 11452 1.48 thorpej if (ndx == 0 || ndx == 1) 11453 1.48 thorpej p = "int"; 11454 1.48 thorpej break; 11455 1.48 thorpej /* sys_timerfd_gettime */ 11456 1.48 thorpej case 179: 11457 1.48 thorpej if (ndx == 0 || ndx == 1) 11458 1.48 thorpej p = "int"; 11459 1.48 thorpej break; 11460 1.12 pgoyette /* sys_setgid */ 11461 1.12 pgoyette case 181: 11462 1.12 pgoyette if (ndx == 0 || ndx == 1) 11463 1.12 pgoyette p = "int"; 11464 1.12 pgoyette break; 11465 1.12 pgoyette /* sys_setegid */ 11466 1.12 pgoyette case 182: 11467 1.12 pgoyette if (ndx == 0 || ndx == 1) 11468 1.12 pgoyette p = "int"; 11469 1.12 pgoyette break; 11470 1.12 pgoyette /* sys_seteuid */ 11471 1.12 pgoyette case 183: 11472 1.12 pgoyette if (ndx == 0 || ndx == 1) 11473 1.12 pgoyette p = "int"; 11474 1.12 pgoyette break; 11475 1.12 pgoyette /* sys_lfs_bmapv */ 11476 1.12 pgoyette case 184: 11477 1.12 pgoyette if (ndx == 0 || ndx == 1) 11478 1.12 pgoyette p = "int"; 11479 1.12 pgoyette break; 11480 1.12 pgoyette /* sys_lfs_markv */ 11481 1.12 pgoyette case 185: 11482 1.12 pgoyette if (ndx == 0 || ndx == 1) 11483 1.12 pgoyette p = "int"; 11484 1.12 pgoyette break; 11485 1.12 pgoyette /* sys_lfs_segclean */ 11486 1.12 pgoyette case 186: 11487 1.12 pgoyette if (ndx == 0 || ndx == 1) 11488 1.12 pgoyette p = "int"; 11489 1.12 pgoyette break; 11490 1.12 pgoyette /* sys_lfs_segwait */ 11491 1.12 pgoyette case 187: 11492 1.12 pgoyette if (ndx == 0 || ndx == 1) 11493 1.12 pgoyette p = "int"; 11494 1.12 pgoyette break; 11495 1.12 pgoyette /* sys_stat */ 11496 1.12 pgoyette case 188: 11497 1.12 pgoyette if (ndx == 0 || ndx == 1) 11498 1.12 pgoyette p = "int"; 11499 1.12 pgoyette break; 11500 1.12 pgoyette /* sys_fstat */ 11501 1.12 pgoyette case 189: 11502 1.12 pgoyette if (ndx == 0 || ndx == 1) 11503 1.12 pgoyette p = "int"; 11504 1.12 pgoyette break; 11505 1.12 pgoyette /* sys_lstat */ 11506 1.12 pgoyette case 190: 11507 1.12 pgoyette if (ndx == 0 || ndx == 1) 11508 1.12 pgoyette p = "int"; 11509 1.12 pgoyette break; 11510 1.12 pgoyette /* sys_pathconf */ 11511 1.12 pgoyette case 191: 11512 1.12 pgoyette if (ndx == 0 || ndx == 1) 11513 1.12 pgoyette p = "long"; 11514 1.12 pgoyette break; 11515 1.12 pgoyette /* sys_fpathconf */ 11516 1.12 pgoyette case 192: 11517 1.12 pgoyette if (ndx == 0 || ndx == 1) 11518 1.12 pgoyette p = "long"; 11519 1.12 pgoyette break; 11520 1.31 rjs /* sys_getsockopt2 */ 11521 1.31 rjs case 193: 11522 1.31 rjs if (ndx == 0 || ndx == 1) 11523 1.31 rjs p = "int"; 11524 1.31 rjs break; 11525 1.12 pgoyette /* sys_getrlimit */ 11526 1.12 pgoyette case 194: 11527 1.12 pgoyette if (ndx == 0 || ndx == 1) 11528 1.12 pgoyette p = "int"; 11529 1.12 pgoyette break; 11530 1.12 pgoyette /* sys_setrlimit */ 11531 1.12 pgoyette case 195: 11532 1.12 pgoyette if (ndx == 0 || ndx == 1) 11533 1.12 pgoyette p = "int"; 11534 1.12 pgoyette break; 11535 1.12 pgoyette /* sys_getdirentries */ 11536 1.12 pgoyette case 196: 11537 1.12 pgoyette if (ndx == 0 || ndx == 1) 11538 1.12 pgoyette p = "int"; 11539 1.12 pgoyette break; 11540 1.12 pgoyette /* sys_mmap */ 11541 1.12 pgoyette case 197: 11542 1.12 pgoyette if (ndx == 0 || ndx == 1) 11543 1.12 pgoyette p = "void *"; 11544 1.12 pgoyette break; 11545 1.12 pgoyette /* sys___syscall */ 11546 1.12 pgoyette case 198: 11547 1.12 pgoyette if (ndx == 0 || ndx == 1) 11548 1.12 pgoyette p = "quad_t"; 11549 1.12 pgoyette break; 11550 1.12 pgoyette /* sys_lseek */ 11551 1.12 pgoyette case 199: 11552 1.12 pgoyette if (ndx == 0 || ndx == 1) 11553 1.12 pgoyette p = "off_t"; 11554 1.12 pgoyette break; 11555 1.12 pgoyette /* sys_truncate */ 11556 1.12 pgoyette case 200: 11557 1.12 pgoyette if (ndx == 0 || ndx == 1) 11558 1.12 pgoyette p = "int"; 11559 1.12 pgoyette break; 11560 1.12 pgoyette /* sys_ftruncate */ 11561 1.12 pgoyette case 201: 11562 1.12 pgoyette if (ndx == 0 || ndx == 1) 11563 1.12 pgoyette p = "int"; 11564 1.12 pgoyette break; 11565 1.12 pgoyette /* sys___sysctl */ 11566 1.12 pgoyette case 202: 11567 1.12 pgoyette if (ndx == 0 || ndx == 1) 11568 1.12 pgoyette p = "int"; 11569 1.12 pgoyette break; 11570 1.12 pgoyette /* sys_mlock */ 11571 1.12 pgoyette case 203: 11572 1.12 pgoyette if (ndx == 0 || ndx == 1) 11573 1.12 pgoyette p = "int"; 11574 1.12 pgoyette break; 11575 1.12 pgoyette /* sys_munlock */ 11576 1.12 pgoyette case 204: 11577 1.12 pgoyette if (ndx == 0 || ndx == 1) 11578 1.12 pgoyette p = "int"; 11579 1.12 pgoyette break; 11580 1.12 pgoyette /* sys_undelete */ 11581 1.12 pgoyette case 205: 11582 1.12 pgoyette if (ndx == 0 || ndx == 1) 11583 1.12 pgoyette p = "int"; 11584 1.12 pgoyette break; 11585 1.12 pgoyette /* sys_futimes */ 11586 1.12 pgoyette case 206: 11587 1.12 pgoyette if (ndx == 0 || ndx == 1) 11588 1.12 pgoyette p = "int"; 11589 1.12 pgoyette break; 11590 1.12 pgoyette /* sys_getpgid */ 11591 1.12 pgoyette case 207: 11592 1.12 pgoyette if (ndx == 0 || ndx == 1) 11593 1.12 pgoyette p = "pid_t"; 11594 1.12 pgoyette break; 11595 1.12 pgoyette /* sys_reboot */ 11596 1.12 pgoyette case 208: 11597 1.12 pgoyette if (ndx == 0 || ndx == 1) 11598 1.12 pgoyette p = "int"; 11599 1.12 pgoyette break; 11600 1.12 pgoyette /* sys_poll */ 11601 1.12 pgoyette case 209: 11602 1.12 pgoyette if (ndx == 0 || ndx == 1) 11603 1.12 pgoyette p = "int"; 11604 1.12 pgoyette break; 11605 1.12 pgoyette /* sys_afssys */ 11606 1.12 pgoyette case 210: 11607 1.12 pgoyette if (ndx == 0 || ndx == 1) 11608 1.12 pgoyette p = "int"; 11609 1.12 pgoyette break; 11610 1.12 pgoyette /* sys___semctl */ 11611 1.12 pgoyette case 220: 11612 1.12 pgoyette if (ndx == 0 || ndx == 1) 11613 1.12 pgoyette p = "int"; 11614 1.12 pgoyette break; 11615 1.12 pgoyette /* sys_semget */ 11616 1.12 pgoyette case 221: 11617 1.12 pgoyette if (ndx == 0 || ndx == 1) 11618 1.12 pgoyette p = "int"; 11619 1.12 pgoyette break; 11620 1.12 pgoyette /* sys_semop */ 11621 1.12 pgoyette case 222: 11622 1.12 pgoyette if (ndx == 0 || ndx == 1) 11623 1.12 pgoyette p = "int"; 11624 1.12 pgoyette break; 11625 1.12 pgoyette /* sys_semconfig */ 11626 1.12 pgoyette case 223: 11627 1.12 pgoyette if (ndx == 0 || ndx == 1) 11628 1.12 pgoyette p = "int"; 11629 1.12 pgoyette break; 11630 1.12 pgoyette /* sys_msgctl */ 11631 1.12 pgoyette case 224: 11632 1.12 pgoyette if (ndx == 0 || ndx == 1) 11633 1.12 pgoyette p = "int"; 11634 1.12 pgoyette break; 11635 1.12 pgoyette /* sys_msgget */ 11636 1.12 pgoyette case 225: 11637 1.12 pgoyette if (ndx == 0 || ndx == 1) 11638 1.12 pgoyette p = "int"; 11639 1.12 pgoyette break; 11640 1.12 pgoyette /* sys_msgsnd */ 11641 1.12 pgoyette case 226: 11642 1.12 pgoyette if (ndx == 0 || ndx == 1) 11643 1.12 pgoyette p = "int"; 11644 1.12 pgoyette break; 11645 1.12 pgoyette /* sys_msgrcv */ 11646 1.12 pgoyette case 227: 11647 1.12 pgoyette if (ndx == 0 || ndx == 1) 11648 1.12 pgoyette p = "ssize_t"; 11649 1.12 pgoyette break; 11650 1.12 pgoyette /* sys_shmat */ 11651 1.12 pgoyette case 228: 11652 1.12 pgoyette if (ndx == 0 || ndx == 1) 11653 1.12 pgoyette p = "void *"; 11654 1.12 pgoyette break; 11655 1.12 pgoyette /* sys_shmctl */ 11656 1.12 pgoyette case 229: 11657 1.12 pgoyette if (ndx == 0 || ndx == 1) 11658 1.12 pgoyette p = "int"; 11659 1.12 pgoyette break; 11660 1.12 pgoyette /* sys_shmdt */ 11661 1.12 pgoyette case 230: 11662 1.12 pgoyette if (ndx == 0 || ndx == 1) 11663 1.12 pgoyette p = "int"; 11664 1.12 pgoyette break; 11665 1.12 pgoyette /* sys_shmget */ 11666 1.12 pgoyette case 231: 11667 1.12 pgoyette if (ndx == 0 || ndx == 1) 11668 1.12 pgoyette p = "int"; 11669 1.12 pgoyette break; 11670 1.12 pgoyette /* sys_clock_gettime */ 11671 1.12 pgoyette case 232: 11672 1.12 pgoyette if (ndx == 0 || ndx == 1) 11673 1.12 pgoyette p = "int"; 11674 1.12 pgoyette break; 11675 1.12 pgoyette /* sys_clock_settime */ 11676 1.12 pgoyette case 233: 11677 1.12 pgoyette if (ndx == 0 || ndx == 1) 11678 1.12 pgoyette p = "int"; 11679 1.12 pgoyette break; 11680 1.12 pgoyette /* sys_clock_getres */ 11681 1.12 pgoyette case 234: 11682 1.12 pgoyette if (ndx == 0 || ndx == 1) 11683 1.12 pgoyette p = "int"; 11684 1.12 pgoyette break; 11685 1.12 pgoyette /* sys_timer_create */ 11686 1.12 pgoyette case 235: 11687 1.12 pgoyette if (ndx == 0 || ndx == 1) 11688 1.12 pgoyette p = "int"; 11689 1.12 pgoyette break; 11690 1.12 pgoyette /* sys_timer_delete */ 11691 1.12 pgoyette case 236: 11692 1.12 pgoyette if (ndx == 0 || ndx == 1) 11693 1.12 pgoyette p = "int"; 11694 1.12 pgoyette break; 11695 1.12 pgoyette /* sys_timer_settime */ 11696 1.12 pgoyette case 237: 11697 1.12 pgoyette if (ndx == 0 || ndx == 1) 11698 1.12 pgoyette p = "int"; 11699 1.12 pgoyette break; 11700 1.12 pgoyette /* sys_timer_gettime */ 11701 1.12 pgoyette case 238: 11702 1.12 pgoyette if (ndx == 0 || ndx == 1) 11703 1.12 pgoyette p = "int"; 11704 1.12 pgoyette break; 11705 1.12 pgoyette /* sys_timer_getoverrun */ 11706 1.12 pgoyette case 239: 11707 1.12 pgoyette if (ndx == 0 || ndx == 1) 11708 1.12 pgoyette p = "int"; 11709 1.12 pgoyette break; 11710 1.12 pgoyette /* sys_nanosleep */ 11711 1.12 pgoyette case 240: 11712 1.12 pgoyette if (ndx == 0 || ndx == 1) 11713 1.12 pgoyette p = "int"; 11714 1.12 pgoyette break; 11715 1.12 pgoyette /* sys_fdatasync */ 11716 1.12 pgoyette case 241: 11717 1.12 pgoyette if (ndx == 0 || ndx == 1) 11718 1.12 pgoyette p = "int"; 11719 1.12 pgoyette break; 11720 1.12 pgoyette /* sys_mlockall */ 11721 1.12 pgoyette case 242: 11722 1.12 pgoyette if (ndx == 0 || ndx == 1) 11723 1.12 pgoyette p = "int"; 11724 1.12 pgoyette break; 11725 1.12 pgoyette /* sys_munlockall */ 11726 1.12 pgoyette case 243: 11727 1.12 pgoyette /* sys___sigtimedwait */ 11728 1.12 pgoyette case 244: 11729 1.12 pgoyette if (ndx == 0 || ndx == 1) 11730 1.12 pgoyette p = "int"; 11731 1.12 pgoyette break; 11732 1.12 pgoyette /* sys_sigqueueinfo */ 11733 1.12 pgoyette case 245: 11734 1.12 pgoyette if (ndx == 0 || ndx == 1) 11735 1.12 pgoyette p = "int"; 11736 1.12 pgoyette break; 11737 1.12 pgoyette /* sys_modctl */ 11738 1.12 pgoyette case 246: 11739 1.12 pgoyette if (ndx == 0 || ndx == 1) 11740 1.12 pgoyette p = "int"; 11741 1.12 pgoyette break; 11742 1.12 pgoyette /* sys__ksem_init */ 11743 1.12 pgoyette case 247: 11744 1.12 pgoyette if (ndx == 0 || ndx == 1) 11745 1.12 pgoyette p = "int"; 11746 1.12 pgoyette break; 11747 1.12 pgoyette /* sys__ksem_open */ 11748 1.12 pgoyette case 248: 11749 1.12 pgoyette if (ndx == 0 || ndx == 1) 11750 1.12 pgoyette p = "int"; 11751 1.12 pgoyette break; 11752 1.12 pgoyette /* sys__ksem_unlink */ 11753 1.12 pgoyette case 249: 11754 1.12 pgoyette if (ndx == 0 || ndx == 1) 11755 1.12 pgoyette p = "int"; 11756 1.12 pgoyette break; 11757 1.12 pgoyette /* sys__ksem_close */ 11758 1.12 pgoyette case 250: 11759 1.12 pgoyette if (ndx == 0 || ndx == 1) 11760 1.12 pgoyette p = "int"; 11761 1.12 pgoyette break; 11762 1.12 pgoyette /* sys__ksem_post */ 11763 1.12 pgoyette case 251: 11764 1.12 pgoyette if (ndx == 0 || ndx == 1) 11765 1.12 pgoyette p = "int"; 11766 1.12 pgoyette break; 11767 1.12 pgoyette /* sys__ksem_wait */ 11768 1.12 pgoyette case 252: 11769 1.12 pgoyette if (ndx == 0 || ndx == 1) 11770 1.12 pgoyette p = "int"; 11771 1.12 pgoyette break; 11772 1.12 pgoyette /* sys__ksem_trywait */ 11773 1.12 pgoyette case 253: 11774 1.12 pgoyette if (ndx == 0 || ndx == 1) 11775 1.12 pgoyette p = "int"; 11776 1.12 pgoyette break; 11777 1.12 pgoyette /* sys__ksem_getvalue */ 11778 1.12 pgoyette case 254: 11779 1.12 pgoyette if (ndx == 0 || ndx == 1) 11780 1.12 pgoyette p = "int"; 11781 1.12 pgoyette break; 11782 1.12 pgoyette /* sys__ksem_destroy */ 11783 1.12 pgoyette case 255: 11784 1.12 pgoyette if (ndx == 0 || ndx == 1) 11785 1.12 pgoyette p = "int"; 11786 1.12 pgoyette break; 11787 1.12 pgoyette /* sys__ksem_timedwait */ 11788 1.12 pgoyette case 256: 11789 1.12 pgoyette if (ndx == 0 || ndx == 1) 11790 1.12 pgoyette p = "int"; 11791 1.12 pgoyette break; 11792 1.12 pgoyette /* sys_mq_open */ 11793 1.12 pgoyette case 257: 11794 1.12 pgoyette if (ndx == 0 || ndx == 1) 11795 1.12 pgoyette p = "mqd_t"; 11796 1.12 pgoyette break; 11797 1.12 pgoyette /* sys_mq_close */ 11798 1.12 pgoyette case 258: 11799 1.12 pgoyette if (ndx == 0 || ndx == 1) 11800 1.12 pgoyette p = "int"; 11801 1.12 pgoyette break; 11802 1.12 pgoyette /* sys_mq_unlink */ 11803 1.12 pgoyette case 259: 11804 1.12 pgoyette if (ndx == 0 || ndx == 1) 11805 1.12 pgoyette p = "int"; 11806 1.12 pgoyette break; 11807 1.12 pgoyette /* sys_mq_getattr */ 11808 1.12 pgoyette case 260: 11809 1.12 pgoyette if (ndx == 0 || ndx == 1) 11810 1.12 pgoyette p = "int"; 11811 1.12 pgoyette break; 11812 1.12 pgoyette /* sys_mq_setattr */ 11813 1.12 pgoyette case 261: 11814 1.12 pgoyette if (ndx == 0 || ndx == 1) 11815 1.12 pgoyette p = "int"; 11816 1.12 pgoyette break; 11817 1.12 pgoyette /* sys_mq_notify */ 11818 1.12 pgoyette case 262: 11819 1.12 pgoyette if (ndx == 0 || ndx == 1) 11820 1.12 pgoyette p = "int"; 11821 1.12 pgoyette break; 11822 1.12 pgoyette /* sys_mq_send */ 11823 1.12 pgoyette case 263: 11824 1.12 pgoyette if (ndx == 0 || ndx == 1) 11825 1.12 pgoyette p = "int"; 11826 1.12 pgoyette break; 11827 1.12 pgoyette /* sys_mq_receive */ 11828 1.12 pgoyette case 264: 11829 1.12 pgoyette if (ndx == 0 || ndx == 1) 11830 1.12 pgoyette p = "ssize_t"; 11831 1.12 pgoyette break; 11832 1.12 pgoyette /* sys_mq_timedsend */ 11833 1.12 pgoyette case 265: 11834 1.12 pgoyette if (ndx == 0 || ndx == 1) 11835 1.12 pgoyette p = "int"; 11836 1.12 pgoyette break; 11837 1.12 pgoyette /* sys_mq_timedreceive */ 11838 1.12 pgoyette case 266: 11839 1.12 pgoyette if (ndx == 0 || ndx == 1) 11840 1.12 pgoyette p = "ssize_t"; 11841 1.12 pgoyette break; 11842 1.48 thorpej /* sys_eventfd */ 11843 1.48 thorpej case 267: 11844 1.48 thorpej if (ndx == 0 || ndx == 1) 11845 1.48 thorpej p = "int"; 11846 1.48 thorpej break; 11847 1.12 pgoyette /* sys___posix_rename */ 11848 1.12 pgoyette case 270: 11849 1.12 pgoyette if (ndx == 0 || ndx == 1) 11850 1.12 pgoyette p = "int"; 11851 1.12 pgoyette break; 11852 1.12 pgoyette /* sys_swapctl */ 11853 1.12 pgoyette case 271: 11854 1.12 pgoyette if (ndx == 0 || ndx == 1) 11855 1.12 pgoyette p = "int"; 11856 1.12 pgoyette break; 11857 1.12 pgoyette /* sys_getdents */ 11858 1.12 pgoyette case 272: 11859 1.12 pgoyette if (ndx == 0 || ndx == 1) 11860 1.12 pgoyette p = "int"; 11861 1.12 pgoyette break; 11862 1.12 pgoyette /* sys_minherit */ 11863 1.12 pgoyette case 273: 11864 1.12 pgoyette if (ndx == 0 || ndx == 1) 11865 1.12 pgoyette p = "int"; 11866 1.12 pgoyette break; 11867 1.12 pgoyette /* sys_lchmod */ 11868 1.12 pgoyette case 274: 11869 1.12 pgoyette if (ndx == 0 || ndx == 1) 11870 1.12 pgoyette p = "int"; 11871 1.12 pgoyette break; 11872 1.12 pgoyette /* sys_lchown */ 11873 1.12 pgoyette case 275: 11874 1.12 pgoyette if (ndx == 0 || ndx == 1) 11875 1.12 pgoyette p = "int"; 11876 1.12 pgoyette break; 11877 1.12 pgoyette /* sys_lutimes */ 11878 1.12 pgoyette case 276: 11879 1.12 pgoyette if (ndx == 0 || ndx == 1) 11880 1.12 pgoyette p = "int"; 11881 1.12 pgoyette break; 11882 1.12 pgoyette /* sys___msync13 */ 11883 1.12 pgoyette case 277: 11884 1.12 pgoyette if (ndx == 0 || ndx == 1) 11885 1.12 pgoyette p = "int"; 11886 1.12 pgoyette break; 11887 1.12 pgoyette /* sys___stat13 */ 11888 1.12 pgoyette case 278: 11889 1.12 pgoyette if (ndx == 0 || ndx == 1) 11890 1.12 pgoyette p = "int"; 11891 1.12 pgoyette break; 11892 1.12 pgoyette /* sys___fstat13 */ 11893 1.12 pgoyette case 279: 11894 1.12 pgoyette if (ndx == 0 || ndx == 1) 11895 1.12 pgoyette p = "int"; 11896 1.12 pgoyette break; 11897 1.12 pgoyette /* sys___lstat13 */ 11898 1.12 pgoyette case 280: 11899 1.12 pgoyette if (ndx == 0 || ndx == 1) 11900 1.12 pgoyette p = "int"; 11901 1.12 pgoyette break; 11902 1.12 pgoyette /* sys___sigaltstack14 */ 11903 1.12 pgoyette case 281: 11904 1.12 pgoyette if (ndx == 0 || ndx == 1) 11905 1.12 pgoyette p = "int"; 11906 1.12 pgoyette break; 11907 1.12 pgoyette /* sys___vfork14 */ 11908 1.12 pgoyette case 282: 11909 1.12 pgoyette /* sys___posix_chown */ 11910 1.12 pgoyette case 283: 11911 1.12 pgoyette if (ndx == 0 || ndx == 1) 11912 1.12 pgoyette p = "int"; 11913 1.12 pgoyette break; 11914 1.12 pgoyette /* sys___posix_fchown */ 11915 1.12 pgoyette case 284: 11916 1.12 pgoyette if (ndx == 0 || ndx == 1) 11917 1.12 pgoyette p = "int"; 11918 1.12 pgoyette break; 11919 1.12 pgoyette /* sys___posix_lchown */ 11920 1.12 pgoyette case 285: 11921 1.12 pgoyette if (ndx == 0 || ndx == 1) 11922 1.12 pgoyette p = "int"; 11923 1.12 pgoyette break; 11924 1.12 pgoyette /* sys_getsid */ 11925 1.12 pgoyette case 286: 11926 1.12 pgoyette if (ndx == 0 || ndx == 1) 11927 1.12 pgoyette p = "pid_t"; 11928 1.12 pgoyette break; 11929 1.12 pgoyette /* sys___clone */ 11930 1.12 pgoyette case 287: 11931 1.12 pgoyette if (ndx == 0 || ndx == 1) 11932 1.12 pgoyette p = "pid_t"; 11933 1.12 pgoyette break; 11934 1.12 pgoyette /* sys_fktrace */ 11935 1.12 pgoyette case 288: 11936 1.12 pgoyette if (ndx == 0 || ndx == 1) 11937 1.12 pgoyette p = "int"; 11938 1.12 pgoyette break; 11939 1.12 pgoyette /* sys_preadv */ 11940 1.12 pgoyette case 289: 11941 1.12 pgoyette if (ndx == 0 || ndx == 1) 11942 1.12 pgoyette p = "ssize_t"; 11943 1.12 pgoyette break; 11944 1.12 pgoyette /* sys_pwritev */ 11945 1.12 pgoyette case 290: 11946 1.12 pgoyette if (ndx == 0 || ndx == 1) 11947 1.12 pgoyette p = "ssize_t"; 11948 1.12 pgoyette break; 11949 1.12 pgoyette /* sys___sigaction14 */ 11950 1.12 pgoyette case 291: 11951 1.12 pgoyette if (ndx == 0 || ndx == 1) 11952 1.12 pgoyette p = "int"; 11953 1.12 pgoyette break; 11954 1.12 pgoyette /* sys___sigpending14 */ 11955 1.12 pgoyette case 292: 11956 1.12 pgoyette if (ndx == 0 || ndx == 1) 11957 1.12 pgoyette p = "int"; 11958 1.12 pgoyette break; 11959 1.12 pgoyette /* sys___sigprocmask14 */ 11960 1.12 pgoyette case 293: 11961 1.12 pgoyette if (ndx == 0 || ndx == 1) 11962 1.12 pgoyette p = "int"; 11963 1.12 pgoyette break; 11964 1.12 pgoyette /* sys___sigsuspend14 */ 11965 1.12 pgoyette case 294: 11966 1.12 pgoyette if (ndx == 0 || ndx == 1) 11967 1.12 pgoyette p = "int"; 11968 1.12 pgoyette break; 11969 1.12 pgoyette /* sys___sigreturn14 */ 11970 1.12 pgoyette case 295: 11971 1.12 pgoyette if (ndx == 0 || ndx == 1) 11972 1.12 pgoyette p = "int"; 11973 1.12 pgoyette break; 11974 1.12 pgoyette /* sys___getcwd */ 11975 1.12 pgoyette case 296: 11976 1.12 pgoyette if (ndx == 0 || ndx == 1) 11977 1.12 pgoyette p = "int"; 11978 1.12 pgoyette break; 11979 1.12 pgoyette /* sys_fchroot */ 11980 1.12 pgoyette case 297: 11981 1.12 pgoyette if (ndx == 0 || ndx == 1) 11982 1.12 pgoyette p = "int"; 11983 1.12 pgoyette break; 11984 1.12 pgoyette /* sys_fhopen */ 11985 1.12 pgoyette case 298: 11986 1.12 pgoyette if (ndx == 0 || ndx == 1) 11987 1.12 pgoyette p = "int"; 11988 1.12 pgoyette break; 11989 1.12 pgoyette /* sys_fhstat */ 11990 1.12 pgoyette case 299: 11991 1.12 pgoyette if (ndx == 0 || ndx == 1) 11992 1.12 pgoyette p = "int"; 11993 1.12 pgoyette break; 11994 1.12 pgoyette /* sys_fhstatfs */ 11995 1.12 pgoyette case 300: 11996 1.12 pgoyette if (ndx == 0 || ndx == 1) 11997 1.12 pgoyette p = "int"; 11998 1.12 pgoyette break; 11999 1.12 pgoyette /* sys_____semctl13 */ 12000 1.12 pgoyette case 301: 12001 1.12 pgoyette if (ndx == 0 || ndx == 1) 12002 1.12 pgoyette p = "int"; 12003 1.12 pgoyette break; 12004 1.12 pgoyette /* sys___msgctl13 */ 12005 1.12 pgoyette case 302: 12006 1.12 pgoyette if (ndx == 0 || ndx == 1) 12007 1.12 pgoyette p = "int"; 12008 1.12 pgoyette break; 12009 1.12 pgoyette /* sys___shmctl13 */ 12010 1.12 pgoyette case 303: 12011 1.12 pgoyette if (ndx == 0 || ndx == 1) 12012 1.12 pgoyette p = "int"; 12013 1.12 pgoyette break; 12014 1.12 pgoyette /* sys_lchflags */ 12015 1.12 pgoyette case 304: 12016 1.12 pgoyette if (ndx == 0 || ndx == 1) 12017 1.12 pgoyette p = "int"; 12018 1.12 pgoyette break; 12019 1.12 pgoyette /* sys_issetugid */ 12020 1.12 pgoyette case 305: 12021 1.12 pgoyette /* sys_utrace */ 12022 1.12 pgoyette case 306: 12023 1.12 pgoyette if (ndx == 0 || ndx == 1) 12024 1.12 pgoyette p = "int"; 12025 1.12 pgoyette break; 12026 1.12 pgoyette /* sys_getcontext */ 12027 1.12 pgoyette case 307: 12028 1.12 pgoyette if (ndx == 0 || ndx == 1) 12029 1.12 pgoyette p = "int"; 12030 1.12 pgoyette break; 12031 1.12 pgoyette /* sys_setcontext */ 12032 1.12 pgoyette case 308: 12033 1.12 pgoyette if (ndx == 0 || ndx == 1) 12034 1.12 pgoyette p = "int"; 12035 1.12 pgoyette break; 12036 1.12 pgoyette /* sys__lwp_create */ 12037 1.12 pgoyette case 309: 12038 1.12 pgoyette if (ndx == 0 || ndx == 1) 12039 1.12 pgoyette p = "int"; 12040 1.12 pgoyette break; 12041 1.12 pgoyette /* sys__lwp_exit */ 12042 1.12 pgoyette case 310: 12043 1.12 pgoyette /* sys__lwp_self */ 12044 1.12 pgoyette case 311: 12045 1.12 pgoyette /* sys__lwp_wait */ 12046 1.12 pgoyette case 312: 12047 1.12 pgoyette if (ndx == 0 || ndx == 1) 12048 1.12 pgoyette p = "int"; 12049 1.12 pgoyette break; 12050 1.12 pgoyette /* sys__lwp_suspend */ 12051 1.12 pgoyette case 313: 12052 1.12 pgoyette if (ndx == 0 || ndx == 1) 12053 1.12 pgoyette p = "int"; 12054 1.12 pgoyette break; 12055 1.12 pgoyette /* sys__lwp_continue */ 12056 1.12 pgoyette case 314: 12057 1.12 pgoyette if (ndx == 0 || ndx == 1) 12058 1.12 pgoyette p = "int"; 12059 1.12 pgoyette break; 12060 1.12 pgoyette /* sys__lwp_wakeup */ 12061 1.12 pgoyette case 315: 12062 1.12 pgoyette if (ndx == 0 || ndx == 1) 12063 1.12 pgoyette p = "int"; 12064 1.12 pgoyette break; 12065 1.12 pgoyette /* sys__lwp_getprivate */ 12066 1.12 pgoyette case 316: 12067 1.12 pgoyette /* sys__lwp_setprivate */ 12068 1.12 pgoyette case 317: 12069 1.12 pgoyette if (ndx == 0 || ndx == 1) 12070 1.12 pgoyette p = "void"; 12071 1.12 pgoyette break; 12072 1.12 pgoyette /* sys__lwp_kill */ 12073 1.12 pgoyette case 318: 12074 1.12 pgoyette if (ndx == 0 || ndx == 1) 12075 1.12 pgoyette p = "int"; 12076 1.12 pgoyette break; 12077 1.12 pgoyette /* sys__lwp_detach */ 12078 1.12 pgoyette case 319: 12079 1.12 pgoyette if (ndx == 0 || ndx == 1) 12080 1.12 pgoyette p = "int"; 12081 1.12 pgoyette break; 12082 1.12 pgoyette /* sys__lwp_park */ 12083 1.12 pgoyette case 320: 12084 1.12 pgoyette if (ndx == 0 || ndx == 1) 12085 1.12 pgoyette p = "int"; 12086 1.12 pgoyette break; 12087 1.12 pgoyette /* sys__lwp_unpark */ 12088 1.12 pgoyette case 321: 12089 1.12 pgoyette if (ndx == 0 || ndx == 1) 12090 1.12 pgoyette p = "int"; 12091 1.12 pgoyette break; 12092 1.12 pgoyette /* sys__lwp_unpark_all */ 12093 1.12 pgoyette case 322: 12094 1.12 pgoyette if (ndx == 0 || ndx == 1) 12095 1.12 pgoyette p = "ssize_t"; 12096 1.12 pgoyette break; 12097 1.12 pgoyette /* sys__lwp_setname */ 12098 1.12 pgoyette case 323: 12099 1.12 pgoyette if (ndx == 0 || ndx == 1) 12100 1.12 pgoyette p = "int"; 12101 1.12 pgoyette break; 12102 1.12 pgoyette /* sys__lwp_getname */ 12103 1.12 pgoyette case 324: 12104 1.12 pgoyette if (ndx == 0 || ndx == 1) 12105 1.12 pgoyette p = "int"; 12106 1.12 pgoyette break; 12107 1.12 pgoyette /* sys__lwp_ctl */ 12108 1.12 pgoyette case 325: 12109 1.12 pgoyette if (ndx == 0 || ndx == 1) 12110 1.12 pgoyette p = "int"; 12111 1.12 pgoyette break; 12112 1.12 pgoyette /* sys_sa_register */ 12113 1.12 pgoyette case 330: 12114 1.12 pgoyette if (ndx == 0 || ndx == 1) 12115 1.12 pgoyette p = "int"; 12116 1.12 pgoyette break; 12117 1.12 pgoyette /* sys_sa_stacks */ 12118 1.12 pgoyette case 331: 12119 1.12 pgoyette if (ndx == 0 || ndx == 1) 12120 1.12 pgoyette p = "int"; 12121 1.12 pgoyette break; 12122 1.12 pgoyette /* sys_sa_enable */ 12123 1.12 pgoyette case 332: 12124 1.12 pgoyette /* sys_sa_setconcurrency */ 12125 1.12 pgoyette case 333: 12126 1.12 pgoyette if (ndx == 0 || ndx == 1) 12127 1.12 pgoyette p = "int"; 12128 1.12 pgoyette break; 12129 1.12 pgoyette /* sys_sa_yield */ 12130 1.12 pgoyette case 334: 12131 1.12 pgoyette /* sys_sa_preempt */ 12132 1.12 pgoyette case 335: 12133 1.12 pgoyette if (ndx == 0 || ndx == 1) 12134 1.12 pgoyette p = "int"; 12135 1.12 pgoyette break; 12136 1.12 pgoyette /* sys___sigaction_sigtramp */ 12137 1.12 pgoyette case 340: 12138 1.12 pgoyette if (ndx == 0 || ndx == 1) 12139 1.12 pgoyette p = "int"; 12140 1.12 pgoyette break; 12141 1.12 pgoyette /* sys_rasctl */ 12142 1.12 pgoyette case 343: 12143 1.12 pgoyette if (ndx == 0 || ndx == 1) 12144 1.12 pgoyette p = "int"; 12145 1.12 pgoyette break; 12146 1.12 pgoyette /* sys_kqueue */ 12147 1.12 pgoyette case 344: 12148 1.12 pgoyette /* sys_kevent */ 12149 1.12 pgoyette case 345: 12150 1.12 pgoyette if (ndx == 0 || ndx == 1) 12151 1.12 pgoyette p = "int"; 12152 1.12 pgoyette break; 12153 1.12 pgoyette /* sys__sched_setparam */ 12154 1.12 pgoyette case 346: 12155 1.12 pgoyette if (ndx == 0 || ndx == 1) 12156 1.12 pgoyette p = "int"; 12157 1.12 pgoyette break; 12158 1.12 pgoyette /* sys__sched_getparam */ 12159 1.12 pgoyette case 347: 12160 1.12 pgoyette if (ndx == 0 || ndx == 1) 12161 1.12 pgoyette p = "int"; 12162 1.12 pgoyette break; 12163 1.12 pgoyette /* sys__sched_setaffinity */ 12164 1.12 pgoyette case 348: 12165 1.12 pgoyette if (ndx == 0 || ndx == 1) 12166 1.12 pgoyette p = "int"; 12167 1.12 pgoyette break; 12168 1.12 pgoyette /* sys__sched_getaffinity */ 12169 1.12 pgoyette case 349: 12170 1.12 pgoyette if (ndx == 0 || ndx == 1) 12171 1.12 pgoyette p = "int"; 12172 1.12 pgoyette break; 12173 1.12 pgoyette /* sys_sched_yield */ 12174 1.12 pgoyette case 350: 12175 1.21 christos /* sys__sched_protect */ 12176 1.21 christos case 351: 12177 1.21 christos if (ndx == 0 || ndx == 1) 12178 1.21 christos p = "int"; 12179 1.21 christos break; 12180 1.12 pgoyette /* sys_fsync_range */ 12181 1.12 pgoyette case 354: 12182 1.12 pgoyette if (ndx == 0 || ndx == 1) 12183 1.12 pgoyette p = "int"; 12184 1.12 pgoyette break; 12185 1.12 pgoyette /* sys_uuidgen */ 12186 1.12 pgoyette case 355: 12187 1.12 pgoyette if (ndx == 0 || ndx == 1) 12188 1.12 pgoyette p = "int"; 12189 1.12 pgoyette break; 12190 1.12 pgoyette /* sys_getvfsstat */ 12191 1.12 pgoyette case 356: 12192 1.12 pgoyette if (ndx == 0 || ndx == 1) 12193 1.12 pgoyette p = "int"; 12194 1.12 pgoyette break; 12195 1.12 pgoyette /* sys_statvfs1 */ 12196 1.12 pgoyette case 357: 12197 1.12 pgoyette if (ndx == 0 || ndx == 1) 12198 1.12 pgoyette p = "int"; 12199 1.12 pgoyette break; 12200 1.12 pgoyette /* sys_fstatvfs1 */ 12201 1.12 pgoyette case 358: 12202 1.12 pgoyette if (ndx == 0 || ndx == 1) 12203 1.12 pgoyette p = "int"; 12204 1.12 pgoyette break; 12205 1.12 pgoyette /* sys_fhstatvfs1 */ 12206 1.12 pgoyette case 359: 12207 1.12 pgoyette if (ndx == 0 || ndx == 1) 12208 1.12 pgoyette p = "int"; 12209 1.12 pgoyette break; 12210 1.12 pgoyette /* sys_extattrctl */ 12211 1.12 pgoyette case 360: 12212 1.12 pgoyette if (ndx == 0 || ndx == 1) 12213 1.12 pgoyette p = "int"; 12214 1.12 pgoyette break; 12215 1.12 pgoyette /* sys_extattr_set_file */ 12216 1.12 pgoyette case 361: 12217 1.12 pgoyette if (ndx == 0 || ndx == 1) 12218 1.12 pgoyette p = "int"; 12219 1.12 pgoyette break; 12220 1.12 pgoyette /* sys_extattr_get_file */ 12221 1.12 pgoyette case 362: 12222 1.12 pgoyette if (ndx == 0 || ndx == 1) 12223 1.12 pgoyette p = "ssize_t"; 12224 1.12 pgoyette break; 12225 1.12 pgoyette /* sys_extattr_delete_file */ 12226 1.12 pgoyette case 363: 12227 1.12 pgoyette if (ndx == 0 || ndx == 1) 12228 1.12 pgoyette p = "int"; 12229 1.12 pgoyette break; 12230 1.12 pgoyette /* sys_extattr_set_fd */ 12231 1.12 pgoyette case 364: 12232 1.12 pgoyette if (ndx == 0 || ndx == 1) 12233 1.12 pgoyette p = "int"; 12234 1.12 pgoyette break; 12235 1.12 pgoyette /* sys_extattr_get_fd */ 12236 1.12 pgoyette case 365: 12237 1.12 pgoyette if (ndx == 0 || ndx == 1) 12238 1.12 pgoyette p = "ssize_t"; 12239 1.12 pgoyette break; 12240 1.12 pgoyette /* sys_extattr_delete_fd */ 12241 1.12 pgoyette case 366: 12242 1.12 pgoyette if (ndx == 0 || ndx == 1) 12243 1.12 pgoyette p = "int"; 12244 1.12 pgoyette break; 12245 1.12 pgoyette /* sys_extattr_set_link */ 12246 1.12 pgoyette case 367: 12247 1.12 pgoyette if (ndx == 0 || ndx == 1) 12248 1.12 pgoyette p = "int"; 12249 1.12 pgoyette break; 12250 1.12 pgoyette /* sys_extattr_get_link */ 12251 1.12 pgoyette case 368: 12252 1.12 pgoyette if (ndx == 0 || ndx == 1) 12253 1.12 pgoyette p = "ssize_t"; 12254 1.12 pgoyette break; 12255 1.12 pgoyette /* sys_extattr_delete_link */ 12256 1.12 pgoyette case 369: 12257 1.12 pgoyette if (ndx == 0 || ndx == 1) 12258 1.12 pgoyette p = "int"; 12259 1.12 pgoyette break; 12260 1.12 pgoyette /* sys_extattr_list_fd */ 12261 1.12 pgoyette case 370: 12262 1.12 pgoyette if (ndx == 0 || ndx == 1) 12263 1.12 pgoyette p = "ssize_t"; 12264 1.12 pgoyette break; 12265 1.12 pgoyette /* sys_extattr_list_file */ 12266 1.12 pgoyette case 371: 12267 1.12 pgoyette if (ndx == 0 || ndx == 1) 12268 1.12 pgoyette p = "ssize_t"; 12269 1.12 pgoyette break; 12270 1.12 pgoyette /* sys_extattr_list_link */ 12271 1.12 pgoyette case 372: 12272 1.12 pgoyette if (ndx == 0 || ndx == 1) 12273 1.12 pgoyette p = "ssize_t"; 12274 1.12 pgoyette break; 12275 1.12 pgoyette /* sys_pselect */ 12276 1.12 pgoyette case 373: 12277 1.12 pgoyette if (ndx == 0 || ndx == 1) 12278 1.12 pgoyette p = "int"; 12279 1.12 pgoyette break; 12280 1.12 pgoyette /* sys_pollts */ 12281 1.12 pgoyette case 374: 12282 1.12 pgoyette if (ndx == 0 || ndx == 1) 12283 1.12 pgoyette p = "int"; 12284 1.12 pgoyette break; 12285 1.12 pgoyette /* sys_setxattr */ 12286 1.12 pgoyette case 375: 12287 1.12 pgoyette if (ndx == 0 || ndx == 1) 12288 1.12 pgoyette p = "int"; 12289 1.12 pgoyette break; 12290 1.12 pgoyette /* sys_lsetxattr */ 12291 1.12 pgoyette case 376: 12292 1.12 pgoyette if (ndx == 0 || ndx == 1) 12293 1.12 pgoyette p = "int"; 12294 1.12 pgoyette break; 12295 1.12 pgoyette /* sys_fsetxattr */ 12296 1.12 pgoyette case 377: 12297 1.12 pgoyette if (ndx == 0 || ndx == 1) 12298 1.12 pgoyette p = "int"; 12299 1.12 pgoyette break; 12300 1.12 pgoyette /* sys_getxattr */ 12301 1.12 pgoyette case 378: 12302 1.12 pgoyette if (ndx == 0 || ndx == 1) 12303 1.12 pgoyette p = "int"; 12304 1.12 pgoyette break; 12305 1.12 pgoyette /* sys_lgetxattr */ 12306 1.12 pgoyette case 379: 12307 1.12 pgoyette if (ndx == 0 || ndx == 1) 12308 1.12 pgoyette p = "int"; 12309 1.12 pgoyette break; 12310 1.12 pgoyette /* sys_fgetxattr */ 12311 1.12 pgoyette case 380: 12312 1.12 pgoyette if (ndx == 0 || ndx == 1) 12313 1.12 pgoyette p = "int"; 12314 1.12 pgoyette break; 12315 1.12 pgoyette /* sys_listxattr */ 12316 1.12 pgoyette case 381: 12317 1.12 pgoyette if (ndx == 0 || ndx == 1) 12318 1.12 pgoyette p = "int"; 12319 1.12 pgoyette break; 12320 1.12 pgoyette /* sys_llistxattr */ 12321 1.12 pgoyette case 382: 12322 1.12 pgoyette if (ndx == 0 || ndx == 1) 12323 1.12 pgoyette p = "int"; 12324 1.12 pgoyette break; 12325 1.12 pgoyette /* sys_flistxattr */ 12326 1.12 pgoyette case 383: 12327 1.12 pgoyette if (ndx == 0 || ndx == 1) 12328 1.12 pgoyette p = "int"; 12329 1.12 pgoyette break; 12330 1.12 pgoyette /* sys_removexattr */ 12331 1.12 pgoyette case 384: 12332 1.12 pgoyette if (ndx == 0 || ndx == 1) 12333 1.12 pgoyette p = "int"; 12334 1.12 pgoyette break; 12335 1.12 pgoyette /* sys_lremovexattr */ 12336 1.12 pgoyette case 385: 12337 1.12 pgoyette if (ndx == 0 || ndx == 1) 12338 1.12 pgoyette p = "int"; 12339 1.12 pgoyette break; 12340 1.12 pgoyette /* sys_fremovexattr */ 12341 1.12 pgoyette case 386: 12342 1.12 pgoyette if (ndx == 0 || ndx == 1) 12343 1.12 pgoyette p = "int"; 12344 1.12 pgoyette break; 12345 1.12 pgoyette /* sys___stat30 */ 12346 1.12 pgoyette case 387: 12347 1.12 pgoyette if (ndx == 0 || ndx == 1) 12348 1.12 pgoyette p = "int"; 12349 1.12 pgoyette break; 12350 1.12 pgoyette /* sys___fstat30 */ 12351 1.12 pgoyette case 388: 12352 1.12 pgoyette if (ndx == 0 || ndx == 1) 12353 1.12 pgoyette p = "int"; 12354 1.12 pgoyette break; 12355 1.12 pgoyette /* sys___lstat30 */ 12356 1.12 pgoyette case 389: 12357 1.12 pgoyette if (ndx == 0 || ndx == 1) 12358 1.12 pgoyette p = "int"; 12359 1.12 pgoyette break; 12360 1.12 pgoyette /* sys___getdents30 */ 12361 1.12 pgoyette case 390: 12362 1.12 pgoyette if (ndx == 0 || ndx == 1) 12363 1.12 pgoyette p = "int"; 12364 1.12 pgoyette break; 12365 1.12 pgoyette /* sys___fhstat30 */ 12366 1.12 pgoyette case 392: 12367 1.12 pgoyette if (ndx == 0 || ndx == 1) 12368 1.12 pgoyette p = "int"; 12369 1.12 pgoyette break; 12370 1.12 pgoyette /* sys___ntp_gettime30 */ 12371 1.12 pgoyette case 393: 12372 1.12 pgoyette if (ndx == 0 || ndx == 1) 12373 1.12 pgoyette p = "int"; 12374 1.12 pgoyette break; 12375 1.12 pgoyette /* sys___socket30 */ 12376 1.12 pgoyette case 394: 12377 1.12 pgoyette if (ndx == 0 || ndx == 1) 12378 1.12 pgoyette p = "int"; 12379 1.12 pgoyette break; 12380 1.12 pgoyette /* sys___getfh30 */ 12381 1.12 pgoyette case 395: 12382 1.12 pgoyette if (ndx == 0 || ndx == 1) 12383 1.12 pgoyette p = "int"; 12384 1.12 pgoyette break; 12385 1.12 pgoyette /* sys___fhopen40 */ 12386 1.12 pgoyette case 396: 12387 1.12 pgoyette if (ndx == 0 || ndx == 1) 12388 1.12 pgoyette p = "int"; 12389 1.12 pgoyette break; 12390 1.33 christos /* sys_fhstatvfs1 */ 12391 1.12 pgoyette case 397: 12392 1.12 pgoyette if (ndx == 0 || ndx == 1) 12393 1.12 pgoyette p = "int"; 12394 1.12 pgoyette break; 12395 1.12 pgoyette /* sys___fhstat40 */ 12396 1.12 pgoyette case 398: 12397 1.12 pgoyette if (ndx == 0 || ndx == 1) 12398 1.12 pgoyette p = "int"; 12399 1.12 pgoyette break; 12400 1.12 pgoyette /* sys_aio_cancel */ 12401 1.12 pgoyette case 399: 12402 1.12 pgoyette if (ndx == 0 || ndx == 1) 12403 1.12 pgoyette p = "int"; 12404 1.12 pgoyette break; 12405 1.12 pgoyette /* sys_aio_error */ 12406 1.12 pgoyette case 400: 12407 1.12 pgoyette if (ndx == 0 || ndx == 1) 12408 1.12 pgoyette p = "int"; 12409 1.12 pgoyette break; 12410 1.12 pgoyette /* sys_aio_fsync */ 12411 1.12 pgoyette case 401: 12412 1.12 pgoyette if (ndx == 0 || ndx == 1) 12413 1.12 pgoyette p = "int"; 12414 1.12 pgoyette break; 12415 1.12 pgoyette /* sys_aio_read */ 12416 1.12 pgoyette case 402: 12417 1.12 pgoyette if (ndx == 0 || ndx == 1) 12418 1.12 pgoyette p = "int"; 12419 1.12 pgoyette break; 12420 1.12 pgoyette /* sys_aio_return */ 12421 1.12 pgoyette case 403: 12422 1.12 pgoyette if (ndx == 0 || ndx == 1) 12423 1.12 pgoyette p = "int"; 12424 1.12 pgoyette break; 12425 1.12 pgoyette /* sys_aio_suspend */ 12426 1.12 pgoyette case 404: 12427 1.12 pgoyette if (ndx == 0 || ndx == 1) 12428 1.12 pgoyette p = "int"; 12429 1.12 pgoyette break; 12430 1.12 pgoyette /* sys_aio_write */ 12431 1.12 pgoyette case 405: 12432 1.12 pgoyette if (ndx == 0 || ndx == 1) 12433 1.12 pgoyette p = "int"; 12434 1.12 pgoyette break; 12435 1.12 pgoyette /* sys_lio_listio */ 12436 1.12 pgoyette case 406: 12437 1.12 pgoyette if (ndx == 0 || ndx == 1) 12438 1.12 pgoyette p = "int"; 12439 1.12 pgoyette break; 12440 1.12 pgoyette /* sys___mount50 */ 12441 1.12 pgoyette case 410: 12442 1.12 pgoyette if (ndx == 0 || ndx == 1) 12443 1.12 pgoyette p = "int"; 12444 1.12 pgoyette break; 12445 1.12 pgoyette /* sys_mremap */ 12446 1.12 pgoyette case 411: 12447 1.12 pgoyette if (ndx == 0 || ndx == 1) 12448 1.12 pgoyette p = "void *"; 12449 1.12 pgoyette break; 12450 1.12 pgoyette /* sys_pset_create */ 12451 1.12 pgoyette case 412: 12452 1.12 pgoyette if (ndx == 0 || ndx == 1) 12453 1.12 pgoyette p = "int"; 12454 1.12 pgoyette break; 12455 1.12 pgoyette /* sys_pset_destroy */ 12456 1.12 pgoyette case 413: 12457 1.12 pgoyette if (ndx == 0 || ndx == 1) 12458 1.12 pgoyette p = "int"; 12459 1.12 pgoyette break; 12460 1.12 pgoyette /* sys_pset_assign */ 12461 1.12 pgoyette case 414: 12462 1.12 pgoyette if (ndx == 0 || ndx == 1) 12463 1.12 pgoyette p = "int"; 12464 1.12 pgoyette break; 12465 1.12 pgoyette /* sys__pset_bind */ 12466 1.12 pgoyette case 415: 12467 1.12 pgoyette if (ndx == 0 || ndx == 1) 12468 1.12 pgoyette p = "int"; 12469 1.12 pgoyette break; 12470 1.12 pgoyette /* sys___posix_fadvise50 */ 12471 1.12 pgoyette case 416: 12472 1.12 pgoyette if (ndx == 0 || ndx == 1) 12473 1.12 pgoyette p = "int"; 12474 1.12 pgoyette break; 12475 1.12 pgoyette /* sys___select50 */ 12476 1.12 pgoyette case 417: 12477 1.12 pgoyette if (ndx == 0 || ndx == 1) 12478 1.12 pgoyette p = "int"; 12479 1.12 pgoyette break; 12480 1.12 pgoyette /* sys___gettimeofday50 */ 12481 1.12 pgoyette case 418: 12482 1.12 pgoyette if (ndx == 0 || ndx == 1) 12483 1.12 pgoyette p = "int"; 12484 1.12 pgoyette break; 12485 1.12 pgoyette /* sys___settimeofday50 */ 12486 1.12 pgoyette case 419: 12487 1.12 pgoyette if (ndx == 0 || ndx == 1) 12488 1.12 pgoyette p = "int"; 12489 1.12 pgoyette break; 12490 1.12 pgoyette /* sys___utimes50 */ 12491 1.12 pgoyette case 420: 12492 1.12 pgoyette if (ndx == 0 || ndx == 1) 12493 1.12 pgoyette p = "int"; 12494 1.12 pgoyette break; 12495 1.12 pgoyette /* sys___adjtime50 */ 12496 1.12 pgoyette case 421: 12497 1.12 pgoyette if (ndx == 0 || ndx == 1) 12498 1.12 pgoyette p = "int"; 12499 1.12 pgoyette break; 12500 1.12 pgoyette /* sys___lfs_segwait50 */ 12501 1.12 pgoyette case 422: 12502 1.12 pgoyette if (ndx == 0 || ndx == 1) 12503 1.12 pgoyette p = "int"; 12504 1.12 pgoyette break; 12505 1.12 pgoyette /* sys___futimes50 */ 12506 1.12 pgoyette case 423: 12507 1.12 pgoyette if (ndx == 0 || ndx == 1) 12508 1.12 pgoyette p = "int"; 12509 1.12 pgoyette break; 12510 1.12 pgoyette /* sys___lutimes50 */ 12511 1.12 pgoyette case 424: 12512 1.12 pgoyette if (ndx == 0 || ndx == 1) 12513 1.12 pgoyette p = "int"; 12514 1.12 pgoyette break; 12515 1.12 pgoyette /* sys___setitimer50 */ 12516 1.12 pgoyette case 425: 12517 1.12 pgoyette if (ndx == 0 || ndx == 1) 12518 1.12 pgoyette p = "int"; 12519 1.12 pgoyette break; 12520 1.12 pgoyette /* sys___getitimer50 */ 12521 1.12 pgoyette case 426: 12522 1.12 pgoyette if (ndx == 0 || ndx == 1) 12523 1.12 pgoyette p = "int"; 12524 1.12 pgoyette break; 12525 1.12 pgoyette /* sys___clock_gettime50 */ 12526 1.12 pgoyette case 427: 12527 1.12 pgoyette if (ndx == 0 || ndx == 1) 12528 1.12 pgoyette p = "int"; 12529 1.12 pgoyette break; 12530 1.12 pgoyette /* sys___clock_settime50 */ 12531 1.12 pgoyette case 428: 12532 1.12 pgoyette if (ndx == 0 || ndx == 1) 12533 1.12 pgoyette p = "int"; 12534 1.12 pgoyette break; 12535 1.12 pgoyette /* sys___clock_getres50 */ 12536 1.12 pgoyette case 429: 12537 1.12 pgoyette if (ndx == 0 || ndx == 1) 12538 1.12 pgoyette p = "int"; 12539 1.12 pgoyette break; 12540 1.12 pgoyette /* sys___nanosleep50 */ 12541 1.12 pgoyette case 430: 12542 1.12 pgoyette if (ndx == 0 || ndx == 1) 12543 1.12 pgoyette p = "int"; 12544 1.12 pgoyette break; 12545 1.12 pgoyette /* sys_____sigtimedwait50 */ 12546 1.12 pgoyette case 431: 12547 1.12 pgoyette if (ndx == 0 || ndx == 1) 12548 1.12 pgoyette p = "int"; 12549 1.12 pgoyette break; 12550 1.12 pgoyette /* sys___mq_timedsend50 */ 12551 1.12 pgoyette case 432: 12552 1.12 pgoyette if (ndx == 0 || ndx == 1) 12553 1.12 pgoyette p = "int"; 12554 1.12 pgoyette break; 12555 1.12 pgoyette /* sys___mq_timedreceive50 */ 12556 1.12 pgoyette case 433: 12557 1.12 pgoyette if (ndx == 0 || ndx == 1) 12558 1.12 pgoyette p = "ssize_t"; 12559 1.12 pgoyette break; 12560 1.12 pgoyette /* sys__lwp_park */ 12561 1.12 pgoyette case 434: 12562 1.12 pgoyette if (ndx == 0 || ndx == 1) 12563 1.12 pgoyette p = "int"; 12564 1.12 pgoyette break; 12565 1.12 pgoyette /* sys___kevent50 */ 12566 1.12 pgoyette case 435: 12567 1.12 pgoyette if (ndx == 0 || ndx == 1) 12568 1.12 pgoyette p = "int"; 12569 1.12 pgoyette break; 12570 1.12 pgoyette /* sys___pselect50 */ 12571 1.12 pgoyette case 436: 12572 1.12 pgoyette if (ndx == 0 || ndx == 1) 12573 1.12 pgoyette p = "int"; 12574 1.12 pgoyette break; 12575 1.12 pgoyette /* sys___pollts50 */ 12576 1.12 pgoyette case 437: 12577 1.12 pgoyette if (ndx == 0 || ndx == 1) 12578 1.12 pgoyette p = "int"; 12579 1.12 pgoyette break; 12580 1.12 pgoyette /* sys___aio_suspend50 */ 12581 1.12 pgoyette case 438: 12582 1.12 pgoyette if (ndx == 0 || ndx == 1) 12583 1.12 pgoyette p = "int"; 12584 1.12 pgoyette break; 12585 1.12 pgoyette /* sys___stat50 */ 12586 1.12 pgoyette case 439: 12587 1.12 pgoyette if (ndx == 0 || ndx == 1) 12588 1.12 pgoyette p = "int"; 12589 1.12 pgoyette break; 12590 1.12 pgoyette /* sys___fstat50 */ 12591 1.12 pgoyette case 440: 12592 1.12 pgoyette if (ndx == 0 || ndx == 1) 12593 1.12 pgoyette p = "int"; 12594 1.12 pgoyette break; 12595 1.12 pgoyette /* sys___lstat50 */ 12596 1.12 pgoyette case 441: 12597 1.12 pgoyette if (ndx == 0 || ndx == 1) 12598 1.12 pgoyette p = "int"; 12599 1.12 pgoyette break; 12600 1.12 pgoyette /* sys_____semctl50 */ 12601 1.12 pgoyette case 442: 12602 1.12 pgoyette if (ndx == 0 || ndx == 1) 12603 1.12 pgoyette p = "int"; 12604 1.12 pgoyette break; 12605 1.12 pgoyette /* sys___shmctl50 */ 12606 1.12 pgoyette case 443: 12607 1.12 pgoyette if (ndx == 0 || ndx == 1) 12608 1.12 pgoyette p = "int"; 12609 1.12 pgoyette break; 12610 1.12 pgoyette /* sys___msgctl50 */ 12611 1.12 pgoyette case 444: 12612 1.12 pgoyette if (ndx == 0 || ndx == 1) 12613 1.12 pgoyette p = "int"; 12614 1.12 pgoyette break; 12615 1.12 pgoyette /* sys___getrusage50 */ 12616 1.12 pgoyette case 445: 12617 1.12 pgoyette if (ndx == 0 || ndx == 1) 12618 1.12 pgoyette p = "int"; 12619 1.12 pgoyette break; 12620 1.12 pgoyette /* sys___timer_settime50 */ 12621 1.12 pgoyette case 446: 12622 1.12 pgoyette if (ndx == 0 || ndx == 1) 12623 1.12 pgoyette p = "int"; 12624 1.12 pgoyette break; 12625 1.12 pgoyette /* sys___timer_gettime50 */ 12626 1.12 pgoyette case 447: 12627 1.12 pgoyette if (ndx == 0 || ndx == 1) 12628 1.12 pgoyette p = "int"; 12629 1.12 pgoyette break; 12630 1.12 pgoyette #if defined(NTP) || !defined(_KERNEL_OPT) 12631 1.12 pgoyette /* sys___ntp_gettime50 */ 12632 1.12 pgoyette case 448: 12633 1.12 pgoyette if (ndx == 0 || ndx == 1) 12634 1.12 pgoyette p = "int"; 12635 1.12 pgoyette break; 12636 1.12 pgoyette #else 12637 1.12 pgoyette #endif 12638 1.12 pgoyette /* sys___wait450 */ 12639 1.12 pgoyette case 449: 12640 1.12 pgoyette if (ndx == 0 || ndx == 1) 12641 1.12 pgoyette p = "int"; 12642 1.12 pgoyette break; 12643 1.12 pgoyette /* sys___mknod50 */ 12644 1.12 pgoyette case 450: 12645 1.12 pgoyette if (ndx == 0 || ndx == 1) 12646 1.12 pgoyette p = "int"; 12647 1.12 pgoyette break; 12648 1.12 pgoyette /* sys___fhstat50 */ 12649 1.12 pgoyette case 451: 12650 1.12 pgoyette if (ndx == 0 || ndx == 1) 12651 1.12 pgoyette p = "int"; 12652 1.12 pgoyette break; 12653 1.12 pgoyette /* sys_pipe2 */ 12654 1.12 pgoyette case 453: 12655 1.12 pgoyette if (ndx == 0 || ndx == 1) 12656 1.12 pgoyette p = "int"; 12657 1.12 pgoyette break; 12658 1.12 pgoyette /* sys_dup3 */ 12659 1.12 pgoyette case 454: 12660 1.12 pgoyette if (ndx == 0 || ndx == 1) 12661 1.12 pgoyette p = "int"; 12662 1.12 pgoyette break; 12663 1.12 pgoyette /* sys_kqueue1 */ 12664 1.12 pgoyette case 455: 12665 1.12 pgoyette if (ndx == 0 || ndx == 1) 12666 1.12 pgoyette p = "int"; 12667 1.12 pgoyette break; 12668 1.12 pgoyette /* sys_paccept */ 12669 1.12 pgoyette case 456: 12670 1.12 pgoyette if (ndx == 0 || ndx == 1) 12671 1.12 pgoyette p = "int"; 12672 1.12 pgoyette break; 12673 1.12 pgoyette /* sys_linkat */ 12674 1.12 pgoyette case 457: 12675 1.12 pgoyette if (ndx == 0 || ndx == 1) 12676 1.12 pgoyette p = "int"; 12677 1.12 pgoyette break; 12678 1.12 pgoyette /* sys_renameat */ 12679 1.12 pgoyette case 458: 12680 1.12 pgoyette if (ndx == 0 || ndx == 1) 12681 1.12 pgoyette p = "int"; 12682 1.12 pgoyette break; 12683 1.12 pgoyette /* sys_mkfifoat */ 12684 1.12 pgoyette case 459: 12685 1.12 pgoyette if (ndx == 0 || ndx == 1) 12686 1.12 pgoyette p = "int"; 12687 1.12 pgoyette break; 12688 1.12 pgoyette /* sys_mknodat */ 12689 1.12 pgoyette case 460: 12690 1.12 pgoyette if (ndx == 0 || ndx == 1) 12691 1.12 pgoyette p = "int"; 12692 1.12 pgoyette break; 12693 1.12 pgoyette /* sys_mkdirat */ 12694 1.12 pgoyette case 461: 12695 1.12 pgoyette if (ndx == 0 || ndx == 1) 12696 1.12 pgoyette p = "int"; 12697 1.12 pgoyette break; 12698 1.12 pgoyette /* sys_faccessat */ 12699 1.12 pgoyette case 462: 12700 1.12 pgoyette if (ndx == 0 || ndx == 1) 12701 1.12 pgoyette p = "int"; 12702 1.12 pgoyette break; 12703 1.12 pgoyette /* sys_fchmodat */ 12704 1.12 pgoyette case 463: 12705 1.12 pgoyette if (ndx == 0 || ndx == 1) 12706 1.12 pgoyette p = "int"; 12707 1.12 pgoyette break; 12708 1.12 pgoyette /* sys_fchownat */ 12709 1.12 pgoyette case 464: 12710 1.12 pgoyette if (ndx == 0 || ndx == 1) 12711 1.12 pgoyette p = "int"; 12712 1.12 pgoyette break; 12713 1.12 pgoyette /* sys_fexecve */ 12714 1.12 pgoyette case 465: 12715 1.12 pgoyette if (ndx == 0 || ndx == 1) 12716 1.12 pgoyette p = "int"; 12717 1.12 pgoyette break; 12718 1.12 pgoyette /* sys_fstatat */ 12719 1.12 pgoyette case 466: 12720 1.12 pgoyette if (ndx == 0 || ndx == 1) 12721 1.12 pgoyette p = "int"; 12722 1.12 pgoyette break; 12723 1.12 pgoyette /* sys_utimensat */ 12724 1.12 pgoyette case 467: 12725 1.12 pgoyette if (ndx == 0 || ndx == 1) 12726 1.12 pgoyette p = "int"; 12727 1.12 pgoyette break; 12728 1.12 pgoyette /* sys_openat */ 12729 1.12 pgoyette case 468: 12730 1.12 pgoyette if (ndx == 0 || ndx == 1) 12731 1.12 pgoyette p = "int"; 12732 1.12 pgoyette break; 12733 1.12 pgoyette /* sys_readlinkat */ 12734 1.12 pgoyette case 469: 12735 1.12 pgoyette if (ndx == 0 || ndx == 1) 12736 1.12 pgoyette p = "ssize_t"; 12737 1.12 pgoyette break; 12738 1.12 pgoyette /* sys_symlinkat */ 12739 1.12 pgoyette case 470: 12740 1.12 pgoyette if (ndx == 0 || ndx == 1) 12741 1.12 pgoyette p = "int"; 12742 1.12 pgoyette break; 12743 1.12 pgoyette /* sys_unlinkat */ 12744 1.12 pgoyette case 471: 12745 1.12 pgoyette if (ndx == 0 || ndx == 1) 12746 1.12 pgoyette p = "int"; 12747 1.12 pgoyette break; 12748 1.12 pgoyette /* sys_futimens */ 12749 1.12 pgoyette case 472: 12750 1.12 pgoyette if (ndx == 0 || ndx == 1) 12751 1.12 pgoyette p = "int"; 12752 1.12 pgoyette break; 12753 1.12 pgoyette /* sys___quotactl */ 12754 1.12 pgoyette case 473: 12755 1.12 pgoyette if (ndx == 0 || ndx == 1) 12756 1.12 pgoyette p = "int"; 12757 1.12 pgoyette break; 12758 1.12 pgoyette /* sys_posix_spawn */ 12759 1.12 pgoyette case 474: 12760 1.12 pgoyette if (ndx == 0 || ndx == 1) 12761 1.12 pgoyette p = "int"; 12762 1.12 pgoyette break; 12763 1.12 pgoyette /* sys_recvmmsg */ 12764 1.12 pgoyette case 475: 12765 1.12 pgoyette if (ndx == 0 || ndx == 1) 12766 1.12 pgoyette p = "int"; 12767 1.12 pgoyette break; 12768 1.12 pgoyette /* sys_sendmmsg */ 12769 1.12 pgoyette case 476: 12770 1.12 pgoyette if (ndx == 0 || ndx == 1) 12771 1.12 pgoyette p = "int"; 12772 1.12 pgoyette break; 12773 1.12 pgoyette /* sys_clock_nanosleep */ 12774 1.12 pgoyette case 477: 12775 1.12 pgoyette if (ndx == 0 || ndx == 1) 12776 1.12 pgoyette p = "int"; 12777 1.12 pgoyette break; 12778 1.12 pgoyette /* sys____lwp_park60 */ 12779 1.12 pgoyette case 478: 12780 1.12 pgoyette if (ndx == 0 || ndx == 1) 12781 1.12 pgoyette p = "int"; 12782 1.12 pgoyette break; 12783 1.12 pgoyette /* sys_posix_fallocate */ 12784 1.12 pgoyette case 479: 12785 1.12 pgoyette if (ndx == 0 || ndx == 1) 12786 1.12 pgoyette p = "int"; 12787 1.12 pgoyette break; 12788 1.12 pgoyette /* sys_fdiscard */ 12789 1.12 pgoyette case 480: 12790 1.12 pgoyette if (ndx == 0 || ndx == 1) 12791 1.12 pgoyette p = "int"; 12792 1.12 pgoyette break; 12793 1.16 christos /* sys_wait6 */ 12794 1.16 christos case 481: 12795 1.16 christos if (ndx == 0 || ndx == 1) 12796 1.16 christos p = "int"; 12797 1.16 christos break; 12798 1.19 christos /* sys_clock_getcpuclockid2 */ 12799 1.19 christos case 482: 12800 1.19 christos if (ndx == 0 || ndx == 1) 12801 1.19 christos p = "int"; 12802 1.19 christos break; 12803 1.33 christos /* sys___getvfsstat90 */ 12804 1.33 christos case 483: 12805 1.33 christos if (ndx == 0 || ndx == 1) 12806 1.33 christos p = "int"; 12807 1.33 christos break; 12808 1.33 christos /* sys___statvfs190 */ 12809 1.33 christos case 484: 12810 1.33 christos if (ndx == 0 || ndx == 1) 12811 1.33 christos p = "int"; 12812 1.33 christos break; 12813 1.33 christos /* sys___fstatvfs190 */ 12814 1.33 christos case 485: 12815 1.33 christos if (ndx == 0 || ndx == 1) 12816 1.33 christos p = "int"; 12817 1.33 christos break; 12818 1.33 christos /* sys___fhstatvfs190 */ 12819 1.33 christos case 486: 12820 1.33 christos if (ndx == 0 || ndx == 1) 12821 1.33 christos p = "int"; 12822 1.33 christos break; 12823 1.39 christos /* sys___acl_get_link */ 12824 1.39 christos case 487: 12825 1.39 christos if (ndx == 0 || ndx == 1) 12826 1.39 christos p = "int"; 12827 1.39 christos break; 12828 1.39 christos /* sys___acl_set_link */ 12829 1.39 christos case 488: 12830 1.39 christos if (ndx == 0 || ndx == 1) 12831 1.39 christos p = "int"; 12832 1.39 christos break; 12833 1.39 christos /* sys___acl_delete_link */ 12834 1.39 christos case 489: 12835 1.39 christos if (ndx == 0 || ndx == 1) 12836 1.39 christos p = "int"; 12837 1.39 christos break; 12838 1.39 christos /* sys___acl_aclcheck_link */ 12839 1.39 christos case 490: 12840 1.39 christos if (ndx == 0 || ndx == 1) 12841 1.39 christos p = "int"; 12842 1.39 christos break; 12843 1.39 christos /* sys___acl_get_file */ 12844 1.39 christos case 491: 12845 1.39 christos if (ndx == 0 || ndx == 1) 12846 1.39 christos p = "int"; 12847 1.39 christos break; 12848 1.39 christos /* sys___acl_set_file */ 12849 1.39 christos case 492: 12850 1.39 christos if (ndx == 0 || ndx == 1) 12851 1.39 christos p = "int"; 12852 1.39 christos break; 12853 1.39 christos /* sys___acl_get_fd */ 12854 1.39 christos case 493: 12855 1.39 christos if (ndx == 0 || ndx == 1) 12856 1.39 christos p = "int"; 12857 1.39 christos break; 12858 1.39 christos /* sys___acl_set_fd */ 12859 1.39 christos case 494: 12860 1.39 christos if (ndx == 0 || ndx == 1) 12861 1.39 christos p = "int"; 12862 1.39 christos break; 12863 1.39 christos /* sys___acl_delete_file */ 12864 1.39 christos case 495: 12865 1.39 christos if (ndx == 0 || ndx == 1) 12866 1.39 christos p = "int"; 12867 1.39 christos break; 12868 1.39 christos /* sys___acl_delete_fd */ 12869 1.39 christos case 496: 12870 1.39 christos if (ndx == 0 || ndx == 1) 12871 1.39 christos p = "int"; 12872 1.39 christos break; 12873 1.39 christos /* sys___acl_aclcheck_file */ 12874 1.39 christos case 497: 12875 1.39 christos if (ndx == 0 || ndx == 1) 12876 1.39 christos p = "int"; 12877 1.39 christos break; 12878 1.39 christos /* sys___acl_aclcheck_fd */ 12879 1.39 christos case 498: 12880 1.39 christos if (ndx == 0 || ndx == 1) 12881 1.39 christos p = "int"; 12882 1.39 christos break; 12883 1.39 christos /* sys_lpathconf */ 12884 1.39 christos case 499: 12885 1.39 christos if (ndx == 0 || ndx == 1) 12886 1.39 christos p = "long"; 12887 1.39 christos break; 12888 1.50 christos /* sys_memfd_create */ 12889 1.50 christos case 500: 12890 1.50 christos if (ndx == 0 || ndx == 1) 12891 1.50 christos p = "int"; 12892 1.50 christos break; 12893 1.51 christos /* sys___kevent100 */ 12894 1.51 christos case 501: 12895 1.51 christos if (ndx == 0 || ndx == 1) 12896 1.51 christos p = "int"; 12897 1.51 christos break; 12898 1.51 christos /* sys_epoll_create1 */ 12899 1.51 christos case 502: 12900 1.51 christos if (ndx == 0 || ndx == 1) 12901 1.51 christos p = "int"; 12902 1.51 christos break; 12903 1.51 christos /* sys_epoll_ctl */ 12904 1.51 christos case 503: 12905 1.51 christos if (ndx == 0 || ndx == 1) 12906 1.51 christos p = "int"; 12907 1.51 christos break; 12908 1.51 christos /* sys_epoll_pwait2 */ 12909 1.51 christos case 504: 12910 1.51 christos if (ndx == 0 || ndx == 1) 12911 1.51 christos p = "int"; 12912 1.51 christos break; 12913 1.53 christos /* sys___dup3100 */ 12914 1.52 christos case 505: 12915 1.52 christos if (ndx == 0 || ndx == 1) 12916 1.52 christos p = "int"; 12917 1.52 christos break; 12918 1.54 christos /* sys_semtimedop */ 12919 1.54 christos case 506: 12920 1.54 christos if (ndx == 0 || ndx == 1) 12921 1.54 christos p = "int"; 12922 1.54 christos break; 12923 1.12 pgoyette default: 12924 1.12 pgoyette break; 12925 1.12 pgoyette }; 12926 1.12 pgoyette if (p != NULL) 12927 1.12 pgoyette strlcpy(desc, p, descsz); 12928 1.12 pgoyette } 12929