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.
This commit is contained in:
Vladimir Prus 2009-11-06 14:26:13 +00:00
parent 23ddb8504a
commit c271b6e2b5
2 changed files with 11 additions and 3 deletions

View 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

View 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)