mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
enable a additional GDI_DEBUG backtraces
svn path=/trunk/; revision=32684
This commit is contained in:
parent
22a1118107
commit
feb0960458
1 changed files with 6 additions and 6 deletions
|
@ -313,12 +313,12 @@ CaptureStackBackTace(PVOID* pFrames, ULONG nFramesToCapture)
|
|||
#define GDIDBG_TRACECALLER() \
|
||||
DPRINT1("-> called from:\n"); \
|
||||
KeRosDumpStackFrames(NULL, 20);
|
||||
#define GDIDBG_TRACEALLOCATOR(index)
|
||||
// DPRINT1("-> allocated from:\n");
|
||||
// KeRosDumpStackFrames(GDIHandleAllocator[index], GDI_STACK_LEVELS);
|
||||
#define GDIDBG_TRACELOCKER(index)
|
||||
// DPRINT1("-> locked from:\n");
|
||||
// KeRosDumpStackFrames(GDIHandleLocker[index], GDI_STACK_LEVELS);
|
||||
#define GDIDBG_TRACEALLOCATOR(index) \
|
||||
DPRINT1("-> allocated from:\n"); \
|
||||
KeRosDumpStackFrames(GDIHandleAllocator[index], GDI_STACK_LEVELS);
|
||||
#define GDIDBG_TRACELOCKER(index) \
|
||||
DPRINT1("-> locked from:\n"); \
|
||||
KeRosDumpStackFrames(GDIHandleLocker[index], GDI_STACK_LEVELS);
|
||||
#define GDIDBG_CAPTUREALLOCATOR(index) \
|
||||
CaptureStackBackTace((PVOID*)GDIHandleAllocator[index], GDI_STACK_LEVELS);
|
||||
#define GDIDBG_CAPTURELOCKER(index) \
|
||||
|
|
Loading…
Reference in a new issue