From: Pedro Alves Date: Thu, 19 Jul 2012 17:53:00 +0000 (+0000) Subject: 2012-07-19 Pedro Alves X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;ds=sidebyside;h=90f47860e1849087fb8233186cdee3a34740b9d9;p=binutils-gdb.git 2012-07-19 Pedro Alves * record.c (record_resume): Ask the target beneath to report all signals. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0032aac3eca..60810d1c548 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-07-19 Pedro Alves + + * record.c (record_resume): Ask the target beneath to report all + signals. + 2012-07-19 Doug Evans * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if diff --git a/gdb/record.c b/gdb/record.c index ec42aac9d1d..e1a612102aa 100644 --- a/gdb/record.c +++ b/gdb/record.c @@ -1104,6 +1104,9 @@ record_resume (struct target_ops *ops, ptid_t ptid, int step, } } + /* Make sure the target beneath reports all signals. */ + target_pass_signals (0, NULL); + record_beneath_to_resume (record_beneath_to_resume_ops, ptid, step, signal); }