aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-02-21 16:17:50 +0000
committerEli Zaretskii <eliz@gnu.org>2001-02-21 16:17:50 +0000
commit5ece1a18c051bb279f4e1a8f66e0fe08f05e8baa (patch)
tree456d5d4253c332da30a8e37bfe445f9c003bea3e /gdb
parentfbad08934dd31e50f358eaf3db5d2b827946d643 (diff)
downloadgdb-5ece1a18c051bb279f4e1a8f66e0fe08f05e8baa.zip
gdb-5ece1a18c051bb279f4e1a8f66e0fe08f05e8baa.tar.gz
gdb-5ece1a18c051bb279f4e1a8f66e0fe08f05e8baa.tar.bz2
* gdb.texinfo (Signals): Document "ignore", "noignore", and "all".
Diffstat (limited to 'gdb')
-rw-r--r--gdb/doc/ChangeLog4
-rw-r--r--gdb/doc/gdb.texinfo13
2 files changed, 13 insertions, 4 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 04c1921..84b9471 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,3 +1,7 @@
+2001-02-21 Eli Zaretskii <eliz@is.elta.co.il>
+
+ * gdb.texinfo (Signals): Document "ignore", "noignore", and "all".
+
2001-02-11 Eli Zaretskii <eliz@is.elta.co.il>
* gdb.texinfo (Environment): Document that `path' does not change
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 3a97e29..6152970 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -3472,9 +3472,11 @@ the defined types of signals.
@kindex handle
@item handle @var{signal} @var{keywords}@dots{}
-Change the way @value{GDBN} handles signal @var{signal}. @var{signal} can
-be the number of a signal or its name (with or without the @samp{SIG} at the
-beginning). The @var{keywords} say what change to make.
+Change the way @value{GDBN} handles signal @var{signal}. @var{signal}
+can be the number of a signal or its name (with or without the
+@samp{SIG} at the beginning); a list of signal numberss of the form
+@samp{@var{low}-@var{high}}; or the word @samp{all}, meaning all the
+known signals. The @var{keywords} say what change to make.
@end table
@c @group
@@ -3498,12 +3500,15 @@ the @code{print} keyword as well.
implies the @code{nostop} keyword as well.
@item pass
+@itemx noignore
@value{GDBN} should allow your program to see this signal; your program
can handle the signal, or else it may terminate if the signal is fatal
-and not handled.
+and not handled. @code{pass} and @code{noignore} are synonyms.
@item nopass
+@itemx ignore
@value{GDBN} should not allow your program to see this signal.
+@code{nopass} and @code{ignore} are synonyms.
@end table
@c @end group