Add block layer trace event support
[lttng-modules.git] / probes / lttng-events-reset.h
1 /* Reset macros used within TRACE_EVENT to "nothing" */
2
3 #undef __field
4 #define __field(_type, _item)
5
6 #undef __field_ext
7 #define __field_ext(_type, _item, _filter_type)
8
9 #undef __array
10 #define __array(_type, _item, _length)
11
12 #undef __dynamic_array
13 #define __dynamic_array(_type, _item, _length)
14
15 #undef __dynamic_array
16 #define __dynamic_array_len(_type, _item, _length)
17
18 #undef __string
19 #define __string(_item, _src)
20
21 #undef TP_PROTO
22 #define TP_PROTO(args...)
23
24 #undef TP_ARGS
25 #define TP_ARGS(args...)
26
27 #undef TP_STRUCT__entry
28 #define TP_STRUCT__entry(args...)
29
30 #undef TP_fast_assign
31 #define TP_fast_assign(args...)
32
33 #undef TP_printk
34 #define TP_printk(args...)
35
36 #undef DECLARE_EVENT_CLASS
37 #define DECLARE_EVENT_CLASS(_name, _proto, _args, _tstruct, _assign, _print)
38
39 #undef DEFINE_EVENT
40 #define DEFINE_EVENT(_template, _name, _proto, _args)
This page took 0.031335 seconds and 5 git commands to generate.