* tui-hooks.c (tui_detach_hook): New hook to know when a process dies.
authorStephane Carrez <stcarrez@nerim.fr>
Sun, 1 Sep 2002 12:49:32 +0000 (12:49 +0000)
committerStephane Carrez <stcarrez@nerim.fr>
Sun, 1 Sep 2002 12:49:32 +0000 (12:49 +0000)
(tui_install_hooks): Install it.
(tui_remove_hooks): Remove it.

gdb/tui/ChangeLog
gdb/tui/tui-hooks.c

index a29d0021d421e4ecb6ca2898366e101703a7be6d..4a190edc5181e8b565a0b7ab0214a1a4e8ed9e2f 100644 (file)
@@ -1,3 +1,9 @@
+2002-09-01  Stephane Carrez  <stcarrez@nerim.fr>
+
+       * tui-hooks.c (tui_detach_hook): New hook to know when a process dies.
+       (tui_install_hooks): Install it.
+       (tui_remove_hooks): Remove it.
+
 2002-09-01  Stephane Carrez  <stcarrez@nerim.fr>
 
        * tuiData.h (FILE_PREFIX): Don't define.
index fe144a3659041695a75f119ff80029e7251f15ba..35d7ce8c3fa06c2a6f995a3a3b9890c28fb7419d 100644 (file)
@@ -277,6 +277,15 @@ tui_print_frame_info_listing_hook (struct symtab *s, int line,
   tuiShowFrameInfo (selected_frame);
 }
 
+/* Called when the target process died or is detached.
+   Update the status line.  */
+static void
+tui_detach_hook (void)
+{
+  tuiShowFrameInfo (0);
+  tui_display_main ();
+}
+
 /* Install the TUI specific hooks.  */
 void
 tui_install_hooks (void)
@@ -292,6 +301,7 @@ tui_install_hooks (void)
 
   registers_changed_hook = tui_registers_changed_hook;
   register_changed_hook = tui_register_changed_hook;
+  detach_hook = tui_detach_hook;
 }
 
 /* Remove the TUI specific hooks.  */
@@ -304,6 +314,7 @@ tui_remove_hooks (void)
   query_hook = 0;
   registers_changed_hook = 0;
   register_changed_hook = 0;
+  detach_hook = 0;
 
   /* Restore the previous event hooks.  */
   set_gdb_event_hooks (tui_old_event_hooks);