File: debug.h

package info (click to toggle)
vreng 1.6.3-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,400 kB
  • ctags: 3,097
  • sloc: ansic: 15,988; sh: 1,845; perl: 1,330; makefile: 59
file content (19 lines) | stat: -rw-r--r-- 463 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef DEBUG_H
#define DEBUG_H

/*	name		bit	value		cumul */
#define DBG_INIT	0	/* 1		1 */
#define DBG_W3D		1	/* 2		3 */
#define DBG_WIN		2	/* 4		7 */
#define DBG_THRD	3	/* 8		15 */
#define DBG_HTTP	4	/* 16		31 */
#define DBG_IPMC	5	/* 32		63 */
#define DBG_WMGT	6	/* 64		127 */
#define DBG_TOOL	7	/* 128		255 */
#define DBG_ZV		8	/* 256		511 */
#define DBG_NET		9	/* 512		1023 */
#define DBG_RTP		10	/* 1024		2047 */

#define DBG_FORCE	-1

#endif /* DEBUG_H */