Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/compat/linux/arch/i386 Pull up generated files (req...



details:   https://anonhg.NetBSD.org/src/rev/c6c85c899437
branches:  netbsd-1-4
changeset: 470215:c6c85c899437
user:      he <he%NetBSD.org@localhost>
date:      Mon Jan 31 19:18:05 2000 +0000

description:
Pull up generated files (requested by abs):
  Enable emulation of vfork(2).

diffstat:

 sys/compat/linux/arch/i386/linux_syscall.h     |   9 ++++++---
 sys/compat/linux/arch/i386/linux_syscallargs.h |   5 +++--
 sys/compat/linux/arch/i386/linux_syscalls.c    |   9 +++++++--
 sys/compat/linux/arch/i386/linux_sysent.c      |  14 ++++++++++++--
 4 files changed, 28 insertions(+), 9 deletions(-)

diffs (105 lines):

diff -r 33d1b1f1dd15 -r c6c85c899437 sys/compat/linux/arch/i386/linux_syscall.h
--- a/sys/compat/linux/arch/i386/linux_syscall.h        Mon Jan 31 19:15:07 2000 +0000
+++ b/sys/compat/linux/arch/i386/linux_syscall.h        Mon Jan 31 19:18:05 2000 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: linux_syscall.h,v 1.8 1999/03/30 02:25:32 abs Exp $    */
+/*     $NetBSD: linux_syscall.h,v 1.8.2.1 2000/01/31 19:18:05 he Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.32 1999/03/30 02:22:49 abs Exp 
+ * created from        NetBSD: syscalls.master,v 1.32.2.1 2000/01/31 19:15:07 he Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -413,4 +413,7 @@
 /* syscall: "__getcwd" ret: "int" args: "char *" "size_t" */
 #define        LINUX_SYS___getcwd      183
 
-#define        LINUX_SYS_MAXSYSCALL    186
+/* syscall: "vfork" ret: "int" args: */
+#define        LINUX_SYS_vfork 190
+
+#define        LINUX_SYS_MAXSYSCALL    191
diff -r 33d1b1f1dd15 -r c6c85c899437 sys/compat/linux/arch/i386/linux_syscallargs.h
--- a/sys/compat/linux/arch/i386/linux_syscallargs.h    Mon Jan 31 19:15:07 2000 +0000
+++ b/sys/compat/linux/arch/i386/linux_syscallargs.h    Mon Jan 31 19:18:05 2000 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: linux_syscallargs.h,v 1.8 1999/03/30 02:25:32 abs Exp $        */
+/*     $NetBSD: linux_syscallargs.h,v 1.8.2.1 2000/01/31 19:18:05 he Exp $     */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.32 1999/03/30 02:22:49 abs Exp 
+ * created from        NetBSD: syscalls.master,v 1.32.2.1 2000/01/31 19:15:07 he Exp 
  */
 
 #ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -528,4 +528,5 @@
 int    sys_pwrite      __P((struct proc *, void *, register_t *));
 int    linux_sys_chown __P((struct proc *, void *, register_t *));
 int    sys___getcwd    __P((struct proc *, void *, register_t *));
+int    sys_vfork       __P((struct proc *, void *, register_t *));
 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
diff -r 33d1b1f1dd15 -r c6c85c899437 sys/compat/linux/arch/i386/linux_syscalls.c
--- a/sys/compat/linux/arch/i386/linux_syscalls.c       Mon Jan 31 19:15:07 2000 +0000
+++ b/sys/compat/linux/arch/i386/linux_syscalls.c       Mon Jan 31 19:18:05 2000 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: linux_syscalls.c,v 1.8 1999/03/30 02:25:32 abs Exp $   */
+/*     $NetBSD: linux_syscalls.c,v 1.8.2.1 2000/01/31 19:18:05 he Exp $        */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.32 1999/03/30 02:22:49 abs Exp 
+ * created from        NetBSD: syscalls.master,v 1.32.2.1 2000/01/31 19:15:07 he Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
@@ -209,4 +209,9 @@
        "__getcwd",                     /* 183 = __getcwd */
        "#184 (unimplemented capget)",          /* 184 = unimplemented capget */
        "#185 (unimplemented capset)",          /* 185 = unimplemented capset */
+       "#186 (unimplemented sigaltstack)",             /* 186 = unimplemented sigaltstack */
+       "#187 (unimplemented sendfile)",                /* 187 = unimplemented sendfile */
+       "#188 (unimplemented getpmsg)",         /* 188 = unimplemented getpmsg */
+       "#189 (unimplemented putpmsg)",         /* 189 = unimplemented putpmsg */
+       "vfork",                        /* 190 = vfork */
 };
diff -r 33d1b1f1dd15 -r c6c85c899437 sys/compat/linux/arch/i386/linux_sysent.c
--- a/sys/compat/linux/arch/i386/linux_sysent.c Mon Jan 31 19:15:07 2000 +0000
+++ b/sys/compat/linux/arch/i386/linux_sysent.c Mon Jan 31 19:18:05 2000 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: linux_sysent.c,v 1.8 1999/03/30 02:25:32 abs Exp $     */
+/*     $NetBSD: linux_sysent.c,v 1.8.2.1 2000/01/31 19:18:05 he Exp $  */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.32 1999/03/30 02:22:49 abs Exp 
+ * created from        NetBSD: syscalls.master,v 1.32.2.1 2000/01/31 19:15:07 he Exp 
  */
 
 #include "opt_compat_43.h"
@@ -395,5 +395,15 @@
            sys_nosys },                        /* 184 = unimplemented capget */
        { 0, 0,
            sys_nosys },                        /* 185 = unimplemented capset */
+       { 0, 0,
+           sys_nosys },                        /* 186 = unimplemented sigaltstack */
+       { 0, 0,
+           sys_nosys },                        /* 187 = unimplemented sendfile */
+       { 0, 0,
+           sys_nosys },                        /* 188 = unimplemented getpmsg */
+       { 0, 0,
+           sys_nosys },                        /* 189 = unimplemented putpmsg */
+       { 0, 0,
+           sys_vfork },                        /* 190 = vfork */
 };
 



Home | Main Index | Thread Index | Old Index