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/99b134ac7a54
branches: trunk
changeset: 344513:99b134ac7a54
user: christos <christos%NetBSD.org@localhost>
date: Sun Apr 03 01:01:46 2016 +0000
description:
regen
diffstat:
sys/kern/init_sysent.c | 7 ++++---
sys/kern/syscalls.c | 7 ++++---
sys/kern/syscalls_autoload.c | 6 +++---
sys/kern/systrace_args.c | 2 +-
sys/rump/include/rump/rump_syscalls.h | 4 ++--
sys/rump/librump/rumpkern/rump_syscalls.c | 6 +++---
sys/sys/syscall.h | 4 ++--
sys/sys/syscallargs.h | 4 ++--
8 files changed, 21 insertions(+), 19 deletions(-)
diffs (161 lines):
diff -r d42be651e7a6 -r 99b134ac7a54 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/kern/init_sysent.c Sun Apr 03 01:01:46 2016 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.307 2016/04/02 21:02:39 christos Exp $ */
+/* $NetBSD: init_sysent.c,v 1.308 2016/04/03 01:01:46 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp
+ * created from NetBSD: syscalls.master,v 1.283 2016/04/03 01:00:26 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.307 2016/04/02 21:02:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.308 2016/04/03 01:01:46 christos Exp $");
#include "opt_modular.h"
#include "opt_ntp.h"
@@ -19,6 +19,7 @@
#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/sched.h>
+#include <sys/idtype.h>
#include <sys/syscallargs.h>
#ifdef COMPAT_43
diff -r d42be651e7a6 -r 99b134ac7a54 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/kern/syscalls.c Sun Apr 03 01:01:46 2016 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.297 2016/04/02 21:02:39 christos Exp $ */
+/* $NetBSD: syscalls.c,v 1.298 2016/04/03 01:01:46 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp
+ * created from NetBSD: syscalls.master,v 1.283 2016/04/03 01:00:26 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.297 2016/04/02 21:02:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.298 2016/04/03 01:01:46 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_modular.h"
@@ -20,6 +20,7 @@
#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/sched.h>
+#include <sys/idtype.h>
#include <sys/syscallargs.h>
#else /* _KERNEL_OPT */
#include <sys/null.h>
diff -r d42be651e7a6 -r 99b134ac7a54 sys/kern/syscalls_autoload.c
--- a/sys/kern/syscalls_autoload.c Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/kern/syscalls_autoload.c Sun Apr 03 01:01:46 2016 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls_autoload.c,v 1.16 2016/04/02 21:02:39 christos Exp $ */
+/* $NetBSD: syscalls_autoload.c,v 1.17 2016/04/03 01:01:46 christos Exp $ */
/*
* System call autoload table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp
+ * created from NetBSD: syscalls.master,v 1.283 2016/04/03 01:00:26 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.16 2016/04/02 21:02:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.17 2016/04/03 01:01:46 christos Exp $");
#include <sys/proc.h>
static struct sc_autoload netbsd_syscalls_autoload[] = {
diff -r d42be651e7a6 -r 99b134ac7a54 sys/kern/systrace_args.c
--- a/sys/kern/systrace_args.c Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/kern/systrace_args.c Sun Apr 03 01:01:46 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: systrace_args.c,v 1.16 2016/04/02 21:03:13 christos Exp $ */
+/* $NetBSD: systrace_args.c,v 1.17 2016/04/03 01:01:46 christos Exp $ */
/*
* System call argument to DTrace register array converstion.
diff -r d42be651e7a6 -r 99b134ac7a54 sys/rump/include/rump/rump_syscalls.h
--- a/sys/rump/include/rump/rump_syscalls.h Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/rump/include/rump/rump_syscalls.h Sun Apr 03 01:01:46 2016 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_syscalls.h,v 1.97 2016/04/02 21:02:39 christos Exp $ */
+/* $NetBSD: rump_syscalls.h,v 1.98 2016/04/03 01:01:46 christos Exp $ */
/*
* System call protos in rump namespace.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp
+ * created from NetBSD: syscalls.master,v 1.283 2016/04/03 01:00:26 christos Exp
*/
#ifndef _RUMP_RUMP_SYSCALLS_H_
diff -r d42be651e7a6 -r 99b134ac7a54 sys/rump/librump/rumpkern/rump_syscalls.c
--- a/sys/rump/librump/rumpkern/rump_syscalls.c Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/rump/librump/rumpkern/rump_syscalls.c Sun Apr 03 01:01:46 2016 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_syscalls.c,v 1.124 2016/04/02 21:02:40 christos Exp $ */
+/* $NetBSD: rump_syscalls.c,v 1.125 2016/04/03 01:01:46 christos Exp $ */
/*
* System call vector and marshalling for rump.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp
+ * created from NetBSD: syscalls.master,v 1.283 2016/04/03 01:00:26 christos Exp
*/
#ifdef RUMP_CLIENT
@@ -15,7 +15,7 @@
#ifdef __NetBSD__
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.124 2016/04/02 21:02:40 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.125 2016/04/03 01:01:46 christos Exp $");
#include <sys/fstypes.h>
#include <sys/proc.h>
diff -r d42be651e7a6 -r 99b134ac7a54 sys/sys/syscall.h
--- a/sys/sys/syscall.h Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/sys/syscall.h Sun Apr 03 01:01:46 2016 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.291 2016/04/02 21:02:39 christos Exp $ */
+/* $NetBSD: syscall.h,v 1.292 2016/04/03 01:01:46 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp
+ * created from NetBSD: syscalls.master,v 1.283 2016/04/03 01:00:26 christos Exp
*/
#ifndef _SYS_SYSCALL_H_
diff -r d42be651e7a6 -r 99b134ac7a54 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h Sun Apr 03 01:00:26 2016 +0000
+++ b/sys/sys/syscallargs.h Sun Apr 03 01:01:46 2016 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.275 2016/04/02 21:02:39 christos Exp $ */
+/* $NetBSD: syscallargs.h,v 1.276 2016/04/03 01:01:46 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp
+ * created from NetBSD: syscalls.master,v 1.283 2016/04/03 01:00:26 christos Exp
*/
#ifndef _SYS_SYSCALLARGS_H_
Home |
Main Index |
Thread Index |
Old Index