summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Refactor base_alloc() to guarantee demand-zeroed memory.Jason Evans2015-02-053-66/+104
* Fix chunk_recycle()'s new_addr functionality.Jason Evans2015-02-051-2/+6
* Make opt.lg_dirty_mult work as documentedMike Hommey2015-02-031-0/+2
* util.c: strerror_r returns char* only on glibcFelix Janda2015-02-031-1/+1
* Implement the prof.gdump mallctl.Jason Evans2015-01-263-1/+63
* Avoid pointless chunk_recycle() call.Jason Evans2015-01-261-21/+29
* huge_node_locked don't have to unlock huge_mtxSébastien Marie2015-01-251-1/+0
* Implement metadata statistics.Jason Evans2015-01-2410-118/+148
* Use the correct type for opt.junk when printing stats.Guilherme Goncalves2015-01-231-1/+1
* Refactor bootstrapping to delay tsd initialization.Jason Evans2015-01-223-119/+196
* Fix arenas_cache_cleanup().Jason Evans2015-01-221-1/+1
* Fix OOM handling in memalign() and valloc().Jason Evans2015-01-171-2/+4
* Fix an infinite recursion bug related to a0/tsd bootstrapping.Jason Evans2015-01-151-1/+3
* Move variable declaration to the top its block for MSVC compatibility.Guilherme Goncalves2014-12-171-2/+2
* Introduce two new modes of junk filling: "alloc" and "free".Guilherme Goncalves2014-12-155-40/+83
* Ignore MALLOC_CONF in set{uid,gid,cap} binaries.Daniel Micay2014-12-141-1/+22
* Style and spelling fixes.Jason Evans2014-12-096-8/+8
* Fix OOM cleanup in huge_palloc().Jason Evans2014-12-051-6/+2
* teach the dss chunk allocator to handle new_addrDaniel Micay2014-11-292-8/+15
* Fix more pointer arithmetic undefined behavior.Jason Evans2014-11-171-4/+4
* Fix pointer arithmetic undefined behavior.Jason Evans2014-11-172-17/+31
* Make quarantine_init() static.Jason Evans2014-11-071-1/+1
* Fix two quarantine regressions.Jason Evans2014-11-051-0/+22
* Disable arena_dirty_count() validation.Jason Evans2014-11-011-2/+6
* Don't dereference NULL tdata in prof_{enter,leave}().Jason Evans2014-11-011-13/+18
* rm unused arena wrangling from xallocxDaniel Micay2014-10-311-16/+8
* Miscellaneous cleanups.Jason Evans2014-10-312-4/+6
* avoid redundant chunk header readsDaniel Micay2014-10-311-28/+26
* mark huge allocations as unlikelyDaniel Micay2014-10-312-4/+4
* Fix prof_{enter,leave}() calls to pass tdata_self.Jason Evans2014-10-301-19/+24
* Use JEMALLOC_INLINE_C everywhere it's appropriate.Jason Evans2014-10-304-15/+15
* Merge pull request #151 from thestinger/rallocJason Evans2014-10-162-2/+2
|\
| * use sized deallocation internally for rallocDaniel Micay2014-10-162-2/+2
* | Initialize chunks_mtx for all configurations.Jason Evans2014-10-161-4/+3
|/
* Purge/zero sub-chunk huge allocations as necessary.Jason Evans2014-10-161-24/+51
* Add small run utilization to stats output.Jason Evans2014-10-151-16/+34
* Fix huge allocation statistics.Jason Evans2014-10-152-155/+239
* Add per size class huge allocation statistics.Jason Evans2014-10-134-299/+497
* Fix a prof_tctx_t/prof_tdata_t cleanup race.Jason Evans2014-10-121-5/+5
* Remove arena_dalloc_bin_run() clean page preservation.Jason Evans2014-10-111-66/+7
* Add --with-lg-tiny-min, generalize --with-lg-quantum.Jason Evans2014-10-111-0/+54
* Don't fetch tsd in a0{d,}alloc().Jason Evans2014-10-111-11/+7
* Add configure options.Jason Evans2014-10-104-96/+101
* Avoid atexit(3) when possible, disable prof_final by default.Jason Evans2014-10-091-8/+9
* Fix a recursive lock acquisition regression.Jason Evans2014-10-081-11/+16
* Use regular arena allocation for huge tree nodes.Daniel Micay2014-10-082-5/+6
* Refactor/fix arenas manipulation.Jason Evans2014-10-087-239/+475
* Fix a prof_tctx_t destruction race.Jason Evans2014-10-061-18/+32
* Normalize size classes.Jason Evans2014-10-066-152/+231
* Attempt to expand huge allocations in-place.Daniel Micay2014-10-053-28/+101