Tracepoint API namespacing 'TRACEPOINT_ENUM'
[lttng-ust.git] / tests / compile / hello.cxx / ust_tests_hello.h
index 1e3f2f8ec2fcfe4e6caa3592e0ea437f44681720..25176dc68776ca66c9c0de614d40e51858c2f4c2 100644 (file)
@@ -13,7 +13,7 @@
 #include <lttng/tracepoint.h>
 #include <stddef.h>
 
-TRACEPOINT_ENUM(ust_tests_hello, my_enum,
+LTTNG_UST_TRACEPOINT_ENUM(ust_tests_hello, my_enum,
        TP_ENUM_VALUES(
                ctf_enum_value("zero", 0)
                ctf_enum_value("one", 1)
@@ -24,12 +24,12 @@ TRACEPOINT_ENUM(ust_tests_hello, my_enum,
        )
 )
 
-TRACEPOINT_EVENT(ust_tests_hello, tptest,
+LTTNG_UST_TRACEPOINT_EVENT(ust_tests_hello, tptest,
        LTTNG_UST_TP_ARGS(int, anint, int, netint, long *, values,
                 char *, text, size_t, textlen,
                 double, doublearg, float, floatarg,
                 int, enumarg),
-       TP_FIELDS(
+       LTTNG_UST_TP_FIELDS(
                ctf_integer(int, intfield, anint)
                ctf_integer_hex(int, intfield2, anint)
                ctf_integer(long, longfield, anint)
@@ -48,9 +48,9 @@ TRACEPOINT_EVENT(ust_tests_hello, tptest,
        )
 )
 
-TRACEPOINT_EVENT(ust_tests_hello, tptest_sighandler,
+LTTNG_UST_TRACEPOINT_EVENT(ust_tests_hello, tptest_sighandler,
        LTTNG_UST_TP_ARGS(),
-       TP_FIELDS()
+       LTTNG_UST_TP_FIELDS()
 )
 
 #endif /* _TRACEPOINT_UST_TESTS_HELLO_H */
This page took 0.031087 seconds and 4 git commands to generate.