Cleanup: Remove deprecated TODO file
[lttng-modules.git] / instrumentation / events / lttng-module / lttng.h
index 4cc14fc58a5dcb2902f0c7bc94c66fabd3233534..91eb4608096fb1b02b2ffc4874c253ed7f421d14 100644 (file)
@@ -1,34 +1,21 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
 #undef TRACE_SYSTEM
 #define TRACE_SYSTEM lttng
 
-#if !defined(_TRACE_LTTNG_H) || defined(TRACE_HEADER_MULTI_READ)
-#define _TRACE_LTTNG_H
+#if !defined(LTTNG_TRACE_LTTNG_H) || defined(TRACE_HEADER_MULTI_READ)
+#define LTTNG_TRACE_LTTNG_H
 
-#include <linux/tracepoint.h>
+#include <lttng/tracepoint-event.h>
 
-TRACE_EVENT(lttng_metadata,
-
-       TP_PROTO(const char *str),
-
-       TP_ARGS(str),
-
-       /*
-        * Not exactly a string: more a sequence of bytes (dynamic
-        * array) without the length. This is a dummy anyway: we only
-        * use this declaration to generate an event metadata entry.
-        */
-       TP_STRUCT__entry(
-               __string(       str,            str     )
-       ),
-
-       TP_fast_assign(
-               tp_strcpy(str, str)
-       ),
-
-       TP_printk("")
+LTTNG_TRACEPOINT_EVENT(lttng_logger,
+       TP_PROTO(const char __user *text, size_t len),
+       TP_ARGS(text, len),
+       TP_FIELDS(
+               ctf_user_sequence_text(char, msg, text, size_t, len)
+       )
 )
 
-#endif /*  _TRACE_LTTNG_H */
+#endif /* LTTNG_TRACE_LTTNG_H */
 
 /* This part must be outside protection */
-#include "define_trace.h"
+#include <lttng/define_trace.h>
This page took 0.024269 seconds and 4 git commands to generate.