OSDN Git Service

* 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 a29d002..4a190ed 100644 (file)
@@ -1,5 +1,11 @@
 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.
        (blankStr, locationStr, breakStr): Don't declare.
        (breakLocationStr, nullStr, historyLimit, setHistoryLimitTo): Likewise.
index fe144a3..35d7ce8 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);