Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: deps/third_party/valgrind/scripts/intercept_tcmalloc.patch

Issue 550036: svn copy tools/valgrind/{*.patch,build-*.sh} deps/third_party/valgrind/script... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
Merged /branches/chrome_webkit_merge_branch/tools/valgrind/intercept_tcmalloc.patch:r69-2775
OLDNEW
1 Index: coregrind/m_replacemalloc/vg_replace_malloc.c 1 Index: coregrind/m_replacemalloc/vg_replace_malloc.c
2 =================================================================== 2 ===================================================================
3 --- coregrind/m_replacemalloc/vg_replace_malloc.c (revision 10880) 3 --- coregrind/m_replacemalloc/vg_replace_malloc.c (revision 10880)
4 +++ coregrind/m_replacemalloc/vg_replace_malloc.c (working copy) 4 +++ coregrind/m_replacemalloc/vg_replace_malloc.c (working copy)
5 @@ -193,6 +193,18 @@ 5 @@ -193,6 +193,18 @@
6 // malloc 6 // malloc
7 ALLOC_or_NULL(VG_Z_LIBSTDCXX_SONAME, malloc, malloc); 7 ALLOC_or_NULL(VG_Z_LIBSTDCXX_SONAME, malloc, malloc);
8 ALLOC_or_NULL(VG_Z_LIBC_SONAME, malloc, malloc); 8 ALLOC_or_NULL(VG_Z_LIBC_SONAME, malloc, malloc);
9 +// Handle libtcmalloc's malloc() function. 9 +// Handle libtcmalloc's malloc() function.
10 +// Similar interceptors are added below to handle other libtcmalloc 10 +// Similar interceptors are added below to handle other libtcmalloc
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 226
227 /*---------------------- (unimplemented) ----------------------*/ 227 /*---------------------- (unimplemented) ----------------------*/
228 @@ -742,6 +789,7 @@ 228 @@ -742,6 +789,7 @@
229 } 229 }
230 230
231 MALLINFO(VG_Z_LIBC_SONAME, mallinfo); 231 MALLINFO(VG_Z_LIBC_SONAME, mallinfo);
232 +MALLINFO(NONE, mallinfo); 232 +MALLINFO(NONE, mallinfo);
233 233
234 234
235 #if defined(VGO_darwin) 235 #if defined(VGO_darwin)
OLDNEW
« no previous file with comments | « deps/third_party/valgrind/scripts/fork.patch ('k') | deps/third_party/valgrind/scripts/longlines.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698