Tracepoint API namespacing 'TP_ARGS'
[lttng-ust.git] / include / lttng / tp / lttng-ust-tracelog.h
index abc66a0c68998653b40278fb3cac61ed2334bff0..1a85be3017f14287647a4c733319bf7bf1ceff7a 100644 (file)
@@ -8,19 +8,20 @@
 #include <stdarg.h>
 
 TRACEPOINT_EVENT_CLASS(lttng_ust_tracelog, tlclass,
-       TP_ARGS(const char *, file, int, line, const char *, func,
+       LTTNG_UST_TP_ARGS(const char *, file, int, line, const char *, func,
                const char *, msg, unsigned int, len, void *, ip),
        TP_FIELDS(
                ctf_integer(int, line, line)
                ctf_string(file, file)
                ctf_string(func, func)
                ctf_sequence_text(char, msg, msg, unsigned int, len)
+               ctf_unused(ip)
        )
 )
 
 #define TP_TRACELOG_TEMPLATE(_level_enum) \
        TRACEPOINT_EVENT_INSTANCE(lttng_ust_tracelog, tlclass, _level_enum, \
-               TP_ARGS(const char *, file, int, line, const char *, func, \
+               LTTNG_UST_TP_ARGS(const char *, file, int, line, const char *, func, \
                        const char *, msg, unsigned int, len, void *, ip) \
        ) \
        TRACEPOINT_LOGLEVEL(lttng_ust_tracelog, _level_enum, _level_enum)
This page took 0.025693 seconds and 4 git commands to generate.