From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Kettenis To: gdb-patches@sources.redhat.com Subject: [PATCH] Add FIXME in tracepoint.c:read_actions() Date: Thu, 23 Aug 2001 13:32:00 -0000 Message-id: <200108232032.f7NKWQM03414@delius.kettenis.local> X-SW-Source: 2001-08/msg00269.html I Checked in the attached patch, just in case somebody else stumbles over it again. Mark Index: ChangeLog from Mark Kettenis * 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) {