From: "Pierre Muller" <pierre.muller@ics-cnrs.unistra.fr>
To: "'Sergio Durigan Junior'" <sergiodj@redhat.com>,
"'GDB Patches'" <gdb-patches@sourceware.org>
Subject: RE: [RFC/PATCH] Add new internal variable $_signo
Date: Fri, 14 Jun 2013 09:37:00 -0000 [thread overview]
Message-ID: <002801ce68dd$845cd2e0$8d1678a0$@muller@ics-cnrs.unistra.fr> (raw)
In-Reply-To: <m3obb9y1aw.fsf@redhat.com>
Is it that I didn't understand the patch correctly or
do you use the GDB signal number in infrun.c
while you use the native signal integer value in the
corelow.c case?
Aren't those two values sometimes different?
Wouldn't it be more consistent to only use the GDB internal number?
In fact, this "inconsistency" is not specific to your patch,
the siggy from corelow.c is printed out, while other signals are always
first converted to GDB enum values before being printed (and apparently not
in
integer form but using the gdb_signal_to_name function.
Shouldn't we use gdb_signal_to_name (sig) in core_open
and set $_signo also to sig?
Pierre
Proposed patch (untested...)
Should I submit it independently or
is there a specific reason to print the numeric value of the signal
for core dumps while we seem to use signal names elsewhere?
2013-06-14 Pierre Muller <muller@sourceware.org>
* corelow.c (core_open): Use GDB signal name instead of raw
signal value.
Index: corelow.c
===================================================================
RCS file: /cvs/src/src/gdb/corelow.c,v
retrieving revision 1.132
diff -u -p -r1.132 corelow.c
--- corelow.c 15 May 2013 12:26:14 -0000 1.132
+++ corelow.c 14 Jun 2013 08:56:08 -0000
@@ -445,7 +445,7 @@ core_open (char *filename, int from_tty)
: gdb_signal_from_host (siggy));
printf_filtered (_("Program terminated with signal %s, %s.\n"),
- siggy, gdb_signal_to_string (sig));
+ gdb_signal_to_name (sig), gdb_signal_to_string
(sig));
}
/* Fetch all registers from core file. */
next prev parent reply other threads:[~2013-06-14 8:59 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-14 2:39 Sergio Durigan Junior
2013-06-14 7:49 ` Eli Zaretskii
2013-06-16 6:08 ` Sergio Durigan Junior
2013-06-14 8:59 ` Mark Kettenis
2013-06-14 9:37 ` Pierre Muller [this message]
2013-06-14 17:59 ` Sergio Durigan Junior
2013-06-14 20:36 ` Pedro Alves
2013-06-15 6:46 ` Sergio Durigan Junior
2013-06-17 17:02 ` Pedro Alves
2013-06-14 17:58 ` Pedro Alves
2013-06-16 5:57 ` Sergio Durigan Junior
2013-06-16 6:25 ` Sergio Durigan Junior
2013-06-17 17:20 ` Pedro Alves
2013-07-17 18:41 ` Tom Tromey
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='002801ce68dd$845cd2e0$8d1678a0$@muller@ics-cnrs.unistra.fr' \
--to=pierre.muller@ics-cnrs.unistra.fr \
--cc=gdb-patches@sourceware.org \
--cc=sergiodj@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