Module Name: src
Committed By: reinoud
Date: Fri Sep 2 14:54:41 UTC 2011
Modified Files:
src/sys/arch/usermode/usermode: trap.c
Log Message:
Add note on how to posibly create a signal and send it to a userland program
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/usermode/usermode/trap.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/trap.c
diff -u src/sys/arch/usermode/usermode/trap.c:1.17 src/sys/arch/usermode/usermode/trap.c:1.18
--- src/sys/arch/usermode/usermode/trap.c:1.17 Fri Sep 2 10:11:43 2011
+++ src/sys/arch/usermode/usermode/trap.c Fri Sep 2 14:54:41 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.17 2011/09/02 10:11:43 reinoud Exp $ */
+/* $NetBSD: trap.c,v 1.18 2011/09/02 14:54:41 reinoud Exp $ */
/*-
* Copyright (c) 2011 Reinoud Zandijk <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.17 2011/09/02 10:11:43 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.18 2011/09/02 14:54:41 reinoud Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -199,6 +199,7 @@
return;
}
panic("should deliver a trap to the process");
+ /* XXX HOWTO see arm/arm/syscall.c illegal instruction signal */
}
if (recurse > 1)