aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
Commit message (Expand)AuthorAgeFilesLines
* Remove stale #include <machine/atomic.h>, which as needed by lazyJason Evans2008-03-071-4/+4
* Replace the use of warnx() with direct output to stderr using _write().Sean Farley2008-02-281-12/+36
* Fix a race condition in arena_ralloc() for shrinking in-place largeJason Evans2008-02-171-25/+41
* Remove support for lazy deallocation. Benchmarks across a wide range ofJason Evans2008-02-172-221/+4
* Fix a bug in lazy deallocation that was introduced whenJason Evans2008-02-081-7/+10
* Clean up manipulation of chunk page map elements to remove some tenuousJason Evans2008-02-081-362/+357
* Track dirty unused pages so that they can be purged if they exceed aJason Evans2008-02-062-679/+973
* Remove some now-unused macros.John Baldwin2008-01-151-3/+1
* Put back the openpty(3) and ptsname(3) fixes but don't disable ptsname(3)John Baldwin2008-01-151-46/+31
* Back out last commit, since it accidentally broke pts.Colin Percival2008-01-151-37/+48
* Fix issues which allow snooping on ptys. [08:01]Colin Percival2008-01-141-48/+37
* Changing 'r' to a size_t in the previous commit turned quicksortDavid Schultz2008-01-141-4/+5
* Use size_t to avoid overflow when sorting arrays larger than 2 GB.David Schultz2008-01-132-2/+3
* Enable both sbrk(2)- and mmap(2)-based memory acquisition methods byJason Evans2008-01-032-19/+20
* Fix a major chunk-related memory leak in chunk_dealloc_dss_record(). [1]Jason Evans2007-12-311-65/+56
* Fix a bug related to sbrk() calls that could cause address space leaks.Jason Evans2007-12-311-186/+268
* Back out premature commit of previous version.Jason Evans2007-12-281-183/+113
* Maintain two trees instead of one (old_chunks --> old_chunks_{ad,szad}) inJason Evans2007-12-281-113/+183
* Release chunks_mtx for all paths through chunk_dealloc().Jason Evans2007-12-281-1/+4
* Add the 'D' and 'M' run time options, and use them to control whetherJason Evans2007-12-272-315/+492
* Clean up some of the pts(4) vs pty(4) stuff in grantpt(3) and friends:John Baldwin2007-12-211-22/+23
* Use fixed point integer math instead of floating point math whenJason Evans2007-12-181-42/+47
* Refactor features a bit in order to make it possible to disable lazyJason Evans2007-12-171-52/+127
* Implement and document nan(), nanf(), and nanl(). This commitDavid Schultz2007-12-161-4/+23
* Update posix_openpt(3) to handle 512 ptys. This was missed in the earlierJohn Baldwin2007-12-131-2/+2
* Fix typo in the commentAndrey A. Chernov2007-12-111-1/+1
* Only zero large allocations when necessary (for calloc()).Jason Evans2007-11-281-1/+1
* Document the B and L MALLOC_OPTIONS.Jason Evans2007-11-271-1/+26
* Implement dynamic load balancing of thread-->arena mapping, based on lockJason Evans2007-11-271-58/+297
* Implement lazy deallocation of small objects. For each arena, maintain aJason Evans2007-11-271-0/+218
* Avoid re-zeroing memory in calloc() when possible.Jason Evans2007-11-271-143/+218
* Fix stats printing of the amount of memory currently consumed by hugeJason Evans2007-11-271-36/+37
* Remove out of date notes, the atoi code is thread-safe and async-cancelDavid Xu2007-10-191-4/+0
* The precision for a string argument in a call to warnx() needs to be castSean Farley2007-09-221-1/+2
* Skip rebuilding environ in setenv() only upon reuse of an active variable;Sean Farley2007-09-151-2/+2
* Added environ-replacement detection. For programs that "clean" (i.e., su)Sean Farley2007-07-201-78/+163
* Significantly reduce the memory leak as noted in BUGS section forSean Farley2007-07-045-259/+622
* Add information about the implications of using mmap(2) instead of sbrk(2).Jason Evans2007-06-151-1/+19
* Fix junk/zero filling for realloc(). Junk filling was missing in one case,Jason Evans2007-06-151-36/+48
* Backout 1.5 as requested by deischenJonathan Chen2007-05-221-1/+0
* __cleanup() is needed for ports/devel/valgrind, export it.Jonathan Chen2007-05-221-0/+1
* Back out all POSIXified *env() changes.Andrey A. Chernov2007-05-014-96/+41
* Bump .DdAndrey A. Chernov2007-04-301-1/+1
* Add phraseAndrey A. Chernov2007-04-301-1/+2
* Make putenv() fully conforms to Open Group specs Issue 6Andrey A. Chernov2007-04-304-26/+58
* Remove special case skipping initial '=' of the setenv() value "forAndrey A. Chernov2007-04-302-7/+0
* Make setenv, putenv, getenv and unsetenv conforming to Open Group specsAndrey A. Chernov2007-04-304-19/+48
* Use C comments since we now preprocess these files with CPP.Daniel Eischen2007-04-291-2/+4
* Swap "underflow"/"overflow" in the table header.Ruslan Ermilov2007-04-101-2/+2
* Use size_t instead of unsigned for pagesize-related values, in order toJason Evans2007-03-291-4/+8