ust: add files from kernel
[ust.git] / share / usterr.h
CommitLineData
c9b64079
PMF
1#define DBG(fmt, args...) fprintf(stderr, fmt "\n", ## args)
2#define WARN(fmt, args...) fprintf(stderr, "usertrace: WARNING: " fmt "\n", ## args)
3#define ERR(fmt, args...) fprintf(stderr, "usertrace: ERROR: " fmt "\n", ## args)
4#define PERROR(call) perror("usertrace: ERROR: " call)
5
6#define BUG_ON(condition) do { if (unlikely(condition)) ERR("condition not respected (BUG)"); } while(0)
7#define WARN_ON(condition) do { if (unlikely(condition)) WARN("condition not respected"); } while(0)
8
This page took 0.021927 seconds and 4 git commands to generate.