From: Paul Brook Date: Wed, 30 Mar 2005 16:21:33 +0000 (+0000) Subject: 2005-03-30 Paul Brook X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=74ec5579b91e2275ecb67a8c91311506f6b8bd32;p=binutils-gdb.git 2005-03-30 Paul Brook * arm/wrapper.c: Provide SIGTRAP and SIGBUS. --- diff --git a/sim/ChangeLog b/sim/ChangeLog index 6837a6adb6f..e3c230ed98c 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,7 @@ +2005-03-30 Paul Brook + + * arm/wrapper.c: Provide SIGTRAP and SIGBUS. + 2005-03-24 Hans-Peter Nilsson * cris/Makefile.in (stamp-v10fcpu, stamp-v32fcpu): Add kludge to diff --git a/sim/arm/wrapper.c b/sim/arm/wrapper.c index bba6f7fd444..70cfd1e9dd2 100644 --- a/sim/arm/wrapper.c +++ b/sim/arm/wrapper.c @@ -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;