Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/linux/arch/alpha Regen.



details:   https://anonhg.NetBSD.org/src/rev/993e9c1d13b2
branches:  trunk
changeset: 499322:993e9c1d13b2
user:      erh <erh%NetBSD.org@localhost>
date:      Fri Nov 17 03:58:01 2000 +0000

description:
Regen.

diffstat:

 sys/compat/linux/arch/alpha/linux_syscall.h     |   16 ++-
 sys/compat/linux/arch/alpha/linux_syscallargs.h |  117 +++++++++++++++++++++++-
 sys/compat/linux/arch/alpha/linux_syscalls.c    |   53 +++++-----
 sys/compat/linux/arch/alpha/linux_sysent.c      |   91 +++++++++---------
 4 files changed, 202 insertions(+), 75 deletions(-)

diffs (truncated from 705 to 300 lines):

diff -r 83005403f29e -r 993e9c1d13b2 sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h       Fri Nov 17 03:55:17 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h       Fri Nov 17 03:58:01 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.22 2000/11/08 04:19:00 erh Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.23 2000/11/17 03:58:01 erh Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.20 2000/11/01 20:38:49 jdolecek Exp 
+ * created from        NetBSD: syscalls.master,v 1.22 2000/11/17 03:55:18 erh Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -91,6 +91,9 @@
 /* syscall: "getgid" ret: "gid_t" args: */
 #define        LINUX_SYS_getgid        47
 
+/* syscall: "sigprocmask" ret: "int" args: "int" "sigset13_t" */
+#define        LINUX_SYS_sigprocmask   48
+
 /* syscall: "acct" ret: "int" args: "const char *" */
 #define        LINUX_SYS_acct  51
 
@@ -202,6 +205,9 @@
 /* syscall: "sigsuspend" ret: "int" args: "caddr_t" "int" "int" */
 #define        LINUX_SYS_sigsuspend    111
 
+/* syscall: "sigstack" ret: "int" args: "struct sigstack *" "struct sigstack *" */
+#define        LINUX_SYS_sigstack      112
+
 /* syscall: "recvmsg" ret: "size_t" args: "int" "struct msghdr *" "int" */
 #define        LINUX_SYS_recvmsg       113
 
@@ -280,6 +286,12 @@
 /* syscall: "sigaction" ret: "int" args: "int" "const struct linux_old_sigaction *" "struct linux_old_sigaction *" */
 #define        LINUX_SYS_sigaction     156
 
+/* syscall: "getdirentries" ret: "int" args: "int" "char *" "u_int" "long *" */
+#define        LINUX_SYS_getdirentries 159
+
+/* syscall: "getdomainname" ret: "int" args: "char *" "int" */
+#define        LINUX_SYS_getdomainname 165
+
 /* syscall: "msgctl" ret: "int" args: "int" "int" "struct linux_msqid_ds *" */
 #define        LINUX_SYS_msgctl        200
 
diff -r 83005403f29e -r 993e9c1d13b2 sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h   Fri Nov 17 03:55:17 2000 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h   Fri Nov 17 03:58:01 2000 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.22 2000/11/08 04:19:01 erh Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.23 2000/11/17 03:58:01 erh Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.20 2000/11/01 20:38:49 jdolecek Exp 
+ * created from        NetBSD: syscalls.master,v 1.22 2000/11/17 03:55:18 erh Exp 
  */
 
 #ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -26,6 +26,13 @@
                } be;                                                   \
        }
 
+struct osf1_sys_wait4_args {
+       syscallarg(int) pid;
+       syscallarg(int *) status;
+       syscallarg(int) options;
+       syscallarg(struct osf1_rusage *) rusage;
+};
+
 struct linux_sys_creat_args {
        syscallarg(const char *) path;
        syscallarg(mode_t) mode;
@@ -60,6 +67,13 @@
        syscallarg(char *) nsize;
 };
 
+struct osf1_sys_mount_args {
+       syscallarg(int) type;
+       syscallarg(const char *) path;
+       syscallarg(int) flags;
+       syscallarg(caddr_t) data;
+};
+
 struct linux_sys_ptrace_args {
        syscallarg(long) request;
        syscallarg(long) pid;
@@ -77,6 +91,13 @@
        syscallarg(int) signum;
 };
 
