Mon Mar 1 11:35:58 2010 UTC ()
add signal stubs required by mfs


(pooka)
diff -r1.122 -r1.123 src/sys/rump/librump/rumpkern/emul.c

cvs diff -r1.122 -r1.123 src/sys/rump/librump/rumpkern/emul.c (expand / switch to unified diff)

--- src/sys/rump/librump/rumpkern/emul.c 2010/02/08 19:02:33 1.122
+++ src/sys/rump/librump/rumpkern/emul.c 2010/03/01 11:35:58 1.123
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: emul.c,v 1.122 2010/02/08 19:02:33 joerg Exp $ */ 1/* $NetBSD: emul.c,v 1.123 2010/03/01 11:35:58 pooka Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2007 Antti Kantee. All Rights Reserved. 4 * Copyright (c) 2007 Antti Kantee. All Rights Reserved.
5 * 5 *
6 * Development of this software was supported by Google Summer of Code. 6 * Development of this software was supported by Google Summer of Code.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
11 * 1. Redistributions of source code must retain the above copyright 11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer. 12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright 13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the 14 * notice, this list of conditions and the following disclaimer in the
@@ -18,27 +18,27 @@ @@ -18,27 +18,27 @@
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE. 27 * SUCH DAMAGE.
28 */ 28 */
29 29
30#include <sys/cdefs.h> 30#include <sys/cdefs.h>
31__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.122 2010/02/08 19:02:33 joerg Exp $"); 31__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.123 2010/03/01 11:35:58 pooka Exp $");
32 32
33#include <sys/param.h> 33#include <sys/param.h>
34#include <sys/null.h> 34#include <sys/null.h>
35#include <sys/vnode.h> 35#include <sys/vnode.h>
36#include <sys/stat.h> 36#include <sys/stat.h>
37#include <sys/select.h> 37#include <sys/select.h>
38#include <sys/syslog.h> 38#include <sys/syslog.h>
39#include <sys/namei.h> 39#include <sys/namei.h>
40#include <sys/kauth.h> 40#include <sys/kauth.h>
41#include <sys/conf.h> 41#include <sys/conf.h>
42#include <sys/device.h> 42#include <sys/device.h>
43#include <sys/queue.h> 43#include <sys/queue.h>
44#include <sys/file.h> 44#include <sys/file.h>
@@ -486,13 +486,27 @@ void @@ -486,13 +486,27 @@ void
486calcru(struct proc *p, struct timeval *up, struct timeval *sp, 486calcru(struct proc *p, struct timeval *up, struct timeval *sp,
487 struct timeval *ip, struct timeval *rp) 487 struct timeval *ip, struct timeval *rp)
488{ 488{
489 489
490 panic("%s unimplemented", __func__); 490 panic("%s unimplemented", __func__);
491} 491}
492 492
493int 493int
494sigismasked(struct lwp *l, int sig) 494sigismasked(struct lwp *l, int sig)
495{ 495{
496 496
497 return 0; 497 return 0;
498} 498}
 499
 500void
 501sigclearall(struct proc *p, const sigset_t *mask, ksiginfoq_t *kq)
 502{
 503
 504 panic("%s unimplemented", __func__);
 505}
 506
 507void
 508ksiginfo_queue_drain0(ksiginfoq_t *kq)
 509{
 510
 511 panic("%s unimplemented", __func__);
 512}