X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=share%2Fusterr.h;h=f1eef743ebd7de5381a4ecbf77ff231c0011ccb0;hb=1f8b0dffac11b11fa7b582b6274c6b4cadf57bb3;hp=2ab3662c9a8147e3c136eabaa2ea015b8fb6d036;hpb=59b161cdfcaad93fee295add37090a3d991e7aa8;p=lttng-ust.git diff --git a/share/usterr.h b/share/usterr.h index 2ab3662c..f1eef743 100644 --- a/share/usterr.h +++ b/share/usterr.h @@ -1,12 +1,16 @@ #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 DBG(fmt, args...) fprintf(stderr, fmt "\n", ## args); fflush(stderr) +#define WARN(fmt, args...) fprintf(stderr, "usertrace: WARNING: " fmt "\n", ## args); fflush(stderr) +#define ERR(fmt, args...) fprintf(stderr, "usertrace: ERROR: " fmt "\n", ## args); fflush(stderr) +#define BUG(fmt, args...) fprintf(stderr, "usertrace: BUG: " fmt "\n", ## args); fflush(stderr) #define PERROR(call) perror("usertrace: 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"); } 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 */