Module Name:    src
Committed By:   pgoyette
Date:           Mon Sep 24 23:25:24 UTC 2018

Modified Files:
        src/sys/arch/amd64/amd64 [pgoyette-compat]: netbsd32_machdep.c

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


To generate a diff of this commit:
cvs rdiff -u -r1.115.2.4 -r1.115.2.5 \
    src/sys/arch/amd64/amd64/netbsd32_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amd64/amd64/netbsd32_machdep.c
diff -u src/sys/arch/amd64/amd64/netbsd32_machdep.c:1.115.2.4 src/sys/arch/amd64/amd64/netbsd32_machdep.c:1.115.2.5
--- src/sys/arch/amd64/amd64/netbsd32_machdep.c:1.115.2.4	Mon Sep 24 22:56:45 2018
+++ src/sys/arch/amd64/amd64/netbsd32_machdep.c	Mon Sep 24 23:25:24 2018
@@ -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 @@ netbsd32_sendsig_siginfo(const ksiginfo_
 
 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)

Reply via email to