2005-03-30 Paul Brook <paul@codesourcery.com>
* arm/wrapper.c: Provide SIGTRAP and SIGBUS.
This commit is contained in:
parent
e90269c823
commit
74ec5579b9
2 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue