Source-Changes-HG archive

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

[src/trunk]: src/sys/kern Regenerate files for modularization of ptrace(2)



details:   https://anonhg.NetBSD.org/src/rev/9f8535291d6d
branches:  trunk
changeset: 818816:9f8535291d6d
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Nov 02 00:14:11 2016 +0000

description:
Regenerate files for modularization of ptrace(2)

diffstat:

 sys/kern/init_sysent.c       |  8 ++++----
 sys/kern/syscalls.c          |  6 +++---
 sys/kern/syscalls_autoload.c |  7 ++++---
 sys/kern/systrace_args.c     |  2 +-
 4 files changed, 12 insertions(+), 11 deletions(-)

diffs (89 lines):

diff -r a69b1258a023 -r 9f8535291d6d sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c    Wed Nov 02 00:12:41 2016 +0000
+++ b/sys/kern/init_sysent.c    Wed Nov 02 00:14:11 2016 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.312 2016/07/03 14:26:47 christos Exp $ */
+/* $NetBSD: init_sysent.c,v 1.313 2016/11/02 00:14:11 pgoyette Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.285 2016/07/03 14:24:59 christos Exp
+ * created from        NetBSD: syscalls.master,v 1.286 2016/11/02 00:11:59 pgoyette Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.312 2016/07/03 14:26:47 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.313 2016/11/02 00:14:11 pgoyette Exp $");
 
 #include "opt_modular.h"
 #include "opt_ntp.h"
@@ -235,7 +235,7 @@
        {
                ns(struct sys_ptrace_args),
                .sy_flags = SYCALL_ARG_PTR,
-               .sy_call = (sy_call_t *)sys_ptrace
+               .sy_call = (sy_call_t *)sys_nomodule
        },              /* 26 = ptrace */
        {
                ns(struct sys_recvmsg_args),
diff -r a69b1258a023 -r 9f8535291d6d sys/kern/syscalls.c
--- a/sys/kern/syscalls.c       Wed Nov 02 00:12:41 2016 +0000
+++ b/sys/kern/syscalls.c       Wed Nov 02 00:14:11 2016 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.302 2016/07/03 14:26:47 christos Exp $ */
+/* $NetBSD: syscalls.c,v 1.303 2016/11/02 00:14:11 pgoyette Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.285 2016/07/03 14:24:59 christos Exp
+ * created from        NetBSD: syscalls.master,v 1.286 2016/11/02 00:11:59 pgoyette Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.302 2016/07/03 14:26:47 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.303 2016/11/02 00:14:11 pgoyette Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_modular.h"
diff -r a69b1258a023 -r 9f8535291d6d sys/kern/syscalls_autoload.c
--- a/sys/kern/syscalls_autoload.c      Wed Nov 02 00:12:41 2016 +0000
+++ b/sys/kern/syscalls_autoload.c      Wed Nov 02 00:14:11 2016 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls_autoload.c,v 1.21 2016/07/03 14:26:47 christos Exp $ */
+/* $NetBSD: syscalls_autoload.c,v 1.22 2016/11/02 00:14:11 pgoyette Exp $ */
 
 /*
  * System call autoload table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.285 2016/07/03 14:24:59 christos Exp
+ * created from        NetBSD: syscalls.master,v 1.286 2016/11/02 00:11:59 pgoyette Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.21 2016/07/03 14:26:47 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.22 2016/11/02 00:14:11 pgoyette Exp $");
 
 #include <sys/proc.h>
 static struct sc_autoload netbsd_syscalls_autoload[] = {
@@ -18,6 +18,7 @@
            { SYS_compat_20_getfsstat, "compat" },
            { SYS_compat_43_olseek, "compat" },
            { SYS_compat_40_mount, "compat" },
+           { SYS_ptrace, "ptrace" },
            { SYS_compat_43_stat43, "compat" },
            { SYS_compat_43_lstat43, "compat" },
            { SYS_compat_13_sigaction13, "compat" },
diff -r a69b1258a023 -r 9f8535291d6d sys/kern/systrace_args.c
--- a/sys/kern/systrace_args.c  Wed Nov 02 00:12:41 2016 +0000
+++ b/sys/kern/systrace_args.c  Wed Nov 02 00:14:11 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: systrace_args.c,v 1.21 2016/07/03 14:26:47 christos Exp $ */
+/* $NetBSD: systrace_args.c,v 1.22 2016/11/02 00:14:11 pgoyette Exp $ */
 
 /*
  * System call argument to DTrace register array converstion.



Home | Main Index | Thread Index | Old Index