TUI: GC tui_target_has_run
authorPedro Alves <palves@redhat.com>
Tue, 12 Apr 2016 15:49:32 +0000 (16:49 +0100)
committerPedro Alves <palves@redhat.com>
Tue, 12 Apr 2016 16:00:54 +0000 (17:00 +0100)
Nothing actually uses this global.

gdb/ChangeLog:
2016-04-12  Pedro Alves  <palves@redhat.com>

* tui/tui-hooks.c (tui_target_has_run): Delete.
(tui_about_to_proceed): Delete.
(tui_about_to_proceed_observer): Delete.
(tui_install_hooks, tui_remove_hooks): Don't install/remove an
about_to_proceed observer.

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

index b576b27461ed79404eb9f1be20457110ab12778d..de8c4502eaf0aa8bf8f6c76845fd652997b682da 100644 (file)
@@ -1,3 +1,11 @@
+2016-04-12  Pedro Alves  <palves@redhat.com>
+
+       * tui/tui-hooks.c (tui_target_has_run): Delete.
+       (tui_about_to_proceed): Delete.
+       (tui_about_to_proceed_observer): Delete.
+       (tui_install_hooks, tui_remove_hooks): Don't install/remove an
+       about_to_proceed observer.
+
 2016-04-12  Pedro Alves  <palves@redhat.com>
 
        * mi/mi-interp.c (mi_new_thread): Put
index bfe7aeb9bc102499ac0e21ae5e4fcb361165e9d3..5a03b61720564ac1cc51093100c6ffe2d5e7ea57 100644 (file)
@@ -54,8 +54,6 @@
    "gdb_curses.h".  */
 #include "readline/readline.h"
 
-int tui_target_has_run = 0;
-
 static void
 tui_new_objfile_hook (struct objfile* objfile)
 {
@@ -109,23 +107,6 @@ tui_event_modify_breakpoint (struct breakpoint *b)
   tui_update_all_breakpoint_info ();
 }
 
-/* Called when a command is about to proceed the inferior.  */
-
-static void
-tui_about_to_proceed (void)
-{
-  /* Leave tui mode (optional).  */
-#if 0
-  if (tui_active)
-    {
-      target_terminal_ours ();
-      endwin ();
-      target_terminal_inferior ();
-    }
-#endif
-  tui_target_has_run = 1;
-}
-
 /* Refresh TUI's frame and register information.  This is a hook intended to be
    used to update the screen after potential frame and register changes.
 
@@ -230,7 +211,6 @@ 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;
-static struct observer *tui_about_to_proceed_observer;
 static struct observer *tui_before_prompt_observer;
 static struct observer *tui_normal_stop_observer;
 static struct observer *tui_register_changed_observer;
@@ -255,8 +235,6 @@ tui_install_hooks (void)
     = observer_attach_breakpoint_modified (tui_event_modify_breakpoint);
   tui_inferior_exit_observer
     = observer_attach_inferior_exit (tui_inferior_exit);
-  tui_about_to_proceed_observer
-    = observer_attach_about_to_proceed (tui_about_to_proceed);
   tui_before_prompt_observer
     = observer_attach_before_prompt (tui_before_prompt);
   tui_normal_stop_observer
@@ -280,8 +258,6 @@ tui_remove_hooks (void)
   tui_bp_modified_observer = NULL;
   observer_detach_inferior_exit (tui_inferior_exit_observer);
   tui_inferior_exit_observer = NULL;
-  observer_detach_about_to_proceed (tui_about_to_proceed_observer);
-  tui_about_to_proceed_observer = NULL;
   observer_detach_before_prompt (tui_before_prompt_observer);
   tui_before_prompt_observer = NULL;
   observer_detach_normal_stop (tui_normal_stop_observer);