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/c4558ea14898
branches:  trunk
changeset: 522418:c4558ea14898
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Feb 18 16:36:20 2002 +0000

description:
regen

diffstat:

 sys/compat/linux/arch/alpha/linux_syscall.h     |  10 ++++++++--
 sys/compat/linux/arch/alpha/linux_syscallargs.h |  20 ++++++++++++++++++--
 sys/compat/linux/arch/alpha/linux_syscalls.c    |  10 +++++-----
 sys/compat/linux/arch/alpha/linux_sysent.c      |  14 +++++++-------
 4 files changed, 38 insertions(+), 16 deletions(-)

diffs (143 lines):

diff -r 68834e3ae0d3 -r c4558ea14898 sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h       Mon Feb 18 16:35:57 2002 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h       Mon Feb 18 16:36:20 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.42 2002/02/15 16:47:59 christos Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.43 2002/02/18 16:36:20 christos Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.36 2001/09/08 07:09:43 manu Exp 
+ * created from        NetBSD: syscalls.master,v 1.38 2002/02/18 16:35:57 christos Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -295,6 +295,12 @@
 /* syscall: "setdomainname" ret: "int" args: "char *" "int" */
 #define        LINUX_SYS_setdomainname 166
 
+/* syscall: "ugetrlimit" ret: "int" args: "int" "struct rlimit *" */
+#define        LINUX_SYS_ugetrlimit    191
+
+/* syscall: "mmap2" ret: "int" args: "void *" "size_t" "int" "int" "int" "off_t" */
+#define        LINUX_SYS_mmap2 192
+
 /* syscall: "msgctl" ret: "int" args: "int" "int" "struct linux_msqid_ds *" */
 #define        LINUX_SYS_msgctl        200
 
diff -r 68834e3ae0d3 -r c4558ea14898 sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h   Mon Feb 18 16:35:57 2002 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h   Mon Feb 18 16:36:20 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.41 2002/02/15 16:47:59 christos Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.42 2002/02/18 16:36:21 christos Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.36 2001/09/08 07:09:43 manu Exp 
+ * created from        NetBSD: syscalls.master,v 1.38 2002/02/18 16:35:57 christos Exp 
  */
 
 #ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -341,6 +341,20 @@
        syscallarg(int) len;
 };
 
+struct linux_sys_ugetrlimit_args {
+       syscallarg(int) which;
+       syscallarg(struct rlimit *) rlp;
+};
+
+struct linux_sys_mmap2_args {
+       syscallarg(void *) addr;
+       syscallarg(size_t) len;
+       syscallarg(int) prot;
+       syscallarg(int) flags;
+       syscallarg(int) fd;
+       syscallarg(off_t) offset;
+};
+
 struct linux_sys_olduname_args {
        syscallarg(struct linux_old_utsname *) up;
 };
@@ -671,6 +685,8 @@
 int    osf1_sys_fstatfs(struct proc *, void *, register_t *);
 int    compat_09_sys_getdomainname(struct proc *, void *, register_t *);
 int    linux_sys_setdomainname(struct proc *, void *, register_t *);
+int    linux_sys_ugetrlimit(struct proc *, void *, register_t *);
+int    linux_sys_mmap2(struct proc *, void *, register_t *);
 #ifdef SYSVMSG
 int    linux_sys_msgctl(struct proc *, void *, register_t *);
 int    sys_msgget(struct proc *, void *, register_t *);
diff -r 68834e3ae0d3 -r c4558ea14898 sys/compat/linux/arch/alpha/linux_syscalls.c
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c      Mon Feb 18 16:35:57 2002 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c      Mon Feb 18 16:36:20 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.43 2002/02/15 16:47:59 christos Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.44 2002/02/18 16:36:21 christos Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.36 2001/09/08 07:09:43 manu Exp 
+ * created from        NetBSD: syscalls.master,v 1.38 2002/02/18 16:35:57 christos Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.43 2002/02/15 16:47:59 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.44 2002/02/18 16:36:21 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
@@ -225,8 +225,8 @@
        "#188 (unimplemented)",         /* 188 = unimplemented */
        "#189 (unimplemented)",         /* 189 = unimplemented */
        "#190 (unimplemented)",         /* 190 = unimplemented */
-       "#191 (unimplemented)",         /* 191 = unimplemented */
-       "#192 (unimplemented)",         /* 192 = unimplemented */
+       "ugetrlimit",                   /* 191 = ugetrlimit */
+       "mmap2",                        /* 192 = mmap2 */
        "#193 (unimplemented)",         /* 193 = unimplemented */
        "#194 (unimplemented)",         /* 194 = unimplemented */
        "#195 (unimplemented)",         /* 195 = unimplemented */
diff -r 68834e3ae0d3 -r c4558ea14898 sys/compat/linux/arch/alpha/linux_sysent.c
--- a/sys/compat/linux/arch/alpha/linux_sysent.c        Mon Feb 18 16:35:57 2002 +0000
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c        Mon Feb 18 16:36:20 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.42 2002/02/15 16:47:59 christos Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.43 2002/02/18 16:36:21 christos Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.36 2001/09/08 07:09:43 manu Exp 
+ * created from        NetBSD: syscalls.master,v 1.38 2002/02/18 16:35:57 christos Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.42 2002/02/15 16:47:59 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.43 2002/02/18 16:36:21 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_sysv.h"
@@ -416,10 +416,10 @@
            linux_sys_nosys },                  /* 189 = unimplemented */
        { 0, 0, 0,
            linux_sys_nosys },                  /* 190 = unimplemented */
-       { 0, 0, 0,
-           linux_sys_nosys },                  /* 191 = unimplemented */
-       { 0, 0, 0,
-           linux_sys_nosys },                  /* 192 = unimplemented */
+       { 2, s(struct linux_sys_ugetrlimit_args), 0,
+           linux_sys_ugetrlimit },             /* 191 = ugetrlimit */
+       { 6, s(struct linux_sys_mmap2_args), 0,
+           linux_sys_mmap2 },                  /* 192 = mmap2 */
        { 0, 0, 0,
            linux_sys_nosys },                  /* 193 = unimplemented */
        { 0, 0, 0,



Home | Main Index | Thread Index | Old Index