NetBSD/sys/compat/sunos/sunos_syscallargs.h

376 lines
13 KiB
C
Raw Normal View History

1998-02-19 06:34:15 +03:00
/* $NetBSD: sunos_syscallargs.h,v 1.34 1998/02/19 03:34:19 thorpej Exp $ */
1998-01-09 09:19:02 +03:00
1994-10-26 02:04:53 +03:00
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.45 1998/02/19 00:43:56 thorpej Exp
1994-10-26 02:04:53 +03:00
*/
#define syscallarg(x) union { x datum; register_t pad; }
1995-10-07 09:41:34 +03:00
struct sunos_sys_open_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) path;
syscallarg(int) flags;
syscallarg(int) mode;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_wait4_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) pid;
syscallarg(int *) status;
syscallarg(int) options;
syscallarg(struct rusage *) rusage;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_creat_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) path;
syscallarg(int) mode;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_execv_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) path;
1994-11-14 10:34:26 +03:00
syscallarg(char **) argp;
1994-10-26 02:04:53 +03:00
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_mknod_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) path;
syscallarg(int) mode;
syscallarg(int) dev;
};
1996-08-31 03:08:21 +04:00
struct sunos_sys_stime_args {
syscallarg(time_t *) tp;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_ptrace_args {
1994-11-21 00:31:32 +03:00
syscallarg(int) req;
1995-10-07 09:41:34 +03:00
syscallarg(pid_t) pid;
syscallarg(caddr_t) addr;
1994-11-21 00:31:32 +03:00
syscallarg(int) data;
syscallarg(char *) addr2;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_access_args {
syscallarg(char *) path;
syscallarg(int) flags;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_stat_args {
syscallarg(char *) path;
1997-10-17 04:02:49 +04:00
syscallarg(struct stat43 *) ub;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_lstat_args {
syscallarg(char *) path;
1997-10-17 04:02:49 +04:00
syscallarg(struct stat43 *) ub;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_mctl_args {
1997-10-19 22:48:57 +04:00
syscallarg(void *) addr;
1994-10-26 02:04:53 +03:00
syscallarg(int) len;
syscallarg(int) func;
syscallarg(void *) arg;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_ioctl_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) fd;
syscallarg(u_long) com;
syscallarg(caddr_t) data;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_reboot_args {
1995-04-23 03:48:37 +04:00
syscallarg(int) howto;
syscallarg(char *) bootstr;
};
1996-08-27 02:52:17 +04:00
struct sunos_sys_execve_args {
syscallarg(char *) path;
syscallarg(char **) argp;
syscallarg(char **) envp;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_omsync_args {
1994-10-26 02:04:53 +03:00
syscallarg(caddr_t) addr;
1995-10-07 09:41:34 +03:00
syscallarg(size_t) len;
1994-10-26 02:04:53 +03:00
syscallarg(int) flags;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_mmap_args {
1997-10-19 22:48:57 +04:00
syscallarg(void *) addr;
1995-10-07 09:41:34 +03:00
syscallarg(size_t) len;
1994-10-26 02:04:53 +03:00
syscallarg(int) prot;
1995-10-07 09:41:34 +03:00
syscallarg(int) flags;
1994-10-26 02:04:53 +03:00
syscallarg(int) fd;
syscallarg(long) pos;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_setpgrp_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) pid;
syscallarg(int) pgid;
};
1996-02-28 19:06:02 +03:00
struct sunos_sys_fcntl_args {
syscallarg(int) fd;
syscallarg(int) cmd;
syscallarg(void *) arg;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_setsockopt_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) s;
syscallarg(int) level;
syscallarg(int) name;
syscallarg(caddr_t) val;
syscallarg(int) valsize;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_sigvec_args {
1995-07-05 17:14:09 +04:00
syscallarg(int) signum;
syscallarg(struct sigvec *) nsv;
syscallarg(struct sigvec *) osv;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_sigreturn_args {
syscallarg(struct sigcontext *) sigcntxp;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_getrlimit_args {
1994-10-26 02:04:53 +03:00
syscallarg(u_int) which;
syscallarg(struct orlimit *) rlp;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_setrlimit_args {
1994-10-26 02:04:53 +03:00
syscallarg(u_int) which;
syscallarg(struct orlimit *) rlp;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_nfssvc_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) fd;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_statfs_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) path;
syscallarg(struct sunos_statfs *) buf;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_fstatfs_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) fd;
syscallarg(struct sunos_statfs *) buf;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_unmount_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) path;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_quotactl_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) cmd;
syscallarg(char *) special;
syscallarg(int) uid;
syscallarg(caddr_t) addr;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_exportfs_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) path;
syscallarg(char *) ex;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_mount_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) type;
syscallarg(char *) dir;
syscallarg(int) flags;
syscallarg(caddr_t) data;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_ustat_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) dev;
syscallarg(struct sunos_ustat *) buf;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_auditsys_args {
1994-10-26 02:04:53 +03:00
syscallarg(char *) record;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_getdents_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) fd;
syscallarg(char *) buf;
syscallarg(int) nbytes;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_fchroot_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) fd;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_sigpending_args {
1994-10-26 02:04:53 +03:00
syscallarg(int *) mask;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_sysconf_args {
1994-10-26 02:04:53 +03:00
syscallarg(int) name;
};
1995-10-07 09:41:34 +03:00
struct sunos_sys_uname_args {
1994-10-26 02:04:53 +03:00
syscallarg(struct sunos_utsname *) name;
};
1995-09-20 02:38:15 +04:00
/*
* System call prototypes.
*/
1995-10-07 09:41:34 +03:00
int sys_nosys __P((struct proc *, void *, register_t *));
int sys_exit __P((struct proc *, void *, register_t *));
int sys_fork __P((struct proc *, void *, register_t *));
int sys_read __P((struct proc *, void *, register_t *));
int sys_write __P((struct proc *, void *, register_t *));
int sunos_sys_open __P((struct proc *, void *, register_t *));
int sys_close __P((struct proc *, void *, register_t *));
int sunos_sys_wait4 __P((struct proc *, void *, register_t *));
int sunos_sys_creat __P((struct proc *, void *, register_t *));
int sys_link __P((struct proc *, void *, register_t *));
int sys_unlink __P((struct proc *, void *, register_t *));
int sunos_sys_execv __P((struct proc *, void *, register_t *));
int sys_chdir __P((struct proc *, void *, register_t *));
int sunos_sys_mknod __P((struct proc *, void *, register_t *));
int sys_chmod __P((struct proc *, void *, register_t *));
int sys_chown __P((struct proc *, void *, register_t *));
int sys_obreak __P((struct proc *, void *, register_t *));
int compat_43_sys_lseek __P((struct proc *, void *, register_t *));
int sys_getpid __P((struct proc *, void *, register_t *));
int sys_setuid __P((struct proc *, void *, register_t *));
int sys_getuid __P((struct proc *, void *, register_t *));
1996-08-31 03:08:21 +04:00
int sunos_sys_stime __P((struct proc *, void *, register_t *));
1995-10-07 09:41:34 +03:00
int sunos_sys_ptrace __P((struct proc *, void *, register_t *));
int sunos_sys_access __P((struct proc *, void *, register_t *));
int sys_sync __P((struct proc *, void *, register_t *));
int sys_kill __P((struct proc *, void *, register_t *));
int sunos_sys_stat __P((struct proc *, void *, register_t *));
int sunos_sys_lstat __P((struct proc *, void *, register_t *));
int sys_dup __P((struct proc *, void *, register_t *));
int sys_pipe __P((struct proc *, void *, register_t *));
int sys_profil __P((struct proc *, void *, register_t *));
int sys_setgid __P((struct proc *, void *, register_t *));
int sys_getgid __P((struct proc *, void *, register_t *));
int sys_acct __P((struct proc *, void *, register_t *));
int sunos_sys_mctl __P((struct proc *, void *, register_t *));
int sunos_sys_ioctl __P((struct proc *, void *, register_t *));
int sunos_sys_reboot __P((struct proc *, void *, register_t *));
int sys_symlink __P((struct proc *, void *, register_t *));
int sys_readlink __P((struct proc *, void *, register_t *));
1996-08-27 02:52:17 +04:00
int sunos_sys_execve __P((struct proc *, void *, register_t *));
1995-10-07 09:41:34 +03:00
int sys_umask __P((struct proc *, void *, register_t *));
int sys_chroot __P((struct proc *, void *, register_t *));
int compat_43_sys_fstat __P((struct proc *, void *, register_t *));
int compat_43_sys_getpagesize __P((struct proc *, void *, register_t *));
int sunos_sys_omsync __P((struct proc *, void *, register_t *));
int sys_vfork __P((struct proc *, void *, register_t *));
int sys_sbrk __P((struct proc *, void *, register_t *));
int sys_sstk __P((struct proc *, void *, register_t *));
int sunos_sys_mmap __P((struct proc *, void *, register_t *));
int sys_ovadvise __P((struct proc *, void *, register_t *));
int sys_munmap __P((struct proc *, void *, register_t *));
int sys_mprotect __P((struct proc *, void *, register_t *));
int sys_madvise __P((struct proc *, void *, register_t *));
int sunos_sys_vhangup __P((struct proc *, void *, register_t *));
int sys_mincore __P((struct proc *, void *, register_t *));
int sys_getgroups __P((struct proc *, void *, register_t *));
int sys_setgroups __P((struct proc *, void *, register_t *));
int sys_getpgrp __P((struct proc *, void *, register_t *));
int sunos_sys_setpgrp __P((struct proc *, void *, register_t *));
int sys_setitimer __P((struct proc *, void *, register_t *));
1997-06-13 23:10:11 +04:00
int compat_12_sys_swapon __P((struct proc *, void *, register_t *));
1995-10-07 09:41:34 +03:00
int sys_getitimer __P((struct proc *, void *, register_t *));
int compat_43_sys_gethostname __P((struct proc *, void *, register_t *));
int compat_43_sys_sethostname __P((struct proc *, void *, register_t *));
int compat_43_sys_getdtablesize __P((struct proc *, void *, register_t *));
int sys_dup2 __P((struct proc *, void *, register_t *));
1996-02-28 19:06:02 +03:00
int sunos_sys_fcntl __P((struct proc *, void *, register_t *));
1995-10-07 09:41:34 +03:00
int sys_select __P((struct proc *, void *, register_t *));
int sys_fsync __P((struct proc *, void *, register_t *));
int sys_setpriority __P((struct proc *, void *, register_t *));
int sys_socket __P((struct proc *, void *, register_t *));
int sys_connect __P((struct proc *, void *, register_t *));
int compat_43_sys_accept __P((struct proc *, void *, register_t *));
int sys_getpriority __P((struct proc *, void *, register_t *));
int compat_43_sys_send __P((struct proc *, void *, register_t *));
int compat_43_sys_recv __P((struct proc *, void *, register_t *));
int sys_bind __P((struct proc *, void *, register_t *));
int sunos_sys_setsockopt __P((struct proc *, void *, register_t *));
int sys_listen __P((struct proc *, void *, register_t *));
int sunos_sys_sigvec __P((struct proc *, void *, register_t *));
int compat_43_sys_sigblock __P((struct proc *, void *, register_t *));
int compat_43_sys_sigsetmask __P((struct proc *, void *, register_t *));
int sys_sigsuspend __P((struct proc *, void *, register_t *));
int compat_43_sys_sigstack __P((struct proc *, void *, register_t *));
int compat_43_sys_recvmsg __P((struct proc *, void *, register_t *));
int compat_43_sys_sendmsg __P((struct proc *, void *, register_t *));
int sys_gettimeofday __P((struct proc *, void *, register_t *));
int sys_getrusage __P((struct proc *, void *, register_t *));
int sys_getsockopt __P((struct proc *, void *, register_t *));
int sys_readv __P((struct proc *, void *, register_t *));
int sys_writev __P((struct proc *, void *, register_t *));
int sys_settimeofday __P((struct proc *, void *, register_t *));
int sys_fchown __P((struct proc *, void *, register_t *));
int sys_fchmod __P((struct proc *, void *, register_t *));
int compat_43_sys_recvfrom __P((struct proc *, void *, register_t *));
1996-06-23 15:16:12 +04:00
int sys_setreuid __P((struct proc *, void *, register_t *));
int sys_setregid __P((struct proc *, void *, register_t *));
1995-10-07 09:41:34 +03:00
int sys_rename __P((struct proc *, void *, register_t *));
int compat_43_sys_truncate __P((struct proc *, void *, register_t *));
int compat_43_sys_ftruncate __P((struct proc *, void *, register_t *));
int sys_flock __P((struct proc *, void *, register_t *));
int sys_sendto __P((struct proc *, void *, register_t *));
int sys_shutdown __P((struct proc *, void *, register_t *));
int sys_socketpair __P((struct proc *, void *, register_t *));
int sys_mkdir __P((struct proc *, void *, register_t *));
int sys_rmdir __P((struct proc *, void *, register_t *));
int sys_utimes __P((struct proc *, void *, register_t *));
int sunos_sys_sigreturn __P((struct proc *, void *, register_t *));
int sys_adjtime __P((struct proc *, void *, register_t *));
int compat_43_sys_getpeername __P((struct proc *, void *, register_t *));
int compat_43_sys_gethostid __P((struct proc *, void *, register_t *));
int sunos_sys_getrlimit __P((struct proc *, void *, register_t *));
int sunos_sys_setrlimit __P((struct proc *, void *, register_t *));
int compat_43_sys_killpg __P((struct proc *, void *, register_t *));
int compat_43_sys_getsockname __P((struct proc *, void *, register_t *));
1996-09-07 16:56:49 +04:00
int sys_poll __P((struct proc *, void *, register_t *));
1995-09-20 02:38:15 +04:00
#ifdef NFSSERVER
1995-10-07 09:41:34 +03:00
int sunos_sys_nfssvc __P((struct proc *, void *, register_t *));
1995-09-20 02:38:15 +04:00
#else
#endif
1997-10-10 16:54:39 +04:00
int compat_12_sys_getdirentries __P((struct proc *, void *, register_t *));
1995-10-07 09:41:34 +03:00
int sunos_sys_statfs __P((struct proc *, void *, register_t *));
int sunos_sys_fstatfs __P((struct proc *, void *, register_t *));
int sunos_sys_unmount __P((struct proc *, void *, register_t *));
#ifdef NFS
1995-09-20 02:38:15 +04:00
int async_daemon __P((struct proc *, void *, register_t *));
1995-10-07 09:41:34 +03:00
int sys_getfh __P((struct proc *, void *, register_t *));
1995-09-20 02:38:15 +04:00
#else
#endif
1995-10-07 09:41:34 +03:00
int compat_09_sys_getdomainname __P((struct proc *, void *, register_t *));
int compat_09_sys_setdomainname __P((struct proc *, void *, register_t *));
int sunos_sys_quotactl __P((struct proc *, void *, register_t *));
int sunos_sys_exportfs __P((struct proc *, void *, register_t *));
int sunos_sys_mount __P((struct proc *, void *, register_t *));
int sunos_sys_ustat __P((struct proc *, void *, register_t *));
1995-09-20 02:38:15 +04:00
#ifdef SYSVSEM
1995-10-07 09:41:34 +03:00
int compat_10_sys_semsys __P((struct proc *, void *, register_t *));
1995-09-20 02:38:15 +04:00
#else
#endif
#ifdef SYSVMSG
1995-10-07 09:41:34 +03:00
int compat_10_sys_msgsys __P((struct proc *, void *, register_t *));
1995-09-20 02:38:15 +04:00
#else
#endif
#ifdef SYSVSHM
1995-10-07 09:41:34 +03:00
int compat_10_sys_shmsys __P((struct proc *, void *, register_t *));
1995-09-20 02:38:15 +04:00
#else
#endif
1995-10-07 09:41:34 +03:00
int sunos_sys_auditsys __P((struct proc *, void *, register_t *));
int sunos_sys_getdents __P((struct proc *, void *, register_t *));
int sys_setsid __P((struct proc *, void *, register_t *));
int sys_fchdir __P((struct proc *, void *, register_t *));
int sunos_sys_fchroot __P((struct proc *, void *, register_t *));
int sunos_sys_sigpending __P((struct proc *, void *, register_t *));
int sys_setpgid __P((struct proc *, void *, register_t *));
int sys_pathconf __P((struct proc *, void *, register_t *));
int sys_fpathconf __P((struct proc *, void *, register_t *));
int sunos_sys_sysconf __P((struct proc *, void *, register_t *));
int sunos_sys_uname __P((struct proc *, void *, register_t *));