diff options
-rw-r--r-- | ChangeLog.csl | 4 | ||||
-rw-r--r-- | sim/arm/wrapper.c | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index 2d493e7..115621d 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,7 @@ +2005-03-30 Paul Brook <paul@codesourcery.com> + + * arm/wrapper.c: Provide SIGTRAP and SIGBUS. + 2005-03-30 Daniel Jacobowitz <dan@codesourcery.com> * gdb/Makefile.in (arm-linux-nat.o): Update dependencies. diff --git a/sim/arm/wrapper.c b/sim/arm/wrapper.c index bba6f7f..70cfd1e 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; |