<div dir="ltr">Hello,<div><br></div><div>In the example (hello) provided, I tried to print complex data types instead of usual ints or floats. My header file looks like this.</div><div><br></div><div><div>#undef TRACEPOINT_PROVIDER</div><div>#define TRACEPOINT_PROVIDER hello_world</div><div><br></div><div>#undef TRACEPOINT_INCLUDE</div><div>#define TRACEPOINT_INCLUDE "./hello-tp.h"</div><div><br></div><div>#if !defined(HELLO_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)</div><div>#define HELLO_TP_H</div><div><br></div><div>#include <lttng/tracepoint.h></div><div><br></div><div>#include "myinc.h"</div><div><br></div><div>TRACEPOINT_EVENT(</div><div>    hello_world,</div><div>    my_first_tracepoint,</div><div>    TP_ARGS(</div><div>        const char*, my_string_arg</div><div>    ),</div><div>    TP_FIELDS(</div><div>        ctf_integer(int, my_string_field, atoi(my_string_arg))</div><div>    )</div><div>)</div></div><div><br></div><div>My include file looks like this (myinc.h)</div><div>typedef unsigned char uuid_t;<br></div><div><br></div><div>However, when I try to compile it using, lttng-gen-tp, I am getting the following error.</div><div><br></div><div><div>root@mvm236:~/heelo_prog# lttng-gen-tp <a href="http://hello-tp.tp">hello-tp.tp</a></div><div>In file included from ././hello-tp.h:13:0,</div><div>                 from /usr/include/lttng/ust-tracepoint-event.h:740,</div><div>                 from /usr/include/lttng/tracepoint-event.h:58,</div><div>                 from hello-tp.h:56,</div><div>                 from hello-tp.c:7:</div><div>././myinc.h:1:1: error: expected expression before ‘typedef’</div></div><div><br></div><div>Whatever I try to include, I am getting this error.</div><div><br></div><div>Can you please help.</div><div><br></div><div>-- Chid</div></div>