Source-Changes-HG archive

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

[src/pgoyette-compat]: src/sys/arch/amd64/amd64 Provide required args when ca...



details:   https://anonhg.NetBSD.org/src/rev/e941bfc4de60
branches:  pgoyette-compat
changeset: 830784:e941bfc4de60
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Sep 24 23:25:24 2018 +0000

description:
Provide required args when calling the default (un-hooked) routine.

diffstat:

 sys/arch/amd64/amd64/netbsd32_machdep.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 8a799e792746 -r e941bfc4de60 sys/arch/amd64/amd64/netbsd32_machdep.c
--- a/sys/arch/amd64/amd64/netbsd32_machdep.c   Mon Sep 24 23:23:26 2018 +0000
+++ b/sys/arch/amd64/amd64/netbsd32_machdep.c   Mon Sep 24 23:25:24 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_machdep.c,v 1.115.2.4 2018/09/24 22:56:45 pgoyette Exp $      */
+/*     $NetBSD: netbsd32_machdep.c,v 1.115.2.5 2018/09/24 23:25:24 pgoyette Exp $      */
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.115.2.4 2018/09/24 22:56:45 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.115.2.5 2018/09/24 23:25:24 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -272,10 +272,10 @@
 
 MODULE_CALL_HOOK_DECL(netbsd32_sendsig_hook, f,
     (const ksiginfo_t *ksi, const sigset_t *mask), (ksi, mask),
-    netbsd32_sendsig_siginfo());
+    netbsd32_sendsig_siginfo(ksi, mask));
 MODULE_CALL_HOOK(netbsd32_sendsig_hook, f,
     (const ksiginfo_t *ksi, const sigset_t *mask), (ksi, mask),
-    netbsd32_sendsig_siginfo());
+    netbsd32_sendsig_siginfo(ksi, mask));
 
 void
 netbsd32_sendsig(const ksiginfo_t *ksi, const sigset_t *mask)



Home | Main Index | Thread Index | Old Index