aboutsummaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-04-20 19:23:30 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-04-20 19:23:30 +0000
commit6c803036a9c59b13ff6335d8745ffa92a76d86fc (patch)
tree6effab0f7212ffd00e566da00adbce287b183fe6 /gdb/defs.h
parenta95abbb3ec8fa250776d6724e6d8ed4bac9a66aa (diff)
downloadfsf-binutils-gdb-6c803036a9c59b13ff6335d8745ffa92a76d86fc.zip
fsf-binutils-gdb-6c803036a9c59b13ff6335d8745ffa92a76d86fc.tar.gz
fsf-binutils-gdb-6c803036a9c59b13ff6335d8745ffa92a76d86fc.tar.bz2
* main.c (main): Accept --annotate=N option and make --fullname
the same as --annotate=1. (command_line_input): Print annotatation before and after prompt. * blockframe.c (flush_cached_frames): Print annotation. * Rename frame_file_full_name to annotation_level and move it from symtab.h to defs.h. * source.c (identify_source_line): If annotation_level > 1, change output format. * breakpoint.c: Print annotation whenever a breakpoint changes. * main.c: New variable server_command. (command_line_input): Parse "server " and set server_command. (dont_repeat): Check server_command.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index d370434..f053112 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -215,7 +215,9 @@ myread PARAMS ((int, char *, int));
extern int
query ();
-
+
+extern int annotation_level; /* in stack.c */
+
extern void
begin_line PARAMS ((void));