+struct osf1_sys_set_program_attributes_args {
+       syscallarg(caddr_t) taddr;
+       syscallarg(unsigned long) tsize;
+       syscallarg(caddr_t) daddr;
+       syscallarg(unsigned long) dsize;
+};
+
 struct linux_sys_open_args {
        syscallarg(const char *) path;
        syscallarg(int) flags;
@@ -120,6 +141,12 @@
        syscallarg(struct linux_stat *) sp;
 };
 
+struct osf1_sys_setitimer_args {
+       syscallarg(u_int) which;
+       syscallarg(struct osf1_itimerval *) itv;
+       syscallarg(struct osf1_itimerval *) oitv;
+};
+
 struct linux_sys_fstat_args {
        syscallarg(int) fd;
        syscallarg(struct linux_stat *) sp;
@@ -131,6 +158,14 @@
        syscallarg(void *) arg;
 };
 
+struct osf1_sys_select_args {
+       syscallarg(u_int) nd;
+       syscallarg(fd_set *) in;
+       syscallarg(fd_set *) ou;
+       syscallarg(fd_set *) ex;
+       syscallarg(struct osf1_timeval *) tv;
+};
+
 struct linux_sys_socket_args {
        syscallarg(int) domain;
        syscallarg(int) type;
@@ -161,6 +196,16 @@
        syscallarg(int) mask;
 };
 
+struct osf1_sys_gettimeofday_args {
+       syscallarg(struct osf1_timeval *) tv;
+       syscallarg(struct osf1_timezone *) tzp;
+};
+
+struct osf1_sys_getrusage_args {
+       syscallarg(int) who;
+       syscallarg(struct osf1_rusage *) rusage;
+};
+
 struct linux_sys_getsockopt_args {
        syscallarg(int) s;
        syscallarg(int) level;
@@ -169,6 +214,11 @@
        syscallarg(int *) optlen;
 };
 
+struct osf1_sys_settimeofday_args {
+       syscallarg(struct osf1_timeval *) tv;
+       syscallarg(struct osf1_timezone *) tzp;
+};
+
 struct linux_sys_fchown_args {
        syscallarg(int) fd;
        syscallarg(int) uid;
@@ -229,12 +279,29 @@
        syscallarg(const char *) path;
 };
 
+struct osf1_sys_utimes_args {
+       syscallarg(const char *) path;
+       syscallarg(const struct osf1_timeval *) tptr;
+};
+
 struct linux_sys_sigaction_args {
        syscallarg(int) signum;
        syscallarg(const struct linux_old_sigaction *) nsa;
        syscallarg(struct linux_old_sigaction *) osa;
 };
 
+struct osf1_sys_statfs_args {
+       syscallarg(const char *) path;
+       syscallarg(struct osf1_statfs *) buf;
+       syscallarg(int) len;
+};
+
+struct osf1_sys_fstatfs_args {
+       syscallarg(int) fd;
+       syscallarg(struct osf1_statfs *) buf;
+       syscallarg(int) len;
+};
+
 struct linux_sys_olduname_args {
        syscallarg(struct linux_old_utsname *) up;
 };
@@ -255,6 +322,33 @@
        syscallarg(int) pid;
 };
 
+struct osf1_sys_sysinfo_args {
+       syscallarg(int) cmd;
+       syscallarg(char) buf;
+       syscallarg(long) len;
+};
+
+struct osf1_sys_usleep_thread_args {
+       syscallarg(struct osf1_timeval *) sleep;
+       syscallarg(struct osf1_timeval *) slept;
+};
+
+struct osf1_sys_getsysinfo_args {
+       syscallarg(u_long) op;
+       syscallarg(caddr_t) buffer;
+       syscallarg(u_long) nbytes;
+       syscallarg(caddr_t) arg;
+       syscallarg(u_long) flag;
+};
+
+struct osf1_sys_setsysinfo_args {
+       syscallarg(u_long) op;
+       syscallarg(caddr_t) buffer;
+       syscallarg(u_long) nbytes;
+       syscallarg(caddr_t) arg;
+       syscallarg(u_long) flag;
+};
+
 struct linux_sys_fdatasync_args {
        syscallarg(int) fd;
 };
@@ -431,6 +525,7 @@
 int    sys_read(struct proc *, void *, register_t *);
 int    sys_write(struct proc *, void *, register_t *);
 int    sys_close(struct proc *, void *, register_t *);
+int    osf1_sys_wait4(struct proc *, void *, register_t *);
 int    linux_sys_creat(struct proc *, void *, register_t *);
 int    sys_link(struct proc *, void *, register_t *);
 int    linux_sys_unlink(struct proc *, void *, register_t *);
