1 | /***************************************************************************\
|
---|
2 | *
|
---|
3 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
4 | *
|
---|
5 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
6 | * available from http://www.virtualbox.org. This file is free software;
|
---|
7 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
8 | * General Public License (GPL) as published by the Free Software
|
---|
9 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
10 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
11 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
12 | *
|
---|
13 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
14 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
15 | * additional information or have any questions.
|
---|
16 | *
|
---|
17 | * Based in part on Microsoft DDK sample code
|
---|
18 | *
|
---|
19 | * *******************
|
---|
20 | * * GDI SAMPLE CODE *
|
---|
21 | * *******************
|
---|
22 | *
|
---|
23 | * Module Name: debug.h
|
---|
24 | *
|
---|
25 | * Commonly used debugging macros.
|
---|
26 | *
|
---|
27 | * Copyright (c) 1992-1998 Microsoft Corporation
|
---|
28 | \***************************************************************************/
|
---|
29 |
|
---|
30 | //VBOX
|
---|
31 | #ifdef LOG_ENABLED
|
---|
32 | VOID
|
---|
33 | DebugPrint(
|
---|
34 | ULONG DebugPrintLevel,
|
---|
35 | PCHAR DebugMessage,
|
---|
36 | ...
|
---|
37 | );
|
---|
38 |
|
---|
39 | #define DISPDBG(arg) DebugPrint arg
|
---|
40 | #define RIP(x) { DebugPrint(0, x); }
|
---|
41 | #else
|
---|
42 | #define DISPDBG(arg)
|
---|
43 | #define RIP(x)
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | // #if DBG
|
---|
47 | //
|
---|
48 | // VOID
|
---|
49 | // DebugPrint(
|
---|
50 | // ULONG DebugPrintLevel,
|
---|
51 | // PCHAR DebugMessage,
|
---|
52 | // ...
|
---|
53 | // );
|
---|
54 | //
|
---|
55 | // #define DISPDBG(arg) DebugPrint arg
|
---|
56 | // #define RIP(x) { DebugPrint(0, x); EngDebugBreak();}
|
---|
57 | //
|
---|
58 | // #else
|
---|
59 | //
|
---|
60 | // #define DISPDBG(arg)
|
---|
61 | // #define RIP(x)
|
---|
62 | //
|
---|
63 | // #endif
|
---|
64 |
|
---|
65 |
|
---|