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 more signal stuff to group. no fu...



details:   https://anonhg.NetBSD.org/src/rev/547f614468f1
branches:  trunk
changeset: 754157:547f614468f1
user:      pooka <pooka%NetBSD.org@localhost>
date:      Thu Apr 22 07:10:47 2010 +0000

description:
more signal stuff to group.  no functional change.

diffstat:

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

diffs (53 lines):

diff -r 80170b1f3470 -r 547f614468f1 sys/rump/librump/rumpkern/rump.c
--- a/sys/rump/librump/rumpkern/rump.c  Thu Apr 22 06:57:13 2010 +0000
+++ b/sys/rump/librump/rumpkern/rump.c  Thu Apr 22 07:10:47 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rump.c,v 1.162 2010/04/21 16:16:31 pooka Exp $ */
+/*     $NetBSD: rump.c,v 1.163 2010/04/22 07:10:47 pooka Exp $ */
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.162 2010/04/21 16:16:31 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.163 2010/04/22 07:10:47 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -103,8 +103,6 @@
 
 struct rumpuser_mtx *rump_giantlock;
 
-sigset_t sigcantmask;
-
 struct device rump_rootdev = {
        .dv_class = DV_VIRTUAL
 };
diff -r 80170b1f3470 -r 547f614468f1 sys/rump/librump/rumpkern/signals.c
--- a/sys/rump/librump/rumpkern/signals.c       Thu Apr 22 06:57:13 2010 +0000
+++ b/sys/rump/librump/rumpkern/signals.c       Thu Apr 22 07:10:47 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: signals.c,v 1.1 2010/04/21 11:38:05 pooka Exp $        */
+/*     $NetBSD: signals.c,v 1.2 2010/04/22 07:10:47 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.1 2010/04/21 11:38:05 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: signals.c,v 1.2 2010/04/22 07:10:47 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -40,6 +40,7 @@
 #include "rumpkern_if_priv.h"
 
 const struct filterops sig_filtops;
+sigset_t sigcantmask;
 
 /* RUMP_SIGMODEL_PANIC */
 



Home | Main Index | Thread Index | Old Index