summaryrefslogtreecommitdiff
path: root/gdb/tui
diff options
context:
space:
mode:
authorStephane Carrez <stcarrez@nerim.fr>2012-11-08 06:58:28 +0000
committerStephane Carrez <stcarrez@nerim.fr>2012-11-08 06:58:28 +0000
commitff3a4281be20a863036c4b3ae283dbccb1db043b (patch)
tree5651ca2f0929417fbe3b7b706727bd622798ec80 /gdb/tui
parent1fc9cc889261a8c950f5b5b07cd625f107433c78 (diff)
downloadgdb-ff3a4281be20a863036c4b3ae283dbccb1db043b.tar.gz
* tui/tui-hooks.c (tui_inferior_exit): New function.
(tui_detach_hook): Remove. (tui_install_hooks): Install the inferior exit observer. (tui_remove_hooks): Remove it.
Diffstat (limited to 'gdb/tui')
-rw-r--r--gdb/tui/tui-hooks.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c
index 4d1e06346f4..1a415d16256 100644
--- a/gdb/tui/tui-hooks.c
+++ b/gdb/tui/tui-hooks.c
@@ -245,11 +245,14 @@ tui_print_frame_info_listing_hook (struct symtab *s,
tui_show_frame_info (get_selected_frame (NULL));
}
-/* Called when the target process died or is detached.
- Update the status line. */
+/* Perform all necessary cleanups regarding our module's inferior data
+ that is required after the inferior INF just exited. */
+
static void
-tui_detach_hook (void)
+tui_inferior_exit (struct inferior *inf)
{
+ /* Leave the SingleKey mode to make sure the gdb prompt is visible. */
+ tui_set_key_mode (TUI_COMMAND_MODE);
tui_show_frame_info (0);
tui_display_main ();
}
@@ -258,6 +261,7 @@ tui_detach_hook (void)
static struct observer *tui_bp_created_observer;
static struct observer *tui_bp_deleted_observer;
static struct observer *tui_bp_modified_observer;
+static struct observer *tui_inferior_exit_observer;
/* Install the TUI specific hooks. */
void
@@ -278,9 +282,10 @@ tui_install_hooks (void)
= observer_attach_breakpoint_deleted (tui_event_delete_breakpoint);
tui_bp_modified_observer
= observer_attach_breakpoint_modified (tui_event_modify_breakpoint);
+ tui_inferior_exit_observer
+ = observer_attach_inferior_exit (tui_inferior_exit);
deprecated_register_changed_hook = tui_register_changed_hook;
- deprecated_detach_hook = tui_detach_hook;
}
/* Remove the TUI specific hooks. */
@@ -292,7 +297,6 @@ tui_remove_hooks (void)
deprecated_print_frame_info_listing_hook = 0;
deprecated_query_hook = 0;
deprecated_register_changed_hook = 0;
- deprecated_detach_hook = 0;
/* Remove our observers. */
observer_detach_breakpoint_created (tui_bp_created_observer);
@@ -301,6 +305,8 @@ tui_remove_hooks (void)
tui_bp_deleted_observer = NULL;
observer_detach_breakpoint_modified (tui_bp_modified_observer);
tui_bp_modified_observer = NULL;
+ observer_detach_inferior_exit (tui_inferior_exit_observer);
+ tui_inferior_exit_observer = NULL;
}
void _initialize_tui_hooks (void);