]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2005-03-30 Paul Brook <paul@codesourcery.com> gdb-csl-arm-20050325-2005-q1a
authorPaul Brook <paul@codesourcery.com>
Wed, 30 Mar 2005 16:08:43 +0000 (16:08 +0000)
committerPaul Brook <paul@codesourcery.com>
Wed, 30 Mar 2005 16:08:43 +0000 (16:08 +0000)
* arm/wrapper.c: Provide SIGTRAP and SIGBUS.

ChangeLog.csl
sim/arm/wrapper.c

index 2d493e7fa296b30b048c1e2cf25cd36d4469e164..115621dd069469aefcf3d2faebd9c4d3e9557b08 100644 (file)
@@ -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.
index bba6f7fd444b6babec8254861921268b371305aa..70cfd1e9dd2c1877b659374c27749cae6887aaf6 100644 (file)
 #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;