Filter: index array, sequences, implement bitwise binary operators
[lttng-modules.git] / probes / lttng-events-reset.h
1 /*
2 * lttng-events-reset.h
3 *
4 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; only
9 * version 2.1 of the License.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /* Reset macros used within LTTNG_TRACEPOINT_EVENT to "nothing" */
22
23 #undef LTTNG_TRACEPOINT_EVENT_CLASS_CODE
24 #define LTTNG_TRACEPOINT_EVENT_CLASS_CODE(_name, _proto, _args, _locvar, _code_pre, _fields, _code_post)
25
26 #undef LTTNG_TRACEPOINT_EVENT_CLASS_CODE_NOARGS
27 #define LTTNG_TRACEPOINT_EVENT_CLASS_CODE_NOARGS(_name, _locvar, _code_pre, _fields, _code_post)
28
29 #undef LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP
30 #define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(_template, _name, _map, _proto, _args)
31
32 #undef LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP_NOARGS
33 #define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP_NOARGS(_template, _name, _map)
34
35 #undef LTTNG_TRACEPOINT_ENUM
36 #define LTTNG_TRACEPOINT_ENUM(_name, _values)
37
38 #undef TP_PROTO
39 #define TP_PROTO(args...)
40
41 #undef TP_ARGS
42 #define TP_ARGS(args...)
43
44 #undef TP_locvar
45 #define TP_locvar(...)
46
47 #undef TP_code_pre
48 #define TP_code_pre(...)
49
50 #undef TP_code_post
51 #define TP_code_post(...)
52
53 #undef TP_FIELDS
54 #define TP_FIELDS(args...)
55
56 #undef _ctf_integer_ext
57 #define _ctf_integer_ext(_type, _item, _src, _byte_order, _base, \
58 _user, _nowrite)
59
60 #undef _ctf_integer_ext_isuser0
61 #define _ctf_integer_ext_isuser0(_type, _item, _src, _byte_order, _base, \
62 _nowrite)
63
64 #undef _ctf_integer_ext_isuser1
65 #define _ctf_integer_ext_isuser1(_type, _item, _src, _byte_order, _base, \
66 _nowrite)
67
68 #undef _ctf_integer_ext_fetched
69 #define _ctf_integer_ext_fetched(_type, _item, _src, _byte_order, _base, \
70 _nowrite)
71
72 #undef _ctf_array_encoded
73 #define _ctf_array_encoded(_type, _item, _src, _length, _encoding, \
74 _byte_order, _base, _user, _nowrite)
75
76 #undef _ctf_array_bitfield
77 #define _ctf_array_bitfield(_type, _item, _src, _length, _user, _nowrite)
78
79 #undef _ctf_sequence_encoded
80 #define _ctf_sequence_encoded(_type, _item, _src, _length_type, \
81 _src_length, _encoding, _byte_order, _base, _user, _nowrite)
82
83 #undef _ctf_sequence_bitfield
84 #define _ctf_sequence_bitfield(_type, _item, _src, _length_type, \
85 _src_length, _byte_order, _user, _nowrite)
86
87 #undef _ctf_string
88 #define _ctf_string(_item, _src, _user, _nowrite)
89
90 #undef _ctf_enum
91 #define _ctf_enum(_name, _type, _item, _src, _nowrite)
92
93 /* "write" */
94 #undef ctf_integer
95 #define ctf_integer(_type, _item, _src)
96
97 #undef ctf_integer_hex
98 #define ctf_integer_hex(_type, _item, _src)
99
100 #undef ctf_integer_oct
101 #define ctf_integer_oct(_type, _item, _src)
102
103 #undef ctf_integer_network
104 #define ctf_integer_network(_type, _item, _src)
105
106 #undef ctf_integer_network_hex
107 #define ctf_integer_network_hex(_type, _item, _src)
108
109 #undef ctf_float
110 #define ctf_float(_type, _item, _src)
111
112 #undef ctf_array
113 #define ctf_array(_type, _item, _src, _length)
114
115 #undef ctf_array_hex
116 #define ctf_array_hex(_type, _item, _src, _length)
117
118 #undef ctf_array_network
119 #define ctf_array_network(_type, _item, _src, _length)
120
121 #undef ctf_array_network_hex
122 #define ctf_array_network_hex(_type, _item, _src, _length)
123
124 #undef ctf_array_text
125 #define ctf_array_text(_type, _item, _src, _length)
126
127 #undef ctf_array_bitfield
128 #define ctf_array_bitfield(_type, _item, _src, _length)
129
130 #undef ctf_sequence
131 #define ctf_sequence(_type, _item, _src, _length_type, _src_length)
132
133 #undef ctf_sequence_hex
134 #define ctf_sequence_hex(_type, _item, _src, _length_type, _src_length)
135
136 #undef ctf_sequence_network
137 #define ctf_sequence_network(_type, _item, _src, _length_type, _src_length)
138
139 #undef ctf_sequence_network_hex
140 #define ctf_sequence_network_hex(_type, _item, _src, _length_type, _src_length)
141
142 #undef ctf_sequence_text
143 #define ctf_sequence_text(_type, _item, _src, _length_type, _src_length)
144
145 #undef ctf_sequence_bitfield
146 #define ctf_sequence_bitfield(_type, _item, _src, _length_type, _src_length)
147
148 #undef ctf_string
149 #define ctf_string(_item, _src)
150
151 #undef ctf_enum
152 #define ctf_enum(_name, _type, _item, _src)
153
154 #undef ctf_custom_field
155 #define ctf_custom_field(_type, _item, _code)
156
157 #undef ctf_custom_type
158 #define ctf_custom_type(...)
159
160 #undef ctf_custom_code
161 #define ctf_custom_code(...)
162
163 #undef ctf_align
164 #define ctf_align(_type)
165
166 /* "nowrite" */
167 #undef ctf_integer_nowrite
168 #define ctf_integer_nowrite(_type, _item, _src)
169
170 #undef ctf_float_nowrite
171 #define ctf_float_nowrite(_type, _item, _src)
172
173 #undef ctf_array_nowrite
174 #define ctf_array_nowrite(_type, _item, _src, _length)
175
176 #undef ctf_array_network_nowrite
177 #define ctf_array_network_nowrite(_type, _item, _src, _length)
178
179 #undef ctf_array_text_nowrite
180 #define ctf_array_text_nowrite(_type, _item, _src, _length)
181
182 #undef ctf_array_bitfield_nowrite
183 #define ctf_array_bitfield_nowrite(_type, _item, _src, _length)
184
185 #undef ctf_sequence_nowrite
186 #define ctf_sequence_nowrite(_type, _item, _src, _length_type, _src_length)
187
188 #undef ctf_sequence_network_nowrite
189 #define ctf_sequence_network_nowrite(_type, _item, _src, _length_type, _src_length)
190
191 #undef ctf_sequence_text_nowrite
192 #define ctf_sequence_text_nowrite(_type, _item, _src, _length_type, _src_length)
193
194 #undef ctf_sequence_bitfield_nowrite
195 #define ctf_sequence_bitfield_nowrite(_type, _item, _src, _length_type, _src_length)
196
197 #undef ctf_string_nowrite
198 #define ctf_string_nowrite(_item, _src)
199
200 #undef ctf_enum_nowrite
201 #define ctf_enum_nowrite(_name, _type, _item, _src)
202
203 /* "user" - "write" */
204 #undef ctf_user_integer
205 #define ctf_user_integer(_type, _item, _user_src)
206
207 #undef ctf_user_integer_hex
208 #define ctf_user_integer_hex(_type, _item, _user_src)
209
210 #undef ctf_user_integer_network
211 #define ctf_user_integer_network(_type, _item, _user_src)
212
213 #undef ctf_user_integer_network_hex
214 #define ctf_user_integer_network_hex(_type, _item, _user_src)
215
216 #undef ctf_user_float
217 #define ctf_user_float(_type, _item, _user_src)
218
219 #undef ctf_user_array
220 #define ctf_user_array(_type, _item, _user_src, _length)
221
222 #undef ctf_user_array_hex
223 #define ctf_user_array_hex(_type, _item, _user_src, _length)
224
225 #undef ctf_user_array_network
226 #define ctf_user_array_network(_type, _item, _user_src, _length)
227
228 #undef ctf_user_array_network_hex
229 #define ctf_user_array_network_hex(_type, _item, _user_src, _length)
230
231 #undef ctf_user_array_text
232 #define ctf_user_array_text(_type, _item, _user_src, _length)
233
234 #undef ctf_user_array_bitfield
235 #define ctf_user_array_bitfield(_type, _item, _src, _length)
236
237 #undef ctf_user_sequence
238 #define ctf_user_sequence(_type, _item, _user_src, _length_type, _user_src_length)
239
240 #undef ctf_user_sequence_hex
241 #define ctf_user_sequence_hex(_type, _item, _user_src, _length_type, _user_src_length)
242
243 #undef ctf_user_sequence_network
244 #define ctf_user_sequence_network(_type, _item, _user_src, _length_type, _user_src_length)
245
246 #undef ctf_user_sequence_network_hex
247 #define ctf_user_sequence_network_hex(_type, _item, _user_src, _length_type, _user_src_length)
248
249 #undef ctf_user_sequence_text
250 #define ctf_user_sequence_text(_type, _item, _user_src, _length_type, _user_src_length)
251
252 #undef ctf_user_sequence_bitfield
253 #define ctf_user_sequence_bitfield(_type, _item, _src, _length_type, _src_length)
254
255 #undef ctf_user_string
256 #define ctf_user_string(_item, _user_src)
257
258 #undef ctf_user_enum
259 #define ctf_user_enum(_name, _type, _item, _src)
260
261 /* "user" - "nowrite" */
262 #undef ctf_user_integer_nowrite
263 #define ctf_user_integer_nowrite(_type, _item, _user_src)
264
265 #undef ctf_user_float_nowrite
266 #define ctf_user_float_nowrite(_type, _item, _user_src)
267
268 #undef ctf_user_array_nowrite
269 #define ctf_user_array_nowrite(_type, _item, _user_src, _length)
270
271 #undef ctf_user_array_network_nowrite
272 #define ctf_user_array_network_nowrite(_type, _item, _user_src, _length)
273
274 #undef ctf_user_array_text_nowrite
275 #define ctf_user_array_text_nowrite(_type, _item, _user_src, _length)
276
277 #undef ctf_user_array_bitfield_nowrite
278 #define ctf_user_array_bitfield_nowrite(_type, _item, _src, _length)
279
280 #undef ctf_user_sequence_nowrite
281 #define ctf_user_sequence_nowrite(_type, _item, _user_src, _length_type, _user_src_length)
282
283 #undef ctf_user_sequence_network_nowrite
284 #define ctf_user_sequence_network_nowrite(_type, _item, _user_src, _length_type, _user_src_length)
285
286 #undef ctf_user_sequence_text_nowrite
287 #define ctf_user_sequence_text_nowrite(_type, _item, _user_src, _length_type, _user_src_length)
288
289 #undef ctf_user_sequence_bitfield_nowrite
290 #define ctf_user_sequence_bitfield_nowrite(_type, _item, _src, _length_type, _src_length)
291
292 #undef ctf_user_string_nowrite
293 #define ctf_user_string_nowrite(_item, _user_src)
294
295 #undef ctf_user_enum_nowrite
296 #define ctf_user_enum_nowrite(_name, _type, _item, _src)
This page took 0.034982 seconds and 4 git commands to generate.