Full memory management support (memory.c & memory.h & mem.S)
[reactos.git] / freeldr / freeldr / debug.h
1 /*
2 * FreeLoader
3 * Copyright (C) 2001 Brian Palmer <brianp@sginet.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20
21 #ifndef __DEBUG_H
22 #define __DEBUG_H
23
24 #define DPRINT_WARNING 0x00000001 // OR this with DebugPrintMask to enable debugger messages and other misc stuff
25 #define DPRINT_MEMORY 0x00000002 // OR this with DebugPrintMask to enable memory management messages
26
27 void DebugPrint(ULONG Mask, char *format, ...);
28
29 #define BugCheck0(format) \
30 { \
31 DebugPrint(DPRINT_WARNING, "Fatal Error: %s:%d\n", __FILE__, __LINE__); \
32 DebugPrint(DPRINT_WARNING, format); \
33 for (;;); \
34 }
35
36 #define BugCheck1(format, arg1) \
37 { \
38 DebugPrint(DPRINT_WARNING, "Fatal Error: %s:%d\n", __FILE__, __LINE__); \
39 DebugPrint(DPRINT_WARNING, format, arg1); \
40 for (;;); \
41 }
42
43 #define BugCheck2(format, arg1, arg2) \
44 { \
45 DebugPrint(DPRINT_WARNING, "Fatal Error: %s:%d\n", __FILE__, __LINE__); \
46 DebugPrint(DPRINT_WARNING, format, arg1, arg2); \
47 for (;;); \
48 }
49
50 #define BugCheck3(format, arg1, arg2, arg3) \
51 { \
52 DebugPrint(DPRINT_WARNING, "Fatal Error: %s:%d\n", __FILE__, __LINE__); \
53 DebugPrint(DPRINT_WARNING, format, arg1, arg2, arg3); \
54 for (;;); \
55 }
56
57 #endif // defined __DEBUG_H