public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Yao Qi <qiyaoltc@gmail.com>
To: Pedro Alves <palves@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH] Bail out of processing stop if hook-stop resumes target / changes context
Date: Wed, 19 Aug 2015 08:22:00 -0000	[thread overview]
Message-ID: <86zj1n1ycy.fsf@gmail.com> (raw)
In-Reply-To: <1439836415-22008-1-git-send-email-palves@redhat.com> (Pedro	Alves's message of "Mon, 17 Aug 2015 19:33:35 +0100")

Pedro Alves <palves@redhat.com> writes:

Hi Pedro,

> -  if (stop_command)
> -    catch_errors (hook_stop_stub, stop_command,
> -		  "Error while running hook_stop:\n", RETURN_MASK_ALL);
> +  if (stop_command != NULL)
> +    {
> +      struct stop_context *saved_context = save_stop_context ();
> +      struct cleanup *old_chain
> +	= make_cleanup (release_stop_context_cleanup, saved_context);
> +
> +      catch_errors (hook_stop_stub, stop_command,
> +		    "Error while running hook_stop:\n", RETURN_MASK_ALL);
> +
> +      /* If the stop hook resumes the target, then there's no point in
> +	 trying to notify about the previous stop; its context is
> +	 gone.  Likewise if the command switches thread or inferior --
> +	 the observers would print a stop for the wrong
> +	 thread/inferior.  */
> +      if (stop_context_changed (saved_context))
> +	{
> +	  do_cleanups (old_chain);
> +	  return 1;
> +	}
> +      do_cleanups (old_chain);
> +    }

I am wondering why don't we let interpreter in async to execute
stop_command, and we simply return here.  In this way, we don't have to
know whether stop_command resumes the target or switches the thread.
Once there is no event from event loop, the target really stops and
hook-stop is already executed.

-- 
Yao (齐尧)

  reply	other threads:[~2015-08-19  8:22 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-17 18:33 Pedro Alves
2015-08-19  8:22 ` Yao Qi [this message]
2015-08-25 15:48   ` Pedro Alves
2015-08-27 13:35     ` Yao Qi
2015-09-09 19:21       ` Pedro Alves
2015-09-11 14:56         ` Yao Qi
2015-09-14 14:50           ` Pedro Alves

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=86zj1n1ycy.fsf@gmail.com \
    --to=qiyaoltc@gmail.com \
    --cc=gdb-patches@sourceware.org \
    --cc=palves@redhat.com \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).