Create the lttng-gen-tp tools as an helper to generate UST .h and .c files
[lttng-ust.git] / tests / gen-tp / sample_tracepoint.tp
CommitLineData
b25c5b37
YB
1TRACEPOINT_EVENT(
2 sample_tracepoint,
3 message, // C++ Style comment
4 TP_ARGS(char *, text),
5 TP_FIELDS(
6 ctf_string(message, text)
7 )
8)
9/*
10 * Longer comments
11 */
12TRACEPOINT_LOGLEVEL(
13 sample_tracepoint,
14 message,
15 TRACE_WARNING)
This page took 0.024151 seconds and 4 git commands to generate.