diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-13 22:08:27 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-13 22:08:27 +0000 |
commit | ce43223b29f59ab4642af0a3ce5b073fe1dcd3de (patch) | |
tree | ea64fc7dc96c14ae329d4b833e1121ad1e442606 /gdb/breakpoint.c | |
parent | f30f06b84e743947076abbd254918bba8033f8d4 (diff) | |
download | gdb-ce43223b29f59ab4642af0a3ce5b073fe1dcd3de.zip gdb-ce43223b29f59ab4642af0a3ce5b073fe1dcd3de.tar.gz gdb-ce43223b29f59ab4642af0a3ce5b073fe1dcd3de.tar.bz2 |
2005-01-13 Andrew Cagney <cagney@gnu.org>
* breakpoint.c (gdb_breakpoint_query): Update, use
catch_exceptions_with_msg.
(do_captured_breakpoint): Add uiout parameter.
(gdb_breakpoint): Update, use catch_exceptions_with_msg.
* mi/mi-main.c (mi_cmd_thread_select): Pass mi_error_message to
gdb_thread_select. Return MI_CMD_ERROR instead of
MI_CMD_CAUGHT_ERROR.
(mi_cmd_thread_list_ids): Ditto for gdb_list_thread_ids.
(enum captured_mi_execute_command_actions): Delete
EXECUTE_COMMAND_DISPLAY_ERROR.
(captured_mi_execute_command): Delete code handling
MI_CMD_CAUGHT_ERROR.
(mi_execute_command): Don't check for
EXECUTE_COMMAND_DISPLAY_ERROR.
* mi/mi-cmd-break.c (breakpoint_notify): Update call to
gdb_breakpoint_query.
(mi_cmd_break_insert): Pass mi_error_message to gdb_breakpoint.
* mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_CAUGHT_ERROR.
* gdb.h (gdb_thread_select, gdb_list_thread_ids)
(gdb_breakpoint, gdb_breakpoint_query): Add error_message
parameter.
* thread.c (thread_command): Update call.
(gdb_thread_select, gdb_list_thread_ids): Update, call
catch_exceptions_with_msg.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index b05bf4e..822f4b7 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3603,14 +3603,14 @@ do_captured_breakpoint_query (struct ui_out *uiout, void *data) } enum gdb_rc -gdb_breakpoint_query (struct ui_out *uiout, int bnum) +gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message) { struct captured_breakpoint_query_args args; args.bnum = bnum; /* For the moment we don't trust print_one_breakpoint() to not throw an error. */ - return catch_exceptions (uiout, do_captured_breakpoint_query, &args, - NULL, RETURN_MASK_ALL); + return catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args, + NULL, error_message, RETURN_MASK_ALL); } /* Return non-zero if B is user settable (breakpoints, watchpoints, @@ -5334,7 +5334,7 @@ struct captured_breakpoint_args }; static int -do_captured_breakpoint (void *data) +do_captured_breakpoint (struct ui_out *uiout, void *data) { struct captured_breakpoint_args *args = data; struct symtabs_and_lines sals; @@ -5432,7 +5432,8 @@ do_captured_breakpoint (void *data) enum gdb_rc gdb_breakpoint (char *address, char *condition, int hardwareflag, int tempflag, - int thread, int ignore_count) + int thread, int ignore_count, + char **error_message) { struct captured_breakpoint_args args; args.address = address; @@ -5441,8 +5442,8 @@ gdb_breakpoint (char *address, char *condition, args.tempflag = tempflag; args.thread = thread; args.ignore_count = ignore_count; - return catch_errors (do_captured_breakpoint, &args, - NULL, RETURN_MASK_ALL); + return catch_exceptions_with_msg (uiout, do_captured_breakpoint, &args, + NULL, error_message, RETURN_MASK_ALL); } |