X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Ferror.h;h=f8c0a1d06198bf218687a0ed8e67f3036ecba5d5;hb=e5d1a9b33aa0920bbd9f6948bd0676156da67c61;hp=5837d1cc33184b34398f94a29775224e0d38e469;hpb=d14d33bf091e72b23b1f90ea18a0a01bed098b76;p=lttng-tools.git diff --git a/src/common/error.h b/src/common/error.h index 5837d1cc3..f8c0a1d06 100644 --- a/src/common/error.h +++ b/src/common/error.h @@ -20,12 +20,16 @@ #include #include +#include #include #ifndef _GNU_SOURCE #error "lttng-tools error.h needs _GNU_SOURCE" #endif +#include +#include + /* Stringify the expansion of a define */ #define XSTR(d) STR(d) #define STR(s) #s @@ -33,6 +37,7 @@ extern int lttng_opt_quiet; extern int lttng_opt_verbose; +/* Error type. */ #define PRINT_ERR 0x1 #define PRINT_WARN 0x2 #define PRINT_BUG 0x3 @@ -62,26 +67,27 @@ extern int lttng_opt_verbose; } \ } while (0); +/* Three level of debug. Use -v, -vv or -vvv for the levels */ +#define _ERRMSG(msg, type, fmt, args...) __lttng_print(type, msg \ + " [%ld/%ld]: " fmt " (in %s() at " __FILE__ ":" XSTR(__LINE__) ")\n", \ + (long) getpid(), (long) gettid(), ## args, __func__) + #define MSG(fmt, args...) \ __lttng_print(PRINT_MSG, fmt "\n", ## args) +#define _MSG(fmt, args...) \ + __lttng_print(PRINT_MSG, fmt, ## args) #define ERR(fmt, args...) \ __lttng_print(PRINT_ERR, "Error: " fmt "\n", ## args) #define WARN(fmt, args...) \ __lttng_print(PRINT_WARN, "Warning: " fmt "\n", ## args) -#define BUG(fmt, args...) \ - __lttng_print(PRINT_BUG, "BUG: " fmt "\n", ## args) -/* Three level of debug. Use -v, -vv or -vvv for the levels */ -#define DBG(fmt, args...) __lttng_print(PRINT_DBG, "DEBUG1: " fmt \ - " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) -#define DBG2(fmt, args...) __lttng_print(PRINT_DBG2, "DEBUG2: " fmt \ - " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) -#define DBG3(fmt, args...) __lttng_print(PRINT_DBG3, "DEBUG3: " fmt \ - " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) +#define BUG(fmt, args...) _ERRMSG("BUG", PRINT_BUG, fmt, ## args) + +#define DBG(fmt, args...) _ERRMSG("DEBUG1", PRINT_DBG, fmt, ## args) +#define DBG2(fmt, args...) _ERRMSG("DEBUG2", PRINT_DBG2, fmt, ## args) +#define DBG3(fmt, args...) _ERRMSG("DEBUG3", PRINT_DBG3, fmt, ## args) -#define _PERROR(fmt, args...) \ - __lttng_print(PRINT_ERR, "PERROR: " fmt \ - " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) +#define _PERROR(fmt, args...) _ERRMSG("PERROR", PRINT_ERR, fmt, ## args) #if !defined(__linux__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE)) @@ -107,4 +113,6 @@ extern int lttng_opt_verbose; } while(0); #endif +const char *error_get_str(int32_t code); + #endif /* _ERROR_H */