X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=instrumentation%2Fevents%2Flttng-module%2Flttng.h;h=cd766d29496ccd639706d879d55f98c59745c44f;hb=290d1667a36ec7b568ca6acfec732ffd62b4e67f;hp=4cc14fc58a5dcb2902f0c7bc94c66fabd3233534;hpb=64c796d8aec1efa5d6f0d5850d2a0095cb7842e3;p=lttng-modules.git diff --git a/instrumentation/events/lttng-module/lttng.h b/instrumentation/events/lttng-module/lttng.h index 4cc14fc5..cd766d29 100644 --- a/instrumentation/events/lttng-module/lttng.h +++ b/instrumentation/events/lttng-module/lttng.h @@ -1,34 +1,24 @@ #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 +#include "../../../probes/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. - */ +LTTNG_TRACEPOINT_EVENT(lttng_logger, + TP_PROTO(const char __user *text, size_t len), + TP_ARGS(text, len), TP_STRUCT__entry( - __string( str, str ) + __dynamic_array_text(char, msg, len) ), - TP_fast_assign( - tp_strcpy(str, str) + tp_memcpy_dyn_from_user(msg, text) ), - TP_printk("") ) -#endif /* _TRACE_LTTNG_H */ +#endif /* LTTNG_TRACE_LTTNG_H */ /* This part must be outside protection */ -#include "define_trace.h" +#include "../../../probes/define_trace.h"