Use inheritance for trace descriptor and positions
[babeltrace.git] / include / babeltrace / babeltrace.h
1 #ifndef _BABELTRACE_H
2 #define _BABELTRACE_H
3
4 #define BABELTRACE_VERSION_MAJOR 0
5 #define BABELTRACE_VERSION_MINOR 1
6
7 extern int babeltrace_verbose, babeltrace_debug;
8
9 #define printf_verbose(fmt, args...) \
10 do { \
11 if (babeltrace_verbose) \
12 printf("[verbose] " fmt, ## args); \
13 } while (0)
14
15 #define printf_debug(fmt, args...) \
16 do { \
17 if (babeltrace_debug) \
18 printf("[debug] " fmt, ## args); \
19 } while (0)
20
21 struct trace_descriptor;
22
23 int copy_trace(struct trace_descriptor *td_write, struct trace_descriptor *td_read);
24
25 #endif
This page took 0.03024 seconds and 5 git commands to generate.