aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2016-09-06 23:17:14 +0100
committerPedro Alves <palves@redhat.com>2016-09-06 23:17:14 +0100
commita025b477cc466112af0b120c5f2bf5d62a62017e (patch)
tree3de71d9de509bb829966933938dc6af1b75afdc2 /gdb/top.c
parentd8457a04b71cbd642a00352dce0539fe1fe22dd4 (diff)
Introduce make_cleanup_restore_current_ui
Just a tidy, no functional changes. gdb/ChangeLog: 2016-09-06 Pedro Alves <palves@redhat.com> * event-top.c (restore_ui_cleanup): Now static. (make_cleanup_restore_current_ui): New function. (switch_thru_all_uis_init): Use it. * infcall.c (call_thread_fsm_should_stop): Use it. * infrun.c (fetch_inferior_event): Use it. * top.c (new_ui_command): Use it. * top.h (restore_ui_cleanup): Delete declaration. (make_cleanup_restore_current_ui): New declaration.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/top.c b/gdb/top.c
index bc44192b8a..5b385d2709 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -386,7 +386,7 @@ new_ui_command (char *args, int from_tty)
interpreter_name = argv[0];
tty_name = argv[1];
- make_cleanup (restore_ui_cleanup, current_ui);
+ make_cleanup_restore_current_ui ();
failure_chain = make_cleanup (null_cleanup, NULL);