Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Andrew Cagney <ac131313@cygnus.com>
To: Daniel Jacobowitz <drow@mvista.com>
Cc: Petr Ledvina <ledvinap@kae.zcu.cz>, gdb-patches@sources.redhat.com
Subject: Re: bug in gdb/target.c:target_signal_to_name
Date: Sun, 13 Jan 2002 13:55:00 -0000	[thread overview]
Message-ID: <3C420231.9000300@cygnus.com> (raw)
In-Reply-To: <20020113161243.A1272@nevyn.them.org>

[-- Attachment #1: Type: text/plain, Size: 622 bytes --]

> On Sun, Jan 13, 2002 at 04:10:05PM -0500, Andrew Cagney wrote:
> 
>> --- 214,223 ----
>> /* I think the code which prints this will always print it along with
>> the string, so no need to be verbose.  */
>> return "?";
>> !   else if ((sig >= TARGET_SIGNAL_FIRST) && (sig <= TARGET_SIGNAL_LAST))
>> !     return signals[sig].name;
>> !   else
>> !     return signals[sig].name;
>> }
>> > /* Given a name, return its signal.  */
> 
> 
> That's probably not what you meant to commit, since both cases are the
> same.


Er, no. Lets try the attached.  Turns out that 
signals[TARGET_SIGNAL_UNKNOWN].name is NULL.

Andrew



[-- Attachment #2: diffs --]
[-- Type: text/plain, Size: 1352 bytes --]

2002-01-13  Andrew Cagney  <ac131313@redhat.com>

	* signals.c (target_signal_to_name): Rewrite.  Only use
	signals[].name when in bounds and non-NULL.
	
Index: signals.c
===================================================================
RCS file: /cvs/src/src/gdb/signals.c,v
retrieving revision 1.2
diff -p -r1.2 signals.c
*** signals.c	2002/01/13 21:11:38	1.2
--- signals.c	2002/01/13 21:51:26
*************** target_signal_to_string (enum target_sig
*** 210,223 ****
  char *
  target_signal_to_name (enum target_signal sig)
  {
!   if (sig == TARGET_SIGNAL_UNKNOWN)
!     /* I think the code which prints this will always print it along with
!        the string, so no need to be verbose.  */
!     return "?";
!   else if ((sig >= TARGET_SIGNAL_FIRST) && (sig <= TARGET_SIGNAL_LAST))
      return signals[sig].name;
    else
!     return signals[sig].name;
  }
  
  /* Given a name, return its signal.  */
--- 210,222 ----
  char *
  target_signal_to_name (enum target_signal sig)
  {
!   if ((sig >= TARGET_SIGNAL_FIRST) && (sig <= TARGET_SIGNAL_LAST)
!       && signals[sig].name != NULL)
      return signals[sig].name;
    else
!     /* I think the code which prints this will always print it along
!        with the string, so no need to be verbose (very old comment).  */
!     return "?";
  }
  
  /* Given a name, return its signal.  */

      reply	other threads:[~2002-01-13 21:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <Pine.OSF.4.33.0111301833160.4557-100000@eryx1.zcu.cz>
2002-01-13 13:10 ` Andrew Cagney
2002-01-13 13:13   ` Daniel Jacobowitz
2002-01-13 13:55     ` 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=3C420231.9000300@cygnus.com \
    --to=ac131313@cygnus.com \
    --cc=drow@mvista.com \
    --cc=gdb-patches@sources.redhat.com \
    --cc=ledvinap@kae.zcu.cz \
    /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