X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fbabeltrace-internal.h;h=535f99094970161856927d5adcd6d1fb7753cc0d;hb=6fbd4105b92d0da8b3c5818a5b7c5b07850f4a01;hp=ce2648a6cf3bf32ed6b261ea09607ff02aaeb667;hpb=ff9ce920c95ab70d94a6425182de0ebafed4e2a0;p=babeltrace.git diff --git a/include/babeltrace/babeltrace-internal.h b/include/babeltrace/babeltrace-internal.h index ce2648a6..535f9909 100644 --- a/include/babeltrace/babeltrace-internal.h +++ b/include/babeltrace/babeltrace-internal.h @@ -27,11 +27,14 @@ #include #include #include +#include +#include +#include #include #define PERROR_BUFLEN 200 -extern int babeltrace_verbose, babeltrace_debug; +extern bool babeltrace_verbose, babeltrace_debug; #define printf_verbose(fmt, args...) \ do { \ @@ -84,14 +87,14 @@ extern int babeltrace_verbose, babeltrace_debug; #define _bt_printf_perror(fp, fmt, args...) \ ({ \ char buf[PERROR_BUFLEN] = "Error in strerror_r()"; \ - compat_strerror_r(errno, buf, sizeof(buf)); \ + bt_strerror_r(errno, buf, sizeof(buf)); \ _bt_printfe(fp, "error", buf, fmt, ## args); \ }) #define _bt_printfl_perror(fp, lineno, fmt, args...) \ ({ \ char buf[PERROR_BUFLEN] = "Error in strerror_r()"; \ - compat_strerror_r(errno, buf, sizeof(buf)); \ + bt_strerror_r(errno, buf, sizeof(buf)); \ _bt_printfle(fp, "error", lineno, buf, fmt, ## args); \ }) @@ -151,6 +154,24 @@ extern int babeltrace_verbose, babeltrace_debug; # endif #endif +#ifndef min +#define min(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#ifndef max +#define max(a, b) (((a) > (b)) ? (a) : (b)) +#endif + +#ifndef max_t +#define max_t(type, a, b) \ + ((type) (a) > (type) (b) ? (type) (a) : (type) (b)) +#endif + +/* + * Memory allocation zeroed + */ +#define zmalloc(x) calloc(1, x) + /* * BT_HIDDEN: set the hidden attribute for internal functions */ @@ -159,6 +180,9 @@ extern int babeltrace_verbose, babeltrace_debug; #define BT_CTF_MAJOR 1 #define BT_CTF_MINOR 8 +#define __STRINGIFY(x) #x +#define TOSTRING(x) __STRINGIFY(x) + struct bt_trace_descriptor; struct trace_collection { GPtrArray *array; /* struct bt_trace_descriptor */ @@ -198,5 +222,6 @@ extern int64_t opt_clock_offset; extern int64_t opt_clock_offset_ns; extern int babeltrace_ctf_console_output; extern char *opt_debug_info_dir; +extern char *opt_debug_info_target_prefix; #endif