From: Pedro Alves <palves@redhat.com>
To: Doug Evans <dje@google.com>
Cc: Sandra Loosemore <sandra@codesourcery.com>, gdb-patches@sourceware.org
Subject: Re: Cannot execute this command without a live selected thread.
Date: Fri, 24 Oct 2014 20:20:00 -0000 [thread overview]
Message-ID: <544AB48A.9080503@redhat.com> (raw)
In-Reply-To: <21578.45122.246973.309386@ruffy.mtv.corp.google.com>
On 10/24/2014 09:02 PM, Doug Evans wrote:
> Pedro Alves writes:
> > On 10/24/2014 08:19 PM, Doug Evans wrote:
> >
> > > I looked at the current remote_thread_alive.
> > > It has this:
> > >
> > > if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
> > > /* The main thread is always alive. This can happen after a
> > > vAttach, if the remote side doesn't support
> > > multi-threading. */
> > > return 1;
> > >
> > > pid != 0 && lwp == 0 -> main thread?
> > > That sounds odd.
> > > Do you know why the test is the way it is?
> >
> > If it's the 0 part you're calling out as odd, it's that way
> > because we didn't have a thread id back when we created
> > the thread:
> >
> > static void
> > extended_remote_attach_1 (struct target_ops *target, const char *args,
> > int from_tty)
> > {
> > struct remote_state *rs = get_remote_state ();
> > int pid;
> > char *wait_status = NULL;
> >
> > pid = parse_pid_to_attach (args);
> >
> > ...
> > set_current_inferior (remote_add_inferior (0, pid, 1));
> >
> > inferior_ptid = pid_to_ptid (pid);
> >
> > ...
> > {
> > /* Now, if we have thread information, update inferior_ptid. */
> > inferior_ptid = remote_current_thread (inferior_ptid);
> >
> > /* Add the main thread to the thread list. */
> > add_thread_silent (inferior_ptid);
> > }
> > ...
> >
> >
> > Later on, when we get the first stop event back, we may or may not
> > find a thread id to use:
> >
> > static void
> > remote_notice_new_inferior (ptid_t currthread, int running)
> > {
> > ...
> > if (ptid_is_pid (inferior_ptid)
> > && pid == ptid_get_pid (inferior_ptid))
> > {
> > /* inferior_ptid has no thread member yet. This can happen
> > with the vAttach -> remote_wait,"TAAthread:" path if the
> > stub doesn't support qC. This is the first stop reported
> > after an attach, so this is the main thread. Update the
> > ptid in the thread list. */
> > if (in_thread_list (pid_to_ptid (pid)))
> > thread_change_ptid (inferior_ptid, currthread);
> > else
> > {
> > remote_add_thread (currthread, running);
> > inferior_ptid = currthread;
> > }
> > return;
> > }
> >
> > If we never see any stop reply with a thread id, or the target
> > doesn't support any thread listing packets, it must be that the
> > target doesn't really support threads, so we shouldn't ever delete
> > that thread, for we made it up. We use "pid != 0 && lwp == 0"
> > rather than magic_null_ptid as the former carries more info, for
> > including the PID that the user specified on "attach PID" (and a stop
> > reply with a thread id may come along), so we can put that PID in
> > inferior->pid too and display it in "info inferiors", etc., and preserve
> > the invariant that starting from a ptid we can find the corresponding
> > inferior, matching by pid. We shouldn't ask the target whether
> > that thread is alive, as it's a thread id we made up.
> >
> > BTW, we do the same in native debugging. E.g., see inf-ptrace.c:
> >
> > inferior_ptid = pid_to_ptid (pid);
> >
> > /* Always add a main thread. If some target extends the ptrace
> > target, it should decorate the ptid later with more info. */
> > add_thread_silent (inferior_ptid);
> >
> > If the inferior is truly non-threaded, and doesn't have any other
> > threads, it's main/single thread can well end up with a ptid with only
> > the pid field set; there's no conflict with using (pid,0,0) to refer
> > to all threads of the process as there'll be only one in that
> > process anyway.
>
> Thanks, that's helpful.
>
> Not all targets use ptid.lwp.
All process_stratum targets do. remote.c is a process_stratum
target, and I think that last to be converted:
commit ba3481708d3f18e77ab6c000385b131c76d2733e
Author: Pedro Alves <palves@redhat.com>
AuthorDate: Wed Feb 19 18:25:40 2014 +0000
Commit: Pedro Alves <palves@redhat.com>
CommitDate: Wed Feb 19 18:25:40 2014 +0000
remote.c: Use the ptid.lwp field to store remote thread ids rather than ptid.tid.
From GDB's perspective, independently of how the target really
implements threads, gdb/remote sees all threads as if kernel/system
threads. A rationale along theses lines led to gdbserver storing
thread ids in ptid.lwp in all ports.
Because remote.c is currently using ptid.tid, we can't make gdbserver
and gdb share bits of remote-specific code that manipulates ptids
(e.g., write_ptid/read_ptid).
This patch thus makes remote.c use ptid.lwp instead of ptid.tid.
I believe that on the GDB side too, it's best that we standardize on
process_stratum targets using the ptid.lwp field to store thread ids
anyway. The idea being leave the ptid.tid field free for any
thread_stratum target that might want to sit on top.
> Does remote.c not support targets that use tid instead of lwp?
> I guess not.
Not sure what you mean by "support" here.
Thanks,
Pedro Alves
next prev parent reply other threads:[~2014-10-24 20:20 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-24 15:55 Sandra Loosemore
2014-10-24 16:07 ` Pedro Alves
2014-10-24 17:08 ` Sandra Loosemore
2014-10-24 17:23 ` Pedro Alves
2014-10-24 17:40 ` Pedro Alves
2014-10-24 19:02 ` Sandra Loosemore
2014-10-24 19:19 ` Doug Evans
2014-10-24 19:40 ` Pedro Alves
2014-10-24 20:02 ` Doug Evans
2014-10-24 20:20 ` Pedro Alves [this message]
2014-10-24 20:38 ` Doug Evans
2014-10-24 20:52 ` Remove libthread_db -> remove thread_stratum? [was Re: Cannot execute this command without a live selected thread.] Doug Evans
2014-10-24 22:07 ` Cannot execute this command without a live selected thread Pedro Alves
2014-10-27 19:53 ` Sandra Loosemore
2014-10-28 12:10 ` [pushed] Workaround remote targets that report an empty list to qfThreadInfo (Re: Cannot execute this command without a live selected thread.) Pedro Alves
2014-10-29 19:16 ` Doug Evans
2014-10-24 17:57 ` Cannot execute this command without a live selected thread Sandra Loosemore
2014-10-24 18:15 ` 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=544AB48A.9080503@redhat.com \
--to=palves@redhat.com \
--cc=dje@google.com \
--cc=gdb-patches@sourceware.org \
--cc=sandra@codesourcery.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