Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] gdbserver: Reset current_thread when its process is removed.
@ 2015-10-15 14:36 Aleksandar Ristovski
  2015-10-15 16:22 ` Pedro Alves
  0 siblings, 1 reply; 6+ messages in thread
From: Aleksandar Ristovski @ 2015-10-15 14:36 UTC (permalink / raw)
  To: gdb-patches; +Cc: Aleksandar Ristovski

In case of running gdbserver with --multi, if a nat file
removes a process, current_thread may remain set to now
freed 'process' entry.

This may lead to wrong operation or a crash.

gdb/gdbserver/ChangeLog:
	* inferiors.c (remove_process): Reset current_thread if its
	associated process gets removed.
---
 gdb/gdbserver/inferiors.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gdb/gdbserver/inferiors.c b/gdb/gdbserver/inferiors.c
index 21f45fa..4688a44 100644
--- a/gdb/gdbserver/inferiors.c
+++ b/gdb/gdbserver/inferiors.c
@@ -291,6 +291,11 @@ remove_process (struct process_info *process)
 {
   clear_symbol_cache (&process->symbol_cache);
   free_all_breakpoints (process);
+  if (current_thread && get_thread_process (current_thread) == process)
+    {
+      remove_thread (current_thread);
+      current_thread = NULL;
+    }
   remove_inferior (&all_processes, &process->entry);
   free (process);
 }
-- 
1.9.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-10-16 15:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-15 14:36 [PATCH] gdbserver: Reset current_thread when its process is removed Aleksandar Ristovski
2015-10-15 16:22 ` Pedro Alves
2015-10-16 13:40   ` Aleksandar Ristovski
2015-10-16 14:04     ` Pedro Alves
2015-10-16 14:48       ` Aleksandar Ristovski
2015-10-16 15:06         ` Pedro Alves

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox