| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 | 2 | -679/+973 |
* | Remove some now-unused macros. | jhb | 2008-01-15 | 1 | -3/+1 |
* | Put back the openpty(3) and ptsname(3) fixes but don't disable ptsname(3) | jhb | 2008-01-15 | 1 | -46/+31 |
* | Back out last commit, since it accidentally broke pts. | cperciva | 2008-01-15 | 1 | -37/+48 |
* | Fix issues which allow snooping on ptys. [08:01] | cperciva | 2008-01-14 | 1 | -48/+37 |
* | Changing 'r' to a size_t in the previous commit turned quicksort | das | 2008-01-14 | 1 | -4/+5 |
* | Use size_t to avoid overflow when sorting arrays larger than 2 GB. | das | 2008-01-13 | 2 | -2/+3 |
* | Enable both sbrk(2)- and mmap(2)-based memory acquisition methods by | jasone | 2008-01-03 | 2 | -19/+20 |
* | 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 | 2 | -315/+492 |
* | Clean up some of the pts(4) vs pty(4) stuff in grantpt(3) and friends: | jhb | 2007-12-21 | 1 | -22/+23 |
* | 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 |
* | Implement and document nan(), nanf(), and nanl(). This commit | das | 2007-12-16 | 1 | -4/+23 |
* | Update posix_openpt(3) to handle 512 ptys. This was missed in the earlier | jhb | 2007-12-13 | 1 | -2/+2 |
* | Fix typo in the comment | ache | 2007-12-11 | 1 | -1/+1 |
* | 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 |