This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[PATCH] Add FIXME in tracepoint.c:read_actions()


I Checked in the attached patch, just in case somebody else stumbles
over it again.

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* tracepoint.c (read_actions): Add FIXME for code depending on
	STOP_SIGNAL.

Index: tracepoint.c
===================================================================
RCS file: /cvs/src/src/gdb/tracepoint.c,v
retrieving revision 1.25
diff -u -p -r1.25 tracepoint.c
--- tracepoint.c 2001/08/11 00:59:29 1.25
+++ tracepoint.c 2001/08/23 20:29:42
@@ -825,6 +825,11 @@ read_actions (struct tracepoint *t)
   /* Control-C quits instantly if typed while in this loop
      since it should not wait until the user types a newline.  */
   immediate_quit++;
+  /* FIXME: kettenis/20010823: Something is wrong here.  In this file
+     STOP_SIGNAL is never defined.  So this code has been left out, at
+     least for quite a while now.  Replacing STOP_SIGNAL with SIGTSTP
+     leads to compilation failures since the variable job_control
+     isn't declared.  Leave this alone for now.  */
 #ifdef STOP_SIGNAL
   if (job_control)
     {



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]