| Commit message (Expand) | Author | Age | Files | Lines |
* | Only zero large allocations when necessary (for calloc()). | jasone | 2007-11-28 | 1 | -1/+1 |
* | Document the B and L MALLOC_OPTIONS. | jasone | 2007-11-27 | 1 | -1/+26 |
* | 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 |
* | Remove out of date notes, the atoi code is thread-safe and async-cancel | davidxu | 2007-10-19 | 1 | -4/+0 |
* | The precision for a string argument in a call to warnx() needs to be cast | scf | 2007-09-22 | 1 | -1/+2 |
* | Skip rebuilding environ in setenv() only upon reuse of an active variable; | scf | 2007-09-15 | 1 | -2/+2 |
* | Added environ-replacement detection. For programs that "clean" (i.e., su) | scf | 2007-07-20 | 1 | -78/+163 |
* | Significantly reduce the memory leak as noted in BUGS section for | scf | 2007-07-04 | 5 | -259/+622 |
* | Add information about the implications of using mmap(2) instead of sbrk(2). | jasone | 2007-06-15 | 1 | -1/+19 |
* | Fix junk/zero filling for realloc(). Junk filling was missing in one case, | jasone | 2007-06-15 | 1 | -36/+48 |
* | Backout 1.5 as requested by deischen | jon | 2007-05-22 | 1 | -1/+0 |
* | __cleanup() is needed for ports/devel/valgrind, export it. | jon | 2007-05-22 | 1 | -0/+1 |
* | Back out all POSIXified *env() changes. | ache | 2007-05-01 | 4 | -96/+41 |
* | Bump .Dd | ache | 2007-04-30 | 1 | -1/+1 |
* | Add phrase | ache | 2007-04-30 | 1 | -1/+2 |
* | Make putenv() fully conforms to Open Group specs Issue 6 | ache | 2007-04-30 | 4 | -26/+58 |
* | Remove special case skipping initial '=' of the setenv() value "for | ache | 2007-04-30 | 2 | -7/+0 |
* | Make setenv, putenv, getenv and unsetenv conforming to Open Group specs | ache | 2007-04-30 | 4 | -19/+48 |
* | Use C comments since we now preprocess these files with CPP. | deischen | 2007-04-29 | 1 | -2/+4 |
* | Swap "underflow"/"overflow" in the table header. | ru | 2007-04-10 | 1 | -2/+2 |
* | 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 |
* | Update the IMPLEMENTATION NOTES section to reflect recent malloc | jasone | 2007-03-28 | 1 | -13/+30 |
* | Add a HISTORY section. | jasone | 2007-03-28 | 1 | -0/+5 |
* | 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 |
* | Per Regents of the University of Calfornia letter, remove advertising | imp | 2007-01-09 | 58 | -232/+0 |
* | Implement chunk allocation/deallocation hysteresis by caching one spare | jasone | 2006-12-23 | 1 | -51/+86 |
* | Note that the value from getenv() should not be modified by applications. | trhodes | 2006-10-12 | 1 | -1/+5 |
* | getenv.3: Put "is" on a line with other words | trhodes | 2006-10-07 | 1 | -2/+1 |
* | Revise markup in recently added manpages. | ru | 2006-09-30 | 3 | -43/+48 |
* | Keep compatible parts in sync with OpenBSD v1.21, add some comments. | ache | 2006-09-23 | 1 | -15/+7 |
* | Remove code #ifndef'ed in prev. commit to stay in sync with OpenBSD | ache | 2006-09-22 | 1 | -12/+0 |
* | Be more GNU compatible: | ache | 2006-09-22 | 1 | -2/+5 |
* | Markup fixes. | ru | 2006-09-17 | 1 | -51/+51 |
* | Change the way base allocation is done for internal malloc data | jasone | 2006-09-08 | 1 | -56/+93 |
* | alloca() cannot check if the allocation is valid; mention the consequences. | ru | 2006-09-05 | 1 | -4/+13 |
* | 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 |