2005-03-30 Paul Brook <paul@codesourcery.com>

* arm/wrapper.c: Provide SIGTRAP and SIGBUS.
This commit is contained in:
Paul Brook 2005-03-30 16:21:33 +00:00
parent e90269c823
commit 74ec5579b9
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-03-30 Paul Brook <paul@codesourcery.com>
* arm/wrapper.c: Provide SIGTRAP and SIGBUS.
2005-03-24 Hans-Peter Nilsson <hp@axis.com>
* cris/Makefile.in (stamp-v10fcpu, stamp-v32fcpu): Add kludge to

View File

@ -38,6 +38,14 @@
#include "run-sim.h"
#include "gdb/sim-arm.h"
#ifndef SIGTRAP
#define SIGTRAP 5
#endif
#ifndef SIGBUS
#define SIGBUS SIGSEGV
#endif
host_callback *sim_callback;
static struct ARMul_State *state;