From: kettenis Date: Thu, 23 Aug 2001 20:31:35 +0000 (+0000) Subject: * tracepoint.c (read_actions): Add FIXME for code depending on X-Git-Tag: cygwin_daemon_merge_HEAD~3484 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ca60e0300d83a7bd97318d6676115ed071ee279b;p=pf3gnuchains%2Fpf3gnuchains4x.git * tracepoint.c (read_actions): Add FIXME for code depending on STOP_SIGNAL. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a6381d8221..c71b88c58e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-08-23 Mark Kettenis + + * tracepoint.c (read_actions): Add FIXME for code depending on + STOP_SIGNAL. + 2001-08-23 Martin M. Hunt * remote-mips.c (pmon_load_fast): Add ui_load_progress_hook diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 6351377d26..2e5cd73dcf 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -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) {