Home | History | Annotate | Line # | Download | only in alpha
linux_syscallargs.h revision 1.42
      1 /* $NetBSD: linux_syscallargs.h,v 1.42 2002/02/18 16:36:21 christos Exp $ */
      2 
      3 /*
      4  * System call argument lists.
      5  *
      6  * DO NOT EDIT-- this file is automatically generated.
      7  * created from	NetBSD: syscalls.master,v 1.38 2002/02/18 16:35:57 christos Exp
      8  */
      9 
     10 #ifndef _LINUX_SYS__SYSCALLARGS_H_
     11 #define	_LINUX_SYS__SYSCALLARGS_H_
     12 
     13 #ifdef	syscallarg
     14 #undef	syscallarg
     15 #endif
     16 
     17 #define	syscallarg(x)							\
     18 	union {								\
     19 		register_t pad;						\
     20 		struct { x datum; } le;					\
     21 		struct { /* LINTED zero array dimension */		\
     22 			int8_t pad[  /* CONSTCOND */			\
     23 				(sizeof (register_t) < sizeof (x))	\
     24 				? 0					\
     25 				: sizeof (register_t) - sizeof (x)];	\
     26 			x datum;					\
     27 		} be;							\
     28 	}
     29 
     30 struct osf1_sys_wait4_args {
     31 	syscallarg(int) pid;
     32 	syscallarg(int *) status;
     33 	syscallarg(int) options;
     34 	syscallarg(struct osf1_rusage *) rusage;
     35 };
     36 
     37 struct linux_sys_creat_args {
     38 	syscallarg(const char *) path;
     39 	syscallarg(mode_t) mode;
     40 };
     41 
     42 struct linux_sys_link_args {
     43 	syscallarg(const char *) path;
     44 	syscallarg(const char *) link;
     45 };
     46 
     47 struct linux_sys_unlink_args {
     48 	syscallarg(const char *) path;
     49 };
     50 
     51 struct linux_sys_chdir_args {
     52 	syscallarg(const char *) path;
     53 };
     54 
     55 struct linux_sys_mknod_args {
     56 	syscallarg(const char *) path;
     57 	syscallarg(int) mode;
     58 	syscallarg(int) dev;
     59 };
     60 
     61 struct linux_sys_chmod_args {
     62 	syscallarg(const char *) path;
     63 	syscallarg(int) mode;
     64 };
     65 
     66 struct linux_sys_brk_args {
     67 	syscallarg(char *) nsize;
     68 };
     69 
     70 struct osf1_sys_mount_args {
     71 	syscallarg(int) type;
     72 	syscallarg(const char *) path;
     73 	syscallarg(int) flags;
     74 	syscallarg(caddr_t) data;
     75 };
     76 
     77 struct linux_sys_ptrace_args {
     78 	syscallarg(long) request;
     79 	syscallarg(long) pid;
     80 	syscallarg(long) addr;
     81 	syscallarg(long) data;
     82 };
     83 
     84 struct linux_sys_access_args {
     85 	syscallarg(const char *) path;
     86 	syscallarg(int) flags;
     87 };
     88 
     89 struct linux_sys_kill_args {
     90 	syscallarg(int) pid;
     91 	syscallarg(int) signum;
     92 };
     93 
     94 struct osf1_sys_set_program_attributes_args {
     95 	syscallarg(caddr_t) taddr;
     96 	syscallarg(unsigned long) tsize;
     97 	syscallarg(caddr_t) daddr;
     98 	syscallarg(unsigned long) dsize;
     99 };
    100 
    101 struct linux_sys_open_args {
    102 	syscallarg(const char *) path;
    103 	syscallarg(int) flags;
    104 	syscallarg(int) mode;
    105 };
    106 
    107 struct linux_sys_sigpending_args {
    108 	syscallarg(linux_old_sigset_t *) set;
    109 };
    110 
    111 struct linux_sys_ioctl_args {
    112 	syscallarg(int) fd;
    113 	syscallarg(u_long) com;
    114 	syscallarg(caddr_t) data;
    115 };
    116 
    117 struct linux_sys_symlink_args {
    118 	syscallarg(const char *) path;
    119 	syscallarg(const char *) to;
    120 };
    121 
    122 struct linux_sys_readlink_args {
    123 	syscallarg(const char *) name;
    124 	syscallarg(char *) buf;
    125 	syscallarg(int) count;
    126 };
    127 
    128 struct linux_sys_execve_args {
    129 	syscallarg(const char *) path;
    130 	syscallarg(char **) argp;
    131 	syscallarg(char **) envp;
    132 };
    133 
    134 struct linux_sys_stat_args {
    135 	syscallarg(const char *) path;
    136 	syscallarg(struct linux_stat *) sp;
    137 };
    138 
    139 struct linux_sys_lstat_args {
    140 	syscallarg(const char *) path;
    141 	syscallarg(struct linux_stat *) sp;
    142 };
    143 
    144 struct osf1_sys_setitimer_args {
    145 	syscallarg(u_int) which;
    146 	syscallarg(struct osf1_itimerval *) itv;
    147 	syscallarg(struct osf1_itimerval *) oitv;
    148 };
    149 
    150 struct linux_sys_fstat_args {
    151 	syscallarg(int) fd;
    152 	syscallarg(struct linux_stat *) sp;
    153 };
    154 
    155 struct linux_sys_fcntl_args {
    156 	syscallarg(int) fd;
    157 	syscallarg(int) cmd;
    158 	syscallarg(void *) arg;
    159 };
    160 
    161 struct osf1_sys_select_args {
    162 	syscallarg(u_int) nd;
    163 	syscallarg(fd_set *) in;
    164 	syscallarg(fd_set *) ou;
    165 	syscallarg(fd_set *) ex;
    166 	syscallarg(struct osf1_timeval *) tv;
    167 };
    168 
    169 struct linux_sys_socket_args {
    170 	syscallarg(int) domain;
    171 	syscallarg(int) type;
    172 	syscallarg(int) protocol;
    173 };
    174 
    175 struct linux_sys_connect_args {
    176 	syscallarg(int) s;
    177 	syscallarg(const struct osockaddr *) name;
    178 	syscallarg(unsigned int) namelen;
    179 };
    180 
    181 struct linux_sys_accept_args {
    182 	syscallarg(int) s;
    183 	syscallarg(struct osockaddr *) name;
    184 	syscallarg(int *) anamelen;
    185 };
    186 
    187 struct linux_sys_send_args {
    188 	syscallarg(int) s;
    189 	syscallarg(caddr_t) buf;
    190 	syscallarg(int) len;
    191 	syscallarg(int) flags;
    192 };
    193 
    194 struct linux_sys_recv_args {
    195 	syscallarg(int) s;
    196 	syscallarg(caddr_t) buf;
    197 	syscallarg(int) len;
    198 	syscallarg(int) flags;
    199 };
    200 
    201 struct linux_sys_sigreturn_args {
    202 	syscallarg(struct linux_sigframe *) sfp;
    203 };
    204 
    205 struct linux_sys_bind_args {
    206 	syscallarg(int) s;
    207 	syscallarg(const struct osockaddr *) name;
    208 	syscallarg(unsigned int) namelen;
    209 };
    210 
    211 struct linux_sys_setsockopt_args {
    212 	syscallarg(int) s;
    213 	syscallarg(int) level;
    214 	syscallarg(int) optname;
    215 	syscallarg(void *) optval;
    216 	syscallarg(int) optlen;
    217 };
    218 
    219 struct linux_sys_sigsuspend_args {
    220 	syscallarg(caddr_t) restart;
    221 	syscallarg(int) oldmask;
    222 	syscallarg(int) mask;
    223 };
    224 
    225 struct linux_sys_recvmsg_args {
    226 	syscallarg(int) s;
    227 	syscallarg(struct msghdr *) msg;
    228 	syscallarg(int) flags;
    229 };
    230 
    231 struct linux_sys_sendmsg_args {
    232 	syscallarg(int) s;
    233 	syscallarg(const struct msghdr *) msg;
    234 	syscallarg(int) flags;
    235 };
    236 
    237 struct osf1_sys_gettimeofday_args {
    238 	syscallarg(struct osf1_timeval *) tv;
    239 	syscallarg(struct osf1_timezone *) tzp;
    240 };
    241 
    242 struct osf1_sys_getrusage_args {
    243 	syscallarg(int) who;
    244 	syscallarg(struct osf1_rusage *) rusage;
    245 };
    246 
    247 struct linux_sys_getsockopt_args {
    248 	syscallarg(int) s;
    249 	syscallarg(int) level;
    250 	syscallarg(int) optname;
    251 	syscallarg(void *) optval;
    252 	syscallarg(int *) optlen;
    253 };
    254 
    255 struct osf1_sys_settimeofday_args {
    256 	syscallarg(struct osf1_timeval *) tv;
    257 	syscallarg(struct osf1_timezone *) tzp;
    258 };
    259 
    260 struct linux_sys_recvfrom_args {
    261 	syscallarg(int) s;
    262 	syscallarg(void *) buf;
    263 	syscallarg(int) len;
    264 	syscallarg(int) flags;
    265 	syscallarg(struct osockaddr *) from;
    266 	syscallarg(int *) fromlenaddr;
    267 };
    268 
    269 struct linux_sys_rename_args {
    270 	syscallarg(const char *) from;
    271 	syscallarg(const char *) to;
    272 };
    273 
    274 struct linux_sys_truncate_args {
    275 	syscallarg(const char *) path;
    276 	syscallarg(long) length;
    277 };
    278 
    279 struct linux_sys_sendto_args {
    280 	syscallarg(int) s;
    281 	syscallarg(void *) msg;
    282 	syscallarg(int) len;
    283 	syscallarg(int) flags;
    284 	syscallarg(struct osockaddr *) to;
    285 	syscallarg(int) tolen;
    286 };
    287 
    288 struct linux_sys_socketpair_args {
    289 	syscallarg(int) domain;
    290 	syscallarg(int) type;
    291 	syscallarg(int) protocol;
    292 	syscallarg(int *) rsv;
    293 };
    294 
    295 struct linux_sys_mkdir_args {
    296 	syscallarg(const char *) path;
    297 	syscallarg(int) mode;
    298 };
    299 
    300 struct linux_sys_rmdir_args {
    301 	syscallarg(const char *) path;
    302 };
    303 
    304 struct osf1_sys_utimes_args {
    305 	syscallarg(const char *) path;
    306 	syscallarg(const struct osf1_timeval *) tptr;
    307 };
    308 
    309 struct linux_sys_getpeername_args {
    310 	syscallarg(int) fdes;
    311 	syscallarg(caddr_t) asa;
    312 	syscallarg(int *) alen;
    313 };
    314 
    315 struct linux_sys_getsockname_args {
    316 	syscallarg(int) fdec;
    317 	syscallarg(caddr_t) asa;
    318 	syscallarg(int *) alen;
    319 };
    320 
    321 struct linux_sys_sigaction_args {
    322 	syscallarg(int) signum;
    323 	syscallarg(const struct linux_old_sigaction *) nsa;
    324 	syscallarg(struct linux_old_sigaction *) osa;
    325 };
    326 
    327 struct osf1_sys_statfs_args {
    328 	syscallarg(const char *) path;
    329 	syscallarg(struct osf1_statfs *) buf;
    330 	syscallarg(int) len;
    331 };
    332 
    333 struct osf1_sys_fstatfs_args {
    334 	syscallarg(int) fd;
    335 	syscallarg(struct osf1_statfs *) buf;
    336 	syscallarg(int) len;
    337 };
    338 
    339 struct linux_sys_setdomainname_args {
    340 	syscallarg(char *) domainname;
    341 	syscallarg(int) len;
    342 };
    343 
    344 struct linux_sys_ugetrlimit_args {
    345 	syscallarg(int) which;
    346 	syscallarg(struct rlimit *) rlp;
    347 };
    348 
    349 struct linux_sys_mmap2_args {
    350 	syscallarg(void *) addr;
    351 	syscallarg(size_t) len;
    352 	syscallarg(int) prot;
    353 	syscallarg(int) flags;
    354 	syscallarg(int) fd;
    355 	syscallarg(off_t) offset;
    356 };
    357 
    358 struct linux_sys_olduname_args {
    359 	syscallarg(struct linux_old_utsname *) up;
    360 };
    361 
    362 struct linux_sys_msync_args {
    363 	syscallarg(caddr_t) addr;
    364 	syscallarg(int) len;
    365 	syscallarg(int) fl;
    366 };
    367 
    368 struct linux_sys_getpgid_args {
    369 	syscallarg(int) pid;
    370 };
    371 
    372 struct osf1_sys_sysinfo_args {
    373 	syscallarg(int) cmd;
    374 	syscallarg(char) buf;
    375 	syscallarg(long) len;
    376 };
    377 
    378 struct osf1_sys_usleep_thread_args {
    379 	syscallarg(struct osf1_timeval *) sleep;
    380 	syscallarg(struct osf1_timeval *) slept;
    381 };
    382 
    383 struct osf1_sys_getsysinfo_args {
    384 	syscallarg(u_long) op;
    385 	syscallarg(caddr_t) buffer;
    386 	syscallarg(u_long) nbytes;
    387 	syscallarg(caddr_t) arg;
    388 	syscallarg(u_long) flag;
    389 };
    390 
    391 struct osf1_sys_setsysinfo_args {
    392 	syscallarg(u_long) op;
    393 	syscallarg(caddr_t) buffer;
    394 	syscallarg(u_long) nbytes;
    395 	syscallarg(caddr_t) arg;
    396 	syscallarg(u_long) flag;
    397 };
    398 
    399 struct linux_sys_fdatasync_args {
    400 	syscallarg(int) fd;
    401 };
    402 
    403 struct linux_sys_swapoff_args {
    404 	syscallarg(const char *) path;
    405 };
    406 
    407 struct linux_sys_getdents_args {
    408 	syscallarg(int) fd;
    409 	syscallarg(struct linux_dirent *) dent;
    410 	syscallarg(unsigned int) count;
    411 };
    412 
    413 struct linux_sys_reboot_args {
    414 	syscallarg(int) magic1;
    415 	syscallarg(int) magic2;
    416 	syscallarg(int) cmd;
    417 	syscallarg(void *) arg;
    418 };
    419 
    420 struct linux_sys_clone_args {
    421 	syscallarg(int) flags;
    422 	syscallarg(void *) stack;
    423 };
    424 
    425 struct linux_sys_uselib_args {
    426 	syscallarg(const char *) path;
    427 };
    428 
    429 struct linux_sys_sysinfo_args {
    430 	syscallarg(struct linux_sysinfo *) arg;
    431 };
    432 
    433 struct linux_sys___sysctl_args {
    434 	syscallarg(struct linux___sysctl *) lsp;
    435 };
    436 
    437 struct linux_sys_swapon_args {
    438 	syscallarg(const char *) name;
    439 };
    440 
    441 struct linux_sys_times_args {
    442 	syscallarg(struct times *) tms;
    443 };
    444 
    445 struct linux_sys_personality_args {
    446 	syscallarg(int) per;
    447 };
    448 
    449 struct linux_sys_setfsuid_args {
    450 	syscallarg(uid_t) uid;
    451 };
    452 
    453 struct linux_sys_statfs_args {
    454 	syscallarg(const char *) path;
    455 	syscallarg(struct linux_statfs *) sp;
    456 };
    457 
    458 struct linux_sys_fstatfs_args {
    459 	syscallarg(int) fd;
    460 	syscallarg(struct linux_statfs *) sp;
    461 };
    462 
    463 struct linux_sys_sched_setparam_args {
    464 	syscallarg(pid_t) pid;
    465 	syscallarg(const struct linux_sched_param *) sp;
    466 };
    467 
    468 struct linux_sys_sched_getparam_args {
    469 	syscallarg(pid_t) pid;
    470 	syscallarg(struct linux_sched_param *) sp;
    471 };
    472 
    473 struct linux_sys_sched_setscheduler_args {
    474 	syscallarg(pid_t) pid;
    475 	syscallarg(int) policy;
    476 	syscallarg(const struct linux_sched_param *) sp;
    477 };
    478 
    479 struct linux_sys_sched_getscheduler_args {
    480 	syscallarg(pid_t) pid;
    481 };
    482 
    483 struct linux_sys_sched_get_priority_max_args {
    484 	syscallarg(int) policy;
    485 };
    486 
    487 struct linux_sys_sched_get_priority_min_args {
    488 	syscallarg(int) policy;
    489 };
    490 
    491 struct linux_sys_uname_args {
    492 	syscallarg(struct linux_utsname *) up;
    493 };
    494 
    495 struct linux_sys_mremap_args {
    496 	syscallarg(void *) old_address;
    497 	syscallarg(size_t) old_size;
    498 	syscallarg(size_t) new_size;
    499 	syscallarg(u_long) flags;
    500 };
    501 
    502 struct linux_sys_setresuid_args {
    503 	syscallarg(uid_t) ruid;
    504 	syscallarg(uid_t) euid;
    505 	syscallarg(uid_t) suid;
    506 };
    507 
    508 struct linux_sys_getresuid_args {
    509 	syscallarg(uid_t *) ruid;
    510 	syscallarg(uid_t *) euid;
    511 	syscallarg(uid_t *) suid;
    512 };
    513 
    514 struct linux_sys_pread_args {
    515 	syscallarg(int) fd;
    516 	syscallarg(char *) buf;
    517 	syscallarg(size_t) nbyte;
    518 	syscallarg(linux_off_t) offset;
    519 };
    520 
    521 struct linux_sys_pwrite_args {
    522 	syscallarg(int) fd;
    523 	syscallarg(char *) buf;
    524 	syscallarg(size_t) nbyte;
    525 	syscallarg(linux_off_t) offset;
    526 };
    527 
    528 struct linux_sys_rt_sigreturn_args {
    529 	syscallarg(struct linux_rt_sigframe *) sfp;
    530 };
    531 
    532 struct linux_sys_rt_sigaction_args {
    533 	syscallarg(int) signum;
    534 	syscallarg(const struct linux_sigaction *) nsa;
    535 	syscallarg(struct linux_sigaction *) osa;
    536 	syscallarg(size_t) sigsetsize;
    537 };
    538 
    539 struct linux_sys_rt_sigprocmask_args {
    540 	syscallarg(int) how;
    541 	syscallarg(const linux_sigset_t *) set;
    542 	syscallarg(linux_sigset_t *) oset;
    543 	syscallarg(size_t) sigsetsize;
    544 };
    545 
    546 struct linux_sys_rt_sigpending_args {
    547 	syscallarg(linux_sigset_t *) set;
    548 	syscallarg(size_t) sigsetsize;
    549 };
    550 
    551 struct linux_sys_rt_queueinfo_args {
    552 	syscallarg(int) pid;
    553 	syscallarg(int) signum;
    554 	syscallarg(linux_siginfo_t *) uinfo;
    555 };
    556 
    557 struct linux_sys_rt_sigsuspend_args {
    558 	syscallarg(linux_sigset_t *) unewset;
    559 	syscallarg(size_t) sigsetsize;
    560 };
    561 
    562 struct linux_sys_select_args {
    563 	syscallarg(int) nfds;
    564 	syscallarg(fd_set *) readfds;
    565 	syscallarg(fd_set *) writefds;
    566 	syscallarg(fd_set *) exceptfds;
    567 	syscallarg(struct timeval *) timeout;
    568 };
    569 
    570 struct linux_sys_wait4_args {
    571 	syscallarg(int) pid;
    572 	syscallarg(int *) status;
    573 	syscallarg(int) options;
    574 	syscallarg(struct rusage *) rusage;
    575 };
    576 
    577 /*
    578  * System call prototypes.
    579  */
    580 
    581 int	linux_sys_nosys(struct proc *, void *, register_t *);
    582 int	sys_exit(struct proc *, void *, register_t *);
    583 int	sys_fork(struct proc *, void *, register_t *);
    584 int	sys_read(struct proc *, void *, register_t *);
    585 int	sys_write(struct proc *, void *, register_t *);
    586 int	sys_close(struct proc *, void *, register_t *);
    587 int	osf1_sys_wait4(struct proc *, void *, register_t *);
    588 int	linux_sys_creat(struct proc *, void *, register_t *);
    589 int	linux_sys_link(struct proc *, void *, register_t *);
    590 int	linux_sys_unlink(struct proc *, void *, register_t *);
    591 int	linux_sys_chdir(struct proc *, void *, register_t *);
    592 int	sys_fchdir(struct proc *, void *, register_t *);
    593 int	linux_sys_mknod(struct proc *, void *, register_t *);
    594 int	linux_sys_chmod(struct proc *, void *, register_t *);
    595 int	sys___posix_chown(struct proc *, void *, register_t *);
    596 int	linux_sys_brk(struct proc *, void *, register_t *);
    597 int	compat_43_sys_lseek(struct proc *, void *, register_t *);
    598 int	sys_getpid_with_ppid(struct proc *, void *, register_t *);
    599 int	osf1_sys_mount(struct proc *, void *, register_t *);
    600 int	sys_setuid(struct proc *, void *, register_t *);
    601 int	sys_getuid_with_euid(struct proc *, void *, register_t *);
    602 int	linux_sys_ptrace(struct proc *, void *, register_t *);
    603 int	linux_sys_access(struct proc *, void *, register_t *);
    604 int	sys_sync(struct proc *, void *, register_t *);
    605 int	linux_sys_kill(struct proc *, void *, register_t *);
    606 int	sys_setpgid(struct proc *, void *, register_t *);
    607 int	sys_dup(struct proc *, void *, register_t *);
    608 int	linux_sys_pipe(struct proc *, void *, register_t *);
    609 int	osf1_sys_set_program_attributes(struct proc *, void *, register_t *);
    610 int	linux_sys_open(struct proc *, void *, register_t *);
    611 int	sys_getgid_with_egid(struct proc *, void *, register_t *);
    612 int	compat_13_sys_sigprocmask(struct proc *, void *, register_t *);
    613 int	sys_acct(struct proc *, void *, register_t *);
    614 int	linux_sys_sigpending(struct proc *, void *, register_t *);
    615 int	linux_sys_ioctl(struct proc *, void *, register_t *);
    616 int	linux_sys_symlink(struct proc *, void *, register_t *);
    617 int	linux_sys_readlink(struct proc *, void *, register_t *);
    618 int	linux_sys_execve(struct proc *, void *, register_t *);
    619 int	sys_umask(struct proc *, void *, register_t *);
    620 int	sys_chroot(struct proc *, void *, register_t *);
    621 int	sys_getpgrp(struct proc *, void *, register_t *);
    622 int	compat_43_sys_getpagesize(struct proc *, void *, register_t *);
    623 int	sys___vfork14(struct proc *, void *, register_t *);
    624 int	linux_sys_stat(struct proc *, void *, register_t *);
    625 int	linux_sys_lstat(struct proc *, void *, register_t *);
    626 int	linux_sys_mmap(struct proc *, void *, register_t *);
    627 int	sys_munmap(struct proc *, void *, register_t *);
    628 int	sys_mprotect(struct proc *, void *, register_t *);
    629 int	sys_getgroups(struct proc *, void *, register_t *);
    630 int	sys_setgroups(struct proc *, void *, register_t *);
    631 int	osf1_sys_setitimer(struct proc *, void *, register_t *);
    632 int	compat_43_sys_gethostname(struct proc *, void *, register_t *);
    633 int	compat_43_sys_sethostname(struct proc *, void *, register_t *);
    634 int	sys_dup2(struct proc *, void *, register_t *);
    635 int	linux_sys_fstat(struct proc *, void *, register_t *);
    636 int	linux_sys_fcntl(struct proc *, void *, register_t *);
    637 int	osf1_sys_select(struct proc *, void *, register_t *);
    638 int	sys_poll(struct proc *, void *, register_t *);
    639 int	sys_fsync(struct proc *, void *, register_t *);
    640 int	sys_setpriority(struct proc *, void *, register_t *);
    641 int	linux_sys_socket(struct proc *, void *, register_t *);
    642 int	linux_sys_connect(struct proc *, void *, register_t *);
    643 int	linux_sys_accept(struct proc *, void *, register_t *);
    644 int	sys_getpriority(struct proc *, void *, register_t *);
    645 int	linux_sys_send(struct proc *, void *, register_t *);
    646 int	linux_sys_recv(struct proc *, void *, register_t *);
    647 int	linux_sys_sigreturn(struct proc *, void *, register_t *);
    648 int	linux_sys_bind(struct proc *, void *, register_t *);
    649 int	linux_sys_setsockopt(struct proc *, void *, register_t *);
    650 int	sys_listen(struct proc *, void *, register_t *);
    651 int	linux_sys_sigsuspend(struct proc *, void *, register_t *);
    652 int	compat_43_sys_sigstack(struct proc *, void *, register_t *);
    653 int	linux_sys_recvmsg(struct proc *, void *, register_t *);
    654 int	linux_sys_sendmsg(struct proc *, void *, register_t *);
    655 int	osf1_sys_gettimeofday(struct proc *, void *, register_t *);
    656 int	osf1_sys_getrusage(struct proc *, void *, register_t *);
    657 int	linux_sys_getsockopt(struct proc *, void *, register_t *);
    658 int	sys_readv(struct proc *, void *, register_t *);
    659 int	sys_writev(struct proc *, void *, register_t *);
    660 int	osf1_sys_settimeofday(struct proc *, void *, register_t *);
    661 int	sys___posix_fchown(struct proc *, void *, register_t *);
    662 int	sys_fchmod(struct proc *, void *, register_t *);
    663 int	linux_sys_recvfrom(struct proc *, void *, register_t *);
    664 int	sys_setreuid(struct proc *, void *, register_t *);
    665 int	sys_setregid(struct proc *, void *, register_t *);
    666 int	linux_sys_rename(struct proc *, void *, register_t *);
    667 int	linux_sys_truncate(struct proc *, void *, register_t *);
    668 int	compat_43_sys_ftruncate(struct proc *, void *, register_t *);
    669 int	sys_flock(struct proc *, void *, register_t *);
    670 int	sys_setgid(struct proc *, void *, register_t *);
    671 int	linux_sys_sendto(struct proc *, void *, register_t *);
    672 int	sys_shutdown(struct proc *, void *, register_t *);
    673 int	linux_sys_socketpair(struct proc *, void *, register_t *);
    674 int	linux_sys_mkdir(struct proc *, void *, register_t *);
    675 int	linux_sys_rmdir(struct proc *, void *, register_t *);
    676 int	osf1_sys_utimes(struct proc *, void *, register_t *);
    677 int	linux_sys_getpeername(struct proc *, void *, register_t *);
    678 int	compat_43_sys_getrlimit(struct proc *, void *, register_t *);
    679 int	compat_43_sys_setrlimit(struct proc *, void *, register_t *);
    680 int	sys_setsid(struct proc *, void *, register_t *);
    681 int	linux_sys_getsockname(struct proc *, void *, register_t *);
    682 int	linux_sys_sigaction(struct proc *, void *, register_t *);
    683 int	compat_43_sys_getdirentries(struct proc *, void *, register_t *);
    684 int	osf1_sys_statfs(struct proc *, void *, register_t *);
    685 int	osf1_sys_fstatfs(struct proc *, void *, register_t *);
    686 int	compat_09_sys_getdomainname(struct proc *, void *, register_t *);
    687 int	linux_sys_setdomainname(struct proc *, void *, register_t *);
    688 int	linux_sys_ugetrlimit(struct proc *, void *, register_t *);
    689 int	linux_sys_mmap2(struct proc *, void *, register_t *);
    690 #ifdef SYSVMSG
    691 int	linux_sys_msgctl(struct proc *, void *, register_t *);
    692 int	sys_msgget(struct proc *, void *, register_t *);
    693 int	sys_msgrcv(struct proc *, void *, register_t *);
    694 int	sys_msgsnd(struct proc *, void *, register_t *);
    695 #else
    696 #endif
    697 #ifdef SYSVSEM
    698 int	linux_sys_semctl(struct proc *, void *, register_t *);
    699 int	sys_semget(struct proc *, void *, register_t *);
    700 int	sys_semop(struct proc *, void *, register_t *);
    701 #else
    702 #endif
    703 int	linux_sys_olduname(struct proc *, void *, register_t *);
    704 int	sys___posix_lchown(struct proc *, void *, register_t *);
    705 #ifdef SYSVSHM
    706 int	linux_sys_shmat(struct proc *, void *, register_t *);
    707 int	linux_sys_shmctl(struct proc *, void *, register_t *);
    708 int	sys_shmdt(struct proc *, void *, register_t *);
    709 int	sys_shmget(struct proc *, void *, register_t *);
    710 #else
    711 #endif
    712 int	linux_sys_msync(struct proc *, void *, register_t *);
    713 int	linux_sys_getpgid(struct proc *, void *, register_t *);
    714 int	sys_getsid(struct proc *, void *, register_t *);
    715 int	osf1_sys_sysinfo(struct proc *, void *, register_t *);
    716 int	osf1_sys_usleep_thread(struct proc *, void *, register_t *);
    717 int	osf1_sys_getsysinfo(struct proc *, void *, register_t *);
    718 int	osf1_sys_setsysinfo(struct proc *, void *, register_t *);
    719 int	linux_sys_fdatasync(struct proc *, void *, register_t *);
    720 int	linux_sys_swapoff(struct proc *, void *, register_t *);
    721 int	linux_sys_getdents(struct proc *, void *, register_t *);
    722 int	linux_sys_reboot(struct proc *, void *, register_t *);
    723 int	linux_sys_clone(struct proc *, void *, register_t *);
    724 #ifdef EXEC_AOUT
    725 int	linux_sys_uselib(struct proc *, void *, register_t *);
    726 #else
    727 #endif
    728 int	sys_mlock(struct proc *, void *, register_t *);
    729 int	sys_munlock(struct proc *, void *, register_t *);
    730 int	sys_mlockall(struct proc *, void *, register_t *);
    731 int	sys_munlockall(struct proc *, void *, register_t *);
    732 int	linux_sys_sysinfo(struct proc *, void *, register_t *);
    733 int	linux_sys___sysctl(struct proc *, void *, register_t *);
    734 int	linux_sys_swapon(struct proc *, void *, register_t *);
    735 int	linux_sys_times(struct proc *, void *, register_t *);
    736 int	linux_sys_personality(struct proc *, void *, register_t *);
    737 int	linux_sys_setfsuid(struct proc *, void *, register_t *);
    738 int	linux_sys_statfs(struct proc *, void *, register_t *);
    739 int	linux_sys_fstatfs(struct proc *, void *, register_t *);
    740 int	linux_sys_sched_setparam(struct proc *, void *, register_t *);
    741 int	linux_sys_sched_getparam(struct proc *, void *, register_t *);
    742 int	linux_sys_sched_setscheduler(struct proc *, void *, register_t *);
    743 int	linux_sys_sched_getscheduler(struct proc *, void *, register_t *);
    744 int	linux_sys_sched_yield(struct proc *, void *, register_t *);
    745 int	linux_sys_sched_get_priority_max(struct proc *, void *, register_t *);
    746 int	linux_sys_sched_get_priority_min(struct proc *, void *, register_t *);
    747 int	linux_sys_uname(struct proc *, void *, register_t *);
    748 int	sys_nanosleep(struct proc *, void *, register_t *);
    749 int	linux_sys_mremap(struct proc *, void *, register_t *);
    750 int	linux_sys_setresuid(struct proc *, void *, register_t *);
    751 int	linux_sys_getresuid(struct proc *, void *, register_t *);
    752 int	linux_sys_pread(struct proc *, void *, register_t *);
    753 int	linux_sys_pwrite(struct proc *, void *, register_t *);
    754 int	linux_sys_rt_sigreturn(struct proc *, void *, register_t *);
    755 int	linux_sys_rt_sigaction(struct proc *, void *, register_t *);
    756 int	linux_sys_rt_sigprocmask(struct proc *, void *, register_t *);
    757 int	linux_sys_rt_sigpending(struct proc *, void *, register_t *);
    758 int	linux_sys_rt_queueinfo(struct proc *, void *, register_t *);
    759 int	linux_sys_rt_sigsuspend(struct proc *, void *, register_t *);
    760 int	linux_sys_select(struct proc *, void *, register_t *);
    761 int	sys_gettimeofday(struct proc *, void *, register_t *);
    762 int	sys_settimeofday(struct proc *, void *, register_t *);
    763 int	sys_getitimer(struct proc *, void *, register_t *);
    764 int	sys_setitimer(struct proc *, void *, register_t *);
    765 int	sys_utimes(struct proc *, void *, register_t *);
    766 int	sys_getrusage(struct proc *, void *, register_t *);
    767 int	linux_sys_wait4(struct proc *, void *, register_t *);
    768 int	sys___getcwd(struct proc *, void *, register_t *);
    769 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
    770