X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fbabeltrace-internal.h;h=39dc097e73f3e824bd4c6ad59cc5e0ea3d84e324;hp=a329cc939192012bdb5c0979aa51fb6fe6fed9ca;hb=3394d22e104e2f6511b656773ef4e74506842f3e;hpb=82662ad4362f791f9cd7026652f60708923554f4 diff --git a/include/babeltrace/babeltrace-internal.h b/include/babeltrace/babeltrace-internal.h index a329cc93..39dc097e 100644 --- a/include/babeltrace/babeltrace-internal.h +++ b/include/babeltrace/babeltrace-internal.h @@ -6,16 +6,16 @@ extern int babeltrace_verbose, babeltrace_debug; -#define printf_verbose(fmt, args...) \ - do { \ - if (babeltrace_verbose) \ - printf("[verbose] " fmt, ## args); \ +#define printf_verbose(fmt, args...) \ + do { \ + if (babeltrace_verbose) \ + fprintf(stdout, "[verbose] " fmt, ## args); \ } while (0) -#define printf_debug(fmt, args...) \ - do { \ - if (babeltrace_debug) \ - printf("[debug] " fmt, ## args); \ +#define printf_debug(fmt, args...) \ + do { \ + if (babeltrace_debug) \ + fprintf(stdout, "[debug] " fmt, ## args); \ } while (0) #define likely(x) __builtin_expect(!!(x), 1) @@ -23,17 +23,19 @@ extern int babeltrace_verbose, babeltrace_debug; struct trace_descriptor; struct trace_collection { - GPtrArray *array; + GPtrArray *array; /* struct trace_descriptor */ }; -int convert_trace(struct trace_descriptor *td_write, - struct trace_collection *trace_collection_read); - extern int opt_all_field_names, opt_scope_field_names, opt_header_field_names, opt_context_field_names, opt_payload_field_names, - opt_trace_name; + opt_trace_name, + opt_trace_domain, + opt_trace_procname, + opt_trace_vpid, + opt_loglevel, + opt_delta; #endif