X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fbabeltrace-internal.h;h=71c236a46d10187e8db6e348f94046a0e91cbc2c;hp=9b9ffbdf4a7cf2213848c0cbd9437957fddaa8a8;hb=458af89d3baff393a4c38f70520fb51b811ad932;hpb=65923160260ca0d5928db5d8840e76576cb429c4 diff --git a/include/babeltrace/babeltrace-internal.h b/include/babeltrace/babeltrace-internal.h index 9b9ffbdf..71c236a4 100644 --- a/include/babeltrace/babeltrace-internal.h +++ b/include/babeltrace/babeltrace-internal.h @@ -27,7 +27,7 @@ #include #include #include -#include +#include #define PERROR_BUFLEN 200 @@ -81,46 +81,20 @@ extern int babeltrace_verbose, babeltrace_debug; perrorstr, \ ## args) -#if !defined(__linux__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE)) - #define _bt_printf_perror(fp, fmt, args...) \ ({ \ char buf[PERROR_BUFLEN] = "Error in strerror_r()"; \ - strerror_r(errno, buf, sizeof(buf)); \ + compat_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()"; \ - strerror_r(errno, buf, sizeof(buf)); \ + compat_strerror_r(errno, buf, sizeof(buf)); \ _bt_printfle(fp, "error", lineno, buf, fmt, ## args); \ }) -#else - -/* - * Version using GNU strerror_r, for linux with appropriate defines. - */ - -#define _bt_printf_perror(fp, fmt, args...) \ - ({ \ - char *buf; \ - char tmp[PERROR_BUFLEN] = "Error in strerror_r()"; \ - buf = strerror_r(errno, tmp, sizeof(tmp)); \ - _bt_printfe(fp, "error", buf, fmt, ## args); \ - }) - -#define _bt_printfl_perror(fp, lineno, fmt, args...) \ - ({ \ - char *buf; \ - char tmp[PERROR_BUFLEN] = "Error in strerror_r()"; \ - buf = strerror_r(errno, tmp, sizeof(tmp)); \ - _bt_printfle(fp, "error", lineno, buf, fmt, ## args); \ - }) - -#endif - /* printf without lineno information */ #define printf_fatal(fmt, args...) \ _bt_printf(stderr, "fatal", fmt, ## args) @@ -217,9 +191,12 @@ extern int opt_all_field_names, opt_clock_seconds, opt_clock_date, opt_clock_gmt, - opt_clock_force_correlate; + opt_clock_force_correlate, + opt_debug_info_full_path; extern uint64_t opt_clock_offset; extern uint64_t opt_clock_offset_ns; +extern int babeltrace_ctf_console_output; +extern char *opt_debug_info_dir; #endif