summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* MSVC compatibility changesMatthijs2015-08-044-16/+45
* Generalize chunk management hooks.Jason Evans2015-08-0420-553/+1022
* Implement support for non-coalescing maps on MinGW.Jason Evans2015-07-257-4/+44
* Fix huge_ralloc_no_move() to succeed more often.Jason Evans2015-07-252-3/+4
* Fix huge_palloc() to handle size rather than usize input.Jason Evans2015-07-242-7/+13
* Fix sa2u() regression.Jason Evans2015-07-241-1/+1
* Change arena_palloc_large() parameter from size to usize.Jason Evans2015-07-241-12/+12
* Leave PRI* macros defined after using them to define FMT*.Jason Evans2015-07-231-11/+0
* Force lazy_lock on MinGW.Jason Evans2015-07-231-0/+1
* Fix MinGW-related portability issues.Jason Evans2015-07-2318-494/+224
* Fix a compilation error.Jason Evans2015-07-221-8/+10
* Add JEMALLOC_FORMAT_PRINTF().Jason Evans2015-07-228-20/+54
* Port mq_get() to MinGW.Jason Evans2015-07-213-13/+39
* Move JEMALLOC_NOTHROW just after return type.Jason Evans2015-07-213-74/+69
* Remove JEMALLOC_ALLOC_SIZE annotations on functions not returning pointersMike Hommey2015-07-212-4/+4
* Fix more MinGW build warnings.Jason Evans2015-07-184-43/+46
* Add the config.cache_oblivious mallctl.Jason Evans2015-07-174-1/+16
* 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-162-2/+2
* Revert to first-best-fit run/chunk allocation.Jason Evans2015-07-163-78/+27
* Add timer support for Windows.Jason Evans2015-07-132-10/+24
* Fix alloc_size configure test.Jason Evans2015-07-101-3/+2
* Add configure test for alloc_size attribute.Jason Evans2015-07-103-2/+21
* Avoid function prototype incompatibilities.Jason Evans2015-07-107-49/+100
* Fix an integer overflow bug in {size2index,s2u}_compute().Jason Evans2015-07-103-2/+96
* Fix indentation.Jason Evans2015-07-091-1/+1
* Add a missing ChangeLog entry.Jason Evans2015-07-091-0/+3
* Fix a variable declaration typo.Jason Evans2015-07-081-1/+1
* Use jemalloc_ffs() rather than ffs().Jason Evans2015-07-081-4/+12
* Fix MinGW build warnings.Jason Evans2015-07-084-57/+82
* Fix an assignment type warning for tls_callback.Jason Evans2015-07-081-2/+2
* Fix typos ChangeLogcharsyam2015-07-071-1/+1
* Minor ChangeLog edit.Jason Evans2015-07-071-3/+2
* Move a variable declaration closer to its use.Jason Evans2015-07-071-1/+2
* Optimizations for WindowsMatthijs2015-06-254-2/+36
* Fix size class overflow handling when profiling is enabled.Jason Evans2015-06-249-18/+86
* Convert arena_maybe_purge() recursion to iteration.Jason Evans2015-06-232-10/+27
* Add alignment assertions to public aligned allocation functions.Jason Evans2015-06-231-28/+33
* Fix two valgrind integration regressions.Jason Evans2015-06-222-3/+9
* Update a comment.Jason Evans2015-06-151-1/+2
* Clarify relationship between stats.resident and stats.mapped.Jason Evans2015-05-303-7/+15
* Bypass tcache when draining quarantined allocations.Jason Evans2015-05-301-3/+3
* 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-202-1/+10
* Fix arena_dalloc() performance regression.Jason Evans2015-05-201-1/+2
* Fix performance regression in arena_palloc().Jason Evans2015-05-201-2/+13
* Fix nhbins calculation.Jason Evans2015-05-201-1/+1
* Avoid atomic operations for dependent rtree reads.Jason Evans2015-05-165-26/+43
* 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-0610-73/+279