Home | History | Annotate | Line # | Download | only in m68k
linux_syscallargs.h revision 1.28
      1 /* $NetBSD: linux_syscallargs.h,v 1.28 2000/12/27 22:04:36 fvdl 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.27 2000/12/27 22:04:05 fvdl 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 {						\
     22 			int8_t pad[ (sizeof (register_t) < sizeof (x))	\
     23 				? 0					\
     24 				: sizeof (register_t) - sizeof (x)];	\
     25 			x datum;					\
     26 		} be;							\
     27 	}
     28 
     29 struct linux_sys_open_args {
     30 	syscallarg(const char *) path;
     31 	syscallarg(int) flags;
     32 	syscallarg(int) mode;
     33 };
     34 
     35 struct linux_sys_waitpid_args {
     36 	syscallarg(int) pid;
     37 	syscallarg(int *) status;
     38 	syscallarg(int) options;
     39 };
     40 
     41 struct linux_sys_creat_args {
     42 	syscallarg(const char *) path;
     43 	syscallarg(int) mode;
     44 };
     45 
     46 struct linux_sys_unlink_args {
     47 	syscallarg(const char *) path;
     48 };
     49 
     50 struct linux_sys_execve_args {
     51 	syscallarg(const char *) path;
     52 	syscallarg(char **) argp;
     53 	syscallarg(char **) envp;
     54 };
     55 
     56 struct linux_sys_chdir_args {
     57 	syscallarg(const char *) path;
     58 };
     59 
     60 struct linux_sys_time_args {
     61 	syscallarg(linux_time_t *) t;
     62 };
     63 
     64 struct linux_sys_mknod_args {
     65 	syscallarg(const char *) path;
     66 	syscallarg(int) mode;
     67 	syscallarg(int) dev;
     68 };
     69 
     70 struct linux_sys_chmod_args {
     71 	syscallarg(const char *) path;
     72 	syscallarg(int) mode;
     73 };
     74 
     75 struct linux_sys_chown16_args {
     76 	syscallarg(const char *) path;
     77 	syscallarg(int) uid;
     78 	syscallarg(int) gid;
     79 };
     80 
     81 struct linux_sys_stime_args {
     82 	syscallarg(linux_time_t *) t;
     83 };
     84 
     85 struct linux_sys_ptrace_args {
     86 	syscallarg(int) request;
     87 	syscallarg(int) pid;
     88 	syscallarg(int) addr;
     89 	syscallarg(int) data;
     90 };
     91 
     92 struct linux_sys_alarm_args {
     93 	syscallarg(unsigned int) secs;
     94 };
     95 
     96 struct linux_sys_utime_args {
     97 	syscallarg(const char *) path;
     98 	syscallarg(struct linux_utimbuf *) times;
     99 };
    100 
    101 struct linux_sys_access_args {
    102 	syscallarg(const char *) path;
    103 	syscallarg(int) flags;
    104 };
    105 
    106 struct linux_sys_nice_args {
    107 	syscallarg(int) incr;
    108 };
    109 
    110 struct linux_sys_kill_args {
    111 	syscallarg(int) pid;
    112 	syscallarg(int) signum;
    113 };
    114 
    115 struct linux_sys_rename_args {
    116 	syscallarg(const char *) from;
    117 	syscallarg(const char *) to;
    118 };
    119 
    120 struct linux_sys_mkdir_args {
    121 	syscallarg(const char *) path;
    122 	syscallarg(int) mode;
    123 };
    124 
    125 struct linux_sys_rmdir_args {
    126 	syscallarg(const char *) path;
    127 };
    128 
    129 struct linux_sys_pipe_args {
    130 	syscallarg(int *) pfds;
    131 };
    132 
    133 struct linux_sys_times_args {
    134 	syscallarg(struct times *) tms;
    135 };
    136 
    137 struct linux_sys_brk_args {
    138 	syscallarg(char *) nsize;
    139 };
    140 
    141 struct linux_sys_signal_args {
    142 	syscallarg(int) signum;
    143 	syscallarg(linux_handler_t) handler;
    144 };
    145 
    146 struct linux_sys_ioctl_args {
    147 	syscallarg(int) fd;
    148 	syscallarg(u_long) com;
    149 	syscallarg(caddr_t) data;
    150 };
    151 
    152 struct linux_sys_fcntl_args {
    153 	syscallarg(int) fd;
    154 	syscallarg(int) cmd;
    155 	syscallarg(void *) arg;
    156 };
    157 
    158 struct linux_sys_sigaction_args {
    159 	syscallarg(int) signum;
    160 	syscallarg(const struct linux_old_sigaction *) nsa;
    161 	syscallarg(struct linux_old_sigaction *) osa;
    162 };
    163 
    164 struct linux_sys_sigsetmask_args {
    165 	syscallarg(linux_old_sigset_t) mask;
    166 };
    167 
    168 struct linux_sys_setreuid16_args {
    169 	syscallarg(int) ruid;
    170 	syscallarg(int) euid;
    171 };
    172 
    173 struct linux_sys_setregid16_args {
    174 	syscallarg(int) rgid;
    175 	syscallarg(int) egid;
    176 };
    177 
    178 struct linux_sys_sigsuspend_args {
    179 	syscallarg(caddr_t) restart;
    180 	syscallarg(int) oldmask;
    181 	syscallarg(int) mask;
    182 };
    183 
    184 struct linux_sys_sigpending_args {
    185 	syscallarg(linux_old_sigset_t *) set;
    186 };
    187 
    188 struct linux_sys_getgroups16_args {
    189 	syscallarg(u_int) gidsetsize;
    190 	syscallarg(linux_gid_t *) gidset;
    191 };
    192 
    193 struct linux_sys_setgroups16_args {
    194 	syscallarg(u_int) gidsetsize;
    195 	syscallarg(linux_gid_t *) gidset;
    196 };
    197 
    198 struct linux_sys_oldselect_args {
    199 	syscallarg(struct linux_oldselect *) lsp;
    200 };
    201 
    202 struct linux_sys_symlink_args {
    203 	syscallarg(const char *) path;
    204 	syscallarg(const char *) to;
    205 };
    206 
    207 struct linux_sys_readlink_args {
    208 	syscallarg(const char *) name;
    209 	syscallarg(char *) buf;
    210 	syscallarg(int) count;
    211 };
    212 
    213 struct linux_sys_uselib_args {
    214 	syscallarg(const char *) path;
    215 };
    216 
    217 struct linux_sys_swapon_args {
    218 	syscallarg(char *) name;
    219 };
    220 
    221 struct linux_sys_reboot_args {
    222 	syscallarg(int) magic1;
    223 	syscallarg(int) magic2;
    224 	syscallarg(int) cmd;
    225 	syscallarg(void *) arg;
    226 };
    227 
    228 struct linux_sys_readdir_args {
    229 	syscallarg(int) fd;
    230 	syscallarg(caddr_t) dent;
    231 	syscallarg(unsigned int) count;
    232 };
    233 
    234 struct linux_sys_old_mmap_args {
    235 	syscallarg(struct linux_oldmmap *) lmp;
    236 };
    237 
    238 struct linux_sys_truncate_args {
    239 	syscallarg(const char *) path;
    240 	syscallarg(long) length;
    241 };
    242 
    243 struct linux_sys_fchown16_args {
    244 	syscallarg(int) fd;
    245 	syscallarg(int) uid;
    246 	syscallarg(int) gid;
    247 };
    248 
    249 struct linux_sys_statfs_args {
    250 	syscallarg(const char *) path;
    251 	syscallarg(struct linux_statfs *) sp;
    252 };
    253 
    254 struct linux_sys_fstatfs_args {
    255 	syscallarg(int) fd;
    256 	syscallarg(struct linux_statfs *) sp;
    257 };
    258 
    259 struct linux_sys_socketcall_args {
    260 	syscallarg(int) what;
    261 	syscallarg(void *) args;
    262 };
    263 
    264 struct linux_sys_stat_args {
    265 	syscallarg(const char *) path;
    266 	syscallarg(struct linux_stat *) sp;
    267 };
    268 
    269 struct linux_sys_lstat_args {
    270 	syscallarg(const char *) path;
    271 	syscallarg(struct linux_stat *) sp;
    272 };
    273 
    274 struct linux_sys_fstat_args {
    275 	syscallarg(int) fd;
    276 	syscallarg(struct linux_stat *) sp;
    277 };
    278 
    279 struct linux_sys_wait4_args {
    280 	syscallarg(int) pid;
    281 	syscallarg(int *) status;
    282 	syscallarg(int) options;
    283 	syscallarg(struct rusage *) rusage;
    284 };
    285 
    286 struct linux_sys_swapoff_args {
    287 	syscallarg(const char *) path;
    288 };
    289 
    290 struct linux_sys_sysinfo_args {
    291 	syscallarg(struct linux_sysinfo *) arg;
    292 };
    293 
    294 struct linux_sys_ipc_args {
    295 	syscallarg(int) what;
    296 	syscallarg(int) a1;
    297 	syscallarg(int) a2;
    298 	syscallarg(int) a3;
    299 	syscallarg(caddr_t) ptr;
    300 };
    301 
    302 struct linux_sys_clone_args {
    303 	syscallarg(int) flags;
    304 	syscallarg(void *) stack;
    305 };
    306 
    307 struct linux_sys_setdomainname_args {
    308 	syscallarg(char *) domainname;
    309 	syscallarg(int) len;
    310 };
    311 
    312 struct linux_sys_uname_args {
    313 	syscallarg(struct linux_utsname *) up;
    314 };
    315 
    316 struct linux_sys_cacheflush_args {
    317 	syscallarg(unsigned long) addr;
    318 	syscallarg(int) scope;
    319 	syscallarg(int) cache;
    320 	syscallarg(unsigned long) len;
    321 };
    322 
    323 struct linux_sys_sigprocmask_args {
    324 	syscallarg(int) how;
    325 	syscallarg(const linux_old_sigset_t *) set;
    326 	syscallarg(linux_old_sigset_t *) oset;
    327 };
    328 
    329 struct linux_sys_getpgid_args {
    330 	syscallarg(int) pid;
    331 };
    332 
    333 struct linux_sys_personality_args {
    334 	syscallarg(int) per;
    335 };
    336 
    337 struct linux_sys_llseek_args {
    338 	syscallarg(int) fd;
    339 	syscallarg(u_int32_t) ohigh;
    340 	syscallarg(u_int32_t) olow;
    341 	syscallarg(caddr_t) res;
    342 	syscallarg(int) whence;
    343 };
    344 
    345 struct linux_sys_getdents_args {
    346 	syscallarg(int) fd;
    347 	syscallarg(struct linux_dirent *) dent;
    348 	syscallarg(unsigned int) count;
    349 };
    350 
    351 struct linux_sys_select_args {
    352 	syscallarg(int) nfds;
    353 	syscallarg(fd_set *) readfds;
    354 	syscallarg(fd_set *) writefds;
    355 	syscallarg(fd_set *) exceptfds;
    356 	syscallarg(struct timeval *) timeout;
    357 };
    358 
    359 struct linux_sys_msync_args {
    360 	syscallarg(caddr_t) addr;
    361 	syscallarg(int) len;
    362 	syscallarg(int) fl;
    363 };
    364 
    365 struct linux_sys_fdatasync_args {
    366 	syscallarg(int) fd;
    367 };
    368 
    369 struct linux_sys___sysctl_args {
    370 	syscallarg(struct linux___sysctl *) lsp;
    371 };
    372 
    373 struct linux_sys_sched_setparam_args {
    374 	syscallarg(pid_t) pid;
    375 	syscallarg(const struct linux_sched_param *) sp;
    376 };
    377 
    378 struct linux_sys_sched_getparam_args {
    379 	syscallarg(pid_t) pid;
    380 	syscallarg(struct linux_sched_param *) sp;
    381 };
    382 
    383 struct linux_sys_sched_setscheduler_args {
    384 	syscallarg(pid_t) pid;
    385 	syscallarg(int) policy;
    386 	syscallarg(const struct linux_sched_param *) sp;
    387 };
    388 
    389 struct linux_sys_sched_getscheduler_args {
    390 	syscallarg(pid_t) pid;
    391 };
    392 
    393 struct linux_sys_sched_get_priority_max_args {
    394 	syscallarg(int) policy;
    395 };
    396 
    397 struct linux_sys_sched_get_priority_min_args {
    398 	syscallarg(int) policy;
    399 };
    400 
    401 struct linux_sys_mremap_args {
    402 	syscallarg(void *) old_address;
    403 	syscallarg(size_t) old_size;
    404 	syscallarg(size_t) new_size;
    405 	syscallarg(u_long) flags;
    406 };
    407 
    408 struct linux_sys_setresuid16_args {
    409 	syscallarg(uid_t) ruid;
    410 	syscallarg(uid_t) euid;
    411 	syscallarg(uid_t) suid;
    412 };
    413 
    414 struct linux_sys_setresgid16_args {
    415 	syscallarg(gid_t) rgid;
    416 	syscallarg(gid_t) egid;
    417 	syscallarg(gid_t) sgid;
    418 };
    419 
    420 struct linux_sys_rt_sigaction_args {
    421 	syscallarg(int) signum;
    422 	syscallarg(const struct linux_sigaction *) nsa;
    423 	syscallarg(struct linux_sigaction *) osa;
    424 	syscallarg(size_t) sigsetsize;
    425 };
    426 
    427 struct linux_sys_rt_sigprocmask_args {
    428 	syscallarg(int) how;
    429 	syscallarg(const linux_sigset_t *) set;
    430 	syscallarg(linux_sigset_t *) oset;
    431 	syscallarg(size_t) sigsetsize;
    432 };
    433 
    434 struct linux_sys_rt_sigpending_args {
    435 	syscallarg(linux_sigset_t *) set;
    436 	syscallarg(size_t) sigsetsize;
    437 };
    438 
    439 struct linux_sys_rt_queueinfo_args {
    440 	syscallarg(int) pid;
    441 	syscallarg(int) signum;
    442 	syscallarg(void *) uinfo;
    443 };
    444 
    445 struct linux_sys_rt_sigsuspend_args {
    446 	syscallarg(linux_sigset_t *) unewset;
    447 	syscallarg(size_t) sigsetsize;
    448 };
    449 
    450 struct linux_sys_pread_args {
    451 	syscallarg(int) fd;
    452 	syscallarg(char *) buf;
    453 	syscallarg(size_t) nbyte;
    454 	syscallarg(linux_off_t) offset;
    455 };
    456 
    457 struct linux_sys_pwrite_args {
    458 	syscallarg(int) fd;
    459 	syscallarg(char *) buf;
    460 	syscallarg(size_t) nbyte;
    461 	syscallarg(linux_off_t) offset;
    462 };
    463 
    464 struct linux_sys_lchown16_args {
    465 	syscallarg(const char *) path;
    466 	syscallarg(int) uid;
    467 	syscallarg(int) gid;
    468 };
    469 
    470 struct linux_sys_sigaltstack_args {
    471 	syscallarg(const struct linux_sigaltstack *) ss;
    472 	syscallarg(struct linux_sigaltstack *) oss;
    473 };
    474 
    475 struct linux_sys_truncate64_args {
    476 	syscallarg(const char *) path;
    477 	syscallarg(off_t) length;
    478 };
    479 
    480 struct linux_sys_stat64_args {
    481 	syscallarg(const char *) path;
    482 	syscallarg(struct linux_stat64 *) sp;
    483 };
    484 
    485 struct linux_sys_lstat64_args {
    486 	syscallarg(const char *) path;
    487 	syscallarg(struct linux_stat64 *) sp;
    488 };
    489 
    490 struct linux_sys_fstat64_args {
    491 	syscallarg(int) fd;
    492 	syscallarg(struct linux_stat64 *) sp;
    493 };
    494 
    495 struct linux_sys_chown_args {
    496 	syscallarg(const char *) path;
    497 	syscallarg(uid_t) uid;
    498 	syscallarg(gid_t) gid;
    499 };
    500 
    501 struct linux_sys_setresuid_args {
    502 	syscallarg(uid_t) ruid;
    503 	syscallarg(uid_t) euid;
    504 	syscallarg(uid_t) suid;
    505 };
    506 
    507 struct linux_sys_getresuid_args {
    508 	syscallarg(uid_t *) ruid;
    509 	syscallarg(uid_t *) euid;
    510 	syscallarg(uid_t *) suid;
    511 };
    512 
    513 struct linux_sys_setresgid_args {
    514 	syscallarg(gid_t) rgid;
    515 	syscallarg(gid_t) egid;
    516 	syscallarg(gid_t) sgid;
    517 };
    518 
    519 struct linux_sys_getresgid_args {
    520 	syscallarg(gid_t *) rgid;
    521 	syscallarg(gid_t *) egid;
    522 	syscallarg(gid_t *) sgid;
    523 };
    524 
    525 struct linux_sys_lchown_args {
    526 	syscallarg(const char *) path;
    527 	syscallarg(uid_t) uid;
    528 	syscallarg(gid_t) gid;
    529 };
    530 
    531 struct linux_sys_setfsuid_args {
    532 	syscallarg(uid_t) uid;
    533 };
    534 
    535 /*
    536  * System call prototypes.
    537  */
    538 
    539 int	sys_nosys(struct proc *, void *, register_t *);
    540 int	sys_exit(struct proc *, void *, register_t *);
    541 int	sys_fork(struct proc *, void *, register_t *);
    542 int	sys_read(struct proc *, void *, register_t *);
    543 int	sys_write(struct proc *, void *, register_t *);
    544 int	linux_sys_open(struct proc *, void *, register_t *);
    545 int	sys_close(struct proc *, void *, register_t *);
    546 int	linux_sys_waitpid(struct proc *, void *, register_t *);
    547 int	linux_sys_creat(struct proc *, void *, register_t *);
    548 int	sys_link(struct proc *, void *, register_t *);
    549 int	linux_sys_unlink(struct proc *, void *, register_t *);
    550 int	linux_sys_execve(struct proc *, void *, register_t *);
    551 int	linux_sys_chdir(struct proc *, void *, register_t *);
    552 int	linux_sys_time(struct proc *, void *, register_t *);
    553 int	linux_sys_mknod(struct proc *, void *, register_t *);
    554 int	linux_sys_chmod(struct proc *, void *, register_t *);
    555 int	linux_sys_chown16(struct proc *, void *, register_t *);
    556 #if !defined(_KERNEL) || defined(COMPAT_43)
    557 int	compat_43_sys_lseek(struct proc *, void *, register_t *);
    558 #else
    559 #endif
    560 int	sys_getpid(struct proc *, void *, register_t *);
    561 int	sys_setuid(struct proc *, void *, register_t *);
    562 int	sys_getuid(struct proc *, void *, register_t *);
    563 int	linux_sys_stime(struct proc *, void *, register_t *);
    564 int	linux_sys_ptrace(struct proc *, void *, register_t *);
    565 int	linux_sys_alarm(struct proc *, void *, register_t *);
    566 int	linux_sys_pause(struct proc *, void *, register_t *);
    567 int	linux_sys_utime(struct proc *, void *, register_t *);
    568 int	linux_sys_access(struct proc *, void *, register_t *);
    569 int	linux_sys_nice(struct proc *, void *, register_t *);
    570 int	sys_sync(struct proc *, void *, register_t *);
    571 int	linux_sys_kill(struct proc *, void *, register_t *);
    572 int	linux_sys_rename(struct proc *, void *, register_t *);
    573 int	linux_sys_mkdir(struct proc *, void *, register_t *);
    574 int	linux_sys_rmdir(struct proc *, void *, register_t *);
    575 int	sys_dup(struct proc *, void *, register_t *);
    576 int	linux_sys_pipe(struct proc *, void *, register_t *);
    577 int	linux_sys_times(struct proc *, void *, register_t *);
    578 int	linux_sys_brk(struct proc *, void *, register_t *);
    579 int	sys_setgid(struct proc *, void *, register_t *);
    580 int	sys_getgid(struct proc *, void *, register_t *);
    581 int	linux_sys_signal(struct proc *, void *, register_t *);
    582 int	sys_geteuid(struct proc *, void *, register_t *);
    583 int	sys_getegid(struct proc *, void *, register_t *);
    584 int	sys_acct(struct proc *, void *, register_t *);
    585 int	linux_sys_ioctl(struct proc *, void *, register_t *);
    586 int	linux_sys_fcntl(struct proc *, void *, register_t *);
    587 int	sys_setpgid(struct proc *, void *, register_t *);
    588 int	sys_umask(struct proc *, void *, register_t *);
    589 int	sys_chroot(struct proc *, void *, register_t *);
    590 int	sys_dup2(struct proc *, void *, register_t *);
    591 int	sys_getppid(struct proc *, void *, register_t *);
    592 int	sys_getpgrp(struct proc *, void *, register_t *);
    593 int	sys_setsid(struct proc *, void *, register_t *);
    594 int	linux_sys_sigaction(struct proc *, void *, register_t *);
    595 int	linux_sys_siggetmask(struct proc *, void *, register_t *);
    596 int	linux_sys_sigsetmask(struct proc *, void *, register_t *);
    597 int	linux_sys_setreuid16(struct proc *, void *, register_t *);
    598 int	linux_sys_setregid16(struct proc *, void *, register_t *);
    599 int	linux_sys_sigsuspend(struct proc *, void *, register_t *);
    600 int	linux_sys_sigpending(struct proc *, void *, register_t *);
    601 #if !defined(_KERNEL) || defined(COMPAT_43)
    602 int	compat_43_sys_sethostname(struct proc *, void *, register_t *);
    603 int	compat_43_sys_setrlimit(struct proc *, void *, register_t *);
    604 int	compat_43_sys_getrlimit(struct proc *, void *, register_t *);
    605 #else
    606 #endif
    607 int	sys_getrusage(struct proc *, void *, register_t *);
    608 int	sys_gettimeofday(struct proc *, void *, register_t *);
    609 int	sys_settimeofday(struct proc *, void *, register_t *);
    610 int	linux_sys_getgroups16(struct proc *, void *, register_t *);
    611 int	linux_sys_setgroups16(struct proc *, void *, register_t *);
    612 int	linux_sys_oldselect(struct proc *, void *, register_t *);
    613 int	linux_sys_symlink(struct proc *, void *, register_t *);
    614 #if !defined(_KERNEL) || defined(COMPAT_43)
    615 int	compat_43_sys_lstat(struct proc *, void *, register_t *);
    616 #else
    617 #endif
    618 int	linux_sys_readlink(struct proc *, void *, register_t *);
    619 int	linux_sys_uselib(struct proc *, void *, register_t *);
    620 int	linux_sys_swapon(struct proc *, void *, register_t *);
    621 int	linux_sys_reboot(struct proc *, void *, register_t *);
    622 int	linux_sys_readdir(struct proc *, void *, register_t *);
    623 int	linux_sys_old_mmap(struct proc *, void *, register_t *);
    624 int	sys_munmap(struct proc *, void *, register_t *);
    625 int	linux_sys_truncate(struct proc *, void *, register_t *);
    626 #if !defined(_KERNEL) || defined(COMPAT_43)
    627 int	compat_43_sys_ftruncate(struct proc *, void *, register_t *);
    628 #else
    629 #endif
    630 int	sys_fchmod(struct proc *, void *, register_t *);
    631 int	linux_sys_fchown16(struct proc *, void *, register_t *);
    632 int	sys_getpriority(struct proc *, void *, register_t *);
    633 int	sys_setpriority(struct proc *, void *, register_t *);
    634 int	sys_profil(struct proc *, void *, register_t *);
    635 int	linux_sys_statfs(struct proc *, void *, register_t *);
    636 int	linux_sys_fstatfs(struct proc *, void *, register_t *);
    637 int	linux_sys_socketcall(struct proc *, void *, register_t *);
    638 int	sys_setitimer(struct proc *, void *, register_t *);
    639 int	sys_getitimer(struct proc *, void *, register_t *);
    640 int	linux_sys_stat(struct proc *, void *, register_t *);
    641 int	linux_sys_lstat(struct proc *, void *, register_t *);
    642 int	linux_sys_fstat(struct proc *, void *, register_t *);
    643 int	linux_sys_wait4(struct proc *, void *, register_t *);
    644 int	linux_sys_swapoff(struct proc *, void *, register_t *);
    645 int	linux_sys_sysinfo(struct proc *, void *, register_t *);
    646 int	linux_sys_ipc(struct proc *, void *, register_t *);
    647 int	sys_fsync(struct proc *, void *, register_t *);
    648 int	linux_sys_sigreturn(struct proc *, void *, register_t *);
    649 int	linux_sys_clone(struct proc *, void *, register_t *);
    650 int	linux_sys_setdomainname(struct proc *, void *, register_t *);
    651 int	linux_sys_uname(struct proc *, void *, register_t *);
    652 int	linux_sys_cacheflush(struct proc *, void *, register_t *);
    653 int	sys_mprotect(struct proc *, void *, register_t *);
    654 int	linux_sys_sigprocmask(struct proc *, void *, register_t *);
    655 int	linux_sys_getpgid(struct proc *, void *, register_t *);
    656 int	sys_fchdir(struct proc *, void *, register_t *);
    657 int	linux_sys_personality(struct proc *, void *, register_t *);
    658 int	linux_sys_setfsuid(struct proc *, void *, register_t *);
    659 int	linux_sys_getfsuid(struct proc *, void *, register_t *);
    660 int	linux_sys_llseek(struct proc *, void *, register_t *);
    661 int	linux_sys_getdents(struct proc *, void *, register_t *);
    662 int	linux_sys_select(struct proc *, void *, register_t *);
    663 int	sys_flock(struct proc *, void *, register_t *);
    664 int	linux_sys_msync(struct proc *, void *, register_t *);
    665 int	sys_readv(struct proc *, void *, register_t *);
    666 int	sys_writev(struct proc *, void *, register_t *);
    667 int	sys_getsid(struct proc *, void *, register_t *);
    668 int	linux_sys_fdatasync(struct proc *, void *, register_t *);
    669 int	linux_sys___sysctl(struct proc *, void *, register_t *);
    670 int	sys_mlock(struct proc *, void *, register_t *);
    671 int	sys_munlock(struct proc *, void *, register_t *);
    672 int	sys_mlockall(struct proc *, void *, register_t *);
    673 int	sys_munlockall(struct proc *, void *, register_t *);
    674 int	linux_sys_sched_setparam(struct proc *, void *, register_t *);
    675 int	linux_sys_sched_getparam(struct proc *, void *, register_t *);
    676 int	linux_sys_sched_setscheduler(struct proc *, void *, register_t *);
    677 int	linux_sys_sched_getscheduler(struct proc *, void *, register_t *);
    678 int	linux_sys_sched_yield(struct proc *, void *, register_t *);
    679 int	linux_sys_sched_get_priority_max(struct proc *, void *, register_t *);
    680 int	linux_sys_sched_get_priority_min(struct proc *, void *, register_t *);
    681 int	sys_nanosleep(struct proc *, void *, register_t *);
    682 int	linux_sys_mremap(struct proc *, void *, register_t *);
    683 int	linux_sys_setresuid16(struct proc *, void *, register_t *);
    684 int	linux_sys_getresuid(struct proc *, void *, register_t *);
    685 int	sys_poll(struct proc *, void *, register_t *);
    686 int	linux_sys_setresgid16(struct proc *, void *, register_t *);
    687 int	linux_sys_getresgid(struct proc *, void *, register_t *);
    688 int	linux_sys_rt_sigreturn(struct proc *, void *, register_t *);
    689 int	linux_sys_rt_sigaction(struct proc *, void *, register_t *);
    690 int	linux_sys_rt_sigprocmask(struct proc *, void *, register_t *);
    691 int	linux_sys_rt_sigpending(struct proc *, void *, register_t *);
    692 int	linux_sys_rt_queueinfo(struct proc *, void *, register_t *);
    693 int	linux_sys_rt_sigsuspend(struct proc *, void *, register_t *);
    694 int	linux_sys_pread(struct proc *, void *, register_t *);
    695 int	linux_sys_pwrite(struct proc *, void *, register_t *);
    696 int	linux_sys_lchown16(struct proc *, void *, register_t *);
    697 int	sys___getcwd(struct proc *, void *, register_t *);
    698 int	linux_sys_sigaltstack(struct proc *, void *, register_t *);
    699 int	sys___vfork14(struct proc *, void *, register_t *);
    700 int	linux_sys_truncate64(struct proc *, void *, register_t *);
    701 int	sys_ftruncate(struct proc *, void *, register_t *);
    702 int	linux_sys_stat64(struct proc *, void *, register_t *);
    703 int	linux_sys_lstat64(struct proc *, void *, register_t *);
    704 int	linux_sys_fstat64(struct proc *, void *, register_t *);
    705 int	linux_sys_chown(struct proc *, void *, register_t *);
    706 int	sys_getuid(struct proc *, void *, register_t *);
    707 int	sys_getgid(struct proc *, void *, register_t *);
    708 int	sys_geteuid(struct proc *, void *, register_t *);
    709 int	sys_getegid(struct proc *, void *, register_t *);
    710 int	sys_setreuid(struct proc *, void *, register_t *);
    711 int	sys_setregid(struct proc *, void *, register_t *);
    712 int	sys_getgroups(struct proc *, void *, register_t *);
    713 int	sys_setgroups(struct proc *, void *, register_t *);
    714 int	sys___posix_fchown(struct proc *, void *, register_t *);
    715 int	linux_sys_setresuid(struct proc *, void *, register_t *);
    716 int	linux_sys_getresuid(struct proc *, void *, register_t *);
    717 int	linux_sys_setresgid(struct proc *, void *, register_t *);
    718 int	linux_sys_getresgid(struct proc *, void *, register_t *);
    719 int	linux_sys_lchown(struct proc *, void *, register_t *);
    720 int	sys_setuid(struct proc *, void *, register_t *);
    721 int	sys_setgid(struct proc *, void *, register_t *);
    722 int	linux_sys_setfsuid(struct proc *, void *, register_t *);
    723 int	linux_sys_getfsuid(struct proc *, void *, register_t *);
    724 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
    725