summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2015-08-21 19:23:06 (GMT)
committerJason Evans <jasone@canonware.com>2015-08-21 19:33:17 (GMT)
commit45e9f66c280e1ba8bebf7bed387a43bc9e45536d (patch)
treed1bdea995e09f9d147fde2bce44f0bb1e3237b78 /ChangeLog
parentb5c2a347d7cbf1154181ccb3adc599c8bd2094c9 (diff)
downloadjemalloc-45e9f66c280e1ba8bebf7bed387a43bc9e45536d.zip
jemalloc-45e9f66c280e1ba8bebf7bed387a43bc9e45536d.tar.gz
jemalloc-45e9f66c280e1ba8bebf7bed387a43bc9e45536d.tar.bz2
Fix arenas_cache_cleanup().
Fix arenas_cache_cleanup() to handle allocation/deallocation within the application's thread-specific data cleanup functions even after arenas_cache is torn down.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 284d6d2..9bcf299 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,9 +4,12 @@ brevity. Much more detail can be found in the git revision history:
https://github.com/jemalloc/jemalloc
-* 4.x.x (XXX)
+* 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.
- 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.