Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Pedro Alves <palves@redhat.com>
To: Jan Kratochvil <jan.kratochvil@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [patch 2/2] Fix watchpoints for multi-inferior #2
Date: Tue, 24 Jan 2012 13:40:00 -0000	[thread overview]
Message-ID: <4F1EAFE6.30202@redhat.com> (raw)
In-Reply-To: <20120120213110.GB424@host2.jankratochvil.net>

On 01/20/2012 09:31 PM, Jan Kratochvil wrote:
> On Mon, 02 Jan 2012 20:14:23 +0100, Pedro Alves wrote:
>> Do we clear inf_data or inf_data's contents anywhere on inferior
>> exit or startup, so to not leave debug registers stale across runs?
>> (The cleanup only runs when the inferior is deleted.)
> 
> Yes, it is already cleared in FSF GDB.

Good, thanks.

> Plus I think this issue is unrelated to this multi-inferiorization patch.

It would be if the multi-inferiorization would make debug registers stale,
hence my question.  Please try to keep an open spirit.

> 
>>> --- /dev/null
>>> +++ b/gdb/testsuite/gdb.multi/watchpoint-multi.exp
> [...]
>>> +if [is_remote target] {
>>> +    # It is KFAIL.
>>> +    continue
>>
>> Did you mean to turn this into a real kfail?  What are the
>> gdbserver problems, btw?
> 
> It is no longer KFAIL, included gdbserver fixes.
> 
> The first one is for dead-loop of:
> 	Got an event from pending child 10373 (057f)
> 	Got a pending child 10373
> 	Got an event from pending child 10373 (057f)
> 	Got a pending child 10373
> because linux_wait_for_event creates creates status_pending_p and then asks
> linux_wait_for_event_1 for the next event which apparently returns the newly
> created status_pending_p so linux_wait_for_event stores it back and so on.
> 
> The second fix is that despite default `set schedule-multiple off' gdbserver
> sometimes resumed all the inferiors on GDB "continue".
> 
> Both cases are visible with the testcase (the first one in ~50% of runs).

Ah.  Could you please split the gdbserver bits into a separate patch?
I'd like to take a good look at them, but if the watchpoint
bits proper are already in, it'd be easier.  The non-gdbserver bits
look okay to me.

>  /* Count the LWP's that have had events.  */
>  
>  static int
> @@ -2107,7 +2090,14 @@ retry:
>        if (thread == NULL)
>  	{
>  	  struct thread_resume resume_info;
> -	  resume_info.thread = minus_one_ptid;
> +
> +	  /* Resume only a single process if requested so.  */
> +	  if (!ptid_equal (cont_thread, minus_one_ptid)
> +	      && ptid_get_lwp (cont_thread) == -1)
> +	    resume_info.thread = cont_thread;

Just above we see:

      thread = (struct thread_info *) find_inferior_id (&all_threads,
							cont_thread);

      /* No stepping, no signal - unless one is pending already, of course.  */
      if (thread == NULL)

So, cont_thread does not exist, which was the whole point of reaching
here.  Therefore there's no use trying to resuming it (at first sight).

BTW, I have just recently stumbled on this:

 http://sourceware.org/ml/gdb-patches/2012-01/msg00502.html

But as said, I'll need to take a better look at the gdbserver bits.

> +	  else
> +	    resume_info.thread = minus_one_ptid;
> +
>  	  resume_info.kind = resume_continue;
>  	  resume_info.sig = 0;
>  	  linux_resume (&resume_info, 1);

-- 
Pedro Alves


  reply	other threads:[~2012-01-24 13:20 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-02 16:47 [patch 2/2] Fix watchpoints for multi-inferior Jan Kratochvil
2012-01-02 19:14 ` Pedro Alves
2012-01-20 21:34   ` [patch 2/2] Fix watchpoints for multi-inferior #2 Jan Kratochvil
2012-01-24 13:40     ` Pedro Alves [this message]
2012-01-24 14:20       ` [commit] " Jan Kratochvil
2012-01-25 15:57       ` Jan Kratochvil
2012-01-25 17:54         ` Pedro Alves
2012-01-25 18:22           ` Pedro Alves
2012-01-25 20:08             ` Pedro Alves
2012-01-26 21:56               ` [patch] protocol doc vs. gdbserver on H and pPID.-1 etc. [Re: [patch 2/2] Fix watchpoints for multi-inferior #2] Jan Kratochvil
2012-01-27 11:53                 ` Pedro Alves
2012-01-27 12:02                 ` Pedro Alves
2012-03-16 20:11               ` [patch 2/2] Fix watchpoints for multi-inferior #2 Pedro Alves
2012-03-16 20:14                 ` Jan Kratochvil

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=4F1EAFE6.30202@redhat.com \
    --to=palves@redhat.com \
    --cc=gdb-patches@sourceware.org \
    --cc=jan.kratochvil@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