[NTOSKRNL]

- Fix *TRACE macros definition. See r53008 for more info.

svn path=/trunk/; revision=53023
This commit is contained in:
Rafal Harabien 2011-08-01 22:59:44 +00:00
parent 12bdc5e8e3
commit fef1661346
9 changed files with 10 additions and 10 deletions

View file

@ -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
//

View file

@ -43,7 +43,7 @@
}
#endif
#else
#define DBGKTRACE(x, ...) DPRINT(__VA_ARGS__)
#define DBGKTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
#endif
VOID

View file

@ -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
//

View file

@ -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
//

View file

@ -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
//

View file

@ -46,7 +46,7 @@
}
#endif
#else
#define LPCTRACE(x, ...) DPRINT(__VA_ARGS__)
#define LPCTRACE(x, fmt, ...) DPRINT(fmt, ##__VA_ARGS__)
#endif
//

View file

@ -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

View file

@ -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

View file

@ -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
//