summaryrefslogtreecommitdiff
path: root/src/debugallocation.cc
diff options
context:
space:
mode:
authorcsilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50>2009-11-10 16:24:57 +0000
committercsilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50>2009-11-10 16:24:57 +0000
commit5b80f01df1137337131b4c50ce97faaff9973e90 (patch)
treeb1fe4fad33a359f76e0384d309e747795c373a23 /src/debugallocation.cc
parent25eed16e1b042a80c9a3e83bbf7ed227d04fb45a (diff)
downloadgperftools-5b80f01df1137337131b4c50ce97faaff9973e90.tar.gz
* Replace usleep() and poll() with nanosleep() (glider)
* Document problems with _recalloc (csilvers) * Detect when x86_64 doesn't turn off frame pointers (csilvers) * Fix sysinfo.cc/etc to work with 64-bit os x (csilvers) * BUGFIX: Use __TEXT instead of __DATA to store tcmalloc fns (csilvers) * Added two numeric pageheap properties to tcmalloc (fikes) * Support for mallocranges stats visualization (sanjay) * Use libunwind for i386, not just x86_64 (ppluzhnikov) * Add ReleaseToSystem(num_bytes) (kash) * Provide corect library filenames under solaris (jeffrey) * BUGFIX: a simple bug in pprof --raw mode (mrabkin) * Prfer sys/ucontext.h to ucontext.h, to fix OS X 10.6 (csilvers) * Improve supprot for inlined functions in pprof (sanjay) * Document inaccuracies in profiling mmap calls (csilvers) * Update wget code to not use keepalive (mrabkin, csilvers) git-svn-id: http://gperftools.googlecode.com/svn/trunk@78 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
Diffstat (limited to 'src/debugallocation.cc')
-rw-r--r--src/debugallocation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugallocation.cc b/src/debugallocation.cc
index dcf722d..47fef16 100644
--- a/src/debugallocation.cc
+++ b/src/debugallocation.cc
@@ -674,7 +674,7 @@ class MallocBlock {
uintptr_t pc =
reinterpret_cast<uintptr_t>(queue_entry.deleter_pcs[i]) - 1;
TracePrintf(STDERR_FILENO, " @ %p %s\n",
- pc, symbolization_table[pc]);
+ reinterpret_cast<void*>(pc), symbolization_table[pc]);
}
} else {
RAW_LOG(ERROR,