Module Name: src
Committed By: pgoyette
Date: Sat Sep 29 08:25:36 UTC 2018
Modified Files:
src/sys/arch/mips/mips [pgoyette-compat]: netbsd32_machdep.c
Log Message:
Add a routine to actually invoke the hook for netbsd32_sendsig()
To generate a diff of this commit:
cvs rdiff -u -r1.15.2.2 -r1.15.2.3 src/sys/arch/mips/mips/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/mips/mips/netbsd32_machdep.c
diff -u src/sys/arch/mips/mips/netbsd32_machdep.c:1.15.2.2 src/sys/arch/mips/mips/netbsd32_machdep.c:1.15.2.3
--- src/sys/arch/mips/mips/netbsd32_machdep.c:1.15.2.2 Sat Sep 29 08:07:54 2018
+++ src/sys/arch/mips/mips/netbsd32_machdep.c Sat Sep 29 08:25:36 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32_machdep.c,v 1.15.2.2 2018/09/29 08:07:54 pgoyette Exp $ */
+/* $NetBSD: netbsd32_machdep.c,v 1.15.2.3 2018/09/29 08:25:36 pgoyette Exp $ */
/*-
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.15.2.2 2018/09/29 08:07:54 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.15.2.3 2018/09/29 08:25:36 pgoyette Exp $");
#include "opt_compat_netbsd.h"
#include "opt_coredump.h"
@@ -227,6 +227,13 @@ cpu_coredump32(struct lwp *l, struct cor
}
#endif
+void
+netbsd32_sendsig(const ksiginfo_t *ksi, const sigset_t *mask)
+{
+
+ netbsd32_sendsig_hook_f_call(ksi, mask);
+}
+
void
netbsd32_machdep_md_init(void)
{