| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |