Mirror of the gdb mailing list
 help / color / mirror / Atom feed
From: Andrew Cagney <ac131313@cygnus.com>
To: Elena Zannoni <ezannoni@redhat.com>
Cc: Daniel Jacobowitz <drow@mvista.com>,
	cagney@redhat.com, gdb@sources.redhat.com
Subject: Re: When isn't there a selected frame?
Date: Wed, 17 Apr 2002 07:37:00 -0000	[thread overview]
Message-ID: <3CBD88AD.8010001@cygnus.com> (raw)
In-Reply-To: <15546.17420.23479.131133@localhost.redhat.com>

> Daniel Jacobowitz writes:
>  > On Sun, Apr 14, 2002 at 10:04:51PM -0400, Andrew Cagney wrote:
>  > > Hello,
>  > > > > Random bits of GDB contain code snipits like:
>  > > > > if (selected_frame)
>  > > ..
>  > > else
>  > > error ("No selected frame");
>  > > > > Is there any time when it doesn't make sense to have a selected frame 
>  > > (except, say when current_frame() is also NULL)?
>  > > Perhaps to handle when the target is not running?  I am pretty sure
>  > I've reached a couple of those messages.
>  > Yes, so it seems.  What about connecting to a remote target? Do you
> get a frame selected right away? How about attach? detach?  Hmm, I
> just tried with a sim and a native attach, and current_frame and
> selected_frame seem to be in sync, i.e, not null at the same time.

So, provided the target has ``state'', there is a frame.  This is 
different to ``no stack''.  Even with no stack, there can be a frame, it 
is just that it can't do much :-(

Anyway, this means the change:

>     get_selected_frame ()
>       if (selected_frame)
>         return selected_frame;
>       else
>         return get_current_frame ()

Well actually:
	if (selected_frame == NULL)
	  selected_frame = get_current_frame ();
	return selected_frame;

Is looking reasonable as a first cut.  Return what ever 
get_current_frame() thinks is the current frame.

> BTW, I always got a bit confused by the 'No stack' vs. 'No selected
> frame' message. I know that No stack has to do with the capabilities
> of the target as opposed at what your inferior program is doing right
> now, but as a *user* I find it a bit confusing.

> And don't forget the variations on the theme:
> 
> "No frame selected"
> "No selected stack frame"
> "no frame selected"
> 
> Should we stick with just one message?

Yes.  How to fix it, I'm not sure.  I suspect no one is really sure 
if/when selected_frame() can be null.

Andrew



      reply	other threads:[~2002-04-17 14:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-14 19:04 Andrew Cagney
2002-04-14 19:13 ` Daniel Jacobowitz
2002-04-14 20:08   ` Elena Zannoni
2002-04-17  7:37     ` Andrew Cagney [this message]

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=3CBD88AD.8010001@cygnus.com \
    --to=ac131313@cygnus.com \
    --cc=cagney@redhat.com \
    --cc=drow@mvista.com \
    --cc=ezannoni@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