diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-09-07 21:33:08 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-09-07 21:33:08 +0000 |
commit | f9c696d277e3c63524ddd995edac66fa6770395b (patch) | |
tree | a39041c72dfa9863d7f747f08c7450927ea98fd6 /gdb/ChangeLog | |
parent | a2e2dd80557cd2493d1d6c454b86dd010da3d0d4 (diff) | |
download | gdb-f9c696d277e3c63524ddd995edac66fa6770395b.zip gdb-f9c696d277e3c63524ddd995edac66fa6770395b.tar.gz gdb-f9c696d277e3c63524ddd995edac66fa6770395b.tar.bz2 |
* defs.h (enum return_reason): Renumber so that all values are
negative.
(RETURN_MASK): Negate reason.
(catch_exception_ftype): Declare.
(catch_exceptions): Declare.
* top.c (catcher): New function, based on catch_errors. Add in
parameter func_uiout and out parameters func_val, func_caught and
func_cleanup. Change type of func to catch_exceptions_ftype.
Save/restore uiout.
(struct catch_errors_args): Define.
(do_catch_errors): New function.
(catch_errors): Rewrite, use do_catch_errors and catcher.
(catch_exceptions): New function, use catcher.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 28acf24..b9eb663 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,19 @@ +2001-09-07 Andrew Cagney <ac131313@redhat.com> + + * defs.h (enum return_reason): Renumber so that all values are + negative. + (RETURN_MASK): Negate reason. + (catch_exception_ftype): Declare. + (catch_exceptions): Declare. + * top.c (catcher): New function, based on catch_errors. Add in + parameter func_uiout and out parameters func_val, func_caught and + func_cleanup. Change type of func to catch_exceptions_ftype. + Save/restore uiout. + (struct catch_errors_args): Define. + (do_catch_errors): New function. + (catch_errors): Rewrite, use do_catch_errors and catcher. + (catch_exceptions): New function, use catcher. + 2001-09-07 Jim Blandy <jimb@redhat.com> Correctly parse register values provided by the monitor. |