diff options
author | Pedro Alves <palves@redhat.com> | 2016-09-06 23:17:14 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-09-06 23:17:14 +0100 |
commit | a025b477cc466112af0b120c5f2bf5d62a62017e (patch) | |
tree | 3de71d9de509bb829966933938dc6af1b75afdc2 /gdb/infcall.c | |
parent | d8457a04b71cbd642a00352dce0539fe1fe22dd4 (diff) | |
download | gdb-a025b477cc466112af0b120c5f2bf5d62a62017e.zip gdb-a025b477cc466112af0b120c5f2bf5d62a62017e.tar.gz gdb-a025b477cc466112af0b120c5f2bf5d62a62017e.tar.bz2 |
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/infcall.c')
-rw-r--r-- | gdb/infcall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c index 8595d9e..3c33c11 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -530,7 +530,7 @@ call_thread_fsm_should_stop (struct thread_fsm *self, f->return_value = get_call_return_value (&f->return_meta_info); /* Break out of wait_sync_command_done. */ - old_chain = make_cleanup (restore_ui_cleanup, current_ui); + old_chain = make_cleanup_restore_current_ui (); current_ui = f->waiting_ui; target_terminal_ours (); f->waiting_ui->prompt_state = PROMPT_NEEDED; |