Home | History | Annotate | Line # | Download | only in arm
linux_syscallargs.h revision 1.29.22.3
      1  1.29.22.3       mjf /* $NetBSD: linux_syscallargs.h,v 1.29.22.3 2008/02/18 21:05:23 mjf Exp $ */
      2        1.1     bjh21 
      3        1.1     bjh21 /*
      4        1.1     bjh21  * System call argument lists.
      5        1.1     bjh21  *
      6        1.1     bjh21  * DO NOT EDIT-- this file is automatically generated.
      7  1.29.22.3       mjf  * created from	NetBSD: syscalls.master,v 1.33 2008/01/15 22:38:34 njoly Exp
      8        1.1     bjh21  */
      9        1.1     bjh21 
     10       1.26  christos #ifndef _LINUX_SYS_SYSCALLARGS_H_
     11       1.26  christos #define	_LINUX_SYS_SYSCALLARGS_H_
     12        1.1     bjh21 
     13  1.29.22.1       mjf #define	LINUX_SYS_MAXSYSARGS	8
     14        1.1     bjh21 
     15  1.29.22.1       mjf #undef	syscallarg
     16        1.1     bjh21 #define	syscallarg(x)							\
     17        1.1     bjh21 	union {								\
     18        1.1     bjh21 		register_t pad;						\
     19        1.1     bjh21 		struct { x datum; } le;					\
     20        1.1     bjh21 		struct { /* LINTED zero array dimension */		\
     21        1.1     bjh21 			int8_t pad[  /* CONSTCOND */			\
     22        1.1     bjh21 				(sizeof (register_t) < sizeof (x))	\
     23        1.1     bjh21 				? 0					\
     24        1.1     bjh21 				: sizeof (register_t) - sizeof (x)];	\
     25        1.1     bjh21 			x datum;					\
     26        1.1     bjh21 		} be;							\
     27        1.1     bjh21 	}
     28        1.1     bjh21 
     29  1.29.22.1       mjf #undef check_syscall_args
     30  1.29.22.1       mjf #define check_syscall_args(call) \
     31  1.29.22.1       mjf 	typedef char call##_check_args[sizeof (struct call##_args) \
     32  1.29.22.1       mjf 		<= LINUX_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];
     33  1.29.22.1       mjf 
     34  1.29.22.2       mjf struct sys_exit_args;
     35  1.29.22.2       mjf 
     36  1.29.22.2       mjf struct sys_read_args;
     37  1.29.22.2       mjf 
     38  1.29.22.2       mjf struct sys_write_args;
     39  1.29.22.2       mjf 
     40        1.1     bjh21 struct linux_sys_open_args {
     41        1.1     bjh21 	syscallarg(const char *) path;
     42        1.1     bjh21 	syscallarg(int) flags;
     43        1.1     bjh21 	syscallarg(int) mode;
     44        1.1     bjh21 };
     45  1.29.22.1       mjf check_syscall_args(linux_sys_open)
     46        1.1     bjh21 
     47  1.29.22.2       mjf struct sys_close_args;
     48  1.29.22.2       mjf 
     49        1.1     bjh21 struct linux_sys_waitpid_args {
     50        1.1     bjh21 	syscallarg(int) pid;
     51        1.1     bjh21 	syscallarg(int *) status;
     52        1.1     bjh21 	syscallarg(int) options;
     53        1.1     bjh21 };
     54  1.29.22.1       mjf check_syscall_args(linux_sys_waitpid)
     55        1.1     bjh21 
     56        1.1     bjh21 struct linux_sys_creat_args {
     57        1.1     bjh21 	syscallarg(const char *) path;
     58        1.1     bjh21 	syscallarg(int) mode;
     59        1.1     bjh21 };
     60  1.29.22.1       mjf check_syscall_args(linux_sys_creat)
     61        1.1     bjh21 
     62  1.29.22.2       mjf struct sys_link_args;
     63  1.29.22.2       mjf 
     64        1.1     bjh21 struct linux_sys_unlink_args {
     65        1.1     bjh21 	syscallarg(const char *) path;
     66        1.1     bjh21 };
     67  1.29.22.1       mjf check_syscall_args(linux_sys_unlink)
     68        1.1     bjh21 
     69  1.29.22.2       mjf struct sys_execve_args;
     70  1.29.22.2       mjf 
     71  1.29.22.2       mjf struct sys_chdir_args;
     72  1.29.22.2       mjf 
     73        1.1     bjh21 struct linux_sys_time_args {
     74        1.1     bjh21 	syscallarg(linux_time_t *) t;
     75        1.1     bjh21 };
     76  1.29.22.1       mjf check_syscall_args(linux_sys_time)
     77        1.1     bjh21 
     78        1.1     bjh21 struct linux_sys_mknod_args {
     79        1.1     bjh21 	syscallarg(const char *) path;
     80        1.1     bjh21 	syscallarg(int) mode;
     81        1.1     bjh21 	syscallarg(int) dev;
     82        1.1     bjh21 };
     83  1.29.22.1       mjf check_syscall_args(linux_sys_mknod)
     84        1.1     bjh21 
     85  1.29.22.2       mjf struct sys_chmod_args;
     86  1.29.22.2       mjf 
     87        1.1     bjh21 struct linux_sys_lchown16_args {
     88        1.1     bjh21 	syscallarg(const char *) path;
     89  1.29.22.3       mjf 	syscallarg(linux_uid16_t) uid;
     90  1.29.22.3       mjf 	syscallarg(linux_gid16_t) gid;
     91        1.1     bjh21 };
     92  1.29.22.1       mjf check_syscall_args(linux_sys_lchown16)
     93        1.1     bjh21 
     94  1.29.22.2       mjf struct compat_43_sys_lseek_args;
     95  1.29.22.2       mjf 
     96  1.29.22.2       mjf struct sys_setuid_args;
     97  1.29.22.2       mjf 
     98        1.1     bjh21 struct linux_sys_stime_args {
     99        1.1     bjh21 	syscallarg(linux_time_t *) t;
    100        1.1     bjh21 };
    101  1.29.22.1       mjf check_syscall_args(linux_sys_stime)
    102        1.1     bjh21 
    103        1.1     bjh21 struct linux_sys_ptrace_args {
    104        1.1     bjh21 	syscallarg(int) request;
    105        1.1     bjh21 	syscallarg(int) pid;
    106        1.1     bjh21 	syscallarg(int) addr;
    107        1.1     bjh21 	syscallarg(int) data;
    108        1.1     bjh21 };
    109  1.29.22.1       mjf check_syscall_args(linux_sys_ptrace)
    110        1.1     bjh21 
    111        1.1     bjh21 struct linux_sys_alarm_args {
    112        1.1     bjh21 	syscallarg(unsigned int) secs;
    113        1.1     bjh21 };
    114  1.29.22.1       mjf check_syscall_args(linux_sys_alarm)
    115        1.1     bjh21 
    116        1.1     bjh21 struct linux_sys_utime_args {
    117        1.1     bjh21 	syscallarg(const char *) path;
    118        1.1     bjh21 	syscallarg(struct linux_utimbuf *) times;
    119        1.1     bjh21 };
    120  1.29.22.1       mjf check_syscall_args(linux_sys_utime)
    121        1.1     bjh21 
    122  1.29.22.2       mjf struct sys_access_args;
    123  1.29.22.2       mjf 
    124        1.1     bjh21 struct linux_sys_nice_args {
    125        1.1     bjh21 	syscallarg(int) incr;
    126        1.1     bjh21 };
    127  1.29.22.1       mjf check_syscall_args(linux_sys_nice)
    128        1.1     bjh21 
    129        1.1     bjh21 struct linux_sys_kill_args {
    130        1.1     bjh21 	syscallarg(int) pid;
    131        1.1     bjh21 	syscallarg(int) signum;
    132        1.1     bjh21 };
    133  1.29.22.1       mjf check_syscall_args(linux_sys_kill)
    134        1.1     bjh21 
    135  1.29.22.2       mjf struct sys___posix_rename_args;
    136  1.29.22.2       mjf 
    137  1.29.22.2       mjf struct sys_mkdir_args;
    138  1.29.22.2       mjf 
    139  1.29.22.2       mjf struct sys_rmdir_args;
    140  1.29.22.2       mjf 
    141  1.29.22.2       mjf struct sys_dup_args;
    142  1.29.22.2       mjf 
    143        1.1     bjh21 struct linux_sys_pipe_args {
    144        1.1     bjh21 	syscallarg(int *) pfds;
    145        1.1     bjh21 };
    146  1.29.22.1       mjf check_syscall_args(linux_sys_pipe)
    147        1.1     bjh21 
    148        1.1     bjh21 struct linux_sys_times_args {
    149        1.1     bjh21 	syscallarg(struct times *) tms;
    150        1.1     bjh21 };
    151  1.29.22.1       mjf check_syscall_args(linux_sys_times)
    152        1.1     bjh21 
    153        1.1     bjh21 struct linux_sys_brk_args {
    154        1.1     bjh21 	syscallarg(char *) nsize;
    155        1.1     bjh21 };
    156  1.29.22.1       mjf check_syscall_args(linux_sys_brk)
    157        1.1     bjh21 
    158  1.29.22.2       mjf struct sys_setgid_args;
    159  1.29.22.2       mjf 
    160        1.1     bjh21 struct linux_sys_signal_args {
    161        1.1     bjh21 	syscallarg(int) signum;
    162        1.1     bjh21 	syscallarg(linux_handler_t) handler;
    163        1.1     bjh21 };
    164  1.29.22.1       mjf check_syscall_args(linux_sys_signal)
    165        1.1     bjh21 
    166  1.29.22.2       mjf struct sys_acct_args;
    167  1.29.22.2       mjf 
    168        1.1     bjh21 struct linux_sys_ioctl_args {
    169        1.1     bjh21 	syscallarg(int) fd;
    170        1.1     bjh21 	syscallarg(u_long) com;
    171       1.29  christos 	syscallarg(void *) data;
    172        1.1     bjh21 };
    173  1.29.22.1       mjf check_syscall_args(linux_sys_ioctl)
    174        1.1     bjh21 
    175        1.1     bjh21 struct linux_sys_fcntl_args {
    176        1.1     bjh21 	syscallarg(int) fd;
    177        1.1     bjh21 	syscallarg(int) cmd;
    178        1.1     bjh21 	syscallarg(void *) arg;
    179        1.1     bjh21 };
    180  1.29.22.1       mjf check_syscall_args(linux_sys_fcntl)
    181        1.1     bjh21 
    182  1.29.22.2       mjf struct sys_setpgid_args;
    183  1.29.22.2       mjf 
    184        1.2     bjh21 struct linux_sys_oldolduname_args {
    185        1.2     bjh21 	syscallarg(struct linux_oldold_utsname *) up;
    186        1.1     bjh21 };
    187  1.29.22.1       mjf check_syscall_args(linux_sys_oldolduname)
    188        1.1     bjh21 
    189  1.29.22.2       mjf struct sys_umask_args;
    190  1.29.22.2       mjf 
    191  1.29.22.2       mjf struct sys_chroot_args;
    192  1.29.22.2       mjf 
    193  1.29.22.2       mjf struct sys_dup2_args;
    194  1.29.22.2       mjf 
    195        1.1     bjh21 struct linux_sys_sigaction_args {
    196        1.1     bjh21 	syscallarg(int) signum;
    197        1.1     bjh21 	syscallarg(const struct linux_old_sigaction *) nsa;
    198        1.1     bjh21 	syscallarg(struct linux_old_sigaction *) osa;
    199        1.1     bjh21 };
    200  1.29.22.1       mjf check_syscall_args(linux_sys_sigaction)
    201        1.1     bjh21 
    202        1.1     bjh21 struct linux_sys_sigsetmask_args {
    203        1.1     bjh21 	syscallarg(linux_old_sigset_t) mask;
    204        1.1     bjh21 };
    205  1.29.22.1       mjf check_syscall_args(linux_sys_sigsetmask)
    206        1.1     bjh21 
    207  1.29.22.3       mjf struct linux_sys_setreuid16_args {
    208  1.29.22.3       mjf 	syscallarg(linux_uid16_t) ruid;
    209  1.29.22.3       mjf 	syscallarg(linux_uid16_t) euid;
    210  1.29.22.3       mjf };
    211  1.29.22.3       mjf check_syscall_args(linux_sys_setreuid16)
    212  1.29.22.2       mjf 
    213  1.29.22.3       mjf struct linux_sys_setregid16_args {
    214  1.29.22.3       mjf 	syscallarg(linux_gid16_t) rgid;
    215  1.29.22.3       mjf 	syscallarg(linux_gid16_t) egid;
    216  1.29.22.3       mjf };
    217  1.29.22.3       mjf check_syscall_args(linux_sys_setregid16)
    218  1.29.22.2       mjf 
    219        1.1     bjh21 struct linux_sys_sigsuspend_args {
    220       1.29  christos 	syscallarg(void *) restart;
    221        1.1     bjh21 	syscallarg(int) oldmask;
    222        1.1     bjh21 	syscallarg(int) mask;
    223        1.1     bjh21 };
    224  1.29.22.1       mjf check_syscall_args(linux_sys_sigsuspend)
    225        1.1     bjh21 
    226        1.1     bjh21 struct linux_sys_sigpending_args {
    227        1.1     bjh21 	syscallarg(linux_old_sigset_t *) set;
    228        1.1     bjh21 };
    229  1.29.22.1       mjf check_syscall_args(linux_sys_sigpending)
    230        1.1     bjh21 
    231  1.29.22.2       mjf struct compat_43_sys_sethostname_args;
    232  1.29.22.2       mjf 
    233        1.8     bjh21 struct linux_sys_setrlimit_args {
    234        1.8     bjh21 	syscallarg(u_int) which;
    235        1.8     bjh21 	syscallarg(struct orlimit *) rlp;
    236        1.8     bjh21 };
    237  1.29.22.1       mjf check_syscall_args(linux_sys_setrlimit)
    238        1.8     bjh21 
    239        1.8     bjh21 struct linux_sys_getrlimit_args {
    240        1.8     bjh21 	syscallarg(u_int) which;
    241        1.8     bjh21 	syscallarg(struct orlimit *) rlp;
    242        1.8     bjh21 };
    243  1.29.22.1       mjf check_syscall_args(linux_sys_getrlimit)
    244        1.8     bjh21 
    245  1.29.22.2       mjf struct sys_getrusage_args;
    246  1.29.22.2       mjf 
    247        1.1     bjh21 struct linux_sys_gettimeofday_args {
    248        1.1     bjh21 	syscallarg(struct timeval *) tp;
    249        1.1     bjh21 	syscallarg(struct timezone *) tzp;
    250        1.1     bjh21 };
    251  1.29.22.1       mjf check_syscall_args(linux_sys_gettimeofday)
    252        1.1     bjh21 
    253        1.1     bjh21 struct linux_sys_settimeofday_args {
    254        1.1     bjh21 	syscallarg(struct timeval *) tp;
    255        1.1     bjh21 	syscallarg(struct timezone *) tzp;
    256        1.1     bjh21 };
    257  1.29.22.1       mjf check_syscall_args(linux_sys_settimeofday)
    258        1.1     bjh21 
    259  1.29.22.3       mjf struct linux_sys_getgroups16_args {
    260  1.29.22.3       mjf 	syscallarg(int) gidsetsize;
    261  1.29.22.3       mjf 	syscallarg(linux_gid16_t *) gidset;
    262  1.29.22.3       mjf };
    263  1.29.22.3       mjf check_syscall_args(linux_sys_getgroups16)
    264  1.29.22.2       mjf 
    265  1.29.22.3       mjf struct linux_sys_setgroups16_args {
    266  1.29.22.3       mjf 	syscallarg(int) gidsetsize;
    267  1.29.22.3       mjf 	syscallarg(linux_gid16_t *) gidset;
    268  1.29.22.3       mjf };
    269  1.29.22.3       mjf check_syscall_args(linux_sys_setgroups16)
    270  1.29.22.2       mjf 
    271        1.1     bjh21 struct linux_sys_oldselect_args {
    272        1.1     bjh21 	syscallarg(struct linux_oldselect *) lsp;
    273        1.1     bjh21 };
    274  1.29.22.1       mjf check_syscall_args(linux_sys_oldselect)
    275  1.29.22.2       mjf 
    276  1.29.22.2       mjf struct sys_symlink_args;
    277  1.29.22.2       mjf 
    278  1.29.22.2       mjf struct compat_43_sys_lstat_args;
    279  1.29.22.2       mjf 
    280  1.29.22.2       mjf struct sys_readlink_args;
    281       1.17  jdolecek #ifdef EXEC_AOUT
    282        1.1     bjh21 
    283        1.1     bjh21 struct linux_sys_uselib_args {
    284        1.1     bjh21 	syscallarg(const char *) path;
    285        1.1     bjh21 };
    286  1.29.22.1       mjf check_syscall_args(linux_sys_uselib)
    287       1.17  jdolecek #else
    288       1.17  jdolecek #endif
    289        1.1     bjh21 
    290        1.1     bjh21 struct linux_sys_swapon_args {
    291        1.1     bjh21 	syscallarg(char *) name;
    292        1.1     bjh21 };
    293  1.29.22.1       mjf check_syscall_args(linux_sys_swapon)
    294        1.1     bjh21 
    295        1.1     bjh21 struct linux_sys_reboot_args {
    296        1.1     bjh21 	syscallarg(int) magic1;
    297        1.1     bjh21 	syscallarg(int) magic2;
    298        1.1     bjh21 	syscallarg(int) cmd;
    299        1.1     bjh21 	syscallarg(void *) arg;
    300        1.1     bjh21 };
    301  1.29.22.1       mjf check_syscall_args(linux_sys_reboot)
    302        1.1     bjh21 
    303        1.1     bjh21 struct linux_sys_readdir_args {
    304        1.1     bjh21 	syscallarg(int) fd;
    305       1.29  christos 	syscallarg(void *) dent;
    306        1.1     bjh21 	syscallarg(unsigned int) count;
    307        1.1     bjh21 };
    308  1.29.22.1       mjf check_syscall_args(linux_sys_readdir)
    309        1.1     bjh21 
    310        1.1     bjh21 struct linux_sys_old_mmap_args {
    311        1.1     bjh21 	syscallarg(struct linux_oldmmap *) lmp;
    312        1.1     bjh21 };
    313  1.29.22.1       mjf check_syscall_args(linux_sys_old_mmap)
    314        1.1     bjh21 
    315  1.29.22.2       mjf struct sys_munmap_args;
    316  1.29.22.2       mjf 
    317  1.29.22.2       mjf struct compat_43_sys_truncate_args;
    318  1.29.22.2       mjf 
    319  1.29.22.2       mjf struct compat_43_sys_ftruncate_args;
    320  1.29.22.2       mjf 
    321  1.29.22.2       mjf struct sys_fchmod_args;
    322  1.29.22.2       mjf 
    323        1.1     bjh21 struct linux_sys_fchown16_args {
    324        1.1     bjh21 	syscallarg(int) fd;
    325  1.29.22.3       mjf 	syscallarg(linux_uid16_t) uid;
    326  1.29.22.3       mjf 	syscallarg(linux_gid16_t) gid;
    327        1.1     bjh21 };
    328  1.29.22.1       mjf check_syscall_args(linux_sys_fchown16)
    329        1.1     bjh21 
    330       1.26  christos struct linux_sys_getpriority_args {
    331       1.26  christos 	syscallarg(int) which;
    332       1.26  christos 	syscallarg(int) who;
    333       1.26  christos };
    334  1.29.22.1       mjf check_syscall_args(linux_sys_getpriority)
    335       1.26  christos 
    336  1.29.22.2       mjf struct sys_setpriority_args;
    337  1.29.22.2       mjf 
    338  1.29.22.2       mjf struct sys_profil_args;
    339  1.29.22.2       mjf 
    340        1.1     bjh21 struct linux_sys_statfs_args {
    341        1.1     bjh21 	syscallarg(const char *) path;
    342        1.1     bjh21 	syscallarg(struct linux_statfs *) sp;
    343        1.1     bjh21 };
    344  1.29.22.1       mjf check_syscall_args(linux_sys_statfs)
    345        1.1     bjh21 
    346        1.1     bjh21 struct linux_sys_fstatfs_args {
    347        1.1     bjh21 	syscallarg(int) fd;
    348        1.1     bjh21 	syscallarg(struct linux_statfs *) sp;
    349        1.1     bjh21 };
    350  1.29.22.1       mjf check_syscall_args(linux_sys_fstatfs)
    351        1.1     bjh21 
    352        1.1     bjh21 struct linux_sys_socketcall_args {
    353        1.1     bjh21 	syscallarg(int) what;
    354        1.1     bjh21 	syscallarg(void *) args;
    355        1.1     bjh21 };
    356  1.29.22.1       mjf check_syscall_args(linux_sys_socketcall)
    357        1.1     bjh21 
    358  1.29.22.2       mjf struct sys_setitimer_args;
    359  1.29.22.2       mjf 
    360  1.29.22.2       mjf struct sys_getitimer_args;
    361  1.29.22.2       mjf 
    362        1.1     bjh21 struct linux_sys_stat_args {
    363        1.1     bjh21 	syscallarg(const char *) path;
    364        1.1     bjh21 	syscallarg(struct linux_stat *) sp;
    365        1.1     bjh21 };
    366  1.29.22.1       mjf check_syscall_args(linux_sys_stat)
    367        1.1     bjh21 
    368        1.1     bjh21 struct linux_sys_lstat_args {
    369        1.1     bjh21 	syscallarg(const char *) path;
    370        1.1     bjh21 	syscallarg(struct linux_stat *) sp;
    371        1.1     bjh21 };
    372  1.29.22.1       mjf check_syscall_args(linux_sys_lstat)
    373        1.1     bjh21 
    374        1.1     bjh21 struct linux_sys_fstat_args {
    375        1.1     bjh21 	syscallarg(int) fd;
    376        1.1     bjh21 	syscallarg(struct linux_stat *) sp;
    377        1.1     bjh21 };
    378  1.29.22.1       mjf check_syscall_args(linux_sys_fstat)
    379        1.1     bjh21 
    380        1.2     bjh21 struct linux_sys_olduname_args {
    381        1.2     bjh21 	syscallarg(struct linux_oldutsname *) up;
    382        1.1     bjh21 };
    383  1.29.22.1       mjf check_syscall_args(linux_sys_olduname)
    384        1.1     bjh21 
    385        1.1     bjh21 struct linux_sys_wait4_args {
    386        1.1     bjh21 	syscallarg(int) pid;
    387        1.1     bjh21 	syscallarg(int *) status;
    388        1.1     bjh21 	syscallarg(int) options;
    389        1.1     bjh21 	syscallarg(struct rusage *) rusage;
    390        1.1     bjh21 };
    391  1.29.22.1       mjf check_syscall_args(linux_sys_wait4)
    392        1.1     bjh21 
    393        1.1     bjh21 struct linux_sys_swapoff_args {
    394        1.1     bjh21 	syscallarg(const char *) path;
    395        1.1     bjh21 };
    396  1.29.22.1       mjf check_syscall_args(linux_sys_swapoff)
    397        1.1     bjh21 
    398        1.1     bjh21 struct linux_sys_sysinfo_args {
    399        1.1     bjh21 	syscallarg(struct linux_sysinfo *) arg;
    400        1.1     bjh21 };
    401  1.29.22.1       mjf check_syscall_args(linux_sys_sysinfo)
    402        1.1     bjh21 
    403        1.1     bjh21 struct linux_sys_ipc_args {
    404        1.1     bjh21 	syscallarg(int) what;
    405        1.1     bjh21 	syscallarg(int) a1;
    406        1.1     bjh21 	syscallarg(int) a2;
    407        1.1     bjh21 	syscallarg(int) a3;
    408       1.29  christos 	syscallarg(void *) ptr;
    409        1.1     bjh21 };
    410  1.29.22.1       mjf check_syscall_args(linux_sys_ipc)
    411        1.1     bjh21 
    412  1.29.22.2       mjf struct sys_fsync_args;
    413  1.29.22.2       mjf 
    414        1.1     bjh21 struct linux_sys_sigreturn_args {
    415        1.1     bjh21 	syscallarg(struct linux_sigcontext *) scp;
    416        1.1     bjh21 };
    417  1.29.22.1       mjf check_syscall_args(linux_sys_sigreturn)
    418        1.1     bjh21 
    419        1.1     bjh21 struct linux_sys_clone_args {
    420        1.1     bjh21 	syscallarg(int) flags;
    421        1.1     bjh21 	syscallarg(void *) stack;
    422        1.1     bjh21 };
    423  1.29.22.1       mjf check_syscall_args(linux_sys_clone)
    424        1.1     bjh21 
    425        1.1     bjh21 struct linux_sys_setdomainname_args {
    426        1.1     bjh21 	syscallarg(char *) domainname;
    427        1.1     bjh21 	syscallarg(int) len;
    428        1.1     bjh21 };
    429  1.29.22.1       mjf check_syscall_args(linux_sys_setdomainname)
    430        1.1     bjh21 
    431        1.2     bjh21 struct linux_sys_uname_args {
    432        1.2     bjh21 	syscallarg(struct linux_utsname *) up;
    433        1.2     bjh21 };
    434  1.29.22.1       mjf check_syscall_args(linux_sys_uname)
    435        1.2     bjh21 
    436        1.9  christos struct linux_sys_mprotect_args {
    437        1.9  christos 	syscallarg(const void *) start;
    438        1.9  christos 	syscallarg(unsigned long) len;
    439        1.9  christos 	syscallarg(int) prot;
    440        1.9  christos };
    441  1.29.22.1       mjf check_syscall_args(linux_sys_mprotect)
    442        1.9  christos 
    443        1.1     bjh21 struct linux_sys_sigprocmask_args {
    444        1.1     bjh21 	syscallarg(int) how;
    445        1.1     bjh21 	syscallarg(const linux_old_sigset_t *) set;
    446        1.1     bjh21 	syscallarg(linux_old_sigset_t *) oset;
    447        1.1     bjh21 };
    448  1.29.22.1       mjf check_syscall_args(linux_sys_sigprocmask)
    449        1.1     bjh21 
    450  1.29.22.2       mjf struct sys_getpgid_args;
    451  1.29.22.2       mjf 
    452  1.29.22.2       mjf struct sys_fchdir_args;
    453        1.1     bjh21 
    454        1.1     bjh21 struct linux_sys_personality_args {
    455        1.1     bjh21 	syscallarg(int) per;
    456        1.1     bjh21 };
    457  1.29.22.1       mjf check_syscall_args(linux_sys_personality)
    458        1.1     bjh21 
    459        1.1     bjh21 struct linux_sys_setfsuid_args {
    460        1.1     bjh21 	syscallarg(uid_t) uid;
    461        1.1     bjh21 };
    462  1.29.22.1       mjf check_syscall_args(linux_sys_setfsuid)
    463        1.1     bjh21 
    464  1.29.22.2       mjf struct linux_sys_setfsgid_args {
    465  1.29.22.2       mjf 	syscallarg(gid_t) gid;
    466  1.29.22.2       mjf };
    467  1.29.22.2       mjf check_syscall_args(linux_sys_setfsgid)
    468  1.29.22.2       mjf 
    469        1.1     bjh21 struct linux_sys_llseek_args {
    470        1.1     bjh21 	syscallarg(int) fd;
    471        1.1     bjh21 	syscallarg(u_int32_t) ohigh;
    472        1.1     bjh21 	syscallarg(u_int32_t) olow;
    473       1.29  christos 	syscallarg(void *) res;
    474        1.1     bjh21 	syscallarg(int) whence;
    475        1.1     bjh21 };
    476  1.29.22.1       mjf check_syscall_args(linux_sys_llseek)
    477        1.1     bjh21 
    478        1.1     bjh21 struct linux_sys_getdents_args {
    479        1.1     bjh21 	syscallarg(int) fd;
    480        1.1     bjh21 	syscallarg(struct linux_dirent *) dent;
    481        1.1     bjh21 	syscallarg(unsigned int) count;
    482        1.1     bjh21 };
    483  1.29.22.1       mjf check_syscall_args(linux_sys_getdents)
    484        1.1     bjh21 
    485        1.1     bjh21 struct linux_sys_select_args {
    486        1.1     bjh21 	syscallarg(int) nfds;
    487        1.1     bjh21 	syscallarg(fd_set *) readfds;
    488        1.1     bjh21 	syscallarg(fd_set *) writefds;
    489        1.1     bjh21 	syscallarg(fd_set *) exceptfds;
    490        1.1     bjh21 	syscallarg(struct timeval *) timeout;
    491        1.1     bjh21 };
    492  1.29.22.1       mjf check_syscall_args(linux_sys_select)
    493        1.1     bjh21 
    494  1.29.22.2       mjf struct sys_flock_args;
    495  1.29.22.2       mjf 
    496        1.1     bjh21 struct linux_sys_msync_args {
    497       1.29  christos 	syscallarg(void *) addr;
    498        1.1     bjh21 	syscallarg(int) len;
    499        1.1     bjh21 	syscallarg(int) fl;
    500        1.1     bjh21 };
    501  1.29.22.1       mjf check_syscall_args(linux_sys_msync)
    502        1.1     bjh21 
    503  1.29.22.2       mjf struct sys_readv_args;
    504  1.29.22.2       mjf 
    505  1.29.22.2       mjf struct sys_writev_args;
    506  1.29.22.2       mjf 
    507  1.29.22.2       mjf struct sys_getsid_args;
    508  1.29.22.2       mjf 
    509        1.1     bjh21 struct linux_sys_fdatasync_args {
    510        1.1     bjh21 	syscallarg(int) fd;
    511        1.1     bjh21 };
    512  1.29.22.1       mjf check_syscall_args(linux_sys_fdatasync)
    513        1.1     bjh21 
    514        1.1     bjh21 struct linux_sys___sysctl_args {
    515        1.1     bjh21 	syscallarg(struct linux___sysctl *) lsp;
    516        1.1     bjh21 };
    517  1.29.22.1       mjf check_syscall_args(linux_sys___sysctl)
    518        1.1     bjh21 
    519  1.29.22.2       mjf struct sys_mlock_args;
    520  1.29.22.2       mjf 
    521  1.29.22.2       mjf struct sys_munlock_args;
    522  1.29.22.2       mjf 
    523  1.29.22.2       mjf struct sys_mlockall_args;
    524  1.29.22.2       mjf 
    525        1.1     bjh21 struct linux_sys_sched_setparam_args {
    526        1.1     bjh21 	syscallarg(pid_t) pid;
    527        1.1     bjh21 	syscallarg(const struct linux_sched_param *) sp;
    528        1.1     bjh21 };
    529  1.29.22.1       mjf check_syscall_args(linux_sys_sched_setparam)
    530        1.1     bjh21 
    531        1.1     bjh21 struct linux_sys_sched_getparam_args {
    532        1.1     bjh21 	syscallarg(pid_t) pid;
    533        1.1     bjh21 	syscallarg(struct linux_sched_param *) sp;
    534        1.1     bjh21 };
    535  1.29.22.1       mjf check_syscall_args(linux_sys_sched_getparam)
    536        1.1     bjh21 
    537        1.1     bjh21 struct linux_sys_sched_setscheduler_args {
    538        1.1     bjh21 	syscallarg(pid_t) pid;
    539        1.1     bjh21 	syscallarg(int) policy;
    540        1.1     bjh21 	syscallarg(const struct linux_sched_param *) sp;
    541        1.1     bjh21 };
    542  1.29.22.1       mjf check_syscall_args(linux_sys_sched_setscheduler)
    543        1.1     bjh21 
    544        1.1     bjh21 struct linux_sys_sched_getscheduler_args {
    545        1.1     bjh21 	syscallarg(pid_t) pid;
    546        1.1     bjh21 };
    547  1.29.22.1       mjf check_syscall_args(linux_sys_sched_getscheduler)
    548        1.1     bjh21 
    549        1.1     bjh21 struct linux_sys_sched_get_priority_max_args {
    550        1.1     bjh21 	syscallarg(int) policy;
    551        1.1     bjh21 };
    552  1.29.22.1       mjf check_syscall_args(linux_sys_sched_get_priority_max)
    553        1.1     bjh21 
    554        1.1     bjh21 struct linux_sys_sched_get_priority_min_args {
    555        1.1     bjh21 	syscallarg(int) policy;
    556        1.1     bjh21 };
    557  1.29.22.1       mjf check_syscall_args(linux_sys_sched_get_priority_min)
    558        1.1     bjh21 
    559  1.29.22.2       mjf struct sys_nanosleep_args;
    560  1.29.22.2       mjf 
    561        1.1     bjh21 struct linux_sys_mremap_args {
    562        1.1     bjh21 	syscallarg(void *) old_address;
    563        1.1     bjh21 	syscallarg(size_t) old_size;
    564        1.1     bjh21 	syscallarg(size_t) new_size;
    565        1.1     bjh21 	syscallarg(u_long) flags;
    566        1.1     bjh21 };
    567  1.29.22.1       mjf check_syscall_args(linux_sys_mremap)
    568        1.1     bjh21 
    569  1.29.22.3       mjf struct linux_sys_setresuid16_args {
    570  1.29.22.3       mjf 	syscallarg(linux_uid16_t) ruid;
    571  1.29.22.3       mjf 	syscallarg(linux_uid16_t) euid;
    572  1.29.22.3       mjf 	syscallarg(linux_uid16_t) suid;
    573  1.29.22.3       mjf };
    574  1.29.22.3       mjf check_syscall_args(linux_sys_setresuid16)
    575  1.29.22.3       mjf 
    576  1.29.22.3       mjf struct linux_sys_getresuid16_args {
    577  1.29.22.3       mjf 	syscallarg(linux_uid16_t *) ruid;
    578  1.29.22.3       mjf 	syscallarg(linux_uid16_t *) euid;
    579  1.29.22.3       mjf 	syscallarg(linux_uid16_t *) suid;
    580        1.1     bjh21 };
    581  1.29.22.3       mjf check_syscall_args(linux_sys_getresuid16)
    582        1.1     bjh21 
    583  1.29.22.2       mjf struct sys_poll_args;
    584  1.29.22.2       mjf 
    585  1.29.22.3       mjf struct linux_sys_setresgid16_args {
    586  1.29.22.3       mjf 	syscallarg(linux_gid16_t) rgid;
    587  1.29.22.3       mjf 	syscallarg(linux_gid16_t) egid;
    588  1.29.22.3       mjf 	syscallarg(linux_gid16_t) sgid;
    589  1.29.22.3       mjf };
    590  1.29.22.3       mjf check_syscall_args(linux_sys_setresgid16)
    591  1.29.22.3       mjf 
    592  1.29.22.3       mjf struct linux_sys_getresgid16_args {
    593  1.29.22.3       mjf 	syscallarg(linux_gid16_t *) rgid;
    594  1.29.22.3       mjf 	syscallarg(linux_gid16_t *) egid;
    595  1.29.22.3       mjf 	syscallarg(linux_gid16_t *) sgid;
    596        1.1     bjh21 };
    597  1.29.22.3       mjf check_syscall_args(linux_sys_getresgid16)
    598        1.1     bjh21 
    599        1.1     bjh21 struct linux_sys_rt_sigaction_args {
    600        1.1     bjh21 	syscallarg(int) signum;
    601        1.1     bjh21 	syscallarg(const struct linux_sigaction *) nsa;
    602        1.1     bjh21 	syscallarg(struct linux_sigaction *) osa;
    603        1.1     bjh21 	syscallarg(size_t) sigsetsize;
    604        1.1     bjh21 };
    605  1.29.22.1       mjf check_syscall_args(linux_sys_rt_sigaction)
    606        1.1     bjh21 
    607        1.1     bjh21 struct linux_sys_rt_sigprocmask_args {
    608        1.1     bjh21 	syscallarg(int) how;
    609        1.1     bjh21 	syscallarg(const linux_sigset_t *) set;
    610        1.1     bjh21 	syscallarg(linux_sigset_t *) oset;
    611        1.1     bjh21 	syscallarg(size_t) sigsetsize;
    612        1.1     bjh21 };
    613  1.29.22.1       mjf check_syscall_args(linux_sys_rt_sigprocmask)
    614        1.1     bjh21 
    615        1.1     bjh21 struct linux_sys_rt_sigpending_args {
    616        1.1     bjh21 	syscallarg(linux_sigset_t *) set;
    617        1.1     bjh21 	syscallarg(size_t) sigsetsize;
    618        1.1     bjh21 };
    619  1.29.22.1       mjf check_syscall_args(linux_sys_rt_sigpending)
    620        1.1     bjh21 
    621        1.1     bjh21 struct linux_sys_rt_queueinfo_args {
    622        1.1     bjh21 	syscallarg(int) pid;
    623        1.1     bjh21 	syscallarg(int) signum;
    624        1.1     bjh21 	syscallarg(void *) uinfo;
    625        1.1     bjh21 };
    626  1.29.22.1       mjf check_syscall_args(linux_sys_rt_queueinfo)
    627        1.1     bjh21 
    628        1.1     bjh21 struct linux_sys_rt_sigsuspend_args {
    629        1.1     bjh21 	syscallarg(linux_sigset_t *) unewset;
    630        1.1     bjh21 	syscallarg(size_t) sigsetsize;
    631        1.1     bjh21 };
    632  1.29.22.1       mjf check_syscall_args(linux_sys_rt_sigsuspend)
    633        1.1     bjh21 
    634        1.1     bjh21 struct linux_sys_pread_args {
    635        1.1     bjh21 	syscallarg(int) fd;
    636        1.1     bjh21 	syscallarg(char *) buf;
    637        1.1     bjh21 	syscallarg(size_t) nbyte;
    638        1.1     bjh21 	syscallarg(linux_off_t) offset;
    639        1.1     bjh21 };
    640  1.29.22.1       mjf check_syscall_args(linux_sys_pread)
    641        1.1     bjh21 
    642        1.1     bjh21 struct linux_sys_pwrite_args {
    643        1.1     bjh21 	syscallarg(int) fd;
    644        1.1     bjh21 	syscallarg(char *) buf;
    645        1.1     bjh21 	syscallarg(size_t) nbyte;
    646        1.1     bjh21 	syscallarg(linux_off_t) offset;
    647        1.1     bjh21 };
    648  1.29.22.1       mjf check_syscall_args(linux_sys_pwrite)
    649        1.1     bjh21 
    650        1.1     bjh21 struct linux_sys_chown16_args {
    651        1.1     bjh21 	syscallarg(const char *) path;
    652  1.29.22.3       mjf 	syscallarg(linux_uid16_t) uid;
    653  1.29.22.3       mjf 	syscallarg(linux_gid16_t) gid;
    654        1.1     bjh21 };
    655  1.29.22.1       mjf check_syscall_args(linux_sys_chown16)
    656        1.1     bjh21 
    657  1.29.22.2       mjf struct sys___getcwd_args;
    658  1.29.22.2       mjf 
    659        1.1     bjh21 struct linux_sys_sigaltstack_args {
    660        1.1     bjh21 	syscallarg(const struct linux_sigaltstack *) ss;
    661        1.1     bjh21 	syscallarg(struct linux_sigaltstack *) oss;
    662        1.1     bjh21 };
    663  1.29.22.1       mjf check_syscall_args(linux_sys_sigaltstack)
    664        1.1     bjh21 
    665        1.8     bjh21 struct linux_sys_ugetrlimit_args {
    666        1.8     bjh21 	syscallarg(int) which;
    667        1.8     bjh21 	syscallarg(struct rlimit *) rlp;
    668        1.8     bjh21 };
    669  1.29.22.1       mjf check_syscall_args(linux_sys_ugetrlimit)
    670  1.29.22.2       mjf #define linux_sys_mmap2_args linux_sys_mmap_args
    671  1.29.22.2       mjf 
    672  1.29.22.2       mjf struct linux_sys_mmap2_args;
    673        1.8     bjh21 
    674        1.1     bjh21 struct linux_sys_truncate64_args {
    675        1.1     bjh21 	syscallarg(const char *) path;
    676        1.1     bjh21 	syscallarg(off_t) length;
    677        1.1     bjh21 };
    678  1.29.22.1       mjf check_syscall_args(linux_sys_truncate64)
    679        1.1     bjh21 
    680       1.16  jdolecek struct linux_sys_ftruncate64_args {
    681       1.16  jdolecek 	syscallarg(unsigned int) fd;
    682       1.16  jdolecek 	syscallarg(off_t) length;
    683       1.16  jdolecek };
    684  1.29.22.1       mjf check_syscall_args(linux_sys_ftruncate64)
    685       1.16  jdolecek 
    686        1.1     bjh21 struct linux_sys_stat64_args {
    687        1.1     bjh21 	syscallarg(const char *) path;
    688        1.1     bjh21 	syscallarg(struct linux_stat64 *) sp;
    689        1.1     bjh21 };
    690  1.29.22.1       mjf check_syscall_args(linux_sys_stat64)
    691        1.1     bjh21 
    692        1.1     bjh21 struct linux_sys_lstat64_args {
    693        1.1     bjh21 	syscallarg(const char *) path;
    694        1.1     bjh21 	syscallarg(struct linux_stat64 *) sp;
    695        1.1     bjh21 };
    696  1.29.22.1       mjf check_syscall_args(linux_sys_lstat64)
    697        1.1     bjh21 
    698        1.1     bjh21 struct linux_sys_fstat64_args {
    699        1.1     bjh21 	syscallarg(int) fd;
    700        1.1     bjh21 	syscallarg(struct linux_stat64 *) sp;
    701        1.1     bjh21 };
    702  1.29.22.1       mjf check_syscall_args(linux_sys_fstat64)
    703        1.1     bjh21 
    704  1.29.22.2       mjf struct sys___posix_lchown_args;
    705  1.29.22.2       mjf 
    706  1.29.22.2       mjf struct sys_setreuid_args;
    707  1.29.22.2       mjf 
    708  1.29.22.2       mjf struct sys_setregid_args;
    709  1.29.22.2       mjf 
    710  1.29.22.2       mjf struct sys_getgroups_args;
    711  1.29.22.2       mjf 
    712  1.29.22.2       mjf struct sys_setgroups_args;
    713  1.29.22.2       mjf 
    714  1.29.22.2       mjf struct sys___posix_fchown_args;
    715  1.29.22.2       mjf 
    716  1.29.22.3       mjf struct linux_sys_setresuid_args {
    717  1.29.22.3       mjf 	syscallarg(uid_t) ruid;
    718  1.29.22.3       mjf 	syscallarg(uid_t) euid;
    719  1.29.22.3       mjf 	syscallarg(uid_t) suid;
    720  1.29.22.3       mjf };
    721  1.29.22.3       mjf check_syscall_args(linux_sys_setresuid)
    722  1.29.22.2       mjf 
    723  1.29.22.3       mjf struct linux_sys_getresuid_args {
    724  1.29.22.3       mjf 	syscallarg(uid_t *) ruid;
    725  1.29.22.3       mjf 	syscallarg(uid_t *) euid;
    726  1.29.22.3       mjf 	syscallarg(uid_t *) suid;
    727  1.29.22.3       mjf };
    728  1.29.22.3       mjf check_syscall_args(linux_sys_getresuid)
    729  1.29.22.2       mjf 
    730  1.29.22.3       mjf struct linux_sys_setresgid_args {
    731  1.29.22.3       mjf 	syscallarg(gid_t) rgid;
    732  1.29.22.3       mjf 	syscallarg(gid_t) egid;
    733  1.29.22.3       mjf 	syscallarg(gid_t) sgid;
    734  1.29.22.3       mjf };
    735  1.29.22.3       mjf check_syscall_args(linux_sys_setresgid)
    736  1.29.22.2       mjf 
    737  1.29.22.3       mjf struct linux_sys_getresgid_args {
    738  1.29.22.3       mjf 	syscallarg(gid_t *) rgid;
    739  1.29.22.3       mjf 	syscallarg(gid_t *) egid;
    740  1.29.22.3       mjf 	syscallarg(gid_t *) sgid;
    741  1.29.22.3       mjf };
    742  1.29.22.3       mjf check_syscall_args(linux_sys_getresgid)
    743  1.29.22.2       mjf 
    744  1.29.22.2       mjf struct sys___posix_chown_args;
    745  1.29.22.2       mjf 
    746  1.29.22.2       mjf struct sys_setuid_args;
    747  1.29.22.2       mjf 
    748  1.29.22.2       mjf struct sys_setgid_args;
    749  1.29.22.2       mjf 
    750  1.29.22.2       mjf struct linux_sys_setfsuid_args;
    751  1.29.22.2       mjf 
    752  1.29.22.2       mjf struct linux_sys_setfsgid_args;
    753  1.29.22.2       mjf 
    754       1.10  christos struct linux_sys_getdents64_args {
    755       1.10  christos 	syscallarg(int) fd;
    756       1.10  christos 	syscallarg(struct linux_dirent64 *) dent;
    757       1.10  christos 	syscallarg(unsigned int) count;
    758       1.10  christos };
    759  1.29.22.1       mjf check_syscall_args(linux_sys_getdents64)
    760       1.10  christos 
    761  1.29.22.2       mjf struct sys_mincore_args;
    762  1.29.22.2       mjf 
    763  1.29.22.2       mjf struct sys_madvise_args;
    764  1.29.22.2       mjf 
    765       1.11  jdolecek struct linux_sys_fcntl64_args {
    766       1.11  jdolecek 	syscallarg(int) fd;
    767       1.11  jdolecek 	syscallarg(int) cmd;
    768       1.11  jdolecek 	syscallarg(void *) arg;
    769       1.11  jdolecek };
    770  1.29.22.1       mjf check_syscall_args(linux_sys_fcntl64)
    771       1.11  jdolecek 
    772       1.23      fvdl struct linux_sys_setxattr_args {
    773       1.23      fvdl 	syscallarg(char *) path;
    774       1.23      fvdl 	syscallarg(char *) name;
    775       1.23      fvdl 	syscallarg(void *) value;
    776       1.23      fvdl 	syscallarg(size_t) size;
    777       1.23      fvdl 	syscallarg(int) flags;
    778       1.23      fvdl };
    779  1.29.22.1       mjf check_syscall_args(linux_sys_setxattr)
    780       1.23      fvdl 
    781       1.23      fvdl struct linux_sys_lsetxattr_args {
    782       1.23      fvdl 	syscallarg(char *) path;
    783       1.23      fvdl 	syscallarg(char *) name;
    784       1.23      fvdl 	syscallarg(void *) value;
    785       1.23      fvdl 	syscallarg(size_t) size;
    786       1.23      fvdl 	syscallarg(int) flags;
    787       1.23      fvdl };
    788  1.29.22.1       mjf check_syscall_args(linux_sys_lsetxattr)
    789       1.23      fvdl 
    790       1.23      fvdl struct linux_sys_fsetxattr_args {
    791       1.23      fvdl 	syscallarg(int) fd;
    792       1.23      fvdl 	syscallarg(char *) name;
    793       1.23      fvdl 	syscallarg(void *) value;
    794       1.23      fvdl 	syscallarg(size_t) size;
    795       1.23      fvdl 	syscallarg(int) flags;
    796       1.23      fvdl };
    797  1.29.22.1       mjf check_syscall_args(linux_sys_fsetxattr)
    798       1.23      fvdl 
    799       1.23      fvdl struct linux_sys_getxattr_args {
    800       1.23      fvdl 	syscallarg(char *) path;
    801       1.23      fvdl 	syscallarg(char *) name;
    802       1.23      fvdl 	syscallarg(void *) value;
    803       1.23      fvdl 	syscallarg(size_t) size;
    804       1.23      fvdl };
    805  1.29.22.1       mjf check_syscall_args(linux_sys_getxattr)
    806       1.23      fvdl 
    807       1.23      fvdl struct linux_sys_lgetxattr_args {
    808       1.23      fvdl 	syscallarg(char *) path;
    809       1.23      fvdl 	syscallarg(char *) name;
    810       1.23      fvdl 	syscallarg(void *) value;
    811       1.23      fvdl 	syscallarg(size_t) size;
    812       1.23      fvdl };
    813  1.29.22.1       mjf check_syscall_args(linux_sys_lgetxattr)
    814       1.23      fvdl 
    815       1.23      fvdl struct linux_sys_fgetxattr_args {
    816       1.23      fvdl 	syscallarg(int) fd;
    817       1.23      fvdl 	syscallarg(char *) name;
    818       1.23      fvdl 	syscallarg(void *) value;
    819       1.23      fvdl 	syscallarg(size_t) size;
    820       1.23      fvdl };
    821  1.29.22.1       mjf check_syscall_args(linux_sys_fgetxattr)
    822       1.23      fvdl 
    823       1.23      fvdl struct linux_sys_listxattr_args {
    824       1.23      fvdl 	syscallarg(char *) path;
    825       1.23      fvdl 	syscallarg(char *) list;
    826       1.23      fvdl 	syscallarg(size_t) size;
    827       1.23      fvdl };
    828  1.29.22.1       mjf check_syscall_args(linux_sys_listxattr)
    829       1.23      fvdl 
    830       1.23      fvdl struct linux_sys_llistxattr_args {
    831       1.23      fvdl 	syscallarg(char *) path;
    832       1.23      fvdl 	syscallarg(char *) list;
    833       1.23      fvdl 	syscallarg(size_t) size;
    834       1.23      fvdl };
    835  1.29.22.1       mjf check_syscall_args(linux_sys_llistxattr)
    836       1.23      fvdl 
    837       1.23      fvdl struct linux_sys_flistxattr_args {
    838       1.23      fvdl 	syscallarg(int) fd;
    839       1.23      fvdl 	syscallarg(char *) list;
    840       1.23      fvdl 	syscallarg(size_t) size;
    841       1.23      fvdl };
    842  1.29.22.1       mjf check_syscall_args(linux_sys_flistxattr)
    843       1.23      fvdl 
    844       1.23      fvdl struct linux_sys_removexattr_args {
    845       1.23      fvdl 	syscallarg(char *) path;
    846       1.23      fvdl 	syscallarg(char *) name;
    847       1.23      fvdl };
    848  1.29.22.1       mjf check_syscall_args(linux_sys_removexattr)
    849       1.23      fvdl 
    850       1.23      fvdl struct linux_sys_lremovexattr_args {
    851       1.23      fvdl 	syscallarg(char *) path;
    852       1.23      fvdl 	syscallarg(char *) name;
    853       1.23      fvdl };
    854  1.29.22.1       mjf check_syscall_args(linux_sys_lremovexattr)
    855       1.23      fvdl 
    856       1.23      fvdl struct linux_sys_fremovexattr_args {
    857       1.23      fvdl 	syscallarg(int) fd;
    858       1.23      fvdl 	syscallarg(char *) name;
    859       1.23      fvdl };
    860  1.29.22.1       mjf check_syscall_args(linux_sys_fremovexattr)
    861       1.23      fvdl 
    862       1.19  jdolecek struct linux_sys_exit_group_args {
    863       1.19  jdolecek 	syscallarg(int) error_code;
    864       1.19  jdolecek };
    865  1.29.22.1       mjf check_syscall_args(linux_sys_exit_group)
    866       1.19  jdolecek 
    867       1.24      fvdl struct linux_sys_clock_settime_args {
    868       1.24      fvdl 	syscallarg(clockid_t) which;
    869       1.24      fvdl 	syscallarg(struct linux_timespec *) tp;
    870       1.24      fvdl };
    871  1.29.22.1       mjf check_syscall_args(linux_sys_clock_settime)
    872       1.24      fvdl 
    873       1.24      fvdl struct linux_sys_clock_gettime_args {
    874       1.24      fvdl 	syscallarg(clockid_t) which;
    875       1.24      fvdl 	syscallarg(struct linux_timespec *) tp;
    876       1.24      fvdl };
    877  1.29.22.1       mjf check_syscall_args(linux_sys_clock_gettime)
    878       1.24      fvdl 
    879       1.24      fvdl struct linux_sys_clock_getres_args {
    880       1.24      fvdl 	syscallarg(clockid_t) which;
    881       1.24      fvdl 	syscallarg(struct linux_timespec *) tp;
    882       1.24      fvdl };
    883  1.29.22.1       mjf check_syscall_args(linux_sys_clock_getres)
    884       1.24      fvdl 
    885       1.24      fvdl struct linux_sys_clock_nanosleep_args {
    886       1.24      fvdl 	syscallarg(clockid_t) which;
    887       1.24      fvdl 	syscallarg(int) flags;
    888       1.24      fvdl 	syscallarg(struct linux_timespec *) rqtp;
    889       1.24      fvdl 	syscallarg(struct linux_timespec *) rmtp;
    890       1.24      fvdl };
    891  1.29.22.1       mjf check_syscall_args(linux_sys_clock_nanosleep)
    892       1.24      fvdl 
    893       1.20  jdolecek struct linux_sys_statfs64_args {
    894       1.20  jdolecek 	syscallarg(const char *) path;
    895       1.20  jdolecek 	syscallarg(size_t) sz;
    896       1.20  jdolecek 	syscallarg(struct linux_statfs64 *) sp;
    897       1.20  jdolecek };
    898  1.29.22.1       mjf check_syscall_args(linux_sys_statfs64)
    899       1.20  jdolecek 
    900       1.20  jdolecek struct linux_sys_fstatfs64_args {
    901       1.20  jdolecek 	syscallarg(int) fd;
    902       1.20  jdolecek 	syscallarg(size_t) sz;
    903       1.20  jdolecek 	syscallarg(struct linux_statfs64 *) sp;
    904       1.20  jdolecek };
    905  1.29.22.1       mjf check_syscall_args(linux_sys_fstatfs64)
    906       1.20  jdolecek 
    907        1.3     bjh21 struct linux_sys_cacheflush_args {
    908        1.3     bjh21 	syscallarg(uintptr_t) from;
    909        1.3     bjh21 	syscallarg(intptr_t) to;
    910        1.3     bjh21 };
    911  1.29.22.1       mjf check_syscall_args(linux_sys_cacheflush)
    912        1.3     bjh21 
    913        1.1     bjh21 /*
    914        1.1     bjh21  * System call prototypes.
    915        1.1     bjh21  */
    916        1.1     bjh21 
    917  1.29.22.2       mjf int	linux_sys_nosys(struct lwp *, const void *, register_t *);
    918       1.17  jdolecek 
    919  1.29.22.2       mjf int	sys_exit(struct lwp *, const struct sys_exit_args *, register_t *);
    920       1.17  jdolecek 
    921  1.29.22.2       mjf int	sys_fork(struct lwp *, const void *, register_t *);
    922       1.17  jdolecek 
    923  1.29.22.2       mjf int	sys_read(struct lwp *, const struct sys_read_args *, register_t *);
    924       1.17  jdolecek 
    925  1.29.22.2       mjf int	sys_write(struct lwp *, const struct sys_write_args *, register_t *);
    926       1.17  jdolecek 
    927  1.29.22.2       mjf int	linux_sys_open(struct lwp *, const struct linux_sys_open_args *, register_t *);
    928       1.17  jdolecek 
    929  1.29.22.2       mjf int	sys_close(struct lwp *, const struct sys_close_args *, register_t *);
    930       1.17  jdolecek 
    931  1.29.22.2       mjf int	linux_sys_waitpid(struct lwp *, const struct linux_sys_waitpid_args *, register_t *);
    932       1.17  jdolecek 
    933  1.29.22.2       mjf int	linux_sys_creat(struct lwp *, const struct linux_sys_creat_args *, register_t *);
    934       1.17  jdolecek 
    935  1.29.22.2       mjf int	sys_link(struct lwp *, const struct sys_link_args *, register_t *);
    936       1.17  jdolecek 
    937  1.29.22.2       mjf int	linux_sys_unlink(struct lwp *, const struct linux_sys_unlink_args *, register_t *);
    938       1.17  jdolecek 
    939  1.29.22.2       mjf int	sys_execve(struct lwp *, const struct sys_execve_args *, register_t *);
    940       1.17  jdolecek 
    941  1.29.22.2       mjf int	sys_chdir(struct lwp *, const struct sys_chdir_args *, register_t *);
    942       1.17  jdolecek 
    943  1.29.22.2       mjf int	linux_sys_time(struct lwp *, const struct linux_sys_time_args *, register_t *);
    944       1.17  jdolecek 
    945  1.29.22.2       mjf int	linux_sys_mknod(struct lwp *, const struct linux_sys_mknod_args *, register_t *);
    946       1.17  jdolecek 
    947  1.29.22.2       mjf int	sys_chmod(struct lwp *, const struct sys_chmod_args *, register_t *);
    948       1.17  jdolecek 
    949  1.29.22.2       mjf int	linux_sys_lchown16(struct lwp *, const struct linux_sys_lchown16_args *, register_t *);
    950       1.17  jdolecek 
    951  1.29.22.2       mjf int	compat_43_sys_lseek(struct lwp *, const struct compat_43_sys_lseek_args *, register_t *);
    952       1.17  jdolecek 
    953  1.29.22.2       mjf int	sys_getpid(struct lwp *, const void *, register_t *);
    954       1.17  jdolecek 
    955  1.29.22.2       mjf int	sys_setuid(struct lwp *, const struct sys_setuid_args *, register_t *);
    956       1.17  jdolecek 
    957  1.29.22.2       mjf int	sys_getuid(struct lwp *, const void *, register_t *);
    958       1.17  jdolecek 
    959  1.29.22.2       mjf int	linux_sys_stime(struct lwp *, const struct linux_sys_stime_args *, register_t *);
    960       1.17  jdolecek 
    961  1.29.22.2       mjf int	linux_sys_ptrace(struct lwp *, const struct linux_sys_ptrace_args *, register_t *);
    962       1.17  jdolecek 
    963  1.29.22.2       mjf int	linux_sys_alarm(struct lwp *, const struct linux_sys_alarm_args *, register_t *);
    964       1.17  jdolecek 
    965  1.29.22.2       mjf int	linux_sys_pause(struct lwp *, const void *, register_t *);
    966       1.17  jdolecek 
    967  1.29.22.2       mjf int	linux_sys_utime(struct lwp *, const struct linux_sys_utime_args *, register_t *);
    968       1.17  jdolecek 
    969  1.29.22.2       mjf int	sys_access(struct lwp *, const struct sys_access_args *, register_t *);
    970       1.17  jdolecek 
    971  1.29.22.2       mjf int	linux_sys_nice(struct lwp *, const struct linux_sys_nice_args *, register_t *);
    972       1.17  jdolecek 
    973  1.29.22.2       mjf int	sys_sync(struct lwp *, const void *, register_t *);
    974       1.17  jdolecek 
    975  1.29.22.2       mjf int	linux_sys_kill(struct lwp *, const struct linux_sys_kill_args *, register_t *);
    976       1.17  jdolecek 
    977  1.29.22.2       mjf int	sys___posix_rename(struct lwp *, const struct sys___posix_rename_args *, register_t *);
    978       1.17  jdolecek 
    979  1.29.22.2       mjf int	sys_mkdir(struct lwp *, const struct sys_mkdir_args *, register_t *);
    980       1.17  jdolecek 
    981  1.29.22.2       mjf int	sys_rmdir(struct lwp *, const struct sys_rmdir_args *, register_t *);
    982       1.17  jdolecek 
    983  1.29.22.2       mjf int	sys_dup(struct lwp *, const struct sys_dup_args *, register_t *);
    984       1.17  jdolecek 
    985  1.29.22.2       mjf int	linux_sys_pipe(struct lwp *, const struct linux_sys_pipe_args *, register_t *);
    986       1.17  jdolecek 
    987  1.29.22.2       mjf int	linux_sys_times(struct lwp *, const struct linux_sys_times_args *, register_t *);
    988       1.17  jdolecek 
    989  1.29.22.2       mjf int	linux_sys_brk(struct lwp *, const struct linux_sys_brk_args *, register_t *);
    990       1.17  jdolecek 
    991  1.29.22.2       mjf int	sys_setgid(struct lwp *, const struct sys_setgid_args *, register_t *);
    992       1.17  jdolecek 
    993  1.29.22.2       mjf int	sys_getgid(struct lwp *, const void *, register_t *);
    994       1.17  jdolecek 
    995  1.29.22.2       mjf int	linux_sys_signal(struct lwp *, const struct linux_sys_signal_args *, register_t *);
    996       1.17  jdolecek 
    997  1.29.22.2       mjf int	sys_geteuid(struct lwp *, const void *, register_t *);
    998       1.17  jdolecek 
    999  1.29.22.2       mjf int	sys_getegid(struct lwp *, const void *, register_t *);
   1000       1.17  jdolecek 
   1001  1.29.22.2       mjf int	sys_acct(struct lwp *, const struct sys_acct_args *, register_t *);
   1002       1.17  jdolecek 
   1003  1.29.22.2       mjf int	linux_sys_ioctl(struct lwp *, const struct linux_sys_ioctl_args *, register_t *);
   1004       1.17  jdolecek 
   1005  1.29.22.2       mjf int	linux_sys_fcntl(struct lwp *, const struct linux_sys_fcntl_args *, register_t *);
   1006       1.17  jdolecek 
   1007  1.29.22.2       mjf int	sys_setpgid(struct lwp *, const struct sys_setpgid_args *, register_t *);
   1008       1.17  jdolecek 
   1009  1.29.22.2       mjf int	linux_sys_oldolduname(struct lwp *, const struct linux_sys_oldolduname_args *, register_t *);
   1010       1.17  jdolecek 
   1011  1.29.22.2       mjf int	sys_umask(struct lwp *, const struct sys_umask_args *, register_t *);
   1012       1.17  jdolecek 
   1013  1.29.22.2       mjf int	sys_chroot(struct lwp *, const struct sys_chroot_args *, register_t *);
   1014       1.17  jdolecek 
   1015  1.29.22.2       mjf int	sys_dup2(struct lwp *, const struct sys_dup2_args *, register_t *);
   1016       1.17  jdolecek 
   1017  1.29.22.2       mjf int	sys_getppid(struct lwp *, const void *, register_t *);
   1018       1.17  jdolecek 
   1019  1.29.22.2       mjf int	sys_getpgrp(struct lwp *, const void *, register_t *);
   1020       1.17  jdolecek 
   1021  1.29.22.2       mjf int	sys_setsid(struct lwp *, const void *, register_t *);
   1022       1.17  jdolecek 
   1023  1.29.22.2       mjf int	linux_sys_sigaction(struct lwp *, const struct linux_sys_sigaction_args *, register_t *);
   1024       1.17  jdolecek 
   1025  1.29.22.2       mjf int	linux_sys_siggetmask(struct lwp *, const void *, register_t *);
   1026       1.17  jdolecek 
   1027  1.29.22.2       mjf int	linux_sys_sigsetmask(struct lwp *, const struct linux_sys_sigsetmask_args *, register_t *);
   1028       1.17  jdolecek 
   1029  1.29.22.3       mjf int	linux_sys_setreuid16(struct lwp *, const struct linux_sys_setreuid16_args *, register_t *);
   1030       1.17  jdolecek 
   1031  1.29.22.3       mjf int	linux_sys_setregid16(struct lwp *, const struct linux_sys_setregid16_args *, register_t *);
   1032       1.17  jdolecek 
   1033  1.29.22.2       mjf int	linux_sys_sigsuspend(struct lwp *, const struct linux_sys_sigsuspend_args *, register_t *);
   1034       1.17  jdolecek 
   1035  1.29.22.2       mjf int	linux_sys_sigpending(struct lwp *, const struct linux_sys_sigpending_args *, register_t *);
   1036       1.17  jdolecek 
   1037  1.29.22.2       mjf int	compat_43_sys_sethostname(struct lwp *, const struct compat_43_sys_sethostname_args *, register_t *);
   1038       1.17  jdolecek 
   1039  1.29.22.2       mjf int	linux_sys_setrlimit(struct lwp *, const struct linux_sys_setrlimit_args *, register_t *);
   1040       1.17  jdolecek 
   1041  1.29.22.2       mjf int	linux_sys_getrlimit(struct lwp *, const struct linux_sys_getrlimit_args *, register_t *);
   1042       1.17  jdolecek 
   1043  1.29.22.2       mjf int	sys_getrusage(struct lwp *, const struct sys_getrusage_args *, register_t *);
   1044       1.17  jdolecek 
   1045  1.29.22.2       mjf int	linux_sys_gettimeofday(struct lwp *, const struct linux_sys_gettimeofday_args *, register_t *);
   1046       1.17  jdolecek 
   1047  1.29.22.2       mjf int	linux_sys_settimeofday(struct lwp *, const struct linux_sys_settimeofday_args *, register_t *);
   1048       1.17  jdolecek 
   1049  1.29.22.3       mjf int	linux_sys_getgroups16(struct lwp *, const struct linux_sys_getgroups16_args *, register_t *);
   1050       1.17  jdolecek 
   1051  1.29.22.3       mjf int	linux_sys_setgroups16(struct lwp *, const struct linux_sys_setgroups16_args *, register_t *);
   1052       1.17  jdolecek 
   1053  1.29.22.2       mjf int	linux_sys_oldselect(struct lwp *, const struct linux_sys_oldselect_args *, register_t *);
   1054       1.17  jdolecek 
   1055  1.29.22.2       mjf int	sys_symlink(struct lwp *, const struct sys_symlink_args *, register_t *);
   1056       1.17  jdolecek 
   1057  1.29.22.2       mjf int	compat_43_sys_lstat(struct lwp *, const struct compat_43_sys_lstat_args *, register_t *);
   1058       1.17  jdolecek 
   1059  1.29.22.2       mjf int	sys_readlink(struct lwp *, const struct sys_readlink_args *, register_t *);
   1060       1.17  jdolecek 
   1061        1.1     bjh21 #ifdef EXEC_AOUT
   1062  1.29.22.2       mjf int	linux_sys_uselib(struct lwp *, const struct linux_sys_uselib_args *, register_t *);
   1063       1.17  jdolecek 
   1064        1.1     bjh21 #else
   1065        1.1     bjh21 #endif
   1066  1.29.22.2       mjf int	linux_sys_swapon(struct lwp *, const struct linux_sys_swapon_args *, register_t *);
   1067       1.17  jdolecek 
   1068  1.29.22.2       mjf int	linux_sys_reboot(struct lwp *, const struct linux_sys_reboot_args *, register_t *);
   1069       1.17  jdolecek 
   1070  1.29.22.2       mjf int	linux_sys_readdir(struct lwp *, const struct linux_sys_readdir_args *, register_t *);
   1071       1.17  jdolecek 
   1072  1.29.22.2       mjf int	linux_sys_old_mmap(struct lwp *, const struct linux_sys_old_mmap_args *, register_t *);
   1073       1.17  jdolecek 
   1074  1.29.22.2       mjf int	sys_munmap(struct lwp *, const struct sys_munmap_args *, register_t *);
   1075       1.17  jdolecek 
   1076  1.29.22.2       mjf int	compat_43_sys_truncate(struct lwp *, const struct compat_43_sys_truncate_args *, register_t *);
   1077       1.17  jdolecek 
   1078  1.29.22.2       mjf int	compat_43_sys_ftruncate(struct lwp *, const struct compat_43_sys_ftruncate_args *, register_t *);
   1079       1.17  jdolecek 
   1080  1.29.22.2       mjf int	sys_fchmod(struct lwp *, const struct sys_fchmod_args *, register_t *);
   1081       1.17  jdolecek 
   1082  1.29.22.2       mjf int	linux_sys_fchown16(struct lwp *, const struct linux_sys_fchown16_args *, register_t *);
   1083       1.17  jdolecek 
   1084  1.29.22.2       mjf int	linux_sys_getpriority(struct lwp *, const struct linux_sys_getpriority_args *, register_t *);
   1085       1.17  jdolecek 
   1086  1.29.22.2       mjf int	sys_setpriority(struct lwp *, const struct sys_setpriority_args *, register_t *);
   1087       1.17  jdolecek 
   1088  1.29.22.2       mjf int	sys_profil(struct lwp *, const struct sys_profil_args *, register_t *);
   1089       1.17  jdolecek 
   1090  1.29.22.2       mjf int	linux_sys_statfs(struct lwp *, const struct linux_sys_statfs_args *, register_t *);
   1091       1.17  jdolecek 
   1092  1.29.22.2       mjf int	linux_sys_fstatfs(struct lwp *, const struct linux_sys_fstatfs_args *, register_t *);
   1093       1.17  jdolecek 
   1094  1.29.22.2       mjf int	linux_sys_socketcall(struct lwp *, const struct linux_sys_socketcall_args *, register_t *);
   1095       1.17  jdolecek 
   1096  1.29.22.2       mjf int	sys_setitimer(struct lwp *, const struct sys_setitimer_args *, register_t *);
   1097       1.17  jdolecek 
   1098  1.29.22.2       mjf int	sys_getitimer(struct lwp *, const struct sys_getitimer_args *, register_t *);
   1099       1.17  jdolecek 
   1100  1.29.22.2       mjf int	linux_sys_stat(struct lwp *, const struct linux_sys_stat_args *, register_t *);
   1101       1.17  jdolecek 
   1102  1.29.22.2       mjf int	linux_sys_lstat(struct lwp *, const struct linux_sys_lstat_args *, register_t *);
   1103       1.17  jdolecek 
   1104  1.29.22.2       mjf int	linux_sys_fstat(struct lwp *, const struct linux_sys_fstat_args *, register_t *);
   1105       1.17  jdolecek 
   1106  1.29.22.2       mjf int	linux_sys_olduname(struct lwp *, const struct linux_sys_olduname_args *, register_t *);
   1107       1.17  jdolecek 
   1108  1.29.22.2       mjf int	linux_sys_wait4(struct lwp *, const struct linux_sys_wait4_args *, register_t *);
   1109       1.17  jdolecek 
   1110  1.29.22.2       mjf int	linux_sys_swapoff(struct lwp *, const struct linux_sys_swapoff_args *, register_t *);
   1111       1.17  jdolecek 
   1112  1.29.22.2       mjf int	linux_sys_sysinfo(struct lwp *, const struct linux_sys_sysinfo_args *, register_t *);
   1113       1.17  jdolecek 
   1114  1.29.22.2       mjf int	linux_sys_ipc(struct lwp *, const struct linux_sys_ipc_args *, register_t *);
   1115       1.17  jdolecek 
   1116  1.29.22.2       mjf int	sys_fsync(struct lwp *, const struct sys_fsync_args *, register_t *);
   1117       1.17  jdolecek 
   1118  1.29.22.2       mjf int	linux_sys_sigreturn(struct lwp *, const struct linux_sys_sigreturn_args *, register_t *);
   1119       1.17  jdolecek 
   1120  1.29.22.2       mjf int	linux_sys_clone(struct lwp *, const struct linux_sys_clone_args *, register_t *);
   1121       1.17  jdolecek 
   1122  1.29.22.2       mjf int	linux_sys_setdomainname(struct lwp *, const struct linux_sys_setdomainname_args *, register_t *);
   1123       1.17  jdolecek 
   1124  1.29.22.2       mjf int	linux_sys_uname(struct lwp *, const struct linux_sys_uname_args *, register_t *);
   1125       1.17  jdolecek 
   1126  1.29.22.2       mjf int	linux_sys_mprotect(struct lwp *, const struct linux_sys_mprotect_args *, register_t *);
   1127       1.17  jdolecek 
   1128  1.29.22.2       mjf int	linux_sys_sigprocmask(struct lwp *, const struct linux_sys_sigprocmask_args *, register_t *);
   1129       1.17  jdolecek 
   1130  1.29.22.2       mjf int	sys_getpgid(struct lwp *, const struct sys_getpgid_args *, register_t *);
   1131       1.17  jdolecek 
   1132  1.29.22.2       mjf int	sys_fchdir(struct lwp *, const struct sys_fchdir_args *, register_t *);
   1133       1.17  jdolecek 
   1134  1.29.22.2       mjf int	linux_sys_personality(struct lwp *, const struct linux_sys_personality_args *, register_t *);
   1135       1.17  jdolecek 
   1136  1.29.22.2       mjf int	linux_sys_setfsuid(struct lwp *, const struct linux_sys_setfsuid_args *, register_t *);
   1137       1.17  jdolecek 
   1138  1.29.22.2       mjf int	linux_sys_setfsgid(struct lwp *, const struct linux_sys_setfsgid_args *, register_t *);
   1139       1.17  jdolecek 
   1140  1.29.22.2       mjf int	linux_sys_llseek(struct lwp *, const struct linux_sys_llseek_args *, register_t *);
   1141       1.17  jdolecek 
   1142  1.29.22.2       mjf int	linux_sys_getdents(struct lwp *, const struct linux_sys_getdents_args *, register_t *);
   1143       1.17  jdolecek 
   1144  1.29.22.2       mjf int	linux_sys_select(struct lwp *, const struct linux_sys_select_args *, register_t *);
   1145       1.17  jdolecek 
   1146  1.29.22.2       mjf int	sys_flock(struct lwp *, const struct sys_flock_args *, register_t *);
   1147       1.17  jdolecek 
   1148  1.29.22.2       mjf int	linux_sys_msync(struct lwp *, const struct linux_sys_msync_args *, register_t *);
   1149       1.17  jdolecek 
   1150  1.29.22.2       mjf int	sys_readv(struct lwp *, const struct sys_readv_args *, register_t *);
   1151       1.17  jdolecek 
   1152  1.29.22.2       mjf int	sys_writev(struct lwp *, const struct sys_writev_args *, register_t *);
   1153       1.17  jdolecek 
   1154  1.29.22.2       mjf int	sys_getsid(struct lwp *, const struct sys_getsid_args *, register_t *);
   1155       1.17  jdolecek 
   1156  1.29.22.2       mjf int	linux_sys_fdatasync(struct lwp *, const struct linux_sys_fdatasync_args *, register_t *);
   1157       1.17  jdolecek 
   1158  1.29.22.2       mjf int	linux_sys___sysctl(struct lwp *, const struct linux_sys___sysctl_args *, register_t *);
   1159       1.17  jdolecek 
   1160  1.29.22.2       mjf int	sys_mlock(struct lwp *, const struct sys_mlock_args *, register_t *);
   1161       1.17  jdolecek 
   1162  1.29.22.2       mjf int	sys_munlock(struct lwp *, const struct sys_munlock_args *, register_t *);
   1163       1.17  jdolecek 
   1164  1.29.22.2       mjf int	sys_mlockall(struct lwp *, const struct sys_mlockall_args *, register_t *);
   1165       1.17  jdolecek 
   1166  1.29.22.2       mjf int	sys_munlockall(struct lwp *, const void *, register_t *);
   1167       1.17  jdolecek 
   1168  1.29.22.2       mjf int	linux_sys_sched_setparam(struct lwp *, const struct linux_sys_sched_setparam_args *, register_t *);
   1169       1.17  jdolecek 
   1170  1.29.22.2       mjf int	linux_sys_sched_getparam(struct lwp *, const struct linux_sys_sched_getparam_args *, register_t *);
   1171       1.17  jdolecek 
   1172  1.29.22.2       mjf int	linux_sys_sched_setscheduler(struct lwp *, const struct linux_sys_sched_setscheduler_args *, register_t *);
   1173       1.17  jdolecek 
   1174  1.29.22.2       mjf int	linux_sys_sched_getscheduler(struct lwp *, const struct linux_sys_sched_getscheduler_args *, register_t *);
   1175       1.17  jdolecek 
   1176  1.29.22.2       mjf int	linux_sys_sched_yield(struct lwp *, const void *, register_t *);
   1177       1.17  jdolecek 
   1178  1.29.22.2       mjf int	linux_sys_sched_get_priority_max(struct lwp *, const struct linux_sys_sched_get_priority_max_args *, register_t *);
   1179       1.17  jdolecek 
   1180  1.29.22.2       mjf int	linux_sys_sched_get_priority_min(struct lwp *, const struct linux_sys_sched_get_priority_min_args *, register_t *);
   1181       1.17  jdolecek 
   1182  1.29.22.2       mjf int	sys_nanosleep(struct lwp *, const struct sys_nanosleep_args *, register_t *);
   1183       1.17  jdolecek 
   1184  1.29.22.2       mjf int	linux_sys_mremap(struct lwp *, const struct linux_sys_mremap_args *, register_t *);
   1185       1.17  jdolecek 
   1186  1.29.22.3       mjf int	linux_sys_setresuid16(struct lwp *, const struct linux_sys_setresuid16_args *, register_t *);
   1187       1.17  jdolecek 
   1188  1.29.22.3       mjf int	linux_sys_getresuid16(struct lwp *, const struct linux_sys_getresuid16_args *, register_t *);
   1189       1.17  jdolecek 
   1190  1.29.22.2       mjf int	sys_poll(struct lwp *, const struct sys_poll_args *, register_t *);
   1191       1.17  jdolecek 
   1192  1.29.22.3       mjf int	linux_sys_setresgid16(struct lwp *, const struct linux_sys_setresgid16_args *, register_t *);
   1193       1.17  jdolecek 
   1194  1.29.22.3       mjf int	linux_sys_getresgid16(struct lwp *, const struct linux_sys_getresgid16_args *, register_t *);
   1195       1.17  jdolecek 
   1196  1.29.22.2       mjf int	linux_sys_rt_sigaction(struct lwp *, const struct linux_sys_rt_sigaction_args *, register_t *);
   1197       1.17  jdolecek 
   1198  1.29.22.2       mjf int	linux_sys_rt_sigprocmask(struct lwp *, const struct linux_sys_rt_sigprocmask_args *, register_t *);
   1199       1.17  jdolecek 
   1200  1.29.22.2       mjf int	linux_sys_rt_sigpending(struct lwp *, const struct linux_sys_rt_sigpending_args *, register_t *);
   1201       1.17  jdolecek 
   1202  1.29.22.2       mjf int	linux_sys_rt_queueinfo(struct lwp *, const struct linux_sys_rt_queueinfo_args *, register_t *);
   1203       1.17  jdolecek 
   1204  1.29.22.2       mjf int	linux_sys_rt_sigsuspend(struct lwp *, const struct linux_sys_rt_sigsuspend_args *, register_t *);
   1205       1.17  jdolecek 
   1206  1.29.22.2       mjf int	linux_sys_pread(struct lwp *, const struct linux_sys_pread_args *, register_t *);
   1207       1.17  jdolecek 
   1208  1.29.22.2       mjf int	linux_sys_pwrite(struct lwp *, const struct linux_sys_pwrite_args *, register_t *);
   1209       1.17  jdolecek 
   1210  1.29.22.2       mjf int	linux_sys_chown16(struct lwp *, const struct linux_sys_chown16_args *, register_t *);
   1211       1.17  jdolecek 
   1212  1.29.22.2       mjf int	sys___getcwd(struct lwp *, const struct sys___getcwd_args *, register_t *);
   1213       1.17  jdolecek 
   1214  1.29.22.2       mjf int	linux_sys_sigaltstack(struct lwp *, const struct linux_sys_sigaltstack_args *, register_t *);
   1215       1.17  jdolecek 
   1216  1.29.22.2       mjf int	sys___vfork14(struct lwp *, const void *, register_t *);
   1217       1.17  jdolecek 
   1218  1.29.22.2       mjf int	linux_sys_ugetrlimit(struct lwp *, const struct linux_sys_ugetrlimit_args *, register_t *);
   1219       1.17  jdolecek 
   1220  1.29.22.2       mjf #define linux_sys_mmap2_args linux_sys_mmap_args
   1221  1.29.22.2       mjf int	linux_sys_mmap2(struct lwp *, const struct linux_sys_mmap2_args *, register_t *);
   1222       1.17  jdolecek 
   1223  1.29.22.2       mjf int	linux_sys_truncate64(struct lwp *, const struct linux_sys_truncate64_args *, register_t *);
   1224       1.17  jdolecek 
   1225  1.29.22.2       mjf int	linux_sys_ftruncate64(struct lwp *, const struct linux_sys_ftruncate64_args *, register_t *);
   1226       1.17  jdolecek 
   1227  1.29.22.2       mjf int	linux_sys_stat64(struct lwp *, const struct linux_sys_stat64_args *, register_t *);
   1228       1.17  jdolecek 
   1229  1.29.22.2       mjf int	linux_sys_lstat64(struct lwp *, const struct linux_sys_lstat64_args *, register_t *);
   1230       1.17  jdolecek 
   1231  1.29.22.2       mjf int	linux_sys_fstat64(struct lwp *, const struct linux_sys_fstat64_args *, register_t *);
   1232       1.17  jdolecek 
   1233  1.29.22.2       mjf int	sys___posix_lchown(struct lwp *, const struct sys___posix_lchown_args *, register_t *);
   1234       1.17  jdolecek 
   1235  1.29.22.3       mjf int	sys_setreuid(struct lwp *, const struct sys_setreuid_args *, register_t *);
   1236  1.29.22.3       mjf 
   1237  1.29.22.3       mjf int	sys_setregid(struct lwp *, const struct sys_setregid_args *, register_t *);
   1238  1.29.22.3       mjf 
   1239  1.29.22.3       mjf int	sys_getgroups(struct lwp *, const struct sys_getgroups_args *, register_t *);
   1240  1.29.22.3       mjf 
   1241  1.29.22.3       mjf int	sys_setgroups(struct lwp *, const struct sys_setgroups_args *, register_t *);
   1242  1.29.22.3       mjf 
   1243  1.29.22.2       mjf int	sys___posix_fchown(struct lwp *, const struct sys___posix_fchown_args *, register_t *);
   1244       1.17  jdolecek 
   1245  1.29.22.3       mjf int	linux_sys_setresuid(struct lwp *, const struct linux_sys_setresuid_args *, register_t *);
   1246  1.29.22.3       mjf 
   1247  1.29.22.3       mjf int	linux_sys_getresuid(struct lwp *, const struct linux_sys_getresuid_args *, register_t *);
   1248  1.29.22.3       mjf 
   1249  1.29.22.3       mjf int	linux_sys_setresgid(struct lwp *, const struct linux_sys_setresgid_args *, register_t *);
   1250  1.29.22.3       mjf 
   1251  1.29.22.3       mjf int	linux_sys_getresgid(struct lwp *, const struct linux_sys_getresgid_args *, register_t *);
   1252  1.29.22.3       mjf 
   1253  1.29.22.2       mjf int	sys___posix_chown(struct lwp *, const struct sys___posix_chown_args *, register_t *);
   1254       1.17  jdolecek 
   1255  1.29.22.2       mjf int	linux_sys_getdents64(struct lwp *, const struct linux_sys_getdents64_args *, register_t *);
   1256       1.17  jdolecek 
   1257  1.29.22.2       mjf int	sys_mincore(struct lwp *, const struct sys_mincore_args *, register_t *);
   1258       1.17  jdolecek 
   1259  1.29.22.2       mjf int	sys_madvise(struct lwp *, const struct sys_madvise_args *, register_t *);
   1260       1.17  jdolecek 
   1261  1.29.22.2       mjf int	linux_sys_fcntl64(struct lwp *, const struct linux_sys_fcntl64_args *, register_t *);
   1262       1.17  jdolecek 
   1263  1.29.22.2       mjf int	linux_sys_setxattr(struct lwp *, const struct linux_sys_setxattr_args *, register_t *);
   1264       1.23      fvdl 
   1265  1.29.22.2       mjf int	linux_sys_lsetxattr(struct lwp *, const struct linux_sys_lsetxattr_args *, register_t *);
   1266       1.23      fvdl 
   1267  1.29.22.2       mjf int	linux_sys_fsetxattr(struct lwp *, const struct linux_sys_fsetxattr_args *, register_t *);
   1268       1.23      fvdl 
   1269  1.29.22.2       mjf int	linux_sys_getxattr(struct lwp *, const struct linux_sys_getxattr_args *, register_t *);
   1270       1.23      fvdl 
   1271  1.29.22.2       mjf int	linux_sys_lgetxattr(struct lwp *, const struct linux_sys_lgetxattr_args *, register_t *);
   1272       1.23      fvdl 
   1273  1.29.22.2       mjf int	linux_sys_fgetxattr(struct lwp *, const struct linux_sys_fgetxattr_args *, register_t *);
   1274       1.23      fvdl 
   1275  1.29.22.2       mjf int	linux_sys_listxattr(struct lwp *, const struct linux_sys_listxattr_args *, register_t *);
   1276       1.23      fvdl 
   1277  1.29.22.2       mjf int	linux_sys_llistxattr(struct lwp *, const struct linux_sys_llistxattr_args *, register_t *);
   1278       1.23      fvdl 
   1279  1.29.22.2       mjf int	linux_sys_flistxattr(struct lwp *, const struct linux_sys_flistxattr_args *, register_t *);
   1280       1.23      fvdl 
   1281  1.29.22.2       mjf int	linux_sys_removexattr(struct lwp *, const struct linux_sys_removexattr_args *, register_t *);
   1282       1.23      fvdl 
   1283  1.29.22.2       mjf int	linux_sys_lremovexattr(struct lwp *, const struct linux_sys_lremovexattr_args *, register_t *);
   1284       1.23      fvdl 
   1285  1.29.22.2       mjf int	linux_sys_fremovexattr(struct lwp *, const struct linux_sys_fremovexattr_args *, register_t *);
   1286       1.23      fvdl 
   1287  1.29.22.2       mjf int	linux_sys_exit_group(struct lwp *, const struct linux_sys_exit_group_args *, register_t *);
   1288       1.19  jdolecek 
   1289  1.29.22.2       mjf int	linux_sys_clock_settime(struct lwp *, const struct linux_sys_clock_settime_args *, register_t *);
   1290       1.24      fvdl 
   1291  1.29.22.2       mjf int	linux_sys_clock_gettime(struct lwp *, const struct linux_sys_clock_gettime_args *, register_t *);
   1292       1.24      fvdl 
   1293  1.29.22.2       mjf int	linux_sys_clock_getres(struct lwp *, const struct linux_sys_clock_getres_args *, register_t *);
   1294       1.24      fvdl 
   1295  1.29.22.2       mjf int	linux_sys_clock_nanosleep(struct lwp *, const struct linux_sys_clock_nanosleep_args *, register_t *);
   1296       1.24      fvdl 
   1297  1.29.22.2       mjf int	linux_sys_statfs64(struct lwp *, const struct linux_sys_statfs64_args *, register_t *);
   1298       1.20  jdolecek 
   1299  1.29.22.2       mjf int	linux_sys_fstatfs64(struct lwp *, const struct linux_sys_fstatfs64_args *, register_t *);
   1300       1.20  jdolecek 
   1301  1.29.22.2       mjf int	linux_sys_breakpoint(struct lwp *, const void *, register_t *);
   1302       1.17  jdolecek 
   1303  1.29.22.2       mjf int	linux_sys_cacheflush(struct lwp *, const struct linux_sys_cacheflush_args *, register_t *);
   1304       1.17  jdolecek 
   1305       1.26  christos #endif /* _LINUX_SYS_SYSCALLARGS_H_ */
   1306