2 * @brief General purpose macros.
12 extern int switch_alloc;
14 #define model_print(fmt, ...) do { switch_alloc = 1; dprintf(model_out, fmt, ##__VA_ARGS__); switch_alloc = 0; } while (0)
17 #define DEBUG(fmt, ...) do { model_print("*** %15s:%-4d %25s() *** " fmt, __FILE__, __LINE__, __func__, ##__VA_ARGS__); } while (0)
18 #define DBG() DEBUG("\n")
19 #define DBG_ENABLED() (1)
21 #define DEBUG(fmt, ...)
23 #define DBG_ENABLED() (0)
26 void assert_hook(void);
29 #define ASSERT(expr) \
32 fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
33 /* print_trace(); // Trace printing may cause dynamic memory allocation */ \
39 #define ASSERT(expr) \
41 #endif /* CONFIG_ASSERT */
43 #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
45 void print_trace(void);
46 #endif /* __COMMON_H__ */