X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Ferror.h;h=f8c0a1d06198bf218687a0ed8e67f3036ecba5d5;hb=0c7bcad5eaa11b368460759fc87f949e8c56b98f;hp=f927078f17726f4e4bb4a755ce16c73e3ab93caa;hpb=97e190465f6a2a7d5bf72f445bb4d9d8544a0916;p=lttng-tools.git diff --git a/src/common/error.h b/src/common/error.h index f927078f1..f8c0a1d06 100644 --- a/src/common/error.h +++ b/src/common/error.h @@ -1,18 +1,18 @@ /* * Copyright (C) 2011 - David Goulet * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the Free - * Software Foundation; only version 2 of the License. - * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2 only, + * as published by the Free Software Foundation. + * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. - * - * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 59 Temple - * Place - Suite 330, Boston, MA 02111-1307, USA. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _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 _PERROR(fmt, args...) \ - __lttng_print(PRINT_ERR, "PERROR: " fmt \ - " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) +#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...) _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 */