Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Pedro Alves <pedro@codesourcery.com>
To: Joel Brobecker <brobecker@adacore.com>
Cc: gdb-patches@sourceware.org
Subject: Re: Fixes for a couple of infrun bugs (thread hop, revert to step thread).
Date: Wed, 10 Jun 2009 16:20:00 -0000	[thread overview]
Message-ID: <200906101721.33039.pedro@codesourcery.com> (raw)
In-Reply-To: <20090609195807.GA25703@adacore.com>

On Tuesday 09 June 2009 20:58:07, Joel Brobecker wrote:

> Coming late on this discussion:
> 
> > +	  /* If the stepping thread exited, then don't try reverting
> > +	     back to it, just keep going.  We need to query the target
> > +	     in case it doesn't support thread exit events.  */
> 
> I'm just wondering if it would make sense to explain why you need to do
> that in the comment, or perhaps just explain what would happen if you
> didn't. There is such a nice description in the body of your email, and
> I'm thinking it's worth having a short summary in the code.
> 
> WDYT?
> 

Sure!

> (yes, I know, I'm a comments freak)

Something like this?  Or were you thinking on some different
aspect of the issue?  Let me know and I'll cook something
extra.

2009-06-10  Pedro Alves  <pedro@codesourcery.com>

	* infrun.c (handle_inferior_event): Update comment around trying
	to revert back to a stepping thread that has exited.

---
 gdb/infrun.c |   22 +++++++++++++++++++---
 1 file changed, 19 insertions(+), 3 deletions(-)

Index: src/gdb/infrun.c
===================================================================
--- src.orig/gdb/infrun.c	2009-06-10 16:48:24.000000000 +0100
+++ src/gdb/infrun.c	2009-06-10 17:18:20.000000000 +0100
@@ -3496,9 +3496,25 @@ infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME (
 	      return;
 	    }
 
-	  /* If the stepping thread exited, then don't try reverting
-	     back to it, just keep going.  We need to query the target
-	     in case it doesn't support thread exit events.  */
+	  /* If the stepping thread exited, then don't try to switch
+	     back and resume it, which could fail in several different
+	     ways depending on the target.  Instead, just keep going.
+
+	     We can find a stepping dead thread in the thread list in
+	     two cases:
+
+	     - The target supports thread exit events, and when the
+	     target tries to delete the thread from the thread list,
+	     inferior_ptid pointed at the exiting thread.  In such
+	     case, calling delete_thread does not really remove the
+	     thread from the list; instead, the thread is left listed,
+	     with 'exited' state.
+
+	     - The target's debug interface does not support thread
+	     exit events, and so we have no idea whatsoever if the
+	     previously stepping thread is still alive.  For that
+	     reason, we need to synchronously query the target
+	     now.  */
 	  if (is_exited (tp->ptid)
 	      || !target_thread_alive (tp->ptid))
 	    {


  reply	other threads:[~2009-06-10 16:20 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-27 22:00 Pedro Alves
2009-05-28 11:12 ` Ulrich Weigand
2009-05-28 17:20   ` Pedro Alves
2009-06-09 19:58 ` Joel Brobecker
2009-06-10 16:20   ` Pedro Alves [this message]
2009-06-10 16:37     ` Joel Brobecker
2010-08-16 17:38 ` Ulrich Weigand
2010-08-16 18:30   ` Pedro Alves
2010-08-16 18:32     ` Pedro Alves
2010-08-16 18:41     ` Ulrich Weigand
2010-08-16 18:53       ` Pedro Alves
2010-08-16 19:01         ` Ulrich Weigand
2010-09-08 18:18         ` [commit] " Ulrich Weigand

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200906101721.33039.pedro@codesourcery.com \
    --to=pedro@codesourcery.com \
    --cc=brobecker@adacore.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox