diff options
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmd-break.c | 2 | ||||
-rw-r--r-- | gdb/mi/mi-cmd-stack.c | 2 | ||||
-rw-r--r-- | gdb/mi/mi-interp.c | 2 | ||||
-rw-r--r-- | gdb/mi/mi-main.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/gdb/mi/mi-cmd-break.c b/gdb/mi/mi-cmd-break.c index bf35891..1406e21 100644 --- a/gdb/mi/mi-cmd-break.c +++ b/gdb/mi/mi-cmd-break.c @@ -58,7 +58,7 @@ breakpoint_notify (struct breakpoint *b) { print_breakpoint (b); } - catch (const gdb_exception_RETURN_MASK_ALL &ex) + catch (const gdb_exception &ex) { exception_print (gdb_stderr, ex); } diff --git a/gdb/mi/mi-cmd-stack.c b/gdb/mi/mi-cmd-stack.c index c689d49..0dc0b55 100644 --- a/gdb/mi/mi-cmd-stack.c +++ b/gdb/mi/mi-cmd-stack.c @@ -540,7 +540,7 @@ list_arg_or_local (const struct frame_arg *arg, enum what_to_list what, common_val_print (arg->val, &stb, 0, &opts, language_def (SYMBOL_LANGUAGE (arg->sym))); } - catch (const gdb_exception_RETURN_MASK_ERROR &except) + catch (const gdb_exception_error &except) { stb.printf (_("<error reading variable: %s>"), except.what ()); diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index 26dfc4a..25c79b1 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -830,7 +830,7 @@ mi_print_breakpoint_for_event (struct mi_interp *mi, breakpoint *bp) print_breakpoint (bp); } - catch (const gdb_exception_RETURN_MASK_ALL &ex) + catch (const gdb_exception &ex) { exception_print (gdb_stderr, ex); } diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 33cd1f8..17ca807 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1942,7 +1942,7 @@ mi_execute_command (const char *cmd, int from_tty) { command = mi_parse (cmd, &token); } - catch (const gdb_exception_RETURN_MASK_ALL &exception) + catch (const gdb_exception &exception) { mi_print_exception (token, exception); xfree (token); @@ -1969,7 +1969,7 @@ mi_execute_command (const char *cmd, int from_tty) { captured_mi_execute_command (current_uiout, command.get ()); } - catch (const gdb_exception_RETURN_MASK_ALL &result) + catch (const gdb_exception &result) { /* Like in start_event_loop, enable input and force display of the prompt. Otherwise, any command that calls |