Home | History | Annotate | Line # | Download | only in sunos
sunos_syscallargs.h revision 1.37
      1  1.32   thorpej /*	$NetBSD: sunos_syscallargs.h,v 1.37 1998/10/03 19:40:43 eeh Exp $	*/
      2  1.32   thorpej 
      3   1.1   deraadt /*
      4   1.1   deraadt  * System call argument lists.
      5   1.1   deraadt  *
      6   1.1   deraadt  * DO NOT EDIT-- this file is automatically generated.
      7  1.37       eeh  * created from	NetBSD: syscalls.master,v 1.47 1998/09/13 22:28:17 pk Exp
      8   1.1   deraadt  */
      9   1.1   deraadt 
     10  1.37       eeh #define	syscallarg(x)								\
     11  1.37       eeh 		union {								\
     12  1.37       eeh 			register_t pad;						\
     13  1.37       eeh 			struct { x datum; } le;					\
     14  1.37       eeh 			struct {						\
     15  1.37       eeh 				int8_t pad[ (sizeof (register_t) < sizeof (x))	\
     16  1.37       eeh 					? 0					\
     17  1.37       eeh 					: sizeof (register_t) - sizeof (x)];	\
     18  1.37       eeh 				x datum;					\
     19  1.37       eeh 			} be;							\
     20  1.37       eeh 		}
     21   1.1   deraadt 
     22  1.16   mycroft struct sunos_sys_open_args {
     23   1.1   deraadt 	syscallarg(char *) path;
     24   1.1   deraadt 	syscallarg(int) flags;
     25   1.1   deraadt 	syscallarg(int) mode;
     26   1.1   deraadt };
     27   1.1   deraadt 
     28  1.16   mycroft struct sunos_sys_wait4_args {
     29   1.1   deraadt 	syscallarg(int) pid;
     30   1.1   deraadt 	syscallarg(int *) status;
     31   1.1   deraadt 	syscallarg(int) options;
     32   1.1   deraadt 	syscallarg(struct rusage *) rusage;
     33   1.1   deraadt };
     34   1.1   deraadt 
     35  1.16   mycroft struct sunos_sys_creat_args {
     36   1.1   deraadt 	syscallarg(char *) path;
     37   1.1   deraadt 	syscallarg(int) mode;
     38   1.1   deraadt };
     39   1.1   deraadt 
     40  1.16   mycroft struct sunos_sys_execv_args {
     41   1.1   deraadt 	syscallarg(char *) path;
     42   1.4   deraadt 	syscallarg(char **) argp;
     43   1.1   deraadt };
     44   1.1   deraadt 
     45  1.16   mycroft struct sunos_sys_mknod_args {
     46   1.1   deraadt 	syscallarg(char *) path;
     47   1.1   deraadt 	syscallarg(int) mode;
     48   1.1   deraadt 	syscallarg(int) dev;
     49   1.1   deraadt };
     50   1.1   deraadt 
     51  1.21  christos struct sunos_sys_stime_args {
     52  1.21  christos 	syscallarg(time_t *) tp;
     53  1.21  christos };
     54  1.21  christos 
     55  1.16   mycroft struct sunos_sys_ptrace_args {
     56   1.5   deraadt 	syscallarg(int) req;
     57  1.16   mycroft 	syscallarg(pid_t) pid;
     58  1.16   mycroft 	syscallarg(caddr_t) addr;
     59   1.5   deraadt 	syscallarg(int) data;
     60   1.5   deraadt 	syscallarg(char *) addr2;
     61   1.5   deraadt };
     62   1.5   deraadt 
     63  1.16   mycroft struct sunos_sys_access_args {
     64  1.10        pk 	syscallarg(char *) path;
     65  1.10        pk 	syscallarg(int) flags;
     66  1.10        pk };
     67  1.10        pk 
     68  1.16   mycroft struct sunos_sys_stat_args {
     69  1.10        pk 	syscallarg(char *) path;
     70  1.28  christos 	syscallarg(struct stat43 *) ub;
     71  1.10        pk };
     72  1.10        pk 
     73  1.16   mycroft struct sunos_sys_lstat_args {
     74  1.10        pk 	syscallarg(char *) path;
     75  1.28  christos 	syscallarg(struct stat43 *) ub;
     76  1.10        pk };
     77  1.10        pk 
     78  1.16   mycroft struct sunos_sys_mctl_args {
     79  1.29  christos 	syscallarg(void *) addr;
     80   1.1   deraadt 	syscallarg(int) len;
     81   1.1   deraadt 	syscallarg(int) func;
     82   1.1   deraadt 	syscallarg(void *) arg;
     83   1.1   deraadt };
     84   1.1   deraadt 
     85  1.16   mycroft struct sunos_sys_ioctl_args {
     86   1.1   deraadt 	syscallarg(int) fd;
     87   1.1   deraadt 	syscallarg(u_long) com;
     88   1.1   deraadt 	syscallarg(caddr_t) data;
     89   1.9  christos };
     90   1.9  christos 
     91  1.16   mycroft struct sunos_sys_reboot_args {
     92   1.9  christos 	syscallarg(int) howto;
     93   1.9  christos 	syscallarg(char *) bootstr;
     94   1.1   deraadt };
     95   1.1   deraadt 
     96  1.20   thorpej struct sunos_sys_execve_args {
     97  1.20   thorpej 	syscallarg(char *) path;
     98  1.20   thorpej 	syscallarg(char **) argp;
     99  1.20   thorpej 	syscallarg(char **) envp;
    100  1.20   thorpej };
    101  1.20   thorpej 
    102  1.16   mycroft struct sunos_sys_omsync_args {
    103   1.1   deraadt 	syscallarg(caddr_t) addr;
    104  1.16   mycroft 	syscallarg(size_t) len;
    105   1.1   deraadt 	syscallarg(int) flags;
    106   1.1   deraadt };
    107   1.1   deraadt 
    108  1.16   mycroft struct sunos_sys_mmap_args {
    109  1.29  christos 	syscallarg(void *) addr;
    110  1.16   mycroft 	syscallarg(size_t) len;
    111   1.1   deraadt 	syscallarg(int) prot;
    112  1.16   mycroft 	syscallarg(int) flags;
    113   1.1   deraadt 	syscallarg(int) fd;
    114   1.1   deraadt 	syscallarg(long) pos;
    115   1.1   deraadt };
    116   1.1   deraadt 
    117  1.16   mycroft struct sunos_sys_setpgrp_args {
    118   1.1   deraadt 	syscallarg(int) pid;
    119   1.1   deraadt 	syscallarg(int) pgid;
    120   1.1   deraadt };
    121   1.1   deraadt 
    122  1.17        pk struct sunos_sys_fcntl_args {
    123  1.17        pk 	syscallarg(int) fd;
    124  1.17        pk 	syscallarg(int) cmd;
    125  1.17        pk 	syscallarg(void *) arg;
    126  1.17        pk };
    127  1.17        pk 
    128  1.16   mycroft struct sunos_sys_setsockopt_args {
    129   1.1   deraadt 	syscallarg(int) s;
    130   1.1   deraadt 	syscallarg(int) level;
    131   1.1   deraadt 	syscallarg(int) name;
    132   1.1   deraadt 	syscallarg(caddr_t) val;
    133   1.1   deraadt 	syscallarg(int) valsize;
    134  1.14        pk };
    135  1.14        pk 
    136  1.16   mycroft struct sunos_sys_sigvec_args {
    137  1.14        pk 	syscallarg(int) signum;
    138  1.14        pk 	syscallarg(struct sigvec *) nsv;
    139  1.14        pk 	syscallarg(struct sigvec *) osv;
    140   1.1   deraadt };
    141   1.1   deraadt 
    142  1.36        pk struct sunos_sys_sigsuspend_args {
    143  1.36        pk 	syscallarg(int) mask;
    144  1.36        pk };
    145  1.36        pk 
    146  1.16   mycroft struct sunos_sys_sigreturn_args {
    147   1.8  christos 	syscallarg(struct sigcontext *) sigcntxp;
    148   1.8  christos };
    149   1.8  christos 
    150  1.16   mycroft struct sunos_sys_getrlimit_args {
    151   1.1   deraadt 	syscallarg(u_int) which;
    152   1.1   deraadt 	syscallarg(struct orlimit *) rlp;
    153   1.1   deraadt };
    154   1.1   deraadt 
    155  1.16   mycroft struct sunos_sys_setrlimit_args {
    156   1.1   deraadt 	syscallarg(u_int) which;
    157   1.1   deraadt 	syscallarg(struct orlimit *) rlp;
    158   1.5   deraadt };
    159   1.5   deraadt 
    160  1.16   mycroft struct sunos_sys_nfssvc_args {
    161   1.1   deraadt 	syscallarg(int) fd;
    162   1.1   deraadt };
    163   1.1   deraadt 
    164  1.16   mycroft struct sunos_sys_statfs_args {
    165   1.1   deraadt 	syscallarg(char *) path;
    166   1.1   deraadt 	syscallarg(struct sunos_statfs *) buf;
    167   1.1   deraadt };
    168   1.1   deraadt 
    169  1.16   mycroft struct sunos_sys_fstatfs_args {
    170   1.1   deraadt 	syscallarg(int) fd;
    171   1.1   deraadt 	syscallarg(struct sunos_statfs *) buf;
    172   1.1   deraadt };
    173   1.1   deraadt 
    174  1.16   mycroft struct sunos_sys_unmount_args {
    175   1.1   deraadt 	syscallarg(char *) path;
    176   1.1   deraadt };
    177   1.1   deraadt 
    178  1.16   mycroft struct sunos_sys_quotactl_args {
    179   1.1   deraadt 	syscallarg(int) cmd;
    180   1.1   deraadt 	syscallarg(char *) special;
    181   1.1   deraadt 	syscallarg(int) uid;
    182   1.1   deraadt 	syscallarg(caddr_t) addr;
    183   1.1   deraadt };
    184   1.1   deraadt 
    185  1.16   mycroft struct sunos_sys_exportfs_args {
    186   1.1   deraadt 	syscallarg(char *) path;
    187   1.1   deraadt 	syscallarg(char *) ex;
    188   1.1   deraadt };
    189   1.1   deraadt 
    190  1.16   mycroft struct sunos_sys_mount_args {
    191   1.1   deraadt 	syscallarg(char *) type;
    192   1.1   deraadt 	syscallarg(char *) dir;
    193   1.1   deraadt 	syscallarg(int) flags;
    194   1.1   deraadt 	syscallarg(caddr_t) data;
    195   1.1   deraadt };
    196   1.1   deraadt 
    197  1.16   mycroft struct sunos_sys_ustat_args {
    198   1.1   deraadt 	syscallarg(int) dev;
    199   1.1   deraadt 	syscallarg(struct sunos_ustat *) buf;
    200   1.1   deraadt };
    201   1.1   deraadt 
    202  1.16   mycroft struct sunos_sys_auditsys_args {
    203   1.1   deraadt 	syscallarg(char *) record;
    204   1.1   deraadt };
    205   1.1   deraadt 
    206  1.16   mycroft struct sunos_sys_getdents_args {
    207   1.1   deraadt 	syscallarg(int) fd;
    208   1.1   deraadt 	syscallarg(char *) buf;
    209   1.1   deraadt 	syscallarg(int) nbytes;
    210   1.1   deraadt };
    211   1.1   deraadt 
    212  1.16   mycroft struct sunos_sys_fchroot_args {
    213   1.1   deraadt 	syscallarg(int) fd;
    214   1.1   deraadt };
    215   1.1   deraadt 
    216  1.16   mycroft struct sunos_sys_sigpending_args {
    217   1.1   deraadt 	syscallarg(int *) mask;
    218   1.1   deraadt };
    219   1.1   deraadt 
    220  1.16   mycroft struct sunos_sys_sysconf_args {
    221   1.1   deraadt 	syscallarg(int) name;
    222   1.1   deraadt };
    223   1.1   deraadt 
    224  1.16   mycroft struct sunos_sys_uname_args {
    225   1.1   deraadt 	syscallarg(struct sunos_utsname *) name;
    226   1.1   deraadt };
    227   1.1   deraadt 
    228  1.15   thorpej /*
    229  1.15   thorpej  * System call prototypes.
    230  1.15   thorpej  */
    231  1.15   thorpej 
    232  1.16   mycroft int	sys_nosys	__P((struct proc *, void *, register_t *));
    233  1.16   mycroft int	sys_exit	__P((struct proc *, void *, register_t *));
    234  1.16   mycroft int	sys_fork	__P((struct proc *, void *, register_t *));
    235  1.16   mycroft int	sys_read	__P((struct proc *, void *, register_t *));
    236  1.16   mycroft int	sys_write	__P((struct proc *, void *, register_t *));
    237  1.16   mycroft int	sunos_sys_open	__P((struct proc *, void *, register_t *));
    238  1.16   mycroft int	sys_close	__P((struct proc *, void *, register_t *));
    239  1.16   mycroft int	sunos_sys_wait4	__P((struct proc *, void *, register_t *));
    240  1.16   mycroft int	sunos_sys_creat	__P((struct proc *, void *, register_t *));
    241  1.16   mycroft int	sys_link	__P((struct proc *, void *, register_t *));
    242  1.16   mycroft int	sys_unlink	__P((struct proc *, void *, register_t *));
    243  1.16   mycroft int	sunos_sys_execv	__P((struct proc *, void *, register_t *));
    244  1.16   mycroft int	sys_chdir	__P((struct proc *, void *, register_t *));
    245  1.16   mycroft int	sunos_sys_mknod	__P((struct proc *, void *, register_t *));
    246  1.16   mycroft int	sys_chmod	__P((struct proc *, void *, register_t *));
    247  1.16   mycroft int	sys_chown	__P((struct proc *, void *, register_t *));
    248  1.16   mycroft int	sys_obreak	__P((struct proc *, void *, register_t *));
    249  1.16   mycroft int	compat_43_sys_lseek	__P((struct proc *, void *, register_t *));
    250  1.16   mycroft int	sys_getpid	__P((struct proc *, void *, register_t *));
    251  1.16   mycroft int	sys_setuid	__P((struct proc *, void *, register_t *));
    252  1.16   mycroft int	sys_getuid	__P((struct proc *, void *, register_t *));
    253  1.21  christos int	sunos_sys_stime	__P((struct proc *, void *, register_t *));
    254  1.16   mycroft int	sunos_sys_ptrace	__P((struct proc *, void *, register_t *));
    255  1.16   mycroft int	sunos_sys_access	__P((struct proc *, void *, register_t *));
    256  1.16   mycroft int	sys_sync	__P((struct proc *, void *, register_t *));
    257  1.16   mycroft int	sys_kill	__P((struct proc *, void *, register_t *));
    258  1.16   mycroft int	sunos_sys_stat	__P((struct proc *, void *, register_t *));
    259  1.16   mycroft int	sunos_sys_lstat	__P((struct proc *, void *, register_t *));
    260  1.16   mycroft int	sys_dup	__P((struct proc *, void *, register_t *));
    261  1.16   mycroft int	sys_pipe	__P((struct proc *, void *, register_t *));
    262  1.16   mycroft int	sys_profil	__P((struct proc *, void *, register_t *));
    263  1.16   mycroft int	sys_setgid	__P((struct proc *, void *, register_t *));
    264  1.16   mycroft int	sys_getgid	__P((struct proc *, void *, register_t *));
    265  1.16   mycroft int	sys_acct	__P((struct proc *, void *, register_t *));
    266  1.16   mycroft int	sunos_sys_mctl	__P((struct proc *, void *, register_t *));
    267  1.16   mycroft int	sunos_sys_ioctl	__P((struct proc *, void *, register_t *));
    268  1.16   mycroft int	sunos_sys_reboot	__P((struct proc *, void *, register_t *));
    269  1.16   mycroft int	sys_symlink	__P((struct proc *, void *, register_t *));
    270  1.16   mycroft int	sys_readlink	__P((struct proc *, void *, register_t *));
    271  1.20   thorpej int	sunos_sys_execve	__P((struct proc *, void *, register_t *));
    272  1.16   mycroft int	sys_umask	__P((struct proc *, void *, register_t *));
    273  1.16   mycroft int	sys_chroot	__P((struct proc *, void *, register_t *));
    274  1.16   mycroft int	compat_43_sys_fstat	__P((struct proc *, void *, register_t *));
    275  1.16   mycroft int	compat_43_sys_getpagesize	__P((struct proc *, void *, register_t *));
    276  1.16   mycroft int	sunos_sys_omsync	__P((struct proc *, void *, register_t *));
    277  1.16   mycroft int	sys_vfork	__P((struct proc *, void *, register_t *));
    278  1.16   mycroft int	sys_sbrk	__P((struct proc *, void *, register_t *));
    279  1.16   mycroft int	sys_sstk	__P((struct proc *, void *, register_t *));
    280  1.16   mycroft int	sunos_sys_mmap	__P((struct proc *, void *, register_t *));
    281  1.16   mycroft int	sys_ovadvise	__P((struct proc *, void *, register_t *));
    282  1.16   mycroft int	sys_munmap	__P((struct proc *, void *, register_t *));
    283  1.16   mycroft int	sys_mprotect	__P((struct proc *, void *, register_t *));
    284  1.16   mycroft int	sys_madvise	__P((struct proc *, void *, register_t *));
    285  1.16   mycroft int	sunos_sys_vhangup	__P((struct proc *, void *, register_t *));
    286  1.16   mycroft int	sys_mincore	__P((struct proc *, void *, register_t *));
    287  1.16   mycroft int	sys_getgroups	__P((struct proc *, void *, register_t *));
    288  1.16   mycroft int	sys_setgroups	__P((struct proc *, void *, register_t *));
    289  1.16   mycroft int	sys_getpgrp	__P((struct proc *, void *, register_t *));
    290  1.16   mycroft int	sunos_sys_setpgrp	__P((struct proc *, void *, register_t *));
    291  1.16   mycroft int	sys_setitimer	__P((struct proc *, void *, register_t *));
    292  1.26   thorpej int	compat_12_sys_swapon	__P((struct proc *, void *, register_t *));
    293  1.16   mycroft int	sys_getitimer	__P((struct proc *, void *, register_t *));
    294  1.16   mycroft int	compat_43_sys_gethostname	__P((struct proc *, void *, register_t *));
    295  1.16   mycroft int	compat_43_sys_sethostname	__P((struct proc *, void *, register_t *));
    296  1.16   mycroft int	compat_43_sys_getdtablesize	__P((struct proc *, void *, register_t *));
    297  1.16   mycroft int	sys_dup2	__P((struct proc *, void *, register_t *));
    298  1.17        pk int	sunos_sys_fcntl	__P((struct proc *, void *, register_t *));
    299  1.16   mycroft int	sys_select	__P((struct proc *, void *, register_t *));
    300  1.16   mycroft int	sys_fsync	__P((struct proc *, void *, register_t *));
    301  1.16   mycroft int	sys_setpriority	__P((struct proc *, void *, register_t *));
    302  1.16   mycroft int	sys_socket	__P((struct proc *, void *, register_t *));
    303  1.16   mycroft int	sys_connect	__P((struct proc *, void *, register_t *));
    304  1.16   mycroft int	compat_43_sys_accept	__P((struct proc *, void *, register_t *));
    305  1.16   mycroft int	sys_getpriority	__P((struct proc *, void *, register_t *));
    306  1.16   mycroft int	compat_43_sys_send	__P((struct proc *, void *, register_t *));
    307  1.16   mycroft int	compat_43_sys_recv	__P((struct proc *, void *, register_t *));
    308  1.16   mycroft int	sys_bind	__P((struct proc *, void *, register_t *));
    309  1.16   mycroft int	sunos_sys_setsockopt	__P((struct proc *, void *, register_t *));
    310  1.16   mycroft int	sys_listen	__P((struct proc *, void *, register_t *));
    311  1.16   mycroft int	sunos_sys_sigvec	__P((struct proc *, void *, register_t *));
    312  1.16   mycroft int	compat_43_sys_sigblock	__P((struct proc *, void *, register_t *));
    313  1.16   mycroft int	compat_43_sys_sigsetmask	__P((struct proc *, void *, register_t *));
    314  1.36        pk int	sunos_sys_sigsuspend	__P((struct proc *, void *, register_t *));
    315  1.16   mycroft int	compat_43_sys_sigstack	__P((struct proc *, void *, register_t *));
    316  1.16   mycroft int	compat_43_sys_recvmsg	__P((struct proc *, void *, register_t *));
    317  1.16   mycroft int	compat_43_sys_sendmsg	__P((struct proc *, void *, register_t *));
    318  1.16   mycroft int	sys_gettimeofday	__P((struct proc *, void *, register_t *));
    319  1.16   mycroft int	sys_getrusage	__P((struct proc *, void *, register_t *));
    320  1.16   mycroft int	sys_getsockopt	__P((struct proc *, void *, register_t *));
    321  1.16   mycroft int	sys_readv	__P((struct proc *, void *, register_t *));
    322  1.16   mycroft int	sys_writev	__P((struct proc *, void *, register_t *));
    323  1.16   mycroft int	sys_settimeofday	__P((struct proc *, void *, register_t *));
    324  1.16   mycroft int	sys_fchown	__P((struct proc *, void *, register_t *));
    325  1.16   mycroft int	sys_fchmod	__P((struct proc *, void *, register_t *));
    326  1.16   mycroft int	compat_43_sys_recvfrom	__P((struct proc *, void *, register_t *));
    327  1.19   mycroft int	sys_setreuid	__P((struct proc *, void *, register_t *));
    328  1.19   mycroft int	sys_setregid	__P((struct proc *, void *, register_t *));
    329  1.16   mycroft int	sys_rename	__P((struct proc *, void *, register_t *));
    330  1.16   mycroft int	compat_43_sys_truncate	__P((struct proc *, void *, register_t *));
    331  1.16   mycroft int	compat_43_sys_ftruncate	__P((struct proc *, void *, register_t *));
    332  1.16   mycroft int	sys_flock	__P((struct proc *, void *, register_t *));
    333  1.16   mycroft int	sys_sendto	__P((struct proc *, void *, register_t *));
    334  1.16   mycroft int	sys_shutdown	__P((struct proc *, void *, register_t *));
    335  1.16   mycroft int	sys_socketpair	__P((struct proc *, void *, register_t *));
    336  1.16   mycroft int	sys_mkdir	__P((struct proc *, void *, register_t *));
    337  1.16   mycroft int	sys_rmdir	__P((struct proc *, void *, register_t *));
    338  1.16   mycroft int	sys_utimes	__P((struct proc *, void *, register_t *));
    339  1.16   mycroft int	sunos_sys_sigreturn	__P((struct proc *, void *, register_t *));
    340  1.16   mycroft int	sys_adjtime	__P((struct proc *, void *, register_t *));
    341  1.16   mycroft int	compat_43_sys_getpeername	__P((struct proc *, void *, register_t *));
    342  1.16   mycroft int	compat_43_sys_gethostid	__P((struct proc *, void *, register_t *));
    343  1.16   mycroft int	sunos_sys_getrlimit	__P((struct proc *, void *, register_t *));
    344  1.16   mycroft int	sunos_sys_setrlimit	__P((struct proc *, void *, register_t *));
    345  1.16   mycroft int	compat_43_sys_killpg	__P((struct proc *, void *, register_t *));
    346  1.16   mycroft int	compat_43_sys_getsockname	__P((struct proc *, void *, register_t *));
    347  1.22   mycroft int	sys_poll	__P((struct proc *, void *, register_t *));
    348  1.15   thorpej #ifdef NFSSERVER
    349  1.16   mycroft int	sunos_sys_nfssvc	__P((struct proc *, void *, register_t *));
    350  1.15   thorpej #else
    351  1.15   thorpej #endif
    352  1.27      fvdl int	compat_12_sys_getdirentries	__P((struct proc *, void *, register_t *));
    353  1.16   mycroft int	sunos_sys_statfs	__P((struct proc *, void *, register_t *));
    354  1.16   mycroft int	sunos_sys_fstatfs	__P((struct proc *, void *, register_t *));
    355  1.16   mycroft int	sunos_sys_unmount	__P((struct proc *, void *, register_t *));
    356  1.24   thorpej #ifdef NFS
    357  1.15   thorpej int	async_daemon	__P((struct proc *, void *, register_t *));
    358  1.16   mycroft int	sys_getfh	__P((struct proc *, void *, register_t *));
    359  1.15   thorpej #else
    360  1.15   thorpej #endif
    361  1.16   mycroft int	compat_09_sys_getdomainname	__P((struct proc *, void *, register_t *));
    362  1.16   mycroft int	compat_09_sys_setdomainname	__P((struct proc *, void *, register_t *));
    363  1.16   mycroft int	sunos_sys_quotactl	__P((struct proc *, void *, register_t *));
    364  1.16   mycroft int	sunos_sys_exportfs	__P((struct proc *, void *, register_t *));
    365  1.16   mycroft int	sunos_sys_mount	__P((struct proc *, void *, register_t *));
    366  1.16   mycroft int	sunos_sys_ustat	__P((struct proc *, void *, register_t *));
    367  1.15   thorpej #ifdef SYSVSEM
    368  1.16   mycroft int	compat_10_sys_semsys	__P((struct proc *, void *, register_t *));
    369  1.15   thorpej #else
    370  1.15   thorpej #endif
    371  1.15   thorpej #ifdef SYSVMSG
    372  1.16   mycroft int	compat_10_sys_msgsys	__P((struct proc *, void *, register_t *));
    373  1.15   thorpej #else
    374  1.15   thorpej #endif
    375  1.15   thorpej #ifdef SYSVSHM
    376  1.16   mycroft int	compat_10_sys_shmsys	__P((struct proc *, void *, register_t *));
    377  1.15   thorpej #else
    378  1.15   thorpej #endif
    379  1.16   mycroft int	sunos_sys_auditsys	__P((struct proc *, void *, register_t *));
    380  1.16   mycroft int	sunos_sys_getdents	__P((struct proc *, void *, register_t *));
    381  1.16   mycroft int	sys_setsid	__P((struct proc *, void *, register_t *));
    382  1.16   mycroft int	sys_fchdir	__P((struct proc *, void *, register_t *));
    383  1.16   mycroft int	sunos_sys_fchroot	__P((struct proc *, void *, register_t *));
    384  1.16   mycroft int	sunos_sys_sigpending	__P((struct proc *, void *, register_t *));
    385  1.16   mycroft int	sys_setpgid	__P((struct proc *, void *, register_t *));
    386  1.16   mycroft int	sys_pathconf	__P((struct proc *, void *, register_t *));
    387  1.16   mycroft int	sys_fpathconf	__P((struct proc *, void *, register_t *));
    388  1.16   mycroft int	sunos_sys_sysconf	__P((struct proc *, void *, register_t *));
    389  1.16   mycroft int	sunos_sys_uname	__P((struct proc *, void *, register_t *));
    390