More work on winsock stack (ping is now working)
[reactos.git] / reactos / drivers / net / afd / include / debug.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Ancillary Function Driver
4 * FILE: include/debug.h
5 * PURPOSE: Debugging support macros
6 * DEFINES: DBG - Enable debug output
7 * NASSERT - Disable assertions
8 */
9 #ifndef __DEBUG_H
10 #define __DEBUG_H
11
12 #define NORMAL_MASK 0x000000FF
13 #define SPECIAL_MASK 0xFFFFFF00
14 #define MIN_TRACE 0x00000001
15 #define MID_TRACE 0x00000002
16 #define MAX_TRACE 0x00000003
17
18 #define DEBUG_CHECK 0x00000100
19 #define DEBUG_IRP 0x00000200
20 #define DEBUG_ULTRA 0xFFFFFFFF
21
22 #ifdef DBG
23
24 extern DWORD DebugTraceLevel;
25
26 #ifdef _MSC_VER
27
28 #define AFD_DbgPrint(_t_, _x_) \
29 if (((DebugTraceLevel & NORMAL_MASK) >= _t_) || \
30 ((DebugTraceLevel & _t_) > NORMAL_MASK)) { \
31 DbgPrint("(%s:%d) ", __FILE__, __LINE__); \
32 DbgPrint _x_ ; \
33 }
34
35 #else /* _MSC_VER */
36
37 #define AFD_DbgPrint(_t_, _x_) \
38 if (((DebugTraceLevel & NORMAL_MASK) >= _t_) || \
39 ((DebugTraceLevel & _t_) > NORMAL_MASK)) { \
40 DbgPrint("(%s:%d)(%s) ", __FILE__, __LINE__, __FUNCTION__); \
41 DbgPrint _x_ ; \
42 }
43
44 #endif /* _MSC_VER */
45
46 #ifdef ASSERT
47 #undef ASSERT
48 #endif
49
50 #ifdef NASSERT
51 #define ASSERT(x)
52 #else /* NASSERT */
53 #define ASSERT(x) if (!(x)) { AFD_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
54 #endif /* NASSERT */
55
56 #define ASSERT_KM(x) ASSERT((x) >= 0xC0000000)
57 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
58
59 #else /* DBG */
60
61 #define AFD_DbgPrint(_t_, _x_)
62
63 #define ASSERT_IRQL(x)
64 #define ASSERTKM(x)
65 #define ASSERT(x)
66
67 #endif /* DBG */
68
69
70 #define assert(x) ASSERT(x)
71 #define assert_km(x) ASSERT_KM(x)
72 #define assert_irql(x) ASSERT_IRQL(x)
73
74
75 #ifdef _MSC_VER
76
77 #define UNIMPLEMENTED \
78 AFD_DbgPrint(MIN_TRACE, ("The function at %s:%d is unimplemented, \
79 but come back another day.\n", __FILE__, __LINE__));
80
81 #else /* _MSC_VER */
82
83 #define UNIMPLEMENTED \
84 AFD_DbgPrint(MIN_TRACE, ("%s at %s:%d is unimplemented, " \
85 "but come back another day.\n", __FUNCTION__, __FILE__, __LINE__));
86
87 #endif /* _MSC_VER */
88
89
90 #define CHECKPOINT \
91 AFD_DbgPrint(DEBUG_CHECK, ("\n"));
92
93 #define CP CHECKPOINT
94
95 #endif /* __DEBUG_H */
96
97 /* EOF */