Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump/rumpkern Change the default sigmodel to "ra...



details:   https://anonhg.NetBSD.org/src/rev/46eaaf767790
branches:  trunk
changeset: 762395:46eaaf767790
user:      pooka <pooka%NetBSD.org@localhost>
date:      Sun Feb 20 13:09:57 2011 +0000

description:
Change the default sigmodel to "raise", it makes more sense than
causing a panic.

diffstat:

 sys/rump/librump/rumpkern/signals.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b8d6cb367c50 -r 46eaaf767790 sys/rump/librump/rumpkern/signals.c
--- a/sys/rump/librump/rumpkern/signals.c       Sun Feb 20 12:47:21 2011 +0000
+++ b/sys/rump/librump/rumpkern/signals.c       Sun Feb 20 13:09:57 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: signals.c,v 1.7 2011/01/14 13:11:08 pooka Exp $        */
+/*     $NetBSD: signals.c,v 1.8 2011/02/20 13:09:57 pooka Exp $        */
 
 /*-
  * Copyright (c) 2010, 2011 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: signals.c,v 1.7 2011/01/14 13:11:08 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: signals.c,v 1.8 2011/02/20 13:09:57 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -119,7 +119,7 @@
 
 typedef void (*rumpsig_fn)(struct proc *, int);
 
-static rumpsig_fn rumpsig = rumpsig_panic;
+static rumpsig_fn rumpsig = rumpsig_raise;
 
 /*
  * Set signal delivery model.  It would be nice if we could



Home | Main Index | Thread Index | Old Index