Source-Changes-HG archive

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

[src/chs-ubc2]: src/sys/compat/ultrix Regen.



details:   https://anonhg.NetBSD.org/src/rev/7912ea437b7d
branches:  chs-ubc2
changeset: 471431:7912ea437b7d
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Mon Aug 02 21:55:23 1999 +0000

description:
Regen.

diffstat:

 sys/compat/ultrix/ultrix_syscall.h     |   6 +++---
 sys/compat/ultrix/ultrix_syscallargs.h |  12 +++++++++---
 sys/compat/ultrix/ultrix_syscalls.c    |   4 ++--
 sys/compat/ultrix/ultrix_sysent.c      |   8 ++++----
 4 files changed, 18 insertions(+), 12 deletions(-)

diffs (106 lines):

diff -r c0f088eb219e -r 7912ea437b7d sys/compat/ultrix/ultrix_syscall.h
--- a/sys/compat/ultrix/ultrix_syscall.h        Mon Aug 02 21:54:17 1999 +0000
+++ b/sys/compat/ultrix/ultrix_syscall.h        Mon Aug 02 21:55:23 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: ultrix_syscall.h,v 1.36 1999/02/09 20:32:47 christos Exp $     */
+/*     $NetBSD: ultrix_syscall.h,v 1.36.4.1 1999/08/02 21:55:23 thorpej Exp $  */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.30 1999/02/09 20:30:38 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.30.4.1 1999/08/02 21:55:13 thorpej Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -151,7 +151,7 @@
 
                                /* 67 is obsolete vread */
                                /* 68 is obsolete vwrite */
-/* syscall: "sbrk" ret: "int" args: "int" */
+/* syscall: "sbrk" ret: "int" args: "intptr_t" */
 #define        ULTRIX_SYS_sbrk 69
 
 /* syscall: "sstk" ret: "int" args: "int" */
diff -r c0f088eb219e -r 7912ea437b7d sys/compat/ultrix/ultrix_syscallargs.h
--- a/sys/compat/ultrix/ultrix_syscallargs.h    Mon Aug 02 21:54:17 1999 +0000
+++ b/sys/compat/ultrix/ultrix_syscallargs.h    Mon Aug 02 21:55:23 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: ultrix_syscallargs.h,v 1.30 1999/02/09 20:32:47 christos Exp $ */
+/*     $NetBSD: ultrix_syscallargs.h,v 1.30.4.1 1999/08/02 21:55:23 thorpej Exp $      */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.30 1999/02/09 20:30:38 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.30.4.1 1999/08/02 21:55:13 thorpej Exp 
  */
 
 #ifndef _ULTRIX_SYS__SYSCALLARGS_H_
@@ -103,6 +103,12 @@
        syscallarg(struct rusage *) rusage;
 };
 
+struct ultrix_sys_fcntl_args {
+       syscallarg(int) fd;
+       syscallarg(int) cmd;
+       syscallarg(void *) arg;
+};
+
 struct ultrix_sys_select_args {
        syscallarg(u_int) nd;
        syscallarg(fd_set *) in;
@@ -292,7 +298,7 @@
 int    compat_43_sys_sethostname       __P((struct proc *, void *, register_t *));
 int    compat_43_sys_getdtablesize     __P((struct proc *, void *, register_t *));
 int    sys_dup2        __P((struct proc *, void *, register_t *));
-int    sys_fcntl       __P((struct proc *, void *, register_t *));
+int    ultrix_sys_fcntl        __P((struct proc *, void *, register_t *));
 int    ultrix_sys_select       __P((struct proc *, void *, register_t *));
 int    sys_fsync       __P((struct proc *, void *, register_t *));
 int    sys_setpriority __P((struct proc *, void *, register_t *));
diff -r c0f088eb219e -r 7912ea437b7d sys/compat/ultrix/ultrix_syscalls.c
--- a/sys/compat/ultrix/ultrix_syscalls.c       Mon Aug 02 21:54:17 1999 +0000
+++ b/sys/compat/ultrix/ultrix_syscalls.c       Mon Aug 02 21:55:23 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: ultrix_syscalls.c,v 1.34 1999/02/09 20:32:47 christos Exp $    */
+/*     $NetBSD: ultrix_syscalls.c,v 1.34.4.1 1999/08/02 21:55:23 thorpej Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.30 1999/02/09 20:30:38 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.30.4.1 1999/08/02 21:55:13 thorpej Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
diff -r c0f088eb219e -r 7912ea437b7d sys/compat/ultrix/ultrix_sysent.c
--- a/sys/compat/ultrix/ultrix_sysent.c Mon Aug 02 21:54:17 1999 +0000
+++ b/sys/compat/ultrix/ultrix_sysent.c Mon Aug 02 21:55:23 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: ultrix_sysent.c,v 1.35 1999/02/09 20:32:47 christos Exp $      */
+/*     $NetBSD: ultrix_sysent.c,v 1.35.4.1 1999/08/02 21:55:23 thorpej Exp $   */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.30 1999/02/09 20:30:38 christos Exp 
+ * created from        NetBSD: syscalls.master,v 1.30.4.1 1999/08/02 21:55:13 thorpej Exp 
  */
 
 #include "opt_nfsserver.h"
@@ -203,8 +203,8 @@
            sys_dup2 },                         /* 90 = dup2 */
        { 0, 0,
            sys_nosys },                        /* 91 = unimplemented getdopt */
-       { 3, s(struct sys_fcntl_args),
-           sys_fcntl },                        /* 92 = fcntl */
+       { 3, s(struct ultrix_sys_fcntl_args),
+           ultrix_sys_fcntl },                 /* 92 = fcntl */
        { 5, s(struct ultrix_sys_select_args),
            ultrix_sys_select },                /* 93 = select */
        { 0, 0,



Home | Main Index | Thread Index | Old Index