aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2001-08-23 20:31:36 +0000
committerMark Kettenis <kettenis@gnu.org>2001-08-23 20:31:36 +0000
commit1a6fae3cf4c8b77503f34e5d83ef1fc2cefbd079 (patch)
tree9757c0be4b98de59c3b894ac8344ef58bb62f9f3 /gdb
parent7829b8338ef4bf80deba5874ddada101e16b5a47 (diff)
downloadgdb-1a6fae3cf4c8b77503f34e5d83ef1fc2cefbd079.zip
gdb-1a6fae3cf4c8b77503f34e5d83ef1fc2cefbd079.tar.gz
gdb-1a6fae3cf4c8b77503f34e5d83ef1fc2cefbd079.tar.bz2
* tracepoint.c (read_actions): Add FIXME for code depending on
STOP_SIGNAL.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/tracepoint.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a6381d8..c71b88c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-23 Mark Kettenis <kettenis@gnu.org>
+
+ * tracepoint.c (read_actions): Add FIXME for code depending on
+ STOP_SIGNAL.
+
2001-08-23 Martin M. Hunt <hunt@redhat.com>
* remote-mips.c (pmon_load_fast): Add ui_load_progress_hook
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c
index 6351377..2e5cd73 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)
{