summaryrefslogtreecommitdiffstats
path: root/include/jemalloc/internal
Commit message (Expand)AuthorAgeFilesLines
...
* Refactor base_alloc() to guarantee demand-zeroed memory.Jason Evans2015-02-052-2/+0
* Reduce extent_node_t size to fit in one cache line.Jason Evans2015-02-051-5/+11
* Implement more atomic operations.Jason Evans2015-02-052-82/+391
* Add missing prototypes for bootstrap_{malloc,calloc,free}().Jason Evans2015-02-051-1/+3
* Implement the prof.gdump mallctl.Jason Evans2015-01-262-0/+22
* Implement metadata statistics.Jason Evans2015-01-247-49/+161
* Refactor bootstrapping to delay tsd initialization.Jason Evans2015-01-223-6/+7
* Add missing symbols to private_symbols.txt.Abhishek Kulkarni2015-01-211-0/+4
* Add a isblank definition for MSVC < 2013Guilherme Goncalves2015-01-091-0/+8
* Introduce two new modes of junk filling: "alloc" and "free".Guilherme Goncalves2014-12-153-6/+10
* Ignore MALLOC_CONF in set{uid,gid,cap} binaries.Daniel Micay2014-12-141-0/+10
* Style and spelling fixes.Jason Evans2014-12-0911-27/+25
* Add a C11 atomics-based implementation of atomic.h API.Chih-hung Hsieh2014-12-073-0/+35
* Style fixes.Jason Evans2014-12-061-2/+2
* teach the dss chunk allocator to handle new_addrDaniel Micay2014-11-291-1/+2
* Remove extra definition of je_tsd_boot on win32.Guilherme Goncalves2014-11-181-6/+0
* Make quarantine_init() static.Jason Evans2014-11-072-3/+1
* Fix two quarantine regressions.Jason Evans2014-11-052-2/+4
* Fix arena_sdalloc() to use promoted size (second attempt).Jason Evans2014-11-011-8/+11
* Fix arena_sdalloc() to use promoted size.Jason Evans2014-11-011-7/+15
* Miscellaneous cleanups.Jason Evans2014-10-311-6/+4
* avoid redundant chunk header readsDaniel Micay2014-10-311-17/+16
* mark huge allocations as unlikelyDaniel Micay2014-10-312-12/+12
* Fix huge allocation statistics.Jason Evans2014-10-152-2/+11
* Add per size class huge allocation statistics.Jason Evans2014-10-133-12/+32
* Fix a prof_tctx_t/prof_tdata_t cleanup race.Jason Evans2014-10-121-0/+6
* Remove arena_dalloc_bin_run() clean page preservation.Jason Evans2014-10-111-8/+6
* Add --with-lg-tiny-min, generalize --with-lg-quantum.Jason Evans2014-10-113-6/+8
* Add configure options.Jason Evans2014-10-107-29/+46
* Use regular arena allocation for huge tree nodes.Daniel Micay2014-10-082-3/+3
* Refactor/fix arenas manipulation.Jason Evans2014-10-085-108/+264
* Normalize size classes.Jason Evans2014-10-068-318/+311
* Attempt to expand huge allocations in-place.Daniel Micay2014-10-054-8/+8
* Don't disable tcache for lazy-lock.Jason Evans2014-10-041-2/+0
* Make prof-related inline functions always-inline.Jason Evans2014-10-041-9/+9
* Fix tsd cleanup regressions.Jason Evans2014-10-045-50/+49
* Implement/test/fix prof-related mallctl's.Jason Evans2014-10-042-9/+30
* Convert to uniform style: cond == false --> !condJason Evans2014-10-036-20/+18
* Test prof.reset mallctl and fix numerous discovered bugs.Jason Evans2014-10-032-10/+15
* correctly detect adaptive mutexes in pthreadsEric Wong2014-09-292-1/+4
* Merge pull request #129 from daverigby/msvc_lg_floorJason Evans2014-09-291-0/+15
|\
| * Use MSVC intrinsics for lg_floorDave Rigby2014-09-241-0/+15
* | Move small run metadata into the arena chunk header.Jason Evans2014-09-292-67/+80
* | Implement compile-time bitmap size computation.Jason Evans2014-09-281-0/+46
* | Fix profile dumping race.Jason Evans2014-09-251-0/+1
|/
* Convert all tsd variables to reside in a single tsd structure.Jason Evans2014-09-239-414/+444
* Apply likely()/unlikely() to allocation/deallocation fast paths.Jason Evans2014-09-124-46/+53
* mark some conditions as unlikelyDaniel Micay2014-09-113-10/+10
* add likely / unlikely macrosDaniel Micay2014-09-101-0/+8
* Fix a profile sampling race.Jason Evans2014-09-102-20/+18