Home | History | Annotate | Line # | Download | only in ultrix
ultrix_syscallargs.h revision 1.47
      1  1.47  christos /* $NetBSD: ultrix_syscallargs.h,v 1.47 2007/03/04 06:01:39 christos Exp $ */
      2  1.19   thorpej 
      3   1.1      dean /*
      4   1.1      dean  * System call argument lists.
      5   1.1      dean  *
      6   1.1      dean  * DO NOT EDIT-- this file is automatically generated.
      7  1.46     pavel  * created from	NetBSD: syscalls.master,v 1.42 2006/07/13 23:47:17 pavel Exp
      8   1.1      dean  */
      9   1.1      dean 
     10  1.45       mrg #ifndef _ULTRIX_SYS_SYSCALLARGS_H_
     11  1.45       mrg #define	_ULTRIX_SYS_SYSCALLARGS_H_
     12  1.30  christos 
     13  1.27       eeh #ifdef	syscallarg
     14  1.27       eeh #undef	syscallarg
     15  1.27       eeh #endif
     16  1.27       eeh 
     17  1.33       cgd #define	syscallarg(x)							\
     18  1.33       cgd 	union {								\
     19  1.33       cgd 		register_t pad;						\
     20  1.33       cgd 		struct { x datum; } le;					\
     21  1.39     lukem 		struct { /* LINTED zero array dimension */		\
     22  1.39     lukem 			int8_t pad[  /* CONSTCOND */			\
     23  1.39     lukem 				(sizeof (register_t) < sizeof (x))	\
     24  1.33       cgd 				? 0					\
     25  1.33       cgd 				: sizeof (register_t) - sizeof (x)];	\
     26  1.33       cgd 			x datum;					\
     27  1.33       cgd 		} be;							\
     28  1.33       cgd 	}
     29   1.1      dean 
     30   1.6   mycroft struct ultrix_sys_open_args {
     31  1.30  christos 	syscallarg(const char *) path;
     32   1.1      dean 	syscallarg(int) flags;
     33   1.1      dean 	syscallarg(int) mode;
     34   1.1      dean };
     35   1.1      dean 
     36   1.9  jonathan struct ultrix_sys_creat_args {
     37  1.30  christos 	syscallarg(const char *) path;
     38   1.9  jonathan 	syscallarg(int) mode;
     39   1.9  jonathan };
     40   1.9  jonathan 
     41   1.6   mycroft struct ultrix_sys_execv_args {
     42  1.30  christos 	syscallarg(const char *) path;
     43   1.1      dean 	syscallarg(char **) argp;
     44   1.1      dean };
     45   1.1      dean 
     46   1.6   mycroft struct ultrix_sys_mknod_args {
     47  1.30  christos 	syscallarg(const char *) path;
     48   1.1      dean 	syscallarg(int) mode;
     49   1.1      dean 	syscallarg(int) dev;
     50   1.1      dean };
     51   1.1      dean 
     52   1.8  jonathan struct ultrix_sys_mount_args {
     53   1.8  jonathan 	syscallarg(char *) special;
     54   1.8  jonathan 	syscallarg(char *) dir;
     55   1.8  jonathan 	syscallarg(int) rdonly;
     56   1.8  jonathan 	syscallarg(int) type;
     57  1.47  christos 	syscallarg(void *) data;
     58   1.8  jonathan };
     59   1.8  jonathan 
     60   1.9  jonathan struct ultrix_sys_access_args {
     61  1.30  christos 	syscallarg(const char *) path;
     62   1.9  jonathan 	syscallarg(int) flags;
     63   1.9  jonathan };
     64   1.9  jonathan 
     65   1.9  jonathan struct ultrix_sys_stat_args {
     66  1.30  christos 	syscallarg(const char *) path;
     67  1.16  christos 	syscallarg(struct stat43 *) ub;
     68   1.9  jonathan };
     69   1.9  jonathan 
     70   1.9  jonathan struct ultrix_sys_lstat_args {
     71  1.30  christos 	syscallarg(const char *) path;
     72  1.16  christos 	syscallarg(struct stat43 *) ub;
     73   1.9  jonathan };
     74   1.9  jonathan 
     75   1.7  jonathan struct ultrix_sys_ioctl_args {
     76   1.7  jonathan 	syscallarg(int) fd;
     77   1.7  jonathan 	syscallarg(u_long) com;
     78  1.47  christos 	syscallarg(void *) data;
     79   1.7  jonathan };
     80   1.7  jonathan 
     81  1.11   mycroft struct ultrix_sys_execve_args {
     82  1.30  christos 	syscallarg(const char *) path;
     83  1.11   mycroft 	syscallarg(char **) argp;
     84  1.11   mycroft 	syscallarg(char **) envp;
     85  1.11   mycroft };
     86  1.11   mycroft 
     87   1.6   mycroft struct ultrix_sys_mmap_args {
     88  1.47  christos 	syscallarg(void *) addr;
     89   1.6   mycroft 	syscallarg(size_t) len;
     90   1.1      dean 	syscallarg(int) prot;
     91   1.1      dean 	syscallarg(u_int) flags;
     92   1.1      dean 	syscallarg(int) fd;
     93   1.1      dean 	syscallarg(long) pos;
     94   1.1      dean };
     95   1.1      dean 
     96   1.6   mycroft struct ultrix_sys_setpgrp_args {
     97   1.1      dean 	syscallarg(int) pid;
     98   1.1      dean 	syscallarg(int) pgid;
     99   1.1      dean };
    100   1.1      dean 
    101   1.6   mycroft struct ultrix_sys_wait3_args {
    102   1.1      dean 	syscallarg(int *) status;
    103   1.1      dean 	syscallarg(int) options;
    104   1.1      dean 	syscallarg(struct rusage *) rusage;
    105   1.1      dean };
    106   1.1      dean 
    107  1.32  drochner struct ultrix_sys_fcntl_args {
    108  1.32  drochner 	syscallarg(int) fd;
    109  1.32  drochner 	syscallarg(int) cmd;
    110  1.32  drochner 	syscallarg(void *) arg;
    111  1.32  drochner };
    112  1.32  drochner 
    113   1.8  jonathan struct ultrix_sys_select_args {
    114   1.8  jonathan 	syscallarg(u_int) nd;
    115   1.8  jonathan 	syscallarg(fd_set *) in;
    116   1.8  jonathan 	syscallarg(fd_set *) ou;
    117   1.8  jonathan 	syscallarg(fd_set *) ex;
    118   1.8  jonathan 	syscallarg(struct timeval *) tv;
    119   1.8  jonathan };
    120   1.8  jonathan 
    121  1.25  drochner struct ultrix_sys_sigreturn_args {
    122  1.25  drochner 	syscallarg(struct sigcontext *) sigcntxp;
    123  1.25  drochner };
    124  1.25  drochner 
    125   1.6   mycroft struct ultrix_sys_setsockopt_args {
    126   1.1      dean 	syscallarg(int) s;
    127   1.1      dean 	syscallarg(int) level;
    128   1.1      dean 	syscallarg(int) name;
    129  1.47  christos 	syscallarg(void *) val;
    130   1.1      dean 	syscallarg(int) valsize;
    131   1.1      dean };
    132   1.1      dean 
    133  1.26  drochner struct ultrix_sys_sigvec_args {
    134  1.26  drochner 	syscallarg(int) signum;
    135  1.26  drochner 	syscallarg(struct sigvec *) nsv;
    136  1.26  drochner 	syscallarg(struct sigvec *) osv;
    137  1.26  drochner };
    138  1.26  drochner 
    139  1.25  drochner struct ultrix_sys_sigsuspend_args {
    140  1.25  drochner 	syscallarg(int) mask;
    141  1.25  drochner };
    142  1.25  drochner 
    143   1.6   mycroft struct ultrix_sys_sigcleanup_args {
    144   1.4    mellon 	syscallarg(struct sigcontext *) sigcntxp;
    145   1.4    mellon };
    146  1.42     perry #ifdef __mips
    147   1.4    mellon 
    148  1.14  jonathan struct ultrix_sys_cacheflush_args {
    149  1.14  jonathan 	syscallarg(char *) addr;
    150  1.14  jonathan 	syscallarg(int) nbytes;
    151  1.14  jonathan 	syscallarg(int) whichcache;
    152  1.14  jonathan };
    153  1.14  jonathan 
    154  1.14  jonathan struct ultrix_sys_cachectl_args {
    155  1.14  jonathan 	syscallarg(char *) addr;
    156  1.14  jonathan 	syscallarg(int) nbytes;
    157  1.14  jonathan 	syscallarg(int) cacheop;
    158  1.14  jonathan };
    159  1.42     perry #else	/* !mips */
    160  1.42     perry #endif	/* !mips */
    161  1.42     perry #ifdef NFSSERVER
    162  1.14  jonathan 
    163   1.6   mycroft struct ultrix_sys_nfssvc_args {
    164   1.1      dean 	syscallarg(int) fd;
    165   1.1      dean };
    166  1.42     perry #else
    167  1.42     perry #endif
    168   1.1      dean 
    169   1.6   mycroft struct ultrix_sys_statfs_args {
    170  1.30  christos 	syscallarg(const char *) path;
    171   1.6   mycroft 	syscallarg(struct ultrix_statfs *) buf;
    172   1.1      dean };
    173   1.1      dean 
    174   1.6   mycroft struct ultrix_sys_fstatfs_args {
    175   1.1      dean 	syscallarg(int) fd;
    176   1.6   mycroft 	syscallarg(struct ultrix_statfs *) buf;
    177   1.1      dean };
    178  1.42     perry #ifdef NFS
    179  1.42     perry #else
    180  1.42     perry #endif
    181   1.1      dean 
    182   1.6   mycroft struct ultrix_sys_quotactl_args {
    183   1.1      dean 	syscallarg(int) cmd;
    184   1.1      dean 	syscallarg(char *) special;
    185   1.1      dean 	syscallarg(int) uid;
    186  1.47  christos 	syscallarg(void *) addr;
    187   1.1      dean };
    188   1.1      dean 
    189   1.6   mycroft struct ultrix_sys_exportfs_args {
    190   1.1      dean 	syscallarg(char *) path;
    191   1.1      dean 	syscallarg(char *) ex;
    192   1.1      dean };
    193   1.1      dean 
    194   1.6   mycroft struct ultrix_sys_uname_args {
    195   1.6   mycroft 	syscallarg(struct ultrix_utsname *) name;
    196   1.1      dean };
    197   1.1      dean 
    198  1.13  jonathan struct ultrix_sys_shmsys_args {
    199  1.13  jonathan 	syscallarg(u_int) shmop;
    200  1.13  jonathan 	syscallarg(u_int) a2;
    201  1.13  jonathan 	syscallarg(u_int) a3;
    202  1.13  jonathan 	syscallarg(u_int) a4;
    203  1.13  jonathan };
    204  1.13  jonathan 
    205   1.6   mycroft struct ultrix_sys_ustat_args {
    206   1.1      dean 	syscallarg(int) dev;
    207   1.6   mycroft 	syscallarg(struct ultrix_ustat *) buf;
    208   1.1      dean };
    209   1.1      dean 
    210   1.7  jonathan struct ultrix_sys_getmnt_args {
    211   1.7  jonathan 	syscallarg(int *) start;
    212   1.7  jonathan 	syscallarg(struct ultrix_fs_data *) buf;
    213   1.7  jonathan 	syscallarg(int) bufsize;
    214   1.7  jonathan 	syscallarg(int) mode;
    215   1.7  jonathan 	syscallarg(char *) path;
    216   1.7  jonathan };
    217   1.7  jonathan 
    218   1.6   mycroft struct ultrix_sys_sigpending_args {
    219   1.1      dean 	syscallarg(int *) mask;
    220   1.1      dean };
    221   1.1      dean 
    222   1.6   mycroft struct ultrix_sys_waitpid_args {
    223   1.6   mycroft 	syscallarg(int) pid;
    224   1.6   mycroft 	syscallarg(int *) status;
    225   1.6   mycroft 	syscallarg(int) options;
    226   1.6   mycroft };
    227   1.6   mycroft 
    228   1.6   mycroft struct ultrix_sys_getsysinfo_args {
    229   1.1      dean 	syscallarg(unsigned) op;
    230   1.1      dean 	syscallarg(char *) buffer;
    231   1.1      dean 	syscallarg(unsigned) nbytes;
    232   1.1      dean 	syscallarg(int *) start;
    233   1.1      dean 	syscallarg(char *) arg;
    234   1.1      dean };
    235   1.1      dean 
    236   1.6   mycroft struct ultrix_sys_setsysinfo_args {
    237   1.1      dean 	syscallarg(unsigned) op;
    238   1.1      dean 	syscallarg(char *) buffer;
    239   1.1      dean 	syscallarg(unsigned) nbytes;
    240   1.1      dean 	syscallarg(unsigned) arg;
    241   1.1      dean 	syscallarg(unsigned) flag;
    242   1.1      dean };
    243   1.1      dean 
    244   1.5   thorpej /*
    245   1.5   thorpej  * System call prototypes.
    246   1.5   thorpej  */
    247   1.5   thorpej 
    248  1.40   thorpej int	sys_nosys(struct lwp *, void *, register_t *);
    249  1.42     perry 
    250  1.40   thorpej int	sys_exit(struct lwp *, void *, register_t *);
    251  1.42     perry 
    252  1.40   thorpej int	sys_fork(struct lwp *, void *, register_t *);
    253  1.42     perry 
    254  1.40   thorpej int	sys_read(struct lwp *, void *, register_t *);
    255  1.42     perry 
    256  1.40   thorpej int	sys_write(struct lwp *, void *, register_t *);
    257  1.42     perry 
    258  1.40   thorpej int	ultrix_sys_open(struct lwp *, void *, register_t *);
    259  1.42     perry 
    260  1.40   thorpej int	sys_close(struct lwp *, void *, register_t *);
    261  1.42     perry 
    262  1.40   thorpej int	compat_43_sys_wait(struct lwp *, void *, register_t *);
    263  1.42     perry 
    264  1.40   thorpej int	ultrix_sys_creat(struct lwp *, void *, register_t *);
    265  1.42     perry 
    266  1.40   thorpej int	sys_link(struct lwp *, void *, register_t *);
    267  1.42     perry 
    268  1.40   thorpej int	sys_unlink(struct lwp *, void *, register_t *);
    269  1.42     perry 
    270  1.40   thorpej int	ultrix_sys_execv(struct lwp *, void *, register_t *);
    271  1.42     perry 
    272  1.40   thorpej int	sys_chdir(struct lwp *, void *, register_t *);
    273  1.42     perry 
    274  1.40   thorpej int	ultrix_sys_mknod(struct lwp *, void *, register_t *);
    275  1.42     perry 
    276  1.40   thorpej int	sys_chmod(struct lwp *, void *, register_t *);
    277  1.42     perry 
    278  1.40   thorpej int	sys___posix_chown(struct lwp *, void *, register_t *);
    279  1.42     perry 
    280  1.40   thorpej int	sys_obreak(struct lwp *, void *, register_t *);
    281  1.42     perry 
    282  1.40   thorpej int	compat_43_sys_lseek(struct lwp *, void *, register_t *);
    283  1.42     perry 
    284  1.40   thorpej int	sys_getpid(struct lwp *, void *, register_t *);
    285  1.42     perry 
    286  1.40   thorpej int	ultrix_sys_mount(struct lwp *, void *, register_t *);
    287  1.42     perry 
    288  1.40   thorpej int	sys_setuid(struct lwp *, void *, register_t *);
    289  1.42     perry 
    290  1.40   thorpej int	sys_getuid(struct lwp *, void *, register_t *);
    291  1.42     perry 
    292  1.40   thorpej int	ultrix_sys_access(struct lwp *, void *, register_t *);
    293  1.42     perry 
    294  1.40   thorpej int	sys_sync(struct lwp *, void *, register_t *);
    295  1.42     perry 
    296  1.40   thorpej int	sys_kill(struct lwp *, void *, register_t *);
    297  1.42     perry 
    298  1.40   thorpej int	ultrix_sys_stat(struct lwp *, void *, register_t *);
    299  1.42     perry 
    300  1.40   thorpej int	ultrix_sys_lstat(struct lwp *, void *, register_t *);
    301  1.42     perry 
    302  1.40   thorpej int	sys_dup(struct lwp *, void *, register_t *);
    303  1.42     perry 
    304  1.40   thorpej int	sys_pipe(struct lwp *, void *, register_t *);
    305  1.42     perry 
    306  1.40   thorpej int	sys_profil(struct lwp *, void *, register_t *);
    307  1.42     perry 
    308  1.40   thorpej int	sys_getgid(struct lwp *, void *, register_t *);
    309  1.42     perry 
    310  1.40   thorpej int	sys_acct(struct lwp *, void *, register_t *);
    311  1.42     perry 
    312  1.40   thorpej int	ultrix_sys_ioctl(struct lwp *, void *, register_t *);
    313  1.42     perry 
    314  1.40   thorpej int	sys_reboot(struct lwp *, void *, register_t *);
    315  1.42     perry 
    316  1.40   thorpej int	sys_symlink(struct lwp *, void *, register_t *);
    317  1.42     perry 
    318  1.40   thorpej int	sys_readlink(struct lwp *, void *, register_t *);
    319  1.42     perry 
    320  1.40   thorpej int	ultrix_sys_execve(struct lwp *, void *, register_t *);
    321  1.42     perry 
    322  1.40   thorpej int	sys_umask(struct lwp *, void *, register_t *);
    323  1.42     perry 
    324  1.40   thorpej int	sys_chroot(struct lwp *, void *, register_t *);
    325  1.42     perry 
    326  1.40   thorpej int	compat_43_sys_fstat(struct lwp *, void *, register_t *);
    327  1.42     perry 
    328  1.40   thorpej int	compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
    329  1.42     perry 
    330  1.40   thorpej int	sys_vfork(struct lwp *, void *, register_t *);
    331  1.42     perry 
    332  1.40   thorpej int	sys_sbrk(struct lwp *, void *, register_t *);
    333  1.42     perry 
    334  1.40   thorpej int	sys_sstk(struct lwp *, void *, register_t *);
    335  1.42     perry 
    336  1.40   thorpej int	ultrix_sys_mmap(struct lwp *, void *, register_t *);
    337  1.42     perry 
    338  1.40   thorpej int	sys_ovadvise(struct lwp *, void *, register_t *);
    339  1.42     perry 
    340  1.40   thorpej int	sys_munmap(struct lwp *, void *, register_t *);
    341  1.42     perry 
    342  1.40   thorpej int	sys_mprotect(struct lwp *, void *, register_t *);
    343  1.42     perry 
    344  1.40   thorpej int	sys_madvise(struct lwp *, void *, register_t *);
    345  1.42     perry 
    346  1.40   thorpej int	ultrix_sys_vhangup(struct lwp *, void *, register_t *);
    347  1.42     perry 
    348  1.40   thorpej int	sys_mincore(struct lwp *, void *, register_t *);
    349  1.42     perry 
    350  1.40   thorpej int	sys_getgroups(struct lwp *, void *, register_t *);
    351  1.42     perry 
    352  1.40   thorpej int	sys_setgroups(struct lwp *, void *, register_t *);
    353  1.42     perry 
    354  1.40   thorpej int	sys_getpgrp(struct lwp *, void *, register_t *);
    355  1.42     perry 
    356  1.40   thorpej int	ultrix_sys_setpgrp(struct lwp *, void *, register_t *);
    357  1.42     perry 
    358  1.40   thorpej int	sys_setitimer(struct lwp *, void *, register_t *);
    359  1.42     perry 
    360  1.40   thorpej int	ultrix_sys_wait3(struct lwp *, void *, register_t *);
    361  1.42     perry 
    362  1.40   thorpej int	compat_12_sys_swapon(struct lwp *, void *, register_t *);
    363  1.42     perry 
    364  1.40   thorpej int	sys_getitimer(struct lwp *, void *, register_t *);
    365  1.42     perry 
    366  1.40   thorpej int	compat_43_sys_gethostname(struct lwp *, void *, register_t *);
    367  1.42     perry 
    368  1.40   thorpej int	compat_43_sys_sethostname(struct lwp *, void *, register_t *);
    369  1.42     perry 
    370  1.40   thorpej int	compat_43_sys_getdtablesize(struct lwp *, void *, register_t *);
    371  1.42     perry 
    372  1.40   thorpej int	sys_dup2(struct lwp *, void *, register_t *);
    373  1.42     perry 
    374  1.40   thorpej int	ultrix_sys_fcntl(struct lwp *, void *, register_t *);
    375  1.42     perry 
    376  1.40   thorpej int	ultrix_sys_select(struct lwp *, void *, register_t *);
    377  1.42     perry 
    378  1.40   thorpej int	sys_fsync(struct lwp *, void *, register_t *);
    379  1.42     perry 
    380  1.40   thorpej int	sys_setpriority(struct lwp *, void *, register_t *);
    381  1.42     perry 
    382  1.45       mrg int	compat_30_sys_socket(struct lwp *, void *, register_t *);
    383  1.42     perry 
    384  1.40   thorpej int	sys_connect(struct lwp *, void *, register_t *);
    385  1.42     perry 
    386  1.40   thorpej int	compat_43_sys_accept(struct lwp *, void *, register_t *);
    387  1.42     perry 
    388  1.40   thorpej int	sys_getpriority(struct lwp *, void *, register_t *);
    389  1.42     perry 
    390  1.40   thorpej int	compat_43_sys_send(struct lwp *, void *, register_t *);
    391  1.42     perry 
    392  1.40   thorpej int	compat_43_sys_recv(struct lwp *, void *, register_t *);
    393  1.42     perry 
    394  1.40   thorpej int	ultrix_sys_sigreturn(struct lwp *, void *, register_t *);
    395  1.42     perry 
    396  1.40   thorpej int	sys_bind(struct lwp *, void *, register_t *);
    397  1.42     perry 
    398  1.40   thorpej int	ultrix_sys_setsockopt(struct lwp *, void *, register_t *);
    399  1.42     perry 
    400  1.40   thorpej int	sys_listen(struct lwp *, void *, register_t *);
    401  1.42     perry 
    402  1.40   thorpej int	ultrix_sys_sigvec(struct lwp *, void *, register_t *);
    403  1.42     perry 
    404  1.40   thorpej int	compat_43_sys_sigblock(struct lwp *, void *, register_t *);
    405  1.42     perry 
    406  1.40   thorpej int	compat_43_sys_sigsetmask(struct lwp *, void *, register_t *);
    407  1.42     perry 
    408  1.40   thorpej int	ultrix_sys_sigsuspend(struct lwp *, void *, register_t *);
    409  1.42     perry 
    410  1.40   thorpej int	compat_43_sys_sigstack(struct lwp *, void *, register_t *);
    411  1.42     perry 
    412  1.40   thorpej int	compat_43_sys_recvmsg(struct lwp *, void *, register_t *);
    413  1.42     perry 
    414  1.40   thorpej int	compat_43_sys_sendmsg(struct lwp *, void *, register_t *);
    415  1.42     perry 
    416  1.40   thorpej int	sys_gettimeofday(struct lwp *, void *, register_t *);
    417  1.42     perry 
    418  1.40   thorpej int	sys_getrusage(struct lwp *, void *, register_t *);
    419  1.42     perry 
    420  1.40   thorpej int	sys_getsockopt(struct lwp *, void *, register_t *);
    421  1.42     perry 
    422  1.40   thorpej int	sys_readv(struct lwp *, void *, register_t *);
    423  1.42     perry 
    424  1.40   thorpej int	sys_writev(struct lwp *, void *, register_t *);
    425  1.42     perry 
    426  1.40   thorpej int	sys_settimeofday(struct lwp *, void *, register_t *);
    427  1.42     perry 
    428  1.40   thorpej int	sys___posix_fchown(struct lwp *, void *, register_t *);
    429  1.42     perry 
    430  1.40   thorpej int	sys_fchmod(struct lwp *, void *, register_t *);
    431  1.42     perry 
    432  1.40   thorpej int	compat_43_sys_recvfrom(struct lwp *, void *, register_t *);
    433  1.42     perry 
    434  1.40   thorpej int	sys_setreuid(struct lwp *, void *, register_t *);
    435  1.42     perry 
    436  1.40   thorpej int	sys_setregid(struct lwp *, void *, register_t *);
    437  1.42     perry 
    438  1.40   thorpej int	sys_rename(struct lwp *, void *, register_t *);
    439  1.42     perry 
    440  1.40   thorpej int	compat_43_sys_truncate(struct lwp *, void *, register_t *);
    441  1.42     perry 
    442  1.40   thorpej int	compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
    443  1.42     perry 
    444  1.40   thorpej int	sys_flock(struct lwp *, void *, register_t *);
    445  1.42     perry 
    446  1.40   thorpej int	sys_sendto(struct lwp *, void *, register_t *);
    447  1.42     perry 
    448  1.40   thorpej int	sys_shutdown(struct lwp *, void *, register_t *);
    449  1.42     perry 
    450  1.40   thorpej int	sys_socketpair(struct lwp *, void *, register_t *);
    451  1.42     perry 
    452  1.40   thorpej int	sys_mkdir(struct lwp *, void *, register_t *);
    453  1.42     perry 
    454  1.40   thorpej int	sys_rmdir(struct lwp *, void *, register_t *);
    455  1.42     perry 
    456  1.40   thorpej int	sys_utimes(struct lwp *, void *, register_t *);
    457  1.42     perry 
    458  1.40   thorpej int	ultrix_sys_sigcleanup(struct lwp *, void *, register_t *);
    459  1.42     perry 
    460  1.40   thorpej int	sys_adjtime(struct lwp *, void *, register_t *);
    461  1.42     perry 
    462  1.40   thorpej int	compat_43_sys_getpeername(struct lwp *, void *, register_t *);
    463  1.42     perry 
    464  1.40   thorpej int	compat_43_sys_gethostid(struct lwp *, void *, register_t *);
    465  1.42     perry 
    466  1.40   thorpej int	compat_43_sys_getrlimit(struct lwp *, void *, register_t *);
    467  1.42     perry 
    468  1.40   thorpej int	compat_43_sys_setrlimit(struct lwp *, void *, register_t *);
    469  1.42     perry 
    470  1.40   thorpej int	compat_43_sys_killpg(struct lwp *, void *, register_t *);
    471  1.42     perry 
    472  1.40   thorpej int	compat_43_sys_getsockname(struct lwp *, void *, register_t *);
    473  1.42     perry 
    474  1.14  jonathan #ifdef __mips
    475  1.40   thorpej int	ultrix_sys_cacheflush(struct lwp *, void *, register_t *);
    476  1.42     perry 
    477  1.40   thorpej int	ultrix_sys_cachectl(struct lwp *, void *, register_t *);
    478  1.42     perry 
    479  1.14  jonathan #else	/* !mips */
    480  1.14  jonathan #endif	/* !mips */
    481   1.5   thorpej #ifdef NFSSERVER
    482  1.40   thorpej int	ultrix_sys_nfssvc(struct lwp *, void *, register_t *);
    483  1.42     perry 
    484   1.5   thorpej #else
    485   1.5   thorpej #endif
    486  1.40   thorpej int	compat_43_sys_getdirentries(struct lwp *, void *, register_t *);
    487  1.42     perry 
    488  1.40   thorpej int	ultrix_sys_statfs(struct lwp *, void *, register_t *);
    489  1.42     perry 
    490  1.40   thorpej int	ultrix_sys_fstatfs(struct lwp *, void *, register_t *);
    491  1.42     perry 
    492  1.12   thorpej #ifdef NFS
    493  1.40   thorpej int	async_daemon(struct lwp *, void *, register_t *);
    494  1.42     perry 
    495  1.46     pavel int	compat_30_sys_getfh(struct lwp *, void *, register_t *);
    496  1.42     perry 
    497   1.5   thorpej #else
    498   1.5   thorpej #endif
    499  1.40   thorpej int	compat_09_sys_getdomainname(struct lwp *, void *, register_t *);
    500  1.42     perry 
    501  1.40   thorpej int	compat_09_sys_setdomainname(struct lwp *, void *, register_t *);
    502  1.42     perry 
    503  1.40   thorpej int	ultrix_sys_quotactl(struct lwp *, void *, register_t *);
    504  1.42     perry 
    505  1.40   thorpej int	ultrix_sys_exportfs(struct lwp *, void *, register_t *);
    506  1.42     perry 
    507  1.40   thorpej int	ultrix_sys_uname(struct lwp *, void *, register_t *);
    508  1.42     perry 
    509  1.40   thorpej int	ultrix_sys_shmsys(struct lwp *, void *, register_t *);
    510  1.42     perry 
    511  1.40   thorpej int	ultrix_sys_ustat(struct lwp *, void *, register_t *);
    512  1.42     perry 
    513  1.40   thorpej int	ultrix_sys_getmnt(struct lwp *, void *, register_t *);
    514  1.42     perry 
    515  1.40   thorpej int	ultrix_sys_sigpending(struct lwp *, void *, register_t *);
    516  1.42     perry 
    517  1.40   thorpej int	sys_setsid(struct lwp *, void *, register_t *);
    518  1.42     perry 
    519  1.40   thorpej int	ultrix_sys_waitpid(struct lwp *, void *, register_t *);
    520  1.42     perry 
    521  1.40   thorpej int	ultrix_sys_getsysinfo(struct lwp *, void *, register_t *);
    522  1.42     perry 
    523  1.40   thorpej int	ultrix_sys_setsysinfo(struct lwp *, void *, register_t *);
    524  1.42     perry 
    525  1.45       mrg #endif /* _ULTRIX_SYS_SYSCALLARGS_H_ */
    526