summaryrefslogtreecommitdiff
path: root/gdb/tracepoint.c
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
commit45ebe797aa9cb7a7ad9cb009db012d555368b10e (patch)
tree329369689db6dbfcfc6d85d56b8828531e0282b9 /gdb/tracepoint.c
parentb170a8ef87c30f13dc51812128542654029a74c4 (diff)
downloadgdb-45ebe797aa9cb7a7ad9cb009db012d555368b10e.tar.gz
* tracepoint.c (read_actions): Add FIXME for code depending on
STOP_SIGNAL.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r--gdb/tracepoint.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c
index 6351377d26e..2e5cd73dcf9 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)
{