From: Raphael Zulliger <zulliger@indel.ch>
To: gdb@sourceware.org
Subject: Re: Why does "target remote" to a non-stop target stop one thread
Date: Fri, 28 Jun 2013 06:22:00 -0000 [thread overview]
Message-ID: <51CD2B96.6040607@indel.ch> (raw)
In-Reply-To: <51CCA2AB.1000008@embecosm.com>
I can't answer your question, but I once asked a similar one, see
http://sourceware.org/ml/gdb/2010-12/msg00048.html
I still think that this is a GDB bug. I therefore use a patch like this:
@@ -2669,8 +2669,11 @@ notice_new_inferior (ptid_t ptid, int
leave_running, int from_tty)
/* We're going to install breakpoints, and poke at memory,
ensure that the inferior is stopped for a moment while we do
that. */
- target_stop (inferior_ptid);
-
+ /* But not if the target should be kept running - which
+ is the case for all Indel target during attach... */
+ if( !leave_running ) {
+ target_stop (inferior_ptid);
+ }
inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
/* Wait for stop before proceeding. */
On 06/27/2013 10:38 PM, Jeremy Bennett wrote:
> I'm working on GDB for a remote target, using non-stop mode.
>
> When I connect to the target, even in non-stop mode, it insists on
> stopping one thread. The comment in notice_new_inferior () is:
>
>> /* We're going to install breakpoints, and poke at memory,
>> ensure that the inferior is stopped for a moment while we do
>> that. */
> My question is, why we need to stop any thread. Surely the whole point
> of non-stop mode is that we don't generally want to stop any threads if
> it can be avoided.
>
> I'd appreciate understanding the thinking behind this, before I start
> suggesting patches to change the behavior.
>
> Thanks,
>
>
> Jeremy
>
next prev parent reply other threads:[~2013-06-28 6:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-27 20:38 Jeremy Bennett
2013-06-28 6:22 ` Raphael Zulliger [this message]
2013-06-28 8:15 ` Yao Qi
2013-06-28 13:06 ` Jeremy Bennett
2013-06-28 13:47 ` Luis Machado
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=51CD2B96.6040607@indel.ch \
--to=zulliger@indel.ch \
--cc=gdb@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