From cda8ab404866295418b3a8d549cf78f566e0b625 Mon Sep 17 00:00:00 2001 From: Stephane Carrez Date: Sun, 1 Sep 2002 12:49:32 +0000 Subject: [PATCH] * tui-hooks.c (tui_detach_hook): New hook to know when a process dies. (tui_install_hooks): Install it. (tui_remove_hooks): Remove it. --- gdb/tui/ChangeLog | 6 ++++++ gdb/tui/tui-hooks.c | 11 +++++++++++ 2 files changed, 17 insertions(+) diff --git a/gdb/tui/ChangeLog b/gdb/tui/ChangeLog index a29d0021d42..4a190edc518 100644 --- a/gdb/tui/ChangeLog +++ b/gdb/tui/ChangeLog @@ -1,3 +1,9 @@ +2002-09-01 Stephane Carrez + + * 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 * tuiData.h (FILE_PREFIX): Don't define. diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c index fe144a36590..35d7ce8c3fa 100644 --- a/gdb/tui/tui-hooks.c +++ b/gdb/tui/tui-hooks.c @@ -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); -- 2.30.2