Home | History | Annotate | Line # | Download | only in amd64
linux32_syscallargs.h revision 1.17.8.3
      1  1.17.8.3      matt /* $NetBSD: linux32_syscallargs.h,v 1.17.8.3 2008/01/09 01:51:19 matt 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.17.8.3      matt  * created from	NetBSD: syscalls.master,v 1.26 2008/01/07 12:11:52 njoly Exp
      8       1.1      manu  */
      9       1.1      manu 
     10       1.1      manu #ifndef _LINUX32_SYS_SYSCALLARGS_H_
     11       1.1      manu #define	_LINUX32_SYS_SYSCALLARGS_H_
     12       1.1      manu 
     13  1.17.8.3      matt #define	LINUX32_SYS_MAXSYSARGS	8
     14       1.1      manu 
     15  1.17.8.3      matt #undef	syscallarg
     16       1.1      manu #define	syscallarg(x)							\
     17       1.1      manu 	union {								\
     18       1.1      manu 		register32_t pad;						\
     19       1.1      manu 		struct { x datum; } le;					\
     20       1.1      manu 		struct { /* LINTED zero array dimension */		\
     21       1.1      manu 			int8_t pad[  /* CONSTCOND */			\
     22       1.1      manu 				(sizeof (register32_t) < sizeof (x))	\
     23       1.1      manu 				? 0					\
     24       1.1      manu 				: sizeof (register32_t) - sizeof (x)];	\
     25       1.1      manu 			x datum;					\
     26       1.1      manu 		} be;							\
     27       1.1      manu 	}
     28       1.1      manu 
     29  1.17.8.3      matt #undef check_syscall_args
     30  1.17.8.3      matt #define check_syscall_args(call) \
     31  1.17.8.3      matt 	typedef char call##_check_args[sizeof (struct call##_args) \
     32  1.17.8.3      matt 		<= LINUX32_SYS_MAXSYSARGS * sizeof (register32_t) ? 1 : -1];
     33  1.17.8.3      matt 
     34  1.17.8.3      matt struct netbsd32_exit_args;
     35  1.17.8.3      matt 
     36  1.17.8.3      matt struct netbsd32_read_args;
     37  1.17.8.3      matt 
     38  1.17.8.3      matt struct netbsd32_write_args;
     39  1.17.8.3      matt 
     40       1.1      manu struct linux32_sys_open_args {
     41       1.1      manu 	syscallarg(const netbsd32_charp) path;
     42       1.1      manu 	syscallarg(int) flags;
     43       1.1      manu 	syscallarg(int) mode;
     44       1.1      manu };
     45  1.17.8.3      matt check_syscall_args(linux32_sys_open)
     46  1.17.8.3      matt 
     47  1.17.8.3      matt struct netbsd32_close_args;
     48       1.1      manu 
     49       1.1      manu struct linux32_sys_waitpid_args {
     50       1.1      manu 	syscallarg(int) pid;
     51       1.1      manu 	syscallarg(netbsd32_intp) status;
     52       1.1      manu 	syscallarg(int) options;
     53       1.1      manu };
     54  1.17.8.3      matt check_syscall_args(linux32_sys_waitpid)
     55       1.1      manu 
     56       1.1      manu struct linux32_sys_creat_args {
     57       1.1      manu 	syscallarg(const netbsd32_charp) path;
     58       1.1      manu 	syscallarg(int) mode;
     59       1.1      manu };
     60  1.17.8.3      matt check_syscall_args(linux32_sys_creat)
     61  1.17.8.3      matt 
     62  1.17.8.3      matt struct netbsd32_link_args;
     63       1.1      manu 
     64       1.1      manu struct linux32_sys_unlink_args {
     65       1.1      manu 	syscallarg(const netbsd32_charp) path;
     66       1.1      manu };
     67  1.17.8.3      matt check_syscall_args(linux32_sys_unlink)
     68  1.17.8.3      matt 
     69  1.17.8.3      matt struct netbsd32_execve_args;
     70  1.17.8.3      matt 
     71  1.17.8.3      matt struct netbsd32_chdir_args;
     72       1.1      manu 
     73       1.1      manu struct linux32_sys_time_args {
     74       1.1      manu 	syscallarg(linux32_timep_t) t;
     75       1.1      manu };
     76  1.17.8.3      matt check_syscall_args(linux32_sys_time)
     77       1.1      manu 
     78       1.1      manu struct linux32_sys_mknod_args {
     79       1.1      manu 	syscallarg(const netbsd32_charp) path;
     80       1.1      manu 	syscallarg(int) mode;
     81       1.1      manu 	syscallarg(int) dev;
     82       1.1      manu };
     83  1.17.8.3      matt check_syscall_args(linux32_sys_mknod)
     84  1.17.8.3      matt 
     85  1.17.8.3      matt struct netbsd32_chmod_args;
     86       1.1      manu 
     87       1.1      manu struct linux32_sys_lchown16_args {
     88       1.1      manu 	syscallarg(const netbsd32_charp) path;
     89       1.1      manu 	syscallarg(int) uid;
     90       1.1      manu 	syscallarg(int) gid;
     91       1.1      manu };
     92  1.17.8.3      matt check_syscall_args(linux32_sys_lchown16)
     93       1.1      manu 
     94       1.1      manu struct linux32_sys_break_args {
     95       1.1      manu 	syscallarg(netbsd32_charp) nsize;
     96       1.1      manu };
     97  1.17.8.3      matt check_syscall_args(linux32_sys_break)
     98  1.17.8.3      matt 
     99  1.17.8.3      matt struct compat_43_netbsd32_olseek_args;
    100  1.17.8.3      matt 
    101  1.17.8.3      matt struct netbsd32_setuid_args;
    102       1.1      manu 
    103       1.1      manu struct linux32_sys_stime_args {
    104       1.1      manu 	syscallarg(linux32_timep_t) t;
    105       1.1      manu };
    106  1.17.8.3      matt check_syscall_args(linux32_sys_stime)
    107       1.1      manu 
    108  1.17.8.2      matt struct linux32_sys_alarm_args {
    109  1.17.8.2      matt 	syscallarg(unsigned int) secs;
    110  1.17.8.2      matt };
    111  1.17.8.3      matt check_syscall_args(linux32_sys_alarm)
    112  1.17.8.2      matt 
    113       1.1      manu struct linux32_sys_utime_args {
    114       1.1      manu 	syscallarg(const netbsd32_charp) path;
    115       1.1      manu 	syscallarg(linux32_utimbufp_t) times;
    116       1.1      manu };
    117  1.17.8.3      matt check_syscall_args(linux32_sys_utime)
    118  1.17.8.3      matt 
    119  1.17.8.3      matt struct netbsd32_access_args;
    120       1.1      manu 
    121  1.17.8.2      matt struct linux32_sys_nice_args {
    122  1.17.8.2      matt 	syscallarg(int) incr;
    123  1.17.8.2      matt };
    124  1.17.8.3      matt check_syscall_args(linux32_sys_nice)
    125  1.17.8.2      matt 
    126       1.1      manu struct linux32_sys_kill_args {
    127       1.1      manu 	syscallarg(int) pid;
    128       1.1      manu 	syscallarg(int) signum;
    129       1.1      manu };
    130  1.17.8.3      matt check_syscall_args(linux32_sys_kill)
    131       1.1      manu 
    132       1.1      manu struct linux32_sys_rename_args {
    133       1.1      manu 	syscallarg(const netbsd32_charp) from;
    134       1.1      manu 	syscallarg(const netbsd32_charp) to;
    135       1.1      manu };
    136  1.17.8.3      matt check_syscall_args(linux32_sys_rename)
    137  1.17.8.3      matt 
    138  1.17.8.3      matt struct netbsd32_mkdir_args;
    139  1.17.8.3      matt 
    140  1.17.8.3      matt struct netbsd32_rmdir_args;
    141  1.17.8.3      matt 
    142  1.17.8.3      matt struct netbsd32_dup_args;
    143       1.1      manu 
    144       1.1      manu struct linux32_sys_pipe_args {
    145       1.1      manu 	syscallarg(netbsd32_intp) fd;
    146       1.1      manu };
    147  1.17.8.3      matt check_syscall_args(linux32_sys_pipe)
    148       1.1      manu 
    149       1.1      manu struct linux32_sys_times_args {
    150       1.1      manu 	syscallarg(linux32_tmsp_t) tms;
    151       1.1      manu };
    152  1.17.8.3      matt check_syscall_args(linux32_sys_times)
    153       1.1      manu 
    154       1.1      manu struct linux32_sys_brk_args {
    155       1.1      manu 	syscallarg(netbsd32_charp) nsize;
    156       1.1      manu };
    157  1.17.8.3      matt check_syscall_args(linux32_sys_brk)
    158  1.17.8.3      matt 
    159  1.17.8.3      matt struct netbsd32_setgid_args;
    160       1.1      manu 
    161       1.1      manu struct linux32_sys_signal_args {
    162       1.1      manu 	syscallarg(int) signum;
    163       1.1      manu 	syscallarg(linux32_handler_t) handler;
    164       1.1      manu };
    165  1.17.8.3      matt check_syscall_args(linux32_sys_signal)
    166  1.17.8.3      matt 
    167  1.17.8.3      matt struct netbsd32_acct_args;
    168       1.1      manu 
    169       1.1      manu struct linux32_sys_ioctl_args {
    170       1.1      manu 	syscallarg(int) fd;
    171       1.1      manu 	syscallarg(netbsd32_u_long) com;
    172       1.1      manu 	syscallarg(netbsd32_charp) data;
    173       1.1      manu };
    174  1.17.8.3      matt check_syscall_args(linux32_sys_ioctl)
    175       1.1      manu 
    176       1.1      manu struct linux32_sys_fcntl_args {
    177       1.1      manu 	syscallarg(int) fd;
    178       1.1      manu 	syscallarg(int) cmd;
    179       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    180       1.1      manu };
    181  1.17.8.3      matt check_syscall_args(linux32_sys_fcntl)
    182  1.17.8.3      matt 
    183  1.17.8.3      matt struct netbsd32_setpgid_args;
    184       1.1      manu 
    185       1.1      manu struct linux32_sys_oldolduname_args {
    186       1.1      manu 	syscallarg(linux32_oldold_utsnamep_t) up;
    187       1.1      manu };
    188  1.17.8.3      matt check_syscall_args(linux32_sys_oldolduname)
    189  1.17.8.3      matt 
    190  1.17.8.3      matt struct netbsd32_umask_args;
    191  1.17.8.3      matt 
    192  1.17.8.3      matt struct netbsd32_chroot_args;
    193  1.17.8.3      matt 
    194  1.17.8.3      matt struct netbsd32_dup2_args;
    195       1.1      manu 
    196  1.17.8.2      matt struct linux32_sys_setreuid16_args {
    197       1.1      manu 	syscallarg(int) ruid;
    198       1.1      manu 	syscallarg(int) euid;
    199       1.1      manu };
    200  1.17.8.3      matt check_syscall_args(linux32_sys_setreuid16)
    201       1.1      manu 
    202  1.17.8.2      matt struct linux32_sys_setregid16_args {
    203       1.1      manu 	syscallarg(int) rgid;
    204       1.1      manu 	syscallarg(int) egid;
    205       1.1      manu };
    206  1.17.8.3      matt check_syscall_args(linux32_sys_setregid16)
    207  1.17.8.3      matt 
    208  1.17.8.3      matt struct compat_43_netbsd32_osethostname_args;
    209       1.1      manu 
    210       1.1      manu struct linux32_sys_setrlimit_args {
    211       1.1      manu 	syscallarg(u_int) which;
    212       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    213       1.1      manu };
    214  1.17.8.3      matt check_syscall_args(linux32_sys_setrlimit)
    215       1.1      manu 
    216       1.1      manu struct linux32_sys_getrlimit_args {
    217       1.1      manu 	syscallarg(u_int) which;
    218       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    219       1.1      manu };
    220  1.17.8.3      matt check_syscall_args(linux32_sys_getrlimit)
    221  1.17.8.3      matt 
    222  1.17.8.3      matt struct netbsd32_getrusage_args;
    223       1.1      manu 
    224       1.1      manu struct linux32_sys_gettimeofday_args {
    225       1.1      manu 	syscallarg(netbsd32_timevalp_t) tp;
    226       1.1      manu 	syscallarg(netbsd32_timezonep_t) tzp;
    227       1.1      manu };
    228  1.17.8.3      matt check_syscall_args(linux32_sys_gettimeofday)
    229       1.1      manu 
    230       1.1      manu struct linux32_sys_settimeofday_args {
    231       1.1      manu 	syscallarg(netbsd32_timevalp_t) tp;
    232       1.1      manu 	syscallarg(netbsd32_timezonep_t) tzp;
    233       1.1      manu };
    234  1.17.8.3      matt check_syscall_args(linux32_sys_settimeofday)
    235       1.1      manu 
    236       1.1      manu struct linux32_sys_getgroups16_args {
    237       1.1      manu 	syscallarg(int) gidsetsize;
    238       1.1      manu 	syscallarg(linux32_gidp_t) gidset;
    239       1.1      manu };
    240  1.17.8.3      matt check_syscall_args(linux32_sys_getgroups16)
    241       1.1      manu 
    242       1.1      manu struct linux32_sys_setgroups16_args {
    243       1.1      manu 	syscallarg(int) gidsetsize;
    244       1.1      manu 	syscallarg(linux32_gidp_t) gidset;
    245       1.1      manu };
    246  1.17.8.3      matt check_syscall_args(linux32_sys_setgroups16)
    247       1.1      manu 
    248       1.1      manu struct linux32_sys_oldselect_args {
    249       1.1      manu 	syscallarg(linux32_oldselectp_t) lsp;
    250       1.1      manu };
    251  1.17.8.3      matt check_syscall_args(linux32_sys_oldselect)
    252       1.1      manu 
    253  1.17.8.3      matt struct netbsd32_symlink_args;
    254  1.17.8.3      matt 
    255  1.17.8.3      matt struct compat_43_netbsd32_lstat43_args;
    256  1.17.8.3      matt 
    257  1.17.8.3      matt struct netbsd32_readlink_args;
    258       1.1      manu 
    259       1.1      manu struct linux32_sys_swapon_args {
    260       1.1      manu 	syscallarg(netbsd32_charp) name;
    261       1.1      manu };
    262  1.17.8.3      matt check_syscall_args(linux32_sys_swapon)
    263       1.1      manu 
    264       1.1      manu struct linux32_sys_reboot_args {
    265       1.1      manu 	syscallarg(int) magic1;
    266       1.1      manu 	syscallarg(int) magic2;
    267       1.1      manu 	syscallarg(int) cmd;
    268       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    269       1.1      manu };
    270  1.17.8.3      matt check_syscall_args(linux32_sys_reboot)
    271  1.17.8.3      matt 
    272  1.17.8.3      matt struct linux32_sys_readdir_args {
    273  1.17.8.3      matt 	syscallarg(int) fd;
    274  1.17.8.3      matt 	syscallarg(netbsd32_voidp) dent;
    275  1.17.8.3      matt 	syscallarg(unsigned int) count;
    276  1.17.8.3      matt };
    277  1.17.8.3      matt check_syscall_args(linux32_sys_readdir)
    278       1.1      manu 
    279       1.1      manu struct linux32_sys_old_mmap_args {
    280       1.1      manu 	syscallarg(linux32_oldmmapp) lmp;
    281       1.1      manu };
    282  1.17.8.3      matt check_syscall_args(linux32_sys_old_mmap)
    283  1.17.8.3      matt 
    284  1.17.8.3      matt struct netbsd32_munmap_args;
    285       1.1      manu 
    286       1.1      manu struct linux32_sys_truncate_args {
    287       1.1      manu 	syscallarg(const netbsd32_charp) path;
    288       1.1      manu 	syscallarg(netbsd32_long) length;
    289       1.1      manu };
    290  1.17.8.3      matt check_syscall_args(linux32_sys_truncate)
    291  1.17.8.3      matt 
    292  1.17.8.3      matt struct compat_43_netbsd32_oftruncate_args;
    293  1.17.8.3      matt 
    294  1.17.8.3      matt struct netbsd32_fchmod_args;
    295       1.1      manu 
    296       1.1      manu struct linux32_sys_fchown16_args {
    297       1.1      manu 	syscallarg(int) fd;
    298       1.1      manu 	syscallarg(int) uid;
    299       1.1      manu 	syscallarg(int) gid;
    300       1.1      manu };
    301  1.17.8.3      matt check_syscall_args(linux32_sys_fchown16)
    302       1.1      manu 
    303       1.4      manu struct linux32_sys_getpriority_args {
    304       1.4      manu 	syscallarg(int) which;
    305       1.4      manu 	syscallarg(int) who;
    306       1.4      manu };
    307  1.17.8.3      matt check_syscall_args(linux32_sys_getpriority)
    308       1.4      manu 
    309       1.4      manu struct linux32_sys_setpriority_args {
    310       1.4      manu 	syscallarg(int) which;
    311       1.4      manu 	syscallarg(int) who;
    312       1.4      manu 	syscallarg(int) prio;
    313       1.4      manu };
    314  1.17.8.3      matt check_syscall_args(linux32_sys_setpriority)
    315       1.4      manu 
    316      1.16     njoly struct linux32_sys_statfs_args {
    317      1.16     njoly 	syscallarg(const netbsd32_charp) path;
    318      1.16     njoly 	syscallarg(linux32_statfsp) sp;
    319      1.16     njoly };
    320  1.17.8.3      matt check_syscall_args(linux32_sys_statfs)
    321      1.16     njoly 
    322       1.1      manu struct linux32_sys_socketcall_args {
    323       1.1      manu 	syscallarg(int) what;
    324       1.1      manu 	syscallarg(netbsd32_voidp) args;
    325       1.1      manu };
    326  1.17.8.3      matt check_syscall_args(linux32_sys_socketcall)
    327  1.17.8.3      matt 
    328  1.17.8.3      matt struct netbsd32_setitimer_args;
    329  1.17.8.3      matt 
    330  1.17.8.3      matt struct netbsd32_getitimer_args;
    331  1.17.8.3      matt 
    332  1.17.8.3      matt struct linux32_sys_olduname_args {
    333  1.17.8.3      matt 	syscallarg(linux32_oldutsnamep_t) up;
    334  1.17.8.3      matt };
    335  1.17.8.3      matt check_syscall_args(linux32_sys_olduname)
    336       1.1      manu 
    337       1.1      manu struct linux32_sys_wait4_args {
    338       1.1      manu 	syscallarg(int) pid;
    339       1.1      manu 	syscallarg(netbsd32_intp) status;
    340       1.1      manu 	syscallarg(int) options;
    341       1.1      manu 	syscallarg(netbsd32_rusagep_t) rusage;
    342       1.1      manu };
    343  1.17.8.3      matt check_syscall_args(linux32_sys_wait4)
    344       1.1      manu 
    345       1.1      manu struct linux32_sys_swapoff_args {
    346       1.1      manu 	syscallarg(const netbsd32_charp) path;
    347       1.1      manu };
    348  1.17.8.3      matt check_syscall_args(linux32_sys_swapoff)
    349       1.1      manu 
    350      1.10      manu struct linux32_sys_sysinfo_args {
    351      1.10      manu 	syscallarg(linux32_sysinfop_t) arg;
    352      1.10      manu };
    353  1.17.8.3      matt check_syscall_args(linux32_sys_sysinfo)
    354  1.17.8.3      matt 
    355  1.17.8.3      matt struct netbsd32_fsync_args;
    356      1.10      manu 
    357       1.1      manu struct linux32_sys_sigreturn_args {
    358       1.1      manu 	syscallarg(linux32_sigcontextp_t) scp;
    359       1.1      manu };
    360  1.17.8.3      matt check_syscall_args(linux32_sys_sigreturn)
    361       1.1      manu 
    362       1.1      manu struct linux32_sys_clone_args {
    363       1.1      manu 	syscallarg(int) flags;
    364       1.1      manu 	syscallarg(netbsd32_voidp) stack;
    365       1.1      manu };
    366  1.17.8.3      matt check_syscall_args(linux32_sys_clone)
    367       1.1      manu 
    368       1.1      manu struct linux32_sys_uname_args {
    369       1.1      manu 	syscallarg(linux32_utsnamep) up;
    370       1.1      manu };
    371  1.17.8.3      matt check_syscall_args(linux32_sys_uname)
    372       1.1      manu 
    373       1.1      manu struct linux32_sys_mprotect_args {
    374  1.17.8.3      matt 	syscallarg(netbsd32_voidp) start;
    375       1.1      manu 	syscallarg(netbsd32_size_t) len;
    376       1.1      manu 	syscallarg(int) prot;
    377       1.1      manu };
    378  1.17.8.3      matt check_syscall_args(linux32_sys_mprotect)
    379  1.17.8.3      matt 
    380  1.17.8.3      matt struct netbsd32_getpgid_args;
    381  1.17.8.3      matt 
    382  1.17.8.3      matt struct netbsd32_fchdir_args;
    383  1.17.8.3      matt 
    384  1.17.8.3      matt struct linux32_sys_setfsuid_args;
    385  1.17.8.3      matt 
    386  1.17.8.3      matt struct linux32_sys_setfsgid_args;
    387       1.1      manu 
    388       1.1      manu struct linux32_sys_llseek_args {
    389       1.1      manu 	syscallarg(int) fd;
    390       1.1      manu 	syscallarg(u_int32_t) ohigh;
    391       1.1      manu 	syscallarg(u_int32_t) olow;
    392      1.15  christos 	syscallarg(netbsd32_caddr_t) res;
    393       1.1      manu 	syscallarg(int) whence;
    394       1.1      manu };
    395  1.17.8.3      matt check_syscall_args(linux32_sys_llseek)
    396       1.1      manu 
    397       1.1      manu struct linux32_sys_getdents_args {
    398       1.1      manu 	syscallarg(int) fd;
    399       1.1      manu 	syscallarg(linux32_direntp_t) dent;
    400       1.1      manu 	syscallarg(unsigned int) count;
    401       1.1      manu };
    402  1.17.8.3      matt check_syscall_args(linux32_sys_getdents)
    403       1.1      manu 
    404       1.1      manu struct linux32_sys_select_args {
    405       1.1      manu 	syscallarg(int) nfds;
    406       1.1      manu 	syscallarg(netbsd32_fd_setp_t) readfds;
    407       1.1      manu 	syscallarg(netbsd32_fd_setp_t) writefds;
    408       1.1      manu 	syscallarg(netbsd32_fd_setp_t) exceptfds;
    409       1.1      manu 	syscallarg(netbsd32_timevalp_t) timeout;
    410       1.1      manu };
    411  1.17.8.3      matt check_syscall_args(linux32_sys_select)
    412  1.17.8.3      matt 
    413  1.17.8.3      matt struct netbsd32_flock_args;
    414  1.17.8.3      matt 
    415  1.17.8.3      matt struct netbsd32_readv_args;
    416  1.17.8.3      matt 
    417  1.17.8.3      matt struct netbsd32_writev_args;
    418  1.17.8.3      matt 
    419  1.17.8.3      matt struct netbsd32_getsid_args;
    420       1.1      manu 
    421  1.17.8.2      matt struct linux32_sys_fdatasync_args {
    422  1.17.8.2      matt 	syscallarg(int) fd;
    423  1.17.8.2      matt };
    424  1.17.8.3      matt check_syscall_args(linux32_sys_fdatasync)
    425  1.17.8.2      matt 
    426       1.1      manu struct linux32_sys___sysctl_args {
    427       1.1      manu 	syscallarg(linux32___sysctlp_t) lsp;
    428       1.1      manu };
    429  1.17.8.3      matt check_syscall_args(linux32_sys___sysctl)
    430  1.17.8.3      matt 
    431  1.17.8.3      matt struct netbsd32_mlockall_args;
    432       1.1      manu 
    433      1.10      manu struct linux32_sys_sched_getparam_args {
    434      1.10      manu 	syscallarg(pid_t) pid;
    435      1.10      manu 	syscallarg(linux32_sched_paramp_t) sp;
    436      1.10      manu };
    437  1.17.8.3      matt check_syscall_args(linux32_sys_sched_getparam)
    438      1.10      manu 
    439       1.1      manu struct linux32_sys_sched_setscheduler_args {
    440       1.1      manu 	syscallarg(pid_t) pid;
    441       1.1      manu 	syscallarg(int) policy;
    442       1.1      manu 	syscallarg(const linux32_sched_paramp_t) sp;
    443       1.1      manu };
    444  1.17.8.3      matt check_syscall_args(linux32_sys_sched_setscheduler)
    445       1.1      manu 
    446  1.17.8.2      matt struct linux32_sys_sched_getscheduler_args {
    447  1.17.8.2      matt 	syscallarg(pid_t) pid;
    448  1.17.8.2      matt };
    449  1.17.8.3      matt check_syscall_args(linux32_sys_sched_getscheduler)
    450  1.17.8.3      matt 
    451  1.17.8.3      matt struct netbsd32_nanosleep_args;
    452  1.17.8.2      matt 
    453      1.10      manu struct linux32_sys_mremap_args {
    454      1.10      manu 	syscallarg(netbsd32_voidp) old_address;
    455      1.10      manu 	syscallarg(netbsd32_size_t) old_size;
    456      1.10      manu 	syscallarg(netbsd32_size_t) new_size;
    457      1.10      manu 	syscallarg(netbsd32_u_long) flags;
    458      1.10      manu };
    459  1.17.8.3      matt check_syscall_args(linux32_sys_mremap)
    460      1.10      manu 
    461  1.17.8.2      matt struct linux32_sys_setresuid16_args {
    462  1.17.8.2      matt 	syscallarg(uid_t) ruid;
    463  1.17.8.2      matt 	syscallarg(uid_t) euid;
    464  1.17.8.2      matt 	syscallarg(uid_t) suid;
    465  1.17.8.2      matt };
    466  1.17.8.3      matt check_syscall_args(linux32_sys_setresuid16)
    467  1.17.8.3      matt 
    468  1.17.8.3      matt struct netbsd32_poll_args;
    469  1.17.8.2      matt 
    470  1.17.8.2      matt struct linux32_sys_setresgid16_args {
    471  1.17.8.2      matt 	syscallarg(gid_t) rgid;
    472  1.17.8.2      matt 	syscallarg(gid_t) egid;
    473  1.17.8.2      matt 	syscallarg(gid_t) sgid;
    474  1.17.8.2      matt };
    475  1.17.8.3      matt check_syscall_args(linux32_sys_setresgid16)
    476  1.17.8.2      matt 
    477       1.1      manu struct linux32_sys_rt_sigreturn_args {
    478       1.1      manu 	syscallarg(linux32_ucontextp_t) ucp;
    479       1.1      manu };
    480  1.17.8.3      matt check_syscall_args(linux32_sys_rt_sigreturn)
    481       1.1      manu 
    482       1.1      manu struct linux32_sys_rt_sigaction_args {
    483       1.1      manu 	syscallarg(int) signum;
    484       1.1      manu 	syscallarg(const linux32_sigactionp_t) nsa;
    485       1.1      manu 	syscallarg(linux32_sigactionp_t) osa;
    486       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    487       1.1      manu };
    488  1.17.8.3      matt check_syscall_args(linux32_sys_rt_sigaction)
    489       1.1      manu 
    490       1.1      manu struct linux32_sys_rt_sigprocmask_args {
    491       1.1      manu 	syscallarg(int) how;
    492       1.1      manu 	syscallarg(const linux32_sigsetp_t) set;
    493       1.1      manu 	syscallarg(linux32_sigsetp_t) oset;
    494       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    495       1.1      manu };
    496  1.17.8.3      matt check_syscall_args(linux32_sys_rt_sigprocmask)
    497       1.1      manu 
    498       1.1      manu struct linux32_sys_rt_sigsuspend_args {
    499       1.1      manu 	syscallarg(linux32_sigsetp_t) unewset;
    500       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    501       1.1      manu };
    502  1.17.8.3      matt check_syscall_args(linux32_sys_rt_sigsuspend)
    503       1.1      manu 
    504  1.17.8.1      matt struct linux32_sys_chown16_args {
    505  1.17.8.1      matt 	syscallarg(const netbsd32_charp) path;
    506  1.17.8.1      matt 	syscallarg(int) uid;
    507  1.17.8.1      matt 	syscallarg(int) gid;
    508  1.17.8.1      matt };
    509  1.17.8.3      matt check_syscall_args(linux32_sys_chown16)
    510  1.17.8.3      matt 
    511  1.17.8.3      matt struct netbsd32___getcwd_args;
    512  1.17.8.1      matt 
    513       1.1      manu struct linux32_sys_ugetrlimit_args {
    514       1.1      manu 	syscallarg(int) which;
    515       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    516       1.1      manu };
    517  1.17.8.3      matt check_syscall_args(linux32_sys_ugetrlimit)
    518       1.1      manu 
    519      1.10      manu struct linux32_sys_mmap2_args {
    520      1.10      manu 	syscallarg(netbsd32_u_long) addr;
    521      1.10      manu 	syscallarg(netbsd32_size_t) len;
    522      1.10      manu 	syscallarg(int) prot;
    523      1.10      manu 	syscallarg(int) flags;
    524      1.10      manu 	syscallarg(int) fd;
    525      1.10      manu 	syscallarg(linux32_off_t) offset;
    526      1.10      manu };
    527  1.17.8.3      matt check_syscall_args(linux32_sys_mmap2)
    528      1.10      manu 
    529       1.1      manu struct linux32_sys_stat64_args {
    530       1.1      manu 	syscallarg(const netbsd32_charp) path;
    531       1.1      manu 	syscallarg(linux32_stat64p) sp;
    532       1.1      manu };
    533  1.17.8.3      matt check_syscall_args(linux32_sys_stat64)
    534       1.1      manu 
    535       1.1      manu struct linux32_sys_lstat64_args {
    536       1.1      manu 	syscallarg(const netbsd32_charp) path;
    537       1.1      manu 	syscallarg(linux32_stat64p) sp;
    538       1.1      manu };
    539  1.17.8.3      matt check_syscall_args(linux32_sys_lstat64)
    540       1.1      manu 
    541       1.1      manu struct linux32_sys_fstat64_args {
    542       1.1      manu 	syscallarg(int) fd;
    543       1.1      manu 	syscallarg(linux32_stat64p) sp;
    544       1.1      manu };
    545  1.17.8.3      matt check_syscall_args(linux32_sys_fstat64)
    546  1.17.8.3      matt 
    547  1.17.8.3      matt struct netbsd32___posix_lchown_args;
    548  1.17.8.3      matt 
    549  1.17.8.3      matt struct netbsd32_setreuid_args;
    550  1.17.8.3      matt 
    551  1.17.8.3      matt struct netbsd32_setregid_args;
    552  1.17.8.3      matt 
    553  1.17.8.3      matt struct netbsd32_getgroups_args;
    554  1.17.8.3      matt 
    555  1.17.8.3      matt struct netbsd32_setgroups_args;
    556  1.17.8.3      matt 
    557  1.17.8.3      matt struct netbsd32___posix_fchown_args;
    558       1.1      manu 
    559       1.8      manu struct linux32_sys_setresuid_args {
    560       1.8      manu 	syscallarg(uid_t) ruid;
    561       1.8      manu 	syscallarg(uid_t) euid;
    562       1.8      manu 	syscallarg(uid_t) suid;
    563       1.8      manu };
    564  1.17.8.3      matt check_syscall_args(linux32_sys_setresuid)
    565       1.8      manu 
    566       1.8      manu struct linux32_sys_setresgid_args {
    567       1.8      manu 	syscallarg(gid_t) rgid;
    568       1.8      manu 	syscallarg(gid_t) egid;
    569       1.8      manu 	syscallarg(gid_t) sgid;
    570       1.8      manu };
    571  1.17.8.3      matt check_syscall_args(linux32_sys_setresgid)
    572  1.17.8.3      matt 
    573  1.17.8.3      matt struct netbsd32___posix_chown_args;
    574  1.17.8.3      matt 
    575  1.17.8.3      matt struct netbsd32_setuid_args;
    576  1.17.8.3      matt 
    577  1.17.8.3      matt struct netbsd32_setgid_args;
    578       1.8      manu 
    579  1.17.8.2      matt struct linux32_sys_setfsuid_args {
    580  1.17.8.2      matt 	syscallarg(uid_t) uid;
    581  1.17.8.2      matt };
    582  1.17.8.3      matt check_syscall_args(linux32_sys_setfsuid)
    583  1.17.8.3      matt 
    584  1.17.8.3      matt struct linux32_sys_setfsgid_args {
    585  1.17.8.3      matt 	syscallarg(gid_t) gid;
    586  1.17.8.3      matt };
    587  1.17.8.3      matt check_syscall_args(linux32_sys_setfsgid)
    588  1.17.8.3      matt 
    589  1.17.8.3      matt struct netbsd32_madvise_args;
    590  1.17.8.2      matt 
    591       1.1      manu struct linux32_sys_getdents64_args {
    592       1.1      manu 	syscallarg(int) fd;
    593       1.1      manu 	syscallarg(linux32_dirent64p_t) dent;
    594       1.1      manu 	syscallarg(unsigned int) count;
    595       1.1      manu };
    596  1.17.8.3      matt check_syscall_args(linux32_sys_getdents64)
    597       1.1      manu 
    598       1.1      manu struct linux32_sys_fcntl64_args {
    599       1.1      manu 	syscallarg(int) fd;
    600       1.1      manu 	syscallarg(int) cmd;
    601       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    602       1.1      manu };
    603  1.17.8.3      matt check_syscall_args(linux32_sys_fcntl64)
    604       1.1      manu 
    605  1.17.8.2      matt struct linux32_sys_exit_group_args {
    606  1.17.8.2      matt 	syscallarg(int) error_code;
    607  1.17.8.2      matt };
    608  1.17.8.3      matt check_syscall_args(linux32_sys_exit_group)
    609  1.17.8.2      matt 
    610       1.1      manu /*
    611       1.1      manu  * System call prototypes.
    612       1.1      manu  */
    613       1.1      manu 
    614  1.17.8.3      matt int	linux_sys_nosys(struct lwp *, const void *, register_t *);
    615  1.17.8.3      matt 
    616  1.17.8.3      matt int	netbsd32_exit(struct lwp *, const struct netbsd32_exit_args *, register_t *);
    617  1.17.8.3      matt 
    618  1.17.8.3      matt int	sys_fork(struct lwp *, const void *, register_t *);
    619  1.17.8.3      matt 
    620  1.17.8.3      matt int	netbsd32_read(struct lwp *, const struct netbsd32_read_args *, register_t *);
    621       1.1      manu 
    622  1.17.8.3      matt int	netbsd32_write(struct lwp *, const struct netbsd32_write_args *, register_t *);
    623       1.1      manu 
    624  1.17.8.3      matt int	linux32_sys_open(struct lwp *, const struct linux32_sys_open_args *, register_t *);
    625       1.1      manu 
    626  1.17.8.3      matt int	netbsd32_close(struct lwp *, const struct netbsd32_close_args *, register_t *);
    627       1.1      manu 
    628  1.17.8.3      matt int	linux32_sys_waitpid(struct lwp *, const struct linux32_sys_waitpid_args *, register_t *);
    629       1.1      manu 
    630  1.17.8.3      matt int	linux32_sys_creat(struct lwp *, const struct linux32_sys_creat_args *, register_t *);
    631       1.1      manu 
    632  1.17.8.3      matt int	netbsd32_link(struct lwp *, const struct netbsd32_link_args *, register_t *);
    633       1.1      manu 
    634  1.17.8.3      matt int	linux32_sys_unlink(struct lwp *, const struct linux32_sys_unlink_args *, register_t *);
    635       1.1      manu 
    636  1.17.8.3      matt int	netbsd32_execve(struct lwp *, const struct netbsd32_execve_args *, register_t *);
    637       1.1      manu 
    638  1.17.8.3      matt int	netbsd32_chdir(struct lwp *, const struct netbsd32_chdir_args *, register_t *);
    639       1.1      manu 
    640  1.17.8.3      matt int	linux32_sys_time(struct lwp *, const struct linux32_sys_time_args *, register_t *);
    641       1.1      manu 
    642  1.17.8.3      matt int	linux32_sys_mknod(struct lwp *, const struct linux32_sys_mknod_args *, register_t *);
    643       1.1      manu 
    644  1.17.8.3      matt int	netbsd32_chmod(struct lwp *, const struct netbsd32_chmod_args *, register_t *);
    645       1.1      manu 
    646  1.17.8.3      matt int	linux32_sys_lchown16(struct lwp *, const struct linux32_sys_lchown16_args *, register_t *);
    647       1.1      manu 
    648  1.17.8.3      matt int	linux32_sys_break(struct lwp *, const struct linux32_sys_break_args *, register_t *);
    649       1.1      manu 
    650  1.17.8.3      matt int	compat_43_netbsd32_olseek(struct lwp *, const struct compat_43_netbsd32_olseek_args *, register_t *);
    651       1.1      manu 
    652  1.17.8.3      matt int	linux_sys_getpid(struct lwp *, const void *, register_t *);
    653       1.1      manu 
    654  1.17.8.3      matt int	netbsd32_setuid(struct lwp *, const struct netbsd32_setuid_args *, register_t *);
    655       1.1      manu 
    656  1.17.8.3      matt int	sys_getuid(struct lwp *, const void *, register_t *);
    657       1.1      manu 
    658  1.17.8.3      matt int	linux32_sys_stime(struct lwp *, const struct linux32_sys_stime_args *, register_t *);
    659       1.1      manu 
    660  1.17.8.3      matt int	linux32_sys_alarm(struct lwp *, const struct linux32_sys_alarm_args *, register_t *);
    661       1.1      manu 
    662  1.17.8.3      matt int	linux_sys_pause(struct lwp *, const void *, register_t *);
    663       1.1      manu 
    664  1.17.8.3      matt int	linux32_sys_utime(struct lwp *, const struct linux32_sys_utime_args *, register_t *);
    665       1.1      manu 
    666  1.17.8.3      matt int	netbsd32_access(struct lwp *, const struct netbsd32_access_args *, register_t *);
    667       1.1      manu 
    668  1.17.8.3      matt int	linux32_sys_nice(struct lwp *, const struct linux32_sys_nice_args *, register_t *);
    669       1.1      manu 
    670  1.17.8.3      matt int	sys_sync(struct lwp *, const void *, register_t *);
    671       1.1      manu 
    672  1.17.8.3      matt int	linux32_sys_kill(struct lwp *, const struct linux32_sys_kill_args *, register_t *);
    673       1.1      manu 
    674  1.17.8.3      matt int	linux32_sys_rename(struct lwp *, const struct linux32_sys_rename_args *, register_t *);
    675       1.1      manu 
    676  1.17.8.3      matt int	netbsd32_mkdir(struct lwp *, const struct netbsd32_mkdir_args *, register_t *);
    677       1.1      manu 
    678  1.17.8.3      matt int	netbsd32_rmdir(struct lwp *, const struct netbsd32_rmdir_args *, register_t *);
    679       1.1      manu 
    680  1.17.8.3      matt int	netbsd32_dup(struct lwp *, const struct netbsd32_dup_args *, register_t *);
    681       1.1      manu 
    682  1.17.8.3      matt int	linux32_sys_pipe(struct lwp *, const struct linux32_sys_pipe_args *, register_t *);
    683       1.1      manu 
    684  1.17.8.3      matt int	linux32_sys_times(struct lwp *, const struct linux32_sys_times_args *, register_t *);
    685       1.1      manu 
    686  1.17.8.3      matt int	linux32_sys_brk(struct lwp *, const struct linux32_sys_brk_args *, register_t *);
    687       1.1      manu 
    688  1.17.8.3      matt int	netbsd32_setgid(struct lwp *, const struct netbsd32_setgid_args *, register_t *);
    689       1.1      manu 
    690  1.17.8.3      matt int	sys_getgid(struct lwp *, const void *, register_t *);
    691       1.1      manu 
    692  1.17.8.3      matt int	linux32_sys_signal(struct lwp *, const struct linux32_sys_signal_args *, register_t *);
    693       1.1      manu 
    694  1.17.8.3      matt int	sys_geteuid(struct lwp *, const void *, register_t *);
    695       1.1      manu 
    696  1.17.8.3      matt int	sys_getegid(struct lwp *, const void *, register_t *);
    697       1.1      manu 
    698  1.17.8.3      matt int	netbsd32_acct(struct lwp *, const struct netbsd32_acct_args *, register_t *);
    699       1.1      manu 
    700  1.17.8.3      matt int	linux32_sys_ioctl(struct lwp *, const struct linux32_sys_ioctl_args *, register_t *);
    701       1.1      manu 
    702  1.17.8.3      matt int	linux32_sys_fcntl(struct lwp *, const struct linux32_sys_fcntl_args *, register_t *);
    703       1.1      manu 
    704  1.17.8.3      matt int	netbsd32_setpgid(struct lwp *, const struct netbsd32_setpgid_args *, register_t *);
    705       1.1      manu 
    706  1.17.8.3      matt int	linux32_sys_oldolduname(struct lwp *, const struct linux32_sys_oldolduname_args *, register_t *);
    707       1.1      manu 
    708  1.17.8.3      matt int	netbsd32_umask(struct lwp *, const struct netbsd32_umask_args *, register_t *);
    709       1.1      manu 
    710  1.17.8.3      matt int	netbsd32_chroot(struct lwp *, const struct netbsd32_chroot_args *, register_t *);
    711       1.1      manu 
    712  1.17.8.3      matt int	netbsd32_dup2(struct lwp *, const struct netbsd32_dup2_args *, register_t *);
    713       1.1      manu 
    714  1.17.8.3      matt int	linux_sys_getppid(struct lwp *, const void *, register_t *);
    715       1.1      manu 
    716  1.17.8.3      matt int	sys_getpgrp(struct lwp *, const void *, register_t *);
    717       1.1      manu 
    718  1.17.8.3      matt int	sys_setsid(struct lwp *, const void *, register_t *);
    719       1.1      manu 
    720  1.17.8.3      matt int	linux32_sys_setreuid16(struct lwp *, const struct linux32_sys_setreuid16_args *, register_t *);
    721       1.1      manu 
    722  1.17.8.3      matt int	linux32_sys_setregid16(struct lwp *, const struct linux32_sys_setregid16_args *, register_t *);
    723       1.1      manu 
    724  1.17.8.3      matt int	compat_43_netbsd32_osethostname(struct lwp *, const struct compat_43_netbsd32_osethostname_args *, register_t *);
    725       1.1      manu 
    726  1.17.8.3      matt int	linux32_sys_setrlimit(struct lwp *, const struct linux32_sys_setrlimit_args *, register_t *);
    727       1.1      manu 
    728  1.17.8.3      matt int	linux32_sys_getrlimit(struct lwp *, const struct linux32_sys_getrlimit_args *, register_t *);
    729       1.1      manu 
    730  1.17.8.3      matt int	netbsd32_getrusage(struct lwp *, const struct netbsd32_getrusage_args *, register_t *);
    731       1.1      manu 
    732  1.17.8.3      matt int	linux32_sys_gettimeofday(struct lwp *, const struct linux32_sys_gettimeofday_args *, register_t *);
    733       1.1      manu 
    734  1.17.8.3      matt int	linux32_sys_settimeofday(struct lwp *, const struct linux32_sys_settimeofday_args *, register_t *);
    735       1.1      manu 
    736  1.17.8.3      matt int	linux32_sys_getgroups16(struct lwp *, const struct linux32_sys_getgroups16_args *, register_t *);
    737       1.1      manu 
    738  1.17.8.3      matt int	linux32_sys_setgroups16(struct lwp *, const struct linux32_sys_setgroups16_args *, register_t *);
    739       1.1      manu 
    740  1.17.8.3      matt int	linux32_sys_oldselect(struct lwp *, const struct linux32_sys_oldselect_args *, register_t *);
    741       1.1      manu 
    742  1.17.8.3      matt int	netbsd32_symlink(struct lwp *, const struct netbsd32_symlink_args *, register_t *);
    743       1.1      manu 
    744  1.17.8.3      matt int	compat_43_netbsd32_lstat43(struct lwp *, const struct compat_43_netbsd32_lstat43_args *, register_t *);
    745       1.1      manu 
    746  1.17.8.3      matt int	netbsd32_readlink(struct lwp *, const struct netbsd32_readlink_args *, register_t *);
    747       1.1      manu 
    748  1.17.8.3      matt int	linux32_sys_swapon(struct lwp *, const struct linux32_sys_swapon_args *, register_t *);
    749       1.1      manu 
    750  1.17.8.3      matt int	linux32_sys_reboot(struct lwp *, const struct linux32_sys_reboot_args *, register_t *);
    751       1.1      manu 
    752  1.17.8.3      matt int	linux32_sys_readdir(struct lwp *, const struct linux32_sys_readdir_args *, register_t *);
    753       1.1      manu 
    754  1.17.8.3      matt int	linux32_sys_old_mmap(struct lwp *, const struct linux32_sys_old_mmap_args *, register_t *);
    755       1.1      manu 
    756  1.17.8.3      matt int	netbsd32_munmap(struct lwp *, const struct netbsd32_munmap_args *, register_t *);
    757       1.1      manu 
    758  1.17.8.3      matt int	linux32_sys_truncate(struct lwp *, const struct linux32_sys_truncate_args *, register_t *);
    759       1.1      manu 
    760  1.17.8.3      matt int	compat_43_netbsd32_oftruncate(struct lwp *, const struct compat_43_netbsd32_oftruncate_args *, register_t *);
    761       1.1      manu 
    762  1.17.8.3      matt int	netbsd32_fchmod(struct lwp *, const struct netbsd32_fchmod_args *, register_t *);
    763       1.1      manu 
    764  1.17.8.3      matt int	linux32_sys_fchown16(struct lwp *, const struct linux32_sys_fchown16_args *, register_t *);
    765       1.1      manu 
    766  1.17.8.3      matt int	linux32_sys_getpriority(struct lwp *, const struct linux32_sys_getpriority_args *, register_t *);
    767       1.1      manu 
    768  1.17.8.3      matt int	linux32_sys_setpriority(struct lwp *, const struct linux32_sys_setpriority_args *, register_t *);
    769       1.1      manu 
    770  1.17.8.3      matt int	linux32_sys_statfs(struct lwp *, const struct linux32_sys_statfs_args *, register_t *);
    771       1.1      manu 
    772  1.17.8.3      matt int	linux32_sys_socketcall(struct lwp *, const struct linux32_sys_socketcall_args *, register_t *);
    773       1.1      manu 
    774  1.17.8.3      matt int	netbsd32_setitimer(struct lwp *, const struct netbsd32_setitimer_args *, register_t *);
    775      1.16     njoly 
    776  1.17.8.3      matt int	netbsd32_getitimer(struct lwp *, const struct netbsd32_getitimer_args *, register_t *);
    777       1.1      manu 
    778  1.17.8.3      matt int	linux32_sys_olduname(struct lwp *, const struct linux32_sys_olduname_args *, register_t *);
    779       1.1      manu 
    780  1.17.8.3      matt int	linux32_sys_wait4(struct lwp *, const struct linux32_sys_wait4_args *, register_t *);
    781       1.1      manu 
    782  1.17.8.3      matt int	linux32_sys_swapoff(struct lwp *, const struct linux32_sys_swapoff_args *, register_t *);
    783       1.1      manu 
    784  1.17.8.3      matt int	linux32_sys_sysinfo(struct lwp *, const struct linux32_sys_sysinfo_args *, register_t *);
    785       1.1      manu 
    786  1.17.8.3      matt int	netbsd32_fsync(struct lwp *, const struct netbsd32_fsync_args *, register_t *);
    787      1.10      manu 
    788  1.17.8.3      matt int	linux32_sys_sigreturn(struct lwp *, const struct linux32_sys_sigreturn_args *, register_t *);
    789       1.1      manu 
    790  1.17.8.3      matt int	linux32_sys_clone(struct lwp *, const struct linux32_sys_clone_args *, register_t *);
    791       1.1      manu 
    792  1.17.8.3      matt int	linux32_sys_uname(struct lwp *, const struct linux32_sys_uname_args *, register_t *);
    793       1.1      manu 
    794  1.17.8.3      matt int	linux32_sys_mprotect(struct lwp *, const struct linux32_sys_mprotect_args *, register_t *);
    795       1.1      manu 
    796  1.17.8.3      matt int	netbsd32_getpgid(struct lwp *, const struct netbsd32_getpgid_args *, register_t *);
    797       1.1      manu 
    798  1.17.8.3      matt int	netbsd32_fchdir(struct lwp *, const struct netbsd32_fchdir_args *, register_t *);
    799       1.1      manu 
    800  1.17.8.3      matt int	linux32_sys_setfsuid(struct lwp *, const struct linux32_sys_setfsuid_args *, register_t *);
    801      1.13     njoly 
    802  1.17.8.3      matt int	linux32_sys_setfsgid(struct lwp *, const struct linux32_sys_setfsgid_args *, register_t *);
    803      1.13     njoly 
    804  1.17.8.3      matt int	linux32_sys_llseek(struct lwp *, const struct linux32_sys_llseek_args *, register_t *);
    805       1.1      manu 
    806  1.17.8.3      matt int	linux32_sys_getdents(struct lwp *, const struct linux32_sys_getdents_args *, register_t *);
    807       1.1      manu 
    808  1.17.8.3      matt int	linux32_sys_select(struct lwp *, const struct linux32_sys_select_args *, register_t *);
    809       1.1      manu 
    810  1.17.8.3      matt int	netbsd32_flock(struct lwp *, const struct netbsd32_flock_args *, register_t *);
    811       1.1      manu 
    812  1.17.8.3      matt int	netbsd32_readv(struct lwp *, const struct netbsd32_readv_args *, register_t *);
    813       1.1      manu 
    814  1.17.8.3      matt int	netbsd32_writev(struct lwp *, const struct netbsd32_writev_args *, register_t *);
    815       1.1      manu 
    816  1.17.8.3      matt int	netbsd32_getsid(struct lwp *, const struct netbsd32_getsid_args *, register_t *);
    817       1.1      manu 
    818  1.17.8.3      matt int	linux32_sys_fdatasync(struct lwp *, const struct linux32_sys_fdatasync_args *, register_t *);
    819       1.9      manu 
    820  1.17.8.3      matt int	linux32_sys___sysctl(struct lwp *, const struct linux32_sys___sysctl_args *, register_t *);
    821       1.1      manu 
    822  1.17.8.3      matt int	netbsd32_mlockall(struct lwp *, const struct netbsd32_mlockall_args *, register_t *);
    823       1.1      manu 
    824  1.17.8.3      matt int	sys_munlockall(struct lwp *, const void *, register_t *);
    825       1.1      manu 
    826  1.17.8.3      matt int	linux32_sys_sched_getparam(struct lwp *, const struct linux32_sys_sched_getparam_args *, register_t *);
    827      1.10      manu 
    828  1.17.8.3      matt int	linux32_sys_sched_setscheduler(struct lwp *, const struct linux32_sys_sched_setscheduler_args *, register_t *);
    829       1.1      manu 
    830  1.17.8.3      matt int	linux32_sys_sched_getscheduler(struct lwp *, const struct linux32_sys_sched_getscheduler_args *, register_t *);
    831      1.10      manu 
    832  1.17.8.3      matt int	linux_sys_sched_yield(struct lwp *, const void *, register_t *);
    833      1.13     njoly 
    834  1.17.8.3      matt int	netbsd32_nanosleep(struct lwp *, const struct netbsd32_nanosleep_args *, register_t *);
    835       1.1      manu 
    836  1.17.8.3      matt int	linux32_sys_mremap(struct lwp *, const struct linux32_sys_mremap_args *, register_t *);
    837      1.10      manu 
    838  1.17.8.3      matt int	linux32_sys_setresuid16(struct lwp *, const struct linux32_sys_setresuid16_args *, register_t *);
    839       1.1      manu 
    840  1.17.8.3      matt int	netbsd32_poll(struct lwp *, const struct netbsd32_poll_args *, register_t *);
    841       1.1      manu 
    842  1.17.8.3      matt int	linux32_sys_setresgid16(struct lwp *, const struct linux32_sys_setresgid16_args *, register_t *);
    843       1.1      manu 
    844  1.17.8.3      matt int	linux32_sys_rt_sigreturn(struct lwp *, const struct linux32_sys_rt_sigreturn_args *, register_t *);
    845       1.1      manu 
    846  1.17.8.3      matt int	linux32_sys_rt_sigaction(struct lwp *, const struct linux32_sys_rt_sigaction_args *, register_t *);
    847       1.1      manu 
    848  1.17.8.3      matt int	linux32_sys_rt_sigprocmask(struct lwp *, const struct linux32_sys_rt_sigprocmask_args *, register_t *);
    849       1.1      manu 
    850  1.17.8.3      matt int	linux32_sys_rt_sigsuspend(struct lwp *, const struct linux32_sys_rt_sigsuspend_args *, register_t *);
    851       1.1      manu 
    852  1.17.8.3      matt int	linux32_sys_chown16(struct lwp *, const struct linux32_sys_chown16_args *, register_t *);
    853  1.17.8.1      matt 
    854  1.17.8.3      matt int	netbsd32___getcwd(struct lwp *, const struct netbsd32___getcwd_args *, register_t *);
    855       1.2      manu 
    856  1.17.8.3      matt int	sys___vfork14(struct lwp *, const void *, register_t *);
    857       1.1      manu 
    858  1.17.8.3      matt int	linux32_sys_ugetrlimit(struct lwp *, const struct linux32_sys_ugetrlimit_args *, register_t *);
    859       1.1      manu 
    860  1.17.8.3      matt int	linux32_sys_mmap2(struct lwp *, const struct linux32_sys_mmap2_args *, register_t *);
    861      1.10      manu 
    862  1.17.8.3      matt int	linux32_sys_stat64(struct lwp *, const struct linux32_sys_stat64_args *, register_t *);
    863       1.1      manu 
    864  1.17.8.3      matt int	linux32_sys_lstat64(struct lwp *, const struct linux32_sys_lstat64_args *, register_t *);
    865       1.1      manu 
    866  1.17.8.3      matt int	linux32_sys_fstat64(struct lwp *, const struct linux32_sys_fstat64_args *, register_t *);
    867       1.1      manu 
    868  1.17.8.3      matt int	netbsd32___posix_lchown(struct lwp *, const struct netbsd32___posix_lchown_args *, register_t *);
    869  1.17.8.1      matt 
    870  1.17.8.3      matt int	netbsd32_setreuid(struct lwp *, const struct netbsd32_setreuid_args *, register_t *);
    871       1.1      manu 
    872  1.17.8.3      matt int	netbsd32_setregid(struct lwp *, const struct netbsd32_setregid_args *, register_t *);
    873       1.1      manu 
    874  1.17.8.3      matt int	netbsd32_getgroups(struct lwp *, const struct netbsd32_getgroups_args *, register_t *);
    875       1.3      manu 
    876  1.17.8.3      matt int	netbsd32_setgroups(struct lwp *, const struct netbsd32_setgroups_args *, register_t *);
    877       1.3      manu 
    878  1.17.8.3      matt int	netbsd32___posix_fchown(struct lwp *, const struct netbsd32___posix_fchown_args *, register_t *);
    879       1.1      manu 
    880  1.17.8.3      matt int	linux32_sys_setresuid(struct lwp *, const struct linux32_sys_setresuid_args *, register_t *);
    881       1.1      manu 
    882  1.17.8.3      matt int	linux32_sys_setresgid(struct lwp *, const struct linux32_sys_setresgid_args *, register_t *);
    883       1.1      manu 
    884  1.17.8.3      matt int	netbsd32___posix_chown(struct lwp *, const struct netbsd32___posix_chown_args *, register_t *);
    885  1.17.8.1      matt 
    886  1.17.8.3      matt int	netbsd32_madvise(struct lwp *, const struct netbsd32_madvise_args *, register_t *);
    887      1.10      manu 
    888  1.17.8.3      matt int	linux32_sys_getdents64(struct lwp *, const struct linux32_sys_getdents64_args *, register_t *);
    889       1.1      manu 
    890  1.17.8.3      matt int	linux32_sys_fcntl64(struct lwp *, const struct linux32_sys_fcntl64_args *, register_t *);
    891       1.1      manu 
    892  1.17.8.3      matt int	linux_sys_gettid(struct lwp *, const void *, register_t *);
    893       1.4      manu 
    894  1.17.8.3      matt int	linux32_sys_exit_group(struct lwp *, const struct linux32_sys_exit_group_args *, register_t *);
    895       1.1      manu 
    896       1.1      manu #endif /* _LINUX32_SYS_SYSCALLARGS_H_ */
    897