Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/osf1 regen for changed syscalls.master



details:   https://anonhg.NetBSD.org/src/rev/1c740e4f03a9
branches:  trunk
changeset: 472337:1c740e4f03a9
user:      cgd <cgd%NetBSD.org@localhost>
date:      Tue Apr 27 18:41:37 1999 +0000

description:
regen for changed syscalls.master

diffstat:

 sys/compat/osf1/osf1_syscall.h     |   6 +++---
 sys/compat/osf1/osf1_syscallargs.h |  10 ++++++++--
 sys/compat/osf1/osf1_syscalls.c    |   4 ++--
 sys/compat/osf1/osf1_sysent.c      |   6 +++---
 4 files changed, 16 insertions(+), 10 deletions(-)

diffs (95 lines):

diff -r 0f1283159bbc -r 1c740e4f03a9 sys/compat/osf1/osf1_syscall.h
--- a/sys/compat/osf1/osf1_syscall.h    Tue Apr 27 18:40:53 1999 +0000
+++ b/sys/compat/osf1/osf1_syscall.h    Tue Apr 27 18:41:37 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscall.h,v 1.21 1999/04/27 17:53:11 cgd Exp $    */
+/*     $NetBSD: osf1_syscall.h,v 1.22 1999/04/27 18:41:37 cgd Exp $    */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -155,7 +155,7 @@
 /* syscall: "munmap" ret: "int" args: "caddr_t" "size_t" */
 #define        OSF1_SYS_munmap 73
 
-/* syscall: "madvise" ret: "int" args: */
+/* syscall: "madvise" ret: "int" args: "void *" "size_t" "int" */
 #define        OSF1_SYS_madvise        75
 
 /* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
diff -r 0f1283159bbc -r 1c740e4f03a9 sys/compat/osf1/osf1_syscallargs.h
--- a/sys/compat/osf1/osf1_syscallargs.h        Tue Apr 27 18:40:53 1999 +0000
+++ b/sys/compat/osf1/osf1_syscallargs.h        Tue Apr 27 18:41:37 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscallargs.h,v 1.21 1999/04/27 17:53:11 cgd Exp $        */
+/*     $NetBSD: osf1_syscallargs.h,v 1.22 1999/04/27 18:41:38 cgd Exp $        */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp 
  */
 
 #ifndef _OSF1_SYS__SYSCALLARGS_H_
@@ -101,6 +101,12 @@
        syscallarg(off_t) pos;
 };
 
+struct osf1_sys_madvise_args {
+       syscallarg(void *) addr;
+       syscallarg(size_t) len;
+       syscallarg(int) behav;
+};
+
 struct osf1_sys_fstat_args {
        syscallarg(int) fd;
        syscallarg(void *) sb;
diff -r 0f1283159bbc -r 1c740e4f03a9 sys/compat/osf1/osf1_syscalls.c
--- a/sys/compat/osf1/osf1_syscalls.c   Tue Apr 27 18:40:53 1999 +0000
+++ b/sys/compat/osf1/osf1_syscalls.c   Tue Apr 27 18:41:37 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_syscalls.c,v 1.19 1999/04/27 17:53:11 cgd Exp $   */
+/*     $NetBSD: osf1_syscalls.c,v 1.20 1999/04/27 18:41:38 cgd Exp $   */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp 
  */
 
 #if defined(_KERNEL) && !defined(_LKM)
diff -r 0f1283159bbc -r 1c740e4f03a9 sys/compat/osf1/osf1_sysent.c
--- a/sys/compat/osf1/osf1_sysent.c     Tue Apr 27 18:40:53 1999 +0000
+++ b/sys/compat/osf1/osf1_sysent.c     Tue Apr 27 18:41:37 1999 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: osf1_sysent.c,v 1.21 1999/04/27 17:53:11 cgd Exp $     */
+/*     $NetBSD: osf1_sysent.c,v 1.22 1999/04/27 18:41:39 cgd Exp $     */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp 
+ * created from        NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp 
  */
 
 #include "opt_compat_43.h"
@@ -169,7 +169,7 @@
            sys_munmap },                       /* 73 = munmap */
        { 0, 0,
            sys_nosys },                        /* 74 = unimplemented mprotect */
-       { 0, 0,
+       { 3, s(struct osf1_sys_madvise_args),
            osf1_sys_madvise },                 /* 75 = madvise */
        { 0, 0,
            sys_nosys },                        /* 76 = unimplemented old vhangup */



Home | Main Index | Thread Index | Old Index