From: Yao Qi Date: Thu, 14 Mar 2013 09:06:40 +0000 (+0000) Subject: gdb/ X-Git-Tag: sid-snapshot-20130401~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a22fa6e48d4ba508fc441f77f6a35620c42226c3;p=thirdparty%2Fbinutils-gdb.git gdb/ * tracepoint.c (tfile_write_status): Write trace notes and user name into tfile if they are not NULL. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e5ab65e177c..f06b76e72c8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-03-14 Yao Qi + + * tracepoint.c (tfile_write_status): Write trace notes and user + name into tfile if they are not NULL. + 2013-03-14 Hui Zhu Yao Qi diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index d579fb43183..e8040d097d5 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -3110,6 +3110,20 @@ tfile_write_status (struct trace_file_writer *self, fprintf (writer->fp, ";disconn:%x", ts->disconnected_tracing); if (ts->circular_buffer) fprintf (writer->fp, ";circular:%x", ts->circular_buffer); + if (ts->notes != NULL) + { + char *buf = (char *) alloca (strlen (ts->notes) * 2 + 1); + + bin2hex ((gdb_byte *) ts->notes, buf, 0); + fprintf (writer->fp, ";notes:%s", buf); + } + if (ts->user_name != NULL) + { + char *buf = (char *) alloca (strlen (ts->user_name) * 2 + 1); + + bin2hex ((gdb_byte *) ts->user_name, buf, 0); + fprintf (writer->fp, ";username:%s", buf); + } fprintf (writer->fp, "\n"); }