-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.h
59 lines (50 loc) · 1.72 KB
/
common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @file common.h
* @brief General purpose macros.
*/
#ifndef __COMMON_H__
#define __COMMON_H__
#include <stdio.h>
#include <unistd.h>
#include "config.h"
#include "printf.h"
extern int model_out;
#define model_print(fmt, ...) do { \
char mprintbuf[2048]; \
int printbuflen=snprintf_(mprintbuf, 2048, fmt, ## __VA_ARGS__); \
int lenleft = printbuflen < 2048 ? printbuflen : 2048; \
int totalwritten = 0; \
while(lenleft) { \
int byteswritten=write(model_out, &mprintbuf[totalwritten], lenleft); \
lenleft-=byteswritten; \
totalwritten+=byteswritten; \
} \
} while (0)
#ifdef CONFIG_DEBUG
#define DEBUG(fmt, ...) do { model_print("*** %15s:%-4d %25s() *** " fmt, __FILE__, __LINE__, __func__, ## __VA_ARGS__); } while (0)
#define DBG() DEBUG("\n")
#define DBG_ENABLED() (1)
#else
#define DEBUG(fmt, ...)
#define DBG()
#define DBG_ENABLED() (0)
#endif
void assert_hook(void);
#ifdef CONFIG_ASSERT
#define ASSERT(expr) \
do { \
if (!(expr)) { \
fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
print_trace(); \
assert_hook(); \
model_print("Or attach gdb to process with id # %u\n", getpid()); \
while(1) ; \
_Exit(EXIT_FAILURE); \
} \
} while (0)
#else
#define ASSERT(expr) \
do { } while (0)
#endif /* CONFIG_ASSERT */
#define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
void print_trace(void);
#endif /* __COMMON_H__ */