summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2015-08-25 23:13:59 (GMT)
committerJason Evans <je@fb.com>2015-08-28 03:32:35 (GMT)
commit30949da601f7405c294a71d30bd67be29cfbc2a5 (patch)
treee251b697d547dcbafcc6d1a8e79ef63a6d44277d /ChangeLog
parent5d2e875ac9283cb99ff714c5cb56e1fc98a7f007 (diff)
downloadjemalloc-30949da601f7405c294a71d30bd67be29cfbc2a5.zip
jemalloc-30949da601f7405c294a71d30bd67be29cfbc2a5.tar.gz
jemalloc-30949da601f7405c294a71d30bd67be29cfbc2a5.tar.bz2
Fix arenas_cache_cleanup() and arena_get_hard().
Fix arenas_cache_cleanup() and arena_get_hard() to handle allocation/deallocation within the application's thread-specific data cleanup functions even after arenas_cache is torn down. This is a more general fix that complements 45e9f66c280e1ba8bebf7bed387a43bc9e45536d (Fix arenas_cache_cleanup().).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 97728b0..17f6538 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,9 +7,9 @@ brevity. Much more detail can be found in the git revision history:
* 4.0.1 (XXX)
Bug fixes:
- - Fix arenas_cache_cleanup() to handle allocation/deallocation within the
- application's thread-specific data cleanup functions even after
- arenas_cache is torn down.
+ - Fix arenas_cache_cleanup() and arena_get_hard() to handle
+ allocation/deallocation within the application's thread-specific data
+ cleanup functions even after arenas_cache is torn down.
- Don't bitshift by negative amounts when encoding/decoding run sizes in chunk
header maps. This affected systems with page sizes greater than 8 KiB.
- Rename index_t to szind_t to avoid an existing type on Solaris.