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