OLD | NEW |
1 Name: tcmalloc | 1 Name: tcmalloc |
2 Short Name: gperftools | 2 Short Name: gperftools |
3 URL: http://gperftools.googlecode.com/ | 3 URL: http://gperftools.googlecode.com/ |
4 Version: unknown | 4 Version: unknown |
5 Revision: 144 | 5 Revision: 144 |
6 Security Critical: yes | 6 Security Critical: yes |
7 License: BSD | 7 License: BSD |
8 | 8 |
9 Description: | 9 Description: |
10 This contains Chromium's locally patched copy of tcmalloc. | 10 This contains Chromium's locally patched copy of tcmalloc. |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 86 |
87 Modifications: | 87 Modifications: |
88 - Converted to utf-8 with: vim +"argdo write ++enc=utf-8" *.h *.c | 88 - Converted to utf-8 with: vim +"argdo write ++enc=utf-8" *.h *.c |
89 - Added support for android. | 89 - Added support for android. |
90 - Use NULL instead of static_cast<uintptr_t>(0) in stack_trace_table.cc, | 90 - Use NULL instead of static_cast<uintptr_t>(0) in stack_trace_table.cc, |
91 for -std=c++11 compatibility. | 91 for -std=c++11 compatibility. |
92 - Added support for pseudo-stack heap profiling via a callback to retrieve a | 92 - Added support for pseudo-stack heap profiling via a callback to retrieve a |
93 simulated stack from the embedding application. | 93 simulated stack from the embedding application. |
94 - Inserted spaces around PRIx64, SCNx64 and friends, for c++11 compatibility. | 94 - Inserted spaces around PRIx64, SCNx64 and friends, for c++11 compatibility. |
95 - Fix sprintf formatting warning in MaybeDumpProfileLocked | 95 - Fix sprintf formatting warning in MaybeDumpProfileLocked |
96 - Added tc_malloc_skip_new_handler. | |
97 - Fix logging issues in android | 96 - Fix logging issues in android |
98 - Changed DEFINE_foo macros to ignore envname unless ENABLE_PROFILING is defined | 97 - Changed DEFINE_foo macros to ignore envname unless ENABLE_PROFILING is defined |
99 - Changed DEFINE_string to define const char*s instead of strings | 98 - Changed DEFINE_string to define const char*s instead of strings |
100 - Disabled HEAPPROFILE envvar unless ENABLE_PROFILING is defined | 99 - Disabled HEAPPROFILE envvar unless ENABLE_PROFILING is defined |
101 - Add "ARMv8-a" to the supporting list of ARM architecture | 100 - Add "ARMv8-a" to the supporting list of ARM architecture |
102 - Add generic.total_physical_bytes property to MallocExtension | 101 - Add generic.total_physical_bytes property to MallocExtension |
103 - Conditionally define HAVE_VDSO_SUPPORT only on linux_x86 to avoid static initi
alizers | 102 - Conditionally define HAVE_VDSO_SUPPORT only on linux_x86 to avoid static initi
alizers |
104 - Add TC_MALLOPT_IS_OVERRIDDEN_BY_TCMALLOC mallopt() arg | 103 - Add TC_MALLOPT_IS_OVERRIDDEN_BY_TCMALLOC mallopt() arg |
| 104 - Added tc_malloc_skip_new_handler. |
OLD | NEW |