1 /* Simulator signal support
2 Copyright (C) 1997 Free Software Foundation, Inc.
3 Contributed by Cygnus Support
5 This file is part of the GNU Simulators.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 #include "gdb/signals.h"
27 This provides a layer between our values and host/target values. */
35 /* misaligned memory access */
37 /* tried to read/write memory that's not readable/writable */
39 /* cpu limit exceeded */
41 /* simulation interrupted (sim_stop called) */
43 /* Floating point or integer divide */
45 /* simulation aborted */
49 int sim_signal_to_host (SIM_DESC sd
, SIM_SIGNAL
);
50 enum target_signal
sim_signal_to_target (SIM_DESC sd
, SIM_SIGNAL
);
52 #endif /* SIM_SIGNAL_H */