Add loglevel support
[babeltrace.git] / include / babeltrace / babeltrace-internal.h
index 7c02948ac1ff56fda5e016204a834dbf59f41f0b..991e23c45a145af2c62e41344578c085811d3404 100644 (file)
@@ -18,6 +18,9 @@ extern int babeltrace_verbose, babeltrace_debug;
                        printf("[debug] " fmt, ## args);        \
        } while (0)
 
+#define likely(x)      __builtin_expect(!!(x), 1)
+#define unlikely(x)    __builtin_expect(!!(x), 0)
+
 struct trace_descriptor;
 struct trace_collection {
        GPtrArray *array;
@@ -26,6 +29,15 @@ struct trace_collection {
 int convert_trace(struct trace_descriptor *td_write,
                  struct trace_collection *trace_collection_read);
 
-extern int opt_field_names;
+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_domain,
+       opt_trace_procname,
+       opt_trace_vpid,
+       opt_loglevel;
 
 #endif
This page took 0.023888 seconds and 4 git commands to generate.