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