summaryrefslogtreecommitdiff
path: root/sys/compat/hpux/hpux_syscallargs.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 04:47:45 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 04:47:45 +0000
commit9043b73586e8eff30f33a97a5b1802f1032c3288 (patch)
tree5238a6096e950295682af33b86d1ed58fe4b596e /sys/compat/hpux/hpux_syscallargs.h
parentdd79441110b3311ff76301f49a0a640d84ead876 (diff)
update from netbsd
Diffstat (limited to 'sys/compat/hpux/hpux_syscallargs.h')
-rw-r--r--sys/compat/hpux/hpux_syscallargs.h138
1 files changed, 99 insertions, 39 deletions
diff --git a/sys/compat/hpux/hpux_syscallargs.h b/sys/compat/hpux/hpux_syscallargs.h
index 63af42f3115..045caa1396d 100644
--- a/sys/compat/hpux/hpux_syscallargs.h
+++ b/sys/compat/hpux/hpux_syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.8 1995/10/07 06:26:42 mycroft Exp
+ * created from NetBSD: syscalls.master,v 1.9 1995/11/28 08:39:56 thorpej Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -34,21 +34,46 @@ struct hpux_sys_creat_args {
syscallarg(int) mode;
};
+struct hpux_sys_unlink_args {
+ syscallarg(char *) path;
+};
+
struct hpux_sys_execv_args {
syscallarg(char *) path;
syscallarg(char **) argp;
};
-struct compat_hpux_6x_sys_time_args {
+struct hpux_sys_chdir_args {
+ syscallarg(char *) path;
+};
+
+struct hpux_sys_time_6x_args {
syscallarg(time_t *) t;
};
-struct compat_hpux_6x_sys_stat_args {
+struct hpux_sys_mknod_args {
+ syscallarg(char *) path;
+ syscallarg(int) mode;
+ syscallarg(int) dev;
+};
+
+struct hpux_sys_chmod_args {
+ syscallarg(char *) path;
+ syscallarg(int) mode;
+};
+
+struct hpux_sys_chown_args {
+ syscallarg(char *) path;
+ syscallarg(int) uid;
+ syscallarg(int) gid;
+};
+
+struct hpux_sys_stat_6x_args {
syscallarg(char *) path;
syscallarg(struct hpux_ostat *) sb;
};
-struct compat_hpux_6x_sys_stime_args {
+struct hpux_sys_stime_6x_args {
syscallarg(int) time;
};
@@ -59,35 +84,40 @@ struct hpux_sys_ptrace_args {
syscallarg(int) data;
};
-struct compat_hpux_6x_sys_alarm_args {
+struct hpux_sys_alarm_6x_args {
syscallarg(int) deltat;
};
-struct compat_hpux_6x_sys_fstat_args {
+struct hpux_sys_fstat_6x_args {
syscallarg(int) fd;
syscallarg(struct hpux_ostat *) sb;
};
-struct compat_hpux_6x_sys_utime_args {
+struct hpux_sys_utime_6x_args {
syscallarg(char *) fname;
syscallarg(time_t *) tptr;
};
-struct compat_hpux_6x_sys_stty_args {
+struct hpux_sys_stty_6x_args {
syscallarg(int) fd;
syscallarg(caddr_t) arg;
};
-struct compat_hpux_6x_sys_gtty_args {
+struct hpux_sys_gtty_6x_args {
syscallarg(int) fd;
syscallarg(caddr_t) arg;
};
-struct compat_hpux_6x_sys_nice_args {
+struct hpux_sys_access_args {
+ syscallarg(char *) path;
+ syscallarg(int) flags;
+};
+
+struct hpux_sys_nice_6x_args {
syscallarg(int) nval;
};
-struct compat_hpux_6x_sys_ftime_args {
+struct hpux_sys_ftime_6x_args {
syscallarg(struct hpux_timeb *) tp;
};
@@ -110,11 +140,11 @@ struct hpux_sys_dup_args {
syscallarg(int) fd;
};
-struct compat_hpux_6x_sys_times_args {
+struct hpux_sys_times_6x_args {
syscallarg(struct tms *) tms;
};
-struct compat_hpux_6x_sys_ssig_args {
+struct hpux_sys_ssig_6x_args {
syscallarg(int) signo;
syscallarg(sig_t) fun;
};
@@ -125,12 +155,23 @@ struct hpux_sys_ioctl_args {
syscallarg(caddr_t) data;
};
+struct hpux_sys_symlink_args {
+ syscallarg(char *) path;
+ syscallarg(char *) link;
+};
+
struct hpux_sys_utssys_args {
syscallarg(struct hpux_utsname *) uts;
syscallarg(int) dev;
syscallarg(int) request;
};
+struct hpux_sys_readlink_args {
+ syscallarg(char *) path;
+ syscallarg(char *) buf;
+ syscallarg(int) count;
+};
+
struct hpux_sys_fcntl_args {
syscallarg(int) fd;
syscallarg(int) cmd;
@@ -213,10 +254,29 @@ struct hpux_sys_setresgid_args {
syscallarg(gid_t) s;
};
+struct hpux_sys_rename_args {
+ syscallarg(char *) from;
+ syscallarg(char *) to;
+};
+
+struct hpux_sys_truncate_args {
+ syscallarg(char *) path;
+ syscallarg(long) length;
+};
+
struct hpux_sys_sysconf_args {
syscallarg(int) name;
};
+struct hpux_sys_mkdir_args {
+ syscallarg(char *) path;
+ syscallarg(int) mode;
+};
+
+struct hpux_sys_rmdir_args {
+ syscallarg(char *) path;
+};
+
struct hpux_sys_getrlimit_args {
syscallarg(u_int) which;
syscallarg(struct ogetrlimit *) rlp;
@@ -322,46 +382,46 @@ int sys_close __P((struct proc *, void *, register_t *));
int hpux_sys_wait __P((struct proc *, void *, register_t *));
int hpux_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 hpux_sys_unlink __P((struct proc *, void *, register_t *));
int hpux_sys_execv __P((struct proc *, void *, register_t *));
-int sys_chdir __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_time __P((struct proc *, void *, register_t *));
-int 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 hpux_sys_chdir __P((struct proc *, void *, register_t *));
+int hpux_sys_time_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_mknod __P((struct proc *, void *, register_t *));
+int hpux_sys_chmod __P((struct proc *, void *, register_t *));
+int hpux_sys_chown __P((struct proc *, void *, register_t *));
int sys_obreak __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_stat __P((struct proc *, void *, register_t *));
+int hpux_sys_stat_6x __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 *));
-int compat_hpux_6x_sys_stime __P((struct proc *, void *, register_t *));
+int hpux_sys_stime_6x __P((struct proc *, void *, register_t *));
int hpux_sys_ptrace __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_alarm __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_fstat __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_pause __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_utime __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_stty __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_gtty __P((struct proc *, void *, register_t *));
-int sys_access __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_nice __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_ftime __P((struct proc *, void *, register_t *));
+int hpux_sys_alarm_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_fstat_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_pause_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_utime_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_stty_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_gtty_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_access __P((struct proc *, void *, register_t *));
+int hpux_sys_nice_6x __P((struct proc *, void *, register_t *));
+int hpux_sys_ftime_6x __P((struct proc *, void *, register_t *));
int sys_sync __P((struct proc *, void *, register_t *));
int hpux_sys_kill __P((struct proc *, void *, register_t *));
int hpux_sys_stat __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_setpgrp __P((struct proc *, void *, register_t *));
+int hpux_sys_setpgrp_6x __P((struct proc *, void *, register_t *));
int hpux_sys_lstat __P((struct proc *, void *, register_t *));
int hpux_sys_dup __P((struct proc *, void *, register_t *));
int sys_pipe __P((struct proc *, void *, register_t *));
-int compat_hpux_6x_sys_times __P((struct proc *, void *, register_t *));
+int hpux_sys_times_6x __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 compat_hpux_6x_sys_ssig __P((struct proc *, void *, register_t *));
+int hpux_sys_ssig_6x __P((struct proc *, void *, register_t *));
int hpux_sys_ioctl __P((struct proc *, void *, register_t *));
-int sys_symlink __P((struct proc *, void *, register_t *));
+int hpux_sys_symlink __P((struct proc *, void *, register_t *));
int hpux_sys_utssys __P((struct proc *, void *, register_t *));
-int sys_readlink __P((struct proc *, void *, register_t *));
+int hpux_sys_readlink __P((struct proc *, void *, register_t *));
int sys_execve __P((struct proc *, void *, register_t *));
int sys_umask __P((struct proc *, void *, register_t *));
int sys_chroot __P((struct proc *, void *, register_t *));
@@ -398,12 +458,12 @@ int sys_fchown __P((struct proc *, void *, register_t *));
int sys_fchmod __P((struct proc *, void *, register_t *));
int hpux_sys_setresuid __P((struct proc *, void *, register_t *));
int hpux_sys_setresgid __P((struct proc *, void *, register_t *));
-int sys_rename __P((struct proc *, void *, register_t *));
-int compat_43_sys_truncate __P((struct proc *, void *, register_t *));
+int hpux_sys_rename __P((struct proc *, void *, register_t *));
+int hpux_sys_truncate __P((struct proc *, void *, register_t *));
int compat_43_sys_ftruncate __P((struct proc *, void *, register_t *));
int hpux_sys_sysconf __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 hpux_sys_mkdir __P((struct proc *, void *, register_t *));
+int hpux_sys_rmdir __P((struct proc *, void *, register_t *));
int hpux_sys_getrlimit __P((struct proc *, void *, register_t *));
int hpux_sys_setrlimit __P((struct proc *, void *, register_t *));
int hpux_sys_rtprio __P((struct proc *, void *, register_t *));