blob: 366142738e9ce58e98819f2e2551ca946e8d9c40 [file] [log] [blame]
Jason Evans379f8472010-10-24 16:18:29 -07001Following are change highlights associated with official releases. Important
2bug fixes are all mentioned, but internal enhancements are omitted here for
3brevity (even though they are more fun to write about). Much more detail can be
4found in the git revision history:
5
6 http://www.canonware.com/cgi-bin/gitweb.cgi?p=jemalloc.git
7 git://canonware.com/jemalloc.git
8
Jason Evansff08ef72013-10-19 21:41:10 -07009* 3.4.1 (XXX)
10
11 Bug fixes:
12 - Fix a Valgrind integration flaw that caused Valgrind warnings about reads of
13 uninitialized memory in arena chunk headers.
14 - Preserve errno during the first allocation. A readlink(2) call during
15 initialization fails unless /etc/malloc.conf exists, so errno was typically
16 set during the first allocation prior to this fix.
17 - Fix compilation warnings reported by gcc 4.8.1.
18
Jason Evans765cc2b2013-06-02 20:58:00 -070019* 3.4.0 (June 2, 2013)
20
21 This version is essentially a small bugfix release, but the addition of
22 aarch64 support requires that the minor version be incremented.
23
24 Bug fixes:
25 - Fix race-triggered deadlocks in chunk_record(). These deadlocks were
26 typically triggered by multiple threads concurrently deallocating huge
27 objects.
28
29 New features:
30 - Add support for the aarch64 architecture.
31
Jason Evans22988352013-03-06 11:11:17 -080032* 3.3.1 (March 6, 2013)
33
34 This version fixes bugs that are typically encountered only when utilizing
35 custom run-time options.
Jason Evansbbe29d32013-01-30 15:03:11 -080036
37 Bug fixes:
Jason Evans88c222c2013-02-06 11:59:30 -080038 - Fix a locking order bug that could cause deadlock during fork if heap
39 profiling were enabled.
Jason Evansa7a28c32013-01-31 16:53:58 -080040 - Fix a chunk recycling bug that could cause the allocator to lose track of
Jason Evans765cc2b2013-06-02 20:58:00 -070041 whether a chunk was zeroed. On FreeBSD, NetBSD, and OS X, it could cause
Jason Evansa7a28c32013-01-31 16:53:58 -080042 corruption if allocating via sbrk(2) (unlikely unless running with the
43 "dss:primary" option specified). This was completely harmless on Linux
44 unless using mlockall(2) (and unlikely even then, unless the
45 --disable-munmap configure option or the "dss:primary" option was
46 specified). This regression was introduced in 3.1.0 by the
47 mlockall(2)/madvise(2) interaction fix.
Jason Evansbbe29d32013-01-30 15:03:11 -080048 - Fix TLS-related memory corruption that could occur during thread exit if the
49 thread never allocated memory. Only the quarantine and prof facilities were
50 susceptible.
Jason Evansd0e942e2013-01-31 14:42:41 -080051 - Fix two quarantine bugs:
52 + Internal reallocation of the quarantined object array leaked the old
53 array.
54 + Reallocation failure for internal reallocation of the quarantined object
55 array (very unlikely) resulted in memory corruption.
Jason Evans06912752013-01-31 17:02:53 -080056 - Fix Valgrind integration to annotate all internally allocated memory in a
57 way that keeps Valgrind happy about internal data structure access.
Jason Evans22988352013-03-06 11:11:17 -080058 - Fix building for s390 systems.
Jason Evansbbe29d32013-01-30 15:03:11 -080059
Jason Evansb5681fb2013-01-22 22:45:09 -080060* 3.3.0 (January 23, 2013)
61
62 This version includes a few minor performance improvements in addition to the
63 listed new features and bug fixes.
64
65 New features:
66 - Add clipping support to lg_chunk option processing.
67 - Add the --enable-ivsalloc option.
68 - Add the --without-export option.
69 - Add the --disable-zone-allocator option.
Jason Evans6eb84fb2012-11-29 22:13:04 -080070
71 Bug fixes:
72 - Fix "arenas.extend" mallctl to output the number of arenas.
Jason Evansa33488d2013-10-03 14:38:39 -070073 - Fix chunk_recycle() to unconditionally inform Valgrind that returned memory
Jason Evans12711852012-12-12 10:12:18 -080074 is undefined.
Jason Evansb5681fb2013-01-22 22:45:09 -080075 - Fix build break on FreeBSD related to alloca.h.
Jason Evans6eb84fb2012-11-29 22:13:04 -080076
Jason Evans556ddc72012-11-07 15:16:29 -080077* 3.2.0 (November 9, 2012)
78
79 In addition to a couple of bug fixes, this version modifies page run
80 allocation and dirty page purging algorithms in order to better control
81 page-level virtual memory fragmentation.
Jason Evans12efefb2012-10-16 22:06:56 -070082
Jason Evanse3d13062012-10-30 15:42:37 -070083 Incompatible changes:
Jason Evans556ddc72012-11-07 15:16:29 -080084 - Change the "opt.lg_dirty_mult" default from 5 to 3 (32:1 to 8:1).
Jason Evanse3d13062012-10-30 15:42:37 -070085
Jason Evans12efefb2012-10-16 22:06:56 -070086 Bug fixes:
87 - Fix dss/mmap allocation precedence code to use recyclable mmap memory only
88 after primary dss allocation fails.
Jason Evanse3d13062012-10-30 15:42:37 -070089 - Fix deadlock in the "arenas.purge" mallctl. This regression was introduced
90 in 3.1.0 by the addition of the "arena.<i>.purge" mallctl.
Jason Evans12efefb2012-10-16 22:06:56 -070091
Jason Evans2b592b02012-10-16 10:12:40 -070092* 3.1.0 (October 16, 2012)
Jason Evans3860eac2012-05-15 13:53:21 -070093
Jason Evans781fe752012-05-15 14:48:14 -070094 New features:
95 - Auto-detect whether running inside Valgrind, thus removing the need to
96 manually specify MALLOC_CONF=valgrind:true.
Jason Evans2b592b02012-10-16 10:12:40 -070097 - Add the "arenas.extend" mallctl, which allows applications to create
98 manually managed arenas.
99 - Add the ALLOCM_ARENA() flag for {,r,d}allocm().
100 - Add the "opt.dss", "arena.<i>.dss", and "stats.arenas.<i>.dss" mallctls,
101 which provide control over dss/mmap precedence.
102 - Add the "arena.<i>.purge" mallctl, which obsoletes "arenas.purge".
103 - Define LG_QUANTUM for hppa.
Jason Evans781fe752012-05-15 14:48:14 -0700104
Jason Evans174b70e2012-05-15 23:31:53 -0700105 Incompatible changes:
106 - Disable tcache by default if running inside Valgrind, in order to avoid
107 making unallocated objects appear reachable to Valgrind.
Jason Evans2b592b02012-10-16 10:12:40 -0700108 - Drop const from malloc_usable_size() argument on Linux.
Jason Evans174b70e2012-05-15 23:31:53 -0700109
Jason Evans3860eac2012-05-15 13:53:21 -0700110 Bug fixes:
111 - Fix heap profiling crash if sampled object is freed via realloc(p, 0).
Jason Evans5c710ce2012-05-23 16:09:22 -0700112 - Remove const from __*_hook variable declarations, so that glibc can modify
113 them during process forking.
Jason Evans2b592b02012-10-16 10:12:40 -0700114 - Fix mlockall(2)/madvise(2) interaction.
115 - Fix fork(2)-related deadlocks.
116 - Fix error return value for "thread.tcache.enabled" mallctl.
Jason Evans3860eac2012-05-15 13:53:21 -0700117
Jason Evanscbb71ca2012-05-11 17:00:20 -0700118* 3.0.0 (May 11, 2012)
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700119
120 Although this version adds some major new features, the primary focus is on
121 internal code cleanup that facilitates maintainability and portability, most
122 of which is not reflected in the ChangeLog. This is the first release to
123 incorporate substantial contributions from numerous other developers, and the
124 result is a more broadly useful allocator (see the git revision history for
125 contribution details). Note that the license has been unified, thanks to
126 Facebook granting a license under the same terms as the other copyright
127 holders (see COPYING).
128
129 New features:
130 - Implement Valgrind support, redzones, and quarantine.
Jason Evans079687b2012-04-23 12:49:23 -0700131 - Add support for additional platforms:
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700132 + FreeBSD
133 + Mac OS X Lion
Jason Evans40f514f2012-04-22 16:21:06 -0700134 + MinGW
Jason Evanscbb71ca2012-05-11 17:00:20 -0700135 + Windows (no support yet for replacing the system malloc)
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700136 - Add support for additional architectures:
137 + MIPS
138 + SH4
139 + Tilera
140 - Add support for cross compiling.
141 - Add nallocm(), which rounds a request size up to the nearest size class
142 without actually allocating.
143 - Implement aligned_alloc() (blame C11).
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700144 - Add the "thread.tcache.enabled" mallctl.
Jason Evans0b25fe72012-04-17 16:39:33 -0700145 - Add the "opt.prof_final" mallctl.
Jason Evans25a000e2012-04-17 15:49:30 -0700146 - Update pprof (from gperftools 2.0).
Jason Evanscbb71ca2012-05-11 17:00:20 -0700147 - Add the --with-mangling option.
148 - Add the --disable-experimental option.
149 - Add the --disable-munmap option, and make it the default on Linux.
150 - Add the --enable-mremap option, which disables use of mremap(2) by default.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700151
152 Incompatible changes:
153 - Enable stats by default.
154 - Enable fill by default.
155 - Disable lazy locking by default.
156 - Rename the "tcache.flush" mallctl to "thread.tcache.flush".
157 - Rename the "arenas.pagesize" mallctl to "arenas.page".
Jason Evans0b25fe72012-04-17 16:39:33 -0700158 - Change the "opt.lg_prof_sample" default from 0 to 19 (1 B to 512 KiB).
159 - Change the "opt.prof_accum" default from true to false.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700160
161 Removed features:
162 - Remove the swap feature, including the "config.swap", "swap.avail",
163 "swap.prezeroed", "swap.nfds", and "swap.fds" mallctls.
164 - Remove highruns statistics, including the
165 "stats.arenas.<i>.bins.<j>.highruns" and
166 "stats.arenas.<i>.lruns.<j>.highruns" mallctls.
167 - As part of small size class refactoring, remove the "opt.lg_[qc]space_max",
168 "arenas.cacheline", "arenas.subpage", "arenas.[tqcs]space_{min,max}", and
169 "arenas.[tqcs]bins" mallctls.
170 - Remove the "arenas.chunksize" mallctl.
171 - Remove the "opt.lg_prof_tcmax" option.
172 - Remove the "opt.lg_prof_bt_max" option.
173 - Remove the "opt.lg_tcache_gc_sweep" option.
174 - Remove the --disable-tiny option, including the "config.tiny" mallctl.
175 - Remove the --enable-dynamic-page-shift configure option.
176 - Remove the --enable-sysv configure option.
177
178 Bug fixes:
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700179 - Fix a statistics-related bug in the "thread.arena" mallctl that could cause
180 invalid statistics and crashes.
Jason Evans079687b2012-04-23 12:49:23 -0700181 - Work around TLS deallocation via free() on Linux. This bug could cause
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700182 write-after-free memory corruption.
Jason Evans52386b22012-04-22 16:00:11 -0700183 - Fix a potential deadlock that could occur during interval- and
184 growth-triggered heap profile dumps.
Jason Evansd8ceef62012-05-10 20:59:39 -0700185 - Fix large calloc() zeroing bugs due to dropping chunk map unzeroed flags.
Jason Evans8f0e0eb2012-04-21 13:33:48 -0700186 - Fix chunk_alloc_dss() to stop claiming memory is zeroed. This bug could
187 cause memory corruption and crashes with --enable-dss specified.
Jason Evans52386b22012-04-22 16:00:11 -0700188 - Fix fork-related bugs that could cause deadlock in children between fork
189 and exec.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700190 - Fix malloc_stats_print() to honor 'b' and 'l' in the opts parameter.
191 - Fix realloc(p, 0) to act like free(p).
192 - Do not enforce minimum alignment in memalign().
193 - Check for NULL pointer in malloc_usable_size().
Jason Evans52386b22012-04-22 16:00:11 -0700194 - Fix an off-by-one heap profile statistics bug that could be observed in
195 interval- and growth-triggered heap profiles.
Jason Evans6b9ed672012-04-25 13:12:46 -0700196 - Fix the "epoch" mallctl to update cached stats even if the passed in epoch
197 is 0.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700198 - Fix bin->runcur management to fix a layout policy bug. This bug did not
199 affect correctness.
200 - Fix a bug in choose_arena_hard() that potentially caused more arenas to be
201 initialized than necessary.
202 - Add missing "opt.lg_tcache_max" mallctl implementation.
203 - Use glibc allocator hooks to make mixed allocator usage less likely.
204 - Fix build issues for --disable-tcache.
Jason Evans918d6e22012-04-20 13:42:21 -0700205 - Don't mangle pthread_create() when --with-private-namespace is specified.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700206
Jason Evansb3bd8852011-11-14 17:12:45 -0800207* 2.2.5 (November 14, 2011)
208
209 Bug fixes:
210 - Fix huge_ralloc() race when using mremap(2). This is a serious bug that
211 could cause memory corruption and/or crashes.
212 - Fix huge_ralloc() to maintain chunk statistics.
213 - Fix malloc_stats_print(..., "a") output.
214
Jason Evansca9ee1a2011-11-05 21:46:23 -0700215* 2.2.4 (November 5, 2011)
216
217 Bug fixes:
218 - Initialize arenas_tsd before using it. This bug existed for 2.2.[0-3], as
219 well as for --disable-tls builds in earlier releases.
220 - Do not assume a 4 KiB page size in test/rallocm.c.
221
Jason Evansc67e4fd2011-08-31 15:19:13 -0700222* 2.2.3 (August 31, 2011)
223
224 This version fixes numerous bugs related to heap profiling.
225
226 Bug fixes:
227 - Fix a prof-related race condition. This bug could cause memory corruption,
228 but only occurred in non-default configurations (prof_accum:false).
229 - Fix off-by-one backtracing issues (make sure that prof_alloc_prep() is
230 excluded from backtraces).
231 - Fix a prof-related bug in realloc() (only triggered by OOM errors).
232 - Fix prof-related bugs in allocm() and rallocm().
233 - Fix prof_tdata_cleanup() for --disable-tls builds.
234 - Fix a relative include path, to fix objdir builds.
235
Jason Evans4c484812011-07-30 16:59:13 -0700236* 2.2.2 (July 30, 2011)
237
238 Bug fixes:
239 - Fix a build error for --disable-tcache.
240 - Fix assertions in arena_purge() (for real this time).
241 - Add the --with-private-namespace option. This is a workaround for symbol
242 conflicts that can inadvertently arise when using static libraries.
243
Jason Evans7d9ebea2011-03-30 15:01:08 -0700244* 2.2.1 (March 30, 2011)
245
246 Bug fixes:
247 - Implement atomic operations for x86/x64. This fixes compilation failures
248 for versions of gcc that are still in wide use.
249 - Fix an assertion in arena_purge().
250
Jason Evans4bcd9872011-03-22 15:30:22 -0700251* 2.2.0 (March 22, 2011)
252
253 This version incorporates several improvements to algorithms and data
254 structures that tend to reduce fragmentation and increase speed.
255
256 New features:
257 - Add the "stats.cactive" mallctl.
258 - Update pprof (from google-perftools 1.7).
259 - Improve backtracing-related configuration logic, and add the
260 --disable-prof-libgcc option.
261
262 Bug fixes:
263 - Change default symbol visibility from "internal", to "hidden", which
264 decreases the overhead of library-internal function calls.
265 - Fix symbol visibility so that it is also set on OS X.
266 - Fix a build dependency regression caused by the introduction of the .pic.o
267 suffix for PIC object files.
268 - Add missing checks for mutex initialization failures.
269 - Don't use libgcc-based backtracing except on x64, where it is known to work.
270 - Fix deadlocks on OS X that were due to memory allocation in
271 pthread_mutex_lock().
272 - Heap profiling-specific fixes:
273 + Fix memory corruption due to integer overflow in small region index
274 computation, when using a small enough sample interval that profiling
275 context pointers are stored in small run headers.
276 + Fix a bootstrap ordering bug that only occurred with TLS disabled.
277 + Fix a rallocm() rsize bug.
278 + Fix error detection bugs for aligned memory allocation.
279
Jason Evans0e4d0d12011-03-14 16:41:03 -0700280* 2.1.3 (March 14, 2011)
281
282 Bug fixes:
283 - Fix a cpp logic regression (due to the "thread.{de,}allocatedp" mallctl fix
284 for OS X in 2.1.2).
285 - Fix a "thread.arena" mallctl bug.
286 - Fix a thread cache stats merging bug.
287
je6e56e5e2011-03-02 11:23:41 -0800288* 2.1.2 (March 2, 2011)
289
290 Bug fixes:
291 - Fix "thread.{de,}allocatedp" mallctl for OS X.
292 - Add missing jemalloc.a to build system.
293
Jason Evans63692862011-02-07 22:48:35 -0800294* 2.1.1 (January 31, 2011)
Jason Evansada55b22011-01-31 20:08:56 -0800295
Jason Evans63692862011-02-07 22:48:35 -0800296 Bug fixes:
Jason Evansada55b22011-01-31 20:08:56 -0800297 - Fix aligned huge reallocation (affected allocm()).
298 - Fix the ALLOCM_LG_ALIGN macro definition.
299 - Fix a heap dumping deadlock.
300 - Fix a "thread.arena" mallctl bug.
301
Jason Evans63692862011-02-07 22:48:35 -0800302* 2.1.0 (December 3, 2010)
Jason Evans0e8d3d22010-12-03 17:02:16 -0800303
304 This version incorporates some optimizations that can't quite be considered
305 bug fixes.
306
307 New features:
308 - Use Linux's mremap(2) for huge object reallocation when possible.
309 - Avoid locking in mallctl*() when possible.
310 - Add the "thread.[de]allocatedp" mallctl's.
311 - Convert the manual page source from roff to DocBook, and generate both roff
312 and HTML manuals.
313
314 Bug fixes:
315 - Fix a crash due to incorrect bootstrap ordering. This only impacted
316 --enable-debug --enable-dss configurations.
317 - Fix a minor statistics bug for mallctl("swap.avail", ...).
318
Jason Evans63692862011-02-07 22:48:35 -0800319* 2.0.1 (October 29, 2010)
Jason Evans53806fe2010-10-29 20:16:39 -0700320
321 Bug fixes:
322 - Fix a race condition in heap profiling that could cause undefined behavior
Jason Evansada55b22011-01-31 20:08:56 -0800323 if "opt.prof_accum" were disabled.
Jason Evans53806fe2010-10-29 20:16:39 -0700324 - Add missing mutex unlocks for some OOM error paths in the heap profiling
325 code.
326 - Fix a compilation error for non-C99 builds.
327
Jason Evans63692862011-02-07 22:48:35 -0800328* 2.0.0 (October 24, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700329
330 This version focuses on the experimental *allocm() API, and on improved
331 run-time configuration/introspection. Nonetheless, numerous performance
332 improvements are also included.
333
334 New features:
Jason Evansb059a532010-10-24 16:54:40 -0700335 - Implement the experimental {,r,s,d}allocm() API, which provides a superset
336 of the functionality available via malloc(), calloc(), posix_memalign(),
337 realloc(), malloc_usable_size(), and free(). These functions can be used to
338 allocate/reallocate aligned zeroed memory, ask for optional extra memory
339 during reallocation, prevent object movement during reallocation, etc.
340 - Replace JEMALLOC_OPTIONS/JEMALLOC_PROF_PREFIX with MALLOC_CONF, which is
341 more human-readable, and more flexible. For example:
342 JEMALLOC_OPTIONS=AJP
343 is now:
344 MALLOC_CONF=abort:true,fill:true,stats_print:true
345 - Port to Apple OS X. Sponsored by Mozilla.
346 - Make it possible for the application to control thread-->arena mappings via
347 the "thread.arena" mallctl.
348 - Add compile-time support for all TLS-related functionality via pthreads TSD.
349 This is mainly of interest for OS X, which does not support TLS, but has a
350 TSD implementation with similar performance.
351 - Override memalign() and valloc() if they are provided by the system.
352 - Add the "arenas.purge" mallctl, which can be used to synchronously purge all
353 dirty unused pages.
354 - Make cumulative heap profiling data optional, so that it is possible to
355 limit the amount of memory consumed by heap profiling data structures.
356 - Add per thread allocation counters that can be accessed via the
357 "thread.allocated" and "thread.deallocated" mallctls.
Jason Evans379f8472010-10-24 16:18:29 -0700358
359 Incompatible changes:
Jason Evansb059a532010-10-24 16:54:40 -0700360 - Remove JEMALLOC_OPTIONS and malloc_options (see MALLOC_CONF above).
361 - Increase default backtrace depth from 4 to 128 for heap profiling.
362 - Disable interval-based profile dumps by default.
Jason Evans379f8472010-10-24 16:18:29 -0700363
364 Bug fixes:
365 - Remove bad assertions in fork handler functions. These assertions could
366 cause aborts for some combinations of configure settings.
367 - Fix strerror_r() usage to deal with non-standard semantics in GNU libc.
368 - Fix leak context reporting. This bug tended to cause the number of contexts
369 to be underreported (though the reported number of objects and bytes were
370 correct).
371 - Fix a realloc() bug for large in-place growing reallocation. This bug could
372 cause memory corruption, but it was hard to trigger.
373 - Fix an allocation bug for small allocations that could be triggered if
374 multiple threads raced to create a new run of backing pages.
375 - Enhance the heap profiler to trigger samples based on usable size, rather
376 than request size.
377 - Fix a heap profiling bug due to sometimes losing track of requested object
378 size for sampled objects.
379
Jason Evans63692862011-02-07 22:48:35 -0800380* 1.0.3 (August 12, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700381
382 Bug fixes:
383 - Fix the libunwind-based implementation of stack backtracing (used for heap
384 profiling). This bug could cause zero-length backtraces to be reported.
385 - Add a missing mutex unlock in library initialization code. If multiple
386 threads raced to initialize malloc, some of them could end up permanently
387 blocked.
388
Jason Evans63692862011-02-07 22:48:35 -0800389* 1.0.2 (May 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700390
391 Bug fixes:
392 - Fix junk filling of large objects, which could cause memory corruption.
393 - Add MAP_NORESERVE support for chunk mapping, because otherwise virtual
394 memory limits could cause swap file configuration to fail. Contributed by
395 Jordan DeLong.
396
Jason Evans63692862011-02-07 22:48:35 -0800397* 1.0.1 (April 14, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700398
399 Bug fixes:
400 - Fix compilation when --enable-fill is specified.
401 - Fix threads-related profiling bugs that affected accuracy and caused memory
402 to be leaked during thread exit.
403 - Fix dirty page purging race conditions that could cause crashes.
404 - Fix crash in tcache flushing code during thread destruction.
405
Jason Evans63692862011-02-07 22:48:35 -0800406* 1.0.0 (April 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700407
408 This release focuses on speed and run-time introspection. Numerous
409 algorithmic improvements make this release substantially faster than its
410 predecessors.
411
412 New features:
413 - Implement autoconf-based configuration system.
414 - Add mallctl*(), for the purposes of introspection and run-time
415 configuration.
416 - Make it possible for the application to manually flush a thread's cache, via
417 the "tcache.flush" mallctl.
418 - Base maximum dirty page count on proportion of active memory.
419 - Compute various addtional run-time statistics, including per size class
420 statistics for large objects.
421 - Expose malloc_stats_print(), which can be called repeatedly by the
422 application.
423 - Simplify the malloc_message() signature to only take one string argument,
424 and incorporate an opaque data pointer argument for use by the application
425 in combination with malloc_stats_print().
426 - Add support for allocation backed by one or more swap files, and allow the
427 application to disable over-commit if swap files are in use.
428 - Implement allocation profiling and leak checking.
429
430 Removed features:
431 - Remove the dynamic arena rebalancing code, since thread-specific caching
432 reduces its utility.
433
434 Bug fixes:
435 - Modify chunk allocation to work when address space layout randomization
436 (ASLR) is in use.
437 - Fix thread cleanup bugs related to TLS destruction.
438 - Handle 0-size allocation requests in posix_memalign().
439 - Fix a chunk leak. The leaked chunks were never touched, so this impacted
440 virtual memory usage, but not physical memory usage.
441
Jason Evans63692862011-02-07 22:48:35 -0800442* linux_2008082[78]a (August 27/28, 2008)
Jason Evans379f8472010-10-24 16:18:29 -0700443
444 These snapshot releases are the simple result of incorporating Linux-specific
445 support into the FreeBSD malloc sources.
446
447--------------------------------------------------------------------------------
448vim:filetype=text:textwidth=80