Module Name: src
Committed By: pooka
Date: Sat Jan 8 14:01:04 UTC 2011
Modified Files:
src/sys/rump/librump/rumpkern: signals.c
Log Message:
SIGPIPE is generated internally by the kernel, so include it in
the list of "no panic" sigs.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/rump/librump/rumpkern/signals.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/rump/librump/rumpkern/signals.c
diff -u src/sys/rump/librump/rumpkern/signals.c:1.5 src/sys/rump/librump/rumpkern/signals.c:1.6
--- src/sys/rump/librump/rumpkern/signals.c:1.5 Mon Jan 3 14:57:06 2011
+++ src/sys/rump/librump/rumpkern/signals.c Sat Jan 8 14:01:04 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: signals.c,v 1.5 2011/01/03 14:57:06 pooka Exp $ */
+/* $NetBSD: signals.c,v 1.6 2011/01/08 14:01:04 pooka Exp $ */
/*
* Copyright (c) 2010 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: signals.c,v 1.5 2011/01/03 14:57:06 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: signals.c,v 1.6 2011/01/08 14:01:04 pooka Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -53,6 +53,7 @@
switch (signo) {
case SIGSYS:
+ case SIGPIPE:
break;
default:
panic("unhandled signal %d", signo);