Source-Changes-HG archive

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

[src/pgoyette-compat]: src/sys/compat/sunos Regen



details:   https://anonhg.NetBSD.org/src/rev/bd3a1134d47d
branches:  pgoyette-compat
changeset: 830819:bd3a1134d47d
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Sat Sep 29 02:30:09 2018 +0000

description:
Regen

diffstat:

 sys/compat/sunos/sunos_syscall.h     |  10 +++++-----
 sys/compat/sunos/sunos_syscallargs.h |  16 ++++++++--------
 sys/compat/sunos/sunos_syscalls.c    |  18 +++++++++---------
 sys/compat/sunos/sunos_sysent.c      |  12 ++++++------
 4 files changed, 28 insertions(+), 28 deletions(-)

diffs (208 lines):

diff -r e0a7b86c7813 -r bd3a1134d47d sys/compat/sunos/sunos_syscall.h
--- a/sys/compat/sunos/sunos_syscall.h  Sat Sep 29 02:29:42 2018 +0000
+++ b/sys/compat/sunos/sunos_syscall.h  Sat Sep 29 02:30:09 2018 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos_syscall.h,v 1.96.2.2 2018/09/29 02:06:46 pgoyette Exp $ */
+/* $NetBSD: sunos_syscall.h,v 1.96.2.3 2018/09/29 02:30:09 pgoyette Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.1 2018/09/29 02:06:14 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
  */
 
 #ifndef _SUNOS_SYS_SYSCALL_H_
@@ -402,19 +402,19 @@
 /* syscall: "ustat" ret: "int" args: "int" "struct sunos_ustat *" */
 #define        SUNOS_SYS_ustat 168
 
-#ifdef SYSVSEM
+#if defined(SYSVSEM) && defined(COMPAT_10)
 /* syscall: "semsys" ret: "int" args: "int" "int" "int" "int" "int" */
 #define        SUNOS_SYS_semsys        169
 
 #else
 #endif
-#ifdef SYSVMSG
+#if defined(SYSVMSG) && defined(COMPAT_10)
 /* syscall: "msgsys" ret: "int" args: "int" "int" "int" "int" "int" "int" */
 #define        SUNOS_SYS_msgsys        170
 
 #else
 #endif
-#ifdef SYSVSHM
+#if defined(SYSVSHM) && defined(COMPAT_10)
 /* syscall: "shmsys" ret: "int" args: "int" "int" "int" "int" */
 #define        SUNOS_SYS_shmsys        171
 
diff -r e0a7b86c7813 -r bd3a1134d47d sys/compat/sunos/sunos_syscallargs.h
--- a/sys/compat/sunos/sunos_syscallargs.h      Sat Sep 29 02:29:42 2018 +0000
+++ b/sys/compat/sunos/sunos_syscallargs.h      Sat Sep 29 02:30:09 2018 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos_syscallargs.h,v 1.80.2.2 2018/09/29 02:06:46 pgoyette Exp $ */
+/* $NetBSD: sunos_syscallargs.h,v 1.80.2.3 2018/09/29 02:30:09 pgoyette Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.1 2018/09/29 02:06:14 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
  */
 
 #ifndef _SUNOS_SYS_SYSCALLARGS_H_
@@ -404,17 +404,17 @@
        syscallarg(struct sunos_ustat *) buf;
 };
 check_syscall_args(sunos_sys_ustat)
-#ifdef SYSVSEM
+#if defined(SYSVSEM) && defined(COMPAT_10)
 
 struct compat_10_sys_semsys_args;
 #else
 #endif
-#ifdef SYSVMSG
+#if defined(SYSVMSG) && defined(COMPAT_10)
 
 struct compat_10_sys_msgsys_args;
 #else
 #endif
-#ifdef SYSVSHM
+#if defined(SYSVSHM) && defined(COMPAT_10)
 
 struct compat_10_sys_shmsys_args;
 #else
@@ -716,17 +716,17 @@
 
 int    sunos_sys_ustat(struct lwp *, const struct sunos_sys_ustat_args *, register_t *);
 
-#ifdef SYSVSEM
+#if defined(SYSVSEM) && defined(COMPAT_10)
 int    compat_10_sys_semsys(struct lwp *, const struct compat_10_sys_semsys_args *, register_t *);
 
 #else
 #endif
-#ifdef SYSVMSG
+#if defined(SYSVMSG) && defined(COMPAT_10)
 int    compat_10_sys_msgsys(struct lwp *, const struct compat_10_sys_msgsys_args *, register_t *);
 
 #else
 #endif
