mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[NTOSKRNL]
- Fix *TRACE macros definition. See r53008 for more info. svn path=/trunk/; revision=53023
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
if (x & CmpTraceLevel) DbgPrint(__VA_ARGS__)
|
||||
#endif
|
||||
#else
|
||||
#define CMTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define CMTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
//
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
}
|
||||
#endif
|
||||
#else
|
||||
#define DBGKTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define DBGKTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
VOID
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
if (x & FsRtlpTraceLevel) DbgPrint(__VA_ARGS__)
|
||||
#endif
|
||||
#else
|
||||
#define FSTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define FSTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
//
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
if (x & HdlpTraceLevel) DbgPrint(__VA_ARGS__)
|
||||
#endif
|
||||
#else
|
||||
#define HDLTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define HDLTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
//
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
//
|
||||
// Define this if you want debugging support
|
||||
//
|
||||
#define _IO_DEBUG_ 0x00
|
||||
#define _IO_DEBUG_ 0x01
|
||||
|
||||
//
|
||||
// These define the Debug Masks Supported
|
||||
@@ -43,7 +43,7 @@
|
||||
}
|
||||
#endif
|
||||
#else
|
||||
#define IOTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define IOTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
//
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
}
|
||||
#endif
|
||||
#else
|
||||
#define LPCTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define LPCTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
//
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
if (x & PopTraceLevel) DbgPrint(__VA_ARGS__)
|
||||
#endif
|
||||
#else
|
||||
#define POTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define POTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
typedef struct _PO_HIBER_PERF
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
__LINE__, \
|
||||
OBJECT_TO_OBJECT_HEADER(x)->PointerCount)
|
||||
#else
|
||||
#define PSTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define PSTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#define PSREFTRACE(x)
|
||||
#endif
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
if (x & VdmpTraceLevel) DbgPrint(__VA_ARGS__)
|
||||
#endif
|
||||
#else
|
||||
#define VMTRACE(x, ...) DPRINT(__VA_ARGS__)
|
||||
#define VMTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user