Statistics
| Branch: | Revision:

root / bsd-user / signal.c @ 753d11f2

History | View | Annotate | Download (1 kB)

1 84778508 blueswir1
/*
2 84778508 blueswir1
 *  Emulation of BSD signals
3 84778508 blueswir1
 *
4 84778508 blueswir1
 *  Copyright (c) 2003 - 2008 Fabrice Bellard
5 84778508 blueswir1
 *
6 84778508 blueswir1
 *  This program is free software; you can redistribute it and/or modify
7 84778508 blueswir1
 *  it under the terms of the GNU General Public License as published by
8 84778508 blueswir1
 *  the Free Software Foundation; either version 2 of the License, or
9 84778508 blueswir1
 *  (at your option) any later version.
10 84778508 blueswir1
 *
11 84778508 blueswir1
 *  This program is distributed in the hope that it will be useful,
12 84778508 blueswir1
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 84778508 blueswir1
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 84778508 blueswir1
 *  GNU General Public License for more details.
15 84778508 blueswir1
 *
16 84778508 blueswir1
 *  You should have received a copy of the GNU General Public License
17 8167ee88 Blue Swirl
 *  along with this program; if not, see <http://www.gnu.org/licenses/>.
18 84778508 blueswir1
 */
19 84778508 blueswir1
#include <stdlib.h>
20 84778508 blueswir1
#include <stdio.h>
21 84778508 blueswir1
#include <string.h>
22 84778508 blueswir1
#include <stdarg.h>
23 84778508 blueswir1
#include <unistd.h>
24 84778508 blueswir1
#include <signal.h>
25 84778508 blueswir1
#include <errno.h>
26 84778508 blueswir1
27 84778508 blueswir1
#include "qemu.h"
28 84778508 blueswir1
#include "target_signal.h"
29 84778508 blueswir1
30 84778508 blueswir1
//#define DEBUG_SIGNAL
31 84778508 blueswir1
32 84778508 blueswir1
void signal_init(void)
33 84778508 blueswir1
{
34 84778508 blueswir1
}
35 84778508 blueswir1
36 84778508 blueswir1
void process_pending_signals(CPUState *cpu_env)
37 84778508 blueswir1
{
38 84778508 blueswir1
}