TRACEPOINT_EVENT: add *_nowrite fields for filter
[lttng-ust.git] / include / lttng / ust-tracepoint-event-reset.h
1 /*
2 * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 */
14
15 /* Define to "nothing" all macros used for TRACEPOINT_EVENT */
16
17 #undef TRACEPOINT_EVENT_CLASS
18 #define TRACEPOINT_EVENT_CLASS(_provider, _name, _args, _fields)
19
20 #undef TRACEPOINT_EVENT_INSTANCE
21 #define TRACEPOINT_EVENT_INSTANCE(_provider, _template, _name, _args)
22
23 #undef TP_ARGS
24 #define TP_ARGS(...)
25
26 #undef TP_FIELDS
27 #define TP_FIELDS(...)
28
29 #undef TRACEPOINT_LOGLEVEL_ENUM
30 #define TRACEPOINT_LOGLEVEL_ENUM(...)
31
32 #undef TRACEPOINT_LOGLEVEL
33 #define TRACEPOINT_LOGLEVEL(provider, name, loglevel)
34
35 #undef _ctf_integer_ext
36 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, \
37 _written)
38
39 #undef _ctf_float
40 #define _ctf_float(_type, _item, _src, _written)
41
42 #undef _ctf_array_encoded
43 #define _ctf_array_encoded(_type, _item, _src, _length, _encoding, \
44 _written)
45
46 #undef _ctf_sequence_encoded
47 #define _ctf_sequence_encoded(_type, _item, _src, _length_type, \
48 _src_length, _encoding, _written)
49
50 #undef _ctf_string
51 #define _ctf_string(_item, _src, _written)
52
53 /* "write" */
54 #undef ctf_integer
55 #define ctf_integer(_type, _item, _src)
56
57 #undef ctf_integer_hex
58 #define ctf_integer_hex(_type, _item, _src)
59
60 #undef ctf_integer_network
61 #define ctf_integer_network(_type, _item, _src)
62
63 #undef ctf_integer_network_hex
64 #define ctf_integer_network_hex(_type, _item, _src)
65
66 #undef ctf_float
67 #define ctf_float(_type, _item, _src)
68
69 #undef ctf_array
70 #define ctf_array(_type, _item, _src, _length)
71
72 #undef ctf_array_text
73 #define ctf_array_text(_type, _item, _src, _length)
74
75 #undef ctf_sequence
76 #define ctf_sequence(_type, _item, _src, _length_type, _src_length)
77
78 #undef ctf_sequence_text
79 #define ctf_sequence_text(_type, _item, _src, _length_type, _src_length)
80
81 #undef ctf_string
82 #define ctf_string(_item, _src)
83
84 /* "nowrite" */
85 #undef ctf_integer_nowrite
86 #define ctf_integer_nowrite(_type, _item, _src)
87
88 #undef ctf_float_nowrite
89 #define ctf_float_nowrite(_type, _item, _src)
90
91 #undef ctf_array_nowrite
92 #define ctf_array_nowrite(_type, _item, _src, _length)
93
94 #undef ctf_array_text_nowrite
95 #define ctf_array_text_nowrite(_type, _item, _src, _length)
96
97 #undef ctf_sequence_nowrite
98 #define ctf_sequence_nowrite(_type, _item, _src, _length_type, _src_length)
99
100 #undef ctf_sequence_text_nowrite
101 #define ctf_sequence_text_nowrite(_type, _item, _src, _length_type, _src_length)
102
103 #undef ctf_string_nowrite
104 #define ctf_string_nowrite(_item, _src)
This page took 0.034304 seconds and 5 git commands to generate.