c528c35ade11ae88d7d41ff85dc3ed93beef0ee4
[lttng-ust.git] / doc / examples / gen-tp / sample_tracepoint.tp
1 LTTNG_UST_TRACEPOINT_EVENT(
2 sample_tracepoint,
3 message, // C++ Style comment
4 LTTNG_UST_TP_ARGS(const char *, text),
5 LTTNG_UST_TP_FIELDS(
6 ctf_string(message, text)
7 )
8 )
9 /*
10 * Longer comments
11 */
12 TRACEPOINT_LOGLEVEL(
13 sample_tracepoint,
14 message,
15 TRACE_WARNING)
This page took 0.029381 seconds and 3 git commands to generate.