X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Ferror.hpp;h=fdae1e72c293bb0aefc16b008621dfb772993033;hp=93616718f65dd89481492d39bf7ef0fe8ba1d261;hb=HEAD;hpb=003f455dab0204dd3f066ecdbea0470035f8181f diff --git a/src/common/error.hpp b/src/common/error.hpp index 93616718f..23d840c2d 100644 --- a/src/common/error.hpp +++ b/src/common/error.hpp @@ -46,7 +46,8 @@ struct log_time { /* Format: 00:00:00.000000000 plus NULL byte. */ char str[19]; }; -extern DECLARE_URCU_TLS(const char *, logger_thread_name); + +extern thread_local const char *logger_thread_name; extern int lttng_opt_quiet; extern int lttng_opt_verbose; @@ -159,7 +160,7 @@ static inline void __lttng_print_check_abort(enum lttng_error_level type) msg " - %s [%s]: " fmt " (in %s() at " __FILE__ \ ":" XSTR(__LINE__) ")\n", \ log_add_time(), \ - URCU_TLS(logger_thread_name) ?: generic_name, \ + logger_thread_name ?: generic_name, \ ##args, \ __func__); \ } \ @@ -179,7 +180,7 @@ static inline void __lttng_print_check_abort(enum lttng_error_level type) __lttng_print(type, \ msg " - %s [%s]: " fmt "\n", \ log_add_time(), \ - URCU_TLS(logger_thread_name) ?: generic_name, \ + logger_thread_name ?: generic_name, \ ##args); \ } \ } while (0) @@ -242,7 +243,6 @@ static inline void __lttng_print_check_abort(enum lttng_error_level type) /* * Version using GNU strerror_r, for linux with appropriate defines. */ -const char *error_get_str(int32_t code); #define PERROR(call, args...) \ do { \ char *_perror_buf; \ @@ -252,6 +252,8 @@ const char *error_get_str(int32_t code); } while (0); #endif +const char *error_get_str(int32_t code); + namespace lttng { namespace logging { namespace details { @@ -264,7 +266,7 @@ namespace details { #define DBG_FMT(format_str, args...) \ do { \ try { \ - DBG("%s", fmt::format(format_str, ##args).c_str()); \ + DBG("%s", lttng::format(format_str, ##args).c_str()); \ } catch (const std::exception& _formatting_exception) { \ lttng::logging::details::die_formatting_exception(format_str, \ _formatting_exception); \ @@ -274,7 +276,7 @@ namespace details { #define WARN_FMT(format_str, args...) \ do { \ try { \ - WARN("%s", fmt::format(format_str, ##args).c_str()); \ + WARN("%s", lttng::format(format_str, ##args).c_str()); \ } catch (const std::exception& _formatting_exception) { \ lttng::logging::details::die_formatting_exception(format_str, \ _formatting_exception); \ @@ -284,7 +286,7 @@ namespace details { #define ERR_FMT(format_str, args...) \ do { \ try { \ - ERR("%s", fmt::format(format_str, ##args).c_str()); \ + ERR("%s", lttng::format(format_str, ##args).c_str()); \ } catch (const std::exception& _formatting_exception) { \ lttng::logging::details::die_formatting_exception(format_str, \ _formatting_exception); \