Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/compat/pecoff pullup-1-6 ticket #470 (oki).



details:   https://anonhg.NetBSD.org/src/rev/d49c2a7c2e09
branches:  netbsd-1-6
changeset: 528413:d49c2a7c2e09
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Jul 11 20:03:22 2002 +0000

description:
pullup-1-6 ticket #470 (oki).

Orignal log message:
Regen.

diffstat:

 sys/compat/pecoff/pecoff_syscall.h     |   4 ++--
 sys/compat/pecoff/pecoff_syscallargs.h |  18 ++++++++++++++----
 sys/compat/pecoff/pecoff_syscalls.c    |   6 +++---
 sys/compat/pecoff/pecoff_sysent.c      |  14 +++++++-------
 4 files changed, 26 insertions(+), 16 deletions(-)

diffs (120 lines):

diff -r bd78969fc2ba -r d49c2a7c2e09 sys/compat/pecoff/pecoff_syscall.h
--- a/sys/compat/pecoff/pecoff_syscall.h        Thu Jul 11 20:02:43 2002 +0000
+++ b/sys/compat/pecoff/pecoff_syscall.h        Thu Jul 11 20:03:22 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: pecoff_syscall.h,v 1.3 2002/05/03 00:26:06 eeh Exp $ */
+/* $NetBSD: pecoff_syscall.h,v 1.3.4.1 2002/07/11 20:03:22 thorpej Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.3 2002/05/03 00:20:57 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.3.4.1 2002/07/11 20:02:43 thorpej Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
diff -r bd78969fc2ba -r d49c2a7c2e09 sys/compat/pecoff/pecoff_syscallargs.h
--- a/sys/compat/pecoff/pecoff_syscallargs.h    Thu Jul 11 20:02:43 2002 +0000
+++ b/sys/compat/pecoff/pecoff_syscallargs.h    Thu Jul 11 20:03:22 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: pecoff_syscallargs.h,v 1.3 2002/05/03 00:26:06 eeh Exp $ */
+/* $NetBSD: pecoff_syscallargs.h,v 1.3.4.1 2002/07/11 20:03:22 thorpej Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.3 2002/05/03 00:20:57 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.3.4.1 2002/07/11 20:02:43 thorpej Exp 
  */
 
 #ifndef _PECOFF_SYS__SYSCALLARGS_H_
@@ -157,6 +157,16 @@
        syscallarg(const struct timeval *) tptr;
 };
 
+struct pecoff_sys___stat13_args {
+       syscallarg(const char *) path;
+       syscallarg(struct stat *) ub;
+};
+
+struct pecoff_sys___lstat13_args {
+       syscallarg(const char *) path;
+       syscallarg(struct stat *) ub;
+};
+
 struct pecoff_sys___posix_chown_args {
        syscallarg(const char *) path;
        syscallarg(uid_t) uid;
@@ -376,9 +386,9 @@
 int    pecoff_sys_lchown(struct proc *, void *, register_t *);
 int    pecoff_sys_lutimes(struct proc *, void *, register_t *);
 int    sys___msync13(struct proc *, void *, register_t *);
-int    sys___stat13(struct proc *, void *, register_t *);
+int    pecoff_sys___stat13(struct proc *, void *, register_t *);
 int    sys___fstat13(struct proc *, void *, register_t *);
-int    sys___lstat13(struct proc *, void *, register_t *);
+int    pecoff_sys___lstat13(struct proc *, void *, register_t *);
 int    sys___sigaltstack14(struct proc *, void *, register_t *);
 int    sys___vfork14(struct proc *, void *, register_t *);
 int    pecoff_sys___posix_chown(struct proc *, void *, register_t *);
diff -r bd78969fc2ba -r d49c2a7c2e09 sys/compat/pecoff/pecoff_syscalls.c
--- a/sys/compat/pecoff/pecoff_syscalls.c       Thu Jul 11 20:02:43 2002 +0000
+++ b/sys/compat/pecoff/pecoff_syscalls.c       Thu Jul 11 20:03:22 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: pecoff_syscalls.c,v 1.3 2002/05/03 00:26:06 eeh Exp $ */
+/* $NetBSD: pecoff_syscalls.c,v 1.3.4.1 2002/07/11 20:03:22 thorpej Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.3 2002/05/03 00:20:57 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.3.4.1 2002/07/11 20:02:43 thorpej Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pecoff_syscalls.c,v 1.3 2002/05/03 00:26:06 eeh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pecoff_syscalls.c,v 1.3.4.1 2002/07/11 20:03:22 thorpej Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
diff -r bd78969fc2ba -r d49c2a7c2e09 sys/compat/pecoff/pecoff_sysent.c
--- a/sys/compat/pecoff/pecoff_sysent.c Thu Jul 11 20:02:43 2002 +0000
+++ b/sys/compat/pecoff/pecoff_sysent.c Thu Jul 11 20:03:22 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: pecoff_sysent.c,v 1.3 2002/05/03 00:26:07 eeh Exp $ */
+/* $NetBSD: pecoff_sysent.c,v 1.3.4.1 2002/07/11 20:03:22 thorpej Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.3 2002/05/03 00:20:57 eeh Exp 
+ * created from        NetBSD: syscalls.master,v 1.3.4.1 2002/07/11 20:02:43 thorpej Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pecoff_sysent.c,v 1.3 2002/05/03 00:26:07 eeh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pecoff_sysent.c,v 1.3.4.1 2002/07/11 20:03:22 thorpej Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_ktrace.h"
@@ -698,12 +698,12 @@
            pecoff_sys_lutimes },               /* 276 = lutimes */
        { 3, s(struct sys___msync13_args), 0,
            sys___msync13 },                    /* 277 = __msync13 */
-       { 2, s(struct sys___stat13_args), 0,
-           sys___stat13 },                     /* 278 = __stat13 */
+       { 2, s(struct pecoff_sys___stat13_args), 0,
+           pecoff_sys___stat13 },              /* 278 = __stat13 */
        { 2, s(struct sys___fstat13_args), 0,
            sys___fstat13 },                    /* 279 = __fstat13 */
-       { 2, s(struct sys___lstat13_args), 0,
-           sys___lstat13 },                    /* 280 = __lstat13 */
+       { 2, s(struct pecoff_sys___lstat13_args), 0,
+           pecoff_sys___lstat13 },             /* 280 = __lstat13 */
        { 2, s(struct sys___sigaltstack14_args), 0,
            sys___sigaltstack14 },              /* 281 = __sigaltstack14 */
        { 0, 0, 0,



Home | Main Index | Thread Index | Old Index