Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/pecoff Regen.
details: https://anonhg.NetBSD.org/src/rev/4d59f4c814f4
branches: trunk
changeset: 533698:4d59f4c814f4
user: oki <oki%NetBSD.org@localhost>
date: Sun Jul 07 18:07:43 2002 +0000
description:
Regen.
diffstat:
sys/compat/pecoff/pecoff_syscallargs.h | 16 +++++++++++++---
sys/compat/pecoff/pecoff_sysent.c | 12 ++++++------
2 files changed, 19 insertions(+), 9 deletions(-)
diffs (73 lines):
diff -r 3553598818b1 -r 4d59f4c814f4 sys/compat/pecoff/pecoff_syscallargs.h
--- a/sys/compat/pecoff/pecoff_syscallargs.h Sun Jul 07 18:06:02 2002 +0000
+++ b/sys/compat/pecoff/pecoff_syscallargs.h Sun Jul 07 18:07:43 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pecoff_syscallargs.h,v 1.3 2002/05/03 00:26:06 eeh Exp $ */
+/* $NetBSD: pecoff_syscallargs.h,v 1.4 2002/07/07 18:07:43 oki Exp $ */
/*
* System call argument lists.
@@ -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 3553598818b1 -r 4d59f4c814f4 sys/compat/pecoff/pecoff_sysent.c
--- a/sys/compat/pecoff/pecoff_sysent.c Sun Jul 07 18:06:02 2002 +0000
+++ b/sys/compat/pecoff/pecoff_sysent.c Sun Jul 07 18:07:43 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pecoff_sysent.c,v 1.3 2002/05/03 00:26:07 eeh Exp $ */
+/* $NetBSD: pecoff_sysent.c,v 1.4 2002/07/07 18:07:43 oki Exp $ */
/*
* System call switch table.
@@ -8,7 +8,7 @@
*/
#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.4 2002/07/07 18:07:43 oki 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