gdb/
authorYao Qi <yao@codesourcery.com>
Fri, 30 Nov 2012 14:35:50 +0000 (14:35 +0000)
committerYao Qi <yao@codesourcery.com>
Fri, 30 Nov 2012 14:35:50 +0000 (14:35 +0000)
2012-11-30  Yao Qi  <yao@codesourcery.com>

* infrun.c (error_is_running, ensure_not_running): Move them
to ...
* infcmd.c (error_is_running, ensure_not_running): ... here.
Make them 'static'.
* inferior.h: Remove declarations of error_is_running and
ensure_not_running.

gdb/ChangeLog
gdb/infcmd.c
gdb/inferior.h
gdb/infrun.c

index 10e2019770ad7f3e7e9b6bf864cd37ed8cac792b..3fa899dbdecf2c250f92c3ad873f313201c32e86 100644 (file)
@@ -1,3 +1,12 @@
+2012-11-30  Yao Qi  <yao@codesourcery.com>
+
+       * infrun.c (error_is_running, ensure_not_running): Move them
+       to ...
+       * infcmd.c (error_is_running, ensure_not_running): ... here.
+       Make them 'static'.
+       * inferior.h: Remove declarations of error_is_running and
+       ensure_not_running.
+
 2012-11-30  Yao Qi  <yao@codesourcery.com>
 
        * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
index 7a08e31eda2b4252a0c998e46aac50985fea09bd..db9b9b59efbdc6dc2b7aa095f5bc05d3c279fd09 100644 (file)
@@ -708,6 +708,24 @@ ensure_not_tfind_mode (void)
     error (_("Cannot execute this command while looking at trace frames."));
 }
 
+/* Throw an error indicating the current thread is running.  */
+
+static void
+error_is_running (void)
+{
+  error (_("Cannot execute this command while "
+          "the selected thread is running."));
+}
+
+/* Calls error_is_running if the current thread is running.  */
+
+static void
+ensure_not_running (void)
+{
+  if (is_running (inferior_ptid))
+    error_is_running ();
+}
+
 void
 continue_1 (int all_threads)
 {
index e1e7d29a659dc16bec86fd431c63bc2cbc55b422..f7236e7b55b95217e130ba948556b516b9d787ae 100644 (file)
@@ -228,12 +228,6 @@ extern void get_last_target_status(ptid_t *ptid,
 
 extern void follow_inferior_reset_breakpoints (void);
 
-/* Throw an error indicating the current thread is running.  */
-extern void error_is_running (void);
-
-/* Calls error_is_running if the current thread is running.  */
-extern void ensure_not_running (void);
-
 void set_step_info (struct frame_info *frame, struct symtab_and_line sal);
 
 /* From infcmd.c */
index d0ff62a152faeabf8a51c6ef54edec6c433aee80..b036682460308b9949d04dc59e13583cfeff7f3c 100644 (file)
@@ -3040,20 +3040,6 @@ init_infwait_state (void)
   infwait_state = infwait_normal_state;
 }
 
-void
-error_is_running (void)
-{
-  error (_("Cannot execute this command while "
-          "the selected thread is running."));
-}
-
-void
-ensure_not_running (void)
-{
-  if (is_running (inferior_ptid))
-    error_is_running ();
-}
-
 static int
 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
 {