-#ifdef SYSVSHM
+#if defined(SYSVSHM) && defined(COMPAT_10)
 int    compat_10_sys_shmsys(struct lwp *, const struct compat_10_sys_shmsys_args *, register_t *);
 
 #else
diff -r e0a7b86c7813 -r bd3a1134d47d sys/compat/sunos/sunos_syscalls.c
--- a/sys/compat/sunos/sunos_syscalls.c Sat Sep 29 02:29:42 2018 +0000
+++ b/sys/compat/sunos/sunos_syscalls.c Sat Sep 29 02:30:09 2018 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: sunos_syscalls.c,v 1.95.2.2 2018/09/29 02:06:46 pgoyette Exp $ */
+/* $NetBSD: sunos_syscalls.c,v 1.95.2.3 2018/09/29 02:30:09 pgoyette Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.1 2018/09/29 02:06:14 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos_syscalls.c,v 1.95.2.2 2018/09/29 02:06:46 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos_syscalls.c,v 1.95.2.3 2018/09/29 02:30:09 pgoyette Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
@@ -202,17 +202,17 @@
        /* 166 */       "exportfs",
        /* 167 */       "mount",
        /* 168 */       "ustat",
-#ifdef SYSVSEM
+#if defined(SYSVSEM) && defined(COMPAT_10)
        /* 169 */       "semsys",
 #else
        /* 169 */       "#169 (unimplemented semsys)",
 #endif
-#ifdef SYSVMSG
+#if defined(SYSVMSG) && defined(COMPAT_10)
        /* 170 */       "msgsys",
 #else
        /* 170 */       "#170 (unimplemented msgsys)",
 #endif
-#ifdef SYSVSHM
+#if defined(SYSVSHM) && defined(COMPAT_10)
        /* 171 */       "shmsys",
 #else
        /* 171 */       "#171 (unimplemented shmsys)",
@@ -480,17 +480,17 @@
        /* 166 */       NULL, /* exportfs */
        /* 167 */       NULL, /* mount */
        /* 168 */       NULL, /* ustat */
-#ifdef SYSVSEM
+#if defined(SYSVSEM) && defined(COMPAT_10)
        /* 169 */       NULL, /* semsys */
 #else
        /* 169 */       NULL, /* unimplemented semsys */
 #endif
-#ifdef SYSVMSG
+#if defined(SYSVMSG) && defined(COMPAT_10)
        /* 170 */       NULL, /* msgsys */
 #else
        /* 170 */       NULL, /* unimplemented msgsys */
 #endif
-#ifdef SYSVSHM
+#if defined(SYSVSHM) && defined(COMPAT_10)
        /* 171 */       NULL, /* shmsys */
 #else
        /* 171 */       NULL, /* unimplemented shmsys */
diff -r e0a7b86c7813 -r bd3a1134d47d sys/compat/sunos/sunos_sysent.c
--- a/sys/compat/sunos/sunos_sysent.c   Sat Sep 29 02:29:42 2018 +0000
+++ b/sys/compat/sunos/sunos_sysent.c   Sat Sep 29 02:30:09 2018 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: sunos_sysent.c,v 1.91.2.2 2018/09/29 02:06:46 pgoyette Exp $ */
+/* $NetBSD: sunos_sysent.c,v 1.91.2.3 2018/09/29 02:30:09 pgoyette Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.1 2018/09/29 02:06:14 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos_sysent.c,v 1.91.2.2 2018/09/29 02:06:46 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos_sysent.c,v 1.91.2.3 2018/09/29 02:30:09 pgoyette Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_sysv.h"
@@ -741,7 +741,7 @@
                .sy_flags = SYCALL_ARG_PTR,
                .sy_call = (sy_call_t *)sunos_sys_ustat
        },              /* 168 = ustat */
-#ifdef SYSVSEM
+#if defined(SYSVSEM) && defined(COMPAT_10)
        {
                ns(struct compat_10_sys_semsys_args),
                .sy_call = (sy_call_t *)compat_10_sys_semsys
@@ -751,7 +751,7 @@
                .sy_call = sys_nosys,
        },              /* 169 = filler */
 #endif
-#ifdef SYSVMSG
+#if defined(SYSVMSG) && defined(COMPAT_10)
        {
                ns(struct compat_10_sys_msgsys_args),
                .sy_call = (sy_call_t *)compat_10_sys_msgsys
@@ -761,7 +761,7 @@
                .sy_call = sys_nosys,
        },              /* 170 = filler */
 #endif
-#ifdef SYSVSHM
+#if defined(SYSVSHM) && defined(COMPAT_10)
        {
                ns(struct compat_10_sys_shmsys_args),
                .sy_call = (sy_call_t *)compat_10_sys_shmsys



Home | Main Index | Thread Index | Old Index