X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=doc%2Fexamples%2Fgen-tp%2Fsample_tracepoint.tp;h=47462415c9ec8cb61c705547c0e0e605f9b5d677;hb=3202f63a4d5e599bf22d6711828614b58c7efcba;hp=fa7d18a5080a0ca72c5bb8d9927915dd597daefd;hpb=7ccf75d384dd852f7aa51b44663546dd3c6baa83;p=lttng-ust.git diff --git a/doc/examples/gen-tp/sample_tracepoint.tp b/doc/examples/gen-tp/sample_tracepoint.tp index fa7d18a5..47462415 100644 --- a/doc/examples/gen-tp/sample_tracepoint.tp +++ b/doc/examples/gen-tp/sample_tracepoint.tp @@ -1,15 +1,15 @@ -TRACEPOINT_EVENT( +LTTNG_UST_TRACEPOINT_EVENT( sample_tracepoint, message, // C++ Style comment - TP_ARGS(char *, text), - TP_FIELDS( - ctf_string(message, text) + LTTNG_UST_TP_ARGS(const char *, text), + LTTNG_UST_TP_FIELDS( + lttng_ust_field_string(message, text) ) ) /* * Longer comments */ -TRACEPOINT_LOGLEVEL( +LTTNG_UST_TRACEPOINT_LOGLEVEL( sample_tracepoint, message, - TRACE_WARNING) + LTTNG_UST_TRACEPOINT_LOGLEVEL_WARNING)