From d854088dfbc6e56301f8c553e978b4bea2b8756d Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 18 Nov 2011 12:20:21 -0500 Subject: [PATCH] Implement tracepoint event reset header Signed-off-by: Mathieu Desnoyers --- include/lttng/tracepoint-event-reset.h | 45 ++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 include/lttng/tracepoint-event-reset.h diff --git a/include/lttng/tracepoint-event-reset.h b/include/lttng/tracepoint-event-reset.h new file mode 100644 index 00000000..5ac372da --- /dev/null +++ b/include/lttng/tracepoint-event-reset.h @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2011 - Mathieu Desnoyers + * + * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED + * OR IMPLIED. ANY USE IS AT YOUR OWN RISK. + * + * Permission is hereby granted to use or copy this program + * for any purpose, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + */ + +/* Define to "nothing" all macros used for TRACEPOINT_EVENT */ + +#undef TRACEPOINT_EVENT +#define TRACEPOINT_EVENT(_provider, _name, _args, _fields) + +#undef TRACEPOINT_EVENT_CLASS +#define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields) + +#undef TRACEPOINT_EVENT_INSTANCE +#define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args) + +#undef TP_ARGS +#define TP_ARGS(...) + +#undef TP_FIELDS +#define TP_FIELDS(...) + +#undef ctf_integer_ext +#define ctf_integer_ext(_type, _item, _src, _byte_order, _base) + +#undef ctf_float +#define ctf_float(_type, _item, _src) + +#undef ctf_array_encoded +#define ctf_array_encoded(_type, _item, _src, _length, _encoding) + +#undef ctf_sequence_encoded +#define ctf_sequence_encoded(_type, _item, _src, _length_type, \ + _src_length, _encoding) + +#undef ctf_string +#define ctf_string(_item, _src) -- 2.34.1