aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc
diff options
context:
space:
mode:
authorStephane Carrez <stcarrez@nerim.fr>2002-09-01 08:52:36 +0000
committerStephane Carrez <stcarrez@nerim.fr>2002-09-01 08:52:36 +0000
commit269c21feac909882f35630441156177385061227 (patch)
tree8613e72de2dbabcdc13efcda5cb67ed503e38acb /gdb/doc
parent7cf36c7860ba9b1da5aa86a6603b30fc427b9fda (diff)
downloadfsf-binutils-gdb-269c21feac909882f35630441156177385061227.zip
fsf-binutils-gdb-269c21feac909882f35630441156177385061227.tar.gz
fsf-binutils-gdb-269c21feac909882f35630441156177385061227.tar.bz2
* gdb.texinfo (TUI Overview): Document breakpoint markers.
Diffstat (limited to 'gdb/doc')
-rw-r--r--gdb/doc/ChangeLog4
-rw-r--r--gdb/doc/gdb.texinfo33
2 files changed, 35 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index fb133d8..2869c98 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,5 +1,9 @@
2002-09-01 Stephane Carrez <stcarrez@nerim.fr>
+ * gdb.texinfo (TUI Overview): Document breakpoint markers.
+
+2002-09-01 Stephane Carrez <stcarrez@nerim.fr>
+
* gdb.texinfo (TUI Single Key Mode): Document new SingleKey mode.
(TUI Keys): Likewise.
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 1dc970f..ff14bcf 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -13142,8 +13142,6 @@ window is always visible.
@item source
The source window shows the source file of the program. The current
line as well as active breakpoints are displayed in this window.
-The current program position is shown with the @samp{>} marker and
-active breakpoints are shown with @samp{*} markers.
@item assembly
The assembly window shows the disassembly output of the program.
@@ -13155,6 +13153,37 @@ changed are highlighted.
@end table
+The source and assembly windows show the current program position
+by highlighting the current line and marking them with the @samp{>} marker.
+Breakpoints are also indicated with two markers. A first one
+indicates the breakpoint type:
+
+@table @code
+@item B
+Breakpoint which was hit at least once.
+
+@item b
+Breakpoint which was never hit.
+
+@item H
+Hardware breakpoint which was hit at least once.
+
+@item h
+Hardware breakpoint which was never hit.
+
+@end table
+
+The second marker indicates whether the breakpoint is enabled or not:
+
+@table @code
+@item +
+Breakpoint is enabled.
+
+@item -
+Breakpoint is disabled.
+
+@end table
+
The source, assembly and register windows are attached to the thread
and the frame position. They are updated when the current thread
changes, when the frame changes or when the program counter changes.