* gdb.texinfo (Signals): Document "ignore", "noignore", and "all".

This commit is contained in:
Eli Zaretskii
2001-02-21 16:17:50 +00:00
parent fbad08934d
commit 5ece1a18c0
2 changed files with 13 additions and 4 deletions

View File

@@ -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> 2001-02-11 Eli Zaretskii <eliz@is.elta.co.il>
* gdb.texinfo (Environment): Document that `path' does not change * gdb.texinfo (Environment): Document that `path' does not change

View File

@@ -3472,9 +3472,11 @@ the defined types of signals.
@kindex handle @kindex handle
@item handle @var{signal} @var{keywords}@dots{} @item handle @var{signal} @var{keywords}@dots{}
Change the way @value{GDBN} handles signal @var{signal}. @var{signal} can Change the way @value{GDBN} handles signal @var{signal}. @var{signal}
be the number of a signal or its name (with or without the @samp{SIG} at the can be the number of a signal or its name (with or without the
beginning). The @var{keywords} say what change to make. @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 @end table
@c @group @c @group
@@ -3498,12 +3500,15 @@ the @code{print} keyword as well.
implies the @code{nostop} keyword as well. implies the @code{nostop} keyword as well.
@item pass @item pass
@itemx noignore
@value{GDBN} should allow your program to see this signal; your program @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 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 @item nopass
@itemx ignore
@value{GDBN} should not allow your program to see this signal. @value{GDBN} should not allow your program to see this signal.
@code{nopass} and @code{ignore} are synonyms.
@end table @end table
@c @end group @c @end group