osmo-msc/include/openbsc/debug.h

34 lines
860 B
C
Raw Normal View History

#ifndef _DEBUG_H
#define _DEBUG_H
#define DEBUG
#define DRLL 0x0001
#define DCC 0x0002
#define DMM 0x0004
#define DRR 0x0008
#define DRSL 0x0010
#define DNM 0x0020
2008-12-27 21:45:37 +00:00
#define DSMS 0x0100
#define DPAG 0x0200
#define DMI 0x1000
2008-12-27 17:02:56 +00:00
#define DMIB 0x2000
#ifdef DEBUG
#define DEBUGP(ss, fmt, args...) debugp(ss, __FILE__, __LINE__, 0, fmt, ## args)
#define DEBUGPC(ss, fmt, args...) debugp(ss, __FILE__, __LINE__, 1, fmt, ## args)
#else
#define DEBUGP(xss, fmt, args...)
#define DEBUGPC(ss, fmt, args...)
#endif
#define static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
void hexdump(unsigned char *buf, int len);
void debugp(unsigned int subsys, char *file, int line, int cont, const char *format, ...);
void debug_parse_category_mask(const char* mask);
void debug_use_color(int use_color);
2008-12-30 14:59:01 +00:00
unsigned int debug_mask;
#endif /* _DEBUG_H */