OSDN Git Service

Prevent program output from mix with "^running".
authorvprus <vprus>
Fri, 6 Nov 2009 23:26:09 +0000 (23:26 +0000)
committervprus <vprus>
Fri, 6 Nov 2009 23:26:09 +0000 (23:26 +0000)
gdb/
* mi/mi-interp.c (mi_on_resume): Output token
and "^running" together, so that nothing else gets
in between.

gdb/ChangeLog
gdb/mi/mi-interp.c

index b62d220..7ee0dd9 100644 (file)
@@ -1,3 +1,12 @@
+2009-11-06  Vladimir Prus  <vladimir@codesourcery.com>
+
+        Prevent program output from mix with "^running".
+
+       gdb/
+       * mi/mi-interp.c (mi_on_resume): Output token
+       and "^running" together, so that nothing else gets
+       in between.
+
 2009-11-05  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * dwarf2read.c (struct dwarf2_cu): Remove ranges_offset and
index 6fdf292..248cd66 100644 (file)
@@ -438,9 +438,8 @@ mi_on_resume (ptid_t ptid)
      In future (MI3), we'll be outputting "^done" here.  */
   if (!running_result_record_printed && mi_proceeded)
     {
-      if (current_token)
-       fputs_unfiltered (current_token, raw_stdout);
-      fputs_unfiltered ("^running\n", raw_stdout);
+      fprintf_unfiltered (raw_stdout, "%s^running\n",
+                         current_token ? current_token : "");
     }
 
   if (PIDGET (ptid) == -1)