This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[ob/pushed] gdbserver: Fix exec stop reply reporting conditions
- From: Pedro Alves <palves at redhat dot com>
- To: gdb-patches at sourceware dot org
- Date: Tue, 15 Sep 2015 18:04:07 +0100
- Subject: [ob/pushed] gdbserver: Fix exec stop reply reporting conditions
- Authentication-results: sourceware.org; auth=none
gdb/gdbserver/ChangeLog:
2015-09-15 Pedro Alves <palves@redhat.com>
* remote-utils.c (prepare_resume_reply) <TARGET_WAITKIND_EXECD>:
Check whether to report exec events instead of checking whether
multiprocess is enabled.
---
gdb/gdbserver/ChangeLog | 6 ++++++
gdb/gdbserver/remote-utils.c | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index 6d6097f..5c0cbce 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,5 +1,11 @@
2015-09-15 Pedro Alves <palves@redhat.com>
+ * remote-utils.c (prepare_resume_reply) <TARGET_WAITKIND_EXECD>:
+ Check whether to report exec events instead of checking whether
+ multiprocess is enabled.
+
+2015-09-15 Pedro Alves <palves@redhat.com>
+
PR remote/18965
* remote-utils.c (prepare_resume_reply): Merge
TARGET_WAITKIND_VFORK_DONE switch case with the
diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c
index 78fbfac..7cf66cc 100644
--- a/gdb/gdbserver/remote-utils.c
+++ b/gdb/gdbserver/remote-utils.c
@@ -1142,7 +1142,7 @@ prepare_resume_reply (char *buf, ptid_t ptid,
sprintf (buf, "T%02xvforkdone:;", signal);
}
- else if (status->kind == TARGET_WAITKIND_EXECD && multi_process)
+ else if (status->kind == TARGET_WAITKIND_EXECD && report_exec_events)
{
enum gdb_signal signal = GDB_SIGNAL_TRAP;
const char *event = "exec";
--
1.9.3