fbe3f8865f9882c2b551244cd7062877ee99a526
[reactos.git] / reactos / drivers / net / ndis / include / debug.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS NDIS library
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_REFCOUNT 0x00000100
19 #define DEBUG_MINIPORT 0x00000200
20 #define DEBUG_PROTOCOL 0x00000400
21 #define DEBUG_PACKET 0x00000800
22 #define DEBUG_ULTRA 0xFFFFFFFF
23
24 #ifdef DBG
25
26 extern DWORD DebugTraceLevel;
27
28 #ifdef _MSC_VER
29
30 #define NDIS_DbgPrint(_t_, _x_) \
31 if (((DebugTraceLevel & NORMAL_MASK) >= _t_) || \
32 ((DebugTraceLevel & _t_) > NORMAL_MASK)) { \
33 DbgPrint("(%s:%d) ", __FILE__, __LINE__); \
34 DbgPrint _x_ ; \
35 }
36
37 #else /* _MSC_VER */
38
39 #define NDIS_DbgPrint(_t_, _x_) \
40 if (((DebugTraceLevel & NORMAL_MASK) >= _t_) || \
41 ((DebugTraceLevel & _t_) > NORMAL_MASK)) { \
42 DbgPrint("(%s:%d)(%s) ", __FILE__, __LINE__, __FUNCTION__); \
43 DbgPrint _x_ ; \
44 }
45
46 #endif /* _MSC_VER */
47
48
49 #ifdef ASSERT
50 #undef ASSERT
51 #endif
52
53 #ifdef NASSERT
54 #define ASSERT(x)
55 #else /* NASSERT */
56 #define ASSERT(x) if (!(x)) { NDIS_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
57 #endif /* NASSERT */
58
59 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
60
61 #else /* DBG */
62
63 #define NDIS_DbgPrint(_t_, _x_)
64
65 #define ASSERT_IRQL(x)
66 #define ASSERT(x)
67
68 #endif /* DBG */
69
70
71 #define assert(x) ASSERT(x)
72 #define assert_irql(x) ASSERT_IRQL(x)
73
74
75 #ifdef _MSC_VER
76
77 #define UNIMPLEMENTED \
78 NDIS_DbgPrint(MIN_TRACE, ("The function at (%s:%d) is unimplemented.\n", __FILE__, __LINE__));
79
80 #else /* _MSC_VER */
81
82 #define UNIMPLEMENTED \
83 NDIS_DbgPrint(MIN_TRACE, ("(%s) at (%s:%d) is unimplemented.\n", __FUNCTION__, __FILE__, __LINE__));
84
85 #endif /* _MSC_VER */
86
87
88 #define CHECKPOINT \
89 do { NDIS_DbgPrint(MIN_TRACE, ("(%s:%d)\n", __FILE__, __LINE__)); } while(0);
90
91 #define CP CHECKPOINT
92
93 #endif /* __DEBUG_H */
94
95 /* EOF */