diff options
author | Yao Qi <yao@codesourcery.com> | 2013-03-14 09:08:56 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-03-14 09:08:56 +0000 |
commit | d6682f9ee928ad479b5189bef428dbfca8b34241 (patch) | |
tree | b163100ca4ed3d05e453a08995e2548bb0f52728 /gdb | |
parent | a22fa6e48d4ba508fc441f77f6a35620c42226c3 (diff) | |
download | fsf-binutils-gdb-d6682f9ee928ad479b5189bef428dbfca8b34241.zip fsf-binutils-gdb-d6682f9ee928ad479b5189bef428dbfca8b34241.tar.gz fsf-binutils-gdb-d6682f9ee928ad479b5189bef428dbfca8b34241.tar.bz2 |
gdb/
* tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
status to tfile if trace is stopped by command 'tstop'.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tracepoint.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f06b76e..4d608f5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-03-14 Yao Qi <yao@codesourcery.com> + * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace + status to tfile if trace is stopped by command 'tstop'. + +2013-03-14 Yao Qi <yao@codesourcery.com> + * tracepoint.c (tfile_write_status): Write trace notes and user name into tfile if they are not NULL. diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index e8040d0..28d34a7 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -3090,7 +3090,8 @@ tfile_write_status (struct trace_file_writer *self, fprintf (writer->fp, "status %c;%s", (ts->running ? '1' : '0'), stop_reason_names[ts->stop_reason]); - if (ts->stop_reason == tracepoint_error) + if (ts->stop_reason == tracepoint_error + || ts->stop_reason == tstop_command) { char *buf = (char *) alloca (strlen (ts->stop_desc) * 2 + 1); |