diff options
Diffstat (limited to 'sim/arm')
-rw-r--r-- | sim/arm/ChangeLog | 6 | ||||
-rw-r--r-- | sim/arm/wrapper.c | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 68cd1a4..150bb88 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,9 @@ +2012-05-24 Pedro Alves <palves@redhat.com> + + PR gdb/7205 + + Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. + 2012-05-18 Nick Clifton <nickc@redhat.com> PR 14072 diff --git a/sim/arm/wrapper.c b/sim/arm/wrapper.c index 1c55f75..f86799b 100644 --- a/sim/arm/wrapper.c +++ b/sim/arm/wrapper.c @@ -905,7 +905,7 @@ sim_stop_reason (sd, reason, sigrc) if (stop_simulator) { *reason = sim_stopped; - *sigrc = TARGET_SIGNAL_INT; + *sigrc = GDB_SIGNAL_INT; } else if (state->EndCondition == 0) { @@ -916,10 +916,10 @@ sim_stop_reason (sd, reason, sigrc) { *reason = sim_stopped; if (state->EndCondition == RDIError_BreakpointReached) - *sigrc = TARGET_SIGNAL_TRAP; + *sigrc = GDB_SIGNAL_TRAP; else if ( state->EndCondition == RDIError_DataAbort || state->EndCondition == RDIError_AddressException) - *sigrc = TARGET_SIGNAL_BUS; + *sigrc = GDB_SIGNAL_BUS; else *sigrc = 0; } |