From 39f31040db5748f83a24c493a4901829ecbac0b8 Mon Sep 17 00:00:00 2001 From: ciceron 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 a29d0021d4..4a190edc51 100644 --- a/gdb/tui/ChangeLog +++ b/gdb/tui/ChangeLog @@ -1,5 +1,11 @@ 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. (blankStr, locationStr, breakStr): Don't declare. (breakLocationStr, nullStr, historyLimit, setHistoryLimitTo): Likewise. diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c index fe144a3659..35d7ce8c3f 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.11.0