From a493e3e2e429e4832b8620bd920ad07d0c2892d7 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Thu, 24 May 2012 16:51:47 +0000 Subject: gdb/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. gdb/gdbserver/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. include/gdb/ 2012-05-24 Pedro Alves PR gdb/7205 * gdb/signals.def: Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/arm/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/avr/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/common/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/cr16/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/d10v/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/erc32/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/m32c/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/ppc/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/rl78/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. sim/rx/ 2012-05-24 Pedro Alves PR gdb/7205 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. --- sim/avr/interp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sim/avr/interp.c') diff --git a/sim/avr/interp.c b/sim/avr/interp.c index 8b61af8..941aea7 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; } -- cgit v1.1