Add event macro reset header, add kvm probe
[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 __string
16 #define __string(_item, _src)
17
18 #undef TP_PROTO
19 #define TP_PROTO(args...)
20
21 #undef TP_ARGS
22 #define TP_ARGS(args...)
23
24 #undef TP_STRUCT__entry
25 #define TP_STRUCT__entry(args...)
26
27 #undef TP_fast_assign
28 #define TP_fast_assign(args...)
29
30 #undef TP_printk
31 #define TP_printk(args...)
32
33 #undef DECLARE_EVENT_CLASS
34 #define DECLARE_EVENT_CLASS(_name, _proto, _args, _tstruct, _assign, _print)
35
36 #undef DEFINE_EVENT
37 #define DEFINE_EVENT(_template, _name, _proto, _args)
This page took 0.030863 seconds and 5 git commands to generate.