From: Vladimir Prus Date: Fri, 6 Nov 2009 14:26:13 +0000 (+0000) Subject: Prevent program output from mix with "^running". X-Git-Tag: cgen-snapshot-20091201~281 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c271b6e2b5be29e3fa1e796360cf2a7dc2c31c57;p=external%2Fbinutils.git 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. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b62d220..7ee0dd9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +2009-11-06 Vladimir Prus + + 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 * dwarf2read.c (struct dwarf2_cu): Remove ranges_offset and diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index 6fdf292..248cd66 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -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)