Home | History | Annotate | Line # | Download | only in mips
linux_syscallargs.h revision 1.14.2.4
      1  1.14.2.4     skrll /* $NetBSD: linux_syscallargs.h,v 1.14.2.4 2004/09/24 10:53:18 skrll Exp $ */
      2       1.1      manu 
      3       1.1      manu /*
      4       1.1      manu  * System call argument lists.
      5       1.1      manu  *
      6       1.1      manu  * DO NOT EDIT-- this file is automatically generated.
      7  1.14.2.4     skrll  * created from	NetBSD: syscalls.master,v 1.16 2004/09/20 18:41:07 jdolecek Exp
      8       1.1      manu  */
      9       1.1      manu 
     10       1.1      manu #ifndef _LINUX_SYS__SYSCALLARGS_H_
     11       1.1      manu #define	_LINUX_SYS__SYSCALLARGS_H_
     12       1.1      manu 
     13       1.1      manu #ifdef	syscallarg
     14       1.1      manu #undef	syscallarg
     15       1.1      manu #endif
     16       1.1      manu 
     17       1.1      manu #define	syscallarg(x)							\
     18       1.1      manu 	union {								\
     19       1.1      manu 		register_t pad;						\
     20       1.1      manu 		struct { x datum; } le;					\
     21       1.5     lukem 		struct { /* LINTED zero array dimension */		\
     22       1.5     lukem 			int8_t pad[  /* CONSTCOND */			\
     23       1.5     lukem 				(sizeof (register_t) < sizeof (x))	\
     24       1.1      manu 				? 0					\
     25       1.1      manu 				: sizeof (register_t) - sizeof (x)];	\
     26       1.1      manu 			x datum;					\
     27       1.1      manu 		} be;							\
     28       1.1      manu 	}
     29       1.1      manu 
     30       1.1      manu struct linux_sys_open_args {
     31       1.1      manu 	syscallarg(const char *) path;
     32       1.1      manu 	syscallarg(int) flags;
     33       1.1      manu 	syscallarg(int) mode;
     34       1.1      manu };
     35       1.1      manu 
     36       1.1      manu struct linux_sys_waitpid_args {
     37       1.1      manu 	syscallarg(int) pid;
     38       1.1      manu 	syscallarg(int *) status;
     39       1.1      manu 	syscallarg(int) options;
     40       1.1      manu };
     41       1.1      manu 
     42       1.1      manu struct linux_sys_creat_args {
     43       1.1      manu 	syscallarg(const char *) path;
     44       1.1      manu 	syscallarg(int) mode;
     45       1.1      manu };
     46       1.1      manu 
     47       1.1      manu struct linux_sys_link_args {
     48       1.1      manu 	syscallarg(const char *) path;
     49       1.1      manu 	syscallarg(const char *) link;
     50       1.1      manu };
     51       1.1      manu 
     52       1.1      manu struct linux_sys_unlink_args {
     53       1.1      manu 	syscallarg(const char *) path;
     54       1.1      manu };
     55       1.1      manu 
     56       1.1      manu struct linux_sys_execve_args {
     57       1.1      manu 	syscallarg(const char *) path;
     58       1.1      manu 	syscallarg(char **) argp;
     59       1.1      manu 	syscallarg(char **) envp;
     60       1.1      manu };
     61       1.1      manu 
     62       1.1      manu struct linux_sys_chdir_args {
     63       1.1      manu 	syscallarg(const char *) path;
     64       1.1      manu };
     65       1.1      manu 
     66       1.1      manu struct linux_sys_time_args {
     67       1.1      manu 	syscallarg(linux_time_t *) t;
     68       1.1      manu };
     69       1.1      manu 
     70       1.1      manu struct linux_sys_mknod_args {
     71       1.1      manu 	syscallarg(const char *) path;
     72       1.1      manu 	syscallarg(int) mode;
     73       1.1      manu 	syscallarg(int) dev;
     74       1.1      manu };
     75       1.1      manu 
     76       1.1      manu struct linux_sys_chmod_args {
     77       1.1      manu 	syscallarg(const char *) path;
     78       1.1      manu 	syscallarg(int) mode;
     79       1.1      manu };
     80       1.1      manu 
     81       1.1      manu struct linux_sys_lchown_args {
     82       1.1      manu 	syscallarg(const char *) path;
     83       1.1      manu 	syscallarg(int) uid;
     84       1.1      manu 	syscallarg(int) gid;
     85       1.1      manu };
     86       1.1      manu 
     87       1.1      manu struct linux_sys_stime_args {
     88       1.1      manu 	syscallarg(linux_time_t *) t;
     89       1.1      manu };
     90       1.1      manu 
     91       1.1      manu struct linux_sys_ptrace_args {
     92       1.1      manu 	syscallarg(int) request;
     93       1.1      manu 	syscallarg(int) pid;
     94       1.1      manu 	syscallarg(int) addr;
     95       1.1      manu 	syscallarg(int) data;
     96       1.1      manu };
     97       1.1      manu 
     98       1.1      manu struct linux_sys_alarm_args {
     99       1.1      manu 	syscallarg(unsigned int) secs;
    100       1.1      manu };
    101       1.1      manu 
    102       1.1      manu struct linux_sys_utime_args {
    103       1.1      manu 	syscallarg(const char *) path;
    104       1.1      manu 	syscallarg(struct linux_utimbuf *) times;
    105       1.1      manu };
    106       1.1      manu 
    107       1.1      manu struct linux_sys_access_args {
    108       1.1      manu 	syscallarg(const char *) path;
    109       1.1      manu 	syscallarg(int) flags;
    110       1.1      manu };
    111       1.1      manu 
    112       1.1      manu struct linux_sys_nice_args {
    113       1.1      manu 	syscallarg(int) incr;
    114       1.1      manu };
    115       1.1      manu 
    116       1.1      manu struct linux_sys_kill_args {
    117       1.1      manu 	syscallarg(int) pid;
    118       1.1      manu 	syscallarg(int) signum;
    119       1.1      manu };
    120       1.1      manu 
    121       1.1      manu struct linux_sys_rename_args {
    122       1.1      manu 	syscallarg(const char *) from;
    123       1.1      manu 	syscallarg(const char *) to;
    124       1.1      manu };
    125       1.1      manu 
    126       1.1      manu struct linux_sys_mkdir_args {
    127       1.1      manu 	syscallarg(const char *) path;
    128       1.1      manu 	syscallarg(int) mode;
    129       1.1      manu };
    130       1.1      manu 
    131       1.1      manu struct linux_sys_rmdir_args {
    132       1.1      manu 	syscallarg(const char *) path;
    133       1.1      manu };
    134       1.1      manu 
    135       1.1      manu struct linux_sys_pipe_args {
    136       1.1      manu 	syscallarg(int *) pfds;
    137       1.1      manu };
    138       1.1      manu 
    139       1.1      manu struct linux_sys_times_args {
    140       1.1      manu 	syscallarg(struct times *) tms;
    141       1.1      manu };
    142       1.1      manu 
    143       1.1      manu struct linux_sys_brk_args {
    144       1.1      manu 	syscallarg(char *) nsize;
    145       1.1      manu };
    146       1.1      manu 
    147       1.1      manu struct linux_sys_signal_args {
    148       1.1      manu 	syscallarg(int) signum;
    149       1.1      manu 	syscallarg(linux___sighandler_t) handler;
    150       1.1      manu };
    151       1.1      manu 
    152       1.1      manu struct linux_sys_ioctl_args {
    153       1.1      manu 	syscallarg(int) fd;
    154       1.1      manu 	syscallarg(u_long) com;
    155       1.1      manu 	syscallarg(caddr_t) data;
    156       1.1      manu };
    157       1.1      manu 
    158       1.1      manu struct linux_sys_fcntl_args {
    159       1.1      manu 	syscallarg(int) fd;
    160       1.1      manu 	syscallarg(int) cmd;
    161       1.1      manu 	syscallarg(void *) arg;
    162       1.1      manu };
    163       1.1      manu 
    164       1.1      manu struct linux_sys_olduname_args {
    165       1.1      manu 	syscallarg(struct linux_old_utsname *) up;
    166       1.1      manu };
    167       1.1      manu 
    168       1.1      manu struct linux_sys_sigaction_args {
    169       1.1      manu 	syscallarg(int) signum;
    170       1.1      manu 	syscallarg(const struct linux_old_sigaction *) nsa;
    171       1.1      manu 	syscallarg(struct linux_old_sigaction *) osa;
    172       1.1      manu };
    173       1.1      manu 
    174       1.1      manu struct linux_sys_sigsetmask_args {
    175       1.1      manu 	syscallarg(linux_old_sigset_t) mask;
    176       1.1      manu };
    177       1.1      manu 
    178       1.1      manu struct linux_sys_sigsuspend_args {
    179       1.1      manu 	syscallarg(caddr_t) restart;
    180       1.1      manu 	syscallarg(int) oldmask;
    181       1.1      manu 	syscallarg(int) mask;
    182       1.1      manu };
    183       1.1      manu 
    184       1.1      manu struct linux_sys_sigpending_args {
    185       1.1      manu 	syscallarg(linux_old_sigset_t *) set;
    186       1.1      manu };
    187       1.1      manu 
    188       1.9     rafal struct linux_sys_setrlimit_args {
    189       1.9     rafal 	syscallarg(u_int) which;
    190       1.9     rafal 	syscallarg(struct orlimit *) rlp;
    191       1.9     rafal };
    192       1.9     rafal 
    193       1.9     rafal struct linux_sys_getrlimit_args {
    194       1.9     rafal 	syscallarg(u_int) which;
    195       1.9     rafal 	syscallarg(struct orlimit *) rlp;
    196       1.9     rafal };
    197       1.9     rafal 
    198       1.1      manu struct linux_sys_gettimeofday_args {
    199       1.1      manu 	syscallarg(struct timeval *) tp;
    200       1.1      manu 	syscallarg(struct timezone *) tzp;
    201       1.1      manu };
    202       1.1      manu 
    203       1.1      manu struct linux_sys_settimeofday_args {
    204       1.1      manu 	syscallarg(struct timeval *) tp;
    205       1.1      manu 	syscallarg(struct timezone *) tzp;
    206       1.1      manu };
    207       1.1      manu 
    208       1.1      manu struct linux_sys_symlink_args {
    209       1.1      manu 	syscallarg(const char *) path;
    210       1.1      manu 	syscallarg(const char *) to;
    211       1.1      manu };
    212       1.1      manu 
    213       1.1      manu struct linux_sys_readlink_args {
    214       1.1      manu 	syscallarg(const char *) name;
    215       1.1      manu 	syscallarg(char *) buf;
    216       1.1      manu 	syscallarg(int) count;
    217       1.1      manu };
    218       1.1      manu 
    219       1.1      manu struct linux_sys_swapon_args {
    220       1.1      manu 	syscallarg(char *) name;
    221       1.1      manu };
    222       1.1      manu 
    223       1.1      manu struct linux_sys_reboot_args {
    224       1.1      manu 	syscallarg(int) magic1;
    225       1.1      manu 	syscallarg(int) magic2;
    226       1.1      manu 	syscallarg(int) cmd;
    227       1.1      manu 	syscallarg(void *) arg;
    228       1.1      manu };
    229       1.1      manu 
    230       1.1      manu struct linux_sys_readdir_args {
    231       1.1      manu 	syscallarg(int) fd;
    232       1.1      manu 	syscallarg(caddr_t) dent;
    233       1.1      manu 	syscallarg(unsigned int) count;
    234       1.1      manu };
    235       1.1      manu 
    236       1.1      manu struct linux_sys_truncate_args {
    237       1.1      manu 	syscallarg(const char *) path;
    238       1.1      manu 	syscallarg(long) length;
    239       1.1      manu };
    240       1.1      manu 
    241       1.1      manu struct linux_sys_statfs_args {
    242       1.1      manu 	syscallarg(const char *) path;
    243       1.1      manu 	syscallarg(struct linux_statfs *) sp;
    244       1.1      manu };
    245       1.1      manu 
    246       1.1      manu struct linux_sys_fstatfs_args {
    247       1.1      manu 	syscallarg(int) fd;
    248       1.1      manu 	syscallarg(struct linux_statfs *) sp;
    249       1.1      manu };
    250       1.1      manu 
    251       1.1      manu struct linux_sys_ioperm_args {
    252       1.1      manu 	syscallarg(unsigned int) lo;
    253       1.1      manu 	syscallarg(unsigned int) hi;
    254       1.1      manu 	syscallarg(int) val;
    255       1.1      manu };
    256       1.1      manu 
    257       1.1      manu struct linux_sys_socketcall_args {
    258       1.1      manu 	syscallarg(int) what;
    259       1.1      manu 	syscallarg(void *) args;
    260       1.1      manu };
    261       1.1      manu 
    262       1.1      manu struct linux_sys_stat_args {
    263       1.1      manu 	syscallarg(const char *) path;
    264       1.1      manu 	syscallarg(struct linux_stat *) sp;
    265       1.1      manu };
    266       1.1      manu 
    267       1.1      manu struct linux_sys_lstat_args {
    268       1.1      manu 	syscallarg(const char *) path;
    269       1.1      manu 	syscallarg(struct linux_stat *) sp;
    270       1.1      manu };
    271       1.1      manu 
    272       1.1      manu struct linux_sys_fstat_args {
    273       1.1      manu 	syscallarg(int) fd;
    274       1.1      manu 	syscallarg(struct linux_stat *) sp;
    275       1.1      manu };
    276       1.1      manu 
    277       1.1      manu struct linux_sys_uname_args {
    278       1.1      manu 	syscallarg(struct linux_utsname *) up;
    279       1.1      manu };
    280       1.1      manu 
    281       1.1      manu struct linux_sys_wait4_args {
    282       1.1      manu 	syscallarg(int) pid;
    283       1.1      manu 	syscallarg(int *) status;
    284       1.1      manu 	syscallarg(int) options;
    285       1.1      manu 	syscallarg(struct rusage *) rusage;
    286       1.1      manu };
    287       1.1      manu 
    288       1.1      manu struct linux_sys_swapoff_args {
    289       1.1      manu 	syscallarg(const char *) path;
    290       1.1      manu };
    291       1.1      manu 
    292       1.1      manu struct linux_sys_sysinfo_args {
    293       1.1      manu 	syscallarg(struct linux_sysinfo *) arg;
    294       1.1      manu };
    295       1.1      manu 
    296       1.1      manu struct linux_sys_ipc_args {
    297       1.1      manu 	syscallarg(int) what;
    298       1.1      manu 	syscallarg(int) a1;
    299       1.1      manu 	syscallarg(int) a2;
    300       1.1      manu 	syscallarg(int) a3;
    301       1.1      manu 	syscallarg(caddr_t) ptr;
    302       1.1      manu };
    303       1.1      manu 
    304       1.1      manu struct linux_sys_sigreturn_args {
    305       1.6      manu 	syscallarg(struct linux_sigframe *) sf;
    306       1.1      manu };
    307       1.1      manu 
    308       1.1      manu struct linux_sys_clone_args {
    309       1.1      manu 	syscallarg(int) flags;
    310       1.1      manu 	syscallarg(void *) stack;
    311       1.1      manu };
    312       1.1      manu 
    313       1.1      manu struct linux_sys_setdomainname_args {
    314       1.1      manu 	syscallarg(char *) domainname;
    315       1.1      manu 	syscallarg(int) len;
    316       1.1      manu };
    317       1.1      manu 
    318       1.1      manu struct linux_sys_new_uname_args {
    319       1.1      manu 	syscallarg(struct linux_utsname *) up;
    320       1.1      manu };
    321       1.1      manu 
    322      1.10  christos struct linux_sys_mprotect_args {
    323      1.10  christos 	syscallarg(const void *) start;
    324      1.10  christos 	syscallarg(unsigned long) len;
    325      1.10  christos 	syscallarg(int) prot;
    326      1.10  christos };
    327      1.10  christos 
    328       1.1      manu struct linux_sys_sigprocmask_args {
    329       1.1      manu 	syscallarg(int) how;
    330       1.1      manu 	syscallarg(const linux_old_sigset_t *) set;
    331       1.1      manu 	syscallarg(linux_old_sigset_t *) oset;
    332       1.1      manu };
    333       1.1      manu 
    334       1.1      manu struct linux_sys_getpgid_args {
    335       1.1      manu 	syscallarg(int) pid;
    336       1.1      manu };
    337       1.1      manu 
    338       1.1      manu struct linux_sys_personality_args {
    339       1.1      manu 	syscallarg(int) per;
    340       1.1      manu };
    341       1.1      manu 
    342       1.1      manu struct linux_sys_setfsuid_args {
    343       1.1      manu 	syscallarg(uid_t) uid;
    344       1.1      manu };
    345       1.1      manu 
    346       1.1      manu struct linux_sys_llseek_args {
    347       1.1      manu 	syscallarg(int) fd;
    348       1.1      manu 	syscallarg(u_int32_t) ohigh;
    349       1.1      manu 	syscallarg(u_int32_t) olow;
    350       1.1      manu 	syscallarg(caddr_t) res;
    351       1.1      manu 	syscallarg(int) whence;
    352       1.1      manu };
    353       1.1      manu 
    354       1.1      manu struct linux_sys_getdents_args {
    355       1.1      manu 	syscallarg(int) fd;
    356       1.1      manu 	syscallarg(struct linux_dirent *) dent;
    357       1.1      manu 	syscallarg(unsigned int) count;
    358       1.1      manu };
    359       1.1      manu 
    360       1.1      manu struct linux_sys_select_args {
    361       1.1      manu 	syscallarg(int) nfds;
    362       1.1      manu 	syscallarg(fd_set *) readfds;
    363       1.1      manu 	syscallarg(fd_set *) writefds;
    364       1.1      manu 	syscallarg(fd_set *) exceptfds;
    365       1.1      manu 	syscallarg(struct timeval *) timeout;
    366       1.1      manu };
    367       1.1      manu 
    368       1.1      manu struct linux_sys_msync_args {
    369       1.1      manu 	syscallarg(caddr_t) addr;
    370       1.1      manu 	syscallarg(int) len;
    371       1.1      manu 	syscallarg(int) fl;
    372       1.1      manu };
    373       1.1      manu 
    374       1.1      manu struct linux_sys_cacheflush_args {
    375       1.1      manu 	syscallarg(void *) addr;
    376       1.1      manu 	syscallarg(int) bytes;
    377       1.1      manu 	syscallarg(int) cache;
    378       1.1      manu };
    379       1.1      manu 
    380       1.2      manu struct linux_sys_sysmips_args {
    381       1.2      manu 	syscallarg(int) cmd;
    382       1.2      manu 	syscallarg(int) arg1;
    383       1.2      manu 	syscallarg(int) arg2;
    384       1.2      manu 	syscallarg(int) arg3;
    385       1.2      manu };
    386       1.2      manu 
    387       1.1      manu struct linux_sys_fdatasync_args {
    388       1.1      manu 	syscallarg(int) fd;
    389       1.1      manu };
    390       1.1      manu 
    391       1.1      manu struct linux_sys___sysctl_args {
    392       1.1      manu 	syscallarg(struct linux___sysctl *) lsp;
    393       1.1      manu };
    394       1.1      manu 
    395       1.1      manu struct linux_sys_sched_setparam_args {
    396       1.1      manu 	syscallarg(pid_t) pid;
    397       1.1      manu 	syscallarg(const struct linux_sched_param *) sp;
    398       1.1      manu };
    399       1.1      manu 
    400       1.1      manu struct linux_sys_sched_getparam_args {
    401       1.1      manu 	syscallarg(pid_t) pid;
    402       1.1      manu 	syscallarg(struct linux_sched_param *) sp;
    403       1.1      manu };
    404       1.1      manu 
    405       1.1      manu struct linux_sys_sched_setscheduler_args {
    406       1.1      manu 	syscallarg(pid_t) pid;
    407       1.1      manu 	syscallarg(int) policy;
    408       1.1      manu 	syscallarg(const struct linux_sched_param *) sp;
    409       1.1      manu };
    410       1.1      manu 
    411       1.1      manu struct linux_sys_sched_getscheduler_args {
    412       1.1      manu 	syscallarg(pid_t) pid;
    413       1.1      manu };
    414       1.1      manu 
    415       1.1      manu struct linux_sys_sched_get_priority_max_args {
    416       1.1      manu 	syscallarg(int) policy;
    417       1.1      manu };
    418       1.1      manu 
    419       1.1      manu struct linux_sys_sched_get_priority_min_args {
    420       1.1      manu 	syscallarg(int) policy;
    421       1.1      manu };
    422       1.1      manu 
    423       1.1      manu struct linux_sys_mremap_args {
    424       1.1      manu 	syscallarg(void *) old_address;
    425       1.1      manu 	syscallarg(size_t) old_size;
    426       1.1      manu 	syscallarg(size_t) new_size;
    427       1.1      manu 	syscallarg(u_long) flags;
    428       1.1      manu };
    429       1.1      manu 
    430       1.1      manu struct linux_sys_setresuid_args {
    431       1.1      manu 	syscallarg(uid_t) ruid;
    432       1.1      manu 	syscallarg(uid_t) euid;
    433       1.1      manu 	syscallarg(uid_t) suid;
    434       1.1      manu };
    435       1.1      manu 
    436       1.1      manu struct linux_sys_getresuid_args {
    437       1.1      manu 	syscallarg(uid_t *) ruid;
    438       1.1      manu 	syscallarg(uid_t *) euid;
    439       1.1      manu 	syscallarg(uid_t *) suid;
    440       1.1      manu };
    441       1.1      manu 
    442       1.1      manu struct linux_sys_setresgid_args {
    443       1.1      manu 	syscallarg(gid_t) rgid;
    444       1.1      manu 	syscallarg(gid_t) egid;
    445       1.1      manu 	syscallarg(gid_t) sgid;
    446       1.1      manu };
    447       1.1      manu 
    448       1.1      manu struct linux_sys_getresgid_args {
    449       1.1      manu 	syscallarg(gid_t *) rgid;
    450       1.1      manu 	syscallarg(gid_t *) egid;
    451       1.1      manu 	syscallarg(gid_t *) sgid;
    452       1.1      manu };
    453       1.1      manu 
    454       1.1      manu struct linux_sys_rt_sigreturn_args {
    455       1.1      manu 	syscallarg(struct linux_pt_regs) regs;
    456       1.1      manu };
    457       1.1      manu 
    458       1.1      manu struct linux_sys_rt_sigaction_args {
    459       1.1      manu 	syscallarg(int) signum;
    460       1.1      manu 	syscallarg(const struct linux_sigaction *) nsa;
    461       1.1      manu 	syscallarg(struct linux_sigaction *) osa;
    462       1.1      manu 	syscallarg(size_t) sigsetsize;
    463       1.1      manu };
    464       1.1      manu 
    465       1.1      manu struct linux_sys_rt_sigprocmask_args {
    466       1.1      manu 	syscallarg(int) how;
    467       1.1      manu 	syscallarg(const linux_sigset_t *) set;
    468       1.1      manu 	syscallarg(linux_sigset_t *) oset;
    469       1.1      manu 	syscallarg(size_t) sigsetsize;
    470       1.1      manu };
    471       1.1      manu 
    472       1.1      manu struct linux_sys_rt_sigpending_args {
    473       1.1      manu 	syscallarg(linux_sigset_t *) set;
    474       1.1      manu 	syscallarg(size_t) sigsetsize;
    475       1.1      manu };
    476       1.1      manu 
    477       1.1      manu struct linux_sys_rt_queueinfo_args {
    478       1.1      manu 	syscallarg(int) pid;
    479       1.1      manu 	syscallarg(int) signum;
    480       1.1      manu 	syscallarg(void *) uinfo;
    481       1.1      manu };
    482       1.1      manu 
    483       1.1      manu struct linux_sys_rt_sigsuspend_args {
    484       1.1      manu 	syscallarg(linux_sigset_t *) unewset;
    485       1.1      manu 	syscallarg(size_t) sigsetsize;
    486       1.1      manu };
    487       1.1      manu 
    488       1.1      manu struct linux_sys_pread_args {
    489       1.1      manu 	syscallarg(int) fd;
    490       1.1      manu 	syscallarg(char *) buf;
    491       1.1      manu 	syscallarg(size_t) nbyte;
    492       1.1      manu 	syscallarg(linux_off_t) offset;
    493       1.1      manu };
    494       1.1      manu 
    495       1.1      manu struct linux_sys_pwrite_args {
    496       1.1      manu 	syscallarg(int) fd;
    497       1.1      manu 	syscallarg(char *) buf;
    498       1.1      manu 	syscallarg(size_t) nbyte;
    499       1.1      manu 	syscallarg(linux_off_t) offset;
    500       1.1      manu };
    501       1.1      manu 
    502       1.1      manu struct linux_sys_chown_args {
    503       1.1      manu 	syscallarg(const char *) path;
    504       1.1      manu 	syscallarg(int) uid;
    505       1.1      manu 	syscallarg(int) gid;
    506       1.1      manu };
    507       1.1      manu 
    508       1.1      manu struct linux_sys_sigaltstack_args {
    509       1.1      manu 	syscallarg(const struct linux_sigaltstack *) ss;
    510       1.1      manu 	syscallarg(struct linux_sigaltstack *) oss;
    511       1.1      manu };
    512       1.8  christos 
    513       1.8  christos struct linux_sys_truncate64_args {
    514       1.8  christos 	syscallarg(const char *) path;
    515       1.8  christos 	syscallarg(off_t) length;
    516       1.8  christos };
    517       1.8  christos 
    518  1.14.2.1     skrll struct linux_sys_ftruncate64_args {
    519  1.14.2.1     skrll 	syscallarg(unsigned int) fd;
    520  1.14.2.1     skrll 	syscallarg(off_t) length;
    521  1.14.2.1     skrll };
    522  1.14.2.1     skrll 
    523       1.8  christos struct linux_sys_stat64_args {
    524       1.8  christos 	syscallarg(const char *) path;
    525       1.8  christos 	syscallarg(struct linux_stat64 *) sp;
    526       1.8  christos };
    527       1.8  christos 
    528       1.8  christos struct linux_sys_lstat64_args {
    529       1.8  christos 	syscallarg(const char *) path;
    530       1.8  christos 	syscallarg(struct linux_stat64 *) sp;
    531       1.8  christos };
    532       1.8  christos 
    533       1.8  christos struct linux_sys_fstat64_args {
    534       1.8  christos 	syscallarg(int) fd;
    535       1.8  christos 	syscallarg(struct linux_stat64 *) sp;
    536       1.8  christos };
    537       1.8  christos 
    538      1.11  christos struct linux_sys_getdents64_args {
    539      1.11  christos 	syscallarg(int) fd;
    540      1.11  christos 	syscallarg(struct linux_dirent64 *) dent;
    541      1.11  christos 	syscallarg(unsigned int) count;
    542      1.11  christos };
    543      1.11  christos 
    544       1.8  christos struct linux_sys_fcntl64_args {
    545      1.10  christos 	syscallarg(int) fd;
    546      1.10  christos 	syscallarg(int) cmd;
    547      1.10  christos 	syscallarg(void *) arg;
    548       1.8  christos };
    549       1.8  christos 
    550  1.14.2.2     skrll struct linux_sys_exit_group_args {
    551  1.14.2.2     skrll 	syscallarg(int) error_code;
    552  1.14.2.2     skrll };
    553  1.14.2.2     skrll 
    554  1.14.2.4     skrll struct linux_sys_statfs64_args {
    555  1.14.2.4     skrll 	syscallarg(const char *) path;
    556  1.14.2.4     skrll 	syscallarg(size_t) sz;
    557  1.14.2.4     skrll 	syscallarg(struct linux_statfs64 *) sp;
    558  1.14.2.4     skrll };
    559  1.14.2.4     skrll 
    560  1.14.2.4     skrll struct linux_sys_fstatfs64_args {
    561  1.14.2.4     skrll 	syscallarg(int) fd;
    562  1.14.2.4     skrll 	syscallarg(size_t) sz;
    563  1.14.2.4     skrll 	syscallarg(struct linux_statfs64 *) sp;
    564  1.14.2.4     skrll };
    565  1.14.2.4     skrll 
    566       1.8  christos /*
    567       1.8  christos  * System call prototypes.
    568       1.8  christos  */
    569       1.8  christos 
    570      1.12   thorpej int	linux_sys_nosys(struct lwp *, void *, register_t *);
    571  1.14.2.1     skrll 
    572      1.12   thorpej int	sys_exit(struct lwp *, void *, register_t *);
    573  1.14.2.1     skrll 
    574      1.12   thorpej int	sys_fork(struct lwp *, void *, register_t *);
    575  1.14.2.1     skrll 
    576      1.12   thorpej int	sys_read(struct lwp *, void *, register_t *);
    577  1.14.2.1     skrll 
    578      1.12   thorpej int	sys_write(struct lwp *, void *, register_t *);
    579  1.14.2.1     skrll 
    580      1.12   thorpej int	linux_sys_open(struct lwp *, void *, register_t *);
    581  1.14.2.1     skrll 
    582      1.12   thorpej int	sys_close(struct lwp *, void *, register_t *);
    583  1.14.2.1     skrll 
    584      1.12   thorpej int	linux_sys_waitpid(struct lwp *, void *, register_t *);
    585  1.14.2.1     skrll 
    586      1.12   thorpej int	linux_sys_creat(struct lwp *, void *, register_t *);
    587  1.14.2.1     skrll 
    588      1.12   thorpej int	linux_sys_link(struct lwp *, void *, register_t *);
    589  1.14.2.1     skrll 
    590      1.12   thorpej int	linux_sys_unlink(struct lwp *, void *, register_t *);
    591  1.14.2.1     skrll 
    592      1.12   thorpej int	linux_sys_execve(struct lwp *, void *, register_t *);
    593  1.14.2.1     skrll 
    594      1.12   thorpej int	linux_sys_chdir(struct lwp *, void *, register_t *);
    595  1.14.2.1     skrll 
    596      1.12   thorpej int	linux_sys_time(struct lwp *, void *, register_t *);
    597  1.14.2.1     skrll 
    598      1.12   thorpej int	linux_sys_mknod(struct lwp *, void *, register_t *);
    599  1.14.2.1     skrll 
    600      1.12   thorpej int	linux_sys_chmod(struct lwp *, void *, register_t *);
    601  1.14.2.1     skrll 
    602      1.12   thorpej int	linux_sys_lchown(struct lwp *, void *, register_t *);
    603  1.14.2.1     skrll 
    604      1.12   thorpej int	compat_43_sys_lseek(struct lwp *, void *, register_t *);
    605  1.14.2.1     skrll 
    606      1.12   thorpej int	sys_getpid(struct lwp *, void *, register_t *);
    607  1.14.2.1     skrll 
    608      1.12   thorpej int	sys_setuid(struct lwp *, void *, register_t *);
    609  1.14.2.1     skrll 
    610      1.12   thorpej int	sys_getuid(struct lwp *, void *, register_t *);
    611  1.14.2.1     skrll 
    612      1.12   thorpej int	linux_sys_stime(struct lwp *, void *, register_t *);
    613  1.14.2.1     skrll 
    614      1.12   thorpej int	linux_sys_ptrace(struct lwp *, void *, register_t *);
    615  1.14.2.1     skrll 
    616      1.12   thorpej int	linux_sys_alarm(struct lwp *, void *, register_t *);
    617  1.14.2.1     skrll 
    618      1.12   thorpej int	linux_sys_pause(struct lwp *, void *, register_t *);
    619  1.14.2.1     skrll 
    620      1.12   thorpej int	linux_sys_utime(struct lwp *, void *, register_t *);
    621  1.14.2.1     skrll 
    622      1.12   thorpej int	linux_sys_access(struct lwp *, void *, register_t *);
    623  1.14.2.1     skrll 
    624      1.12   thorpej int	linux_sys_nice(struct lwp *, void *, register_t *);
    625  1.14.2.1     skrll 
    626      1.12   thorpej int	sys_sync(struct lwp *, void *, register_t *);
    627  1.14.2.1     skrll 
    628      1.12   thorpej int	linux_sys_kill(struct lwp *, void *, register_t *);
    629  1.14.2.1     skrll 
    630      1.12   thorpej int	linux_sys_rename(struct lwp *, void *, register_t *);
    631  1.14.2.1     skrll 
    632      1.12   thorpej int	linux_sys_mkdir(struct lwp *, void *, register_t *);
    633  1.14.2.1     skrll 
    634      1.12   thorpej int	linux_sys_rmdir(struct lwp *, void *, register_t *);
    635  1.14.2.1     skrll 
    636      1.12   thorpej int	sys_dup(struct lwp *, void *, register_t *);
    637  1.14.2.1     skrll 
    638      1.12   thorpej int	linux_sys_pipe(struct lwp *, void *, register_t *);
    639  1.14.2.1     skrll 
    640      1.12   thorpej int	linux_sys_times(struct lwp *, void *, register_t *);
    641  1.14.2.1     skrll 
    642      1.12   thorpej int	linux_sys_brk(struct lwp *, void *, register_t *);
    643  1.14.2.1     skrll 
    644      1.12   thorpej int	sys_setgid(struct lwp *, void *, register_t *);
    645  1.14.2.1     skrll 
    646      1.12   thorpej int	sys_getgid(struct lwp *, void *, register_t *);
    647  1.14.2.1     skrll 
    648      1.12   thorpej int	linux_sys_signal(struct lwp *, void *, register_t *);
    649  1.14.2.1     skrll 
    650      1.12   thorpej int	sys_geteuid(struct lwp *, void *, register_t *);
    651  1.14.2.1     skrll 
    652      1.12   thorpej int	sys_getegid(struct lwp *, void *, register_t *);
    653  1.14.2.1     skrll 
    654      1.12   thorpej int	sys_acct(struct lwp *, void *, register_t *);
    655  1.14.2.1     skrll 
    656      1.12   thorpej int	linux_sys_ioctl(struct lwp *, void *, register_t *);
    657  1.14.2.1     skrll 
    658      1.12   thorpej int	linux_sys_fcntl(struct lwp *, void *, register_t *);
    659  1.14.2.1     skrll 
    660      1.12   thorpej int	sys_setpgid(struct lwp *, void *, register_t *);
    661  1.14.2.1     skrll 
    662      1.12   thorpej int	linux_sys_olduname(struct lwp *, void *, register_t *);
    663  1.14.2.1     skrll 
    664      1.12   thorpej int	sys_umask(struct lwp *, void *, register_t *);
    665  1.14.2.1     skrll 
    666      1.12   thorpej int	sys_chroot(struct lwp *, void *, register_t *);
    667  1.14.2.1     skrll 
    668      1.12   thorpej int	sys_dup2(struct lwp *, void *, register_t *);
    669  1.14.2.1     skrll 
    670      1.12   thorpej int	sys_getppid(struct lwp *, void *, register_t *);
    671  1.14.2.1     skrll 
    672      1.12   thorpej int	sys_getpgrp(struct lwp *, void *, register_t *);
    673  1.14.2.1     skrll 
    674      1.12   thorpej int	sys_setsid(struct lwp *, void *, register_t *);
    675  1.14.2.1     skrll 
    676      1.12   thorpej int	linux_sys_sigaction(struct lwp *, void *, register_t *);
    677  1.14.2.1     skrll 
    678      1.12   thorpej int	linux_sys_siggetmask(struct lwp *, void *, register_t *);
    679  1.14.2.1     skrll 
    680      1.12   thorpej int	linux_sys_sigsetmask(struct lwp *, void *, register_t *);
    681  1.14.2.1     skrll 
    682      1.12   thorpej int	sys_setreuid(struct lwp *, void *, register_t *);
    683  1.14.2.1     skrll 
    684      1.12   thorpej int	sys_setregid(struct lwp *, void *, register_t *);
    685  1.14.2.1     skrll 
    686      1.12   thorpej int	linux_sys_sigsuspend(struct lwp *, void *, register_t *);
    687  1.14.2.1     skrll 
    688      1.12   thorpej int	linux_sys_sigpending(struct lwp *, void *, register_t *);
    689  1.14.2.1     skrll 
    690      1.12   thorpej int	compat_43_sys_sethostname(struct lwp *, void *, register_t *);
    691  1.14.2.1     skrll 
    692      1.12   thorpej int	linux_sys_setrlimit(struct lwp *, void *, register_t *);
    693  1.14.2.1     skrll 
    694      1.12   thorpej int	linux_sys_getrlimit(struct lwp *, void *, register_t *);
    695  1.14.2.1     skrll 
    696      1.12   thorpej int	sys_getrusage(struct lwp *, void *, register_t *);
    697  1.14.2.1     skrll 
    698      1.12   thorpej int	linux_sys_gettimeofday(struct lwp *, void *, register_t *);
    699  1.14.2.1     skrll 
    700      1.12   thorpej int	linux_sys_settimeofday(struct lwp *, void *, register_t *);
    701  1.14.2.1     skrll 
    702      1.12   thorpej int	sys_getgroups(struct lwp *, void *, register_t *);
    703  1.14.2.1     skrll 
    704      1.12   thorpej int	sys_setgroups(struct lwp *, void *, register_t *);
    705  1.14.2.1     skrll 
    706      1.12   thorpej int	linux_sys_symlink(struct lwp *, void *, register_t *);
    707  1.14.2.1     skrll 
    708      1.12   thorpej int	compat_43_sys_lstat(struct lwp *, void *, register_t *);
    709  1.14.2.1     skrll 
    710      1.12   thorpej int	linux_sys_readlink(struct lwp *, void *, register_t *);
    711  1.14.2.1     skrll 
    712      1.12   thorpej int	linux_sys_swapon(struct lwp *, void *, register_t *);
    713  1.14.2.1     skrll 
    714      1.12   thorpej int	linux_sys_reboot(struct lwp *, void *, register_t *);
    715  1.14.2.1     skrll 
    716      1.12   thorpej int	linux_sys_readdir(struct lwp *, void *, register_t *);
    717  1.14.2.1     skrll 
    718      1.12   thorpej int	linux_sys_mmap(struct lwp *, void *, register_t *);
    719  1.14.2.1     skrll 
    720      1.12   thorpej int	sys_munmap(struct lwp *, void *, register_t *);
    721  1.14.2.1     skrll 
    722      1.12   thorpej int	linux_sys_truncate(struct lwp *, void *, register_t *);
    723  1.14.2.1     skrll 
    724      1.12   thorpej int	compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
    725  1.14.2.1     skrll 
    726      1.12   thorpej int	sys_fchmod(struct lwp *, void *, register_t *);
    727  1.14.2.1     skrll 
    728      1.12   thorpej int	sys___posix_fchown(struct lwp *, void *, register_t *);
    729  1.14.2.1     skrll 
    730      1.12   thorpej int	sys_getpriority(struct lwp *, void *, register_t *);
    731  1.14.2.1     skrll 
    732      1.12   thorpej int	sys_setpriority(struct lwp *, void *, register_t *);
    733  1.14.2.1     skrll 
    734      1.12   thorpej int	linux_sys_statfs(struct lwp *, void *, register_t *);
    735  1.14.2.1     skrll 
    736      1.12   thorpej int	linux_sys_fstatfs(struct lwp *, void *, register_t *);
    737  1.14.2.1     skrll 
    738      1.12   thorpej int	linux_sys_ioperm(struct lwp *, void *, register_t *);
    739  1.14.2.1     skrll 
    740      1.12   thorpej int	linux_sys_socketcall(struct lwp *, void *, register_t *);
    741  1.14.2.1     skrll 
    742      1.12   thorpej int	sys_setitimer(struct lwp *, void *, register_t *);
    743  1.14.2.1     skrll 
    744      1.12   thorpej int	sys_getitimer(struct lwp *, void *, register_t *);
    745  1.14.2.1     skrll 
    746      1.12   thorpej int	linux_sys_stat(struct lwp *, void *, register_t *);
    747  1.14.2.1     skrll 
    748      1.12   thorpej int	linux_sys_lstat(struct lwp *, void *, register_t *);
    749  1.14.2.1     skrll 
    750      1.12   thorpej int	linux_sys_fstat(struct lwp *, void *, register_t *);
    751  1.14.2.1     skrll 
    752      1.12   thorpej int	linux_sys_uname(struct lwp *, void *, register_t *);
    753  1.14.2.1     skrll 
    754      1.12   thorpej int	linux_sys_wait4(struct lwp *, void *, register_t *);
    755  1.14.2.1     skrll 
    756      1.12   thorpej int	linux_sys_swapoff(struct lwp *, void *, register_t *);
    757  1.14.2.1     skrll 
    758      1.12   thorpej int	linux_sys_sysinfo(struct lwp *, void *, register_t *);
    759  1.14.2.1     skrll 
    760      1.12   thorpej int	linux_sys_ipc(struct lwp *, void *, register_t *);
    761  1.14.2.1     skrll 
    762      1.12   thorpej int	sys_fsync(struct lwp *, void *, register_t *);
    763  1.14.2.1     skrll 
    764      1.12   thorpej int	linux_sys_sigreturn(struct lwp *, void *, register_t *);
    765  1.14.2.1     skrll 
    766      1.12   thorpej int	linux_sys_clone(struct lwp *, void *, register_t *);
    767  1.14.2.1     skrll 
    768      1.12   thorpej int	linux_sys_setdomainname(struct lwp *, void *, register_t *);
    769  1.14.2.1     skrll 
    770      1.12   thorpej int	linux_sys_new_uname(struct lwp *, void *, register_t *);
    771  1.14.2.1     skrll 
    772      1.12   thorpej int	linux_sys_mprotect(struct lwp *, void *, register_t *);
    773  1.14.2.1     skrll 
    774      1.12   thorpej int	linux_sys_sigprocmask(struct lwp *, void *, register_t *);
    775  1.14.2.1     skrll 
    776      1.12   thorpej int	linux_sys_getpgid(struct lwp *, void *, register_t *);
    777  1.14.2.1     skrll 
    778      1.12   thorpej int	sys_fchdir(struct lwp *, void *, register_t *);
    779  1.14.2.1     skrll 
    780      1.12   thorpej int	linux_sys_personality(struct lwp *, void *, register_t *);
    781  1.14.2.1     skrll 
    782      1.12   thorpej int	linux_sys_setfsuid(struct lwp *, void *, register_t *);
    783  1.14.2.1     skrll 
    784      1.12   thorpej int	linux_sys_getfsuid(struct lwp *, void *, register_t *);
    785  1.14.2.1     skrll 
    786      1.12   thorpej int	linux_sys_llseek(struct lwp *, void *, register_t *);
    787  1.14.2.1     skrll 
    788      1.12   thorpej int	linux_sys_getdents(struct lwp *, void *, register_t *);
    789  1.14.2.1     skrll 
    790      1.12   thorpej int	linux_sys_select(struct lwp *, void *, register_t *);
    791  1.14.2.1     skrll 
    792      1.12   thorpej int	sys_flock(struct lwp *, void *, register_t *);
    793  1.14.2.1     skrll 
    794      1.12   thorpej int	linux_sys_msync(struct lwp *, void *, register_t *);
    795  1.14.2.1     skrll 
    796      1.12   thorpej int	sys_readv(struct lwp *, void *, register_t *);
    797  1.14.2.1     skrll 
    798      1.12   thorpej int	sys_writev(struct lwp *, void *, register_t *);
    799  1.14.2.1     skrll 
    800      1.12   thorpej int	linux_sys_cacheflush(struct lwp *, void *, register_t *);
    801  1.14.2.1     skrll 
    802      1.12   thorpej int	linux_sys_sysmips(struct lwp *, void *, register_t *);
    803  1.14.2.1     skrll 
    804      1.12   thorpej int	sys_getsid(struct lwp *, void *, register_t *);
    805  1.14.2.1     skrll 
    806      1.12   thorpej int	linux_sys_fdatasync(struct lwp *, void *, register_t *);
    807  1.14.2.1     skrll 
    808      1.12   thorpej int	linux_sys___sysctl(struct lwp *, void *, register_t *);
    809  1.14.2.1     skrll 
    810      1.12   thorpej int	sys_mlock(struct lwp *, void *, register_t *);
    811  1.14.2.1     skrll 
    812      1.12   thorpej int	sys_munlock(struct lwp *, void *, register_t *);
    813  1.14.2.1     skrll 
    814      1.12   thorpej int	sys_mlockall(struct lwp *, void *, register_t *);
    815  1.14.2.1     skrll 
    816      1.12   thorpej int	sys_munlockall(struct lwp *, void *, register_t *);
    817  1.14.2.1     skrll 
    818      1.12   thorpej int	linux_sys_sched_setparam(struct lwp *, void *, register_t *);
    819  1.14.2.1     skrll 
    820      1.12   thorpej int	linux_sys_sched_getparam(struct lwp *, void *, register_t *);
    821  1.14.2.1     skrll 
    822      1.12   thorpej int	linux_sys_sched_setscheduler(struct lwp *, void *, register_t *);
    823  1.14.2.1     skrll 
    824      1.12   thorpej int	linux_sys_sched_getscheduler(struct lwp *, void *, register_t *);
    825  1.14.2.1     skrll 
    826      1.12   thorpej int	linux_sys_sched_yield(struct lwp *, void *, register_t *);
    827  1.14.2.1     skrll 
    828      1.12   thorpej int	linux_sys_sched_get_priority_max(struct lwp *, void *, register_t *);
    829  1.14.2.1     skrll 
    830      1.12   thorpej int	linux_sys_sched_get_priority_min(struct lwp *, void *, register_t *);
    831  1.14.2.1     skrll 
    832      1.12   thorpej int	sys_nanosleep(struct lwp *, void *, register_t *);
    833  1.14.2.1     skrll 
    834      1.12   thorpej int	linux_sys_mremap(struct lwp *, void *, register_t *);
    835  1.14.2.1     skrll 
    836      1.12   thorpej int	linux_sys_accept(struct lwp *, void *, register_t *);
    837  1.14.2.1     skrll 
    838      1.12   thorpej int	linux_sys_bind(struct lwp *, void *, register_t *);
    839  1.14.2.1     skrll 
    840      1.12   thorpej int	linux_sys_connect(struct lwp *, void *, register_t *);
    841  1.14.2.1     skrll 
    842      1.12   thorpej int	linux_sys_getpeername(struct lwp *, void *, register_t *);
    843  1.14.2.1     skrll 
    844      1.12   thorpej int	linux_sys_getsockname(struct lwp *, void *, register_t *);
    845  1.14.2.1     skrll 
    846      1.12   thorpej int	linux_sys_getsockopt(struct lwp *, void *, register_t *);
    847  1.14.2.1     skrll 
    848      1.12   thorpej int	sys_listen(struct lwp *, void *, register_t *);
    849  1.14.2.1     skrll 
    850      1.12   thorpej int	linux_sys_recv(struct lwp *, void *, register_t *);
    851  1.14.2.1     skrll 
    852      1.12   thorpej int	linux_sys_recvfrom(struct lwp *, void *, register_t *);
    853  1.14.2.1     skrll 
    854      1.12   thorpej int	linux_sys_recvmsg(struct lwp *, void *, register_t *);
    855  1.14.2.1     skrll 
    856      1.12   thorpej int	linux_sys_send(struct lwp *, void *, register_t *);
    857  1.14.2.1     skrll 
    858      1.12   thorpej int	linux_sys_sendmsg(struct lwp *, void *, register_t *);
    859  1.14.2.1     skrll 
    860      1.12   thorpej int	linux_sys_sendto(struct lwp *, void *, register_t *);
    861  1.14.2.1     skrll 
    862      1.12   thorpej int	linux_sys_setsockopt(struct lwp *, void *, register_t *);
    863  1.14.2.1     skrll 
    864      1.12   thorpej int	linux_sys_socket(struct lwp *, void *, register_t *);
    865  1.14.2.1     skrll 
    866      1.12   thorpej int	linux_sys_socketpair(struct lwp *, void *, register_t *);
    867  1.14.2.1     skrll 
    868      1.12   thorpej int	linux_sys_setresuid(struct lwp *, void *, register_t *);
    869  1.14.2.1     skrll 
    870      1.12   thorpej int	linux_sys_getresuid(struct lwp *, void *, register_t *);
    871  1.14.2.1     skrll 
    872      1.12   thorpej int	sys_poll(struct lwp *, void *, register_t *);
    873  1.14.2.1     skrll 
    874      1.12   thorpej int	linux_sys_setresgid(struct lwp *, void *, register_t *);
    875  1.14.2.1     skrll 
    876      1.12   thorpej int	linux_sys_getresgid(struct lwp *, void *, register_t *);
    877  1.14.2.1     skrll 
    878      1.12   thorpej int	linux_sys_rt_sigreturn(struct lwp *, void *, register_t *);
    879  1.14.2.1     skrll 
    880      1.12   thorpej int	linux_sys_rt_sigaction(struct lwp *, void *, register_t *);
    881  1.14.2.1     skrll 
    882      1.12   thorpej int	linux_sys_rt_sigprocmask(struct lwp *, void *, register_t *);
    883  1.14.2.1     skrll 
    884      1.12   thorpej int	linux_sys_rt_sigpending(struct lwp *, void *, register_t *);
    885  1.14.2.1     skrll 
    886      1.12   thorpej int	linux_sys_rt_queueinfo(struct lwp *, void *, register_t *);
    887  1.14.2.1     skrll 
    888      1.12   thorpej int	linux_sys_rt_sigsuspend(struct lwp *, void *, register_t *);
    889  1.14.2.1     skrll 
    890      1.12   thorpej int	linux_sys_pread(struct lwp *, void *, register_t *);
    891  1.14.2.1     skrll 
    892      1.12   thorpej int	linux_sys_pwrite(struct lwp *, void *, register_t *);
    893  1.14.2.1     skrll 
    894      1.12   thorpej int	linux_sys_chown(struct lwp *, void *, register_t *);
    895  1.14.2.1     skrll 
    896      1.12   thorpej int	sys___getcwd(struct lwp *, void *, register_t *);
    897  1.14.2.1     skrll 
    898      1.12   thorpej int	linux_sys_sigaltstack(struct lwp *, void *, register_t *);
    899  1.14.2.1     skrll 
    900      1.14  christos int	linux_sys_mmap2(struct lwp *, void *, register_t *);
    901  1.14.2.1     skrll 
    902      1.12   thorpej int	linux_sys_truncate64(struct lwp *, void *, register_t *);
    903  1.14.2.1     skrll 
    904  1.14.2.1     skrll int	linux_sys_ftruncate64(struct lwp *, void *, register_t *);
    905  1.14.2.1     skrll 
    906      1.12   thorpej int	linux_sys_stat64(struct lwp *, void *, register_t *);
    907  1.14.2.1     skrll 
    908      1.12   thorpej int	linux_sys_lstat64(struct lwp *, void *, register_t *);
    909  1.14.2.1     skrll 
    910      1.12   thorpej int	linux_sys_fstat64(struct lwp *, void *, register_t *);
    911  1.14.2.1     skrll 
    912  1.14.2.1     skrll int	sys_mincore(struct lwp *, void *, register_t *);
    913  1.14.2.1     skrll 
    914  1.14.2.1     skrll int	sys_madvise(struct lwp *, void *, register_t *);
    915  1.14.2.1     skrll 
    916      1.12   thorpej int	linux_sys_getdents64(struct lwp *, void *, register_t *);
    917  1.14.2.1     skrll 
    918      1.12   thorpej int	linux_sys_fcntl64(struct lwp *, void *, register_t *);
    919  1.14.2.1     skrll 
    920  1.14.2.2     skrll int	linux_sys_exit_group(struct lwp *, void *, register_t *);
    921  1.14.2.2     skrll 
    922  1.14.2.4     skrll int	linux_sys_statfs64(struct lwp *, void *, register_t *);
    923  1.14.2.4     skrll 
    924  1.14.2.4     skrll int	linux_sys_fstatfs64(struct lwp *, void *, register_t *);
    925  1.14.2.4     skrll 
    926       1.8  christos #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
    927