X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=share%2Fusterr.h;h=9c4be7ee7aefff3fb58abb851c4f7e07401845b8;hb=5f0046615cbb4f36d0c70199b40df7537e438198;hp=83b3222c72ce4a9031d525389f94670c5375f697;hpb=a584bc4edb73e3f4c0023c42f2fdbc816fb6eab0;p=lttng-ust.git diff --git a/share/usterr.h b/share/usterr.h index 83b3222c..9c4be7ee 100644 --- a/share/usterr.h +++ b/share/usterr.h @@ -1,16 +1,18 @@ #ifndef USTERR_H #define USTERR_H -#define DBG(fmt, args...) fprintf(stderr, fmt "\n", ## args) -#define WARN(fmt, args...) fprintf(stderr, "usertrace: WARNING: " fmt "\n", ## args) -#define ERR(fmt, args...) fprintf(stderr, "usertrace: ERROR: " fmt "\n", ## args) -#define BUG(fmt, args...) fprintf(stderr, "usertrace: BUG: " fmt "\n", ## args) -#define PERROR(call) perror("usertrace: ERROR: " call) +//#define DEBUG +#ifdef DEBUG +# define DBG(fmt, args...) do { fprintf(stderr, fmt "\n", ## args); fflush(stderr); } while(0) +#else +# define DBG(fmt, args...) do {} while(0) +#endif +#define WARN(fmt, args...) fprintf(stderr, "libust: WARNING: " fmt "\n", ## args); fflush(stderr) +#define ERR(fmt, args...) fprintf(stderr, "libust: ERROR: " fmt "\n", ## args); fflush(stderr) +#define BUG(fmt, args...) fprintf(stderr, "libust: BUG: " fmt "\n", ## args); fflush(stderr) +#define PERROR(call) perror("ust: ERROR: " call) #define BUG_ON(condition) do { if (unlikely(condition)) ERR("condition not respected (BUG)"); } while(0) #define WARN_ON(condition) do { if (unlikely(condition)) WARN("condition not respected on line %s:%d", __FILE__, __LINE__); } while(0) -#define CPRINTF(fmt, args...) safe_printf(fmt "\n", ## args) - - #endif /* USTERR_H */