* top.c (simplified_command_loop): Remove.
authorVladimir Prus <vladimir@codesourcery.com>
Fri, 14 Mar 2008 17:46:54 +0000 (17:46 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Fri, 14 Mar 2008 17:46:54 +0000 (17:46 +0000)
gdb/ChangeLog
gdb/top.c

index 0ecd1d138e969457f582d744d67412b6c7b7e2a1..075a7997787ff5e7524d6f8cbe5a1a56fb58c105 100644 (file)
@@ -1,3 +1,7 @@
+2008-03-14  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * top.c (simplified_command_loop): Remove.
+
 2008-03-14  Vladimir Prus  <vladimir@codesourcery.com>
 
        Remove unused remote.c hooks.
index fba212b01b74263e574a923b29d86ee09091742f..c205ec33e91611330c543a308d1809dedeb9c35f 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -554,41 +554,6 @@ command_loop (void)
        }
     }
 }
-
-/* Read commands from `instream' and execute them until end of file or
-   error reading instream. This command loop doesnt care about any
-   such things as displaying time and space usage. If the user asks
-   for those, they won't work. */
-void
-simplified_command_loop (char *(*read_input_func) (char *),
-                        void (*execute_command_func) (char *, int))
-{
-  struct cleanup *old_chain;
-  char *command;
-  int stdin_is_tty = ISATTY (stdin);
-
-  while (instream && !feof (instream))
-    {
-      quit_flag = 0;
-      if (instream == stdin && stdin_is_tty)
-       reinitialize_more_filter ();
-      old_chain = make_cleanup (null_cleanup, 0);
-
-      /* Get a command-line. */
-      command = (*read_input_func) (instream == stdin ?
-                                   get_prompt () : (char *) NULL);
-
-      if (command == 0)
-       return;
-
-      (*execute_command_func) (command, instream == stdin);
-
-      /* Do any commands attached to breakpoint we stopped at.  */
-      bpstat_do_actions (&stop_bpstat);
-
-      do_cleanups (old_chain);
-    }
-}
 \f
 /* Commands call this if they do not want to be repeated by null lines.  */