From: Daniel Jacobowitz <drow@mvista.com>
To: Andrew Cagney <ac131313@ges.redhat.com>
Cc: gdb@sources.redhat.com
Subject: Re: RFC: Two small remote protocol extensions
Date: Fri, 23 Aug 2002 13:15:00 -0000 [thread overview]
Message-ID: <20020823201549.GB26809@nevyn.them.org> (raw)
In-Reply-To: <3D6692AE.90601@ges.redhat.com>
On Fri, Aug 23, 2002 at 03:53:18PM -0400, Andrew Cagney wrote:
>
> >Inferior_ptid is set in this case. That's the whole problem; they have
> >access to it, but the remote implementation doesn't. The code from
> >lin-lwp:
> >
> > /* Apparently the interpretation of PID is dependent on STEP: If
> > STEP is non-zero, a specific PID means `step only this process
> > id'. But if STEP is zero, then PID means `continue *all*
> > processes, but give the signal only to this one'. */
> > resume_all = (PIDGET (ptid) == -1) || !step;
> >
> > if (resume_all)
> > iterate_over_lwps (resume_set_callback, NULL);
> > else
> > iterate_over_lwps (resume_clear_callback, NULL);
> >
> > /* If PID is -1, it's the current inferior that should be
> > handled specially. */
> > if (PIDGET (ptid) == -1)
> > ptid = inferior_ptid;
> >
> >(I'm not quite sure about that comment; that might want to be revisited
> >later... there should be a way to continue just one process. I thought
> >I remembered that working, but I must have been mistaken.)
>
> Hmm,
>
> I'm more interested in Solaris (since that target has a thread model
> which allows control of the entire thread group). With that one, I
> couldn't find an equivalent operation (I've probably missed it.).
Let me see... sol_thread_resume:
inferior_ptid = thread_to_lwp (inferior_ptid, PIDGET (main_ph.ptid));
procfs_resume:
/* Find procinfo for main process */
pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
After that if PIDGET (ptid) == -1, it operates on the procinfo it got
from inferior_ptid. Which is an LWP. I'm not sure precisely that will
happen if you resume a specific LWP under Solaris; presumably it will
resume that LWP's "current" thread in some sense, I don't know if that
will behave predictably or not. I'm not familiar with Solaris threads.
> It's just really wierd (wrong?) that one layer of GDB thinks that it
> only needs to specify the step thread when doing the thread hop, yet the
> next layer down finds it necessary to always specify the step thread :-?
Sure. I suppose we should clean up the interface to resume, to prevent
all this confusion re-arising... which means figuring out our possible
behaviors, and whether they are even implementable on particular
targets.
On Linux the options for any given LWP (at the moment, that means for
any given thread) are step, run, stop. All combinations are available.
I think the _useful_ ones are:
step one, stop others
step one, continue others
continue one, stop others
continue one, continue others
And, of course:
stop one, stop others
:)
Something like:
resume (ptid, step, run_others, target_signal)
maybe? Does anyone think step_all is useful (I don't)?
PS:
Some day letting the user be more precise (run these two threads) would
be nice. I envision a day in the distant future:
-> Continue thread 1
-> Continue thread 2
-> Wait for inferior status
<- All threads stopped, thread 1, SIGSEGV
or
-> Continue all threads
-> Wait for inferior status [maybe implicit in the all-threads
request]
<- Thread 1 stopped, shared lib breakpoint, all other threads running
But let's not try to design to that quite yet :)
--
Daniel Jacobowitz
MontaVista Software Debian GNU/Linux Developer
next prev parent reply other threads:[~2002-08-23 20:15 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-05-01 19:25 Daniel Jacobowitz
2002-05-02 8:38 ` Andrew Cagney
2002-05-02 8:52 ` Daniel Jacobowitz
2002-05-02 9:39 ` Andrew Cagney
2002-05-02 12:14 ` Daniel Jacobowitz
2002-05-02 12:22 ` Kevin Buettner
2002-05-02 12:34 ` Daniel Jacobowitz
2002-05-02 13:13 ` Andrew Cagney
2002-05-02 14:09 ` Daniel Jacobowitz
2002-05-03 11:24 ` Andrew Cagney
2002-05-03 14:28 ` Daniel Jacobowitz
2002-05-03 15:18 ` Andrew Cagney
2002-05-03 15:22 ` Daniel Jacobowitz
2002-05-04 19:59 ` Andrew Cagney
2002-05-02 13:13 ` Quality Quorum
2002-05-02 14:13 ` Daniel Jacobowitz
2002-05-03 13:07 ` Andrew Cagney
2002-08-16 7:30 ` Daniel Jacobowitz
2002-08-16 7:42 ` Andrew Cagney
2002-08-16 7:52 ` Daniel Jacobowitz
2002-08-16 8:21 ` Andrew Cagney
2002-08-22 19:23 ` Andrew Cagney
2002-08-22 19:36 ` Daniel Jacobowitz
2002-08-23 7:24 ` Quality Quorum
2002-08-23 7:26 ` Daniel Jacobowitz
2002-08-23 7:49 ` Quality Quorum
2002-08-23 8:57 ` Andrew Cagney
2002-08-23 11:16 ` Quality Quorum
2002-08-23 12:39 ` Andrew Cagney
2002-08-23 13:10 ` Quality Quorum
2002-08-27 20:23 ` Andrew Cagney
2002-08-28 8:31 ` Quality Quorum
2002-08-28 9:44 ` Andrew Cagney
2002-08-28 9:49 ` Daniel Jacobowitz
2002-08-22 21:08 ` Andrew Cagney
2002-08-23 5:44 ` Daniel Jacobowitz
2002-08-23 12:10 ` Andrew Cagney
2002-08-23 12:53 ` Andrew Cagney
2002-08-23 13:15 ` Daniel Jacobowitz [this message]
2002-08-27 21:07 ` Andrew Cagney
2002-08-28 6:33 ` Daniel Jacobowitz
2002-09-25 8:51 ` Daniel Jacobowitz
2002-09-25 11:17 ` Andrew Cagney
2002-09-26 18:39 ` Andrew Cagney
2002-09-26 18:48 ` Andrew Cagney
2003-06-29 7:51 ` Daniel Jacobowitz
2003-09-03 23:41 ` Andrew Cagney
2003-09-17 15:51 ` Daniel Jacobowitz
2003-09-17 16:19 ` Andrew Cagney
2003-09-17 16:23 ` Daniel Jacobowitz
2003-09-22 0:27 ` Andrew Cagney
2003-09-22 1:01 ` Daniel Jacobowitz
2003-09-22 3:02 ` Andrew Cagney
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=20020823201549.GB26809@nevyn.them.org \
--to=drow@mvista.com \
--cc=ac131313@ges.redhat.com \
--cc=gdb@sources.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