<div dir="ltr"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
Ok, good. Please always check if the babeltrace and Trace Compass give <br>
the right results after the changes.<br></blockquote><div>Yes. Both are displaying same output. </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
If you use cctx->switch_event[ item->cpu ] and similar a couple of times <br>
in a function, then please assign it to a local pointer and use it, e.g.<br>
<br>
switch_event *se = &cctx->switch_event[ item->cpu ];<br>
<br>
Please check all structure names and make the similar to the names used <br>
in the metadata, e.g. swich_event -> event_sched_switch;<br>
<br>
Please check the style of the if again, it should be:<br>
<br>
if ( condition ) {<br>
  ...<br>
} else {<br>
  ...<br>
}<br>
<br>
Check the white space and position of the { }.<br>
<br>
When you have a function like get_api_of_id() you return the api, so the <br>
variable should be named "api":<br>
<br>
   size_t api_id = get_api_of_id( cctx->thread_id_name[ item->cpu <br>
].thread_id );<br>
<br>
   size_t api = get_api_of_id( cctx->thread_id_name[ item->cpu <br>
].thread_id );<br>
<br>
Declare all variables at the top of the function, e.g.<br>
<br>
size_t api;<br>
...<br>
api = get_api_of_id( cctx->thread_id_name[ item->cpu ].thread_id );</blockquote><div><a href="https://github.com/rmeena840/rtems-tools/commit/11cf7626e40a20c9bfaf889a94d51171519d6dc0">https://github.com/rmeena840/rtems-tools/commit/11cf7626e40a20c9bfaf889a94d51171519d6dc0</a> </div></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><font size="4"><b>Ravindra Kumar Meena</b></font>,<div><span style="color:rgb(102,102,102)">B. Tech. Computer Science and Engineering,<br></span></div><div><span style="color:rgb(102,102,102)"><a href="https://www.iitism.ac.in/" style="color:rgb(17,85,204)" target="_blank">Indian Institute of Technology (Indian School of Mines)</a>, Dhanbad</span></div></div></div></div></div></div>