Home | History | Annotate | Line # | Download | only in amd64
linux32_syscallargs.h revision 1.58.2.2
      1  1.58.2.2  uebayasi /* $NetBSD: linux32_syscallargs.h,v 1.58.2.2 2010/11/06 08:08:26 uebayasi 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.58.2.2  uebayasi  * created from	NetBSD: syscalls.master,v 1.57 2010/11/02 18:14:06 chs 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.58.2.1  uebayasi struct linux32_sys_exit_args {
     35  1.58.2.1  uebayasi 	syscallarg(int) rval;
     36  1.58.2.1  uebayasi };
     37  1.58.2.1  uebayasi check_syscall_args(linux32_sys_exit)
     38      1.24       dsl 
     39      1.24       dsl struct netbsd32_read_args;
     40      1.24       dsl 
     41      1.24       dsl struct netbsd32_write_args;
     42      1.24       dsl 
     43       1.1      manu struct linux32_sys_open_args {
     44      1.41     njoly 	syscallarg(netbsd32_charp) path;
     45       1.1      manu 	syscallarg(int) flags;
     46       1.1      manu 	syscallarg(int) mode;
     47       1.1      manu };
     48      1.22  christos check_syscall_args(linux32_sys_open)
     49       1.1      manu 
     50      1.24       dsl struct netbsd32_close_args;
     51      1.24       dsl 
     52       1.1      manu struct linux32_sys_waitpid_args {
     53       1.1      manu 	syscallarg(int) pid;
     54       1.1      manu 	syscallarg(netbsd32_intp) status;
     55       1.1      manu 	syscallarg(int) options;
     56       1.1      manu };
     57      1.22  christos check_syscall_args(linux32_sys_waitpid)
     58       1.1      manu 
     59       1.1      manu struct linux32_sys_creat_args {
     60      1.41     njoly 	syscallarg(netbsd32_charp) path;
     61       1.1      manu 	syscallarg(int) mode;
     62       1.1      manu };
     63      1.22  christos check_syscall_args(linux32_sys_creat)
     64       1.1      manu 
     65      1.24       dsl struct netbsd32_link_args;
     66      1.24       dsl 
     67       1.1      manu struct linux32_sys_unlink_args {
     68      1.41     njoly 	syscallarg(netbsd32_charp) path;
     69       1.1      manu };
     70      1.22  christos check_syscall_args(linux32_sys_unlink)
     71       1.1      manu 
     72      1.24       dsl struct netbsd32_execve_args;
     73      1.24       dsl 
     74      1.24       dsl struct netbsd32_chdir_args;
     75      1.24       dsl 
     76       1.1      manu struct linux32_sys_time_args {
     77       1.1      manu 	syscallarg(linux32_timep_t) t;
     78       1.1      manu };
     79      1.22  christos check_syscall_args(linux32_sys_time)
     80       1.1      manu 
     81       1.1      manu struct linux32_sys_mknod_args {
     82      1.41     njoly 	syscallarg(netbsd32_charp) path;
     83       1.1      manu 	syscallarg(int) mode;
     84       1.1      manu 	syscallarg(int) dev;
     85       1.1      manu };
     86      1.22  christos check_syscall_args(linux32_sys_mknod)
     87       1.1      manu 
     88      1.24       dsl struct netbsd32_chmod_args;
     89      1.24       dsl 
     90       1.1      manu struct linux32_sys_lchown16_args {
     91      1.41     njoly 	syscallarg(netbsd32_charp) path;
     92      1.30     njoly 	syscallarg(linux32_uid16_t) uid;
     93      1.30     njoly 	syscallarg(linux32_gid16_t) gid;
     94       1.1      manu };
     95      1.22  christos check_syscall_args(linux32_sys_lchown16)
     96       1.1      manu 
     97       1.1      manu struct linux32_sys_break_args {
     98       1.1      manu 	syscallarg(netbsd32_charp) nsize;
     99       1.1      manu };
    100      1.22  christos check_syscall_args(linux32_sys_break)
    101       1.1      manu 
    102      1.24       dsl struct compat_43_netbsd32_olseek_args;
    103      1.24       dsl 
    104      1.24       dsl struct netbsd32_setuid_args;
    105      1.24       dsl 
    106       1.1      manu struct linux32_sys_stime_args {
    107       1.1      manu 	syscallarg(linux32_timep_t) t;
    108       1.1      manu };
    109      1.22  christos check_syscall_args(linux32_sys_stime)
    110       1.1      manu 
    111      1.38  christos struct linux32_sys_ptrace_args {
    112      1.38  christos 	syscallarg(int) request;
    113      1.38  christos 	syscallarg(int) pid;
    114      1.38  christos 	syscallarg(int) addr;
    115      1.38  christos 	syscallarg(int) data;
    116      1.38  christos };
    117      1.38  christos check_syscall_args(linux32_sys_ptrace)
    118      1.38  christos 
    119      1.21     njoly struct linux32_sys_alarm_args {
    120      1.21     njoly 	syscallarg(unsigned int) secs;
    121      1.21     njoly };
    122      1.22  christos check_syscall_args(linux32_sys_alarm)
    123      1.21     njoly 
    124       1.1      manu struct linux32_sys_utime_args {
    125      1.41     njoly 	syscallarg(netbsd32_charp) path;
    126       1.1      manu 	syscallarg(linux32_utimbufp_t) times;
    127       1.1      manu };
    128      1.22  christos check_syscall_args(linux32_sys_utime)
    129       1.1      manu 
    130      1.24       dsl struct netbsd32_access_args;
    131      1.24       dsl 
    132      1.21     njoly struct linux32_sys_nice_args {
    133      1.21     njoly 	syscallarg(int) incr;
    134      1.21     njoly };
    135      1.22  christos check_syscall_args(linux32_sys_nice)
    136      1.21     njoly 
    137       1.1      manu struct linux32_sys_kill_args {
    138       1.1      manu 	syscallarg(int) pid;
    139       1.1      manu 	syscallarg(int) signum;
    140       1.1      manu };
    141      1.22  christos check_syscall_args(linux32_sys_kill)
    142       1.1      manu 
    143      1.40     njoly struct netbsd32___posix_rename_args;
    144       1.1      manu 
    145      1.24       dsl struct netbsd32_mkdir_args;
    146      1.24       dsl 
    147      1.24       dsl struct netbsd32_rmdir_args;
    148      1.24       dsl 
    149      1.24       dsl struct netbsd32_dup_args;
    150      1.24       dsl 
    151       1.1      manu struct linux32_sys_pipe_args {
    152       1.1      manu 	syscallarg(netbsd32_intp) fd;
    153       1.1      manu };
    154      1.22  christos check_syscall_args(linux32_sys_pipe)
    155       1.1      manu 
    156       1.1      manu struct linux32_sys_times_args {
    157       1.1      manu 	syscallarg(linux32_tmsp_t) tms;
    158       1.1      manu };
    159      1.22  christos check_syscall_args(linux32_sys_times)
    160       1.1      manu 
    161       1.1      manu struct linux32_sys_brk_args {
    162       1.1      manu 	syscallarg(netbsd32_charp) nsize;
    163       1.1      manu };
    164      1.22  christos check_syscall_args(linux32_sys_brk)
    165       1.1      manu 
    166      1.24       dsl struct netbsd32_setgid_args;
    167      1.24       dsl 
    168       1.1      manu struct linux32_sys_signal_args {
    169       1.1      manu 	syscallarg(int) signum;
    170       1.1      manu 	syscallarg(linux32_handler_t) handler;
    171       1.1      manu };
    172      1.22  christos check_syscall_args(linux32_sys_signal)
    173       1.1      manu 
    174      1.24       dsl struct netbsd32_acct_args;
    175      1.24       dsl 
    176       1.1      manu struct linux32_sys_ioctl_args {
    177       1.1      manu 	syscallarg(int) fd;
    178       1.1      manu 	syscallarg(netbsd32_u_long) com;
    179       1.1      manu 	syscallarg(netbsd32_charp) data;
    180       1.1      manu };
    181      1.22  christos check_syscall_args(linux32_sys_ioctl)
    182       1.1      manu 
    183       1.1      manu struct linux32_sys_fcntl_args {
    184       1.1      manu 	syscallarg(int) fd;
    185       1.1      manu 	syscallarg(int) cmd;
    186       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    187       1.1      manu };
    188      1.22  christos check_syscall_args(linux32_sys_fcntl)
    189       1.1      manu 
    190      1.24       dsl struct netbsd32_setpgid_args;
    191      1.24       dsl 
    192       1.1      manu struct linux32_sys_oldolduname_args {
    193       1.1      manu 	syscallarg(linux32_oldold_utsnamep_t) up;
    194       1.1      manu };
    195      1.22  christos check_syscall_args(linux32_sys_oldolduname)
    196       1.1      manu 
    197      1.24       dsl struct netbsd32_umask_args;
    198      1.24       dsl 
    199      1.24       dsl struct netbsd32_chroot_args;
    200      1.24       dsl 
    201      1.24       dsl struct netbsd32_dup2_args;
    202      1.24       dsl 
    203      1.54     njoly struct linux32_sys_sigsetmask_args {
    204      1.54     njoly 	syscallarg(linux32_old_sigset_t) mask;
    205      1.54     njoly };
    206      1.54     njoly check_syscall_args(linux32_sys_sigsetmask)
    207      1.54     njoly 
    208      1.21     njoly struct linux32_sys_setreuid16_args {
    209      1.30     njoly 	syscallarg(linux32_uid16_t) ruid;
    210      1.30     njoly 	syscallarg(linux32_uid16_t) euid;
    211       1.1      manu };
    212      1.22  christos check_syscall_args(linux32_sys_setreuid16)
    213       1.1      manu 
    214      1.21     njoly struct linux32_sys_setregid16_args {
    215      1.30     njoly 	syscallarg(linux32_gid16_t) rgid;
    216      1.30     njoly 	syscallarg(linux32_gid16_t) egid;
    217       1.1      manu };
    218      1.22  christos check_syscall_args(linux32_sys_setregid16)
    219       1.1      manu 
    220      1.24       dsl struct compat_43_netbsd32_osethostname_args;
    221      1.24       dsl 
    222       1.1      manu struct linux32_sys_setrlimit_args {
    223       1.1      manu 	syscallarg(u_int) which;
    224       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    225       1.1      manu };
    226      1.22  christos check_syscall_args(linux32_sys_setrlimit)
    227       1.1      manu 
    228       1.1      manu struct linux32_sys_getrlimit_args {
    229       1.1      manu 	syscallarg(u_int) which;
    230       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    231       1.1      manu };
    232      1.22  christos check_syscall_args(linux32_sys_getrlimit)
    233       1.1      manu 
    234      1.48  christos struct compat_50_netbsd32_getrusage_args;
    235      1.24       dsl 
    236       1.1      manu struct linux32_sys_gettimeofday_args {
    237      1.50     njoly 	syscallarg(netbsd32_timeval50p_t) tp;
    238       1.1      manu 	syscallarg(netbsd32_timezonep_t) tzp;
    239       1.1      manu };
    240      1.22  christos check_syscall_args(linux32_sys_gettimeofday)
    241       1.1      manu 
    242       1.1      manu struct linux32_sys_settimeofday_args {
    243      1.50     njoly 	syscallarg(netbsd32_timeval50p_t) tp;
    244       1.1      manu 	syscallarg(netbsd32_timezonep_t) tzp;
    245       1.1      manu };
    246      1.22  christos check_syscall_args(linux32_sys_settimeofday)
    247       1.1      manu 
    248       1.1      manu struct linux32_sys_getgroups16_args {
    249       1.1      manu 	syscallarg(int) gidsetsize;
    250      1.30     njoly 	syscallarg(linux32_gid16p_t) gidset;
    251       1.1      manu };
    252      1.22  christos check_syscall_args(linux32_sys_getgroups16)
    253       1.1      manu 
    254       1.1      manu struct linux32_sys_setgroups16_args {
    255       1.1      manu 	syscallarg(int) gidsetsize;
    256      1.30     njoly 	syscallarg(linux32_gid16p_t) gidset;
    257       1.1      manu };
    258      1.22  christos check_syscall_args(linux32_sys_setgroups16)
    259       1.1      manu 
    260       1.1      manu struct linux32_sys_oldselect_args {
    261       1.1      manu 	syscallarg(linux32_oldselectp_t) lsp;
    262       1.1      manu };
    263      1.22  christos check_syscall_args(linux32_sys_oldselect)
    264       1.1      manu 
    265      1.24       dsl struct netbsd32_symlink_args;
    266      1.24       dsl 
    267      1.24       dsl struct compat_43_netbsd32_lstat43_args;
    268      1.24       dsl 
    269      1.24       dsl struct netbsd32_readlink_args;
    270      1.24       dsl 
    271       1.1      manu struct linux32_sys_swapon_args {
    272       1.1      manu 	syscallarg(netbsd32_charp) name;
    273       1.1      manu };
    274      1.22  christos check_syscall_args(linux32_sys_swapon)
    275       1.1      manu 
    276       1.1      manu struct linux32_sys_reboot_args {
    277       1.1      manu 	syscallarg(int) magic1;
    278       1.1      manu 	syscallarg(int) magic2;
    279       1.1      manu 	syscallarg(int) cmd;
    280       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    281       1.1      manu };
    282      1.22  christos check_syscall_args(linux32_sys_reboot)
    283       1.1      manu 
    284      1.28     njoly struct linux32_sys_readdir_args {
    285      1.28     njoly 	syscallarg(int) fd;
    286      1.28     njoly 	syscallarg(netbsd32_voidp) dent;
    287      1.28     njoly 	syscallarg(unsigned int) count;
    288      1.28     njoly };
    289      1.28     njoly check_syscall_args(linux32_sys_readdir)
    290      1.28     njoly 
    291       1.1      manu struct linux32_sys_old_mmap_args {
    292       1.1      manu 	syscallarg(linux32_oldmmapp) lmp;
    293       1.1      manu };
    294      1.22  christos check_syscall_args(linux32_sys_old_mmap)
    295       1.1      manu 
    296      1.24       dsl struct netbsd32_munmap_args;
    297      1.24       dsl 
    298      1.40     njoly struct compat_43_netbsd32_otruncate_args;
    299       1.1      manu 
    300      1.24       dsl struct compat_43_netbsd32_oftruncate_args;
    301      1.24       dsl 
    302      1.24       dsl struct netbsd32_fchmod_args;
    303      1.24       dsl 
    304       1.1      manu struct linux32_sys_fchown16_args {
    305       1.1      manu 	syscallarg(int) fd;
    306      1.30     njoly 	syscallarg(linux32_uid16_t) uid;
    307      1.30     njoly 	syscallarg(linux32_gid16_t) gid;
    308       1.1      manu };
    309      1.22  christos check_syscall_args(linux32_sys_fchown16)
    310       1.1      manu 
    311       1.4      manu struct linux32_sys_getpriority_args {
    312       1.4      manu 	syscallarg(int) which;
    313       1.4      manu 	syscallarg(int) who;
    314       1.4      manu };
    315      1.22  christos check_syscall_args(linux32_sys_getpriority)
    316       1.4      manu 
    317      1.40     njoly struct netbsd32_setpriority_args;
    318       1.4      manu 
    319  1.58.2.2  uebayasi struct netbsd32_profil_args;
    320  1.58.2.2  uebayasi 
    321      1.16     njoly struct linux32_sys_statfs_args {
    322      1.41     njoly 	syscallarg(netbsd32_charp) path;
    323      1.16     njoly 	syscallarg(linux32_statfsp) sp;
    324      1.16     njoly };
    325      1.22  christos check_syscall_args(linux32_sys_statfs)
    326      1.16     njoly 
    327      1.56     njoly struct linux32_sys_fstatfs_args {
    328      1.56     njoly 	syscallarg(int) fd;
    329      1.56     njoly 	syscallarg(linux32_statfsp) sp;
    330      1.56     njoly };
    331      1.56     njoly check_syscall_args(linux32_sys_fstatfs)
    332      1.56     njoly 
    333  1.58.2.2  uebayasi struct linux_sys_ioperm_args;
    334  1.58.2.2  uebayasi 
    335       1.1      manu struct linux32_sys_socketcall_args {
    336       1.1      manu 	syscallarg(int) what;
    337       1.1      manu 	syscallarg(netbsd32_voidp) args;
    338       1.1      manu };
    339      1.22  christos check_syscall_args(linux32_sys_socketcall)
    340       1.1      manu 
    341      1.48  christos struct compat_50_netbsd32_setitimer_args;
    342      1.24       dsl 
    343      1.48  christos struct compat_50_netbsd32_getitimer_args;
    344      1.24       dsl 
    345      1.55     njoly struct linux32_sys_stat_args {
    346      1.55     njoly 	syscallarg(netbsd32_charp) path;
    347      1.55     njoly 	syscallarg(linux32_statp) sp;
    348      1.55     njoly };
    349      1.55     njoly check_syscall_args(linux32_sys_stat)
    350      1.55     njoly 
    351      1.55     njoly struct linux32_sys_lstat_args {
    352      1.55     njoly 	syscallarg(netbsd32_charp) path;
    353      1.55     njoly 	syscallarg(linux32_statp) sp;
    354      1.55     njoly };
    355      1.55     njoly check_syscall_args(linux32_sys_lstat)
    356      1.55     njoly 
    357      1.55     njoly struct linux32_sys_fstat_args {
    358      1.55     njoly 	syscallarg(int) fd;
    359      1.55     njoly 	syscallarg(linux32_statp) sp;
    360      1.55     njoly };
    361      1.55     njoly check_syscall_args(linux32_sys_fstat)
    362      1.55     njoly 
    363      1.27     njoly struct linux32_sys_olduname_args {
    364      1.27     njoly 	syscallarg(linux32_oldutsnamep_t) up;
    365      1.27     njoly };
    366      1.27     njoly check_syscall_args(linux32_sys_olduname)
    367      1.27     njoly 
    368  1.58.2.2  uebayasi struct linux_sys_iopl_args;
    369  1.58.2.2  uebayasi 
    370       1.1      manu struct linux32_sys_wait4_args {
    371       1.1      manu 	syscallarg(int) pid;
    372       1.1      manu 	syscallarg(netbsd32_intp) status;
    373       1.1      manu 	syscallarg(int) options;
    374      1.51     njoly 	syscallarg(netbsd32_rusage50p_t) rusage;
    375       1.1      manu };
    376      1.22  christos check_syscall_args(linux32_sys_wait4)
    377       1.1      manu 
    378       1.1      manu struct linux32_sys_swapoff_args {
    379      1.41     njoly 	syscallarg(netbsd32_charp) path;
    380       1.1      manu };
    381      1.22  christos check_syscall_args(linux32_sys_swapoff)
    382       1.1      manu 
    383      1.10      manu struct linux32_sys_sysinfo_args {
    384      1.10      manu 	syscallarg(linux32_sysinfop_t) arg;
    385      1.10      manu };
    386      1.22  christos check_syscall_args(linux32_sys_sysinfo)
    387      1.10      manu 
    388      1.37     njoly struct linux32_sys_ipc_args {
    389      1.37     njoly 	syscallarg(int) what;
    390      1.37     njoly 	syscallarg(int) a1;
    391      1.37     njoly 	syscallarg(int) a2;
    392      1.37     njoly 	syscallarg(int) a3;
    393      1.37     njoly 	syscallarg(netbsd32_voidp) ptr;
    394      1.37     njoly };
    395      1.37     njoly check_syscall_args(linux32_sys_ipc)
    396      1.37     njoly 
    397      1.24       dsl struct netbsd32_fsync_args;
    398      1.24       dsl 
    399       1.1      manu struct linux32_sys_sigreturn_args {
    400       1.1      manu 	syscallarg(linux32_sigcontextp_t) scp;
    401       1.1      manu };
    402      1.22  christos check_syscall_args(linux32_sys_sigreturn)
    403       1.1      manu 
    404       1.1      manu struct linux32_sys_clone_args {
    405       1.1      manu 	syscallarg(int) flags;
    406       1.1      manu 	syscallarg(netbsd32_voidp) stack;
    407  1.58.2.1  uebayasi 	syscallarg(netbsd32_voidp) parent_tidptr;
    408  1.58.2.1  uebayasi 	syscallarg(netbsd32_voidp) tls;
    409  1.58.2.1  uebayasi 	syscallarg(netbsd32_voidp) child_tidptr;
    410       1.1      manu };
    411      1.22  christos check_syscall_args(linux32_sys_clone)
    412       1.1      manu 
    413  1.58.2.2  uebayasi struct linux32_sys_setdomainname_args {
    414  1.58.2.2  uebayasi 	syscallarg(netbsd32_charp) domainname;
    415  1.58.2.2  uebayasi 	syscallarg(int) len;
    416  1.58.2.2  uebayasi };
    417  1.58.2.2  uebayasi check_syscall_args(linux32_sys_setdomainname)
    418  1.58.2.2  uebayasi 
    419       1.1      manu struct linux32_sys_uname_args {
    420       1.1      manu 	syscallarg(linux32_utsnamep) up;
    421       1.1      manu };
    422      1.22  christos check_syscall_args(linux32_sys_uname)
    423       1.1      manu 
    424  1.58.2.2  uebayasi struct linux32_sys_modify_ldt_args {
    425  1.58.2.2  uebayasi 	syscallarg(int) func;
    426  1.58.2.2  uebayasi 	syscallarg(netbsd32_charp) ptr;
    427  1.58.2.2  uebayasi 	syscallarg(netbsd32_size_t) bytecount;
    428  1.58.2.2  uebayasi };
    429  1.58.2.2  uebayasi check_syscall_args(linux32_sys_modify_ldt)
    430  1.58.2.2  uebayasi 
    431       1.1      manu struct linux32_sys_mprotect_args {
    432      1.24       dsl 	syscallarg(netbsd32_voidp) start;
    433       1.1      manu 	syscallarg(netbsd32_size_t) len;
    434       1.1      manu 	syscallarg(int) prot;
    435       1.1      manu };
    436      1.22  christos check_syscall_args(linux32_sys_mprotect)
    437       1.1      manu 
    438      1.26     njoly struct netbsd32_getpgid_args;
    439      1.26     njoly 
    440      1.24       dsl struct netbsd32_fchdir_args;
    441      1.24       dsl 
    442      1.52     njoly struct linux32_sys_personality_args {
    443      1.58     njoly 	syscallarg(netbsd32_u_long) per;
    444      1.52     njoly };
    445      1.52     njoly check_syscall_args(linux32_sys_personality)
    446      1.52     njoly 
    447      1.24       dsl struct linux32_sys_setfsuid_args;
    448      1.24       dsl 
    449      1.25     njoly struct linux32_sys_setfsgid_args;
    450      1.25     njoly 
    451       1.1      manu struct linux32_sys_llseek_args {
    452       1.1      manu 	syscallarg(int) fd;
    453       1.1      manu 	syscallarg(u_int32_t) ohigh;
    454       1.1      manu 	syscallarg(u_int32_t) olow;
    455      1.46     njoly 	syscallarg(netbsd32_voidp) res;
    456       1.1      manu 	syscallarg(int) whence;
    457       1.1      manu };
    458      1.22  christos check_syscall_args(linux32_sys_llseek)
    459       1.1      manu 
    460       1.1      manu struct linux32_sys_getdents_args {
    461       1.1      manu 	syscallarg(int) fd;
    462       1.1      manu 	syscallarg(linux32_direntp_t) dent;
    463       1.1      manu 	syscallarg(unsigned int) count;
    464       1.1      manu };
    465      1.22  christos check_syscall_args(linux32_sys_getdents)
    466       1.1      manu 
    467       1.1      manu struct linux32_sys_select_args {
    468       1.1      manu 	syscallarg(int) nfds;
    469       1.1      manu 	syscallarg(netbsd32_fd_setp_t) readfds;
    470       1.1      manu 	syscallarg(netbsd32_fd_setp_t) writefds;
    471       1.1      manu 	syscallarg(netbsd32_fd_setp_t) exceptfds;
    472      1.50     njoly 	syscallarg(netbsd32_timeval50p_t) timeout;
    473       1.1      manu };
    474      1.22  christos check_syscall_args(linux32_sys_select)
    475       1.1      manu 
    476      1.24       dsl struct netbsd32_flock_args;
    477      1.24       dsl 
    478      1.35     njoly struct netbsd32___msync13_args;
    479      1.35     njoly 
    480      1.24       dsl struct netbsd32_readv_args;
    481      1.24       dsl 
    482      1.24       dsl struct netbsd32_writev_args;
    483      1.24       dsl 
    484      1.24       dsl struct netbsd32_getsid_args;
    485      1.24       dsl 
    486      1.21     njoly struct linux32_sys_fdatasync_args {
    487      1.21     njoly 	syscallarg(int) fd;
    488      1.21     njoly };
    489      1.22  christos check_syscall_args(linux32_sys_fdatasync)
    490      1.21     njoly 
    491       1.1      manu struct linux32_sys___sysctl_args {
    492       1.1      manu 	syscallarg(linux32___sysctlp_t) lsp;
    493       1.1      manu };
    494      1.22  christos check_syscall_args(linux32_sys___sysctl)
    495       1.1      manu 
    496      1.34     njoly struct netbsd32_mlock_args;
    497      1.34     njoly 
    498      1.34     njoly struct netbsd32_munlock_args;
    499      1.34     njoly 
    500      1.24       dsl struct netbsd32_mlockall_args;
    501      1.24       dsl 
    502  1.58.2.1  uebayasi struct linux32_sys_sched_setparam_args {
    503  1.58.2.1  uebayasi 	syscallarg(pid_t) pid;
    504  1.58.2.1  uebayasi 	syscallarg(const linux32_sched_paramp_t) sp;
    505  1.58.2.1  uebayasi };
    506  1.58.2.1  uebayasi check_syscall_args(linux32_sys_sched_setparam)
    507  1.58.2.1  uebayasi 
    508      1.10      manu struct linux32_sys_sched_getparam_args {
    509      1.10      manu 	syscallarg(pid_t) pid;
    510      1.10      manu 	syscallarg(linux32_sched_paramp_t) sp;
    511      1.10      manu };
    512      1.22  christos check_syscall_args(linux32_sys_sched_getparam)
    513      1.10      manu 
    514       1.1      manu struct linux32_sys_sched_setscheduler_args {
    515       1.1      manu 	syscallarg(pid_t) pid;
    516       1.1      manu 	syscallarg(int) policy;
    517      1.41     njoly 	syscallarg(linux32_sched_paramp_t) sp;
    518       1.1      manu };
    519      1.22  christos check_syscall_args(linux32_sys_sched_setscheduler)
    520       1.1      manu 
    521      1.21     njoly struct linux32_sys_sched_getscheduler_args {
    522      1.21     njoly 	syscallarg(pid_t) pid;
    523      1.21     njoly };
    524      1.22  christos check_syscall_args(linux32_sys_sched_getscheduler)
    525      1.21     njoly 
    526      1.44     njoly struct linux32_sys_sched_get_priority_max_args {
    527      1.44     njoly 	syscallarg(int) policy;
    528      1.44     njoly };
    529      1.44     njoly check_syscall_args(linux32_sys_sched_get_priority_max)
    530      1.44     njoly 
    531      1.44     njoly struct linux32_sys_sched_get_priority_min_args {
    532      1.44     njoly 	syscallarg(int) policy;
    533      1.44     njoly };
    534      1.44     njoly check_syscall_args(linux32_sys_sched_get_priority_min)
    535      1.44     njoly 
    536      1.42     njoly struct linux32_sys_nanosleep_args {
    537      1.42     njoly 	syscallarg(linux32_timespecp_t) rqtp;
    538      1.42     njoly 	syscallarg(linux32_timespecp_t) rmtp;
    539      1.42     njoly };
    540      1.42     njoly check_syscall_args(linux32_sys_nanosleep)
    541      1.24       dsl 
    542      1.10      manu struct linux32_sys_mremap_args {
    543      1.10      manu 	syscallarg(netbsd32_voidp) old_address;
    544      1.10      manu 	syscallarg(netbsd32_size_t) old_size;
    545      1.10      manu 	syscallarg(netbsd32_size_t) new_size;
    546      1.10      manu 	syscallarg(netbsd32_u_long) flags;
    547      1.10      manu };
    548      1.22  christos check_syscall_args(linux32_sys_mremap)
    549      1.10      manu 
    550      1.21     njoly struct linux32_sys_setresuid16_args {
    551      1.30     njoly 	syscallarg(linux32_uid16_t) ruid;
    552      1.30     njoly 	syscallarg(linux32_uid16_t) euid;
    553      1.30     njoly 	syscallarg(linux32_uid16_t) suid;
    554      1.21     njoly };
    555      1.22  christos check_syscall_args(linux32_sys_setresuid16)
    556      1.21     njoly 
    557      1.30     njoly struct linux32_sys_getresuid16_args {
    558      1.30     njoly 	syscallarg(linux32_uid16p_t) ruid;
    559      1.30     njoly 	syscallarg(linux32_uid16p_t) euid;
    560      1.30     njoly 	syscallarg(linux32_uid16p_t) suid;
    561      1.30     njoly };
    562      1.30     njoly check_syscall_args(linux32_sys_getresuid16)
    563      1.30     njoly 
    564      1.24       dsl struct netbsd32_poll_args;
    565      1.24       dsl 
    566      1.21     njoly struct linux32_sys_setresgid16_args {
    567      1.30     njoly 	syscallarg(linux32_gid16_t) rgid;
    568      1.30     njoly 	syscallarg(linux32_gid16_t) egid;
    569      1.30     njoly 	syscallarg(linux32_gid16_t) sgid;
    570      1.21     njoly };
    571      1.22  christos check_syscall_args(linux32_sys_setresgid16)
    572      1.21     njoly 
    573      1.30     njoly struct linux32_sys_getresgid16_args {
    574      1.30     njoly 	syscallarg(linux32_gid16p_t) rgid;
    575      1.30     njoly 	syscallarg(linux32_gid16p_t) egid;
    576      1.30     njoly 	syscallarg(linux32_gid16p_t) sgid;
    577      1.30     njoly };
    578      1.30     njoly check_syscall_args(linux32_sys_getresgid16)
    579      1.30     njoly 
    580       1.1      manu struct linux32_sys_rt_sigreturn_args {
    581       1.1      manu 	syscallarg(linux32_ucontextp_t) ucp;
    582       1.1      manu };
    583      1.22  christos check_syscall_args(linux32_sys_rt_sigreturn)
    584       1.1      manu 
    585       1.1      manu struct linux32_sys_rt_sigaction_args {
    586       1.1      manu 	syscallarg(int) signum;
    587      1.41     njoly 	syscallarg(linux32_sigactionp_t) nsa;
    588       1.1      manu 	syscallarg(linux32_sigactionp_t) osa;
    589       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    590       1.1      manu };
    591      1.22  christos check_syscall_args(linux32_sys_rt_sigaction)
    592       1.1      manu 
    593       1.1      manu struct linux32_sys_rt_sigprocmask_args {
    594       1.1      manu 	syscallarg(int) how;
    595      1.41     njoly 	syscallarg(linux32_sigsetp_t) set;
    596       1.1      manu 	syscallarg(linux32_sigsetp_t) oset;
    597       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    598       1.1      manu };
    599      1.22  christos check_syscall_args(linux32_sys_rt_sigprocmask)
    600       1.1      manu 
    601      1.39     njoly struct linux32_sys_rt_sigpending_args {
    602      1.39     njoly 	syscallarg(linux32_sigsetp_t) set;
    603      1.39     njoly 	syscallarg(netbsd32_size_t) sigsetsize;
    604      1.39     njoly };
    605      1.39     njoly check_syscall_args(linux32_sys_rt_sigpending)
    606      1.39     njoly 
    607      1.57     njoly struct linux32_sys_rt_queueinfo_args {
    608      1.57     njoly 	syscallarg(int) pid;
    609      1.57     njoly 	syscallarg(int) sig;
    610      1.57     njoly 	syscallarg(linux32_siginfop_t) uinfo;
    611      1.57     njoly };
    612      1.57     njoly check_syscall_args(linux32_sys_rt_queueinfo)
    613      1.57     njoly 
    614       1.1      manu struct linux32_sys_rt_sigsuspend_args {
    615       1.1      manu 	syscallarg(linux32_sigsetp_t) unewset;
    616       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    617       1.1      manu };
    618      1.22  christos check_syscall_args(linux32_sys_rt_sigsuspend)
    619       1.1      manu 
    620      1.31       dsl struct linux32_sys_pread_args {
    621      1.31       dsl 	syscallarg(int) fd;
    622      1.33     njoly 	syscallarg(netbsd32_voidp) buf;
    623      1.31       dsl 	syscallarg(netbsd32_size_t) nbyte;
    624      1.33     njoly 	syscallarg(linux32_off_t) offset;
    625      1.31       dsl };
    626      1.31       dsl check_syscall_args(linux32_sys_pread)
    627      1.31       dsl 
    628      1.31       dsl struct linux32_sys_pwrite_args {
    629      1.31       dsl 	syscallarg(int) fd;
    630      1.41     njoly 	syscallarg(netbsd32_voidp) buf;
    631      1.31       dsl 	syscallarg(netbsd32_size_t) nbyte;
    632      1.33     njoly 	syscallarg(linux32_off_t) offset;
    633      1.31       dsl };
    634      1.31       dsl check_syscall_args(linux32_sys_pwrite)
    635      1.31       dsl 
    636      1.18     njoly struct linux32_sys_chown16_args {
    637      1.41     njoly 	syscallarg(netbsd32_charp) path;
    638      1.30     njoly 	syscallarg(linux32_uid16_t) uid;
    639      1.30     njoly 	syscallarg(linux32_gid16_t) gid;
    640      1.18     njoly };
    641      1.22  christos check_syscall_args(linux32_sys_chown16)
    642      1.18     njoly 
    643      1.24       dsl struct netbsd32___getcwd_args;
    644      1.24       dsl 
    645       1.1      manu struct linux32_sys_ugetrlimit_args {
    646       1.1      manu 	syscallarg(int) which;
    647       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    648       1.1      manu };
    649      1.22  christos check_syscall_args(linux32_sys_ugetrlimit)
    650       1.1      manu 
    651      1.10      manu struct linux32_sys_mmap2_args {
    652      1.10      manu 	syscallarg(netbsd32_u_long) addr;
    653      1.10      manu 	syscallarg(netbsd32_size_t) len;
    654      1.10      manu 	syscallarg(int) prot;
    655      1.10      manu 	syscallarg(int) flags;
    656      1.10      manu 	syscallarg(int) fd;
    657      1.10      manu 	syscallarg(linux32_off_t) offset;
    658      1.10      manu };
    659      1.22  christos check_syscall_args(linux32_sys_mmap2)
    660      1.10      manu 
    661  1.58.2.2  uebayasi struct linux32_sys_truncate64_args {
    662  1.58.2.2  uebayasi 	syscallarg(netbsd32_charp) path;
    663  1.58.2.2  uebayasi 	syscallarg(uint32_t) lenlo;
    664  1.58.2.2  uebayasi 	syscallarg(uint32_t) lenhi;
    665  1.58.2.2  uebayasi };
    666  1.58.2.2  uebayasi check_syscall_args(linux32_sys_truncate64)
    667  1.58.2.2  uebayasi 
    668  1.58.2.2  uebayasi struct linux32_sys_ftruncate64_args {
    669  1.58.2.2  uebayasi 	syscallarg(unsigned int) fd;
    670  1.58.2.2  uebayasi 	syscallarg(uint32_t) lenlo;
    671  1.58.2.2  uebayasi 	syscallarg(uint32_t) lenhi;
    672  1.58.2.2  uebayasi };
    673  1.58.2.2  uebayasi check_syscall_args(linux32_sys_ftruncate64)
    674  1.58.2.2  uebayasi 
    675       1.1      manu struct linux32_sys_stat64_args {
    676      1.41     njoly 	syscallarg(netbsd32_charp) path;
    677       1.1      manu 	syscallarg(linux32_stat64p) sp;
    678       1.1      manu };
    679      1.22  christos check_syscall_args(linux32_sys_stat64)
    680       1.1      manu 
    681       1.1      manu struct linux32_sys_lstat64_args {
    682      1.41     njoly 	syscallarg(netbsd32_charp) path;
    683       1.1      manu 	syscallarg(linux32_stat64p) sp;
    684       1.1      manu };
    685      1.22  christos check_syscall_args(linux32_sys_lstat64)
    686       1.1      manu 
    687       1.1      manu struct linux32_sys_fstat64_args {
    688       1.1      manu 	syscallarg(int) fd;
    689       1.1      manu 	syscallarg(linux32_stat64p) sp;
    690       1.1      manu };
    691      1.22  christos check_syscall_args(linux32_sys_fstat64)
    692       1.1      manu 
    693      1.24       dsl struct netbsd32___posix_lchown_args;
    694      1.24       dsl 
    695      1.24       dsl struct netbsd32_setreuid_args;
    696      1.24       dsl 
    697      1.24       dsl struct netbsd32_setregid_args;
    698      1.24       dsl 
    699      1.24       dsl struct netbsd32_getgroups_args;
    700      1.24       dsl 
    701      1.24       dsl struct netbsd32_setgroups_args;
    702      1.24       dsl 
    703      1.24       dsl struct netbsd32___posix_fchown_args;
    704      1.24       dsl 
    705       1.8      manu struct linux32_sys_setresuid_args {
    706       1.8      manu 	syscallarg(uid_t) ruid;
    707       1.8      manu 	syscallarg(uid_t) euid;
    708       1.8      manu 	syscallarg(uid_t) suid;
    709       1.8      manu };
    710      1.22  christos check_syscall_args(linux32_sys_setresuid)
    711       1.8      manu 
    712      1.45     njoly struct linux32_sys_getresuid_args {
    713      1.45     njoly 	syscallarg(linux32_uidp_t) ruid;
    714      1.45     njoly 	syscallarg(linux32_uidp_t) euid;
    715      1.45     njoly 	syscallarg(linux32_uidp_t) suid;
    716      1.45     njoly };
    717      1.45     njoly check_syscall_args(linux32_sys_getresuid)
    718      1.45     njoly 
    719       1.8      manu struct linux32_sys_setresgid_args {
    720       1.8      manu 	syscallarg(gid_t) rgid;
    721       1.8      manu 	syscallarg(gid_t) egid;
    722       1.8      manu 	syscallarg(gid_t) sgid;
    723       1.8      manu };
    724      1.22  christos check_syscall_args(linux32_sys_setresgid)
    725       1.8      manu 
    726      1.45     njoly struct linux32_sys_getresgid_args {
    727      1.45     njoly 	syscallarg(linux32_gidp_t) rgid;
    728      1.45     njoly 	syscallarg(linux32_gidp_t) egid;
    729      1.45     njoly 	syscallarg(linux32_gidp_t) sgid;
    730      1.45     njoly };
    731      1.45     njoly check_syscall_args(linux32_sys_getresgid)
    732      1.45     njoly 
    733      1.24       dsl struct netbsd32___posix_chown_args;
    734      1.24       dsl 
    735      1.24       dsl struct netbsd32_setuid_args;
    736      1.24       dsl 
    737      1.24       dsl struct netbsd32_setgid_args;
    738      1.24       dsl 
    739      1.21     njoly struct linux32_sys_setfsuid_args {
    740      1.21     njoly 	syscallarg(uid_t) uid;
    741      1.21     njoly };
    742      1.22  christos check_syscall_args(linux32_sys_setfsuid)
    743      1.21     njoly 
    744      1.25     njoly struct linux32_sys_setfsgid_args {
    745      1.25     njoly 	syscallarg(gid_t) gid;
    746      1.25     njoly };
    747      1.25     njoly check_syscall_args(linux32_sys_setfsgid)
    748      1.25     njoly 
    749      1.53     njoly struct netbsd32_mincore_args;
    750      1.53     njoly 
    751      1.24       dsl struct netbsd32_madvise_args;
    752      1.24       dsl 
    753       1.1      manu struct linux32_sys_getdents64_args {
    754       1.1      manu 	syscallarg(int) fd;
    755       1.1      manu 	syscallarg(linux32_dirent64p_t) dent;
    756       1.1      manu 	syscallarg(unsigned int) count;
    757       1.1      manu };
    758      1.22  christos check_syscall_args(linux32_sys_getdents64)
    759      1.32       dsl #define linux32_sys_fcntl64 linux32_sys_fcntl
    760      1.32       dsl #define linux32_sys_fcntl64_args linux32_sys_fcntl_args
    761       1.1      manu 
    762      1.32       dsl struct linux32_sys_fcntl64_args;
    763       1.1      manu 
    764  1.58.2.1  uebayasi struct linux32_sys_tkill_args {
    765  1.58.2.1  uebayasi 	syscallarg(int) tid;
    766  1.58.2.1  uebayasi 	syscallarg(int) sig;
    767  1.58.2.1  uebayasi };
    768  1.58.2.1  uebayasi check_syscall_args(linux32_sys_tkill)
    769  1.58.2.1  uebayasi 
    770  1.58.2.1  uebayasi struct linux32_sys_futex_args {
    771  1.58.2.1  uebayasi 	syscallarg(linux32_intp_t) uaddr;
    772  1.58.2.1  uebayasi 	syscallarg(int) op;
    773  1.58.2.1  uebayasi 	syscallarg(int) val;
    774  1.58.2.1  uebayasi 	syscallarg(linux32_timespecp_t) timeout;
    775  1.58.2.1  uebayasi 	syscallarg(linux32_intp_t) uaddr2;
    776  1.58.2.1  uebayasi 	syscallarg(int) val3;
    777  1.58.2.1  uebayasi };
    778  1.58.2.1  uebayasi check_syscall_args(linux32_sys_futex)
    779  1.58.2.1  uebayasi 
    780  1.58.2.1  uebayasi struct linux32_sys_sched_setaffinity_args {
    781  1.58.2.1  uebayasi 	syscallarg(pid_t) pid;
    782  1.58.2.1  uebayasi 	syscallarg(unsigned int) len;
    783  1.58.2.1  uebayasi 	syscallarg(linux32_ulongp_t) mask;
    784  1.58.2.1  uebayasi };
    785  1.58.2.1  uebayasi check_syscall_args(linux32_sys_sched_setaffinity)
    786  1.58.2.1  uebayasi 
    787  1.58.2.1  uebayasi struct linux32_sys_sched_getaffinity_args {
    788  1.58.2.1  uebayasi 	syscallarg(pid_t) pid;
    789  1.58.2.1  uebayasi 	syscallarg(unsigned int) len;
    790  1.58.2.1  uebayasi 	syscallarg(linux32_ulongp_t) mask;
    791  1.58.2.1  uebayasi };
    792  1.58.2.1  uebayasi check_syscall_args(linux32_sys_sched_getaffinity)
    793  1.58.2.1  uebayasi 
    794  1.58.2.1  uebayasi struct linux32_sys_set_thread_area_args {
    795  1.58.2.1  uebayasi 	syscallarg(linux32_user_descp_t) desc;
    796  1.58.2.1  uebayasi };
    797  1.58.2.1  uebayasi check_syscall_args(linux32_sys_set_thread_area)
    798  1.58.2.1  uebayasi 
    799  1.58.2.1  uebayasi struct linux32_sys_get_thread_area_args {
    800  1.58.2.1  uebayasi 	syscallarg(linux32_user_descp_t) desc;
    801  1.58.2.1  uebayasi };
    802  1.58.2.1  uebayasi check_syscall_args(linux32_sys_get_thread_area)
    803  1.58.2.1  uebayasi 
    804      1.21     njoly struct linux32_sys_exit_group_args {
    805      1.21     njoly 	syscallarg(int) error_code;
    806      1.21     njoly };
    807      1.22  christos check_syscall_args(linux32_sys_exit_group)
    808      1.21     njoly 
    809  1.58.2.1  uebayasi struct linux32_sys_set_tid_address_args {
    810  1.58.2.1  uebayasi 	syscallarg(linux32_intp_t) tid;
    811  1.58.2.1  uebayasi };
    812  1.58.2.1  uebayasi check_syscall_args(linux32_sys_set_tid_address)
    813  1.58.2.1  uebayasi 
    814      1.36     njoly struct linux32_sys_clock_settime_args {
    815      1.36     njoly 	syscallarg(clockid_t) which;
    816      1.36     njoly 	syscallarg(linux32_timespecp_t) tp;
    817      1.36     njoly };
    818      1.36     njoly check_syscall_args(linux32_sys_clock_settime)
    819      1.36     njoly 
    820      1.36     njoly struct linux32_sys_clock_gettime_args {
    821      1.36     njoly 	syscallarg(clockid_t) which;
    822      1.36     njoly 	syscallarg(linux32_timespecp_t) tp;
    823      1.36     njoly };
    824      1.36     njoly check_syscall_args(linux32_sys_clock_gettime)
    825      1.36     njoly 
    826      1.36     njoly struct linux32_sys_clock_getres_args {
    827      1.36     njoly 	syscallarg(clockid_t) which;
    828      1.36     njoly 	syscallarg(linux32_timespecp_t) tp;
    829      1.36     njoly };
    830      1.36     njoly check_syscall_args(linux32_sys_clock_getres)
    831      1.36     njoly 
    832      1.47     njoly struct linux32_sys_clock_nanosleep_args {
    833      1.47     njoly 	syscallarg(clockid_t) which;
    834      1.47     njoly 	syscallarg(int) flags;
    835      1.47     njoly 	syscallarg(linux32_timespecp_t) rqtp;
    836      1.47     njoly 	syscallarg(linux32_timespecp_t) rmtp;
    837      1.47     njoly };
    838      1.47     njoly check_syscall_args(linux32_sys_clock_nanosleep)
    839      1.47     njoly 
    840  1.58.2.2  uebayasi struct linux32_sys_statfs64_args {
    841  1.58.2.2  uebayasi 	syscallarg(netbsd32_charp) path;
    842  1.58.2.2  uebayasi 	syscallarg(netbsd32_size_t) sz;
    843  1.58.2.2  uebayasi 	syscallarg(linux32_statfs64p) sp;
    844  1.58.2.2  uebayasi };
    845  1.58.2.2  uebayasi check_syscall_args(linux32_sys_statfs64)
    846  1.58.2.2  uebayasi 
    847  1.58.2.2  uebayasi struct linux32_sys_fstatfs64_args {
    848  1.58.2.2  uebayasi 	syscallarg(int) fd;
    849  1.58.2.2  uebayasi 	syscallarg(netbsd32_size_t) sz;
    850  1.58.2.2  uebayasi 	syscallarg(linux32_statfs64p) sp;
    851  1.58.2.2  uebayasi };
    852  1.58.2.2  uebayasi check_syscall_args(linux32_sys_fstatfs64)
    853  1.58.2.2  uebayasi 
    854  1.58.2.1  uebayasi struct linux32_sys_tgkill_args {
    855  1.58.2.1  uebayasi 	syscallarg(int) tgid;
    856  1.58.2.1  uebayasi 	syscallarg(int) tid;
    857  1.58.2.1  uebayasi 	syscallarg(int) sig;
    858  1.58.2.1  uebayasi };
    859  1.58.2.1  uebayasi check_syscall_args(linux32_sys_tgkill)
    860  1.58.2.1  uebayasi 
    861  1.58.2.1  uebayasi struct linux32_sys_set_robust_list_args {
    862  1.58.2.1  uebayasi 	syscallarg(linux32_robust_list_headp_t) head;
    863  1.58.2.1  uebayasi 	syscallarg(linux32_size_t) len;
    864  1.58.2.1  uebayasi };
    865  1.58.2.1  uebayasi check_syscall_args(linux32_sys_set_robust_list)
    866  1.58.2.1  uebayasi 
    867  1.58.2.1  uebayasi struct linux32_sys_get_robust_list_args {
    868  1.58.2.1  uebayasi 	syscallarg(linux32_pid_t) pid;
    869  1.58.2.1  uebayasi 	syscallarg(linux32_robust_list_headpp_t) head;
    870  1.58.2.1  uebayasi 	syscallarg(linux32_sizep_t) len;
    871  1.58.2.1  uebayasi };
    872  1.58.2.1  uebayasi check_syscall_args(linux32_sys_get_robust_list)
    873  1.58.2.1  uebayasi 
    874       1.1      manu /*
    875       1.1      manu  * System call prototypes.
    876       1.1      manu  */
    877       1.1      manu 
    878      1.24       dsl int	linux_sys_nosys(struct lwp *, const void *, register_t *);
    879       1.1      manu 
    880  1.58.2.1  uebayasi int	linux32_sys_exit(struct lwp *, const struct linux32_sys_exit_args *, register_t *);
    881       1.1      manu 
    882      1.24       dsl int	sys_fork(struct lwp *, const void *, register_t *);
    883       1.1      manu 
    884      1.24       dsl int	netbsd32_read(struct lwp *, const struct netbsd32_read_args *, register_t *);
    885       1.1      manu 
    886      1.24       dsl int	netbsd32_write(struct lwp *, const struct netbsd32_write_args *, register_t *);
    887       1.1      manu 
    888      1.24       dsl int	linux32_sys_open(struct lwp *, const struct linux32_sys_open_args *, register_t *);
    889       1.1      manu 
    890      1.24       dsl int	netbsd32_close(struct lwp *, const struct netbsd32_close_args *, register_t *);
    891       1.1      manu 
    892      1.24       dsl int	linux32_sys_waitpid(struct lwp *, const struct linux32_sys_waitpid_args *, register_t *);
    893       1.1      manu 
    894      1.24       dsl int	linux32_sys_creat(struct lwp *, const struct linux32_sys_creat_args *, register_t *);
    895       1.1      manu 
    896      1.24       dsl int	netbsd32_link(struct lwp *, const struct netbsd32_link_args *, register_t *);
    897       1.1      manu 
    898      1.24       dsl int	linux32_sys_unlink(struct lwp *, const struct linux32_sys_unlink_args *, register_t *);
    899       1.1      manu 
    900      1.24       dsl int	netbsd32_execve(struct lwp *, const struct netbsd32_execve_args *, register_t *);
    901       1.1      manu 
    902      1.24       dsl int	netbsd32_chdir(struct lwp *, const struct netbsd32_chdir_args *, register_t *);
    903       1.1      manu 
    904      1.24       dsl int	linux32_sys_time(struct lwp *, const struct linux32_sys_time_args *, register_t *);
    905       1.1      manu 
    906      1.24       dsl int	linux32_sys_mknod(struct lwp *, const struct linux32_sys_mknod_args *, register_t *);
    907       1.1      manu 
    908      1.24       dsl int	netbsd32_chmod(struct lwp *, const struct netbsd32_chmod_args *, register_t *);
    909       1.1      manu 
    910      1.24       dsl int	linux32_sys_lchown16(struct lwp *, const struct linux32_sys_lchown16_args *, register_t *);
    911       1.1      manu 
    912      1.24       dsl int	linux32_sys_break(struct lwp *, const struct linux32_sys_break_args *, register_t *);
    913       1.1      manu 
    914      1.24       dsl int	compat_43_netbsd32_olseek(struct lwp *, const struct compat_43_netbsd32_olseek_args *, register_t *);
    915       1.1      manu 
    916  1.58.2.1  uebayasi int	sys_getpid(struct lwp *, const void *, register_t *);
    917       1.1      manu 
    918      1.24       dsl int	netbsd32_setuid(struct lwp *, const struct netbsd32_setuid_args *, register_t *);
    919       1.1      manu 
    920      1.24       dsl int	sys_getuid(struct lwp *, const void *, register_t *);
    921       1.1      manu 
    922      1.24       dsl int	linux32_sys_stime(struct lwp *, const struct linux32_sys_stime_args *, register_t *);
    923       1.1      manu 
    924      1.38  christos int	linux32_sys_ptrace(struct lwp *, const struct linux32_sys_ptrace_args *, register_t *);
    925      1.38  christos 
    926      1.24       dsl int	linux32_sys_alarm(struct lwp *, const struct linux32_sys_alarm_args *, register_t *);
    927       1.1      manu 
    928      1.24       dsl int	linux_sys_pause(struct lwp *, const void *, register_t *);
    929       1.1      manu 
    930      1.24       dsl int	linux32_sys_utime(struct lwp *, const struct linux32_sys_utime_args *, register_t *);
    931       1.1      manu 
    932      1.24       dsl int	netbsd32_access(struct lwp *, const struct netbsd32_access_args *, register_t *);
    933       1.1      manu 
    934      1.24       dsl int	linux32_sys_nice(struct lwp *, const struct linux32_sys_nice_args *, register_t *);
    935       1.1      manu 
    936      1.24       dsl int	sys_sync(struct lwp *, const void *, register_t *);
    937       1.1      manu 
    938      1.24       dsl int	linux32_sys_kill(struct lwp *, const struct linux32_sys_kill_args *, register_t *);
    939       1.1      manu 
    940      1.40     njoly int	netbsd32___posix_rename(struct lwp *, const struct netbsd32___posix_rename_args *, register_t *);
    941       1.1      manu 
    942      1.24       dsl int	netbsd32_mkdir(struct lwp *, const struct netbsd32_mkdir_args *, register_t *);
    943       1.1      manu 
    944      1.24       dsl int	netbsd32_rmdir(struct lwp *, const struct netbsd32_rmdir_args *, register_t *);
    945       1.1      manu 
    946      1.24       dsl int	netbsd32_dup(struct lwp *, const struct netbsd32_dup_args *, register_t *);
    947       1.1      manu 
    948      1.24       dsl int	linux32_sys_pipe(struct lwp *, const struct linux32_sys_pipe_args *, register_t *);
    949       1.1      manu 
    950      1.24       dsl int	linux32_sys_times(struct lwp *, const struct linux32_sys_times_args *, register_t *);
    951       1.1      manu 
    952      1.24       dsl int	linux32_sys_brk(struct lwp *, const struct linux32_sys_brk_args *, register_t *);
    953       1.1      manu 
    954      1.24       dsl int	netbsd32_setgid(struct lwp *, const struct netbsd32_setgid_args *, register_t *);
    955       1.1      manu 
    956      1.24       dsl int	sys_getgid(struct lwp *, const void *, register_t *);
    957       1.1      manu 
    958      1.24       dsl int	linux32_sys_signal(struct lwp *, const struct linux32_sys_signal_args *, register_t *);
    959       1.1      manu 
    960      1.24       dsl int	sys_geteuid(struct lwp *, const void *, register_t *);
    961       1.1      manu 
    962      1.24       dsl int	sys_getegid(struct lwp *, const void *, register_t *);
    963       1.1      manu 
    964      1.24       dsl int	netbsd32_acct(struct lwp *, const struct netbsd32_acct_args *, register_t *);
    965       1.1      manu 
    966      1.24       dsl int	linux32_sys_ioctl(struct lwp *, const struct linux32_sys_ioctl_args *, register_t *);
    967       1.1      manu 
    968      1.24       dsl int	linux32_sys_fcntl(struct lwp *, const struct linux32_sys_fcntl_args *, register_t *);
    969       1.1      manu 
    970      1.24       dsl int	netbsd32_setpgid(struct lwp *, const struct netbsd32_setpgid_args *, register_t *);
    971       1.1      manu 
    972      1.24       dsl int	linux32_sys_oldolduname(struct lwp *, const struct linux32_sys_oldolduname_args *, register_t *);
    973       1.1      manu 
    974      1.24       dsl int	netbsd32_umask(struct lwp *, const struct netbsd32_umask_args *, register_t *);
    975       1.1      manu 
    976      1.24       dsl int	netbsd32_chroot(struct lwp *, const struct netbsd32_chroot_args *, register_t *);
    977       1.1      manu 
    978      1.24       dsl int	netbsd32_dup2(struct lwp *, const struct netbsd32_dup2_args *, register_t *);
    979       1.1      manu 
    980  1.58.2.1  uebayasi int	sys_getppid(struct lwp *, const void *, register_t *);
    981       1.1      manu 
    982      1.24       dsl int	sys_getpgrp(struct lwp *, const void *, register_t *);
    983       1.1      manu 
    984      1.24       dsl int	sys_setsid(struct lwp *, const void *, register_t *);
    985       1.1      manu 
    986      1.54     njoly int	linux32_sys_siggetmask(struct lwp *, const void *, register_t *);
    987      1.54     njoly 
    988      1.54     njoly int	linux32_sys_sigsetmask(struct lwp *, const struct linux32_sys_sigsetmask_args *, register_t *);
    989      1.54     njoly 
    990      1.24       dsl int	linux32_sys_setreuid16(struct lwp *, const struct linux32_sys_setreuid16_args *, register_t *);
    991       1.1      manu 
    992      1.24       dsl int	linux32_sys_setregid16(struct lwp *, const struct linux32_sys_setregid16_args *, register_t *);
    993       1.1      manu 
    994      1.24       dsl int	compat_43_netbsd32_osethostname(struct lwp *, const struct compat_43_netbsd32_osethostname_args *, register_t *);
    995       1.1      manu 
    996      1.24       dsl int	linux32_sys_setrlimit(struct lwp *, const struct linux32_sys_setrlimit_args *, register_t *);
    997       1.1      manu 
    998      1.24       dsl int	linux32_sys_getrlimit(struct lwp *, const struct linux32_sys_getrlimit_args *, register_t *);
    999       1.1      manu 
   1000      1.48  christos int	compat_50_netbsd32_getrusage(struct lwp *, const struct compat_50_netbsd32_getrusage_args *, register_t *);
   1001       1.1      manu 
   1002      1.24       dsl int	linux32_sys_gettimeofday(struct lwp *, const struct linux32_sys_gettimeofday_args *, register_t *);
   1003       1.1      manu 
   1004      1.24       dsl int	linux32_sys_settimeofday(struct lwp *, const struct linux32_sys_settimeofday_args *, register_t *);
   1005       1.1      manu 
   1006      1.24       dsl int	linux32_sys_getgroups16(struct lwp *, const struct linux32_sys_getgroups16_args *, register_t *);
   1007       1.1      manu 
   1008      1.24       dsl int	linux32_sys_setgroups16(struct lwp *, const struct linux32_sys_setgroups16_args *, register_t *);
   1009       1.1      manu 
   1010      1.24       dsl int	linux32_sys_oldselect(struct lwp *, const struct linux32_sys_oldselect_args *, register_t *);
   1011       1.1      manu 
   1012      1.24       dsl int	netbsd32_symlink(struct lwp *, const struct netbsd32_symlink_args *, register_t *);
   1013       1.1      manu 
   1014      1.24       dsl int	compat_43_netbsd32_lstat43(struct lwp *, const struct compat_43_netbsd32_lstat43_args *, register_t *);
   1015       1.1      manu 
   1016      1.24       dsl int	netbsd32_readlink(struct lwp *, const struct netbsd32_readlink_args *, register_t *);
   1017       1.1      manu 
   1018      1.24       dsl int	linux32_sys_swapon(struct lwp *, const struct linux32_sys_swapon_args *, register_t *);
   1019       1.1      manu 
   1020      1.24       dsl int	linux32_sys_reboot(struct lwp *, const struct linux32_sys_reboot_args *, register_t *);
   1021       1.1      manu 
   1022      1.28     njoly int	linux32_sys_readdir(struct lwp *, const struct linux32_sys_readdir_args *, register_t *);
   1023      1.28     njoly 
   1024      1.24       dsl int	linux32_sys_old_mmap(struct lwp *, const struct linux32_sys_old_mmap_args *, register_t *);
   1025       1.1      manu 
   1026      1.24       dsl int	netbsd32_munmap(struct lwp *, const struct netbsd32_munmap_args *, register_t *);
   1027       1.1      manu 
   1028      1.40     njoly int	compat_43_netbsd32_otruncate(struct lwp *, const struct compat_43_netbsd32_otruncate_args *, register_t *);
   1029       1.1      manu 
   1030      1.24       dsl int	compat_43_netbsd32_oftruncate(struct lwp *, const struct compat_43_netbsd32_oftruncate_args *, register_t *);
   1031       1.1      manu 
   1032      1.24       dsl int	netbsd32_fchmod(struct lwp *, const struct netbsd32_fchmod_args *, register_t *);
   1033       1.1      manu 
   1034      1.24       dsl int	linux32_sys_fchown16(struct lwp *, const struct linux32_sys_fchown16_args *, register_t *);
   1035       1.1      manu 
   1036      1.24       dsl int	linux32_sys_getpriority(struct lwp *, const struct linux32_sys_getpriority_args *, register_t *);
   1037       1.1      manu 
   1038      1.40     njoly int	netbsd32_setpriority(struct lwp *, const struct netbsd32_setpriority_args *, register_t *);
   1039       1.1      manu 
   1040  1.58.2.2  uebayasi int	netbsd32_profil(struct lwp *, const struct netbsd32_profil_args *, register_t *);
   1041  1.58.2.2  uebayasi 
   1042      1.24       dsl int	linux32_sys_statfs(struct lwp *, const struct linux32_sys_statfs_args *, register_t *);
   1043      1.16     njoly 
   1044      1.56     njoly int	linux32_sys_fstatfs(struct lwp *, const struct linux32_sys_fstatfs_args *, register_t *);
   1045      1.56     njoly 
   1046  1.58.2.2  uebayasi int	linux_sys_ioperm(struct lwp *, const struct linux_sys_ioperm_args *, register_t *);
   1047  1.58.2.2  uebayasi 
   1048      1.24       dsl int	linux32_sys_socketcall(struct lwp *, const struct linux32_sys_socketcall_args *, register_t *);
   1049       1.1      manu 
   1050      1.48  christos int	compat_50_netbsd32_setitimer(struct lwp *, const struct compat_50_netbsd32_setitimer_args *, register_t *);
   1051       1.1      manu 
   1052      1.48  christos int	compat_50_netbsd32_getitimer(struct lwp *, const struct compat_50_netbsd32_getitimer_args *, register_t *);
   1053       1.1      manu 
   1054      1.55     njoly int	linux32_sys_stat(struct lwp *, const struct linux32_sys_stat_args *, register_t *);
   1055      1.55     njoly 
   1056      1.55     njoly int	linux32_sys_lstat(struct lwp *, const struct linux32_sys_lstat_args *, register_t *);
   1057      1.55     njoly 
   1058      1.55     njoly int	linux32_sys_fstat(struct lwp *, const struct linux32_sys_fstat_args *, register_t *);
   1059      1.55     njoly 
   1060      1.27     njoly int	linux32_sys_olduname(struct lwp *, const struct linux32_sys_olduname_args *, register_t *);
   1061      1.27     njoly 
   1062  1.58.2.2  uebayasi int	linux_sys_iopl(struct lwp *, const struct linux_sys_iopl_args *, register_t *);
   1063  1.58.2.2  uebayasi 
   1064      1.24       dsl int	linux32_sys_wait4(struct lwp *, const struct linux32_sys_wait4_args *, register_t *);
   1065       1.1      manu 
   1066      1.24       dsl int	linux32_sys_swapoff(struct lwp *, const struct linux32_sys_swapoff_args *, register_t *);
   1067       1.1      manu 
   1068      1.24       dsl int	linux32_sys_sysinfo(struct lwp *, const struct linux32_sys_sysinfo_args *, register_t *);
   1069      1.10      manu 
   1070      1.37     njoly int	linux32_sys_ipc(struct lwp *, const struct linux32_sys_ipc_args *, register_t *);
   1071      1.37     njoly 
   1072      1.24       dsl int	netbsd32_fsync(struct lwp *, const struct netbsd32_fsync_args *, register_t *);
   1073       1.1      manu 
   1074      1.24       dsl int	linux32_sys_sigreturn(struct lwp *, const struct linux32_sys_sigreturn_args *, register_t *);
   1075       1.1      manu 
   1076      1.24       dsl int	linux32_sys_clone(struct lwp *, const struct linux32_sys_clone_args *, register_t *);
   1077       1.1      manu 
   1078  1.58.2.2  uebayasi int	linux32_sys_setdomainname(struct lwp *, const struct linux32_sys_setdomainname_args *, register_t *);
   1079  1.58.2.2  uebayasi 
   1080      1.24       dsl int	linux32_sys_uname(struct lwp *, const struct linux32_sys_uname_args *, register_t *);
   1081       1.1      manu 
   1082  1.58.2.2  uebayasi int	linux32_sys_modify_ldt(struct lwp *, const struct linux32_sys_modify_ldt_args *, register_t *);
   1083  1.58.2.2  uebayasi 
   1084      1.24       dsl int	linux32_sys_mprotect(struct lwp *, const struct linux32_sys_mprotect_args *, register_t *);
   1085       1.1      manu 
   1086      1.26     njoly int	netbsd32_getpgid(struct lwp *, const struct netbsd32_getpgid_args *, register_t *);
   1087      1.26     njoly 
   1088      1.24       dsl int	netbsd32_fchdir(struct lwp *, const struct netbsd32_fchdir_args *, register_t *);
   1089       1.1      manu 
   1090      1.52     njoly int	linux32_sys_personality(struct lwp *, const struct linux32_sys_personality_args *, register_t *);
   1091      1.52     njoly 
   1092      1.24       dsl int	linux32_sys_setfsuid(struct lwp *, const struct linux32_sys_setfsuid_args *, register_t *);
   1093      1.13     njoly 
   1094      1.25     njoly int	linux32_sys_setfsgid(struct lwp *, const struct linux32_sys_setfsgid_args *, register_t *);
   1095      1.13     njoly 
   1096      1.24       dsl int	linux32_sys_llseek(struct lwp *, const struct linux32_sys_llseek_args *, register_t *);
   1097       1.1      manu 
   1098      1.24       dsl int	linux32_sys_getdents(struct lwp *, const struct linux32_sys_getdents_args *, register_t *);
   1099       1.1      manu 
   1100      1.24       dsl int	linux32_sys_select(struct lwp *, const struct linux32_sys_select_args *, register_t *);
   1101       1.1      manu 
   1102      1.24       dsl int	netbsd32_flock(struct lwp *, const struct netbsd32_flock_args *, register_t *);
   1103       1.1      manu 
   1104      1.35     njoly int	netbsd32___msync13(struct lwp *, const struct netbsd32___msync13_args *, register_t *);
   1105      1.35     njoly 
   1106      1.24       dsl int	netbsd32_readv(struct lwp *, const struct netbsd32_readv_args *, register_t *);
   1107       1.1      manu 
   1108      1.24       dsl int	netbsd32_writev(struct lwp *, const struct netbsd32_writev_args *, register_t *);
   1109       1.1      manu 
   1110      1.24       dsl int	netbsd32_getsid(struct lwp *, const struct netbsd32_getsid_args *, register_t *);
   1111       1.1      manu 
   1112      1.24       dsl int	linux32_sys_fdatasync(struct lwp *, const struct linux32_sys_fdatasync_args *, register_t *);
   1113       1.9      manu 
   1114      1.24       dsl int	linux32_sys___sysctl(struct lwp *, const struct linux32_sys___sysctl_args *, register_t *);
   1115       1.1      manu 
   1116      1.34     njoly int	netbsd32_mlock(struct lwp *, const struct netbsd32_mlock_args *, register_t *);
   1117      1.34     njoly 
   1118      1.34     njoly int	netbsd32_munlock(struct lwp *, const struct netbsd32_munlock_args *, register_t *);
   1119      1.34     njoly 
   1120      1.24       dsl int	netbsd32_mlockall(struct lwp *, const struct netbsd32_mlockall_args *, register_t *);
   1121       1.1      manu 
   1122      1.24       dsl int	sys_munlockall(struct lwp *, const void *, register_t *);
   1123       1.1      manu 
   1124  1.58.2.1  uebayasi int	linux32_sys_sched_setparam(struct lwp *, const struct linux32_sys_sched_setparam_args *, register_t *);
   1125  1.58.2.1  uebayasi 
   1126      1.24       dsl int	linux32_sys_sched_getparam(struct lwp *, const struct linux32_sys_sched_getparam_args *, register_t *);
   1127      1.10      manu 
   1128      1.24       dsl int	linux32_sys_sched_setscheduler(struct lwp *, const struct linux32_sys_sched_setscheduler_args *, register_t *);
   1129       1.1      manu 
   1130      1.24       dsl int	linux32_sys_sched_getscheduler(struct lwp *, const struct linux32_sys_sched_getscheduler_args *, register_t *);
   1131      1.10      manu 
   1132      1.24       dsl int	linux_sys_sched_yield(struct lwp *, const void *, register_t *);
   1133      1.13     njoly 
   1134      1.44     njoly int	linux32_sys_sched_get_priority_max(struct lwp *, const struct linux32_sys_sched_get_priority_max_args *, register_t *);
   1135      1.44     njoly 
   1136      1.44     njoly int	linux32_sys_sched_get_priority_min(struct lwp *, const struct linux32_sys_sched_get_priority_min_args *, register_t *);
   1137      1.44     njoly 
   1138      1.42     njoly int	linux32_sys_nanosleep(struct lwp *, const struct linux32_sys_nanosleep_args *, register_t *);
   1139       1.1      manu 
   1140      1.24       dsl int	linux32_sys_mremap(struct lwp *, const struct linux32_sys_mremap_args *, register_t *);
   1141      1.10      manu 
   1142      1.24       dsl int	linux32_sys_setresuid16(struct lwp *, const struct linux32_sys_setresuid16_args *, register_t *);
   1143       1.1      manu 
   1144      1.30     njoly int	linux32_sys_getresuid16(struct lwp *, const struct linux32_sys_getresuid16_args *, register_t *);
   1145      1.30     njoly 
   1146      1.24       dsl int	netbsd32_poll(struct lwp *, const struct netbsd32_poll_args *, register_t *);
   1147       1.1      manu 
   1148      1.24       dsl int	linux32_sys_setresgid16(struct lwp *, const struct linux32_sys_setresgid16_args *, register_t *);
   1149       1.1      manu 
   1150      1.30     njoly int	linux32_sys_getresgid16(struct lwp *, const struct linux32_sys_getresgid16_args *, register_t *);
   1151      1.30     njoly 
   1152      1.24       dsl int	linux32_sys_rt_sigreturn(struct lwp *, const struct linux32_sys_rt_sigreturn_args *, register_t *);
   1153       1.1      manu 
   1154      1.24       dsl int	linux32_sys_rt_sigaction(struct lwp *, const struct linux32_sys_rt_sigaction_args *, register_t *);
   1155       1.1      manu 
   1156      1.24       dsl int	linux32_sys_rt_sigprocmask(struct lwp *, const struct linux32_sys_rt_sigprocmask_args *, register_t *);
   1157       1.1      manu 
   1158      1.39     njoly int	linux32_sys_rt_sigpending(struct lwp *, const struct linux32_sys_rt_sigpending_args *, register_t *);
   1159      1.39     njoly 
   1160      1.57     njoly int	linux32_sys_rt_queueinfo(struct lwp *, const struct linux32_sys_rt_queueinfo_args *, register_t *);
   1161      1.57     njoly 
   1162      1.24       dsl int	linux32_sys_rt_sigsuspend(struct lwp *, const struct linux32_sys_rt_sigsuspend_args *, register_t *);
   1163       1.1      manu 
   1164      1.31       dsl int	linux32_sys_pread(struct lwp *, const struct linux32_sys_pread_args *, register_t *);
   1165      1.31       dsl 
   1166      1.31       dsl int	linux32_sys_pwrite(struct lwp *, const struct linux32_sys_pwrite_args *, register_t *);
   1167      1.31       dsl 
   1168      1.24       dsl int	linux32_sys_chown16(struct lwp *, const struct linux32_sys_chown16_args *, register_t *);
   1169      1.18     njoly 
   1170      1.24       dsl int	netbsd32___getcwd(struct lwp *, const struct netbsd32___getcwd_args *, register_t *);
   1171       1.2      manu 
   1172      1.24       dsl int	sys___vfork14(struct lwp *, const void *, register_t *);
   1173       1.1      manu 
   1174      1.24       dsl int	linux32_sys_ugetrlimit(struct lwp *, const struct linux32_sys_ugetrlimit_args *, register_t *);
   1175       1.1      manu 
   1176      1.24       dsl int	linux32_sys_mmap2(struct lwp *, const struct linux32_sys_mmap2_args *, register_t *);
   1177      1.10      manu 
   1178  1.58.2.2  uebayasi int	linux32_sys_truncate64(struct lwp *, const struct linux32_sys_truncate64_args *, register_t *);
   1179  1.58.2.2  uebayasi 
   1180  1.58.2.2  uebayasi int	linux32_sys_ftruncate64(struct lwp *, const struct linux32_sys_ftruncate64_args *, register_t *);
   1181  1.58.2.2  uebayasi 
   1182      1.24       dsl int	linux32_sys_stat64(struct lwp *, const struct linux32_sys_stat64_args *, register_t *);
   1183       1.1      manu 
   1184      1.24       dsl int	linux32_sys_lstat64(struct lwp *, const struct linux32_sys_lstat64_args *, register_t *);
   1185       1.1      manu 
   1186      1.24       dsl int	linux32_sys_fstat64(struct lwp *, const struct linux32_sys_fstat64_args *, register_t *);
   1187       1.1      manu 
   1188      1.24       dsl int	netbsd32___posix_lchown(struct lwp *, const struct netbsd32___posix_lchown_args *, register_t *);
   1189      1.18     njoly 
   1190      1.24       dsl int	netbsd32_setreuid(struct lwp *, const struct netbsd32_setreuid_args *, register_t *);
   1191       1.1      manu 
   1192      1.24       dsl int	netbsd32_setregid(struct lwp *, const struct netbsd32_setregid_args *, register_t *);
   1193       1.1      manu 
   1194      1.24       dsl int	netbsd32_getgroups(struct lwp *, const struct netbsd32_getgroups_args *, register_t *);
   1195       1.3      manu 
   1196      1.24       dsl int	netbsd32_setgroups(struct lwp *, const struct netbsd32_setgroups_args *, register_t *);
   1197       1.3      manu 
   1198      1.24       dsl int	netbsd32___posix_fchown(struct lwp *, const struct netbsd32___posix_fchown_args *, register_t *);
   1199       1.1      manu 
   1200      1.24       dsl int	linux32_sys_setresuid(struct lwp *, const struct linux32_sys_setresuid_args *, register_t *);
   1201       1.1      manu 
   1202      1.45     njoly int	linux32_sys_getresuid(struct lwp *, const struct linux32_sys_getresuid_args *, register_t *);
   1203      1.45     njoly 
   1204      1.24       dsl int	linux32_sys_setresgid(struct lwp *, const struct linux32_sys_setresgid_args *, register_t *);
   1205       1.1      manu 
   1206      1.45     njoly int	linux32_sys_getresgid(struct lwp *, const struct linux32_sys_getresgid_args *, register_t *);
   1207      1.45     njoly 
   1208      1.24       dsl int	netbsd32___posix_chown(struct lwp *, const struct netbsd32___posix_chown_args *, register_t *);
   1209      1.18     njoly 
   1210      1.53     njoly int	netbsd32_mincore(struct lwp *, const struct netbsd32_mincore_args *, register_t *);
   1211      1.53     njoly 
   1212      1.24       dsl int	netbsd32_madvise(struct lwp *, const struct netbsd32_madvise_args *, register_t *);
   1213      1.10      manu 
   1214      1.24       dsl int	linux32_sys_getdents64(struct lwp *, const struct linux32_sys_getdents64_args *, register_t *);
   1215       1.1      manu 
   1216      1.32       dsl #define linux32_sys_fcntl64 linux32_sys_fcntl
   1217      1.32       dsl #define linux32_sys_fcntl64_args linux32_sys_fcntl_args
   1218      1.24       dsl int	linux32_sys_fcntl64(struct lwp *, const struct linux32_sys_fcntl64_args *, register_t *);
   1219       1.1      manu 
   1220      1.24       dsl int	linux_sys_gettid(struct lwp *, const void *, register_t *);
   1221       1.4      manu 
   1222  1.58.2.1  uebayasi int	linux32_sys_tkill(struct lwp *, const struct linux32_sys_tkill_args *, register_t *);
   1223  1.58.2.1  uebayasi 
   1224  1.58.2.1  uebayasi int	linux32_sys_futex(struct lwp *, const struct linux32_sys_futex_args *, register_t *);
   1225  1.58.2.1  uebayasi 
   1226  1.58.2.1  uebayasi int	linux32_sys_sched_setaffinity(struct lwp *, const struct linux32_sys_sched_setaffinity_args *, register_t *);
   1227  1.58.2.1  uebayasi 
   1228  1.58.2.1  uebayasi int	linux32_sys_sched_getaffinity(struct lwp *, const struct linux32_sys_sched_getaffinity_args *, register_t *);
   1229  1.58.2.1  uebayasi 
   1230  1.58.2.1  uebayasi int	linux32_sys_set_thread_area(struct lwp *, const struct linux32_sys_set_thread_area_args *, register_t *);
   1231  1.58.2.1  uebayasi 
   1232  1.58.2.1  uebayasi int	linux32_sys_get_thread_area(struct lwp *, const struct linux32_sys_get_thread_area_args *, register_t *);
   1233  1.58.2.1  uebayasi 
   1234      1.24       dsl int	linux32_sys_exit_group(struct lwp *, const struct linux32_sys_exit_group_args *, register_t *);
   1235       1.1      manu 
   1236  1.58.2.1  uebayasi int	linux32_sys_set_tid_address(struct lwp *, const struct linux32_sys_set_tid_address_args *, register_t *);
   1237  1.58.2.1  uebayasi 
   1238      1.36     njoly int	linux32_sys_clock_settime(struct lwp *, const struct linux32_sys_clock_settime_args *, register_t *);
   1239      1.36     njoly 
   1240      1.36     njoly int	linux32_sys_clock_gettime(struct lwp *, const struct linux32_sys_clock_gettime_args *, register_t *);
   1241      1.36     njoly 
   1242      1.36     njoly int	linux32_sys_clock_getres(struct lwp *, const struct linux32_sys_clock_getres_args *, register_t *);
   1243      1.36     njoly 
   1244      1.47     njoly int	linux32_sys_clock_nanosleep(struct lwp *, const struct linux32_sys_clock_nanosleep_args *, register_t *);
   1245      1.47     njoly 
   1246  1.58.2.2  uebayasi int	linux32_sys_statfs64(struct lwp *, const struct linux32_sys_statfs64_args *, register_t *);
   1247  1.58.2.2  uebayasi 
   1248  1.58.2.2  uebayasi int	linux32_sys_fstatfs64(struct lwp *, const struct linux32_sys_fstatfs64_args *, register_t *);
   1249  1.58.2.2  uebayasi 
   1250  1.58.2.1  uebayasi int	linux32_sys_tgkill(struct lwp *, const struct linux32_sys_tgkill_args *, register_t *);
   1251  1.58.2.1  uebayasi 
   1252  1.58.2.1  uebayasi int	linux32_sys_set_robust_list(struct lwp *, const struct linux32_sys_set_robust_list_args *, register_t *);
   1253  1.58.2.1  uebayasi 
   1254  1.58.2.1  uebayasi int	linux32_sys_get_robust_list(struct lwp *, const struct linux32_sys_get_robust_list_args *, register_t *);
   1255  1.58.2.1  uebayasi 
   1256       1.1      manu #endif /* _LINUX32_SYS_SYSCALLARGS_H_ */
   1257