Source-Changes-HG archive

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

[src/netbsd-9]: src/sys/kern Pull up following revision(s) (requested by pgoy...



details:   https://anonhg.NetBSD.org/src/rev/06c56138fb1c
branches:  netbsd-9
changeset: 460932:06c56138fb1c
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Nov 10 13:24:50 2019 +0000

description:
Pull up following revision(s) (requested by pgoyette in ticket #412):

        sys/kern/sys_sig.c: revision 1.49

If we need to handle old-version signals, load the version-specific
"compat_16" module.  There is no longer a monolithic "compat" module!
XXX pullup-9 needed

diffstat:

 sys/kern/sys_sig.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 224f339c3303 -r 06c56138fb1c sys/kern/sys_sig.c
--- a/sys/kern/sys_sig.c        Sun Nov 10 13:22:37 2019 +0000
+++ b/sys/kern/sys_sig.c        Sun Nov 10 13:24:50 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_sig.c,v 1.47.4.1 2019/10/21 20:13:09 martin Exp $  */
+/*     $NetBSD: sys_sig.c,v 1.47.4.2 2019/11/10 13:24:50 martin Exp $  */
 
 /*-
  * Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_sig.c,v 1.47.4.1 2019/10/21 20:13:09 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_sig.c,v 1.47.4.2 2019/11/10 13:24:50 martin Exp $");
 
 #include "opt_dtrace.h"
 
@@ -414,7 +414,7 @@
                        else if ((p->p_lflag & PL_SIGCOMPAT) == 0) {
                                kernconfig_lock();
                                if (sendsig_sigcontext_vec == NULL) {
-                                       (void)module_autoload("compat",
+                                       (void)module_autoload("compat_16",
                                            MODULE_CLASS_ANY);
                                }
                                if (sendsig_sigcontext_vec != NULL) {



Home | Main Index | Thread Index | Old Index