Metadata generation (partial)
[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 __field_network
10 #define __field_network(_type, _item)
11
12 #undef __array
13 #define __array(_type, _item, _length)
14
15 #undef __dynamic_array
16 #define __dynamic_array(_type, _item, _length)
17
18 #undef __dynamic_array
19 #define __dynamic_array_len(_type, _item, _length)
20
21 #undef __string
22 #define __string(_item, _src)
23
24 #undef tp_assign
25 #define tp_assign(dest, src)
26
27 #undef tp_memcpy
28 #define tp_memcpy(dest, src, len)
29
30 #undef tp_memcpy_dyn
31 #define tp_memcpy_dyn(dest, src, len)
32
33 #undef tp_strcpy
34 #define tp_strcpy(dest, src)
35
36 #undef __get_str
37 #define __get_str(field)
38
39 #undef __get_dynamic_array
40 #define __get_dynamic_array(field)
41
42 #undef __get_dynamic_array_len
43 #define __get_dynamic_array_len(field)
44
45 #undef TP_PROTO
46 #define TP_PROTO(args...)
47
48 #undef TP_ARGS
49 #define TP_ARGS(args...)
50
51 #undef TP_STRUCT__entry
52 #define TP_STRUCT__entry(args...)
53
54 #undef TP_fast_assign
55 #define TP_fast_assign(args...)
56
57 #undef __perf_count
58 #define __perf_count(args...)
59
60 #undef __perf_addr
61 #define __perf_addr(args...)
62
63 #undef TP_perf_assign
64 #define TP_perf_assign(args...)
65
66 #undef TP_printk
67 #define TP_printk(args...)
68
69 #undef DECLARE_EVENT_CLASS
70 #define DECLARE_EVENT_CLASS(_name, _proto, _args, _tstruct, _assign, _print)
71
72 #undef DEFINE_EVENT
73 #define DEFINE_EVENT(_template, _name, _proto, _args)
This page took 0.031911 seconds and 5 git commands to generate.