@@ -442,6 +537,7 @@
 int    linux_sys_brk(struct proc *, void *, register_t *);
 int    compat_43_sys_lseek(struct proc *, void *, register_t *);
 int    sys_getpid(struct proc *, void *, register_t *);
+int    osf1_sys_mount(struct proc *, void *, register_t *);
 int    sys_setuid(struct proc *, void *, register_t *);
 int    sys_getuid(struct proc *, void *, register_t *);
 int    linux_sys_ptrace(struct proc *, void *, register_t *);
@@ -451,8 +547,10 @@
 int    sys_setpgid(struct proc *, void *, register_t *);
 int    sys_dup(struct proc *, void *, register_t *);
 int    linux_sys_pipe(struct proc *, void *, register_t *);
+int    osf1_sys_set_program_attributes(struct proc *, void *, register_t *);
 int    linux_sys_open(struct proc *, void *, register_t *);
 int    sys_getgid(struct proc *, void *, register_t *);
+int    compat_13_sys_sigprocmask(struct proc *, void *, register_t *);
 int    sys_acct(struct proc *, void *, register_t *);
 int    linux_sys_sigpending(struct proc *, void *, register_t *);
 int    linux_sys_ioctl(struct proc *, void *, register_t *);
@@ -471,11 +569,13 @@
 int    sys_mprotect(struct proc *, void *, register_t *);
 int    sys_getgroups(struct proc *, void *, register_t *);
 int    sys_setgroups(struct proc *, void *, register_t *);
+int    osf1_sys_setitimer(struct proc *, void *, register_t *);
 int    compat_43_sys_gethostname(struct proc *, void *, register_t *);
 int    compat_43_sys_sethostname(struct proc *, void *, register_t *);
 int    sys_dup2(struct proc *, void *, register_t *);
 int    linux_sys_fstat(struct proc *, void *, register_t *);
 int    linux_sys_fcntl(struct proc *, void *, register_t *);
+int    osf1_sys_select(struct proc *, void *, register_t *);
 int    sys_poll(struct proc *, void *, register_t *);
 int    sys_fsync(struct proc *, void *, register_t *);
 int    sys_setpriority(struct proc *, void *, register_t *);
@@ -490,11 +590,15 @@
 int    linux_sys_setsockopt(struct proc *, void *, register_t *);
 int    sys_listen(struct proc *, void *, register_t *);
 int    linux_sys_sigsuspend(struct proc *, void *, register_t *);
+int    compat_43_sys_sigstack(struct proc *, void *, register_t *);
 int    sys_recvmsg(struct proc *, void *, register_t *);
 int    sys_sendmsg(struct proc *, void *, register_t *);
+int    osf1_sys_gettimeofday(struct proc *, void *, register_t *);
+int    osf1_sys_getrusage(struct proc *, void *, register_t *);
 int    linux_sys_getsockopt(struct proc *, void *, register_t *);
 int    sys_readv(struct proc *, void *, register_t *);
 int    sys_writev(struct proc *, void *, register_t *);
+int    osf1_sys_settimeofday(struct proc *, void *, register_t *);
 int    linux_sys_fchown(struct proc *, void *, register_t *);
 int    sys_fchmod(struct proc *, void *, register_t *);
 int    linux_sys_recvfrom(struct proc *, void *, register_t *);
@@ -510,12 +614,17 @@
 int    linux_sys_socketpair(struct proc *, void *, register_t *);
 int    linux_sys_mkdir(struct proc *, void *, register_t *);
 int    linux_sys_rmdir(struct proc *, void *, register_t *);
+int    osf1_sys_utimes(struct proc *, void *, register_t *);
 int    compat_43_sys_getpeername(struct proc *, void *, register_t *);
 int    compat_43_sys_getrlimit(struct proc *, void *, register_t *);
 int    compat_43_sys_setrlimit(struct proc *, void *, register_t *);
 int    sys_setsid(struct proc *, void *, register_t *);
 int    compat_43_sys_getsockname(struct proc *, void *, register_t *);
 int    linux_sys_sigaction(struct proc *, void *, register_t *);
+int    compat_43_sys_getdirentries(struct proc *, void *, register_t *);
+int    osf1_sys_statfs(struct proc *, void *, register_t *);
+int    osf1_sys_fstatfs(struct proc *, void *, register_t *);
+int    compat_09_sys_getdomainname(struct proc *, void *, register_t *);



Home | Main Index | Thread Index | Old Index