public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] fix error sending signal to dead process
@ 2012-04-05 12:48 Patrick Monnerat
  2012-04-19  0:22 ` Keith Seitz
  0 siblings, 1 reply; 6+ messages in thread
From: Patrick Monnerat @ 2012-04-05 12:48 UTC (permalink / raw)
  To: insight

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

 
Using insight-7.4.50 (cvs snapshot 20120403), continuing or stepping
after a fault (i.e. segfault) occurred results in sending a signal to
the dead process.
This is due to hook gdbtk_annotate_signal() trying to get thread_info
structure with a null pid.
Continuing in the same insight session (by re-running the program)
finally ends in insight segfaulting.
 
The attached patch fixes this problem. It simply do not pass signal to
tcl if the pid is null.
 
Cheers,
Patrick
 
P.S.: the bug report system linked from your web site
(http://sources.redhat.com/cgi-bin/gnatsweb.pl?database=insight&user=gue
st&password=guest&cmd=login) is down (HTTP error 500).

[-- Attachment #2: insight-7.4.50-sig2dead.patch --]
[-- Type: application/octet-stream, Size: 912 bytes --]

diff -Naur insight-7.4.50.orig/gdb/gdbtk/generic/gdbtk-hooks.c insight-7.4.50.new/gdb/gdbtk/generic/gdbtk-hooks.c
--- insight-7.4.50.orig/gdb/gdbtk/generic/gdbtk-hooks.c	2012-03-28 15:09:12.000000000 +0200
+++ insight-7.4.50.new/gdb/gdbtk/generic/gdbtk-hooks.c	2012-04-05 12:44:20.284306992 +0200
@@ -804,7 +804,7 @@
 gdbtk_annotate_signal (void)
 {
   char *buf;
-  struct thread_info *tp = inferior_thread ();
+  struct thread_info *tp;
 
   /* Inform gui that the target has stopped. This is
      a necessary stop button evil. We don't want signal notification
@@ -812,6 +812,11 @@
      timeout. */
   Tcl_Eval (gdbtk_interp, "gdbtk_stop_idle_callback");
 
+  if (ptid_equal(inferior_ptid, null_ptid))
+    return;
+
+  tp = inferior_thread ();
+
   buf = xstrprintf ("gdbtk_signal %s {%s}",
 	     target_signal_to_name (tp->suspend.stop_signal),
 	     target_signal_to_string (tp->suspend.stop_signal));

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-04-19 19:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-05 12:48 [PATCH] fix error sending signal to dead process Patrick Monnerat
2012-04-19  0:22 ` Keith Seitz
2012-04-19 15:19   ` Patrick Monnerat
2012-04-19 16:59     ` Keith Seitz
2012-04-19 17:51       ` Patrick Monnerat
2012-04-19 19:50         ` Keith Seitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).