Source-Changes-HG archive

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

[src/trunk]: src/sys regen



details:   https://anonhg.NetBSD.org/src/rev/4fb2b9b06641
branches:  trunk
changeset: 336075:4fb2b9b06641
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Feb 10 17:43:44 2015 +0000

description:
regen

diffstat:

 sys/kern/init_sysent.c                |  12 +++++++++---
 sys/kern/syscalls.c                   |   6 +++---
 sys/rump/include/rump/rump_syscalls.h |   4 ++--
 sys/sys/syscall.h                     |   4 ++--
 sys/sys/syscallargs.h                 |   4 ++--
 5 files changed, 18 insertions(+), 12 deletions(-)

diffs (103 lines):

diff -r 94afe4f167a5 -r 4fb2b9b06641 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Tue Feb 10 15:07:39 2015 +0000
+++ b/sys/kern/init_sysent.c    Tue Feb 10 17:43:44 2015 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.287 2014/07/25 08:27:35 dholland Exp $ */
+/* $NetBSD: init_sysent.c,v 1.288 2015/02/10 17:43:44 christos Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.270 2014/07/25 08:25:47 dholland Exp
+ * created from        NetBSD: syscalls.master,v 1.271 2015/02/10 15:07:39 martin Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.287 2014/07/25 08:27:35 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.288 2015/02/10 17:43:44 christos Exp $");
 
 #include "opt_modular.h"
 #include "opt_ntp.h"
@@ -105,6 +105,12 @@
 #define        compat_60(func) sys_nosys
 #endif
 
+#ifdef COMPAT_70
+#define        compat_70(func) __CONCAT(compat_70_,func)
+#else
+#define        compat_70(func) sys_nosys
+#endif
+
 #define        s(type) sizeof(type)
 #define        n(type) (sizeof(type)/sizeof (register_t))
 #define        ns(type)        n(type), s(type)
diff -r 94afe4f167a5 -r 4fb2b9b06641 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Tue Feb 10 15:07:39 2015 +0000
+++ b/sys/kern/syscalls.c       Tue Feb 10 17:43:44 2015 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.278 2014/07/25 08:27:35 dholland Exp $ */
+/* $NetBSD: syscalls.c,v 1.279 2015/02/10 17:43:44 christos Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.270 2014/07/25 08:25:47 dholland Exp
+ * created from        NetBSD: syscalls.master,v 1.271 2015/02/10 15:07:39 martin Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.278 2014/07/25 08:27:35 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.279 2015/02/10 17:43:44 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_modular.h"
diff -r 94afe4f167a5 -r 4fb2b9b06641 sys/rump/include/rump/rump_syscalls.h
--- a/sys/rump/include/rump/rump_syscalls.h     Tue Feb 10 15:07:39 2015 +0000
+++ b/sys/rump/include/rump/rump_syscalls.h     Tue Feb 10 17:43:44 2015 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_syscalls.h,v 1.79 2014/07/25 08:27:36 dholland Exp $ */
+/* $NetBSD: rump_syscalls.h,v 1.80 2015/02/10 17:43:44 christos Exp $ */
 
 /*
  * System call protos in rump namespace.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.270 2014/07/25 08:25:47 dholland Exp
+ * created from        NetBSD: syscalls.master,v 1.271 2015/02/10 15:07:39 martin Exp
  */
 
 #ifndef _RUMP_RUMP_SYSCALLS_H_
diff -r 94afe4f167a5 -r 4fb2b9b06641 sys/sys/syscall.h
--- a/sys/sys/syscall.h Tue Feb 10 15:07:39 2015 +0000
+++ b/sys/sys/syscall.h Tue Feb 10 17:43:44 2015 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.274 2014/07/25 08:27:36 dholland Exp $ */
+/* $NetBSD: syscall.h,v 1.275 2015/02/10 17:43:44 christos Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.270 2014/07/25 08:25:47 dholland Exp
+ * created from        NetBSD: syscalls.master,v 1.271 2015/02/10 15:07:39 martin Exp
  */
 
 #ifndef _SYS_SYSCALL_H_
diff -r 94afe4f167a5 -r 4fb2b9b06641 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h     Tue Feb 10 15:07:39 2015 +0000
+++ b/sys/sys/syscallargs.h     Tue Feb 10 17:43:44 2015 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.257 2014/07/25 08:27:36 dholland Exp $ */
+/* $NetBSD: syscallargs.h,v 1.258 2015/02/10 17:43:44 christos Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.270 2014/07/25 08:25:47 dholland Exp
+ * created from        NetBSD: syscalls.master,v 1.271 2015/02/10 15:07:39 martin Exp
  */
 
 #ifndef _SYS_SYSCALLARGS_H_



Home | Main Index | Thread Index | Old Index