diff options
author | Pedro Alves <palves@redhat.com> | 2012-05-24 16:51:47 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-05-24 16:51:47 +0000 |
commit | a493e3e2e429e4832b8620bd920ad07d0c2892d7 (patch) | |
tree | 4055e5c50cce1e1b622345a311c16a1441951778 /sim/avr | |
parent | 2ea286498fd2ddceaf074bfbc9a2986777ea0396 (diff) | |
download | ppe42-binutils-a493e3e2e429e4832b8620bd920ad07d0c2892d7.tar.gz ppe42-binutils-a493e3e2e429e4832b8620bd920ad07d0c2892d7.zip |
gdb/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
gdb/gdbserver/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
include/gdb/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
* gdb/signals.def: Replace TARGET_SIGNAL_ with GDB_SIGNAL_
throughout.
sim/arm/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/avr/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/common/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/cr16/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/d10v/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/erc32/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/m32c/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/ppc/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/rl78/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
sim/rx/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
Diffstat (limited to 'sim/avr')
-rw-r--r-- | sim/avr/ChangeLog | 6 | ||||
-rw-r--r-- | sim/avr/interp.c | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sim/avr/ChangeLog b/sim/avr/ChangeLog index 3cd0a98b07..7b38a16782 100644 --- a/sim/avr/ChangeLog +++ b/sim/avr/ChangeLog @@ -1,3 +1,9 @@ +2012-05-24 Pedro Alves <palves@redhat.com> + + PR gdb/7205 + + Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. + 2012-03-24 Mike Frysinger <vapier@gentoo.org> * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/avr/interp.c b/sim/avr/interp.c index 8b61af830a..941aea73a4 100644 --- a/sim/avr/interp.c +++ b/sim/avr/interp.c @@ -870,7 +870,7 @@ sim_resume (SIM_DESC sd, int step, int signal) if (step) { cpu_exception = sim_stopped; - cpu_signal = TARGET_SIGNAL_TRAP; + cpu_signal = GDB_SIGNAL_TRAP; } else cpu_exception = sim_running; @@ -1000,7 +1000,7 @@ sim_resume (SIM_DESC sd, int step, int signal) case OP_break: /* Stop on this address. */ cpu_exception = sim_stopped; - cpu_signal = TARGET_SIGNAL_TRAP; + cpu_signal = GDB_SIGNAL_TRAP; pc = ipc; break; @@ -1763,7 +1763,7 @@ int sim_stop (SIM_DESC sd) { cpu_exception = sim_stopped; - cpu_signal = TARGET_SIGNAL_INT; + cpu_signal = GDB_SIGNAL_INT; return 1; } |