Home | History | Annotate | Line # | Download | only in amd64
linux32_syscallargs.h revision 1.17.6.4
      1  1.17.6.4     joerg /* $NetBSD: linux32_syscallargs.h,v 1.17.6.4 2007/11/11 16:47:15 joerg Exp $ */
      2       1.1      manu 
      3       1.1      manu /*
      4       1.1      manu  * System call argument lists.
      5       1.1      manu  *
      6       1.1      manu  * DO NOT EDIT-- this file is automatically generated.
      7  1.17.6.4     joerg  * created from	NetBSD: syscalls.master,v 1.19 2007/11/07 00:24:30 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.1      manu #ifdef	syscallarg
     14       1.1      manu #undef	syscallarg
     15       1.1      manu #endif
     16       1.1      manu 
     17       1.1      manu #define	syscallarg(x)							\
     18       1.1      manu 	union {								\
     19       1.1      manu 		register32_t pad;						\
     20       1.1      manu 		struct { x datum; } le;					\
     21       1.1      manu 		struct { /* LINTED zero array dimension */		\
     22       1.1      manu 			int8_t pad[  /* CONSTCOND */			\
     23       1.1      manu 				(sizeof (register32_t) < sizeof (x))	\
     24       1.1      manu 				? 0					\
     25       1.1      manu 				: sizeof (register32_t) - sizeof (x)];	\
     26       1.1      manu 			x datum;					\
     27       1.1      manu 		} be;							\
     28       1.1      manu 	}
     29       1.1      manu 
     30       1.1      manu struct linux32_sys_open_args {
     31       1.1      manu 	syscallarg(const netbsd32_charp) path;
     32       1.1      manu 	syscallarg(int) flags;
     33       1.1      manu 	syscallarg(int) mode;
     34       1.1      manu };
     35       1.1      manu 
     36       1.1      manu struct linux32_sys_waitpid_args {
     37       1.1      manu 	syscallarg(int) pid;
     38       1.1      manu 	syscallarg(netbsd32_intp) status;
     39       1.1      manu 	syscallarg(int) options;
     40       1.1      manu };
     41       1.1      manu 
     42       1.1      manu struct linux32_sys_creat_args {
     43       1.1      manu 	syscallarg(const netbsd32_charp) path;
     44       1.1      manu 	syscallarg(int) mode;
     45       1.1      manu };
     46       1.1      manu 
     47       1.1      manu struct linux32_sys_unlink_args {
     48       1.1      manu 	syscallarg(const netbsd32_charp) path;
     49       1.1      manu };
     50       1.1      manu 
     51       1.1      manu struct linux32_sys_time_args {
     52       1.1      manu 	syscallarg(linux32_timep_t) t;
     53       1.1      manu };
     54       1.1      manu 
     55       1.1      manu struct linux32_sys_mknod_args {
     56       1.1      manu 	syscallarg(const netbsd32_charp) path;
     57       1.1      manu 	syscallarg(int) mode;
     58       1.1      manu 	syscallarg(int) dev;
     59       1.1      manu };
     60       1.1      manu 
     61       1.1      manu struct linux32_sys_lchown16_args {
     62       1.1      manu 	syscallarg(const netbsd32_charp) path;
     63       1.1      manu 	syscallarg(int) uid;
     64       1.1      manu 	syscallarg(int) gid;
     65       1.1      manu };
     66       1.1      manu 
     67       1.1      manu struct linux32_sys_break_args {
     68       1.1      manu 	syscallarg(netbsd32_charp) nsize;
     69       1.1      manu };
     70       1.1      manu 
     71       1.1      manu struct linux32_sys_stime_args {
     72       1.1      manu 	syscallarg(linux32_timep_t) t;
     73       1.1      manu };
     74       1.1      manu 
     75  1.17.6.4     joerg struct linux32_sys_alarm_args {
     76  1.17.6.4     joerg 	syscallarg(unsigned int) secs;
     77  1.17.6.4     joerg };
     78  1.17.6.4     joerg 
     79       1.1      manu struct linux32_sys_utime_args {
     80       1.1      manu 	syscallarg(const netbsd32_charp) path;
     81       1.1      manu 	syscallarg(linux32_utimbufp_t) times;
     82       1.1      manu };
     83       1.1      manu 
     84  1.17.6.4     joerg struct linux32_sys_nice_args {
     85  1.17.6.4     joerg 	syscallarg(int) incr;
     86  1.17.6.4     joerg };
     87  1.17.6.4     joerg 
     88       1.1      manu struct linux32_sys_kill_args {
     89       1.1      manu 	syscallarg(int) pid;
     90       1.1      manu 	syscallarg(int) signum;
     91       1.1      manu };
     92       1.1      manu 
     93       1.1      manu struct linux32_sys_rename_args {
     94       1.1      manu 	syscallarg(const netbsd32_charp) from;
     95       1.1      manu 	syscallarg(const netbsd32_charp) to;
     96       1.1      manu };
     97       1.1      manu 
     98       1.1      manu struct linux32_sys_pipe_args {
     99       1.1      manu 	syscallarg(netbsd32_intp) fd;
    100       1.1      manu };
    101       1.1      manu 
    102       1.1      manu struct linux32_sys_times_args {
    103       1.1      manu 	syscallarg(linux32_tmsp_t) tms;
    104       1.1      manu };
    105       1.1      manu 
    106       1.1      manu struct linux32_sys_brk_args {
    107       1.1      manu 	syscallarg(netbsd32_charp) nsize;
    108       1.1      manu };
    109       1.1      manu 
    110       1.1      manu struct linux32_sys_signal_args {
    111       1.1      manu 	syscallarg(int) signum;
    112       1.1      manu 	syscallarg(linux32_handler_t) handler;
    113       1.1      manu };
    114       1.1      manu 
    115       1.1      manu struct linux32_sys_ioctl_args {
    116       1.1      manu 	syscallarg(int) fd;
    117       1.1      manu 	syscallarg(netbsd32_u_long) com;
    118       1.1      manu 	syscallarg(netbsd32_charp) data;
    119       1.1      manu };
    120       1.1      manu 
    121       1.1      manu struct linux32_sys_fcntl_args {
    122       1.1      manu 	syscallarg(int) fd;
    123       1.1      manu 	syscallarg(int) cmd;
    124       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    125       1.1      manu };
    126       1.1      manu 
    127       1.1      manu struct linux32_sys_oldolduname_args {
    128       1.1      manu 	syscallarg(linux32_oldold_utsnamep_t) up;
    129       1.1      manu };
    130       1.1      manu 
    131  1.17.6.4     joerg struct linux32_sys_setreuid16_args {
    132       1.1      manu 	syscallarg(int) ruid;
    133       1.1      manu 	syscallarg(int) euid;
    134       1.1      manu };
    135       1.1      manu 
    136  1.17.6.4     joerg struct linux32_sys_setregid16_args {
    137       1.1      manu 	syscallarg(int) rgid;
    138       1.1      manu 	syscallarg(int) egid;
    139       1.1      manu };
    140       1.1      manu 
    141       1.1      manu struct linux32_sys_setrlimit_args {
    142       1.1      manu 	syscallarg(u_int) which;
    143       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    144       1.1      manu };
    145       1.1      manu 
    146       1.1      manu struct linux32_sys_getrlimit_args {
    147       1.1      manu 	syscallarg(u_int) which;
    148       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    149       1.1      manu };
    150       1.1      manu 
    151       1.1      manu struct linux32_sys_gettimeofday_args {
    152       1.1      manu 	syscallarg(netbsd32_timevalp_t) tp;
    153       1.1      manu 	syscallarg(netbsd32_timezonep_t) tzp;
    154       1.1      manu };
    155       1.1      manu 
    156       1.1      manu struct linux32_sys_settimeofday_args {
    157       1.1      manu 	syscallarg(netbsd32_timevalp_t) tp;
    158       1.1      manu 	syscallarg(netbsd32_timezonep_t) tzp;
    159       1.1      manu };
    160       1.1      manu 
    161       1.1      manu struct linux32_sys_getgroups16_args {
    162       1.1      manu 	syscallarg(int) gidsetsize;
    163       1.1      manu 	syscallarg(linux32_gidp_t) gidset;
    164       1.1      manu };
    165       1.1      manu 
    166       1.1      manu struct linux32_sys_setgroups16_args {
    167       1.1      manu 	syscallarg(int) gidsetsize;
    168       1.1      manu 	syscallarg(linux32_gidp_t) gidset;
    169       1.1      manu };
    170       1.1      manu 
    171       1.1      manu struct linux32_sys_oldselect_args {
    172       1.1      manu 	syscallarg(linux32_oldselectp_t) lsp;
    173       1.1      manu };
    174       1.1      manu 
    175       1.1      manu struct linux32_sys_readlink_args {
    176       1.1      manu 	syscallarg(const netbsd32_charp) name;
    177       1.1      manu 	syscallarg(netbsd32_charp) buf;
    178       1.1      manu 	syscallarg(int) count;
    179       1.1      manu };
    180       1.1      manu 
    181       1.1      manu struct linux32_sys_swapon_args {
    182       1.1      manu 	syscallarg(netbsd32_charp) name;
    183       1.1      manu };
    184       1.1      manu 
    185       1.1      manu struct linux32_sys_reboot_args {
    186       1.1      manu 	syscallarg(int) magic1;
    187       1.1      manu 	syscallarg(int) magic2;
    188       1.1      manu 	syscallarg(int) cmd;
    189       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    190       1.1      manu };
    191       1.1      manu 
    192       1.1      manu struct linux32_sys_old_mmap_args {
    193       1.1      manu 	syscallarg(linux32_oldmmapp) lmp;
    194       1.1      manu };
    195       1.1      manu 
    196       1.1      manu struct linux32_sys_truncate_args {
    197       1.1      manu 	syscallarg(const netbsd32_charp) path;
    198       1.1      manu 	syscallarg(netbsd32_long) length;
    199       1.1      manu };
    200       1.1      manu 
    201       1.1      manu struct linux32_sys_fchown16_args {
    202       1.1      manu 	syscallarg(int) fd;
    203       1.1      manu 	syscallarg(int) uid;
    204       1.1      manu 	syscallarg(int) gid;
    205       1.1      manu };
    206       1.1      manu 
    207       1.4      manu struct linux32_sys_getpriority_args {
    208       1.4      manu 	syscallarg(int) which;
    209       1.4      manu 	syscallarg(int) who;
    210       1.4      manu };
    211       1.4      manu 
    212       1.4      manu struct linux32_sys_setpriority_args {
    213       1.4      manu 	syscallarg(int) which;
    214       1.4      manu 	syscallarg(int) who;
    215       1.4      manu 	syscallarg(int) prio;
    216       1.4      manu };
    217       1.4      manu 
    218      1.16     njoly struct linux32_sys_statfs_args {
    219      1.16     njoly 	syscallarg(const netbsd32_charp) path;
    220      1.16     njoly 	syscallarg(linux32_statfsp) sp;
    221      1.16     njoly };
    222      1.16     njoly 
    223       1.1      manu struct linux32_sys_socketcall_args {
    224       1.1      manu 	syscallarg(int) what;
    225       1.1      manu 	syscallarg(netbsd32_voidp) args;
    226       1.1      manu };
    227       1.1      manu 
    228       1.1      manu struct linux32_sys_wait4_args {
    229       1.1      manu 	syscallarg(int) pid;
    230       1.1      manu 	syscallarg(netbsd32_intp) status;
    231       1.1      manu 	syscallarg(int) options;
    232       1.1      manu 	syscallarg(netbsd32_rusagep_t) rusage;
    233       1.1      manu };
    234       1.1      manu 
    235       1.1      manu struct linux32_sys_swapoff_args {
    236       1.1      manu 	syscallarg(const netbsd32_charp) path;
    237       1.1      manu };
    238       1.1      manu 
    239      1.10      manu struct linux32_sys_sysinfo_args {
    240      1.10      manu 	syscallarg(linux32_sysinfop_t) arg;
    241      1.10      manu };
    242      1.10      manu 
    243       1.1      manu struct linux32_sys_sigreturn_args {
    244       1.1      manu 	syscallarg(linux32_sigcontextp_t) scp;
    245       1.1      manu };
    246       1.1      manu 
    247       1.1      manu struct linux32_sys_clone_args {
    248       1.1      manu 	syscallarg(int) flags;
    249       1.1      manu 	syscallarg(netbsd32_voidp) stack;
    250       1.1      manu };
    251       1.1      manu 
    252       1.1      manu struct linux32_sys_uname_args {
    253       1.1      manu 	syscallarg(linux32_utsnamep) up;
    254       1.1      manu };
    255       1.1      manu 
    256       1.1      manu struct linux32_sys_mprotect_args {
    257       1.1      manu 	syscallarg(netbsd32_voidp) addr;
    258       1.1      manu 	syscallarg(netbsd32_size_t) len;
    259       1.1      manu 	syscallarg(int) prot;
    260       1.1      manu };
    261       1.1      manu 
    262       1.1      manu struct linux32_sys_llseek_args {
    263       1.1      manu 	syscallarg(int) fd;
    264       1.1      manu 	syscallarg(u_int32_t) ohigh;
    265       1.1      manu 	syscallarg(u_int32_t) olow;
    266      1.15  christos 	syscallarg(netbsd32_caddr_t) res;
    267       1.1      manu 	syscallarg(int) whence;
    268       1.1      manu };
    269       1.1      manu 
    270       1.1      manu struct linux32_sys_getdents_args {
    271       1.1      manu 	syscallarg(int) fd;
    272       1.1      manu 	syscallarg(linux32_direntp_t) dent;
    273       1.1      manu 	syscallarg(unsigned int) count;
    274       1.1      manu };
    275       1.1      manu 
    276       1.1      manu struct linux32_sys_select_args {
    277       1.1      manu 	syscallarg(int) nfds;
    278       1.1      manu 	syscallarg(netbsd32_fd_setp_t) readfds;
    279       1.1      manu 	syscallarg(netbsd32_fd_setp_t) writefds;
    280       1.1      manu 	syscallarg(netbsd32_fd_setp_t) exceptfds;
    281       1.1      manu 	syscallarg(netbsd32_timevalp_t) timeout;
    282       1.1      manu };
    283       1.1      manu 
    284  1.17.6.4     joerg struct linux32_sys_fdatasync_args {
    285  1.17.6.4     joerg 	syscallarg(int) fd;
    286  1.17.6.4     joerg };
    287  1.17.6.4     joerg 
    288       1.1      manu struct linux32_sys___sysctl_args {
    289       1.1      manu 	syscallarg(linux32___sysctlp_t) lsp;
    290       1.1      manu };
    291       1.1      manu 
    292      1.10      manu struct linux32_sys_sched_getparam_args {
    293      1.10      manu 	syscallarg(pid_t) pid;
    294      1.10      manu 	syscallarg(linux32_sched_paramp_t) sp;
    295      1.10      manu };
    296      1.10      manu 
    297       1.1      manu struct linux32_sys_sched_setscheduler_args {
    298       1.1      manu 	syscallarg(pid_t) pid;
    299       1.1      manu 	syscallarg(int) policy;
    300       1.1      manu 	syscallarg(const linux32_sched_paramp_t) sp;
    301       1.1      manu };
    302       1.1      manu 
    303  1.17.6.4     joerg struct linux32_sys_sched_getscheduler_args {
    304  1.17.6.4     joerg 	syscallarg(pid_t) pid;
    305  1.17.6.4     joerg };
    306  1.17.6.4     joerg 
    307      1.10      manu struct linux32_sys_mremap_args {
    308      1.10      manu 	syscallarg(netbsd32_voidp) old_address;
    309      1.10      manu 	syscallarg(netbsd32_size_t) old_size;
    310      1.10      manu 	syscallarg(netbsd32_size_t) new_size;
    311      1.10      manu 	syscallarg(netbsd32_u_long) flags;
    312      1.10      manu };
    313      1.10      manu 
    314  1.17.6.4     joerg struct linux32_sys_setresuid16_args {
    315  1.17.6.4     joerg 	syscallarg(uid_t) ruid;
    316  1.17.6.4     joerg 	syscallarg(uid_t) euid;
    317  1.17.6.4     joerg 	syscallarg(uid_t) suid;
    318  1.17.6.4     joerg };
    319  1.17.6.4     joerg 
    320  1.17.6.4     joerg struct linux32_sys_setresgid16_args {
    321  1.17.6.4     joerg 	syscallarg(gid_t) rgid;
    322  1.17.6.4     joerg 	syscallarg(gid_t) egid;
    323  1.17.6.4     joerg 	syscallarg(gid_t) sgid;
    324  1.17.6.4     joerg };
    325  1.17.6.4     joerg 
    326       1.1      manu struct linux32_sys_rt_sigreturn_args {
    327       1.1      manu 	syscallarg(linux32_ucontextp_t) ucp;
    328       1.1      manu };
    329       1.1      manu 
    330       1.1      manu struct linux32_sys_rt_sigaction_args {
    331       1.1      manu 	syscallarg(int) signum;
    332       1.1      manu 	syscallarg(const linux32_sigactionp_t) nsa;
    333       1.1      manu 	syscallarg(linux32_sigactionp_t) osa;
    334       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    335       1.1      manu };
    336       1.1      manu 
    337       1.1      manu struct linux32_sys_rt_sigprocmask_args {
    338       1.1      manu 	syscallarg(int) how;
    339       1.1      manu 	syscallarg(const linux32_sigsetp_t) set;
    340       1.1      manu 	syscallarg(linux32_sigsetp_t) oset;
    341       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    342       1.1      manu };
    343       1.1      manu 
    344       1.1      manu struct linux32_sys_rt_sigsuspend_args {
    345       1.1      manu 	syscallarg(linux32_sigsetp_t) unewset;
    346       1.1      manu 	syscallarg(netbsd32_size_t) sigsetsize;
    347       1.1      manu };
    348       1.1      manu 
    349  1.17.6.1     joerg struct linux32_sys_chown16_args {
    350  1.17.6.1     joerg 	syscallarg(const netbsd32_charp) path;
    351  1.17.6.1     joerg 	syscallarg(int) uid;
    352  1.17.6.1     joerg 	syscallarg(int) gid;
    353  1.17.6.1     joerg };
    354  1.17.6.1     joerg 
    355       1.1      manu struct linux32_sys_ugetrlimit_args {
    356       1.1      manu 	syscallarg(int) which;
    357       1.1      manu 	syscallarg(netbsd32_orlimitp_t) rlp;
    358       1.1      manu };
    359       1.1      manu 
    360      1.10      manu struct linux32_sys_mmap2_args {
    361      1.10      manu 	syscallarg(netbsd32_u_long) addr;
    362      1.10      manu 	syscallarg(netbsd32_size_t) len;
    363      1.10      manu 	syscallarg(int) prot;
    364      1.10      manu 	syscallarg(int) flags;
    365      1.10      manu 	syscallarg(int) fd;
    366      1.10      manu 	syscallarg(linux32_off_t) offset;
    367      1.10      manu };
    368      1.10      manu 
    369       1.1      manu struct linux32_sys_stat64_args {
    370       1.1      manu 	syscallarg(const netbsd32_charp) path;
    371       1.1      manu 	syscallarg(linux32_stat64p) sp;
    372       1.1      manu };
    373       1.1      manu 
    374       1.1      manu struct linux32_sys_lstat64_args {
    375       1.1      manu 	syscallarg(const netbsd32_charp) path;
    376       1.1      manu 	syscallarg(linux32_stat64p) sp;
    377       1.1      manu };
    378       1.1      manu 
    379       1.1      manu struct linux32_sys_fstat64_args {
    380       1.1      manu 	syscallarg(int) fd;
    381       1.1      manu 	syscallarg(linux32_stat64p) sp;
    382       1.1      manu };
    383       1.1      manu 
    384       1.8      manu struct linux32_sys_setresuid_args {
    385       1.8      manu 	syscallarg(uid_t) ruid;
    386       1.8      manu 	syscallarg(uid_t) euid;
    387       1.8      manu 	syscallarg(uid_t) suid;
    388       1.8      manu };
    389       1.8      manu 
    390       1.8      manu struct linux32_sys_setresgid_args {
    391       1.8      manu 	syscallarg(gid_t) rgid;
    392       1.8      manu 	syscallarg(gid_t) egid;
    393       1.8      manu 	syscallarg(gid_t) sgid;
    394       1.8      manu };
    395       1.8      manu 
    396  1.17.6.4     joerg struct linux32_sys_setfsuid_args {
    397  1.17.6.4     joerg 	syscallarg(uid_t) uid;
    398  1.17.6.4     joerg };
    399  1.17.6.4     joerg 
    400       1.1      manu struct linux32_sys_getdents64_args {
    401       1.1      manu 	syscallarg(int) fd;
    402       1.1      manu 	syscallarg(linux32_dirent64p_t) dent;
    403       1.1      manu 	syscallarg(unsigned int) count;
    404       1.1      manu };
    405       1.1      manu 
    406       1.1      manu struct linux32_sys_fcntl64_args {
    407       1.1      manu 	syscallarg(int) fd;
    408       1.1      manu 	syscallarg(int) cmd;
    409       1.1      manu 	syscallarg(netbsd32_voidp) arg;
    410       1.1      manu };
    411       1.1      manu 
    412  1.17.6.4     joerg struct linux32_sys_exit_group_args {
    413  1.17.6.4     joerg 	syscallarg(int) error_code;
    414  1.17.6.4     joerg };
    415  1.17.6.4     joerg 
    416       1.1      manu /*
    417       1.1      manu  * System call prototypes.
    418       1.1      manu  */
    419       1.1      manu 
    420       1.1      manu int	linux_sys_nosys(struct lwp *, void *, register_t *);
    421       1.1      manu 
    422  1.17.6.3  jmcneill int	netbsd32_exit(struct lwp *, void *, register_t *);
    423       1.1      manu 
    424       1.1      manu int	sys_fork(struct lwp *, void *, register_t *);
    425       1.1      manu 
    426       1.1      manu int	netbsd32_read(struct lwp *, void *, register_t *);
    427       1.1      manu 
    428       1.1      manu int	netbsd32_write(struct lwp *, void *, register_t *);
    429       1.1      manu 
    430       1.1      manu int	linux32_sys_open(struct lwp *, void *, register_t *);
    431       1.1      manu 
    432  1.17.6.3  jmcneill int	netbsd32_close(struct lwp *, void *, register_t *);
    433       1.1      manu 
    434       1.1      manu int	linux32_sys_waitpid(struct lwp *, void *, register_t *);
    435       1.1      manu 
    436       1.1      manu int	linux32_sys_creat(struct lwp *, void *, register_t *);
    437       1.1      manu 
    438  1.17.6.2     joerg int	netbsd32_link(struct lwp *, void *, register_t *);
    439       1.1      manu 
    440       1.1      manu int	linux32_sys_unlink(struct lwp *, void *, register_t *);
    441       1.1      manu 
    442       1.1      manu int	netbsd32_execve(struct lwp *, void *, register_t *);
    443       1.1      manu 
    444  1.17.6.2     joerg int	netbsd32_chdir(struct lwp *, void *, register_t *);
    445       1.1      manu 
    446       1.1      manu int	linux32_sys_time(struct lwp *, void *, register_t *);
    447       1.1      manu 
    448       1.1      manu int	linux32_sys_mknod(struct lwp *, void *, register_t *);
    449       1.1      manu 
    450  1.17.6.2     joerg int	netbsd32_chmod(struct lwp *, void *, register_t *);
    451       1.1      manu 
    452       1.1      manu int	linux32_sys_lchown16(struct lwp *, void *, register_t *);
    453       1.1      manu 
    454       1.1      manu int	linux32_sys_break(struct lwp *, void *, register_t *);
    455       1.1      manu 
    456       1.1      manu int	compat_43_netbsd32_olseek(struct lwp *, void *, register_t *);
    457       1.1      manu 
    458       1.4      manu int	linux_sys_getpid(struct lwp *, void *, register_t *);
    459       1.1      manu 
    460  1.17.6.3  jmcneill int	netbsd32_setuid(struct lwp *, void *, register_t *);
    461       1.1      manu 
    462       1.1      manu int	sys_getuid(struct lwp *, void *, register_t *);
    463       1.1      manu 
    464       1.1      manu int	linux32_sys_stime(struct lwp *, void *, register_t *);
    465       1.1      manu 
    466  1.17.6.4     joerg int	linux32_sys_alarm(struct lwp *, void *, register_t *);
    467       1.1      manu 
    468       1.1      manu int	linux_sys_pause(struct lwp *, void *, register_t *);
    469       1.1      manu 
    470       1.1      manu int	linux32_sys_utime(struct lwp *, void *, register_t *);
    471       1.1      manu 
    472  1.17.6.2     joerg int	netbsd32_access(struct lwp *, void *, register_t *);
    473       1.1      manu 
    474  1.17.6.4     joerg int	linux32_sys_nice(struct lwp *, void *, register_t *);
    475       1.1      manu 
    476       1.1      manu int	sys_sync(struct lwp *, void *, register_t *);
    477       1.1      manu 
    478       1.1      manu int	linux32_sys_kill(struct lwp *, void *, register_t *);
    479       1.1      manu 
    480       1.1      manu int	linux32_sys_rename(struct lwp *, void *, register_t *);
    481       1.1      manu 
    482  1.17.6.2     joerg int	netbsd32_mkdir(struct lwp *, void *, register_t *);
    483       1.1      manu 
    484  1.17.6.2     joerg int	netbsd32_rmdir(struct lwp *, void *, register_t *);
    485       1.1      manu 
    486       1.3      manu int	netbsd32_dup(struct lwp *, void *, register_t *);
    487       1.1      manu 
    488       1.1      manu int	linux32_sys_pipe(struct lwp *, void *, register_t *);
    489       1.1      manu 
    490       1.1      manu int	linux32_sys_times(struct lwp *, void *, register_t *);
    491       1.1      manu 
    492       1.1      manu int	linux32_sys_brk(struct lwp *, void *, register_t *);
    493       1.1      manu 
    494  1.17.6.3  jmcneill int	netbsd32_setgid(struct lwp *, void *, register_t *);
    495       1.1      manu 
    496       1.1      manu int	sys_getgid(struct lwp *, void *, register_t *);
    497       1.1      manu 
    498       1.1      manu int	linux32_sys_signal(struct lwp *, void *, register_t *);
    499       1.1      manu 
    500       1.1      manu int	sys_geteuid(struct lwp *, void *, register_t *);
    501       1.1      manu 
    502       1.1      manu int	sys_getegid(struct lwp *, void *, register_t *);
    503       1.1      manu 
    504       1.1      manu int	netbsd32_acct(struct lwp *, void *, register_t *);
    505       1.1      manu 
    506       1.1      manu int	linux32_sys_ioctl(struct lwp *, void *, register_t *);
    507       1.1      manu 
    508       1.1      manu int	linux32_sys_fcntl(struct lwp *, void *, register_t *);
    509       1.1      manu 
    510  1.17.6.3  jmcneill int	netbsd32_setpgid(struct lwp *, void *, register_t *);
    511       1.1      manu 
    512       1.1      manu int	linux32_sys_oldolduname(struct lwp *, void *, register_t *);
    513       1.1      manu 
    514  1.17.6.3  jmcneill int	netbsd32_umask(struct lwp *, void *, register_t *);
    515       1.1      manu 
    516       1.1      manu int	netbsd32_chroot(struct lwp *, void *, register_t *);
    517       1.1      manu 
    518       1.3      manu int	netbsd32_dup2(struct lwp *, void *, register_t *);
    519       1.1      manu 
    520       1.4      manu int	linux_sys_getppid(struct lwp *, void *, register_t *);
    521       1.1      manu 
    522       1.1      manu int	sys_getpgrp(struct lwp *, void *, register_t *);
    523       1.1      manu 
    524       1.1      manu int	sys_setsid(struct lwp *, void *, register_t *);
    525       1.1      manu 
    526  1.17.6.4     joerg int	linux32_sys_setreuid16(struct lwp *, void *, register_t *);
    527       1.1      manu 
    528  1.17.6.4     joerg int	linux32_sys_setregid16(struct lwp *, void *, register_t *);
    529       1.1      manu 
    530       1.1      manu int	compat_43_netbsd32_osethostname(struct lwp *, void *, register_t *);
    531       1.1      manu 
    532       1.1      manu int	linux32_sys_setrlimit(struct lwp *, void *, register_t *);
    533       1.1      manu 
    534       1.1      manu int	linux32_sys_getrlimit(struct lwp *, void *, register_t *);
    535       1.1      manu 
    536       1.1      manu int	netbsd32_getrusage(struct lwp *, void *, register_t *);
    537       1.1      manu 
    538       1.1      manu int	linux32_sys_gettimeofday(struct lwp *, void *, register_t *);
    539       1.1      manu 
    540       1.1      manu int	linux32_sys_settimeofday(struct lwp *, void *, register_t *);
    541       1.1      manu 
    542       1.1      manu int	linux32_sys_getgroups16(struct lwp *, void *, register_t *);
    543       1.1      manu 
    544       1.1      manu int	linux32_sys_setgroups16(struct lwp *, void *, register_t *);
    545       1.1      manu 
    546       1.1      manu int	linux32_sys_oldselect(struct lwp *, void *, register_t *);
    547       1.1      manu 
    548  1.17.6.2     joerg int	netbsd32_symlink(struct lwp *, void *, register_t *);
    549       1.1      manu 
    550       1.1      manu int	compat_43_netbsd32_lstat43(struct lwp *, void *, register_t *);
    551       1.1      manu 
    552       1.1      manu int	linux32_sys_readlink(struct lwp *, void *, register_t *);
    553       1.1      manu 
    554       1.1      manu int	linux32_sys_swapon(struct lwp *, void *, register_t *);
    555       1.1      manu 
    556       1.1      manu int	linux32_sys_reboot(struct lwp *, void *, register_t *);
    557       1.1      manu 
    558       1.1      manu int	linux32_sys_old_mmap(struct lwp *, void *, register_t *);
    559       1.1      manu 
    560       1.1      manu int	netbsd32_munmap(struct lwp *, void *, register_t *);
    561       1.1      manu 
    562       1.1      manu int	linux32_sys_truncate(struct lwp *, void *, register_t *);
    563       1.1      manu 
    564      1.17     njoly int	compat_43_netbsd32_oftruncate(struct lwp *, void *, register_t *);
    565       1.1      manu 
    566  1.17.6.3  jmcneill int	netbsd32_fchmod(struct lwp *, void *, register_t *);
    567       1.1      manu 
    568       1.1      manu int	linux32_sys_fchown16(struct lwp *, void *, register_t *);
    569       1.1      manu 
    570       1.4      manu int	linux32_sys_getpriority(struct lwp *, void *, register_t *);
    571       1.1      manu 
    572       1.4      manu int	linux32_sys_setpriority(struct lwp *, void *, register_t *);
    573       1.1      manu 
    574      1.16     njoly int	linux32_sys_statfs(struct lwp *, void *, register_t *);
    575      1.16     njoly 
    576       1.1      manu int	linux32_sys_socketcall(struct lwp *, void *, register_t *);
    577       1.1      manu 
    578       1.1      manu int	netbsd32_setitimer(struct lwp *, void *, register_t *);
    579       1.1      manu 
    580       1.1      manu int	netbsd32_getitimer(struct lwp *, void *, register_t *);
    581       1.1      manu 
    582       1.1      manu int	linux32_sys_wait4(struct lwp *, void *, register_t *);
    583       1.1      manu 
    584       1.1      manu int	linux32_sys_swapoff(struct lwp *, void *, register_t *);
    585       1.1      manu 
    586      1.10      manu int	linux32_sys_sysinfo(struct lwp *, void *, register_t *);
    587      1.10      manu 
    588  1.17.6.3  jmcneill int	netbsd32_fsync(struct lwp *, void *, register_t *);
    589       1.1      manu 
    590       1.1      manu int	linux32_sys_sigreturn(struct lwp *, void *, register_t *);
    591       1.1      manu 
    592       1.1      manu int	linux32_sys_clone(struct lwp *, void *, register_t *);
    593       1.1      manu 
    594       1.1      manu int	linux32_sys_uname(struct lwp *, void *, register_t *);
    595       1.1      manu 
    596       1.1      manu int	linux32_sys_mprotect(struct lwp *, void *, register_t *);
    597       1.1      manu 
    598  1.17.6.3  jmcneill int	netbsd32_fchdir(struct lwp *, void *, register_t *);
    599       1.1      manu 
    600  1.17.6.4     joerg int	linux32_sys_setfsuid(struct lwp *, void *, register_t *);
    601      1.13     njoly 
    602      1.13     njoly int	linux_sys_getfsuid(struct lwp *, void *, register_t *);
    603      1.13     njoly 
    604       1.1      manu int	linux32_sys_llseek(struct lwp *, void *, register_t *);
    605       1.1      manu 
    606       1.1      manu int	linux32_sys_getdents(struct lwp *, void *, register_t *);
    607       1.1      manu 
    608       1.1      manu int	linux32_sys_select(struct lwp *, void *, register_t *);
    609       1.1      manu 
    610  1.17.6.3  jmcneill int	netbsd32_flock(struct lwp *, void *, register_t *);
    611       1.1      manu 
    612       1.1      manu int	netbsd32_readv(struct lwp *, void *, register_t *);
    613       1.1      manu 
    614       1.1      manu int	netbsd32_writev(struct lwp *, void *, register_t *);
    615       1.1      manu 
    616  1.17.6.3  jmcneill int	netbsd32_getsid(struct lwp *, void *, register_t *);
    617       1.1      manu 
    618  1.17.6.4     joerg int	linux32_sys_fdatasync(struct lwp *, void *, register_t *);
    619       1.9      manu 
    620       1.1      manu int	linux32_sys___sysctl(struct lwp *, void *, register_t *);
    621       1.1      manu 
    622  1.17.6.3  jmcneill int	netbsd32_mlockall(struct lwp *, void *, register_t *);
    623       1.1      manu 
    624       1.1      manu int	sys_munlockall(struct lwp *, void *, register_t *);
    625       1.1      manu 
    626      1.10      manu int	linux32_sys_sched_getparam(struct lwp *, void *, register_t *);
    627      1.10      manu 
    628       1.1      manu int	linux32_sys_sched_setscheduler(struct lwp *, void *, register_t *);
    629       1.1      manu 
    630  1.17.6.4     joerg int	linux32_sys_sched_getscheduler(struct lwp *, void *, register_t *);
    631      1.10      manu 
    632      1.13     njoly int	linux_sys_sched_yield(struct lwp *, void *, register_t *);
    633      1.13     njoly 
    634       1.1      manu int	netbsd32_nanosleep(struct lwp *, void *, register_t *);
    635       1.1      manu 
    636      1.10      manu int	linux32_sys_mremap(struct lwp *, void *, register_t *);
    637      1.10      manu 
    638  1.17.6.4     joerg int	linux32_sys_setresuid16(struct lwp *, void *, register_t *);
    639       1.1      manu 
    640       1.1      manu int	netbsd32_poll(struct lwp *, void *, register_t *);
    641       1.1      manu 
    642  1.17.6.4     joerg int	linux32_sys_setresgid16(struct lwp *, void *, register_t *);
    643       1.1      manu 
    644       1.1      manu int	linux32_sys_rt_sigreturn(struct lwp *, void *, register_t *);
    645       1.1      manu 
    646       1.1      manu int	linux32_sys_rt_sigaction(struct lwp *, void *, register_t *);
    647       1.1      manu 
    648       1.1      manu int	linux32_sys_rt_sigprocmask(struct lwp *, void *, register_t *);
    649       1.1      manu 
    650       1.1      manu int	linux32_sys_rt_sigsuspend(struct lwp *, void *, register_t *);
    651       1.1      manu 
    652  1.17.6.1     joerg int	linux32_sys_chown16(struct lwp *, void *, register_t *);
    653  1.17.6.1     joerg 
    654       1.2      manu int	netbsd32___getcwd(struct lwp *, void *, register_t *);
    655       1.2      manu 
    656       1.1      manu int	sys___vfork14(struct lwp *, void *, register_t *);
    657       1.1      manu 
    658       1.1      manu int	linux32_sys_ugetrlimit(struct lwp *, void *, register_t *);
    659       1.1      manu 
    660      1.10      manu int	linux32_sys_mmap2(struct lwp *, void *, register_t *);
    661      1.10      manu 
    662       1.1      manu int	linux32_sys_stat64(struct lwp *, void *, register_t *);
    663       1.1      manu 
    664       1.1      manu int	linux32_sys_lstat64(struct lwp *, void *, register_t *);
    665       1.1      manu 
    666       1.1      manu int	linux32_sys_fstat64(struct lwp *, void *, register_t *);
    667       1.1      manu 
    668  1.17.6.1     joerg int	netbsd32___posix_lchown(struct lwp *, void *, register_t *);
    669  1.17.6.1     joerg 
    670  1.17.6.3  jmcneill int	netbsd32_setreuid(struct lwp *, void *, register_t *);
    671       1.1      manu 
    672  1.17.6.3  jmcneill int	netbsd32_setregid(struct lwp *, void *, register_t *);
    673       1.1      manu 
    674       1.3      manu int	netbsd32_getgroups(struct lwp *, void *, register_t *);
    675       1.3      manu 
    676       1.3      manu int	netbsd32_setgroups(struct lwp *, void *, register_t *);
    677       1.3      manu 
    678  1.17.6.3  jmcneill int	netbsd32___posix_fchown(struct lwp *, void *, register_t *);
    679       1.1      manu 
    680       1.8      manu int	linux32_sys_setresuid(struct lwp *, void *, register_t *);
    681       1.1      manu 
    682       1.8      manu int	linux32_sys_setresgid(struct lwp *, void *, register_t *);
    683       1.1      manu 
    684  1.17.6.1     joerg int	netbsd32___posix_chown(struct lwp *, void *, register_t *);
    685  1.17.6.1     joerg 
    686      1.10      manu int	netbsd32_madvise(struct lwp *, void *, register_t *);
    687      1.10      manu 
    688       1.1      manu int	linux32_sys_getdents64(struct lwp *, void *, register_t *);
    689       1.1      manu 
    690       1.1      manu int	linux32_sys_fcntl64(struct lwp *, void *, register_t *);
    691       1.1      manu 
    692       1.4      manu int	linux_sys_gettid(struct lwp *, void *, register_t *);
    693       1.4      manu 
    694  1.17.6.4     joerg int	linux32_sys_exit_group(struct lwp *, void *, register_t *);
    695       1.1      manu 
    696       1.1      manu #endif /* _LINUX32_SYS_SYSCALLARGS_H_ */
    697