clockvector: add print() method
[model-checker.git] / common.h
index 19409c82edd0ef6039d21a0f9c94877765ba8575..cd6b16a286cf4684f711a824b303a465a99c590c 100644 (file)
--- a/common.h
+++ b/common.h
@@ -8,9 +8,19 @@
 #ifdef CONFIG_DEBUG
 #define DEBUG(fmt, ...) do { printf("*** %25s(): line %-4d *** " fmt, __func__, __LINE__, ##__VA_ARGS__); } while (0)
 #define DBG() DEBUG("\n");
+#define DBG_ENABLED() (1)
 #else
 #define DEBUG(fmt, ...)
 #define DBG()
+#define DBG_ENABLED() (0)
 #endif
 
+#define ASSERT(expr) \
+do { \
+       if (!(expr)) { \
+               fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
+               exit(1); \
+       } \
+} while (0);
+
 #endif /* __COMMON_H__ */