summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Expand)AuthorAgeFilesLines
* Move JEMALLOC_NOTHROW just after return type.Jason Evans2015-07-212-38/+42
* Remove JEMALLOC_ALLOC_SIZE annotations on functions not returning pointersMike Hommey2015-07-211-2/+2
* Remove extraneous ';' on closing 'extern "C"'Dave Rigby2015-07-161-1/+1
* Change default chunk size from 256 KiB to 2 MiB.Jason Evans2015-07-161-1/+1
* Revert to first-best-fit run/chunk allocation.Jason Evans2015-07-161-1/+1
* Add configure test for alloc_size attribute.Jason Evans2015-07-102-2/+10
* Avoid function prototype incompatibilities.Jason Evans2015-07-103-24/+54
* Fix an integer overflow bug in {size2index,s2u}_compute().Jason Evans2015-07-101-2/+6
* Fix MinGW build warnings.Jason Evans2015-07-081-8/+30
* Optimizations for WindowsMatthijs2015-06-251-0/+12
* Fix size class overflow handling when profiling is enabled.Jason Evans2015-06-242-8/+4
* Convert arena_maybe_purge() recursion to iteration.Jason Evans2015-06-231-0/+3
* Update a comment.Jason Evans2015-06-151-1/+2
* Fix type errors in C11 versions of atomic_*() functions.Chi-hung Hsieh2015-05-281-8/+8
* Impose a minimum tcache count for small size classes.Jason Evans2015-05-201-0/+5
* Fix arena_dalloc() performance regression.Jason Evans2015-05-201-1/+2
* Avoid atomic operations for dependent rtree reads.Jason Evans2015-05-163-11/+28
* Fix type punning in calls to atomic operation functions.Jason Evans2015-05-082-8/+15
* Implement cache index randomization for large allocations.Jason Evans2015-05-064-22/+56
* Add the "stats.arenas.<i>.lg_dirty_mult" mallctl.Jason Evans2015-03-242-2/+4
* Add the "stats.allocated" mallctl.Jason Evans2015-03-243-2/+3
* Fix indentation inconsistencies.Igor Podlesny2015-03-221-6/+6
* Restore --enable-ivsalloc.Jason Evans2015-03-192-0/+13
* Implement dynamic per arena control over dirty page purging.Jason Evans2015-03-194-4/+26
* Use InterlockedCompareExchange instead of non-existing InterlockedCompareExch...Mike Hommey2015-03-171-1/+1
* Fix heap profiling regressions.Jason Evans2015-03-161-1/+22
* Fix a heap profiling regression.Jason Evans2015-03-141-0/+1
* Fix unsigned comparison underflow.Jason Evans2015-03-121-1/+1
* Normalize rdelm/rd structure field naming.Jason Evans2015-03-112-23/+23
* Refactor dirty run linkage to reduce sizeof(extent_node_t).Jason Evans2015-03-113-16/+47
* Use first-fit rather than first-best-fit run/chunk allocation.Jason Evans2015-03-071-1/+1
* Change default chunk size from 4 MiB to 256 KiB.Jason Evans2015-03-071-1/+1
* Preserve LastError when calling TlsGetValueMike Hommey2015-03-041-2/+6
* Make --without-export actually workMike Hommey2015-03-042-5/+15
* Fix chunk cache races.Jason Evans2015-02-193-6/+16
* Rename "dirty chunks" to "cached chunks".Jason Evans2015-02-184-18/+42
* Fix chunk_unmap() to propagate dirty state.Jason Evans2015-02-181-1/+1
* arena_chunk_dirty_node_init() --> extent_node_dirty_linkage_init()Jason Evans2015-02-182-0/+10
* Remove obsolete type arena_chunk_miscelms_t.Jason Evans2015-02-181-1/+0
* Simplify extent_node_t and add extent_node_init().Jason Evans2015-02-172-13/+23
* Integrate whole chunks into unused dirty page purging machinery.Jason Evans2015-02-175-33/+195
* Remove more obsolete (incorrect) assertions.Jason Evans2015-02-161-2/+0
* Remove obsolete (incorrect) assertions.Jason Evans2015-02-161-2/+0
* Normalize *_link and link_* fields to all be *_link.Jason Evans2015-02-161-3/+3
* If MALLOCX_ARENA(a) is specified, use it during tcache fill.Jason Evans2015-02-132-27/+27
* Make prof_tctx accesses atomic.Jason Evans2015-02-121-4/+10
* Refactor huge_*() calls into arena internals.Jason Evans2015-02-123-169/+132
* Move centralized chunk management into arenas.Jason Evans2015-02-1213-99/+111
* Remove unnecessary xchg* lock prefixes.Jason Evans2015-02-111-2/+2
* Implement explicit tcache support.Jason Evans2015-02-106-129/+183