Skip to content

Commit

Permalink
Changed default values of the amount of dumping data to small values
Browse files Browse the repository at this point in the history
  • Loading branch information
ZaneUJi committed Aug 31, 2009
1 parent c5bc6de commit df94ea1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions vld.ini
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ForceIncludeModules =
; very large and cause unnecessary clutter in the memory leak report.
;
; Value Values: 0 - 4294967295
; Default: 4294967295
; Default: 256
;
MaxDataDump =

Expand All @@ -73,7 +73,7 @@ MaxDataDump =
; walking method (see StackWalkMethod below).
;
; Valid Values: 1 - 4294967295
; Default: 4294967295
; Default: 64
;
MaxTraceFrames =

Expand Down
4 changes: 2 additions & 2 deletions vldint.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,6 @@ class VisualLeakDetector : public IMalloc
};

// Configuration option default values
#define VLD_DEFAULT_MAX_DATA_DUMP 0xffffffff
#define VLD_DEFAULT_MAX_TRACE_FRAMES 0xffffffff
#define VLD_DEFAULT_MAX_DATA_DUMP 256
#define VLD_DEFAULT_MAX_TRACE_FRAMES 64
#define VLD_DEFAULT_REPORT_FILE_NAME L".\\memory_leak_report.txt"

0 comments on commit df94ea1

Please sign in to comment.