Rev 2927 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2927 | Rev 3149 | ||
---|---|---|---|
Line 53... | Line 53... | ||
53 | * |
53 | * |
54 | * @param expr Expression which is expected to be true. |
54 | * @param expr Expression which is expected to be true. |
55 | * |
55 | * |
56 | */ |
56 | */ |
57 | #ifdef CONFIG_DEBUG |
57 | #ifdef CONFIG_DEBUG |
- | 58 | # define ASSERT(expr) \ |
|
- | 59 | if (!(expr)) { \ |
|
58 | # define ASSERT(expr) if (!(expr)) { panic("assertion failed (%s), caller=%.*p\n", #expr, sizeof(uintptr_t) * 2, CALLER); } |
60 | panic("assertion failed (%s), caller=%p\n", #expr, CALLER); \ |
- | 61 | } |
|
59 | #else |
62 | #else |
60 | # define ASSERT(expr) |
63 | # define ASSERT(expr) |
61 | #endif |
64 | #endif |
62 | 65 | ||
- | 66 | /** Extensive debugging output macro |
|
- | 67 | * |
|
- | 68 | * If CONFIG_EDEBUG is set, the LOG() macro |
|
- | 69 | * will print whatever message is indicated plus |
|
- | 70 | * an information about the location. |
|
- | 71 | * |
|
- | 72 | */ |
|
- | 73 | ||
- | 74 | #ifdef CONFIG_EDEBUG |
|
- | 75 | # define LOG(format, ...) \ |
|
- | 76 | printf("%s() at %s:%u: " format "\n", __func__, __FILE__, \ |
|
- | 77 | __LINE__, ##__VA_ARGS__); |
|
- | 78 | #else |
|
- | 79 | # define LOG(format, ...) |
|
- | 80 | #endif |
|
- | 81 | ||
- | 82 | /** Extensive debugging execute macro |
|
- | 83 | * |
|
- | 84 | * If CONFIG_EDEBUG is set, the LOG_EXEC() macro |
|
- | 85 | * will print an information about calling a given |
|
- | 86 | * function and call it. |
|
- | 87 | * |
|
- | 88 | */ |
|
- | 89 | ||
- | 90 | #ifdef CONFIG_EDEBUG |
|
- | 91 | # define LOG_EXEC(fnc) \ |
|
- | 92 | { \ |
|
- | 93 | printf("%s() at %s:%u: " #fnc "\n", __func__, __FILE__, \ |
|
- | 94 | __LINE__); \ |
|
- | 95 | fnc; \ |
|
- | 96 | } |
|
- | 97 | #else |
|
- | 98 | # define LOG_EXEC(fnc) fnc |
|
- | 99 | #endif |
|
- | 100 | ||
- | 101 | ||
63 | #endif |
102 | #endif |
64 | 103 | ||
65 | /** @} |
104 | /** @} |
66 | */ |
105 | */ |