Home | History | Annotate | Line # | Download | only in sunos32
sunos32_syscallargs.h revision 1.17
      1  1.17     pavel /* $NetBSD: sunos32_syscallargs.h,v 1.17 2006/07/13 23:40:55 pavel Exp $ */
      2   1.1       mrg 
      3   1.1       mrg /*
      4   1.1       mrg  * System call argument lists.
      5   1.1       mrg  *
      6   1.1       mrg  * DO NOT EDIT-- this file is automatically generated.
      7  1.17     pavel  * created from;	NetBSD: syscalls.master,v 1.13 2006/07/13 23:38:57 pavel Exp
      8   1.1       mrg  */
      9   1.1       mrg 
     10  1.17     pavel #ifndef _SUNOS32_SYS_SYSCALLARGS_H_
     11  1.17     pavel #define	_SUNOS32_SYS_SYSCALLARGS_H_
     12   1.1       mrg 
     13   1.1       mrg #ifdef	syscallarg
     14   1.1       mrg #undef	syscallarg
     15   1.1       mrg #endif
     16   1.1       mrg 
     17   1.1       mrg #define	syscallarg(x)							\
     18   1.1       mrg 	union {								\
     19   1.1       mrg 		register32_t pad;						\
     20   1.1       mrg 		struct { x datum; } le;					\
     21   1.6     lukem 		struct { /* LINTED zero array dimension */		\
     22   1.6     lukem 			int8_t pad[  /* CONSTCOND */			\
     23   1.6     lukem 				(sizeof (register32_t) < sizeof (x))	\
     24   1.1       mrg 				? 0					\
     25   1.1       mrg 				: sizeof (register32_t) - sizeof (x)];	\
     26   1.1       mrg 			x datum;					\
     27   1.1       mrg 		} be;							\
     28   1.1       mrg 	}
     29   1.1       mrg 
     30   1.1       mrg struct sunos32_sys_open_args {
     31   1.1       mrg 	syscallarg(const netbsd32_charp) path;
     32   1.1       mrg 	syscallarg(int) flags;
     33   1.1       mrg 	syscallarg(int) mode;
     34   1.1       mrg };
     35   1.1       mrg 
     36   1.1       mrg struct sunos32_sys_wait4_args {
     37   1.1       mrg 	syscallarg(int) pid;
     38   1.1       mrg 	syscallarg(netbsd32_intp) status;
     39   1.1       mrg 	syscallarg(int) options;
     40   1.1       mrg 	syscallarg(netbsd32_rusagep_t) rusage;
     41   1.1       mrg };
     42   1.1       mrg 
     43   1.1       mrg struct sunos32_sys_creat_args {
     44   1.1       mrg 	syscallarg(const netbsd32_charp) path;
     45   1.1       mrg 	syscallarg(int) mode;
     46   1.1       mrg };
     47   1.1       mrg 
     48   1.1       mrg struct sunos32_sys_execv_args {
     49   1.1       mrg 	syscallarg(const netbsd32_charp) path;
     50   1.1       mrg 	syscallarg(netbsd32_charpp) argp;
     51   1.1       mrg };
     52   1.1       mrg 
     53   1.1       mrg struct sunos32_sys_mknod_args {
     54   1.1       mrg 	syscallarg(const netbsd32_charp) path;
     55   1.1       mrg 	syscallarg(int) mode;
     56   1.1       mrg 	syscallarg(int) dev;
     57   1.1       mrg };
     58   1.1       mrg 
     59   1.1       mrg struct sunos32_sys_stime_args {
     60   1.1       mrg 	syscallarg(sunos32_time_tp) tp;
     61   1.1       mrg };
     62   1.1       mrg 
     63   1.1       mrg struct sunos32_sys_ptrace_args {
     64   1.1       mrg 	syscallarg(int) req;
     65   1.1       mrg 	syscallarg(pid_t) pid;
     66   1.1       mrg 	syscallarg(netbsd32_caddr_t) addr;
     67   1.1       mrg 	syscallarg(int) data;
     68   1.1       mrg 	syscallarg(netbsd32_charp) addr2;
     69   1.1       mrg };
     70   1.1       mrg 
     71   1.1       mrg struct sunos32_sys_access_args {
     72   1.1       mrg 	syscallarg(const netbsd32_charp) path;
     73   1.1       mrg 	syscallarg(int) flags;
     74   1.1       mrg };
     75   1.1       mrg 
     76   1.1       mrg struct sunos32_sys_stat_args {
     77   1.1       mrg 	syscallarg(const netbsd32_charp) path;
     78   1.1       mrg 	syscallarg(netbsd32_stat43p_t) ub;
     79   1.1       mrg };
     80   1.1       mrg 
     81   1.1       mrg struct sunos32_sys_lstat_args {
     82   1.1       mrg 	syscallarg(const netbsd32_charp) path;
     83   1.1       mrg 	syscallarg(netbsd32_stat43p_t) ub;
     84   1.1       mrg };
     85   1.1       mrg 
     86   1.1       mrg struct sunos32_sys_mctl_args {
     87   1.1       mrg 	syscallarg(netbsd32_voidp) addr;
     88   1.1       mrg 	syscallarg(int) len;
     89   1.1       mrg 	syscallarg(int) func;
     90   1.1       mrg 	syscallarg(netbsd32_voidp) arg;
     91   1.1       mrg };
     92   1.1       mrg 
     93   1.1       mrg struct sunos32_sys_ioctl_args {
     94   1.1       mrg 	syscallarg(int) fd;
     95   1.1       mrg 	syscallarg(netbsd32_u_long) com;
     96   1.1       mrg 	syscallarg(netbsd32_caddr_t) data;
     97   1.1       mrg };
     98   1.1       mrg 
     99   1.1       mrg struct sunos32_sys_reboot_args {
    100   1.1       mrg 	syscallarg(int) howto;
    101   1.1       mrg 	syscallarg(netbsd32_charp) bootstr;
    102   1.1       mrg };
    103   1.1       mrg 
    104   1.1       mrg struct sunos32_sys_execve_args {
    105   1.1       mrg 	syscallarg(const netbsd32_charp) path;
    106   1.1       mrg 	syscallarg(netbsd32_charpp) argp;
    107   1.1       mrg 	syscallarg(netbsd32_charpp) envp;
    108   1.1       mrg };
    109   1.1       mrg 
    110   1.1       mrg struct sunos32_sys_omsync_args {
    111   1.1       mrg 	syscallarg(netbsd32_caddr_t) addr;
    112   1.1       mrg 	syscallarg(netbsd32_size_t) len;
    113   1.1       mrg 	syscallarg(int) flags;
    114   1.1       mrg };
    115   1.1       mrg 
    116   1.1       mrg struct sunos32_sys_mmap_args {
    117   1.1       mrg 	syscallarg(netbsd32_voidp) addr;
    118   1.1       mrg 	syscallarg(netbsd32_size_t) len;
    119   1.1       mrg 	syscallarg(int) prot;
    120   1.1       mrg 	syscallarg(int) flags;
    121   1.1       mrg 	syscallarg(int) fd;
    122   1.2       mrg 	syscallarg(netbsd32_long) pos;
    123   1.1       mrg };
    124   1.1       mrg 
    125   1.1       mrg struct sunos32_sys_setpgrp_args {
    126   1.1       mrg 	syscallarg(int) pid;
    127   1.1       mrg 	syscallarg(int) pgid;
    128   1.1       mrg };
    129   1.1       mrg 
    130   1.1       mrg struct sunos32_sys_fcntl_args {
    131   1.1       mrg 	syscallarg(int) fd;
    132   1.1       mrg 	syscallarg(int) cmd;
    133   1.1       mrg 	syscallarg(netbsd32_voidp) arg;
    134   1.1       mrg };
    135   1.1       mrg 
    136   1.8       mrg struct sunos32_sys_socket_args {
    137   1.8       mrg 	syscallarg(int) domain;
    138   1.8       mrg 	syscallarg(int) type;
    139   1.8       mrg 	syscallarg(int) protocol;
    140   1.8       mrg };
    141   1.8       mrg 
    142   1.1       mrg struct sunos32_sys_setsockopt_args {
    143   1.1       mrg 	syscallarg(int) s;
    144   1.1       mrg 	syscallarg(int) level;
    145   1.1       mrg 	syscallarg(int) name;
    146   1.1       mrg 	syscallarg(netbsd32_caddr_t) val;
    147   1.1       mrg 	syscallarg(int) valsize;
    148   1.1       mrg };
    149   1.1       mrg 
    150   1.1       mrg struct sunos32_sys_sigvec_args {
    151   1.1       mrg 	syscallarg(int) signum;
    152   1.1       mrg 	syscallarg(netbsd32_sigvecp_t) nsv;
    153   1.1       mrg 	syscallarg(netbsd32_sigvecp_t) osv;
    154   1.1       mrg };
    155   1.1       mrg 
    156   1.1       mrg struct sunos32_sys_sigsuspend_args {
    157   1.1       mrg 	syscallarg(int) mask;
    158   1.8       mrg };
    159   1.8       mrg 
    160   1.8       mrg struct sunos32_sys_socketpair_args {
    161   1.8       mrg 	syscallarg(int) domain;
    162   1.8       mrg 	syscallarg(int) type;
    163   1.8       mrg 	syscallarg(int) protocol;
    164   1.8       mrg 	syscallarg(netbsd32_intp) rsv;
    165   1.1       mrg };
    166   1.1       mrg 
    167   1.3       mrg struct sunos32_sys_sigreturn_args {
    168   1.3       mrg 	syscallarg(netbsd32_sigcontextp_t) sigcntxp;
    169   1.3       mrg };
    170   1.3       mrg 
    171   1.1       mrg struct sunos32_sys_getrlimit_args {
    172   1.1       mrg 	syscallarg(u_int) which;
    173   1.1       mrg 	syscallarg(netbsd32_orlimitp_t) rlp;
    174   1.1       mrg };
    175   1.1       mrg 
    176   1.1       mrg struct sunos32_sys_setrlimit_args {
    177   1.1       mrg 	syscallarg(u_int) which;
    178   1.1       mrg 	syscallarg(netbsd32_orlimitp_t) rlp;
    179   1.1       mrg };
    180  1.12  christos #ifdef NFSSERVER
    181   1.1       mrg 
    182   1.1       mrg struct sunos32_sys_nfssvc_args {
    183   1.1       mrg 	syscallarg(int) fd;
    184   1.1       mrg };
    185  1.12  christos #else
    186  1.12  christos #endif
    187   1.1       mrg 
    188   1.1       mrg struct sunos32_sys_statfs_args {
    189   1.1       mrg 	syscallarg(const netbsd32_charp) path;
    190   1.1       mrg 	syscallarg(sunos32_statfsp_t) buf;
    191   1.1       mrg };
    192   1.1       mrg 
    193   1.1       mrg struct sunos32_sys_fstatfs_args {
    194   1.1       mrg 	syscallarg(int) fd;
    195   1.1       mrg 	syscallarg(sunos32_statfsp_t) buf;
    196   1.1       mrg };
    197   1.1       mrg 
    198   1.1       mrg struct sunos32_sys_unmount_args {
    199   1.1       mrg 	syscallarg(netbsd32_charp) path;
    200   1.1       mrg };
    201  1.12  christos #ifdef NFS
    202  1.12  christos #else
    203  1.12  christos #endif
    204   1.1       mrg 
    205   1.1       mrg struct sunos32_sys_quotactl_args {
    206   1.1       mrg 	syscallarg(int) cmd;
    207   1.1       mrg 	syscallarg(netbsd32_charp) special;
    208   1.1       mrg 	syscallarg(int) uid;
    209   1.1       mrg 	syscallarg(netbsd32_caddr_t) addr;
    210   1.1       mrg };
    211   1.1       mrg 
    212   1.1       mrg struct sunos32_sys_exportfs_args {
    213   1.1       mrg 	syscallarg(netbsd32_charp) path;
    214   1.1       mrg 	syscallarg(netbsd32_charp) ex;
    215   1.1       mrg };
    216   1.1       mrg 
    217   1.1       mrg struct sunos32_sys_mount_args {
    218   1.1       mrg 	syscallarg(netbsd32_charp) type;
    219   1.1       mrg 	syscallarg(netbsd32_charp) path;
    220   1.1       mrg 	syscallarg(int) flags;
    221   1.1       mrg 	syscallarg(netbsd32_caddr_t) data;
    222   1.1       mrg };
    223   1.1       mrg 
    224   1.1       mrg struct sunos32_sys_ustat_args {
    225   1.1       mrg 	syscallarg(int) dev;
    226   1.1       mrg 	syscallarg(sunos32_ustatp_t) buf;
    227   1.1       mrg };
    228  1.12  christos #ifdef SYSVSEM
    229  1.12  christos #else
    230  1.12  christos #endif
    231  1.12  christos #ifdef SYSVMSG
    232  1.12  christos #else
    233  1.12  christos #endif
    234  1.12  christos #ifdef SYSVSHM
    235  1.12  christos #else
    236  1.12  christos #endif
    237   1.1       mrg 
    238   1.1       mrg struct sunos32_sys_auditsys_args {
    239   1.1       mrg 	syscallarg(netbsd32_charp) record;
    240   1.1       mrg };
    241   1.1       mrg 
    242   1.1       mrg struct sunos32_sys_getdents_args {
    243   1.1       mrg 	syscallarg(int) fd;
    244   1.1       mrg 	syscallarg(netbsd32_charp) buf;
    245   1.1       mrg 	syscallarg(int) nbytes;
    246   1.1       mrg };
    247   1.1       mrg 
    248   1.1       mrg struct sunos32_sys_sigpending_args {
    249   1.1       mrg 	syscallarg(netbsd32_intp) mask;
    250   1.1       mrg };
    251   1.1       mrg 
    252   1.1       mrg struct sunos32_sys_sysconf_args {
    253   1.1       mrg 	syscallarg(int) name;
    254   1.1       mrg };
    255   1.1       mrg 
    256   1.1       mrg struct sunos32_sys_uname_args {
    257   1.1       mrg 	syscallarg(sunos32_utsnamep_t) name;
    258   1.1       mrg };
    259   1.1       mrg 
    260   1.1       mrg /*
    261   1.1       mrg  * System call prototypes.
    262   1.1       mrg  */
    263   1.1       mrg 
    264  1.10   thorpej int	sys_nosys(struct lwp *, void *, register_t *);
    265  1.12  christos 
    266  1.10   thorpej int	netbsd32_exit(struct lwp *, void *, register_t *);
    267  1.12  christos 
    268  1.10   thorpej int	sys_fork(struct lwp *, void *, register_t *);
    269  1.12  christos 
    270  1.10   thorpej int	netbsd32_read(struct lwp *, void *, register_t *);
    271  1.12  christos 
    272  1.10   thorpej int	netbsd32_write(struct lwp *, void *, register_t *);
    273  1.12  christos 
    274  1.10   thorpej int	sunos32_sys_open(struct lwp *, void *, register_t *);
    275  1.12  christos 
    276  1.10   thorpej int	netbsd32_close(struct lwp *, void *, register_t *);
    277  1.12  christos 
    278  1.10   thorpej int	sunos32_sys_wait4(struct lwp *, void *, register_t *);
    279  1.12  christos 
    280  1.10   thorpej int	sunos32_sys_creat(struct lwp *, void *, register_t *);
    281  1.12  christos 
    282  1.10   thorpej int	netbsd32_link(struct lwp *, void *, register_t *);
    283  1.12  christos 
    284  1.10   thorpej int	netbsd32_unlink(struct lwp *, void *, register_t *);
    285  1.12  christos 
    286  1.10   thorpej int	sunos32_sys_execv(struct lwp *, void *, register_t *);
    287  1.12  christos 
    288  1.10   thorpej int	netbsd32_chdir(struct lwp *, void *, register_t *);
    289  1.12  christos 
    290  1.10   thorpej int	sunos32_sys_mknod(struct lwp *, void *, register_t *);
    291  1.12  christos 
    292  1.10   thorpej int	netbsd32_chmod(struct lwp *, void *, register_t *);
    293  1.12  christos 
    294  1.10   thorpej int	netbsd32_chown(struct lwp *, void *, register_t *);
    295  1.12  christos 
    296  1.10   thorpej int	netbsd32_break(struct lwp *, void *, register_t *);
    297  1.12  christos 
    298  1.10   thorpej int	compat_43_netbsd32_olseek(struct lwp *, void *, register_t *);
    299  1.12  christos 
    300  1.10   thorpej int	sys_getpid_with_ppid(struct lwp *, void *, register_t *);
    301  1.12  christos 
    302  1.10   thorpej int	netbsd32_setuid(struct lwp *, void *, register_t *);
    303  1.12  christos 
    304  1.10   thorpej int	sys_getuid_with_euid(struct lwp *, void *, register_t *);
    305  1.12  christos 
    306  1.10   thorpej int	sunos32_sys_stime(struct lwp *, void *, register_t *);
    307  1.12  christos 
    308  1.10   thorpej int	sunos32_sys_ptrace(struct lwp *, void *, register_t *);
    309  1.12  christos 
    310  1.10   thorpej int	sunos32_sys_access(struct lwp *, void *, register_t *);
    311  1.12  christos 
    312  1.10   thorpej int	sys_sync(struct lwp *, void *, register_t *);
    313  1.12  christos 
    314  1.10   thorpej int	netbsd32_kill(struct lwp *, void *, register_t *);
    315  1.12  christos 
    316  1.10   thorpej int	sunos32_sys_stat(struct lwp *, void *, register_t *);
    317  1.12  christos 
    318  1.10   thorpej int	sunos32_sys_lstat(struct lwp *, void *, register_t *);
    319  1.12  christos 
    320  1.10   thorpej int	netbsd32_dup(struct lwp *, void *, register_t *);
    321  1.12  christos 
    322  1.10   thorpej int	sys_pipe(struct lwp *, void *, register_t *);
    323  1.12  christos 
    324  1.10   thorpej int	netbsd32_profil(struct lwp *, void *, register_t *);
    325  1.12  christos 
    326  1.10   thorpej int	netbsd32_setgid(struct lwp *, void *, register_t *);
    327  1.12  christos 
    328  1.10   thorpej int	sys_getgid_with_egid(struct lwp *, void *, register_t *);
    329  1.12  christos 
    330  1.10   thorpej int	netbsd32_acct(struct lwp *, void *, register_t *);
    331  1.12  christos 
    332  1.10   thorpej int	sunos32_sys_mctl(struct lwp *, void *, register_t *);
    333  1.12  christos 
    334  1.10   thorpej int	sunos32_sys_ioctl(struct lwp *, void *, register_t *);
    335  1.12  christos 
    336  1.10   thorpej int	sunos32_sys_reboot(struct lwp *, void *, register_t *);
    337  1.12  christos 
    338  1.10   thorpej int	netbsd32_symlink(struct lwp *, void *, register_t *);
    339  1.12  christos 
    340  1.10   thorpej int	netbsd32_readlink(struct lwp *, void *, register_t *);
    341  1.12  christos 
    342  1.10   thorpej int	sunos32_sys_execve(struct lwp *, void *, register_t *);
    343  1.12  christos 
    344  1.10   thorpej int	netbsd32_umask(struct lwp *, void *, register_t *);
    345  1.12  christos 
    346  1.10   thorpej int	netbsd32_chroot(struct lwp *, void *, register_t *);
    347  1.12  christos 
    348  1.10   thorpej int	compat_43_netbsd32_fstat43(struct lwp *, void *, register_t *);
    349  1.12  christos 
    350  1.10   thorpej int	compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
    351  1.12  christos 
    352  1.10   thorpej int	sunos32_sys_omsync(struct lwp *, void *, register_t *);
    353  1.12  christos 
    354  1.10   thorpej int	sys_vfork(struct lwp *, void *, register_t *);
    355  1.12  christos 
    356  1.10   thorpej int	netbsd32_sbrk(struct lwp *, void *, register_t *);
    357  1.12  christos 
    358  1.10   thorpej int	netbsd32_sstk(struct lwp *, void *, register_t *);
    359  1.12  christos 
    360  1.10   thorpej int	sunos32_sys_mmap(struct lwp *, void *, register_t *);
    361  1.12  christos 
    362  1.10   thorpej int	netbsd32_ovadvise(struct lwp *, void *, register_t *);
    363  1.12  christos 
    364  1.10   thorpej int	netbsd32_munmap(struct lwp *, void *, register_t *);
    365  1.12  christos 
    366  1.10   thorpej int	netbsd32_mprotect(struct lwp *, void *, register_t *);
    367  1.12  christos 
    368  1.10   thorpej int	netbsd32_madvise(struct lwp *, void *, register_t *);
    369  1.12  christos 
    370  1.10   thorpej int	sunos32_sys_vhangup(struct lwp *, void *, register_t *);
    371  1.12  christos 
    372  1.10   thorpej int	netbsd32_mincore(struct lwp *, void *, register_t *);
    373  1.12  christos 
    374  1.10   thorpej int	netbsd32_getgroups(struct lwp *, void *, register_t *);
    375  1.12  christos 
    376  1.10   thorpej int	netbsd32_setgroups(struct lwp *, void *, register_t *);
    377  1.12  christos 
    378  1.10   thorpej int	sys_getpgrp(struct lwp *, void *, register_t *);
    379  1.12  christos 
    380  1.10   thorpej int	sunos32_sys_setpgrp(struct lwp *, void *, register_t *);
    381  1.12  christos 
    382  1.10   thorpej int	netbsd32_setitimer(struct lwp *, void *, register_t *);
    383  1.12  christos 
    384  1.10   thorpej int	compat_12_netbsd32_oswapon(struct lwp *, void *, register_t *);
    385  1.12  christos 
    386  1.10   thorpej int	netbsd32_getitimer(struct lwp *, void *, register_t *);
    387  1.12  christos 
    388  1.10   thorpej int	compat_43_netbsd32_ogethostname(struct lwp *, void *, register_t *);
    389  1.12  christos 
    390  1.10   thorpej int	compat_43_netbsd32_osethostname(struct lwp *, void *, register_t *);
    391  1.12  christos 
    392  1.10   thorpej int	compat_43_sys_getdtablesize(struct lwp *, void *, register_t *);
    393  1.12  christos 
    394  1.10   thorpej int	netbsd32_dup2(struct lwp *, void *, register_t *);
    395  1.12  christos 
    396  1.10   thorpej int	sunos32_sys_fcntl(struct lwp *, void *, register_t *);
    397  1.12  christos 
    398  1.10   thorpej int	netbsd32_select(struct lwp *, void *, register_t *);
    399  1.12  christos 
    400  1.10   thorpej int	netbsd32_fsync(struct lwp *, void *, register_t *);
    401  1.12  christos 
    402  1.10   thorpej int	netbsd32_setpriority(struct lwp *, void *, register_t *);
    403  1.12  christos 
    404  1.10   thorpej int	sunos32_sys_socket(struct lwp *, void *, register_t *);
    405  1.12  christos 
    406  1.10   thorpej int	netbsd32_connect(struct lwp *, void *, register_t *);
    407  1.12  christos 
    408  1.10   thorpej int	compat_43_netbsd32_oaccept(struct lwp *, void *, register_t *);
    409  1.12  christos 
    410  1.10   thorpej int	netbsd32_getpriority(struct lwp *, void *, register_t *);
    411  1.12  christos 
    412  1.10   thorpej int	compat_43_netbsd32_osend(struct lwp *, void *, register_t *);
    413  1.12  christos 
    414  1.10   thorpej int	compat_43_netbsd32_orecv(struct lwp *, void *, register_t *);
    415  1.12  christos 
    416  1.10   thorpej int	netbsd32_bind(struct lwp *, void *, register_t *);
    417  1.12  christos 
    418  1.10   thorpej int	sunos32_sys_setsockopt(struct lwp *, void *, register_t *);
    419  1.12  christos 
    420  1.10   thorpej int	netbsd32_listen(struct lwp *, void *, register_t *);
    421  1.12  christos 
    422  1.10   thorpej int	sunos32_sys_sigvec(struct lwp *, void *, register_t *);
    423  1.12  christos 
    424  1.10   thorpej int	compat_43_netbsd32_sigblock(struct lwp *, void *, register_t *);
    425  1.12  christos 
    426  1.10   thorpej int	compat_43_netbsd32_sigsetmask(struct lwp *, void *, register_t *);
    427  1.12  christos 
    428  1.10   thorpej int	sunos32_sys_sigsuspend(struct lwp *, void *, register_t *);
    429  1.12  christos 
    430  1.10   thorpej int	compat_43_netbsd32_osigstack(struct lwp *, void *, register_t *);
    431  1.12  christos 
    432  1.10   thorpej int	compat_43_netbsd32_orecvmsg(struct lwp *, void *, register_t *);
    433  1.12  christos 
    434  1.10   thorpej int	compat_43_netbsd32_osendmsg(struct lwp *, void *, register_t *);
    435  1.12  christos 
    436  1.10   thorpej int	netbsd32_gettimeofday(struct lwp *, void *, register_t *);
    437  1.12  christos 
    438  1.10   thorpej int	netbsd32_getrusage(struct lwp *, void *, register_t *);
    439  1.12  christos 
    440  1.10   thorpej int	netbsd32_getsockopt(struct lwp *, void *, register_t *);
    441  1.12  christos 
    442  1.10   thorpej int	netbsd32_readv(struct lwp *, void *, register_t *);
    443  1.12  christos 
    444  1.10   thorpej int	netbsd32_writev(struct lwp *, void *, register_t *);
    445  1.12  christos 
    446  1.10   thorpej int	netbsd32_settimeofday(struct lwp *, void *, register_t *);
    447  1.12  christos 
    448  1.10   thorpej int	netbsd32_fchown(struct lwp *, void *, register_t *);
    449  1.12  christos 
    450  1.10   thorpej int	netbsd32_fchmod(struct lwp *, void *, register_t *);
    451  1.12  christos 
    452  1.10   thorpej int	compat_43_netbsd32_orecvfrom(struct lwp *, void *, register_t *);
    453  1.12  christos 
    454  1.10   thorpej int	netbsd32_setreuid(struct lwp *, void *, register_t *);
    455  1.12  christos 
    456  1.10   thorpej int	netbsd32_setregid(struct lwp *, void *, register_t *);
    457  1.12  christos 
    458  1.10   thorpej int	netbsd32_rename(struct lwp *, void *, register_t *);
    459  1.12  christos 
    460  1.10   thorpej int	compat_43_netbsd32_otruncate(struct lwp *, void *, register_t *);
    461  1.12  christos 
    462  1.10   thorpej int	compat_43_netbsd32_oftruncate(struct lwp *, void *, register_t *);
    463  1.12  christos 
    464  1.10   thorpej int	netbsd32_flock(struct lwp *, void *, register_t *);
    465  1.12  christos 
    466  1.10   thorpej int	netbsd32_sendto(struct lwp *, void *, register_t *);
    467  1.12  christos 
    468  1.10   thorpej int	netbsd32_shutdown(struct lwp *, void *, register_t *);
    469  1.12  christos 
    470  1.10   thorpej int	sunos32_sys_socketpair(struct lwp *, void *, register_t *);
    471  1.12  christos 
    472  1.10   thorpej int	netbsd32_mkdir(struct lwp *, void *, register_t *);
    473  1.12  christos 
    474  1.10   thorpej int	netbsd32_rmdir(struct lwp *, void *, register_t *);
    475  1.12  christos 
    476  1.10   thorpej int	netbsd32_utimes(struct lwp *, void *, register_t *);
    477  1.12  christos 
    478  1.10   thorpej int	sunos32_sys_sigreturn(struct lwp *, void *, register_t *);
    479  1.12  christos 
    480  1.10   thorpej int	netbsd32_adjtime(struct lwp *, void *, register_t *);
    481  1.12  christos 
    482  1.10   thorpej int	compat_43_netbsd32_ogetpeername(struct lwp *, void *, register_t *);
    483  1.12  christos 
    484  1.10   thorpej int	compat_43_sys_gethostid(struct lwp *, void *, register_t *);
    485  1.12  christos 
    486  1.10   thorpej int	sunos32_sys_getrlimit(struct lwp *, void *, register_t *);
    487  1.12  christos 
    488  1.10   thorpej int	sunos32_sys_setrlimit(struct lwp *, void *, register_t *);
    489  1.12  christos 
    490  1.10   thorpej int	compat_43_netbsd32_killpg(struct lwp *, void *, register_t *);
    491  1.12  christos 
    492  1.10   thorpej int	compat_43_netbsd32_ogetsockname(struct lwp *, void *, register_t *);
    493  1.12  christos 
    494  1.10   thorpej int	netbsd32_poll(struct lwp *, void *, register_t *);
    495  1.12  christos 
    496   1.1       mrg #ifdef NFSSERVER
    497  1.10   thorpej int	sunos32_sys_nfssvc(struct lwp *, void *, register_t *);
    498  1.12  christos 
    499   1.1       mrg #else
    500   1.1       mrg #endif
    501  1.10   thorpej int	compat_43_netbsd32_ogetdirentries(struct lwp *, void *, register_t *);
    502  1.12  christos 
    503  1.10   thorpej int	sunos32_sys_statfs(struct lwp *, void *, register_t *);
    504  1.12  christos 
    505  1.10   thorpej int	sunos32_sys_fstatfs(struct lwp *, void *, register_t *);
    506  1.12  christos 
    507  1.10   thorpej int	sunos32_sys_unmount(struct lwp *, void *, register_t *);
    508  1.12  christos 
    509   1.1       mrg #ifdef NFS
    510  1.10   thorpej int	async_daemon(struct lwp *, void *, register_t *);
    511  1.12  christos 
    512  1.17     pavel int	compat_30_sys_getfh(struct lwp *, void *, register_t *);
    513  1.12  christos 
    514   1.1       mrg #else
    515   1.1       mrg #endif
    516  1.10   thorpej int	compat_09_netbsd32_ogetdomainname(struct lwp *, void *, register_t *);
    517  1.12  christos 
    518  1.10   thorpej int	compat_09_netbsd32_osetdomainname(struct lwp *, void *, register_t *);
    519  1.12  christos 
    520  1.10   thorpej int	sunos32_sys_quotactl(struct lwp *, void *, register_t *);
    521  1.12  christos 
    522  1.10   thorpej int	sunos32_sys_exportfs(struct lwp *, void *, register_t *);
    523  1.12  christos 
    524  1.10   thorpej int	sunos32_sys_mount(struct lwp *, void *, register_t *);
    525  1.12  christos 
    526  1.10   thorpej int	sunos32_sys_ustat(struct lwp *, void *, register_t *);
    527  1.12  christos 
    528   1.1       mrg #ifdef SYSVSEM
    529  1.10   thorpej int	compat_10_netbsd32_sys_semsys(struct lwp *, void *, register_t *);
    530  1.12  christos 
    531   1.1       mrg #else
    532   1.1       mrg #endif
    533   1.1       mrg #ifdef SYSVMSG
    534  1.10   thorpej int	compat_10_netbsd32_sys_msgsys(struct lwp *, void *, register_t *);
    535  1.12  christos 
    536   1.1       mrg #else
    537   1.1       mrg #endif
    538   1.1       mrg #ifdef SYSVSHM
    539  1.10   thorpej int	compat_10_netbsd32_sys_shmsys(struct lwp *, void *, register_t *);
    540  1.12  christos 
    541   1.1       mrg #else
    542   1.1       mrg #endif
    543  1.10   thorpej int	sunos32_sys_auditsys(struct lwp *, void *, register_t *);
    544  1.12  christos 
    545  1.10   thorpej int	sunos32_sys_getdents(struct lwp *, void *, register_t *);
    546  1.12  christos 
    547  1.10   thorpej int	sys_setsid(struct lwp *, void *, register_t *);
    548  1.12  christos 
    549  1.10   thorpej int	netbsd32_fchdir(struct lwp *, void *, register_t *);
    550  1.12  christos 
    551  1.10   thorpej int	netbsd32_fchroot(struct lwp *, void *, register_t *);
    552  1.12  christos 
    553  1.10   thorpej int	sunos32_sys_sigpending(struct lwp *, void *, register_t *);
    554  1.12  christos 
    555  1.10   thorpej int	netbsd32_setpgid(struct lwp *, void *, register_t *);
    556  1.12  christos 
    557  1.10   thorpej int	netbsd32_pathconf(struct lwp *, void *, register_t *);
    558  1.12  christos 
    559  1.10   thorpej int	netbsd32_fpathconf(struct lwp *, void *, register_t *);
    560  1.12  christos 
    561  1.10   thorpej int	sunos32_sys_sysconf(struct lwp *, void *, register_t *);
    562  1.12  christos 
    563  1.10   thorpej int	sunos32_sys_uname(struct lwp *, void *, register_t *);
    564  1.12  christos 
    565  1.17     pavel #endif /* _SUNOS32_SYS_SYSCALLARGS_H_ */
    566