From af6e93b2d14b2a15c1b608aeecf95f29a8682b17 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Fri, 5 Aug 2011 15:17:59 +0000 Subject: gdb/ * exceptions.c (throw_exception): Don't disable the current display. * printcmd.c (disable_current_display_cleanup): New function. (do_one_display): Install a cleanup to disable the current display if doing the display throws. gdb/testsuite/ * gdb.trace/unavailable.exp (test_maybe_regvar_display): New procedure. (gdb_collect_args_test, gdb_collect_locals_test): Use it. --- gdb/printcmd.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'gdb/printcmd.c') diff --git a/gdb/printcmd.c b/gdb/printcmd.c index f1ebb7e..f376595 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -1656,6 +1656,14 @@ undisplay_command (char *args, int from_tty) dont_repeat (); } +/* Cleanup that just disables the current display. */ + +static void +disable_current_display_cleanup (void *arg) +{ + disable_current_display (); +} + /* Display a single auto-display. Do nothing if the display cannot be printed in the current context, or if the display is disabled. */ @@ -1663,6 +1671,7 @@ undisplay_command (char *args, int from_tty) static void do_one_display (struct display *d) { + struct cleanup *old_chain; int within_current_scope; if (d->enabled_p == 0) @@ -1715,6 +1724,7 @@ do_one_display (struct display *d) return; current_display_number = d->number; + old_chain = make_cleanup (disable_current_display_cleanup, NULL); annotate_display_begin (); printf_filtered ("%d", d->number); @@ -1782,6 +1792,7 @@ do_one_display (struct display *d) annotate_display_end (); gdb_flush (gdb_stdout); + discard_cleanups (old_chain); current_display_number = -1; } -- cgit v1.1