| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove stale #include <machine/atomic.h>, which as needed by lazy | jasone | 2008-03-07 | 1 | -4/+4 |
* | Fix a race condition in arena_ralloc() for shrinking in-place large | jasone | 2008-02-17 | 1 | -25/+41 |
* | Remove support for lazy deallocation. Benchmarks across a wide range of | jasone | 2008-02-17 | 1 | -209/+3 |
* | Fix a bug in lazy deallocation that was introduced when | jasone | 2008-02-08 | 1 | -7/+10 |
* | Clean up manipulation of chunk page map elements to remove some tenuous | jasone | 2008-02-08 | 1 | -362/+357 |
* | Track dirty unused pages so that they can be purged if they exceed a | jasone | 2008-02-06 | 1 | -664/+956 |
* | Enable both sbrk(2)- and mmap(2)-based memory acquisition methods by | jasone | 2008-01-03 | 1 | -7/+8 |
* | Fix a major chunk-related memory leak in chunk_dealloc_dss_record(). [1] | jasone | 2007-12-31 | 1 | -65/+56 |
* | Fix a bug related to sbrk() calls that could cause address space leaks. | jasone | 2007-12-31 | 1 | -186/+268 |
* | Back out premature commit of previous version. | jasone | 2007-12-28 | 1 | -183/+113 |
* | Maintain two trees instead of one (old_chunks --> old_chunks_{ad,szad}) in | jasone | 2007-12-28 | 1 | -113/+183 |
* | Release chunks_mtx for all paths through chunk_dealloc(). | jasone | 2007-12-28 | 1 | -1/+4 |
* | Add the 'D' and 'M' run time options, and use them to control whether | jasone | 2007-12-27 | 1 | -291/+435 |
* | Use fixed point integer math instead of floating point math when | jasone | 2007-12-18 | 1 | -42/+47 |
* | Refactor features a bit in order to make it possible to disable lazy | jasone | 2007-12-17 | 1 | -52/+127 |
* | Only zero large allocations when necessary (for calloc()). | jasone | 2007-11-28 | 1 | -1/+1 |
* | Implement dynamic load balancing of thread-->arena mapping, based on lock | jasone | 2007-11-27 | 1 | -58/+297 |
* | Implement lazy deallocation of small objects. For each arena, maintain a | jasone | 2007-11-27 | 1 | -0/+218 |
* | Avoid re-zeroing memory in calloc() when possible. | jasone | 2007-11-27 | 1 | -143/+218 |
* | Fix stats printing of the amount of memory currently consumed by huge | jasone | 2007-11-27 | 1 | -36/+37 |
* | Fix junk/zero filling for realloc(). Junk filling was missing in one case, | jasone | 2007-06-15 | 1 | -36/+48 |
* | Use size_t instead of unsigned for pagesize-related values, in order to | jasone | 2007-03-29 | 1 | -4/+8 |
* | Remove the run promotion/demotion machinery. Replace it with red-black | jasone | 2007-03-28 | 1 | -430/+219 |
* | Fix some subtle bugs for posix_memalign() having to do with integer | jasone | 2007-03-24 | 1 | -18/+43 |
* | Fix posix_memalign() for large objects. Now that runs are extents rather | jasone | 2007-03-23 | 1 | -151/+297 |
* | Use extents rather than binary buddies to track free pages within | jasone | 2007-03-23 | 1 | -323/+332 |
* | Avoid using vsnprintf(3) unless MALLOC_STATS is defined, in order to | jasone | 2007-03-20 | 1 | -152/+233 |
* | Modify chunk_alloc() to prefer mmap()ed memory over sbrk()ed memory. | jasone | 2007-02-22 | 1 | -36/+40 |
* | Fix a utrace(2)-related bug in calloc(3). | jasone | 2007-01-31 | 1 | -44/+56 |
* | Implement chunk allocation/deallocation hysteresis by caching one spare | jasone | 2006-12-23 | 1 | -51/+86 |
* | Change the way base allocation is done for internal malloc data | jasone | 2006-09-08 | 1 | -56/+93 |
* | Enable TLS on PowerPC. | marcel | 2006-09-01 | 1 | -1/+0 |
* | Enable TLS on ia64. | marcel | 2006-09-01 | 1 | -1/+0 |
* | Correctly handle the case in calloc(num, size) where | cperciva | 2006-08-13 | 1 | -1/+1 |
* | Define NO_TLS on PowerPC. | marcel | 2006-08-09 | 1 | -0/+1 |
* | Conditionally expand the size_invs lookup table in arena_run_reg_dalloc() | jasone | 2006-07-27 | 1 | -1/+12 |
* | Use 4 as QUANTUM_2POW_MIN on arm as it is on any other architecture, to avoid | cognet | 2006-07-27 | 1 | -1/+1 |
* | Fix cpp logic in arena_malloc() to adjust size when assertions are enabled, | jasone | 2006-07-27 | 1 | -23/+19 |
* | Use some math tricks in arena_run_reg_dalloc() to avoid actual division, as | jasone | 2006-07-01 | 1 | -83/+90 |
* | Make the behavior of malloc(0) standards-compliant by getting rid of nil, | jasone | 2006-06-30 | 1 | -48/+46 |
* | Add a missing case for the switch statement in arena_run_reg_dalloc(). [1] | jasone | 2006-06-20 | 1 | -8/+20 |
* | Increase the minimum chunk size by a power of two (32kB --> 64kB, assuming | jasone | 2006-05-10 | 1 | -2/+2 |
* | Change the semantics of brk_max to dynamically deal with data segment | jasone | 2006-04-27 | 1 | -71/+83 |
* | Add an unreachable return statement, in order to avoid a compiler warning | jasone | 2006-04-05 | 1 | -0/+1 |
* | Only initialize the first per-chunk page map element for free runs. This | jasone | 2006-04-05 | 1 | -31/+16 |
* | Add init_lock, and use it to protect against allocator initialization | jasone | 2006-04-04 | 1 | -8/+21 |
* | Refactor per-run bitmap manipulation functions so that bitmap offsets only | jasone | 2006-04-04 | 1 | -69/+131 |
* | Optimize runtime performance, primary using the following techniques: | jasone | 2006-03-30 | 1 | -285/+294 |
* | Add malloc_usable_size(3). | jasone | 2006-03-28 | 1 | -0/+20 |
* | Allow the 'n' option to decrease the number of arenas below the default, | jasone | 2006-03-26 | 1 | -2/+16 |