Add UC_ASSERT
This commit is contained in:
+13
-1
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
//Gnerate a compiler error if the compile time
|
//Gnerate a compiler error if the compile time
|
||||||
//constant expression fails
|
//constant expression fails
|
||||||
#define STATIC_ASSERT(expr) \
|
#define UC_STATIC_ASSERT(expr) \
|
||||||
do { \
|
do { \
|
||||||
enum { assert_static__ = 1/(expr) }; \
|
enum { assert_static__ = 1/(expr) }; \
|
||||||
} while (0)
|
} while (0)
|
||||||
@@ -58,5 +58,17 @@ typeof( ((type *)0)->member ) *__mptr = (ptr); \
|
|||||||
#define UC_STRINGIFY(x) UC_STRINGIFY_HLP(x)
|
#define UC_STRINGIFY(x) UC_STRINGIFY_HLP(x)
|
||||||
#define UC_STRINGIFY_HLP(x) #x
|
#define UC_STRINGIFY_HLP(x) #x
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* assert() that is not affected by NDEBUG define
|
||||||
|
*/
|
||||||
|
#define UC_ASSERT(expr) do {\
|
||||||
|
if (!(expr) ) {\
|
||||||
|
fprintf(stderr,\
|
||||||
|
"UC_ASSERT failed '%s' %s:%d\n", UC_STRINGIFY(expr), __FILE__, __LINE__);\
|
||||||
|
uc_backtrace_fd(3);\
|
||||||
|
abort();\
|
||||||
|
} while (0)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user