diff options
author | csilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50> | 2009-03-11 20:50:03 +0000 |
---|---|---|
committer | csilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50> | 2009-03-11 20:50:03 +0000 |
commit | edd03a831f350bc72d76d4fad2b390d43faccb79 (patch) | |
tree | 6985cbaa35ce40f51386a7757de308452641cc21 /src/span.cc | |
parent | c75de4d1e91c339fb5142a8a21be8b3ba5224ef7 (diff) | |
download | gperftools-edd03a831f350bc72d76d4fad2b390d43faccb79.tar.gz |
Wed Mar 11 11:25:34 2009 Google Inc. <opensource@google.com>
* google-perftools: version 1.1 release
* Dynamically resize thread caches -- nice perf. improvement (kash)
* Add VDSO support to give better stacktraces in linux (ppluzhnikov)
* Improve heap-profiling sampling algorithm (ford)
* Rewrite leak-checking code: should be faster and more robust (sanjay)
* Use ps2 instead of ps for dot: better page cropping for gv (csilvers)
* Disable malloc-failure warning messages by default (csilvers)
* Update config/Makefile to disable tests on a per-OS basis (csilvers)
* PORTING: Get perftools compiling under MSVC 7.1 again (csilvers)
* PORTING: Get perftools compiling under cygwin again (csilvers)
* PORTING: automatically set library flags for solaris x86 (csilvers)
* Add TCMALLOC_SKIP_SBRK to mirror TCMALLOC_SKIP_MMAP (csilvers)
* Add --enable flags to allow selective building (csilvers)
* Put addr2line-pdb and nm-pdb in proper output directory (csilvers)
* Remove deprecated DisableChecksIn (sanjay)
* DOCUMENTATION: Document most MallocExtension routines (csilvers)
git-svn-id: http://gperftools.googlecode.com/svn/trunk@66 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
Diffstat (limited to 'src/span.cc')
-rw-r--r-- | src/span.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/span.cc b/src/span.cc index 6be9900..72d36fe 100644 --- a/src/span.cc +++ b/src/span.cc @@ -89,7 +89,7 @@ int DLL_Length(const Span* list) { return result; } -#if 0 // This isn't used. +#if 0 // This isn't used. If that changes, rewrite to use TCMalloc_Printer. void DLL_Print(const char* label, const Span* list) { MESSAGE("%-10s %p:", label, list); for (const Span* s = list->next; s != list; s = s->next) { |