Module Name: src
Committed By: reinoud
Date: Tue Dec 13 20:59:20 UTC 2011
Modified Files:
src/sys/arch/usermode/usermode: machdep.c
Log Message:
Print the signal we are supposed to deliver!
To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/usermode/usermode/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/usermode/usermode/machdep.c
diff -u src/sys/arch/usermode/usermode/machdep.c:1.34 src/sys/arch/usermode/usermode/machdep.c:1.35
--- src/sys/arch/usermode/usermode/machdep.c:1.34 Mon Dec 12 19:57:12 2011
+++ src/sys/arch/usermode/usermode/machdep.c Tue Dec 13 20:59:20 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.34 2011/12/12 19:57:12 reinoud Exp $ */
+/* $NetBSD: machdep.c,v 1.35 2011/12/13 20:59:20 reinoud Exp $ */
/*-
* Copyright (c) 2011 Reinoud Zandijk <[email protected]>
@@ -32,7 +32,7 @@
#include "opt_urkelvisor.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.34 2011/12/12 19:57:12 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.35 2011/12/13 20:59:20 reinoud Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -144,6 +144,16 @@ consinit(void)
void
sendsig_siginfo(const ksiginfo_t *ksi, const sigset_t *mask)
{
+#if 1
+ printf("%s: ", __func__);
+ printf("flags %d, ", (int) ksi->ksi_flags);
+ printf("to lwp %d, signo %d, code %d, errno %d\n",
+ (int) ksi->ksi_lid,
+ ksi->ksi_signo,
+ ksi->ksi_code,
+ ksi->ksi_errno);
+#endif
+
panic("%s not implemented", __func__);
}