X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=share%2Fusterr.h;h=6a3e2a332fa7f4cbe05184bdaf38a01e491c88e9;hb=e91e64b6dd6bc59347a88d5154bd89c3d0c82acd;hp=a96a36f2525644456a44608dcf1529f807cfffa1;hpb=2028e7fd97170e430b55b8c0e1a6ca1edca7680c;p=ust.git diff --git a/share/usterr.h b/share/usterr.h index a96a36f..6a3e2a3 100644 --- a/share/usterr.h +++ b/share/usterr.h @@ -21,7 +21,7 @@ #define WARN(fmt, args...) fprintf(stderr, UST_STR_COMPONENT ": Warning: " fmt "\n", ## args); fflush(stderr) #define ERR(fmt, args...) fprintf(stderr, UST_STR_COMPONENT ": Error: " fmt "\n", ## args); fflush(stderr) #define BUG(fmt, args...) fprintf(stderr, UST_STR_COMPONENT ": BUG: " fmt "\n", ## args); fflush(stderr) -#define PERROR(call) perror("ust: ERROR: " call) +#define PERROR(call) perror(UST_STR_COMPONENT ": 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)