Merge branch 'dev'
[lttng-ust.git] / include / lttng / tracepoint.h
1 #ifndef _LTTNG_TRACEPOINT_H
2 #define _LTTNG_TRACEPOINT_H
3
4 /*
5 * Copyright 2011-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 */
17
18 #include <lttng/tracepoint-types.h>
19 #include <lttng/tracepoint-rcu.h>
20 #include <urcu/compiler.h>
21 #include <dlfcn.h> /* for dlopen */
22 #include <string.h> /* for memset */
23 #include <assert.h>
24 #include <lttng/ust-config.h> /* for sdt */
25
26 #ifdef LTTNG_UST_HAVE_SDT_INTEGRATION
27 #define SDT_USE_VARIADIC
28 #include <sys/sdt.h>
29 #else
30 #define STAP_PROBEV(...)
31 #endif
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 #define tracepoint(provider, name, ...) \
38 do { \
39 STAP_PROBEV(provider, name, ## __VA_ARGS__); \
40 if (caa_unlikely(__tracepoint_##provider##___##name.state)) \
41 __tracepoint_cb_##provider##___##name(__VA_ARGS__); \
42 } while (0)
43
44 #define TP_ARGS(...) __VA_ARGS__
45
46 /*
47 * TP_ARGS takes tuples of type, argument separated by a comma.
48 * It can take up to 10 tuples (which means that less than 10 tuples is
49 * fine too).
50 * Each tuple is also separated by a comma.
51 */
52 #define __TP_COMBINE_TOKENS(_tokena, _tokenb) \
53 _tokena##_tokenb
54 #define _TP_COMBINE_TOKENS(_tokena, _tokenb) \
55 __TP_COMBINE_TOKENS(_tokena, _tokenb)
56 #define __TP_COMBINE_TOKENS3(_tokena, _tokenb, _tokenc) \
57 _tokena##_tokenb##_tokenc
58 #define _TP_COMBINE_TOKENS3(_tokena, _tokenb, _tokenc) \
59 __TP_COMBINE_TOKENS3(_tokena, _tokenb, _tokenc)
60 #define __TP_COMBINE_TOKENS4(_tokena, _tokenb, _tokenc, _tokend) \
61 _tokena##_tokenb##_tokenc##_tokend
62 #define _TP_COMBINE_TOKENS4(_tokena, _tokenb, _tokenc, _tokend) \
63 __TP_COMBINE_TOKENS4(_tokena, _tokenb, _tokenc, _tokend)
64
65 /* _TP_EXVAR* extract the var names. */
66 #define _TP_EXVAR0()
67 #define _TP_EXVAR2(a,b) b
68 #define _TP_EXVAR4(a,b,c,d) b,d
69 #define _TP_EXVAR6(a,b,c,d,e,f) b,d,f
70 #define _TP_EXVAR8(a,b,c,d,e,f,g,h) b,d,f,h
71 #define _TP_EXVAR10(a,b,c,d,e,f,g,h,i,j) b,d,f,h,j
72 #define _TP_EXVAR12(a,b,c,d,e,f,g,h,i,j,k,l) b,d,f,h,j,l
73 #define _TP_EXVAR14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) b,d,f,h,j,l,n
74 #define _TP_EXVAR16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) b,d,f,h,j,l,n,p
75 #define _TP_EXVAR18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) b,d,f,h,j,l,n,p,r
76 #define _TP_EXVAR20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) b,d,f,h,j,l,n,p,r,t
77
78 #define _TP_EXDATA_VAR0() __tp_data
79 #define _TP_EXDATA_VAR2(a,b) __tp_data,b
80 #define _TP_EXDATA_VAR4(a,b,c,d) __tp_data,b,d
81 #define _TP_EXDATA_VAR6(a,b,c,d,e,f) __tp_data,b,d,f
82 #define _TP_EXDATA_VAR8(a,b,c,d,e,f,g,h) __tp_data,b,d,f,h
83 #define _TP_EXDATA_VAR10(a,b,c,d,e,f,g,h,i,j) __tp_data,b,d,f,h,j
84 #define _TP_EXDATA_VAR12(a,b,c,d,e,f,g,h,i,j,k,l) __tp_data,b,d,f,h,j,l
85 #define _TP_EXDATA_VAR14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) __tp_data,b,d,f,h,j,l,n
86 #define _TP_EXDATA_VAR16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) __tp_data,b,d,f,h,j,l,n,p
87 #define _TP_EXDATA_VAR18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) __tp_data,b,d,f,h,j,l,n,p,r
88 #define _TP_EXDATA_VAR20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) __tp_data,b,d,f,h,j,l,n,p,r,t
89
90 /* _TP_EXPROTO* extract tuples of type, var */
91 #define _TP_EXPROTO0()
92 #define _TP_EXPROTO2(a,b) a b
93 #define _TP_EXPROTO4(a,b,c,d) a b,c d
94 #define _TP_EXPROTO6(a,b,c,d,e,f) a b,c d,e f
95 #define _TP_EXPROTO8(a,b,c,d,e,f,g,h) a b,c d,e f,g h
96 #define _TP_EXPROTO10(a,b,c,d,e,f,g,h,i,j) a b,c d,e f,g h,i j
97 #define _TP_EXPROTO12(a,b,c,d,e,f,g,h,i,j,k,l) a b,c d,e f,g h,i j,k l
98 #define _TP_EXPROTO14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) a b,c d,e f,g h,i j,k l,m n
99 #define _TP_EXPROTO16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) a b,c d,e f,g h,i j,k l,m n,o p
100 #define _TP_EXPROTO18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) a b,c d,e f,g h,i j,k l,m n,o p,q r
101 #define _TP_EXPROTO20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) a b,c d,e f,g h,i j,k l,m n,o p,q r,s t
102
103 #define _TP_EXDATA_PROTO0() void *__tp_data
104 #define _TP_EXDATA_PROTO2(a,b) void *__tp_data,a b
105 #define _TP_EXDATA_PROTO4(a,b,c,d) void *__tp_data,a b,c d
106 #define _TP_EXDATA_PROTO6(a,b,c,d,e,f) void *__tp_data,a b,c d,e f
107 #define _TP_EXDATA_PROTO8(a,b,c,d,e,f,g,h) void *__tp_data,a b,c d,e f,g h
108 #define _TP_EXDATA_PROTO10(a,b,c,d,e,f,g,h,i,j) void *__tp_data,a b,c d,e f,g h,i j
109 #define _TP_EXDATA_PROTO12(a,b,c,d,e,f,g,h,i,j,k,l) void *__tp_data,a b,c d,e f,g h,i j,k l
110 #define _TP_EXDATA_PROTO14(a,b,c,d,e,f,g,h,i,j,k,l,m,n) void *__tp_data,a b,c d,e f,g h,i j,k l,m n
111 #define _TP_EXDATA_PROTO16(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) void *__tp_data,a b,c d,e f,g h,i j,k l,m n,o p
112 #define _TP_EXDATA_PROTO18(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r) void *__tp_data,a b,c d,e f,g h,i j,k l,m n,o p,q r
113 #define _TP_EXDATA_PROTO20(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t) void *__tp_data,a b,c d,e f,g h,i j,k l,m n,o p,q r,s t
114
115 /* Preprocessor trick to count arguments. Inspired from sdt.h. */
116 #define _TP_NARGS(...) __TP_NARGS(__VA_ARGS__, 20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0)
117 #define __TP_NARGS(_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20, N, ...) N
118 #define _TP_PROTO_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXPROTO, N)(__VA_ARGS__))
119 #define _TP_VAR_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXVAR, N)(__VA_ARGS__))
120 #define _TP_DATA_PROTO_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXDATA_PROTO, N)(__VA_ARGS__))
121 #define _TP_DATA_VAR_N(N, ...) _TP_PARAMS(_TP_COMBINE_TOKENS(_TP_EXDATA_VAR, N)(__VA_ARGS__))
122 #define _TP_ARGS_PROTO(...) _TP_PROTO_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
123 #define _TP_ARGS_VAR(...) _TP_VAR_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
124 #define _TP_ARGS_DATA_PROTO(...) _TP_DATA_PROTO_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
125 #define _TP_ARGS_DATA_VAR(...) _TP_DATA_VAR_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
126 #define _TP_PARAMS(...) __VA_ARGS__
127
128 #define _DECLARE_TRACEPOINT(_provider, _name, ...) \
129 extern struct tracepoint __tracepoint_##_provider##___##_name; \
130 static inline void __tracepoint_cb_##_provider##___##_name(_TP_ARGS_PROTO(__VA_ARGS__)) \
131 { \
132 struct tracepoint_probe *__tp_probe; \
133 \
134 if (!TP_RCU_LINK_TEST()) \
135 return; \
136 tp_rcu_read_lock_bp(); \
137 __tp_probe = tp_rcu_dereference_bp(__tracepoint_##_provider##___##_name.probes); \
138 if (caa_unlikely(!__tp_probe)) \
139 goto end; \
140 do { \
141 void *__tp_cb = __tp_probe->func; \
142 void *__tp_data = __tp_probe->data; \
143 \
144 URCU_FORCE_CAST(void (*)(_TP_ARGS_DATA_PROTO(__VA_ARGS__)), __tp_cb) \
145 (_TP_ARGS_DATA_VAR(__VA_ARGS__)); \
146 } while ((++__tp_probe)->func); \
147 end: \
148 tp_rcu_read_unlock_bp(); \
149 } \
150 static inline void __tracepoint_register_##_provider##___##_name(char *name, \
151 void *func, void *data) \
152 { \
153 __tracepoint_probe_register(name, func, data, \
154 __tracepoint_##_provider##___##_name.signature); \
155 } \
156 static inline void __tracepoint_unregister_##_provider##___##_name(char *name, \
157 void *func, void *data) \
158 { \
159 __tracepoint_probe_unregister(name, func, data); \
160 }
161
162 extern int __tracepoint_probe_register(const char *name, void *func, void *data,
163 const char *signature);
164 extern int __tracepoint_probe_unregister(const char *name, void *func, void *data);
165
166 /*
167 * tracepoint dynamic linkage handling (callbacks). Hidden visibility:
168 * shared across objects in a module/main executable.
169 */
170 struct tracepoint_dlopen {
171 void *liblttngust_handle;
172
173 int (*tracepoint_register_lib)(struct tracepoint * const *tracepoints_start,
174 int tracepoints_count);
175 int (*tracepoint_unregister_lib)(struct tracepoint * const *tracepoints_start);
176 #ifndef _LGPL_SOURCE
177 void (*rcu_read_lock_sym_bp)(void);
178 void (*rcu_read_unlock_sym_bp)(void);
179 void *(*rcu_dereference_sym_bp)(void *p);
180 #endif
181 };
182
183 extern struct tracepoint_dlopen tracepoint_dlopen;
184
185 #ifdef TRACEPOINT_DEFINE
186
187 /*
188 * When TRACEPOINT_PROBE_DYNAMIC_LINKAGE is defined, we do not emit a
189 * unresolved symbol that requires the provider to be linked in. When
190 * TRACEPOINT_PROBE_DYNAMIC_LINKAGE is not defined, we emit an
191 * unresolved symbol that depends on having the provider linked in,
192 * otherwise the linker complains. This deals with use of static
193 * libraries, ensuring that the linker does not remove the provider
194 * object from the executable.
195 */
196 #ifdef TRACEPOINT_PROBE_DYNAMIC_LINKAGE
197 #define _TRACEPOINT_UNDEFINED_REF(provider) NULL
198 #else /* TRACEPOINT_PROBE_DYNAMIC_LINKAGE */
199 #define _TRACEPOINT_UNDEFINED_REF(provider) &__tracepoint_provider_##provider
200 #endif /* TRACEPOINT_PROBE_DYNAMIC_LINKAGE */
201
202 /*
203 * Note: to allow PIC code, we need to allow the linker to update the pointers
204 * in the __tracepoints_ptrs section.
205 * Therefore, this section is _not_ const (read-only).
206 */
207 #define _TP_EXTRACT_STRING(...) #__VA_ARGS__
208
209 #define _DEFINE_TRACEPOINT(_provider, _name, _args) \
210 extern int __tracepoint_provider_##_provider; \
211 static const char __tp_strtab_##_provider##___##_name[] \
212 __attribute__((section("__tracepoints_strings"))) = \
213 #_provider ":" #_name; \
214 struct tracepoint __tracepoint_##_provider##___##_name \
215 __attribute__((section("__tracepoints"))) = \
216 { \
217 __tp_strtab_##_provider##___##_name, \
218 0, \
219 NULL, \
220 _TRACEPOINT_UNDEFINED_REF(_provider), \
221 _TP_EXTRACT_STRING(_args), \
222 }; \
223 static struct tracepoint * __tracepoint_ptr_##_provider##___##_name \
224 __attribute__((used, section("__tracepoints_ptrs"))) = \
225 &__tracepoint_##_provider##___##_name;
226
227 /*
228 * These weak symbols, the constructor, and destructor take care of
229 * registering only _one_ instance of the tracepoints per shared-ojbect
230 * (or for the whole main program).
231 */
232 extern struct tracepoint * const __start___tracepoints_ptrs[]
233 __attribute__((weak, visibility("hidden")));
234 extern struct tracepoint * const __stop___tracepoints_ptrs[]
235 __attribute__((weak, visibility("hidden")));
236 int __tracepoint_registered
237 __attribute__((weak, visibility("hidden")));
238 struct tracepoint_dlopen tracepoint_dlopen
239 __attribute__((weak, visibility("hidden")));
240
241 static void __attribute__((constructor)) __tracepoints__init(void)
242 {
243 if (__tracepoint_registered++)
244 return;
245
246 tracepoint_dlopen.liblttngust_handle =
247 dlopen("liblttng-ust-tracepoint.so.0", RTLD_NOW | RTLD_GLOBAL);
248 if (!tracepoint_dlopen.liblttngust_handle)
249 return;
250 tracepoint_dlopen.tracepoint_register_lib =
251 URCU_FORCE_CAST(int (*)(struct tracepoint * const *, int),
252 dlsym(tracepoint_dlopen.liblttngust_handle,
253 "tracepoint_register_lib"));
254 tracepoint_dlopen.tracepoint_unregister_lib =
255 URCU_FORCE_CAST(int (*)(struct tracepoint * const *),
256 dlsym(tracepoint_dlopen.liblttngust_handle,
257 "tracepoint_unregister_lib"));
258 #ifndef _LGPL_SOURCE
259 tracepoint_dlopen.rcu_read_lock_sym_bp =
260 URCU_FORCE_CAST(void (*)(void),
261 dlsym(tracepoint_dlopen.liblttngust_handle,
262 "tp_rcu_read_lock_bp"));
263 tracepoint_dlopen.rcu_read_unlock_sym_bp =
264 URCU_FORCE_CAST(void (*)(void),
265 dlsym(tracepoint_dlopen.liblttngust_handle,
266 "tp_rcu_read_unlock_bp"));
267 tracepoint_dlopen.rcu_dereference_sym_bp =
268 URCU_FORCE_CAST(void *(*)(void *p),
269 dlsym(tracepoint_dlopen.liblttngust_handle,
270 "tp_rcu_dereference_sym_bp"));
271 #endif
272 tracepoint_dlopen.tracepoint_register_lib(__start___tracepoints_ptrs,
273 __stop___tracepoints_ptrs -
274 __start___tracepoints_ptrs);
275 }
276
277 static void __attribute__((destructor)) __tracepoints__destroy(void)
278 {
279 int ret;
280
281 if (--__tracepoint_registered)
282 return;
283 if (tracepoint_dlopen.tracepoint_unregister_lib)
284 tracepoint_dlopen.tracepoint_unregister_lib(__start___tracepoints_ptrs);
285 if (tracepoint_dlopen.liblttngust_handle) {
286 ret = dlclose(tracepoint_dlopen.liblttngust_handle);
287 assert(!ret);
288 memset(&tracepoint_dlopen, 0, sizeof(tracepoint_dlopen));
289 }
290 }
291
292 #else /* TRACEPOINT_DEFINE */
293
294 #define _DEFINE_TRACEPOINT(_provider, _name, _args)
295
296 #endif /* #else TRACEPOINT_DEFINE */
297
298 #ifdef __cplusplus
299 }
300 #endif
301
302 #endif /* _LTTNG_TRACEPOINT_H */
303
304 /* The following declarations must be outside re-inclusion protection. */
305
306 #ifndef TRACEPOINT_EVENT
307
308 /*
309 * How to use the TRACEPOINT_EVENT macro:
310 *
311 * An example:
312 *
313 * TRACEPOINT_EVENT(someproject_component, event_name,
314 *
315 * * TP_ARGS takes from 0 to 10 "type, field_name" pairs *
316 *
317 * TP_ARGS(int, arg0, void *, arg1, char *, string, size_t, strlen,
318 * long *, arg4, size_t, arg4_len),
319 *
320 * * TP_FIELDS describes the event payload layout in the trace *
321 *
322 * TP_FIELDS(
323 * * Integer, printed in base 10 *
324 * ctf_integer(int, field_a, arg0)
325 *
326 * * Integer, printed with 0x base 16 *
327 * ctf_integer_hex(unsigned long, field_d, arg1)
328 *
329 * * Array Sequence, printed as UTF8-encoded array of bytes *
330 * ctf_array_text(char, field_b, string, FIXED_LEN)
331 * ctf_sequence_text(char, field_c, string, size_t, strlen)
332 *
333 * * String, printed as UTF8-encoded string *
334 * ctf_string(field_e, string)
335 *
336 * * Array sequence of signed integer values *
337 * ctf_array(long, field_f, arg4, FIXED_LEN4)
338 * ctf_sequence(long, field_g, arg4, size_t, arg4_len)
339 * )
340 * )
341 *
342 * More detailed explanation:
343 *
344 * The name of the tracepoint is expressed as a tuple with the provider
345 * and name arguments.
346 *
347 * The provider and name should be a proper C99 identifier.
348 * The "provider" and "name" MUST follow these rules to ensure no
349 * namespace clash occurs:
350 *
351 * For projects (applications and libraries) for which an entity
352 * specific to the project controls the source code and thus its
353 * tracepoints (typically with a scope larger than a single company):
354 *
355 * either:
356 * project_component, event
357 * or:
358 * project, event
359 *
360 * Where "project" is the name of the project,
361 * "component" is the name of the project component (which may
362 * include several levels of sub-components, e.g.
363 * ...component_subcomponent_...) where the tracepoint is located
364 * (optional),
365 * "event" is the name of the tracepoint event.
366 *
367 * For projects issued from a single company wishing to advertise that
368 * the company controls the source code and thus the tracepoints, the
369 * "com_" prefix should be used:
370 *
371 * either:
372 * com_company_project_component, event
373 * or:
374 * com_company_project, event
375 *
376 * Where "company" is the name of the company,
377 * "project" is the name of the project,
378 * "component" is the name of the project component (which may
379 * include several levels of sub-components, e.g.
380 * ...component_subcomponent_...) where the tracepoint is located
381 * (optional),
382 * "event" is the name of the tracepoint event.
383 *
384 * the provider:event identifier is limited to 127 characters.
385 */
386
387 #define TRACEPOINT_EVENT(provider, name, args, fields) \
388 _DECLARE_TRACEPOINT(provider, name, _TP_PARAMS(args)) \
389 _DEFINE_TRACEPOINT(provider, name, _TP_PARAMS(args))
390
391 #define TRACEPOINT_EVENT_CLASS(provider, name, args, fields)
392
393 #define TRACEPOINT_EVENT_INSTANCE(provider, _template, name, args) \
394 _DECLARE_TRACEPOINT(provider, name, _TP_PARAMS(args)) \
395 _DEFINE_TRACEPOINT(provider, name, _TP_PARAMS(args))
396
397 #endif /* #ifndef TRACEPOINT_EVENT */
398
399 #ifndef TRACEPOINT_LOGLEVEL
400
401 /*
402 * Tracepoint Loglevels
403 *
404 * Typical use of these loglevels:
405 *
406 * The loglevels go from 0 to 14. Higher numbers imply the most
407 * verbosity (higher event throughput expected.
408 *
409 * Loglevels 0 through 6, and loglevel 14, match syslog(3) loglevels
410 * semantic. Loglevels 7 through 13 offer more fine-grained selection of
411 * debug information.
412 *
413 * TRACE_EMERG 0
414 * system is unusable
415 *
416 * TRACE_ALERT 1
417 * action must be taken immediately
418 *
419 * TRACE_CRIT 2
420 * critical conditions
421 *
422 * TRACE_ERR 3
423 * error conditions
424 *
425 * TRACE_WARNING 4
426 * warning conditions
427 *
428 * TRACE_NOTICE 5
429 * normal, but significant, condition
430 *
431 * TRACE_INFO 6
432 * informational message
433 *
434 * TRACE_DEBUG_SYSTEM 7
435 * debug information with system-level scope (set of programs)
436 *
437 * TRACE_DEBUG_PROGRAM 8
438 * debug information with program-level scope (set of processes)
439 *
440 * TRACE_DEBUG_PROCESS 9
441 * debug information with process-level scope (set of modules)
442 *
443 * TRACE_DEBUG_MODULE 10
444 * debug information with module (executable/library) scope (set of units)
445 *
446 * TRACE_DEBUG_UNIT 11
447 * debug information with compilation unit scope (set of functions)
448 *
449 * TRACE_DEBUG_FUNCTION 12
450 * debug information with function-level scope
451 *
452 * TRACE_DEBUG_LINE 13
453 * debug information with line-level scope (TRACEPOINT_EVENT default)
454 *
455 * TRACE_DEBUG 14
456 * debug-level message (trace_printf default)
457 *
458 * Declare tracepoint loglevels for tracepoints. A TRACEPOINT_EVENT
459 * should be declared prior to the the TRACEPOINT_LOGLEVEL for a given
460 * tracepoint name. The first field is the provider name, the second
461 * field is the name of the tracepoint, the third field is the loglevel
462 * name.
463 *
464 * TRACEPOINT_LOGLEVEL(< [com_company_]project[_component] >, < event >,
465 * < loglevel_name >)
466 *
467 * The TRACEPOINT_PROVIDER must be already declared before declaring a
468 * TRACEPOINT_LOGLEVEL.
469 */
470
471 enum {
472 TRACE_EMERG = 0,
473 TRACE_ALERT = 1,
474 TRACE_CRIT = 2,
475 TRACE_ERR = 3,
476 TRACE_WARNING = 4,
477 TRACE_NOTICE = 5,
478 TRACE_INFO = 6,
479 TRACE_DEBUG_SYSTEM = 7,
480 TRACE_DEBUG_PROGRAM = 8,
481 TRACE_DEBUG_PROCESS = 9,
482 TRACE_DEBUG_MODULE = 10,
483 TRACE_DEBUG_UNIT = 11,
484 TRACE_DEBUG_FUNCTION = 12,
485 TRACE_DEBUG_LINE = 13,
486 TRACE_DEBUG = 14,
487 };
488
489 #define TRACEPOINT_LOGLEVEL(provider, name, loglevel)
490
491 #endif /* #ifndef TRACEPOINT_LOGLEVEL */
This page took 0.04089 seconds and 5 git commands to generate.